@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=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
.single_item__pic, .single_block__image {
  margin-left: auto;
  margin-right: auto;
}

/* flexのfit */
/* template color */
/* custom color */
/* font */
.mincho {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-feature-settings: "palt";
  font-weight: 500;
}

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

.list_count {
  counter-reset: count;
}

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

.list_num {
  counter-reset: num;
}

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

.list_unit {
  counter-reset: unit;
}

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

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

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

div {
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

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

img,
picture,
figure {
  margin: 0;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
a.link {
  display: inline;
  color: #407BA4;
  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;
  filter: blur(2px);
}

.lazy-show {
  opacity: 1;
  filter: blur(0px);
  transform: translate(0, 0);
  transition: all 1.2s;
  transition-delay: 0.3s;
}

.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-right: 20px;
    padding-left: 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-right: 20px;
    padding-left: 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-right: 20px;
    padding-left: 20px;
  }
}

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

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

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

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

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

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

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

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.archive .wp-pagenavi {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .archive .wp-pagenavi {
    margin-top: 80px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  position: relative;
  border: none;
  padding: unset;
  margin: unset;
  border: none;
  aspect-ratio: 1/1;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  border: none !important;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.4516129032vw, 1.8rem);
  box-sizing: border-box;
  color: #333333;
  line-height: 1;
  border-radius: 50%;
}
@media screen and (min-width: 1001px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 36px;
    padding-bottom: 4px !important;
  }
}
@media screen and (max-width: 1000px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 30px;
  }
}
.wp-pagenavi a::before,
.wp-pagenavi span::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  max-width: 100%;
  width: 0%;
  height: 2px;
  background-color: #407BA4;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .wp-pagenavi a::before,
  .wp-pagenavi span::before {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .wp-pagenavi a::before,
  .wp-pagenavi span::before {
    transition-duration: 300ms;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  opacity: 1;
  font-weight: 500;
  color: #fff;
  background-color: #407BA4;
}
.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(41%) sepia(79%) saturate(300%) hue-rotate(161deg) brightness(93%) contrast(98%);
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  background: initial !important;
  opacity: 0.6;
}
.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 {
  color: #407BA4;
  text-decoration: underline;
  display: inline-block;
}

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

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

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

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

/* module */
.cm-bread {
  padding-bottom: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  line-height: 150%;
  color: #333333;
}
.cm-bread a {
  color: inherit;
  font-size: inherit;
}
.cm-bread .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.common_contents {
  overflow: hidden;
}

.header_block {
  padding: 0 20px;
  box-sizing: border-box;
  transform: translateY(0%);
  transition: 0.3s;
  z-index: 10;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
}
.header_block.fixed .header_area {
  background: rgba(255, 255, 255, 0.8);
}
.header_block.hide__fixed {
  transform: translateY(-150%);
}
@media screen and (max-width: 1000px) {
  .header_block {
    padding: 0;
  }
}

.header_area {
  position: relative;
  margin-top: 20px;
  padding: 28px 32px;
  background: #fff;
  border-radius: 80px;
  transition: all 0.3s;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .header_area {
    padding: 16px 20px;
    padding-right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .header_area {
    background: rgba(255, 255, 255, 0);
    margin-top: 0px;
    padding: 16px 20px;
    border-radius: 0;
  }
}
@media screen and (max-width: 500px) {
  .header_area {
    padding: 16px 20px 40px;
  }
}

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

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

@media screen and (min-width: 1001px) {
  .header__links {
    display: flex;
    gap: 128px;
    align-items: center;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1000px) and (max-width: 1450px) {
  .header__links {
    gap: 80px;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1001px) and (max-width: 1200px) {
  .header__links {
    gap: 40px;
  }
}
@media screen and (min-width: 1501px) {
  .header_menu {
    transition: all 0.3s;
  }
  .header_menu.add_ig {
    padding-right: 20px;
  }
}
.header_menu a {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 180%;
  color: #333333;
  box-sizing: border-box;
}
.header_menu a:hover {
  opacity: 1;
  color: #407BA4;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .header_menu a {
    font-size: 1.4rem;
  }
}
.header_menu ul {
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .header_menu ul {
    display: flex;
    gap: 32px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1450px) {
  .header_menu ul {
    gap: 16px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .header_menu ul {
    gap: 8px;
  }
}
.header_menu .sub-menu,
.header_menu .children {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header_menu {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s;
    z-index: 5;
    overflow-y: scroll;
  }
  .header_menu.active {
    opacity: 1;
    transform: translateX(0%);
  }
  .header_menu ul {
    padding-top: 70px;
    padding-bottom: 150px;
  }
  .header_menu li {
    border-bottom: 1px solid #fff;
  }
  .header_menu a {
    display: block;
    text-align: center;
    padding: 1em 0;
    color: #fff;
  }
}

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

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
fixd----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.header_contact_pc {
  position: relative;
  transition: all 0.6s;
  width: -moz-max-content;
  width: max-content;
}
.header_contact_pc::before {
  content: "";
  aspect-ratio: 1/1;
  width: 203px;
  height: auto;
  position: absolute;
  bottom: -65px;
  left: -72px;
  background: #407BA4;
  transition: all 0.6s;
  border-radius: 50%;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .header_contact_pc::before {
    border-radius: 60%;
    width: 150px;
    left: -38px;
    bottom: -41px;
  }
}
.header_contact_pc.hide__fixed {
  width: 0;
  opacity: 0;
  pointer-events: none;
}

.header_contact_pc:hover {
  opacity: 1;
}
.header_contact_pc:hover::before {
  transform: scale(1.2, 1.2);
}
@media screen and (min-width: 1000px) and (max-width: 1450px) {
  .header_contact_pc:hover::before {
    transform: scale(1.1, 1.1);
  }
}

.header_contact_pc__img {
  position: relative;
  max-width: 32px;
  z-index: 1;
}

.fixd_banner_pc {
  position: fixed;
  bottom: 80px;
  right: 80px;
  display: flex;
  gap: 5px;
  align-items: center;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.fixd_banner_pc.fixed {
  opacity: 1;
  pointer-events: all;
}

.fixd_banner_pc__link {
  position: relative;
  display: flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
}

.fixd_banner_pc__link:hover {
  opacity: 1;
}
.fixd_banner_pc__link:hover::before {
  transform: translate(-50%, -50%) scale(1.2, 1.2);
}

.fixd_banner_pc__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #407BA4;
  transition: all 0.3s;
  border-radius: 50%;
}

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

.fixd_banner_sp {
  position: fixed;
  width: 100%;
  bottom: 0px;
  left: 0;
  z-index: 2;
  transition: all 0.3s;
  opacity: 1;
}
.fixd_banner_sp.hide__fixed {
  opacity: 0;
  pointer-events: none;
}

.fixd_banner_sp__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #407BA4;
  gap: 8px;
  padding: 12px 0;
}

.fixd_banner_sp__img {
  max-width: 18px;
  margin: 0;
}

.fixd_banner_sp__txt {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-style: normal;
  font-weight: 100;
  font-size: 2rem;
  line-height: 80%;
  color: #FFFFFF;
}

.fixd_banner_sp__point {
  font-weight: 500;
}

/*================================================
fixd----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
keyvisual----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.kv {
  background: #fff;
  padding-top: 180px;
  margin-bottom: 168px;
}
@media screen and (max-width: 1000px) {
  .kv {
    padding-top: 100px;
    margin-bottom: 96px;
  }
}

.kv_wrap {
  background: #FCFBF9;
}

.kv_circle {
  pointer-events: none;
}
.kv_circle img {
  position: relative;
  transition: clip-path 1s ease;
  clip-path: inset(0 0 100% 0);
}
@media screen and (max-width: 1000px) {
  .kv_circle img {
    height: 104px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom center;
       object-position: bottom center;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .kv_circle img {
    height: 88px;
  }
}
.kv_circle.cs_ac img {
  clip-path: inset(0 0% 0 0);
}

.kv_head {
  margin-top: -100px;
}
@media screen and (max-width: 1000px) {
  .kv_head {
    margin-top: -78px;
  }
}
@media screen and (max-width: 500px) {
  .kv_head {
    margin-top: -68px;
  }
}

.kv_head__lead {
  display: block;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 1.4;
  text-align: center;
  color: #333333;
}

.kv_head__caption {
  margin-top: 16px;
  display: block;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-weight: 100;
  font-size: clamp(5.6rem, 8.3870967742vw, 10.4rem);
  line-height: 80%;
  text-align: center;
  color: #333333;
}
@media screen and (max-width: 500px) {
  .kv_head__caption {
    margin-top: 10px;
  }
}

.kv_head__point {
  font-weight: 500;
  color: #407BA4;
}

.kv_head__img {
  display: block;
  max-width: 150px;
  margin: auto;
}

.kv_head {
  opacity: 0;
  position: relative;
  filter: blur(10px);
  transition: all 1s;
}
.kv_head.cs_ac {
  opacity: 1;
  filter: blur(0px);
  transition-delay: 0.3s;
}

/*================================================
keyvisual----END
==================================================*/
.footer_block {
  margin-top: 280px;
}
@media screen and (max-width: 1000px) {
  .footer_block {
    margin-top: 200px;
  }
}

@media screen and (max-width: 1000px) {
  .footer_back img {
    pointer-events: none;
    height: 104px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .footer_back img {
    height: 88px;
  }
}
.footer_wrapper {
  background: #fff;
}

.footer_area {
  padding: 108px 0 48px;
}
@media screen and (max-width: 1000px) {
  .footer_area {
    padding: 56px 0 60px;
  }
}
@media screen and (max-width: 500px) {
  .footer_area {
    padding: 56px 0 120px;
  }
}

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

.footer_logo {
  max-width: 219px;
}
@media screen and (max-width: 1000px) {
  .footer_logo {
    display: block;
    margin: auto;
  }
}

.footer_address {
  display: block;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 180%;
  color: #333333;
  margin: 24px 0 80px;
}
@media screen and (max-width: 1000px) {
  .footer_address {
    text-align: center;
    margin: 24px 0 56px;
  }
}

.footer_blank {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .footer_blank {
    justify-content: center;
  }
}

.footer_blank__link {
  max-width: 40px;
}

.footer_copy {
  margin-top: 40px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-style: normal;
  font-weight: 100;
  font-size: 1.6rem;
  line-height: 180%;
  color: #000000;
}
@media screen and (max-width: 1000px) {
  .footer_copy {
    text-align: center;
  }
}

@media screen and (max-width: 1000px) {
  .footer_content {
    margin-top: 64px;
  }
}
.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;
    height: 240px;
  }
}
@media screen and (min-width: 1001px) and (min-width: 1001px) and (max-width: 1200px) {
  .footer_nav ul {
    gap: 40px 56px;
  }
}
@media screen and (max-width: 1000px) {
  .footer_nav ul {
    border-top: 1px solid #E2E2E2;
  }
}
.footer_nav li {
  box-sizing: border-box;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .footer_nav li {
    width: 50%;
    border-bottom: 1px solid #E2E2E2;
    text-align: center;
  }
  .footer_nav li:nth-child(even) {
    border-left: 1px solid #E2E2E2;
  }
  .footer_nav li:nth-child(odd):last-child {
    width: 100%;
    border-left: 1px solid #E2E2E2;
  }
}
.footer_nav a {
  display: block;
  box-sizing: border-box;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 180%;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .footer_nav a {
    padding: 16px 8px;
  }
}
.footer_nav a:hover {
  opacity: 1;
  color: #407BA4;
}
@media screen and (min-width: 1001px) {
  .footer_nav .sub-menu {
    display: block;
    height: auto;
    padding-top: 8px;
    padding-left: 10px;
  }
  .footer_nav .sub-menu li + li {
    padding-top: 8px;
  }
  .footer_nav .sub-menu li {
    line-height: normal;
  }
  .footer_nav .sub-menu a {
    position: relative;
    display: inline-block;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 180%;
    color: #333333;
  }
  .footer_nav .sub-menu a::before {
    content: "‐ ";
  }
  .footer_nav .sub-menu a:hover {
    opacity: 1;
    color: #407BA4;
  }
}
@media screen and (max-width: 1000px) {
  .footer_nav .sub-menu {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .footer_nav {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 501px) {
  .footer_nav {
    margin-left: -40px;
    margin-right: -40px;
  }
}

.cta_wrap {
  padding: 90px 0 80px;
  background: #407BA4;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .cta_wrap {
    padding: 48px 0 48px;
  }
}

.cta_columns {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 1001px) {
  .cta_columns {
    max-width: 1040px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .cta_columns {
    max-width: 1040px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .cta_columns {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .cta_columns {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .cta_columns {
    padding: 0 20px;
  }
}

.cta_txt {
  color: #fff;
}

.cta_title {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  color: #FFFFFF;
}
@media screen and (max-width: 500px) {
  .cta_title {
    text-align: center;
  }
}

.cta_slag {
  margin: 20px 0 40px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-weight: 100;
  font-size: clamp(5.6rem, 8.3870967742vw, 10.4rem);
  line-height: 80%;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .cta_slag {
    margin: 10px 0 32px;
  }
}
@media screen and (max-width: 500px) {
  .cta_slag {
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  .cta_read br {
    display: none;
  }
}
.cta_slag__point {
  font-weight: 500;
}

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

.cta_links__columns + .cta_links__columns {
  margin-top: 24px;
}
@media screen and (max-width: 500px) {
  .cta_links__columns + .cta_links__columns {
    margin-top: 20px;
  }
}

.ico_cta_link {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  .ico_cta_link {
    width: 55px;
    height: 55px;
  }
}
.ico_cta_link img {
  position: relative;
  z-index: 1;
  max-width: 16px;
  margin: auto;
}
.ico_cta_link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 0.3s;
  border-radius: 50%;
}

.ico_cta_link:hover {
  opacity: 1;
}
.ico_cta_link:hover::before {
  transform: translate(-50%, -50%) scale(1.2, 1.2);
}

.cm_btn__link.cm_btn__link--cta {
  color: #333;
}
.cm_btn__link.cm_btn__link--cta::before {
  background: #fff;
  z-index: 0;
}
.cm_btn__link.cm_btn__link--cta .cm_btn__link--txt {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}
@media screen and (max-width: 500px) {
  .cm_btn__link.cm_btn__link--cta {
    width: 200px;
  }
}

.cta_links__tel a {
  pointer-events: all;
}

.cta_tel .cta_tel__link {
  display: block;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-style: normal;
  font-weight: 100;
  font-size: clamp(2.8rem, 2.9032258065vw, 3.6rem);
  line-height: 80%;
  color: #fff;
}

.cta_tel__txt {
  margin-top: 2px;
  display: block;
  font-style: normal;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
  line-height: 200%;
  color: #FFFFFF;
}

.mw_wp_form {
  margin-top: clamp(32px, 3.125vw, 50px);
  background: #fff;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form {
    padding: 100px 80px 100px;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form {
    padding: 38px 40px 40px;
  }
}
@media screen and (max-width: 500px) {
  .mw_wp_form {
    padding: 38px 20px 40px;
  }
}
.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;
  font-weight: 400;
}
@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: 500;
}
@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: 500;
  font-size: clamp(1.3rem, 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;
  }
}
.mw_wp_form td th {
  font-weight: 400;
}
@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: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form input,
  .mw_wp_form textarea,
  .mw_wp_form select {
    padding: 1em;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form input,
  .mw_wp_form textarea,
  .mw_wp_form select {
    padding: 10px;
  }
}
.mw_wp_form input.var01,
.mw_wp_form textarea.var01,
.mw_wp_form select.var01 {
  max-width: 500px;
}
@media screen and (min-width: 501px) {
  .mw_wp_form input.var02,
  .mw_wp_form textarea.var02,
  .mw_wp_form select.var02 {
    max-width: 5em;
  }
}
@media screen and (max-width: 500px) {
  .mw_wp_form input.var02,
  .mw_wp_form textarea.var02,
  .mw_wp_form select.var02 {
    max-width: 4em;
  }
}
.mw_wp_form input,
.mw_wp_form textarea {
  width: 100%;
}
.mw_wp_form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 48px;
  background-image: url("../images/common/svg-select.svg");
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: center right 16px;
}
.mw_wp_form input[type*=file] {
  width: auto;
  background-color: transparent;
  padding: 0;
  border: none;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  margin-top: clamp(10px, 1vw, 16px);
}
.mw_wp_form input[type*=file]::file-selector-button {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 0.2em 0.5em;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.2903225806vw, 1.6rem);
}
.mw_wp_form .error {
  display: block;
  font-size: 1.5rem;
  padding: 0.5em;
  box-sizing: border-box;
  background-color: pink;
  margin-top: 8px;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form.mw_wp_form_input th,
  .mw_wp_form.mw_wp_form_input td {
    padding-bottom: 40px;
  }
  .mw_wp_form.mw_wp_form_input th {
    line-height: 57px;
  }
  .mw_wp_form.mw_wp_form_input th > span {
    top: 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: 50px;
  margin-right: 20px;
  cursor: pointer;
  font-weight: 500;
}
@media screen and (min-width: 1001px) {
  .mwform-checkbox-field-text {
    line-height: 57px;
  }
}
@media screen and (max-width: 1000px) {
  .mwform-checkbox-field-text {
    line-height: 32px;
  }
}
.mwform-checkbox-field-text::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 40px;
  height: auto;
  box-sizing: border-box;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  border: 1px solid #cccccc;
}

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

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

.file-text {
  display: inline-block;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  word-break: break-all;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-weight: 400;
  color: #333333;
  line-height: 2;
}
@media screen and (min-width: 1001px) {
  .file-text {
    padding-top: 13px;
  }
}

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

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

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

.form-wrap {
  margin-top: clamp(20px, 1.5vw, 24px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-weight: 500 !important;
}
.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] {
  max-width: 240px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  transition-property: all;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #FFFFFF;
  border-radius: 40px;
  padding: 18px 8px;
  background: url(../images/common/contact_btn_arrow.png);
  background-color: #407BA4;
  background-position: center right 18px;
  background-size: 16px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1001px) {
  .form-btns a,
  .form-btns [type=submit] {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .form-btns a,
  .form-btns [type=submit] {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 500px) {
  .form-btns a,
  .form-btns [type=submit] {
    padding: 14px 8px;
  }
}
.form-btns a:hover,
.form-btns [type=submit]:hover {
  opacity: 0.7;
}
.form-btns [type=submit].fm-modoru {
  background-color: #999999;
}

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

@media screen and (max-width: 1000px) {
  .mw_wp_form table tr + tr {
    padding-top: 24px;
  }
}
/* page */
.mv_wrap {
  max-width: 1470px;
  padding-right: 40px;
  box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .mv_wrap {
    padding: 232px 0 0;
    padding-right: 60px;
  }
}
@media screen and (max-width: 500px) {
  .mv_wrap {
    padding: 126px 0 0;
  }
}

.mv_columns {
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .mv_columns {
    display: block;
  }
}

.mv_circle {
  position: relative;
  max-width: 1016px;
  margin-top: -206px;
  margin-left: -100px;
}
@media screen and (min-width: 1401px) {
  .mv_circle {
    max-width: 990px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1450px) {
  .mv_circle {
    max-width: 62.28%;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1450px) {
  .mv_circle {
    max-width: 66%;
  }
}
@media screen and (max-width: 1000px) {
  .mv_circle {
    margin-top: 0;
    margin-left: -86px;
    max-width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .mv_circle {
    max-width: calc(100% + 66px);
  }
}

.mv_readline {
  padding-bottom: 256px;
}
@media screen and (min-width: 1000px) and (max-width: 1450px) {
  .mv_readline {
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .mv_readline {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .mv_readline {
    padding: 0 64px 58px;
  }
}
@media screen and (max-width: 500px) {
  .mv_readline {
    padding: 0 48px 58px;
  }
}

.mv_readline__main {
  display: block;
  max-width: 471px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .mv_readline__main {
    max-width: calc(100% - 120px);
  }
}
@media screen and (max-width: 1000px) {
  .mv_readline__main {
    max-width: 300px;
  }
}
@media screen and (max-width: 500px) {
  .mv_readline__main {
    max-width: 257px;
  }
}

.mv_readline__sub {
  display: block;
  margin-top: 52px;
  max-width: 464px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .mv_readline__sub {
    margin-top: 32px;
    max-width: calc(100% - 40px);
  }
}
@media screen and (max-width: 1000px) {
  .mv_readline__sub {
    margin-top: 30px;
    max-width: 400px;
  }
}
@media screen and (max-width: 500px) {
  .mv_readline__sub {
    max-width: 170px;
  }
}

.mv_circle.circle-lazy {
  animation-delay: 2s;
}

.mv_readline.lazy-show {
  transition-delay: 1s;
}

@media screen and (min-width: 1001px) {
  .home_gloves .lazy-show {
    transition-delay: 3s !important;
  }
  .home_gloves__img1.circle-lazy.cs_ac {
    animation-delay: 3s !important;
  }
}
.loading__start .mv_circle.circle-lazy {
  animation-delay: 9s;
}
.loading__start .mv_readline.lazy-show {
  transition-delay: 8s;
}
@media screen and (min-width: 1001px) {
  .loading__start .home_gloves .lazy-show {
    transition-delay: 10s !important;
  }
  .loading__start .home_gloves__img1.circle-lazy.cs_ac {
    animation-delay: 10s !important;
  }
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
汎用クラス----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_headline__title {
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 1.44;
  color: #333333;
}

.home_headline__slag {
  margin-top: 20px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-style: normal;
  font-weight: 100;
  font-size: clamp(5.6rem, 8.3870967742vw, 10.4rem);
  line-height: 80%;
  color: #333333;
}
.home_headline__slag .home_headline__point {
  font-weight: 500;
  color: #407BA4;
}
@media screen and (max-width: 1000px) {
  .home_headline__slag {
    margin-top: 10px;
  }
  .home_headline__slag br {
    display: block;
  }
}

/*================================================
汎用クラス----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_gloves----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_gloves {
  padding-top: 106px;
}
@media screen and (max-width: 1000px) {
  .home_gloves {
    padding-top: 130px;
  }
}

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

.home_gloves__txt {
  flex-basis: 32.71%;
}

.home_gloves__read {
  display: block;
  max-width: 400px;
  margin: 80px 0;
}
@media screen and (max-width: 1000px) {
  .home_gloves__read {
    max-width: 100%;
    margin: 56px 0 64px;
  }
}

.home_gloves__imgs {
  margin-top: -246px;
  flex-basis: 61.79%;
}
@media screen and (min-width: 1000px) and (max-width: 1450px) {
  .home_gloves__imgs {
    margin-top: -146px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_gloves__imgs {
    margin-top: -80px;
    flex-basis: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .home_gloves__imgs {
    margin: 0 -40px;
    margin-top: 12px;
  }
}
@media screen and (max-width: 500px) {
  .home_gloves__imgs {
    margin: 0 -20px;
    margin-top: 12px;
  }
}

.home_gloves__img1 {
  max-width: 590px;
  margin-left: auto;
  margin-right: -50px;
  max-width: 69%;
}
@media screen and (max-width: 1000px) {
  .home_gloves__img1 {
    margin-right: -62px;
    max-width: 70%;
  }
}
@media screen and (max-width: 500px) {
  .home_gloves__img1 {
    max-width: 85.33%;
  }
}
.home_gloves__img1.circle-lazy.cs_ac {
  animation-delay: 0.6s;
}

.home_gloves__img2 {
  max-width: 380px;
  margin-right: auto;
  margin-top: -146px;
  max-width: 44.44%;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_gloves__img2 {
    margin-top: -80px;
  }
}
@media screen and (max-width: 1000px) {
  .home_gloves__img2 {
    margin-top: -124px;
    max-width: 40%;
  }
}
@media screen and (max-width: 500px) {
  .home_gloves__img2 {
    margin-top: -52px;
    max-width: 53.33%;
  }
}
.home_gloves__img2.circle-lazy.cs_ac {
  animation-delay: 0.9s;
}

/*================================================
home_gloves----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_history----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_history {
  position: relative;
  margin-top: 160px;
}
@media screen and (max-width: 1000px) {
  .home_history {
    margin-top: 128px;
  }
}
.home_history::before {
  content: "";
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 230px;
}
@media screen and (max-width: 1000px) {
  .home_history::before {
    height: 30px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_history .over-left {
    padding-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .home_history .over-left {
    padding: 0;
  }
}

.back_home_history {
  position: absolute;
  left: 0;
  bottom: 220px;
  width: 100%;
  height: auto;
  z-index: -1;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s ease;
  transition-delay: 0.3s;
}
.back_home_history.cs_ac {
  clip-path: inset(0 0% 0 0);
}
@media screen and (max-width: 1000px) {
  .back_home_history {
    bottom: 20px;
  }
  .back_home_history img {
    pointer-events: none;
    height: 104px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .back_home_history img {
    height: 88px;
  }
}

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

.home_history__txt {
  flex-basis: 37.71%;
}
@media screen and (max-width: 1000px) {
  .home_history__txt {
    margin-bottom: 72px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 500px) {
  .home_history__txt {
    padding: 0 20px;
  }
}

.home_history__img {
  flex-basis: 54.86%;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1000px) {
  .home_history__img {
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .home_history__img {
    padding-right: 20px;
  }
}
.home_history__img img {
  border-radius: 0px 20px 20px 0px;
  overflow: hidden;
}

.home_history__read {
  margin: 80px 0;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_history__read {
    margin: 40px 0;
  }
}
@media screen and (max-width: 1000px) {
  .home_history__read {
    margin: 56px 0 64px;
  }
}
@media screen and (max-width: 500px) {
  .home_history__read br {
    display: none;
  }
}

/*================================================
home_history----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_products----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_products {
  padding: 168px 0 168px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .home_products {
    padding: 128px 0 160px;
  }
}

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

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

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

.home_products__banner {
  margin-top: 46px;
  flex-basis: 60.17%;
  padding: 40px;
  background: #FCFBF9;
  border-radius: 20px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_products__banner {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .home_products__banner {
    margin-top: 56px;
    padding: 32px;
  }
}

.home_products__banner__columns {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_products__banner__columns {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .home_products__banner__columns {
    display: block;
  }
}

.home_products__banner__img {
  flex-basis: 33.8%;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_products__banner__img {
    max-width: 216px;
    margin: auto;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 500px) {
  .home_products__banner__img {
    max-width: 216px;
    margin: auto;
    margin-bottom: 24px;
  }
}

.home_products__banner__txt {
  flex-basis: 61.21%;
}

.home_products__banner__readline {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1.4;
  color: #333333;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_products__banner__readline {
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .home_products__banner__readline {
    text-align: center;
  }
  .home_products__banner__readline br {
    display: block;
  }
}

.home_products__banner__read {
  margin-top: 16px;
}

.home_products__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 140px;
}
@media screen and (max-width: 1000px) {
  .home_products__cards {
    margin-top: 64px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }
}
@media screen and (max-width: 500px) {
  .home_products__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 4px;
  }
}

.home_products__card {
  display: block;
  position: relative;
  padding-top: 20px;
}

.home_products__card__circle {
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 1/1;
  width: 122px;
  height: auto;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-style: normal;
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 100%;
  color: #333333;
}

.home_products__card__arrow {
  display: inline-block;
  position: relative;
  aspect-ratio: 1/1;
  background: #407BA4;
  width: 64px;
  height: auto;
  border-radius: 50%;
  transition: all 0.5s;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 16px;
}
.home_products__card__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
@media screen and (max-width: 500px) {
  .home_products__card__arrow svg {
    width: 11px;
  }
}
.home_products__card__arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.home_products__card__arrow svg:last-of-type {
  left: -150%;
}
.home_products__card__arrow #home_btn__inner {
  transition: all 0.4s;
}

.home_products__card__img {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
.home_products__card__img img {
  transition: all 0.6s;
}

.home_products__card:hover {
  opacity: 1;
}
.home_products__card:hover .home_products__card__img img {
  transform: scale(1.15, 1.15);
}
.home_products__card:hover .home_products__card__arrow {
  width: 88px;
  right: 4px;
  bottom: -12px;
}
.home_products__card:hover .home_products__card__arrow svg:first-of-type {
  left: 150%;
}
.home_products__card:hover .home_products__card__arrow svg:last-of-type {
  left: 50%;
}

.cm_btn--home_products {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 96px;
}
@media screen and (max-width: 1000px) {
  .cm_btn--home_products {
    margin-top: 64px;
  }
}

/*================================================
home_products----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_shop__banner----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_shop__banner {
  padding: 120px 0 168px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .home_shop__banner {
    padding: 80px 0 160px;
  }
}

/*================================================
home_shop__banner----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_marumiya----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_marumiya {
  position: relative;
}

.back_home_marumiya {
  position: absolute;
  left: 0;
  bottom: top;
  width: 100%;
  height: auto;
  z-index: -1;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s ease;
  transition-delay: 0.3s;
}
.back_home_marumiya.cs_ac {
  clip-path: inset(0 0% 0 0);
}
@media screen and (max-width: 1000px) {
  .back_home_marumiya img {
    pointer-events: none;
    height: 104px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .back_home_marumiya img {
    height: 88px;
  }
}

.home_headline--home_marumiya {
  padding-left: 52px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .home_headline--home_marumiya {
    padding-left: 24px;
  }
}

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

@media screen and (max-width: 1000px) {
  .home_marumiya__column + .home_marumiya__column {
    margin-top: 80px;
  }
}
.home_marumiya__column {
  flex-basis: 47.33%;
}

.home_marumiya__link {
  display: block;
}

.home_marumiya__img {
  margin-top: -26px;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .home_marumiya__img {
    margin-top: -16px;
  }
}
.home_marumiya__img img {
  transition: all 0.6s;
}

.home_marumiya__txt {
  position: relative;
  margin-top: 32px;
  padding-right: 84px;
}
@media screen and (max-width: 1000px) {
  .home_marumiya__txt {
    margin-top: 24px;
    padding-right: 70px;
  }
}
@media screen and (max-width: 500px) {
  .home_marumiya__txt {
    margin-top: 20px;
  }
}

.home_marumiya__arrow {
  display: inline-block;
  aspect-ratio: 1/1;
  background: #407BA4;
  width: 64px;
  height: auto;
  border-radius: 50%;
  transition: all 0.5s;
  overflow: hidden;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .home_marumiya__arrow {
    width: 48px;
  }
}
.home_marumiya__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
@media screen and (max-width: 500px) {
  .home_marumiya__arrow svg {
    width: 11px;
  }
}
.home_marumiya__arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.home_marumiya__arrow svg:last-of-type {
  left: -150%;
}
.home_marumiya__arrow #home_btn__inner {
  transition: all 0.4s;
}

.home_marumiya__link:hover {
  opacity: 1;
}
.home_marumiya__link:hover .home_marumiya__img img {
  transform: scale(1.1, 1.1);
}
@media screen and (min-width: 1001px) {
  .home_marumiya__link:hover .home_marumiya__arrow {
    width: 88px;
    right: -12px;
  }
  .home_marumiya__link:hover .home_marumiya__arrow svg:first-of-type {
    left: 150%;
  }
  .home_marumiya__link:hover .home_marumiya__arrow svg:last-of-type {
    left: 50%;
  }
}

/*================================================
home_marumiya----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_company----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_company {
  margin-top: 116px;
}
@media screen and (max-width: 1000px) {
  .home_company {
    margin-top: 128px;
  }
}

@media screen and (max-width: 1000px) {
  .home_headline--home_company {
    margin-bottom: 56px;
  }
}
.home_company__columns {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .home_company__columns {
    display: block;
  }
}

.home_company__poster {
  flex-basis: 47.33%;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .home_company__poster {
    padding: 32px;
  }
}

.home_company__poster__columns {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_company__poster__columns {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .home_company__poster__columns {
    display: block;
  }
}

.home_company__poster__img {
  flex-basis: 30.74%;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_company__poster__img {
    max-width: 150px;
    margin: auto;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .home_company__poster__img {
    max-width: 150px;
    margin: auto;
    margin-bottom: 20px;
  }
}

.home_company__poster__txt {
  flex-basis: 62.7%;
}

.home_company__poster__readline {
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #333333;
}
.home_company__poster__readline br {
  display: none;
}
@media screen and (max-width: 500px) {
  .home_company__poster__readline {
    text-align: center;
  }
  .home_company__poster__readline br {
    display: block;
  }
}

.home_company__poster__read {
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 500px) {
  .home_company__poster__read {
    text-align: center;
  }
}

.home_company__cards {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media screen and (max-width: 1000px) {
  .home_company__cards {
    margin-top: 64px;
    padding: 0 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .home_company__cards {
    gap: 4px;
    padding: 0 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}

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

.home_company__img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.home_company__img::before {
  content: "";
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 40%;
  z-index: 1;
  transition: all 0.6s;
}
.home_company__img img {
  transition: all 0.6s;
}
@media screen and (max-width: 500px) {
  .home_company__img img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.home_company__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  aspect-ratio: 1/1;
  width: 214px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home_company__inner::before {
  content: "";
  aspect-ratio: 1/1;
  width: 214px;
  height: auto;
  transition: all 0.6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  background: #407BA4;
  border-radius: 50%;
  z-index: -1;
}

.home_company__title {
  font-weight: 500;
  font-size: 2.2rem;
  color: #FFFFFF;
}

.home_company__arrow {
  display: inline-block;
  position: relative;
  aspect-ratio: 32/22;
  width: 32px;
  height: 22px;
  transition: all 0.5s;
  overflow: hidden;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 48px;
  transition: all 0.6s;
}
.home_company__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
.home_company__arrow svg:first-of-type {
  opacity: 0;
  left: 50%;
}
.home_company__arrow svg:last-of-type {
  opacity: 1;
  left: -150%;
}
.home_company__arrow #home_btn__inner {
  transition: all 0.4s;
}

@media screen and (min-width: 1001px) {
  .home_company__card:hover {
    opacity: 1;
  }
  .home_company__card:hover .home_company__img::before {
    opacity: 0;
  }
  .home_company__card:hover .home_company__img img {
    transform: scale(1.1, 1.1);
  }
  .home_company__card:hover .home_company__inner::before {
    transform: translate(-50%, -50%) scale(1, 1);
  }
  .home_company__card:hover .home_company__arrow svg:first-of-type {
    left: 150%;
  }
  .home_company__card:hover .home_company__arrow svg:last-of-type {
    opacity: 1;
    left: 50%;
  }
}
/*================================================
home_company----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_journey----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_journey {
  margin-top: 200px;
}
@media screen and (max-width: 1000px) {
  .home_journey {
    margin-top: 160px;
  }
}

.home_journey__wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.home_journey__img {
  display: block;
  margin: auto;
  max-width: 150px;
}
@media screen and (max-width: 500px) {
  .home_journey__img {
    max-width: 104px;
  }
}

.home_journey__readline {
  font-weight: 400;
  font-size: clamp(2.4rem, 2.5806451613vw, 3.2rem);
  line-height: 180%;
  text-align: center;
  color: #333333;
  margin: 32px 0 80px;
}
@media screen and (max-width: 1000px) {
  .home_journey__readline {
    margin: 32px 0 64px;
  }
  .home_journey__readline br {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .home_journey__readline {
    max-width: 240px;
    margin: 32px auto 64px;
  }
}

.cm_btn--home_journey {
  text-align: center;
}

.home_journey__back {
  position: relative;
  z-index: -1;
  opacity: 0;
  filter: blur(30px);
  transition: all 1.8s;
  transition-delay: 1s;
  margin-top: -280px;
}
.home_journey__back.cs_ac {
  filter: blur(0px);
  opacity: 1;
}
@media screen and (max-width: 500px) {
  .home_journey__back {
    margin-top: -78px;
  }
}

@media screen and (max-width: 500px) {
  .home_journey__back img {
    height: 460px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
/*================================================
home_journey----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_news----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_news {
  padding-top: 168px;
}
@media screen and (max-width: 1000px) {
  .home_news {
    padding-top: 128px;
  }
}

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

@media screen and (max-width: 1000px) {
  .home_headline--home_news {
    text-align: center;
  }
}
.cm_btn--home_news {
  margin-top: 248px;
}
@media screen and (max-width: 1000px) {
  .cm_btn--home_news {
    text-align: center;
    margin-top: 64px;
  }
}

.home_news__info {
  padding-top: 46px;
  flex-basis: 65%;
}
@media screen and (max-width: 1000px) {
  .home_news__info {
    padding-top: 56px;
  }
}

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

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

.home_news__time {
  display: block;
  margin-bottom: 16px;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .home_news__time {
    margin-bottom: 10px;
  }
}

.home_news__caption {
  position: relative;
  padding: 1px 0px;
  padding-right: 52px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 1000px) {
  .home_news__caption {
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 500px) {
  .home_news__caption {
    -webkit-line-clamp: 3;
  }
}

.home_news__arrow {
  position: relative;
  aspect-ratio: 1/1;
  background: #407BA4;
  width: 32px;
  height: auto;
  border-radius: 50%;
  transition: all 0.5s;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.home_news__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
@media screen and (max-width: 500px) {
  .home_news__arrow svg {
    width: 11px;
  }
}
.home_news__arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.home_news__arrow svg:last-of-type {
  left: -150%;
}
.home_news__arrow #home_btn__inner {
  transition: all 0.4s;
}

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

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

.loading {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  height: 100vh;
  background: #FCFBF9;
  background-repeat: repeat;
  background-size: contain;
  opacity: 1;
  box-sizing: border-box;
  overflow: hidden;
}

.loading__box {
  position: absolute;
  right: -301px;
  transform: translateY(-50%) rotate(240deg);
  aspect-ratio: 1/1;
  width: 301px;
  height: auto;
  background: #407ba4;
  transition: all 6s;
  transition-delay: 0s;
  border: solid 33px #407BA4;
  box-sizing: border-box;
  top: calc(50% - 300px);
}
@media screen and (max-width: 1500px) {
  .loading__box {
    top: calc(50% - 200px);
  }
}
@media screen and (max-width: 500px) {
  .loading__box {
    top: calc(50% - 100px);
    width: 260px;
    border: solid 10px #407BA4;
  }
}

.loading__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 493px;
  transition: all 6s;
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
  display: block;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .loading__logo {
    max-width: 384px;
  }
}
@media screen and (max-width: 500px) {
  .loading__logo {
    top: calc(50% - 60px);
    max-width: calc(100% - 130px);
    padding: 0 20px;
  }
}

.loading__step1 .loading__box {
  right: calc(50% + 170px);
  transform: translateY(-50%) rotate(0deg);
  border-radius: 40%;
  width: 182px;
  top: 50%;
}
@media screen and (max-width: 500px) {
  .loading__step1 .loading__box {
    width: 80px;
  }
}
@media screen and (max-width: 1000px) {
  .loading__step1 .loading__box {
    right: calc(50% + 135px);
  }
}
@media screen and (max-width: 500px) {
  .loading__step1 .loading__box {
    top: calc(50% - 55px);
    right: calc(100% - 105px);
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.loading__step2 .loading__box {
  background: rgba(64, 123, 164, 0);
  transition: all 2s;
  border-radius: 50%;
}
.loading__step2 .loading__logo {
  opacity: 0.4;
  transition: all 4s;
}

.loading__step3 .loading__box {
  width: 55px;
  top: calc(50% + 8px);
  transform: translateY(-50%) translateX(-50%);
  border: solid 14px #407BA4;
  background: rgba(252, 251, 249, 0);
}
@media screen and (max-width: 1000px) {
  .loading__step3 .loading__box {
    width: 45px;
    top: calc(50% + 7px);
    transform: translateY(-50%) translateX(-50%);
    border: solid 13px #407BA4;
  }
}
@media screen and (max-width: 500px) {
  .loading__step3 .loading__box {
    top: calc(50% - 55px);
    width: 31px;
    border: solid 8px #407BA4;
  }
}
.loading__step3 .loading__logo {
  opacity: 1;
  transition: all 3s;
}

.loading__step4 {
  transition: all 2s;
  opacity: 0;
}
.loading__step4 .loading__box {
  opacity: 0;
  pointer-events: none;
}
.loading__step4 .loading__logo {
  opacity: 0;
  pointer-events: none;
  transition: all 2s;
}

.loading__comp {
  display: none !important;
}

/*------------------------------------------------
loading----SP
------------------------------------------------*/
/*================================================
loading----END
==================================================*/
.lower_readline {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  font-size: clamp(2.4rem, 2.5806451613vw, 3.2rem);
  line-height: 180%;
  color: #333333;
}

.lower_circleline {
  position: relative;
  padding-left: 30px;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 120%;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .lower_circleline {
    padding-left: 26px;
  }
}
.lower_circleline::before {
  content: "";
  width: 20px;
  height: 20px;
  border: solid 5px #407BA4;
  box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .lower_circleline::before {
    width: 18px;
    height: 18px;
  }
}

.cm_btn__link {
  position: relative;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  text-align: center;
  color: #fff;
  width: 240px;
  box-sizing: border-box;
  padding: 16px 8px;
}
@media screen and (max-width: 500px) {
  .cm_btn__link {
    padding: 14px 8px;
  }
}
.cm_btn__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #407BA4;
  z-index: -1;
  transition: all 0.3s;
  border-radius: 40px;
}

.cm_btn__arrow {
  display: inline-block;
  position: relative;
  aspect-ratio: 16/11;
  width: 16px;
  height: auto;
  border-radius: 50%;
  transition: all 0.5s;
  overflow: hidden;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .cm_btn__arrow {
    right: 16px;
  }
}
.cm_btn__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
.cm_btn__arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.cm_btn__arrow svg:last-of-type {
  left: -150%;
}
.cm_btn__arrow #home_btn__inner {
  transition: all 0.4s;
}

.cm_btn__link:hover {
  opacity: 1;
}
.cm_btn__link:hover::before {
  transform: translate(-50%, -50%) scale(1.2, 1.2);
}
.cm_btn__link:hover .cm_btn__arrow svg:first-of-type {
  left: 150%;
}
.cm_btn__link:hover .cm_btn__arrow svg:last-of-type {
  left: 50%;
}

.blank_btn__link {
  position: relative;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  text-align: center;
  color: #fff;
  width: 240px;
  box-sizing: border-box;
  padding: 16px 8px;
}
@media screen and (max-width: 500px) {
  .blank_btn__link {
    padding: 14px 8px;
  }
}
.blank_btn__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #407BA4;
  z-index: -1;
  transition: all 0.3s;
  border-radius: 40px;
}
.blank_btn__link::after {
  content: "";
  background: url(../images/common/blank_ico_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  width: 20px;
  height: auto;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 500px) {
  .blank_btn__link::after {
    width: 18px;
    right: 18px;
  }
}

.blank_btn__link:hover {
  opacity: 1;
}
.blank_btn__link:hover::before {
  transform: translate(-50%, -50%) scale(1.2, 1.2);
}

.circle-lazy {
  clip-path: circle(0 at 50% 50%);
}

.circle-lazy.cs_ac {
  animation: a_circle_action 1.2s forwards;
  animation-delay: 0.3s;
}

@keyframes a_circle_action {
  0% {
    clip-path: circle(0 at 50% 50%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  30% {
    clip-path: circle(10% at 50% 50%);
  }
  100% {
    clip-path: circle(100% at 50% 50%);
    transform: translateY(0%);
  }
}
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
blank_banner----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.blank_banner__link {
  display: flex;
  max-width: 674px;
  width: 100%;
  background: #ECF4FA;
  border-radius: 20px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .blank_banner__link {
    max-width: 560px;
  }
}
@media screen and (max-width: 500px) {
  .blank_banner__link {
    max-width: calc(100% - 40px);
  }
}

.blank_banner__link__columns {
  display: flex;
  max-width: 537px;
  margin: auto;
  padding: 32px 64px;
  box-sizing: content-box;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 500px) {
  .blank_banner__link__columns {
    display: block;
    padding: 32px;
  }
}

.blank_banner__img {
  flex-basis: 31.28%;
}
@media screen and (max-width: 500px) {
  .blank_banner__img {
    max-width: 114px;
    margin: auto;
  }
}

.blank_banner__content {
  flex-basis: 330px;
}
@media screen and (max-width: 500px) {
  .blank_banner__content {
    margin-top: 16px;
  }
}

.gloves_banner__txt {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  color: #333333;
}
@media screen and (max-width: 500px) {
  .gloves_banner__txt {
    text-align: center;
  }
}

.gloves_banner__eng {
  display: block;
  margin: 16px 0 32px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-style: normal;
  font-weight: 100;
  font-size: clamp(4rem, 5.1612903226vw, 6.4rem);
  line-height: 80%;
  color: #333333;
}
@media screen and (max-width: 500px) {
  .gloves_banner__eng {
    text-align: center;
  }
}

.gloves_banner__eng__point {
  font-weight: 500;
  color: #407BA4;
}

.gloves_banner__blank {
  display: flex;
  gap: 6px;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .gloves_banner__blank {
    justify-content: center;
  }
}

.gloves_banner__blank__inner {
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  text-decoration-line: underline;
  color: #407BA4;
  line-height: 1;
}

.gloves_banner__ico {
  max-width: 16px;
  margin: 0;
}

/*================================================
blank_banner----END
==================================================*/
@media screen and (min-width: 1001px) {
  .mobile_only {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .pc_only2 {
    display: none !important;
  }
}
@media screen and (min-width: 501px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .pc_only {
    display: none !important;
  }
}
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
gloves_features----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.gloves_features__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .gloves_features__columns {
    display: block;
  }
}

.gloves_features__imgs {
  flex-basis: 46%;
}
@media screen and (max-width: 1000px) {
  .gloves_features__imgs {
    display: block;
    max-width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .gloves_features__imgs {
    max-width: 100%;
  }
}

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

.lower_readline--gloves_features {
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .lower_readline--gloves_features {
    margin-bottom: 32px;
  }
}

.lower_circleline--gloves_features {
  margin: 104px 0 40px;
}
@media screen and (max-width: 1000px) {
  .lower_circleline--gloves_features {
    margin: 64px 0 32px;
  }
}

.gloves_features__img1 {
  max-width: 68.84%;
}
@media screen and (max-width: 1000px) {
  .gloves_features__img1 {
    max-width: 40%;
  }
}
@media screen and (max-width: 500px) {
  .gloves_features__img1 {
    max-width: 56.84%;
  }
}

.gloves_features__img2 {
  max-width: 31.52%;
  margin-left: auto;
  margin-top: -50px;
}
@media screen and (max-width: 1000px) {
  .gloves_features__img2 {
    margin-top: -120px;
    max-width: 32%;
  }
}
@media screen and (max-width: 500px) {
  .gloves_features__img2 {
    max-width: 31.52%;
    margin-top: -64px;
  }
}

.gloves_features__img3 {
  max-width: 51.09%;
  margin: auto;
  box-sizing: content-box;
  padding-right: 20px;
  margin-top: -10px;
}
@media screen and (max-width: 1000px) {
  .gloves_features__img3 {
    margin-top: -56px;
    max-width: 45%;
  }
}
@media screen and (max-width: 500px) {
  .gloves_features__img3 {
    max-width: 51.09%;
    margin-top: -24px;
  }
}

.gloves_features__imgs.cs_ac .gloves_features__img {
  clip-path: circle(0 at 50% 50%);
  animation: a_circle_action 1.2s forwards;
  animation-delay: 0.6s;
}
.gloves_features__imgs.cs_ac .gloves_features__img2 {
  animation-delay: 1s;
}
.gloves_features__imgs.cs_ac .gloves_features__img3 {
  animation-delay: 1.4s;
}

/*================================================
gloves_features----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
gloves_license----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.gloves_license {
  position: relative;
  margin-top: 160px;
}
@media screen and (max-width: 1000px) {
  .gloves_license {
    margin-top: 120px;
  }
}

.lower_circleline--gloves_license {
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .lower_circleline--gloves_license {
    margin-bottom: 32px;
  }
}

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

.gloves_license__img {
  flex-basis: 32.08%;
  border: solid 1px #E2E2E2;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .gloves_license__img {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .gloves_license__img {
    max-width: 70%;
  }
}

.gloves_license__content {
  flex-basis: 59.08%;
}

.gloves_license__btns {
  margin-top: 64px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .gloves_license__btns {
    margin-top: 56px;
  }
}
@media screen and (max-width: 500px) {
  .gloves_license__btns {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .gloves_license__btns .blank_btn + .blank_btn {
    margin-top: 24px;
  }
}

.gloves_license__back {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s ease;
  transition-delay: 0.3s;
}
@media screen and (max-width: 1000px) {
  .gloves_license__back img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}

.gloves_license__back.cs_ac {
  clip-path: inset(0 0% 0 0);
}

/*================================================
gloves_license----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
gloves_lineup----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.gloves_lineup {
  box-sizing: border-box;
  padding: 148px 0 120px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .gloves_lineup {
    padding: 120px 0 80px;
  }
}

.lower_circleline--gloves_lineup {
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .lower_circleline--gloves_lineup {
    margin-bottom: 32px;
  }
}

.gloves_lineup__wrap {
  background: #FCFBF9;
  border-radius: 20px;
  padding: 48px;
}
@media screen and (max-width: 1000px) {
  .gloves_lineup__wrap {
    padding: 32px;
  }
}
@media screen and (max-width: 500px) {
  .gloves_lineup__wrap {
    padding: 32px 20px;
  }
}

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

.gloves_lineup__readline {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 120%;
  color: #407BA4;
}
@media screen and (max-width: 1000px) {
  .gloves_lineup__readline {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 500px) {
  .gloves_lineup__readline {
    line-height: 160%;
  }
}

/*================================================
gloves_lineup----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
gloves_slier----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.gloves_gallery {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.gloves_slier {
  opacity: 0;
  transform: translateX(0);
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 16px;
}
@media screen and (max-width: 1000px) {
  .gloves_slier {
    gap: 8px;
  }
}

.gloves_slier.is-active {
  opacity: 1;
  animation: a_gloves_slier 60s linear infinite;
}
@media screen and (max-width: 1000px) {
  .gloves_slier.is-active {
    animation: a_gloves_slier 40s linear infinite;
  }
}

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

.gloves_slier__img {
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .gloves_slier__img {
    max-width: 320px;
  }
}
@media screen and (max-width: 500px) {
  .gloves_slier__img {
    max-width: 200px;
  }
}

@keyframes a_gloves_slier {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}
@media screen and (max-width: 1000px) {
  @keyframes a_gloves_slier {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 4px));
    }
  }
}
/*================================================
gloves_slier----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
gloves_handling----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.gloves_handling {
  background: #fff;
  padding-top: 160px;
}
@media screen and (max-width: 1000px) {
  .gloves_handling {
    padding-top: 120px;
  }
}

.lower_circleline--gloves_handling {
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .lower_circleline--gloves_handling {
    margin-bottom: 32px;
  }
}

/*================================================
gloves_handling----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
gloves_banner----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.gloves_banner {
  padding-top: 80px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .gloves_banner {
    padding-top: 64px;
  }
}

.gloves_banner__back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s ease;
  transition-delay: 0.3s;
}
@media screen and (max-width: 1000px) {
  .gloves_banner__back img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}

.gloves_banner__back.cs_ac {
  clip-path: inset(0 0% 0 0);
}

/*================================================
gloves_banner----END
==================================================*/
.history_wrap + .history_wrap {
  margin-top: 160px;
}
@media screen and (max-width: 1000px) {
  .history_wrap + .history_wrap {
    margin-top: 120px;
  }
}

.lower_circleline--history_wrap {
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .lower_circleline--history_wrap {
    margin-bottom: 32px;
  }
}

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

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

.history_columns {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 500px) {
  .history_columns {
    margin-top: 64px;
    display: block;
  }
}

.history_columns__img {
  border-radius: 20px;
  overflow: hidden;
  flex-basis: 31.66%;
}
@media screen and (max-width: 1000px) {
  .history_columns__img {
    flex-basis: 32.66%;
  }
}

@media screen and (min-width: 501px) {
  .history_columns__img.lazy-show:nth-of-type(2) {
    transition-delay: 0.8s;
  }
  .history_columns__img.lazy-show:nth-of-type(3) {
    transition-delay: 1.3s;
  }
}
@media screen and (max-width: 500px) {
  .history_columns__img + .history_columns__img {
    margin-top: 32px;
  }
}
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
history_future----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.history_future {
  position: relative;
  margin-top: -70px;
}
@media screen and (max-width: 1000px) {
  .history_future {
    margin-top: -56px;
  }
}

.history_future__back {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(30px);
  transition: all 1.6s;
  transition-delay: 0.3s;
}
.history_future__back .history_future__back__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 10% 0;
     object-position: 10% 0;
}
.history_future__back.cs_ac {
  filter: blur(0px);
  opacity: 1;
}

.history_future__back_bottom {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .history_future__back_bottom img {
    pointer-events: none;
    height: 104px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .history_future__back_bottom img {
    height: 88px;
  }
}

.history_future__content {
  max-width: 648px;
  margin-left: auto;
  padding: 372px 0 490px;
  color: #fff;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .history_future__content {
    max-width: 100%;
    padding: 300px 0 400px;
  }
}
@media screen and (max-width: 1000px) {
  .history_future__content {
    padding: 200px 0 280px;
  }
}
.history_future__content .lazy {
  filter: blur(20px);
}
.history_future__content .lazy-show {
  transition: all 1.2;
  transition-delay: 0.8s;
  filter: blur(0px);
}

.lower_circleline--history_future {
  color: #fff;
}

.lower_readline--history_future {
  color: #fff;
  margin: 40px 0 56px;
}
@media screen and (max-width: 1000px) {
  .lower_readline--history_future {
    margin: 32px 0 48px;
  }
  .lower_readline--history_future br {
    display: block;
  }
}

/*================================================
history_future----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
town_future----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.town_future {
  position: relative;
  padding: 40px 0 632px;
}
.town_future .lazy-show {
  transition-delay: 1.2s;
}
@media screen and (max-width: 1000px) {
  .town_future {
    padding: 32px 0 480px;
  }
}

.town_future__back {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(30px);
  transition: all 1.6s;
  transition-delay: 0.3s;
}
.town_future__back .town_future__back__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.town_future__back.cs_ac {
  filter: blur(0px);
  opacity: 1;
}

.town_future__headline {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .town_future__headline br {
    display: block;
  }
}

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

.town_future__wrap {
  max-width: 722px;
  padding: 42px;
  background: #FCFBF9;
  border-radius: 20px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .town_future__wrap {
    max-width: 600px;
    padding: 32px;
  }
}
@media screen and (max-width: 500px) {
  .town_future__wrap {
    padding: 32px 20px;
  }
}

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

.town_future__columns__img {
  flex-basis: 33.91%;
}
@media screen and (max-width: 500px) {
  .town_future__columns__img {
    max-width: 220px;
    margin: auto;
  }
}

.town_future__columns__txt {
  flex-basis: 61.09%;
}
@media screen and (max-width: 500px) {
  .town_future__columns__txt {
    margin-top: 32px;
  }
}

.town_future__columns__readline {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1.4;
  color: #333333;
  margin-bottom: 16px;
}
@media screen and (max-width: 500px) {
  .town_future__columns__readline {
    text-align: center;
  }
  .town_future__columns__readline br {
    display: block;
  }
}

/*================================================
town_future----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
town_content----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.town_content {
  margin-top: -216px;
}
@media screen and (max-width: 1000px) {
  .town_content {
    margin-top: -160px;
  }
}

.town_content__wrap {
  padding: 48px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .town_content__wrap {
    padding: 32px;
  }
}
@media screen and (max-width: 500px) {
  .town_content__wrap {
    padding: 32px 20px;
  }
}

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

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

.town_content__img {
  flex-basis: 25.36%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
  overflow: hidden;
}

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

.town_content__headline {
  margin-bottom: 16px;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 120%;
  color: #407BA4;
}
@media screen and (max-width: 500px) {
  .town_content__headline {
    line-height: 160%;
  }
}

/*================================================
town_content----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
proud_section----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.proud_section__columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .proud_section__columns {
    display: block;
  }
}

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

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

.proud_section__img {
  flex-basis: 40%;
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .proud_section__img {
    display: block;
    max-width: 70%;
    margin: auto;
  }
}

.proud_section__content {
  position: relative;
  padding-left: 60px;
  max-width: 54%;
}
@media screen and (max-width: 1000px) {
  .proud_section__content {
    margin-top: 40px;
    max-width: 100%;
    padding-left: 40px;
  }
}
@media screen and (max-width: 500px) {
  .proud_section__content {
    padding-left: 32px;
  }
}

.proud_section__content::before {
  content: "";
  width: 20px;
  height: 20px;
  border: solid 5px #407BA4;
  box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 20px;
}
@media screen and (max-width: 1000px) {
  .proud_section__content::before {
    width: 19px;
    height: 18px;
    top: 14px;
  }
}

.lower_readline--proud_section {
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .lower_readline--proud_section {
    margin-bottom: 24px;
  }
}

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

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

@media screen and (min-width: 1001px) {
  .page_nav__list {
    position: sticky;
    top: 148px;
  }
}
.page_nav__list li + li {
  line-height: 1;
  margin-top: 18px;
}
@media screen and (max-width: 1000px) {
  .page_nav__list li + li {
    margin-top: 14px;
  }
}
.page_nav__list a {
  position: relative;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 120%;
  color: #333333;
  opacity: 0.3;
  padding-left: 30px;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .page_nav__list a {
    padding-left: 24px;
  }
}
.page_nav__list a::before {
  content: "";
  width: 20px;
  height: 20px;
  border: solid 5px #407BA4;
  box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .page_nav__list a::before {
    width: 18px;
    height: 18px;
  }
}
.page_nav__list a:hover,
.page_nav__list .current_page_item a {
  opacity: 1;
}
.page_nav__list a:hover::before,
.page_nav__list .current_page_item a::before {
  opacity: 1;
}

/*================================================
company----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
message----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.message__section__read {
  margin: 56px 0 40px;
}
@media screen and (max-width: 1000px) {
  .message__section__read {
    margin: 40px 0 32px;
  }
}

.message_name {
  position: relative;
}

@media screen and (min-width: 501px) and (max-width: 1000px) {
  .lower_readline--message__section br {
    display: block;
  }
}
.message_name__main {
  text-align: right;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2.2rem, 1.935483871vw, 2.4rem);
  line-height: 180%;
  color: #333333;
}

.message_name__small {
  margin-right: 10px;
  font-weight: 400;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
}
@media screen and (max-width: 1000px) {
  .message_name__small {
    margin-right: 8px;
  }
}

.message_name__sign {
  position: absolute;
  right: 0;
  top: -15px;
  max-width: 210px;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .message_name__sign {
    max-width: 180px;
    top: -5px;
  }
}

/*================================================
message----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
sustainability----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.sustainability__section {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .sustainability__section {
    margin-top: 64px;
  }
}

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

@media screen and (min-width: 501px) and (max-width: 1000px) {
  .lower_readline--sustainability__catch br {
    display: block;
  }
}
.sustainability__wrap {
  padding: 48px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .sustainability__wrap {
    padding: 32px;
  }
}
@media screen and (max-width: 500px) {
  .sustainability__wrap {
    padding: 32px 20px;
  }
}

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

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

.sustainability__columns__img {
  flex-basis: 35.71%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .sustainability__columns__img {
    max-width: 70%;
    display: block;
    margin: auto;
  }
}

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

.sustainability__columns__headline {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 120%;
  color: #407BA4;
  margin-bottom: 16px;
}

/*================================================
sustainability----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
outline----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.outline_content__headline {
  font-style: normal;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 120%;
  text-align: center;
  color: #FFFFFF;
  background: #407BA4;
  border-radius: 10px;
  padding: 17px 8px;
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .outline_content__headline {
    padding: 14px 8px;
    margin-bottom: 48px;
  }
}

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

/*================================================
outline----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
table_wrap----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.table_wrap table th,
.table_wrap table td {
  border: none;
  padding: 32px 24px;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 150%;
  color: #333333;
  background: initial;
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .table_wrap table th,
  .table_wrap table td {
    border-bottom: solid 1px #E2E2E2;
  }
}
@media screen and (max-width: 1000px) {
  .table_wrap table th,
  .table_wrap table td {
    padding: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .table_wrap table td {
    border-bottom: solid 1px #E2E2E2;
    padding-top: 16px;
  }
}
.table_wrap table th {
  font-weight: 500;
}
@media screen and (min-width: 1001px) {
  .table_wrap table th {
    border-bottom: solid 1px #407BA4;
    width: 136px;
  }
}
@media screen and (max-width: 1000px) {
  .table_wrap table th {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1001px) {
  .table_wrap table tr:first-of-type th,
  .table_wrap table tr:first-of-type td {
    padding-top: 0;
  }
}
@media screen and (max-width: 1000px) {
  .table_wrap table tr:first-of-type th {
    padding-top: 0;
  }
}

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

.access__columns {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .access__columns {
    margin-top: 32px;
  }
}
@media screen and (max-width: 500px) {
  .access__columns {
    display: block;
  }
}

.access__content--only {
  flex-basis: 100%;
}

.access__img {
  flex-basis: 51.82%;
}
.access__img img {
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .access__img {
    flex-basis: 44%;
  }
}
@media screen and (max-width: 500px) {
  .access__img {
    margin-bottom: 24px;
  }
}

.access__headline {
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 120%;
  color: #407BA4;
  margin-bottom: 16px;
}
@media screen and (max-width: 1000px) {
  .access__headline {
    margin-bottom: 10px;
  }
}

/*================================================
access----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
products_catch----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.products_catch__columns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  .products_catch__columns {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 104px;
  }
}

.products_catch__read {
  flex-basis: 54%;
}

.products_catch__banner {
  margin: 96px 0 120px;
}
@media screen and (max-width: 1000px) {
  .products_catch__banner {
    margin: 80px 0 104px;
  }
}

/*================================================
products_catch----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
products__list----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.products__list_wrap {
  padding: 12px;
  background: #fff;
  border-radius: 64px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .products__list_wrap {
    padding: 6px;
    border-radius: 28px;
    margin-bottom: 72px;
  }
}

.products__list {
  display: flex;
  margin: -3px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .products__list {
    margin: -2px;
  }
}
@media screen and (max-width: 500px) {
  .products__list {
    margin: -1px;
  }
}

.products__item {
  padding: 3px;
  box-sizing: border-box;
  flex-basis: 16.66%;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .products__item {
    padding: 2px;
    flex-basis: 33.33%;
  }
}
@media screen and (max-width: 500px) {
  .products__item {
    padding: 1px;
    flex-basis: 50%;
  }
}

.products__list__link {
  display: block;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  text-align: center;
  color: #407BA4;
  background: #F5F4F2;
  border-radius: 40px;
  padding: 20px 8px;
}
@media screen and (max-width: 1000px) {
  .products__list__link {
    padding: 16px 8px;
  }
}

.products__list__link:hover,
.current_page_item .products__list__link {
  opacity: 1;
  color: #fff;
  background: #407BA4;
}

/*================================================
products__list----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
archive products----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.products_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 30px;
}
@media screen and (max-width: 1000px) {
  .products_cards {
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .products_cards {
    gap: 48px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.products_card__link {
  display: block;
}

.products_card__pic {
  overflow: hidden;
  border-radius: 20px;
}
.products_card__pic img {
  transition: all 0.6s;
  aspect-ratio: 380/253;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

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

.products_card__lead {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  color: #333333;
}

.products_card__arrow {
  display: inline-block;
  position: relative;
  aspect-ratio: 1/1;
  background: #407BA4;
  width: 32px;
  height: auto;
  border-radius: 50%;
  transition: all 0.5s;
  overflow: hidden;
}
.products_card__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
@media screen and (max-width: 500px) {
  .products_card__arrow svg {
    width: 11px;
  }
}
.products_card__arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.products_card__arrow svg:last-of-type {
  left: -150%;
}
.products_card__arrow #home_btn__inner {
  transition: all 0.4s;
}

.products_card__link:hover {
  opacity: 1;
}
.products_card__link:hover .products_card__arrow svg:first-of-type {
  left: 150%;
}
.products_card__link:hover .products_card__arrow svg:last-of-type {
  left: 50%;
}
.products_card__link:hover::before {
  width: 0%;
}
.products_card__link:hover::after {
  width: 100%;
  transition-delay: 0.3s;
}
.products_card__link:hover .products_card__pic img {
  transform: scale(1.1, 1.1);
}

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

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

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

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

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

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

.products_s__slider {
  background: #fff;
  margin-bottom: 32px;
  border-radius: 20px;
  overflow: hidden;
}
.products_s__slider img {
  aspect-ratio: 640/426;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1000px) {
  .products_s__slider {
    margin-bottom: 16px;
  }
}

.products_s__nav {
  margin: 0 -4px;
}
@media screen and (max-width: 500px) {
  .products_s__nav {
    margin: 0 -4px;
  }
}
.products_s__nav .slick-slide {
  background: #fff;
  margin: 0 4px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  .products_s__nav .slick-slide {
    margin: 0 2px;
    border-radius: 10px;
  }
}
.products_s__nav img {
  transition: all 0.6s;
  aspect-ratio: 208/138;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.products_s__nav .slick-slide:hover img {
  transform: scale(1.1, 1.1);
}
.products_s__nav .slick-arrow {
  top: 50%;
  transform: translateY(-50%) !important;
  bottom: unset;
  left: unset;
  right: unset;
  aspect-ratio: 1/1;
  width: 34px;
  height: auto;
  transform: none;
  z-index: 1;
}
@media screen and (max-width: 500px) {
  .products_s__nav .slick-arrow {
    width: 24px;
  }
}
.products_s__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/products_arrow.png);
  background-position: center center;
  background-size: 32px auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 500px) {
  .products_s__nav .slick-arrow::after {
    width: 20px;
    background-size: 20px auto;
  }
}
.products_s__nav .slick-prev {
  left: -16px;
}
@media screen and (max-width: 500px) {
  .products_s__nav .slick-prev {
    left: -12px;
  }
}
.products_s__nav .slick-next {
  right: -16px;
  left: auto;
  transform: translateY(-50%) rotate(180deg) !important;
}
@media screen and (max-width: 500px) {
  .products_s__nav .slick-next {
    right: -12px;
  }
}

/*================================================
products_single----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
journey_catch----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.journey_catch {
  margin-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  .journey_catch {
    margin-bottom: 104px;
  }
}

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

.lower_readline--journey_catch {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .lower_readline--journey_catch {
    text-align: left;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .lower_readline--journey_catch br {
    display: block;
  }
}

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

/*================================================
journey_catch----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
journey_anniversary----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.journey_anniversary__container {
  max-width: 880px;
  position: relative;
  margin: auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .journey_anniversary__container {
    padding-bottom: 32px;
  }
}
.journey_anniversary__container .cs_st {
  filter: blur(20px);
  opacity: 0;
  transition: all 1s;
}
.journey_anniversary__container .cs_ac {
  transition-delay: 0.6s;
  opacity: 1;
  filter: blur(0px);
}

.journey_anniversary_wrap {
  position: relative;
}

.journey_line {
  content: "";
  background: linear-gradient(to bottom, rgb(64, 123, 164) 0%, rgba(64, 123, 164, 0) 110%);
  position: absolute;
  top: 43px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
}
@media screen and (max-width: 1000px) {
  .journey_line {
    top: 16px;
  }
}
@media screen and (max-width: 500px) {
  .journey_line {
    transform: initial;
    left: 16px;
  }
}

.journey_anniversary__contents + .journey_anniversary__contents {
  margin-top: 48px;
}

.journey_anniversary__contents {
  position: relative;
}
@media screen and (max-width: 500px) {
  .journey_anniversary__contents {
    padding-left: 40px;
    padding-right: 10px;
  }
}
.journey_anniversary__contents::before {
  content: "";
  width: 20px;
  height: 20px;
  border: solid 5px #407BA4;
  background: #FCFBF9;
  box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  top: 26px;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .journey_anniversary__contents::before {
    width: 18px;
    height: 18px;
    top: 12px;
  }
}
@media screen and (max-width: 500px) {
  .journey_anniversary__contents::before {
    left: 8px;
  }
}

@media screen and (min-width: 501px) {
  .journey_anniversary__contents_l {
    margin-right: 50%;
    padding-right: 50px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .journey_anniversary__contents_l {
    padding-right: 32px;
  }
}
@media screen and (min-width: 501px) {
  .journey_anniversary__contents_l .journey_anniversary__year,
  .journey_anniversary__contents_l .journey_anniversary__detail {
    text-align: right;
  }
  .journey_anniversary__contents_l::before {
    right: 0;
    transform: translateX(50%);
  }
}
@media screen and (min-width: 501px) {
  .journey_anniversary__contents_r {
    margin-left: 50%;
    padding-left: 50px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .journey_anniversary__contents_r {
    padding-left: 32px;
  }
}
@media screen and (min-width: 501px) {
  .journey_anniversary__contents_r .journey_anniversary__year,
  .journey_anniversary__contents_r .journey_anniversary__detail {
    text-align: left;
  }
  .journey_anniversary__contents_r::before {
    left: 0;
    transform: translateX(-50%);
  }
}
.journey_anniversary__year {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-style: normal;
  font-size: clamp(4.6rem, 6.4516129032vw, 8rem);
  line-height: 80%;
  color: #407BA4;
}

.journey_anniversary__year--mini {
  font-size: clamp(3.2rem, 3.8709677419vw, 4.8rem);
}

.journey_anniversary__detail {
  margin-top: 16px;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  line-height: 180%;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .journey_anniversary__detail {
    margin-top: 12px;
  }
}

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

.journey_anniversary__img {
  border-radius: 20px;
  overflow: hidden;
}

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

/*================================================
journey_anniversary----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
journey_back----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.journey_back {
  position: relative;
  z-index: -1;
  opacity: 0;
  filter: blur(30px);
  transition: all 1.6s;
  transition-delay: 0.3s;
  margin-top: -60px;
}
.journey_back.cs_ac {
  filter: blur(0px);
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .journey_back__img {
    height: 460px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.journey_back__bottom {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .journey_back__bottom img {
    pointer-events: none;
    height: 104px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .journey_back__bottom img {
    height: 88px;
  }
}

/*================================================
journey_back----END
==================================================*/
.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: #333333;
  background: #fff;
  border-radius: 40px;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  font-weight: 500;
}
.contact_block__tab.active {
  color: #fff;
  background: #407BA4;
}
@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: #E2E2E2;
}
@media screen and (min-width: 1001px) {
  .contact_block__line {
    width: 72px;
  }
}
@media screen and (max-width: 1000px) {
  .contact_block__line {
    width: 20px;
  }
}

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

.policy_block__lead {
  margin-bottom: 5px;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 200%;
  color: #333333;
}

.policy_block__description {
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 200%;
  color: #333333;
}

.found_block {
  margin-top: -280px;
}
@media screen and (max-width: 1000px) {
  .found_block {
    margin-top: -140px;
  }
}

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

.found_head__caption {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-style: normal;
  font-size: clamp(4.8rem, 5.1612903226vw, 6.4rem);
  line-height: 80%;
  text-align: center;
  color: #333333;
  display: block;
}

.found_head__lead {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2rem, 2.5806451613vw, 3.2rem);
  line-height: 180%;
  text-align: center;
  color: #333333;
}

.found_menu {
  margin-top: clamp(40px, 3vw, 48px);
}
.found_menu ul ul {
  display: none !important;
}
.found_menu li {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}
.found_menu a {
  display: block;
  font-size: inherit;
  text-align: center;
  font-weight: 500;
  color: #333333;
}
.found_menu a:hover {
  opacity: 1;
  color: #407BA4;
}
@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 a {
    padding: 4px 0;
  }
  .found_menu li {
    padding: 0 2em;
    box-sizing: border-box;
    line-height: 1;
  }
  .found_menu li + li {
    border-left: 1px solid #E2E2E2;
  }
}
@media screen and (max-width: 1000px) {
  .found_menu li + li {
    border-top: 1px solid #E2E2E2;
  }
  .found_menu a {
    padding: 1em 0;
  }
}

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

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
topics_block----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.topics_block__columns {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
  border-bottom: solid 1px #E2E2E2;
}
@media screen and (max-width: 1000px) {
  .topics_block__columns {
    display: block;
    padding-bottom: 56px;
  }
}

.topics_block + .topics_block .topics_block__columns {
  padding-top: 80px;
}
@media screen and (max-width: 1000px) {
  .topics_block + .topics_block .topics_block__columns {
    padding-top: 56px;
  }
}

.post_item__pic {
  flex-basis: 40%;
  background: #fff;
  overflow: hidden;
  border-radius: 20px;
}
.post_item__pic img {
  aspect-ratio: 480/352;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.6s;
}

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

.topics_time {
  font-weight: 400;
  font-size: 1.8rem;
  color: #333333;
}

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

.topics_lead--archive {
  margin: 24px 0;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 1000px) {
  .topics_lead--archive {
    margin: 16px 0;
  }
}

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

.topics_more__link {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #407BA4;
}
@media screen and (max-width: 1000px) {
  .topics_more__link {
    margin-top: 32px;
  }
}

.topics__arrow {
  display: inline-block;
  position: relative;
  aspect-ratio: 1/1;
  background: #407BA4;
  width: 32px;
  height: auto;
  border-radius: 50%;
  transition: all 0.5s;
  overflow: hidden;
}
.topics__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
@media screen and (max-width: 500px) {
  .topics__arrow svg {
    width: 11px;
  }
}
.topics__arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.topics__arrow svg:last-of-type {
  left: -150%;
}
.topics__arrow #home_btn__inner {
  transition: all 0.4s;
}

.topics_block__columns:hover {
  opacity: 1;
}
.topics_block__columns:hover .topics__arrow {
  transform: scale(1.2, 1.2);
}
.topics_block__columns:hover .topics__arrow svg:first-of-type {
  left: 150%;
}
.topics_block__columns:hover .topics__arrow svg:last-of-type {
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9, 0.9);
}
.topics_block__columns:hover .post_item__pic img {
  transform: scale(1.1, 1.1);
}

/*================================================
topics_block----END
==================================================*/
.single_block {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1001px) {
  .single_block {
    max-width: 1000px;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .single_block {
    max-width: 1000px;
    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 {
  display: block;
  aspect-ratio: 4/3;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: clamp(32px, 2.5vw, 40px);
}

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

.single_block__time {
  display: block;
  font-size: clamp(1.2rem, 1.2096774194vw, 1.5rem);
  color: #407BA4;
  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 #E2E2E2;
  padding-top: 32px;
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .single_nav {
    padding-top: 32px;
    margin-top: 80px;
  }
}
.single_nav a {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.2903225806vw, 1.6rem);
  color: #333333;
}
.single_nav a:hover {
  opacity: 1;
  color: #407BA4;
}

.single_nav__move {
  min-width: 56px;
}
.single_nav__move a {
  display: flex;
  gap: 16px;
  min-width: 56px;
  justify-content: space-between;
  align-items: center;
}
.single_nav__move a path {
  filter: brightness(0) saturate(100%) invert(43%) sepia(9%) saturate(2435%) hue-rotate(162deg) brightness(102%) contrast(94%);
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
topics_s__warp----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.topics_s__warp {
  max-width: 880px;
  margin: auto;
}

.topics_lead--topics_s__warp {
  margin: 24px 0;
}
@media screen and (max-width: 1000px) {
  .topics_lead--topics_s__warp {
    margin: 16px 0 24px;
  }
}

.topics_s__inner a {
  text-decoration: underline;
  color: #407BA4;
}

.topics_s__image {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 64px;
}
@media screen and (max-width: 1000px) {
  .topics_s__image {
    margin-top: 48px;
  }
}

/*================================================
topics_s__warp----END
==================================================*//*# sourceMappingURL=customize.css.map */