@charset "UTF-8";
/*reset*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
  scroll-margin-block: 10vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

figure {
  margin-bottom: 0;
}

/*
font-family: $en_font;
font-family: "Outfit", sans-serif;
*/
.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}

html, body {
  font-family: "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-style: normal;
  color: #000;
  background: #FFF;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
}

body.entry_page {
  background: #FFF7F2;
}

body.lang-jp .lang_jp {
  display: block;
}
body.lang-jp .lang_en {
  display: none;
}
body.lang-en .lang_jp {
  display: none;
}
body.lang-en .lang_en {
  display: block;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media only screen and (max-width: 896px) {
  html, body {
    cursor: auto;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  body.page {
    padding-top: 0vw;
  }
}
img {
  width: 100%;
  height: auto;
}

/* ::selection {
  background: #333333;
  color: #fff;
}

::-moz-selection {
  background: #ccc;
  color: #fff;
} */
/*----------------------------------------------------
 swiper
--------------------------------------------------- */
.swiper-wrapper {
  transition-timing-function: ease;
}

/*----------------------------------------------------
 link
--------------------------------------------------- */
a:link, a:visited, a:active {
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  text-decoration: none;
}

/*----------------------------------------------------
  .scrollview
--------------------------------------------------- */
.scrollview, .fade_up {
  opacity: 0;
  transform: scale(1, 1) translate(0%, 10px);
}

.scrollview.view, .fade_up.js-fade_up_view {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
  transform: scale(1, 1) translate(0%, 0%);
}

/*----------------------------------------------------
  .lazyload
--------------------------------------------------- */
.lazyload_set span {
  opacity: 0;
}
.lazyload_set span.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}

@keyframes gradation_bg {
  0% {
    background-position: 250% 250%;
  }
  100% {
    background-position: 0% 0%;
  }
}
/*----------------------------------------------------
  .block_loading
--------------------------------------------------- */
.block_loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #af2534;
  transition: all 0.8s 0s ease;
  z-index: 1000;
  transform-origin: 0% 50%;
}
body.pageLoad .block_loading {
  opacity: 0;
  visibility: hidden;
  transform: scale3d(1, 1, 1) translate(0px, 0px);
  transition: all 0.8s 1.5s ease;
}
body.pageLoad .block_loading .logo .in {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s 1.2s ease;
}

.block_loading .logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale3d(1, 1, 1) translate(0px, 20px);
}
.block_loading .logo .in {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/logo_w.svg) no-repeat center center;
  background-size: 200px auto;
}
body.pagestart .block_loading .logo {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate(0px, 0px);
  transition: all 0.5s 0.3s ease;
}

/*----------------------------------------------------
  .wrapper
--------------------------------------------------- */
.wrapper {
  position: relative;
  transition: all 0.8s 0s ease;
  z-index: 3;
}

body.page .wrapper {
  padding-top: 240px;
}
@media (max-width: 896px) {
  body.page .wrapper {
    padding-top: 120px;
  }
}

/*----------------------------------------------------
 block_header
--------------------------------------------------- */
.block_header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_header {
    position: absolute;
    height: 80px;
  }
}
body.page_scroll .block_header {
  background: #FFF;
  height: 120px;
}
@media (max-width: 896px) {
  body.page_scroll .block_header {
    background: none;
    height: 80px;
  }
}
body.page_scroll .block_header .logo {
  top: 18px;
  width: 80px;
}
@media (max-width: 896px) {
  body.page_scroll .block_header .logo {
    top: 15px;
    left: 15px;
    width: 70px;
  }
}
body.page_scroll .block_header ul.menu {
  top: 28px;
}

.block_header .logo {
  position: absolute;
  top: 33px;
  left: 80px;
  width: 140px;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_header .logo {
    top: 15px;
    left: 15px;
    width: 70px;
  }
}
.block_header .logo a {
  display: block;
}
.block_header ul.menu {
  position: absolute;
  top: 74px;
  right: 180px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_header ul.menu {
    display: none;
  }
}
.block_header ul.menu > li {
  position: relative;
  margin-left: 4vw;
}
.block_header ul.menu > li > a {
  display: block;
  padding: 10px 0;
  transition: all 0.3s 0s ease;
}
.block_header ul.menu > li > a span {
  font-size: clamp(0.875rem, 0.8411016949rem + 0.1694915254vw, 1rem);
  letter-spacing: 0.2em;
  font-weight: 500;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  display: inline-block;
  position: relative;
}
.block_header ul.menu > li > a:hover {
  color: #af2534;
}
.block_header ul.menu > li > a:hover span:before {
  width: 100%;
}
.block_header ul.menu > li:hover ul.sub_menu {
  visibility: visible;
  opacity: 1;
}
.block_header ul.menu > li ul.sub_menu {
  transition: all 0.3s 0s ease;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 55px;
  left: 0;
  background: #FFF;
  padding: 10px 20px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0px 10px 30px 0px rgba(51, 51, 51, 0.2);
}
.block_header ul.menu > li ul.sub_menu li {
  border-top: 1px #eee solid;
}
.block_header ul.menu > li ul.sub_menu li:first-child {
  border: none;
}
.block_header ul.menu > li ul.sub_menu li.sub {
  border: none;
}
.block_header ul.menu > li ul.sub_menu li.sub a {
  position: relative;
  padding-left: 15px;
  padding-top: 0;
}
.block_header ul.menu > li ul.sub_menu li.sub a::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -5px;
  left: 0;
  width: 7px;
  height: 1px;
  background: #ccc;
}
.block_header ul.menu > li ul.sub_menu li.sub a span {
  letter-spacing: 0.05em;
}
.block_header ul.menu > li ul.sub_menu li a {
  display: block;
  padding: 10px 0;
  transition: all 0.3s 0s ease;
}
.block_header ul.menu > li ul.sub_menu li a span {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  letter-spacing: 0.2em;
  font-weight: 500;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  display: inline-block;
  position: relative;
}
.block_header ul.menu > li ul.sub_menu li a:hover {
  color: #af2534;
}

/*----------------------------------------------------
 block_scroll
--------------------------------------------------- */
.block_scroll {
  text-align: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 600;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  transition: all 0.5s 0s ease;
  perspective: 500px;
  color: #000;
  z-index: 10;
}
@media (max-width: 896px) {
  .block_scroll {
    bottom: 20px;
    right: 20px;
    z-index: 20;
  }
}
.block_scroll a {
  display: block;
  background: #af2534;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  animation: rotate-anime-3d 3s cubic-bezier(0.875, 0.005, 0.09, 0.99) infinite;
}
.block_scroll a i {
  display: none;
}
.block_scroll a svg {
  fill: #FFF;
  width: 30px;
  height: 30px;
}
@media (max-width: 896px) {
  .block_scroll a svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 896px) {
  .block_scroll a {
    width: 40px;
    height: 40px;
  }
}
.block_scroll span {
  transition: all 0.8s 0s cubic-bezier(0.875, 0.005, 0.09, 0.99);
}
body.page_scroll .block_scroll span {
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-180deg);
}

@keyframes rotate-anime-3d {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*----------------------------------------------------
  .sp_menu
--------------------------------------------------- */
.block_navi {
  position: fixed;
  z-index: 100;
  top: 0px;
  right: 0px;
  width: 120px;
  background: #af2534;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_navi {
    display: flex;
    width: 80px;
    flex-direction: column; /* row row-reverse column */
  }
}
.block_navi a {
  display: block;
  width: 120px;
  height: 120px;
  transition: all 0.4s 0s ease;
  position: relative;
}
@media (max-width: 896px) {
  .block_navi a {
    width: 80px;
    height: 80px;
  }
}
.block_navi a i {
  display: none;
}
.block_navi a .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-left: -60px;
  overflow: hidden;
  transition: all 0.4s 0s ease;
}
@media (max-width: 896px) {
  .block_navi a .wrap {
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
  }
}
.block_navi a .wrap span {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #FFF;
  transform-origin: center center;
}
.block_navi a .wrap span.l1 {
  width: 50px;
  height: 2px;
  margin-top: -7px;
  margin-left: -25px;
}
.block_navi a .wrap span.l2 {
  width: 50px;
  height: 2px;
  margin-top: 0px;
  margin-left: -25px;
}
.block_navi a .wrap span.l3 {
  width: 50px;
  height: 2px;
  margin-top: 7px;
  margin-left: -25px;
}
body.menu_open .block_navi a span.l1 {
  margin-top: 0px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(45deg);
}
body.menu_open .block_navi a span.l2 {
  margin-top: 0px;
  transform: scale3d(0, 1, 1) translate(0px, 0px) rotate(0deg);
}
body.menu_open .block_navi a span.l3 {
  margin-top: 0px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-45deg);
}

/*----------------------------------------------------
  .block_sp_menu
--------------------------------------------------- */
.menu_bg {
  display: block;
  position: fixed;
  top: 0%;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 69;
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  transition: all 0.5s 0s ease;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
body.menu_open .menu_bg {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0%);
}

.block_sp_menu {
  display: block;
  position: fixed;
  top: 0%;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 70;
  transition: all 0.5s 0s ease;
  background: #af2534;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body.menu_open .block_sp_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0px);
}

.block_sp_menu .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/menu_bg.jpg) no-repeat center center;
  background-size: cover;
}
@media (max-width: 896px) {
  .block_sp_menu .inner {
    position: relative;
    height: auto;
    padding-top: 200px;
  }
}
.block_sp_menu .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.block_sp_menu .inner .logo {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 220px;
}
@media (max-width: 896px) {
  .block_sp_menu .inner .logo {
    top: 20px;
    left: 20px;
    width: 120px;
  }
}
.block_sp_menu .inner ul.menu {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  transform: translate(0%, -50%);
}
@media (max-width: 896px) {
  .block_sp_menu .inner ul.menu {
    position: relative;
    top: auto;
    transform: translate(0%, 0%);
    display: flex;
    flex-wrap: wrap;
    padding: 0 60px;
    margin-bottom: 40px;
  }
}
.block_sp_menu .inner ul.menu li {
  position: relative;
  margin-right: 5%;
}
@media (max-width: 896px) {
  .block_sp_menu .inner ul.menu li {
    margin-right: 10%;
    margin-bottom: 10%;
  }
  .block_sp_menu .inner ul.menu li:nth-child(4) {
    margin-right: 0;
  }
}
.block_sp_menu .inner ul.menu li:last-child {
  margin-right: 0;
}
.block_sp_menu .inner ul.menu li a {
  display: block;
  color: #FFF;
  transition: all 0.5s 0s ease;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
.block_sp_menu .inner ul.menu li a span {
  display: block;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  letter-spacing: 0.25em;
  font-size: clamp(0.875rem, 0.6716101695rem + 1.0169491525vw, 1.625rem);
  writing-mode: vertical-rl;
}
.block_sp_menu .inner ul.menu li a small {
  display: block;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: clamp(0.5rem, 0.4661016949rem + 0.1694915254vw, 0.625rem);
  writing-mode: vertical-rl;
  padding-left: 10px;
  color: #84a2b2;
}
.block_sp_menu .inner ul.menu li a:hover {
  color: #af2534;
}
.block_sp_menu .inner ul.sub_menu {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
@media (max-width: 896px) {
  .block_sp_menu .inner ul.sub_menu {
    position: relative;
    bottom: auto;
    padding: 20px;
  }
}
.block_sp_menu .inner ul.sub_menu li a {
  display: block;
  font-size: 14px;
  color: #FFF;
  font-weight: 700;
  transition: all 0.5s 0s ease;
}
.block_sp_menu .inner ul.sub_menu li a:hover {
  color: #af2534;
}
.block_sp_menu .inner .address {
  position: absolute;
  left: 40px;
  bottom: 40px;
  color: #FFF;
}
@media (max-width: 896px) {
  .block_sp_menu .inner .address {
    position: relative;
    left: auto;
    bottom: auto;
    padding: 20px;
  }
}
.block_sp_menu .inner .address p {
  margin-bottom: 20px;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  letter-spacing: 0.05em;
}
.block_sp_menu .inner .address p strong {
  font-size: clamp(0.75rem, 0.6822033898rem + 0.3389830508vw, 1rem);
}
.block_sp_menu .inner .address p a {
  color: #FFF;
  text-decoration: underline;
}

/*----------------------------------------------------
 block_mainvisual
--------------------------------------------------- */
.block_mainvisual {
  overflow: hidden;
  position: relative;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_mainvisual {
    margin-top: 0px;
    margin-bottom: 10%;
  }
}
.block_mainvisual .slide {
  position: relative;
  left: 0;
  opacity: 0;
  transform: scale3d(1.1, 1.1, 1.1) translate(0%, 0px);
}
body.pageLoad .block_mainvisual .slide {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate(0%, 0px);
  transition: all 1.5s 2s ease;
}
.block_mainvisual .slide .column figure .img_wrap {
  position: relative;
  padding-top: 58%;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column figure .img_wrap {
    padding-top: 120%;
  }
}
.block_mainvisual .slide .column figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}
.block_mainvisual .slide .column figure .img_wrap span.bottom {
  background-position: center 10%;
}
.block_mainvisual .slide .column .textarea {
  position: absolute;
  top: 20vw;
  left: 62vw;
  height: 100%;
  z-index: 5;
  color: #FFF;
}
.block_mainvisual .slide .column .textarea.out {
  transition: all 0.8s 0s ease;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column .textarea {
    top: 37vw;
    left: 38vw;
  }
}
.block_mainvisual .slide .column .textarea .about {
  line-height: 1.4;
  position: relative;
  display: block;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  font-size: 1.7vw;
  margin-bottom: 0;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column .textarea .about {
    font-size: 4vw;
  }
}
.block_mainvisual .slide .column .textarea .about span {
  display: inline-block;
  position: relative;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column .textarea .about span {
    padding-left: 7vw;
  }
}
.block_mainvisual .slide .column .textarea .about span i {
  font-style: normal;
  display: inline-block;
  opacity: 0;
  transform: scale3d(1, 1, 1) translate(0%, 10px);
}
.block_mainvisual .slide .column .textarea .about span i.view {
  transform: scale3d(1, 1, 1) translate(0%, 0px);
  opacity: 1;
  transition: all 0.8s 0s ease;
}
.block_mainvisual .slide .column .textarea .copy {
  line-height: 1.4;
  position: relative;
  display: block;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  font-size: 3.8vw;
  margin-bottom: 0.3vw;
  padding-left: 3vw;
}
.block_mainvisual .slide .column .textarea .copy span {
  display: inline-block;
  position: relative;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column .textarea .copy span {
    padding-left: 7vw;
  }
}
.block_mainvisual .slide .column .textarea .copy span i {
  font-style: normal;
  display: inline-block;
  opacity: 0;
  transform: scale3d(1, 1, 1) translate(0%, 10px);
}
.block_mainvisual .slide .column .textarea .copy span i.view {
  transform: scale3d(1, 1, 1) translate(0%, 0px);
  opacity: 1;
  transition: all 0.8s 0s ease;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column .textarea .copy {
    margin-bottom: 0vw;
    font-size: 7.2vw;
  }
}
.block_mainvisual .slide .column .textarea .bottom {
  line-height: 1.4;
  position: relative;
  display: block;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  font-size: 1.7vw;
  padding-left: 18vw;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column .textarea .bottom {
    font-size: 4vw;
  }
}
.block_mainvisual .slide .column .textarea .bottom span {
  display: inline-block;
  position: relative;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column .textarea .bottom span {
    padding-left: 15vw;
  }
}
.block_mainvisual .slide .column .textarea .bottom span i {
  font-style: normal;
  display: inline-block;
  opacity: 0;
  transform: scale3d(1, 1, 1) translate(0%, 10px);
}
.block_mainvisual .slide .column .textarea .bottom span i.view {
  transform: scale3d(1, 1, 1) translate(0%, 0px);
  opacity: 1;
  transition: all 0.8s 0s ease;
}
.block_mainvisual .slide .column.slide01 .textarea {
  text-shadow: rgba(0, 0, 0, 0.4) 1px 0 10px;
}
.block_mainvisual .slide .column.slide02 .textarea {
  position: absolute;
  top: 45vw;
  left: 6vw;
  height: 100%;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column.slide02 .textarea {
    top: 100vw;
    left: 0vw;
  }
}
.block_mainvisual .slide .column.slide02 .textarea .copy {
  letter-spacing: 0.21em;
  font-size: 3.5vw;
  text-shadow: rgba(0, 0, 0, 0.5) 1px 0 10px;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column.slide02 .textarea .copy {
    font-size: 6.2vw;
  }
}
.block_mainvisual .slide .column.slide03 figure .img_wrap span {
  background-position: center 100%;
}
.block_mainvisual .slide .column.slide03 .textarea {
  position: absolute;
  top: 40vw;
  left: 66vw;
  height: 100%;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column.slide03 .textarea {
    top: 90vw;
    left: 40vw;
  }
}
.block_mainvisual .slide .column.slide03 .textarea .copy {
  letter-spacing: 0.21em;
  font-size: 3.5vw;
  text-shadow: rgba(0, 0, 0, 0.8) 1px 0 10px;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column.slide03 .textarea .copy {
    font-size: 6.2vw;
  }
}
.block_mainvisual .slide .column.slide04 figure .img_wrap span {
  background-position: center 100%;
}
.block_mainvisual .slide .column.slide04 .textarea {
  position: absolute;
  top: 45vw;
  left: 40vw;
  height: 100%;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column.slide04 .textarea {
    top: 102vw;
    left: 3vw;
  }
}
.block_mainvisual .slide .column.slide04 .textarea .copy {
  letter-spacing: 0.21em;
  font-size: 3.5vw;
  text-shadow: rgba(0, 0, 0, 0.8) 1px 0 10px;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column.slide04 .textarea .copy {
    font-size: 6.2vw;
  }
}
.block_mainvisual .slide .column.slide05 figure .img_wrap span {
  background-position: center 100%;
}
.block_mainvisual .slide .column.slide05 .textarea {
  position: absolute;
  top: 21vw;
  left: 18vw;
  height: 100%;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column.slide05 .textarea {
    top: 37vw;
    left: 0vw;
  }
}
.block_mainvisual .slide .column.slide05 .textarea .copy {
  letter-spacing: 0.21em;
  font-size: 3.5vw;
  text-shadow: rgba(0, 0, 0, 0.8) 1px 0 10px;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column.slide05 .textarea .copy {
    font-size: 6.2vw;
  }
}
.block_mainvisual .slide .column.slide06 figure .img_wrap span {
  background-position: center 100%;
}
.block_mainvisual .slide .column.slide06 .textarea {
  position: absolute;
  top: 45vw;
  left: 8vw;
  height: 100%;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column.slide06 .textarea {
    top: 99vw;
    left: 0vw;
  }
}
.block_mainvisual .slide .column.slide06 .textarea .copy {
  letter-spacing: 0.21em;
  font-size: 3.5vw;
  text-shadow: rgba(0, 0, 0, 0.8) 1px 0 10px;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column.slide06 .textarea .copy {
    font-size: 6.2vw;
  }
}
.block_mainvisual .slide .column.slide07 figure .img_wrap span {
  background-position: center 100%;
}
.block_mainvisual .slide .column.slide07 .textarea {
  position: absolute;
  top: 25vw;
  left: 60vw;
  height: 100%;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column.slide07 .textarea {
    top: 42vw;
    left: 35vw;
  }
}
.block_mainvisual .slide .column.slide07 .textarea .copy {
  letter-spacing: 0.21em;
  font-size: 3.5vw;
  text-shadow: rgba(0, 0, 0, 0.5) 1px 0 10px;
}
@media (max-width: 896px) {
  .block_mainvisual .slide .column.slide07 .textarea .copy {
    font-size: 6.2vw;
  }
}
.block_mainvisual .swiper-wrapper {
  transition-timing-function: linear;
}

/*----------------------------------------------------
 block_text_list
--------------------------------------------------- */
.block_text_list {
  position: relative;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_text_list {
    margin-bottom: 10%;
  }
}
.block_text_list .inner {
  padding: 0 100px;
  margin: 0 auto;
  max-width: 1600px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_text_list .inner {
    flex-direction: column;
    padding: 0 20px;
  }
}
.block_text_list .inner .title_area {
  width: 30%;
}
@media (max-width: 896px) {
  .block_text_list .inner .title_area {
    width: 100%;
    margin-bottom: 10px;
  }
}
.block_text_list .inner .title_area .title {
  font-size: clamp(1.125rem, 0.8877118644rem + 1.186440678vw, 2rem);
  letter-spacing: 0.15em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
}
.block_text_list .inner .title_area .title small {
  display: block;
  color: #84a2b2;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
}
.block_text_list .inner .text_area {
  width: 65%;
}
@media (max-width: 896px) {
  .block_text_list .inner .text_area {
    width: 100%;
  }
}
.block_text_list .inner .text_area .list {
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_text_list .inner .text_area .list {
    margin-bottom: 0;
  }
}
.block_text_list .inner .text_area .list .column {
  border-bottom: 1px #ccc dotted;
}
.block_text_list .inner .text_area .list .column a {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  transition: all 0.5s 0s ease;
}
.block_text_list .inner .text_area .list .column a:hover .c_title {
  color: #af2534;
}
.block_text_list .inner .text_area .list .column a time {
  display: block;
  width: 140px;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
}
@media (max-width: 896px) {
  .block_text_list .inner .text_area .list .column a time {
    width: 100px;
  }
}
.block_text_list .inner .text_area .list .column a .c_title {
  width: calc(100% - 140px);
  line-height: 1.7;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  transition: all 0.5s 0s ease;
  font-weight: 700;
}
@media (max-width: 896px) {
  .block_text_list .inner .text_area .list .column a .c_title {
    width: calc(100% - 100px);
  }
}

/*----------------------------------------------------
 block_side_title_list
--------------------------------------------------- */
.block_side_title_list {
  position: relative;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_side_title_list {
    margin-bottom: 10%;
  }
}
.block_side_title_list .inner {
  padding: 0 100px;
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 896px) {
  .block_side_title_list .inner {
    padding: 0 20px;
  }
}
.block_side_title_list .inner .title_area {
  position: sticky;
  top: 0;
  left: 100px;
  width: 100px;
  height: 100%;
  padding-top: 140px;
  margin-top: -140px;
  writing-mode: vertical-rl;
  line-height: 1;
}
@media (max-width: 896px) {
  .block_side_title_list .inner .title_area {
    left: 10px;
    width: 50px;
    padding-top: 40px;
    margin-top: -40px;
  }
}
.block_side_title_list .inner .title_area::before {
  content: "";
  position: absolute;
  top: 140px;
  left: 80px;
  width: 1px;
  height: 100%;
  height: calc(100% - 180px);
  background: #af2534;
}
@media (max-width: 896px) {
  .block_side_title_list .inner .title_area::before {
    left: 36px;
  }
}
.block_side_title_list .inner .title_area .title {
  position: relative;
}
.block_side_title_list .inner .title_area .title span {
  display: inline-block;
  background: #FFF;
  font-size: clamp(0.875rem, 0.5699152542rem + 1.5254237288vw, 2rem);
  letter-spacing: 0.15em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  padding-bottom: 10px;
}
@media (max-width: 896px) {
  .block_side_title_list .inner .title_area .title span {
    line-height: 1.5;
  }
}
.block_side_title_list .inner .title_area .title span small {
  display: block;
  color: #84a2b2;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
}
.block_side_title_list .inner .title_area .more {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
@media (max-width: 896px) {
  .block_side_title_list .inner .title_area .more {
    left: 7px;
  }
}
.block_side_title_list .inner .title_area .more a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  width: 80px;
  height: 80px;
  border-radius: 80px;
  background: #af2534;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_side_title_list .inner .title_area .more a {
    width: 60px;
    height: 60px;
    border-radius: 60px;
  }
}
.block_side_title_list .inner .title_area .more a .t {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  position: relative;
  color: #FFF;
  font-weight: 700;
  font-size: clamp(0.5625rem, 0.5116525424rem + 0.2542372881vw, 0.75rem);
  box-sizing: border-box;
  border: 1px #af2534 solid;
  z-index: 2;
  transition: transform ease 0.3s;
  writing-mode: horizontal-tb;
}
@media (max-width: 896px) {
  .block_side_title_list .inner .title_area .more a .t {
    width: 60px;
    height: 60px;
    border-radius: 60px;
  }
}
.block_side_title_list .inner .title_area .more a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #FFF;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.block_side_title_list .inner .title_area .more a:hover .t {
  color: #af2534;
}
.block_side_title_list .inner .title_area .more a:hover:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.block_side_title_list .inner .text_area {
  width: calc(100% - 100px);
  position: relative;
  left: 100px;
}
@media (max-width: 896px) {
  .block_side_title_list .inner .text_area {
    width: calc(100% - 60px);
    left: 20px;
  }
}
.block_side_title_list .inner .text_area .list {
  margin-bottom: 20px;
}
.block_side_title_list .inner .text_area .list .column {
  margin-bottom: 20px;
}
.block_side_title_list .inner .text_area .list .column a {
  display: block;
  position: relative;
}
.block_side_title_list .inner .text_area .list .column a:hover figure .img_wrap::after {
  background: rgba(0, 0, 0, 0.2);
}
.block_side_title_list .inner .text_area .list .column a figure .img_wrap {
  position: relative;
  padding-top: 40.25%;
  background: linear-gradient(90deg, #FFF 0%, #ccc 49%, #FFF 100%);
  background-size: 500% 500%;
  animation-name: gradation_bg;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}
@media (max-width: 896px) {
  .block_side_title_list .inner .text_area .list .column a figure .img_wrap {
    padding-top: 100%;
  }
}
.block_side_title_list .inner .text_area .list .column a figure .img_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.5s 0s ease;
}
.block_side_title_list .inner .text_area .list .column a figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_side_title_list .inner .text_area .list .column a figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_side_title_list .inner .text_area .list .column a .c_text {
  color: #FFF;
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
.block_side_title_list .inner .text_area .list .column a .c_text .c_title {
  letter-spacing: 0.25em;
  font-weight: 300;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(1.5rem, 1.0593220339rem + 2.2033898305vw, 3.125rem);
}
.block_side_title_list .inner .text_area .list .column a .c_text .c_title small {
  margin-left: 10px;
  letter-spacing: 0.05em;
  font-size: clamp(0.625rem, 0.5572033898rem + 0.3389830508vw, 0.875rem);
}
@media (max-width: 896px) {
  .block_side_title_list .inner .text_area .list .column a .c_text .c_title small {
    display: block;
    margin-left: 0;
  }
}
.block_side_title_list .inner .text_area .list .column a .c_text p {
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
}
.block_side_title_list .inner .text_area .list .column a .c_text .arrow {
  position: absolute;
  bottom: 10%;
  right: -5%;
  margin-top: -20px;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: #af2534;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_side_title_list .inner .text_area .list .column a .c_text .arrow {
    width: 30px;
    height: 30px;
    border-radius: 30px;
  }
}
.block_side_title_list .inner .text_area .list .column a .c_text .arrow svg {
  fill: #FFF;
  width: 30px;
  height: 30px;
}
@media (max-width: 896px) {
  .block_side_title_list .inner .text_area .list .column a .c_text .arrow svg {
    width: 15px;
    height: 15px;
  }
}

/*----------------------------------------------------
 block_side_title_about
--------------------------------------------------- */
.block_side_title_about {
  position: relative;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_side_title_about {
    margin-bottom: 10%;
  }
}
.block_side_title_about .inner {
  padding: 0 100px;
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 896px) {
  .block_side_title_about .inner {
    padding: 0 20px;
  }
}
.block_side_title_about .inner .title_area {
  position: sticky;
  top: 0;
  left: 100px;
  width: 100px;
  height: 100%;
  padding-top: 140px;
  margin-top: -140px;
  writing-mode: vertical-rl;
  line-height: 1;
}
@media (max-width: 896px) {
  .block_side_title_about .inner .title_area {
    left: 10px;
    width: 50px;
    padding-top: 40px;
    margin-top: -40px;
  }
}
.block_side_title_about .inner .title_area::before {
  content: "";
  position: absolute;
  top: 140px;
  left: 80px;
  width: 1px;
  height: 100%;
  height: calc(100% - 180px);
  background: #af2534;
}
@media (max-width: 896px) {
  .block_side_title_about .inner .title_area::before {
    left: 36px;
  }
}
.block_side_title_about .inner .title_area .title {
  position: relative;
}
.block_side_title_about .inner .title_area .title span {
  display: inline-block;
  background: #FFF;
  font-size: clamp(0.875rem, 0.5699152542rem + 1.5254237288vw, 2rem);
  letter-spacing: 0.15em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  padding-bottom: 10px;
}
@media (max-width: 896px) {
  .block_side_title_about .inner .title_area .title span {
    line-height: 1.5;
  }
}
.block_side_title_about .inner .title_area .title span small {
  display: block;
  color: #84a2b2;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
}
.block_side_title_about .inner .title_area .more {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
@media (max-width: 896px) {
  .block_side_title_about .inner .title_area .more {
    left: 7px;
  }
}
.block_side_title_about .inner .title_area .more a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  width: 80px;
  height: 80px;
  border-radius: 80px;
  background: #af2534;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_side_title_about .inner .title_area .more a {
    width: 60px;
    height: 60px;
    border-radius: 60px;
  }
}
.block_side_title_about .inner .title_area .more a .t {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  position: relative;
  color: #FFF;
  font-weight: 700;
  font-size: clamp(0.5625rem, 0.5116525424rem + 0.2542372881vw, 0.75rem);
  box-sizing: border-box;
  border: 1px #af2534 solid;
  z-index: 2;
  transition: transform ease 0.3s;
  writing-mode: horizontal-tb;
}
@media (max-width: 896px) {
  .block_side_title_about .inner .title_area .more a .t {
    width: 60px;
    height: 60px;
    border-radius: 60px;
  }
}
.block_side_title_about .inner .title_area .more a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #FFF;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.block_side_title_about .inner .title_area .more a:hover .t {
  color: #af2534;
}
.block_side_title_about .inner .title_area .more a:hover:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.block_side_title_about .inner .text_area {
  width: calc(100% - 100px);
  position: relative;
  left: 100px;
}
@media (max-width: 896px) {
  .block_side_title_about .inner .text_area {
    width: calc(100% - 60px);
    left: 20px;
  }
}
.block_side_title_about .inner .text_area .copy {
  font-size: clamp(1.125rem, 0.7860169492rem + 1.6949152542vw, 2.375rem);
  font-weight: 500;
  line-height: 1.4;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 10%;
}
.block_side_title_about .inner .text_area .copy.mt {
  margin-top: 10%;
}
.block_side_title_about .inner .text_area .a_wrap {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  margin-bottom: 0%;
}
@media (max-width: 896px) {
  .block_side_title_about .inner .text_area .a_wrap {
    flex-direction: column-reverse;
  }
}
.block_side_title_about .inner .text_area .a_wrap.re {
  flex-direction: row-reverse; /* row row-reverse column */
  align-items: flex-end; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_side_title_about .inner .text_area .a_wrap.re {
    flex-direction: column-reverse;
  }
}
.block_side_title_about .inner .text_area .a_wrap.re .image_area {
  margin-top: 5%;
}
.block_side_title_about .inner .text_area .a_wrap.re .textarea {
  padding-right: 5%;
}
.block_side_title_about .inner .text_area .a_wrap .textarea {
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_side_title_about .inner .text_area .a_wrap .textarea {
    width: 90%;
  }
}
.block_side_title_about .inner .text_area .a_wrap .textarea p {
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
}
.block_side_title_about .inner .text_area .a_wrap .image_area {
  width: 45%;
  margin-top: -6%;
}
@media (max-width: 896px) {
  .block_side_title_about .inner .text_area .a_wrap .image_area {
    width: 100%;
    margin-top: 0;
    margin-bottom: 10%;
  }
}
.block_side_title_about .inner .text_area .wide {
  margin-top: 10%;
  margin-left: 5%;
}
.block_side_title_about .inner .text_area .wide_area {
  background: #FFF;
  margin-top: -10%;
  margin-right: 20%;
  position: relative;
  padding: 5% 5%;
}
@media (max-width: 896px) {
  .block_side_title_about .inner .text_area .wide_area {
    margin-top: 0%;
    margin-right: 0;
  }
}
.block_side_title_about .inner .text_area .wide_area .copy {
  margin-bottom: 5%;
}
.block_side_title_about .inner .text_area .wide_area .textarea {
  margin-bottom: 20px;
}
.block_side_title_about .inner .text_area .wide_area .textarea p {
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
}

/*----------------------------------------------------
 block_pickup
--------------------------------------------------- */
.block_pickup {
  position: relative;
  margin-bottom: 10%;
  padding-bottom: 100px;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_pickup {
    padding-bottom: 20px;
  }
}
.block_pickup::before {
  content: "";
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  background: #cfe5ee;
  height: 100%;
  height: calc(100% - 200px);
}
@media (max-width: 896px) {
  .block_pickup::before {
    top: 300px;
    height: calc(100% - 300px);
  }
}
@media (max-width: 896px) {
  body.page .block_pickup::before {
    top: 100px;
    height: calc(100% - 100px);
  }
}

.block_pickup .page_title {
  padding: 0 100px;
  margin: 0 auto;
  max-width: 1600px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}
@media (max-width: 896px) {
  .block_pickup .page_title {
    padding: 0 20px;
  }
}
.block_pickup .page_title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #84a2b2;
}
.block_pickup .page_title span {
  position: relative;
  background: #FFF;
  padding: 0 10px;
  display: inline-block;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  color: #84a2b2;
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.block_pickup .inner {
  padding: 0 100px;
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  padding-top: 100px;
}
body.page .block_pickup .inner {
  padding-top: 0;
}

@media (max-width: 896px) {
  .block_pickup .inner {
    padding: 0 20px;
  }
}
.block_pickup .inner .title_area {
  position: absolute;
  top: 0;
  right: -20px;
}
@media (max-width: 896px) {
  .block_pickup .inner .title_area {
    position: relative;
    right: 0;
  }
}
.block_pickup .inner .title_area .title {
  position: relative;
  writing-mode: vertical-rl;
}
@media (max-width: 896px) {
  .block_pickup .inner .title_area .title {
    margin: 0 20px 20px auto;
  }
}
.block_pickup .inner .title_area .title span {
  display: inline-block;
  font-size: clamp(0.875rem, 0.5699152542rem + 1.5254237288vw, 2rem);
  letter-spacing: 0.15em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  padding-bottom: 10px;
}
@media (max-width: 896px) {
  .block_pickup .inner .title_area .title span {
    line-height: 1.7;
  }
}
.block_pickup .inner .title_area .title span small {
  display: block;
  color: #84a2b2;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
}
.block_pickup .inner .title_area .more {
  position: absolute;
  bottom: -90px;
  left: 20px;
}
@media (max-width: 896px) {
  .block_pickup .inner .title_area .more {
    display: none;
  }
}
.block_pickup .inner .title_area .more a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  width: 80px;
  height: 80px;
  border-radius: 80px;
  background: #af2534;
  overflow: hidden;
  position: relative;
}
.block_pickup .inner .title_area .more a .t {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  position: relative;
  color: #FFF;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  box-sizing: border-box;
  border: 1px #af2534 solid;
  z-index: 2;
  transition: transform ease 0.3s;
  writing-mode: horizontal-tb;
}
.block_pickup .inner .title_area .more a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #FFF;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.block_pickup .inner .title_area .more a:hover .t {
  color: #af2534;
}
.block_pickup .inner .title_area .more a:hover:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.block_pickup .inner .text_area .pickup {
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  color: #84a2b2;
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 10px;
}
.block_pickup .inner .text_area .column a {
  display: block;
}
.block_pickup .inner .text_area .column a:hover figure .img_wrap {
  transform: scale(1.1, 1.1);
  opacity: 0.5;
}
.block_pickup .inner .text_area .column a:hover .c_text .c_title span {
  color: #af2534;
}
.block_pickup .inner .text_area .column a figure {
  background: #FFF;
  overflow: hidden;
}
.block_pickup .inner .text_area .column a figure .img_wrap {
  position: relative;
  padding-top: 56.25%;
  transition: all 0.6s 0s ease;
  background: linear-gradient(90deg, #FFF 0%, #ccc 49%, #FFF 100%);
  background-size: 500% 500%;
  animation-name: gradation_bg;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}
.block_pickup .inner .text_area .column a figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_pickup .inner .text_area .column a figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_pickup .inner .text_area .column a .award {
  position: absolute;
  top: 10px;
  right: 10px;
  line-height: 1;
}
.block_pickup .inner .text_area .column a .award span {
  display: inline-block;
  padding: 5px 10px;
  font-size: clamp(0.5rem, 0.4322033898rem + 0.3389830508vw, 0.75rem);
  background: #FFF;
  border: 1px #af2534 solid;
  color: #af2534;
  font-weight: 700;
  letter-spacing: 0;
}
.block_pickup .inner .text_area .column a .c_text {
  position: relative;
  margin-top: -40px;
  left: -40px;
}
@media (max-width: 896px) {
  .block_pickup .inner .text_area .column a .c_text {
    margin-top: -20px;
    left: -10px;
  }
}
.block_pickup .inner .text_area .column a .c_text .c_title span {
  transition: all 0.6s 0s ease;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 0.2em 10px;
  line-height: 2;
  background: rgb(255, 255, 255);
  font-size: clamp(0.875rem, 0.7055084746rem + 0.8474576271vw, 1.5rem);
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  color: #000;
}
.block_pickup .inner .text_area .column a .c_text ul.category {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 10px;
}
@media (max-width: 896px) {
  .block_pickup .inner .text_area .column a .c_text ul.category {
    margin-left: 10px;
  }
}
.block_pickup .inner .text_area .column a .c_text ul.category li {
  margin: 0 5px 5px 0;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  background: #84a2b2;
  color: #FFF;
}
.block_pickup .swiper-button-prev {
  left: 0px;
  right: auto;
}
.block_pickup .swiper-button-prev svg {
  transform: rotate(90deg);
}
.block_pickup .swiper-button-next {
  left: auto;
  right: 0px;
}
.block_pickup .swiper-button-next svg {
  transform: rotate(-90deg);
}
.block_pickup .swiper-button-next, .block_pickup .swiper-button-prev {
  position: absolute;
  top: 34%;
  width: 60px;
  height: 60px;
  margin-top: 0px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  background: #af2534;
  border: 1px #af2534 solid;
  transition: all 0.3s 0s ease;
}
@media (max-width: 896px) {
  .block_pickup .swiper-button-next, .block_pickup .swiper-button-prev {
    top: 24%;
    width: 30px;
    height: 30px;
    border-radius: 0px;
  }
}
.block_pickup .swiper-button-next:after, .block_pickup .swiper-button-prev:after {
  display: none;
}
.block_pickup .swiper-button-next svg, .block_pickup .swiper-button-prev svg {
  width: 30px;
  height: 30px;
  fill: #FFF;
  transition: all 0.3s 0s ease;
}
@media (max-width: 896px) {
  .block_pickup .swiper-button-next svg, .block_pickup .swiper-button-prev svg {
    width: 15px;
    height: 15px;
  }
}
.block_pickup .swiper-button-next:hover, .block_pickup .swiper-button-prev:hover {
  background: #FFF;
}
@media (max-width: 896px) {
  .block_pickup .swiper-button-next:hover, .block_pickup .swiper-button-prev:hover {
    background: #af2534;
  }
}
.block_pickup .swiper-button-next:hover svg, .block_pickup .swiper-button-prev:hover svg {
  fill: #af2534;
}
@media (max-width: 896px) {
  .block_pickup .swiper-button-next:hover svg, .block_pickup .swiper-button-prev:hover svg {
    fill: #FFF;
  }
}
.block_pickup .works_category {
  padding: 0 100px;
  padding-top: 5%;
  position: relative;
}
@media (max-width: 896px) {
  .block_pickup .works_category {
    padding: 0 0px;
    padding-top: 40px;
  }
}
.block_pickup .works_category .w_title {
  font-size: clamp(0.875rem, 0.6716101695rem + 1.0169491525vw, 1.625rem);
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  color: #84a2b2;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_pickup .works_category .w_title {
    padding: 0 20px;
    margin-bottom: 20px;
  }
}
.block_pickup .works_category .w_list {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_pickup .works_category .w_list {
    flex-direction: column;
  }
}
.block_pickup .works_category .w_list .column {
  width: 24%;
}
@media (max-width: 896px) {
  .block_pickup .works_category .w_list .column {
    width: 100%;
    margin-bottom: 40px;
  }
}
.block_pickup .works_category .w_list .column a {
  display: block;
}
.block_pickup .works_category .w_list .column a figure {
  background: #FFF;
  overflow: hidden;
  margin-bottom: 20px;
}
.block_pickup .works_category .w_list .column a figure .img_wrap {
  position: relative;
  padding-top: 40%;
  transition: all 0.6s 0s ease;
  background: linear-gradient(90deg, #FFF 0%, #ccc 49%, #FFF 100%);
  background-size: 500% 500%;
  animation-name: gradation_bg;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}
@media (max-width: 896px) {
  .block_pickup .works_category .w_list .column a figure .img_wrap {
    padding-top: 40%;
  }
}
.block_pickup .works_category .w_list .column a figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_pickup .works_category .w_list .column a figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_pickup .works_category .w_list .column a:hover figure .img_wrap {
  transform: scale(1.1, 1.1);
  opacity: 0.5;
}
.block_pickup .works_category .w_list .column a:hover .c_title {
  color: #af2534;
}
.block_pickup .works_category .w_list .column a .w_title_area {
  padding-left: 20px;
  position: relative;
}
@media (max-width: 896px) {
  .block_pickup .works_category .w_list .column a .w_title_area {
    margin: 0 20px;
  }
}
.block_pickup .works_category .w_list .column a .w_title_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #84a2b2;
}
.block_pickup .works_category .w_list .column a .w_title_area .c_title {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  font-weight: 700;
  position: relative;
  color: #84a2b2;
  line-height: 1;
  margin-bottom: 10px;
}
.block_pickup .works_category .w_list .column a .w_title_area ul li {
  font-size: clamp(1rem, 0.9661016949rem + 0.1694915254vw, 1.125rem);
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/*----------------------------------------------------
 block_side_title_banner
--------------------------------------------------- */
.block_side_title_banner {
  position: relative;
  margin-bottom: 10%;
}
.block_side_title_banner .inner {
  padding: 0 100px;
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 896px) {
  .block_side_title_banner .inner {
    flex-direction: column;
    padding: 0 20px;
  }
}
.block_side_title_banner .inner .title_area {
  position: absolute;
  top: 0;
  left: 100px;
  width: 100px;
  height: 400px;
  padding-top: 40px;
  margin-top: -40px;
  writing-mode: vertical-rl;
  line-height: 1;
}
@media (max-width: 896px) {
  .block_side_title_banner .inner .title_area {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    writing-mode: horizontal-tb;
  }
}
.block_side_title_banner .inner .title_area .title {
  position: relative;
}
.block_side_title_banner .inner .title_area .title span {
  display: inline-block;
  background: #FFF;
  font-size: clamp(0.875rem, 0.5699152542rem + 1.5254237288vw, 2rem);
  letter-spacing: 0.15em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  padding-bottom: 10px;
}
@media (max-width: 896px) {
  .block_side_title_banner .inner .title_area .title span {
    line-height: 1.7;
    padding-bottom: 20px;
  }
}
.block_side_title_banner .inner .title_area .title span small {
  display: block;
  color: #84a2b2;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
}
.block_side_title_banner .inner .text_area {
  width: calc(100% - 200px);
  position: relative;
  margin: 0 0 0 auto;
}
@media (max-width: 896px) {
  .block_side_title_banner .inner .text_area {
    width: 100%;
  }
}
.block_side_title_banner .inner .text_area .banner a {
  display: block;
  padding-top: 26.25%;
  position: relative;
  background: #af2534;
  color: #FFF;
  border: 1px #af2534 solid;
}
@media (max-width: 896px) {
  .block_side_title_banner .inner .text_area .banner a {
    padding-top: 35.25%;
  }
}
.block_side_title_banner .inner .text_area .banner a:hover .t {
  color: #af2534;
}
.block_side_title_banner .inner .text_area .banner a:hover .arrow svg {
  fill: #af2534;
}
.block_side_title_banner .inner .text_area .banner a:hover:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.block_side_title_banner .inner .text_area .banner a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #FFF;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.block_side_title_banner .inner .text_area .banner a .t {
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 2;
  transform: translate(0%, -50%);
  letter-spacing: 0.25em;
  font-weight: 300;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.875rem, 0.7733050847rem + 0.5084745763vw, 1.25rem);
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_side_title_banner .inner .text_area .banner a .t {
    left: 5%;
  }
}
.block_side_title_banner .inner .text_area .banner a .arrow {
  position: absolute;
  top: 50%;
  right: 5%;
  z-index: 2;
  transform: translate(0%, -50%);
}
.block_side_title_banner .inner .text_area .banner a .arrow svg {
  fill: #FFF;
  width: 30px;
  height: 30px;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_side_title_banner .inner .text_area .banner a .arrow svg {
    width: 20px;
    height: 20px;
  }
}

/*----------------------------------------------------
  btn
--------------------------------------------------- */
.btn_more {
  padding-top: 20px;
}
.btn_more a, .btn_more .b_wrap {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-end; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.btn_more a .t, .btn_more .b_wrap .t {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #af2534;
  margin-right: 10px;
}
@media (max-width: 896px) {
  .btn_more a .t, .btn_more .b_wrap .t {
    font-size: 14px;
  }
}
.btn_more a:hover .arrow svg, .btn_more .b_wrap:hover .arrow svg {
  fill: #af2534;
}
.btn_more a:hover .arrow:before, .btn_more .b_wrap:hover .arrow:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.btn_more a .arrow, .btn_more .b_wrap .arrow {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #af2534;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  overflow: hidden;
  position: relative;
  border: 1px #af2534 solid;
}
.btn_more a .arrow svg, .btn_more .b_wrap .arrow svg {
  fill: #FFF;
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
}
.btn_more a .arrow:before, .btn_more .b_wrap .arrow:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #FFF;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}

/*----------------------------------------------------
  block_footer
--------------------------------------------------- */
.block_footer {
  position: relative;
  padding: 5% 0;
  background: #FFF;
}
@media (max-width: 896px) {
  .block_footer {
    padding: 40px 0 80px 0;
  }
}
.block_footer .inner {
  padding: 0 100px;
  margin: 0 auto;
  max-width: 1600px;
}
@media (max-width: 896px) {
  .block_footer .inner {
    padding: 0 20px;
  }
}
.block_footer .inner .wrap {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.block_footer .inner .wrap .company {
  width: 60%;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .company {
    width: 100%;
    justify-content: space-between; /* flex-start  center  space-between */
    align-items: flex-start; /* flex-start  center  */
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.block_footer .inner .wrap .company .c_logo {
  width: 20%;
  margin-right: 5%;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .company .c_logo {
    width: 20%;
  }
}
.block_footer .inner .wrap .company .address {
  width: 60%;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .company .address {
    width: 71%;
  }
}
.block_footer .inner .wrap .company .address p {
  font-size: clamp(0.5625rem, 0.5286016949rem + 0.1694915254vw, 0.6875rem);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .company .address p {
    line-height: 1.7;
  }
}
.block_footer .inner .wrap .company .address p:last-child {
  margin-bottom: 0;
}
.block_footer .inner .wrap .menu {
  width: 20%;
  position: relative;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .menu {
    width: 100%;
    padding-top: 10px;
    margin-bottom: 20px;
  }
}
.block_footer .inner .wrap .menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #84a2b2;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .menu::before {
    width: 100%;
    height: 1px;
  }
}
.block_footer .inner .wrap .menu ul {
  padding-left: 20px;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .menu ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
.block_footer .inner .wrap .menu ul li {
  margin-bottom: 5px;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .menu ul li {
    width: 50%;
  }
}
.block_footer .inner .wrap .menu ul li:last-child {
  margin-bottom: 0;
}
.block_footer .inner .wrap .menu ul li a {
  display: block;
  font-size: clamp(0.6875rem, 0.6366525424rem + 0.2542372881vw, 0.875rem);
  font-weight: 700;
  transition: all 0.5s 0s ease;
}
.block_footer .inner .wrap .menu ul li a:hover {
  color: #af2534;
}
.block_footer .inner .copyright {
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.5rem, 0.4661016949rem + 0.1694915254vw, 0.625rem);
}
/*----------------------------------------------------
 block_breadcrumb
--------------------------------------------------- */
.block_breadcrumb {
  background: #eee;
  color: #888;
  padding: 20px 0;
}
.block_breadcrumb ol {
  display: flex;
  margin: 0 40px;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  white-space: nowrap;
  list-style: none;
  font-size: 12px;
}
@media (max-width: 896px) {
  .block_breadcrumb ol {
    margin: 0 0px;
    padding: 0 20px;
    overflow-x: scroll;
  }
}
.block_breadcrumb ol li:not(:last-of-type)::after {
  content: "-";
  margin: 0 0.6em; /* 記号の左右の余白 */
  color: #ccc; /* 記号の色 */
}
.block_breadcrumb ol li a {
  display: inline-block;
  color: #888; /* 記号の色 */
  transition: all 0.4s 0s ease;
  letter-spacing: 0.1em;
}
.block_breadcrumb ol li a:hover {
  opacity: 0.5;
}

/*----------------------------------------------------
 block_summary
--------------------------------------------------- */
.block_summary {
  position: relative;
  margin-bottom: 10%;
}
@media (max-width: 896px) {
  .block_summary {
    margin-bottom: 10%;
  }
}
.block_summary .inner {
  padding: 0 100px;
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
}
@media (max-width: 896px) {
  .block_summary .inner {
    padding: 0 20px;
  }
}
.block_summary .inner .title {
  font-size: clamp(1.125rem, 0.8877118644rem + 1.186440678vw, 2rem);
  font-weight: 300;
  line-height: 1.5;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 20px;
  letter-spacing: 0.25em;
  position: relative;
}
.block_summary .inner .title small {
  padding-left: 20px;
  font-size: clamp(0.625rem, 0.5572033898rem + 0.3389830508vw, 0.875rem);
  color: #84a2b2;
  letter-spacing: 0.05em;
}
@media (max-width: 896px) {
  .block_summary .inner .title small {
    padding-left: 10px;
  }
}
.block_summary .inner .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100vw;
  width: 100vw;
  height: 1px;
  margin-left: -10px;
  background: #af2534;
}
.block_summary .inner .textarea p {
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  font-weight: 300;
  line-height: 1.5;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.block_summary .inner .navigation {
  padding-top: 20px;
}
@media (max-width: 896px) {
  .block_summary .inner .navigation {
    position: relative;
    left: -20px;
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto;
    white-space: nowrap;
  }
}
.block_summary .inner .navigation ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  line-height: 1;
}
@media (max-width: 896px) {
  .block_summary .inner .navigation ul {
    padding-left: 20px;
    display: table;
  }
}
.block_summary .inner .navigation ul li {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  padding-right: 10px;
}
@media (max-width: 896px) {
  .block_summary .inner .navigation ul li {
    display: table-cell;
  }
}
.block_summary .inner .navigation ul li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #ccc;
}
@media (max-width: 896px) {
  .block_summary .inner .navigation ul li::after {
    right: 10px;
  }
}
.block_summary .inner .navigation ul li:last-child:after {
  display: none;
}
.block_summary .inner .navigation ul li a {
  display: block;
  color: #af2534;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  font-weight: 700;
  position: relative;
  padding-right: 20px;
  transition: all 0.3s 0s ease;
}
.block_summary .inner .navigation ul li a:hover {
  color: #000;
}
.block_summary .inner .navigation ul li a .arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border-radius: 20px;
  background: #FFF;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_summary .inner .navigation ul li a .arrow svg {
  fill: #af2534;
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
}

/*----------------------------------------------------
 block_page
--------------------------------------------------- */
.block_page {
  position: relative;
  margin-bottom: 10%;
}
.block_page .inner {
  padding: 0 100px;
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
}
@media (max-width: 896px) {
  .block_page .inner {
    padding: 0 20px;
  }
}
.block_page .inner .section_image_text_list {
  margin-bottom: 10%;
}
.block_page .inner .section_image_text_list .column {
  display: flex;
  flex-direction: row-reverse; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  margin-bottom: 10%;
}
@media (max-width: 896px) {
  .block_page .inner .section_image_text_list .column {
    flex-direction: column;
  }
}
.block_page .inner .section_image_text_list .column.re {
  flex-direction: row; /* row row-reverse column */
}
@media (max-width: 896px) {
  .block_page .inner .section_image_text_list .column.re {
    flex-direction: column;
  }
}
.block_page .inner .section_image_text_list .column.re .image_area {
  left: -100px;
}
@media (max-width: 896px) {
  .block_page .inner .section_image_text_list .column.re .image_area {
    left: -20px;
  }
}
.block_page .inner .section_image_text_list .column .image_area {
  width: 60%;
  position: relative;
  left: 100px;
}
@media (max-width: 896px) {
  .block_page .inner .section_image_text_list .column .image_area {
    left: -20px;
    width: 100vw;
    margin-bottom: 8%;
  }
}
.block_page .inner .section_image_text_list .column .image_area .img_wrap {
  position: relative;
  padding-top: 75%;
}
.block_page .inner .section_image_text_list .column .image_area .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_page .inner .section_image_text_list .column .image_area .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_page .inner .section_image_text_list .column .text_area {
  width: 40%;
}
@media (max-width: 896px) {
  .block_page .inner .section_image_text_list .column .text_area {
    width: 100%;
  }
}
.block_page .inner .section_image_text_list .column .text_area .c_title {
  font-size: clamp(1.125rem, 0.8877118644rem + 1.186440678vw, 2rem);
  font-weight: 300;
  line-height: 1.5;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.block_page .inner .section_image_text_list .column .text_area .c_title small {
  display: block;
  padding-top: 10px;
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  color: #84a2b2;
  letter-spacing: 0.05em;
}
.block_page .inner .section_image_text_list .column .text_area p {
  font-size: clamp(0.75rem, 0.6822033898rem + 0.3389830508vw, 1rem);
}
.block_page .inner .section_link_btn {
  margin-bottom: 10%;
}
.block_page .inner .section_link_btn a {
  display: block;
  background: #af2534;
  padding: 5%;
  color: #FFF;
  position: relative;
  box-sizing: border-box;
  border: 1px #af2534 solid;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_page .inner .section_link_btn a {
    padding: 20px;
  }
}
.block_page .inner .section_link_btn a:hover .t {
  color: #af2534;
}
.block_page .inner .section_link_btn a:hover .arrow svg {
  fill: #af2534;
}
.block_page .inner .section_link_btn a:hover:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.block_page .inner .section_link_btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 1;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.block_page .inner .section_link_btn a .t {
  font-size: clamp(0.875rem, 0.8072033898rem + 0.3389830508vw, 1.125rem);
  font-weight: 300;
  line-height: 1.5;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.05em;
  z-index: 2;
  position: relative;
  transition: all 0.5s 0s ease;
}
.block_page .inner .section_link_btn a .arrow {
  position: absolute;
  top: 50%;
  right: 5%;
  margin-top: -20px;
  z-index: 2;
}
@media (max-width: 896px) {
  .block_page .inner .section_link_btn a .arrow {
    margin-top: -10px;
  }
}
.block_page .inner .section_link_btn a .arrow svg {
  fill: #FFF;
  width: 40px;
  height: 40px;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_page .inner .section_link_btn a .arrow svg {
    width: 20px;
    height: 20px;
  }
}
.block_page .inner .section_side_title {
  margin-bottom: 10%;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
.block_page .inner .section_side_title .title_area {
  width: 45%;
  position: sticky;
  top: 0;
  left: 0;
  padding-top: 80px;
  margin-top: -80px;
}
.block_page .inner .section_side_title .title_area p {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  font-weight: 500;
  padding-top: 20px;
}
.block_page .inner .section_side_title .text_area {
  width: 50%;
}
.block_page .inner .wide_title + .section_three_column {
  margin-top: 0;
}
.block_page .inner .section_three_column {
  margin-bottom: 10%;
  margin-top: -10%;
}
@media (max-width: 896px) {
  .block_page .inner .section_three_column {
    margin-top: -10%;
  }
}
.block_page .inner .section_three_column .text_area {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  margin-left: 15%;
}
@media (max-width: 896px) {
  .block_page .inner .section_three_column .text_area {
    flex-direction: column;
    margin-left: 0%;
  }
}
.block_page .inner .section_three_column .text_area .column {
  padding-right: 5%;
}
@media (max-width: 896px) {
  .block_page .inner .section_three_column .text_area .column {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 896px) {
  .block_page .inner .section_three_column .text_area .column figure.small {
    width: 50%;
  }
}
.block_page .inner .section_three_column .text_area .column figure img {
  width: auto;
  height: 200px;
}
@media (max-width: 896px) {
  .block_page .inner .section_three_column .text_area .column figure img {
    width: 100%;
    height: auto;
  }
}
.block_page .inner .section_three_column .text_area .column .sub_title02 {
  font-size: 16px;
}
@media (max-width: 896px) {
  .block_page .inner .section_three_column .text_area .column .sub_title02 {
    font-size: 16px;
  }
}
.block_page .inner .section_image_bg_text {
  position: relative;
  left: -100px;
  width: calc(100% + 200px);
  margin-top: -5%;
  padding-bottom: 10%;
}
@media (max-width: 896px) {
  .block_page .inner .section_image_bg_text {
    left: -20px;
    width: calc(100% + 40px);
  }
}
.block_page .inner .section_image_bg_text figure .img_wrap {
  position: relative;
  padding-top: 40%;
}
@media (max-width: 896px) {
  .block_page .inner .section_image_bg_text figure .img_wrap {
    padding-top: 70%;
  }
}
.block_page .inner .section_image_bg_text figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_page .inner .section_image_bg_text figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_page .inner .section_image_bg_text .text_area {
  position: relative;
  margin-top: -5%;
  margin-left: 15%;
  background: #FFF;
  padding: 5%;
}
@media (max-width: 896px) {
  .block_page .inner .section_image_bg_text .text_area {
    margin-left: 30px;
    padding: 10%;
  }
}
.block_page .inner .section_image_bg_text .text_area .textarea {
  margin-bottom: 0;
}
.block_page .inner .section_history {
  margin-bottom: 10%;
}
.block_page .inner .section_history dl {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  position: relative;
}
.block_page .inner .section_history dl::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 4px;
  width: 1px;
  height: 100%;
  background: #ccc;
}
.block_page .inner .section_history dl dt {
  padding-right: 5%;
  font-size: clamp(0.625rem, 0.5233050847rem + 0.5084745763vw, 1rem);
  font-weight: 500;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  width: 300px;
}
@media (max-width: 896px) {
  .block_page .inner .section_history dl dt {
    padding-left: 20px;
    width: 120px;
    padding-right: 0%;
  }
}
.block_page .inner .section_history dl dt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  margin-top: -5px;
  background: #af2534;
}
.block_page .inner .section_history dl dd {
  font-size: clamp(0.75rem, 0.6822033898rem + 0.3389830508vw, 1rem);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  width: calc(100% - 300px);
}
@media (max-width: 896px) {
  .block_page .inner .section_history dl dd {
    width: calc(100% - 120px);
  }
}
.block_page .inner .section_outline {
  margin-bottom: 10%;
}
.block_page .inner .section_outline dl {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px #ccc solid;
}
@media (max-width: 896px) {
  .block_page .inner .section_outline dl {
    flex-direction: column; /* row row-reverse column */
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.block_page .inner .section_outline dl:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}
.block_page .inner .section_outline dl dt {
  font-size: clamp(0.75rem, 0.6822033898rem + 0.3389830508vw, 1rem);
  font-weight: 500;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  position: relative;
  width: 300px;
}
@media (max-width: 896px) {
  .block_page .inner .section_outline dl dt {
    width: 100%;
  }
}
.block_page .inner .section_outline dl dd {
  font-size: clamp(0.6875rem, 0.6366525424rem + 0.2542372881vw, 0.875rem);
  letter-spacing: 0.05em;
  width: calc(100% - 300px);
}
@media (max-width: 896px) {
  .block_page .inner .section_outline dl dd {
    width: 100%;
  }
}
.block_page .inner .section_access {
  margin-bottom: 10%;
}
.block_page .inner .section_access .column {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_page .inner .section_access .column {
    margin-bottom: 10%;
    flex-direction: column; /* row row-reverse column */
  }
}
.block_page .inner .section_access .column .text_area {
  width: 28%;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media (max-width: 896px) {
  .block_page .inner .section_access .column .text_area {
    width: 100%;
  }
}
.block_page .inner .section_access .column .map {
  width: 68%;
}
@media (max-width: 896px) {
  .block_page .inner .section_access .column .map {
    width: 100%;
  }
}
.block_page .inner .section_access .column .map .w_map {
  position: relative;
  padding-top: 56.25%;
}
.block_page .inner .section_access .column .map .w_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_page .inner .section_philosophy {
  position: relative;
  left: -100px;
  width: calc(100% + 200px);
  margin-top: -5%;
  padding-bottom: 10%;
}
@media (max-width: 896px) {
  .block_page .inner .section_philosophy {
    left: -20px;
    width: calc(100% + 40px);
  }
}
.block_page .inner .section_philosophy figure.pos01 .img_wrap {
  position: relative;
  padding-top: 40%;
}
@media (max-width: 896px) {
  .block_page .inner .section_philosophy figure.pos01 .img_wrap {
    padding-top: 50%;
  }
}
.block_page .inner .section_philosophy figure.pos01 .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_page .inner .section_philosophy figure.pos01 .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_page .inner .section_philosophy .text_area {
  position: relative;
  margin-top: -5%;
  margin-left: 15%;
  background: #FFF;
  padding: 5%;
}
@media (max-width: 896px) {
  .block_page .inner .section_philosophy .text_area {
    margin-top: -10%;
    margin-left: 30px;
    padding: 10%;
  }
}
.block_page .inner .section_philosophy .text_area .textarea {
  margin-bottom: 0;
}
.block_page .inner .section_philosophy .text_area .r_title {
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  font-weight: 500;
  line-height: 1.4;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.5em;
  margin-bottom: 20px;
}
.block_page .inner .section_philosophy figure.pos02 .img_wrap {
  position: relative;
  padding-top: 40%;
}
@media (max-width: 896px) {
  .block_page .inner .section_philosophy figure.pos02 .img_wrap {
    padding-top: 50%;
  }
}
.block_page .inner .section_philosophy figure.pos02 .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
  opacity: 0;
}
.block_page .inner .section_philosophy figure.pos02 .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_page .inner .section_philosophy .text_area.pos02 {
  position: relative;
  margin: 0 auto;
  margin-top: -5%;
  width: 700px;
  background: #FFF;
  padding: 5%;
}
@media (max-width: 896px) {
  .block_page .inner .section_philosophy .text_area.pos02 {
    width: auto;
    padding: 10%;
    margin-right: 30px;
  }
}
.block_page .inner .section_philosophy .text_area.pos02 .textarea {
  margin-bottom: 0;
}
.block_page .inner .section_philosophy figure.pos03 .img_wrap {
  position: relative;
  padding-top: 40%;
}
@media (max-width: 896px) {
  .block_page .inner .section_philosophy figure.pos03 .img_wrap {
    margin-top: -10%;
    padding-top: 50%;
  }
}
.block_page .inner .section_philosophy figure.pos03 .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
  opacity: 0;
}
.block_page .inner .section_philosophy figure.pos03 .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_page .inner .section_philosophy .text_area.pos03 {
  position: relative;
  margin: 0 auto;
  margin-top: -5%;
  width: 800px;
  background: #FFF;
  padding: 5%;
  text-align: center;
}
@media (max-width: 896px) {
  .block_page .inner .section_philosophy .text_area.pos03 {
    padding: 5% 0;
    width: 90%;
  }
}
.block_page .inner .section_philosophy .conduct_list {
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  padding-top: 5%;
}
.block_page .inner .section_philosophy .conduct_list li {
  font-size: clamp(0.75rem, 0.5466101695rem + 1.0169491525vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 6%;
}
@media (max-width: 896px) {
  .block_page .inner .section_philosophy .conduct_list li {
    margin-right: 0%;
    padding-right: 10px;
  }
}
.block_page .inner .section_logo {
  padding-bottom: 10%;
  position: relative;
  margin-left: 15%;
  margin-top: -5%;
}
@media (max-width: 896px) {
  .block_page .inner .section_logo {
    margin-top: 0%;
    margin-left: 0%;
  }
}
.block_page .inner .section_logo .inner {
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_page .inner .section_logo .inner {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_page .inner .section_logo .inner .column {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_page .inner .section_logo .inner .column {
    width: 100%;
    margin-bottom: 20px;
  }
}
.block_page .inner .section_logo .inner .column figure {
  width: 15%;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_page .inner .section_logo .inner .column figure {
    width: 30%;
  }
}
.block_page .inner .section_logo .inner .column p {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  font-weight: 500;
  line-height: 1.8;
}
.block_page .inner .section_logo .inner .column ul {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  padding-top: 5%;
}
@media (max-width: 896px) {
  .block_page .inner .section_logo .inner .column ul {
    padding-top: 10%;
    flex-direction: column; /* row row-reverse column */
  }
}
.block_page .inner .section_logo .inner .column ul li {
  width: 48%;
}
@media (max-width: 896px) {
  .block_page .inner .section_logo .inner .column ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.block_page .inner .text_area .sub_title01 {
  font-size: clamp(1.125rem, 0.9555084746rem + 0.8474576271vw, 1.75rem);
  font-weight: 500;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.block_page .inner .text_area .sub_title02 {
  font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
  font-size: 1.5vw;
  font-weight: 500;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_page .inner .text_area .sub_title02 {
    font-size: 18px;
  }
}
.block_page .inner .text_area .textarea {
  margin-bottom: 10%;
}
.block_page .inner .text_area .textarea .copy {
  font-size: clamp(1.125rem, 0.718220339rem + 2.0338983051vw, 2.625rem);
  font-weight: 500;
  line-height: 1.4;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 20px;
}
.block_page .inner .text_area .textarea p {
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 20px;
}
.block_page .inner .text_area .textarea ol {
  counter-reset: number;
}
.block_page .inner .text_area .textarea ol li {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 10px;
  margin-left: 1.5em;
  padding-left: 0.5em;
  position: relative;
}
.block_page .inner .text_area .textarea ol li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 5px;
  left: -1em;
  width: 12px;
  height: 12px;
  font-size: 12px;
}
.block_page .inner .text_area figure {
  margin-bottom: 20px;
}
.block_page .inner .text_area figure .img_wrap {
  position: relative;
}
.block_page .inner .text_area figure .img_wrap img {
  opacity: 0;
}
.block_page .inner .text_area figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_page .inner .text_area figure figcaption {
  display: block;
  background: #eee;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 0 10px 10px;
}
.block_page .inner .text_area ul.two_column {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
.block_page .inner .text_area ul.two_column li {
  width: 48%;
}
.block_page .inner .wide_title {
  overflow: hidden;
  font-size: clamp(0.8125rem, 0.5582627119rem + 1.2711864407vw, 1.75rem);
  font-weight: 500;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 5%;
  background: #cfe5ee;
  position: relative;
  left: -100px;
  width: 100vw;
  width: calc(100% + 200px);
  padding: 80px 100px;
}
@media (max-width: 896px) {
  .block_page .inner .wide_title {
    left: -20px;
    width: calc(100% + 40px);
    padding: 40px 20px;
  }
}
.block_page .inner .wide_title small {
  display: block;
  padding-top: 10px;
  letter-spacing: 0.05em;
  font-size: clamp(0.75rem, 0.6822033898rem + 0.3389830508vw, 1rem);
}
.block_page .inner .wide_image_title {
  margin-bottom: 20%;
  margin-top: -5%;
  position: relative;
  left: -100px;
  width: 100vw;
  width: calc(100% + 200px);
}
@media (max-width: 896px) {
  .block_page .inner .wide_image_title {
    left: -20px;
    width: 100vw;
    width: calc(100% + 40px);
  }
}
.block_page .inner .wide_image_title figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.block_page .inner .wide_image_title figure .img_wrap {
  position: relative;
  padding-top: 40%;
}
@media (max-width: 896px) {
  .block_page .inner .wide_image_title figure .img_wrap {
    padding-top: 100%;
  }
}
.block_page .inner .wide_image_title figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_page .inner .wide_image_title figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_page .inner .wide_image_title .text_area {
  position: absolute;
  bottom: 5%;
  right: 10%;
  height: 80%;
  color: #FFF;
  display: flex;
  flex-direction: row-reverse; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_page .inner .wide_image_title .text_area {
    height: 90%;
    bottom: 0px;
  }
}
.block_page .inner .wide_image_title .text_area .sub_title01 {
  writing-mode: vertical-rl;
  margin-left: 20%;
}
@media (max-width: 896px) {
  .block_page .inner .wide_image_title .text_area .sub_title01 {
    margin-left: 10%;
    font-size: 18px;
  }
}
.block_page .inner .wide_image_title .text_area .sub_title02 {
  writing-mode: vertical-rl;
  margin-left: 10%;
}
@media (max-width: 896px) {
  .block_page .inner .wide_image_title .text_area .sub_title02 {
    margin-left: 5%;
    font-size: 14px;
  }
}
.block_page .inner .wide_image_title .text_area .textarea {
  writing-mode: vertical-rl;
}
@media (max-width: 896px) {
  .block_page .inner .wide_image_title .text_area .textarea p {
    font-size: 11px;
  }
}

/*----------------------------------------------------
 block_img_list
--------------------------------------------------- */
.block_img_list {
  position: relative;
  margin-bottom: 10%;
}
.block_img_list .inner {
  padding: 0 100px;
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
}
@media (max-width: 896px) {
  .block_img_list .inner {
    padding: 0 20px;
  }
}
.block_img_list .inner .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.block_img_list .inner .list .column {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 5%;
}
.block_img_list .inner .list .column:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 896px) {
  .block_img_list .inner .list .column {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .block_img_list .inner .list .column:nth-child(3n) {
    margin-right: 4%;
  }
  .block_img_list .inner .list .column:nth-child(2n) {
    margin-right: 0%;
  }
}
.block_img_list .inner .list .column a {
  position: relative;
  display: block;
}
.block_img_list .inner .list .column a:hover figure .img_wrap {
  transform: scale(1.1, 1.1);
  opacity: 0.5;
}
.block_img_list .inner .list .column a:hover .c_text .c_title span {
  color: #af2534;
}
.block_img_list .inner .list .column a figure {
  overflow: hidden;
}
.block_img_list .inner .list .column a figure .img_wrap {
  transition: all 0.6s 0s ease;
  position: relative;
  padding-top: 56.25%;
  background: linear-gradient(90deg, #FFF 0%, #ccc 49%, #FFF 100%);
  background-size: 500% 500%;
  animation-name: gradation_bg;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}
.block_img_list .inner .list .column a figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_img_list .inner .list .column a figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_img_list .inner .list .column a .award {
  position: absolute;
  top: 5px;
  right: 5px;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 896px) {
  .block_img_list .inner .list .column a .award {
    top: -5px;
    right: -5px;
  }
}
.block_img_list .inner .list .column a .award span {
  display: inline-block;
  padding: 5px 5px;
  font-size: clamp(0.5rem, 0.4322033898rem + 0.3389830508vw, 0.75rem);
  background: #FFF;
  border: 1px #af2534 solid;
  color: #af2534;
  font-weight: 700;
  letter-spacing: 0;
}
.block_img_list .inner .list .column a .c_text {
  position: relative;
  margin-top: -20px;
  left: -20px;
}
@media (max-width: 896px) {
  .block_img_list .inner .list .column a .c_text {
    margin-top: -10px;
    left: -10px;
  }
}
.block_img_list .inner .list .column a .c_text .c_title span {
  transition: all 0.6s 0s ease;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline-block;
  padding: 0.2em 10px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  background: rgb(255, 255, 255);
  font-size: clamp(0.625rem, 0.5572033898rem + 0.3389830508vw, 0.875rem);
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  color: #000;
}
@media (max-width: 896px) {
  .block_img_list .inner .list .column a .c_text .c_title span {
    display: inline-block;
    line-height: 1.7;
  }
}
.block_img_list .inner .list .column a .c_text ul.category {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 10px;
  margin-left: 10px;
}
.block_img_list .inner .list .column a .c_text ul.category li {
  margin: 0 5px 5px 0;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  font-size: clamp(0.5rem, 0.4322033898rem + 0.3389830508vw, 0.75rem);
  display: inline-block;
  line-height: 1;
  padding: 5px 5px;
  background: #84a2b2;
  color: #FFF;
}

/*----------------------------------------------------
 block_works_detail
--------------------------------------------------- */
.block_works_detail {
  position: relative;
  margin-bottom: 10%;
}
.block_works_detail .inner {
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_works_detail .inner {
    padding: 0 20px;
    flex-direction: column; /* row row-reverse column */
  }
}
.block_works_detail .inner .text_area {
  width: 50%;
  position: sticky;
  top: 0;
  left: 0;
  padding-top: 180px;
  margin-top: -180px;
}
@media (max-width: 896px) {
  .block_works_detail .inner .text_area {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }
}
.block_works_detail .inner .text_area .in {
  padding: 0 100px;
}
@media (max-width: 896px) {
  .block_works_detail .inner .text_area .in {
    padding: 0;
  }
}
.block_works_detail .inner .text_area .in .award {
  line-height: 1;
  margin-bottom: 10px;
}
.block_works_detail .inner .text_area .in .award span {
  display: inline-block;
  padding: 5px 10px;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  background: #FFF;
  border: 1px #af2534 solid;
  color: #af2534;
  font-weight: 700;
  letter-spacing: 0;
}
.block_works_detail .inner .text_area .in .page_title {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  font-weight: 300;
  line-height: 1.5;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 20px;
  letter-spacing: 0.25em;
  position: relative;
}
.block_works_detail .inner .text_area .in .page_title small {
  padding-left: 20px;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  color: #84a2b2;
  letter-spacing: 0.05em;
}
@media (max-width: 896px) {
  .block_works_detail .inner .text_area .in .page_title small {
    padding-left: 10px;
  }
}
.block_works_detail .inner .text_area .in .c_title span {
  display: block;
  line-height: 1.7;
  font-size: clamp(1rem, 0.8644067797rem + 0.6779661017vw, 1.5rem);
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  color: #000;
}
.block_works_detail .inner .text_area .in ul.category {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 10px;
}
.block_works_detail .inner .text_area .in ul.category li {
  margin: 0 5px 5px 0;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  display: inline-block;
  line-height: 1;
  padding: 5px 5px;
  background: #84a2b2;
  color: #FFF;
}
.block_works_detail .inner .image_area {
  width: 50%;
}
@media (max-width: 896px) {
  .block_works_detail .inner .image_area {
    position: relative;
    left: -20px;
    width: calc(100% + 40px);
  }
  .block_works_detail .inner .image_area .btn_more {
    margin: 0 20px;
  }
  .block_works_detail .inner .image_area .btn_more a {
    justify-content: flex-start;
  }
  .block_works_detail .inner .image_area .btn_more .b_wrap {
    flex-direction: row-reverse;
    justify-content: flex-start;
  }
  .block_works_detail .inner .image_area .btn_more .b_wrap .t {
    margin-right: 0px;
    margin-left: 10px;
  }
  .block_works_detail .inner .image_area .btn_more .b_wrap .arrow {
    transform: rotate(180deg);
  }
}

/*----------------------------------------------------
 block_contact_link
--------------------------------------------------- */
.block_contact_link {
  position: relative;
  padding-bottom: 100px;
  background: #e1e1e1;
}
@media (max-width: 896px) {
  .block_contact_link {
    padding-bottom: 80px;
  }
}
.block_contact_link .inner {
  padding: 0 100px;
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  padding-top: 100px;
}
@media (max-width: 896px) {
  .block_contact_link .inner {
    padding-top: 40px;
    padding: 0 20px;
  }
}
.block_contact_link .inner .title_area {
  position: absolute;
  top: 100px;
  right: 40px;
}
@media (max-width: 896px) {
  .block_contact_link .inner .title_area {
    position: relative;
    top: 40px;
    right: 0;
  }
}
.block_contact_link .inner .title_area .title {
  position: relative;
  writing-mode: vertical-rl;
}
@media (max-width: 896px) {
  .block_contact_link .inner .title_area .title {
    margin: 0 20px 20px auto;
  }
}
.block_contact_link .inner .title_area .title span {
  display: inline-block;
  font-size: clamp(0.875rem, 0.5699152542rem + 1.5254237288vw, 2rem);
  letter-spacing: 0.15em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  padding-bottom: 10px;
}
@media (max-width: 896px) {
  .block_contact_link .inner .title_area .title span {
    line-height: 1.7;
  }
}
.block_contact_link .inner .title_area .title span small {
  display: block;
  color: #84a2b2;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
}
.block_contact_link .inner .text_area {
  padding-right: 80px;
}
.block_contact_link .inner .text_area p {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_contact_link .inner .text_area .tell {
    line-height: 1.7;
  }
}
.block_contact_link .inner .text_area .tell small {
  font-size: clamp(0.75rem, 0.6822033898rem + 0.3389830508vw, 1rem);
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  margin-right: 10px;
}
.block_contact_link .inner .text_area .tell .t {
  font-size: clamp(1.375rem, 1.3072033898rem + 0.3389830508vw, 1.625rem);
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  margin-right: 20px;
}
@media (max-width: 896px) {
  .block_contact_link .inner .text_area .tell .t {
    margin-right: 0;
  }
}
.block_contact_link .inner .text_area .attention {
  margin-bottom: 20px;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  letter-spacing: 0.05em;
}
@media (max-width: 896px) {
  .block_contact_link .inner .text_area .attention {
    padding-top: 10px;
  }
}
.block_contact_link .inner .text_area .btn a {
  display: block;
  padding-top: 14.25%;
  position: relative;
  background: #e1e1e1;
  color: #FFF;
  border: 1px #333 solid;
}
@media (max-width: 896px) {
  .block_contact_link .inner .text_area .btn a {
    padding-top: 25.25%;
  }
}
.block_contact_link .inner .text_area .btn a:hover .t {
  color: #FFF;
}
.block_contact_link .inner .text_area .btn a:hover .arrow svg {
  fill: #FFF;
}
.block_contact_link .inner .text_area .btn a:hover:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.block_contact_link .inner .text_area .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #af2534;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.block_contact_link .inner .text_area .btn a .t {
  position: absolute;
  top: 50%;
  left: 5%;
  z-index: 2;
  transform: translate(0%, -50%);
  letter-spacing: 0.15em;
  font-weight: 300;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.6144067797rem + 0.6779661017vw, 1.25rem);
  transition: all 0.5s 0s ease;
  color: #333;
}
@media (max-width: 896px) {
  .block_contact_link .inner .text_area .btn a .t {
    left: 5%;
  }
}
.block_contact_link .inner .text_area .btn a .arrow {
  position: absolute;
  top: 50%;
  right: 5%;
  z-index: 2;
  transform: translate(0%, -50%);
}
.block_contact_link .inner .text_area .btn a .arrow svg {
  fill: #333;
  width: 30px;
  height: 30px;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_contact_link .inner .text_area .btn a .arrow svg {
    width: 20px;
    height: 20px;
  }
}

/*----------------------------------------------------
.block_pager
--------------------------------------------------- */
.block_pager {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_pager .page-numbers {
  width: 50px;
  height: 50px;
  margin: 0 10px;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #af2534;
  border: 1px #af2534 solid;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_pager .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
.block_pager .page-numbers.current {
  background: #af2534;
  color: #FFF;
}
.block_pager .page-numbers.dots {
  border: none;
  background: none;
  color: #af2534;
}
.block_pager .page-numbers:hover {
  background: #af2534;
  color: #FFF;
}
.block_pager a.prev,
.block_pager .prev a {
  margin: 0 10px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  color: #af2534;
  border: 1px #af2534 solid;
  border-radius: 50px;
  transition: all 0.5s 0s ease;
  text-indent: -9999px;
  background: #FFF url(../img/common/arrow_prev.svg) no-repeat center center;
  background-size: 20px;
}
@media (max-width: 896px) {
  .block_pager a.prev,
  .block_pager .prev a {
    width: 30px;
    height: 30px;
    background: #FFF url(../img/common/arrow_prev.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.prev:hover,
.block_pager .prev a:hover {
  background: #af2534 url(../img/common/arrow_prev_w.svg) no-repeat center center;
  background-size: 20px;
}
@media (max-width: 896px) {
  .block_pager a.prev:hover,
  .block_pager .prev a:hover {
    width: 30px;
    height: 30px;
    background: #FFF url(../img/common/arrow_prev_w.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.next,
.block_pager .next a {
  margin: 0 10px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border-radius: 50px;
  color: #af2534;
  border: 1px #af2534 solid;
  transition: all 0.5s 0s ease;
  text-indent: -9999px;
  background: #FFF url(../img/common/arrow_next.svg) no-repeat center center;
  background-size: 20px;
}
@media (max-width: 896px) {
  .block_pager a.next,
  .block_pager .next a {
    width: 30px;
    height: 30px;
    background: #FFF url(../img/common/arrow_next.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.next:hover,
.block_pager .next a:hover {
  background: #af2534 url(../img/common/arrow_next_w.svg) no-repeat center center;
  background-size: 20px;
}
@media (max-width: 896px) {
  .block_pager a.next:hover,
  .block_pager .next a:hover {
    width: 30px;
    height: 30px;
    background: #af2534 url(../img/common/arrow_next_w.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.list {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: #af2534;
  border-radius: 50px;
  margin: 0 10px;
  color: #af2534;
  border: 1px #af2534 solid;
  padding: 0 20px;
  width: auto;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-style: normal;
  transition: all 0.5s 0s ease;
  background: #FFF;
}
.block_pager a.list:hover {
  background: #af2534;
  color: #FFF;
}

/*----------------------------------------------------
.form_list
--------------------------------------------------- */
.contact_block .exp {
  font-size: clamp(0.875rem, 0.8411016949rem + 0.1694915254vw, 1rem);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.contact_block .c_list {
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .contact_block .c_list .tell {
    line-height: 1.7;
  }
}
.contact_block .c_list .tell small {
  font-size: clamp(0.75rem, 0.6822033898rem + 0.3389830508vw, 1rem);
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  margin-right: 10px;
}
.contact_block .c_list .tell .t {
  font-size: clamp(1.375rem, 1.3072033898rem + 0.3389830508vw, 1.625rem);
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  margin-right: 20px;
}
@media (max-width: 896px) {
  .contact_block .c_list .tell .t {
    margin-right: 0;
  }
}
.contact_block .c_list .attention {
  margin-bottom: 20px;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  letter-spacing: 0.05em;
}
@media (max-width: 896px) {
  .contact_block .c_list .attention {
    padding-top: 10px;
  }
}
.contact_block .mw_wp_form_confirm .exp {
  display: none;
}
.contact_block .mw_wp_form_confirm .c_list {
  display: none;
}

.form_list .column {
  margin-bottom: 30px;
}
.form_list .column .column_title {
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
@media (max-width: 896px) {
  .form_list .column .column_title {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.form_list .column .column_title .must {
  font-size: 11px;
  background: #D15050;
  color: #FFF;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 30px;
  margin-left: 5px;
}
.form_list .column .column_form .error {
  background: #dc3232;
  color: #FFF;
  font-size: 14px;
  border-radius: 30px;
  padding: 5px 10px;
  margin-top: 10px;
}
.form_list .column .column_form input[type=text], .form_list .column .column_form input[type=email], .form_list .column .column_form input[type=tel] {
  border: 1px #ccc solid;
  background: #FFF;
  color: #000;
  font-size: 14px;
  border-radius: 5px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 9px 15px;
  width: 100%;
  box-shadow: none;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media (max-width: 896px) {
  .form_list .column .column_form input[type=text], .form_list .column .column_form input[type=email], .form_list .column .column_form input[type=tel] {
    font-size: 12px;
    padding: 5px 10px;
  }
}
.form_list .column .column_form input[type=file] {
  font-size: 14px;
}
.form_list .column .column_form textarea {
  border: 1px #ccc solid;
  background: #FFF;
  color: #000;
  font-size: 14px;
  border-radius: 5px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 9px 15px;
  width: 100%;
  box-shadow: none;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.form_list .column .column_form .mwform-checkbox-field {
  margin-right: 20px;
  font-weight: bold;
  font-size: 16px;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.form_list .column .column_form .conf {
  border: none;
  background: #eee;
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 14px 15px;
  width: calc(100% - 30px);
  box-shadow: none;
  margin-top: 15px;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.form_list .column .column_form select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 14px 15px;
  width: calc(100% - 30px);
  font-size: 14px;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.form_list .column .column_form .select_box {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #ffffff;
  margin-top: 15px;
  margin-bottom: 5px;
  width: calc(100% - 30px);
}
.form_list .column .column_form .select_box:hover {
  background: #eee;
}
.form_list .column .column_form .select_box:before {
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}
.mw_wp_form_confirm .select_box {
  background: none !important;
  border: none !important;
  margin-top: 0 !important;
  margin-bottom: 0px !important;
}
.mw_wp_form_confirm .select_box:hover {
  background: none !important;
}
.mw_wp_form_confirm .select_box::before {
  display: none !important;
}

.form_list .column .column_form .two {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.form_list .column .column_form .two dl {
  width: 49%;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .form_list .column .column_form .two dl {
    width: 50%;
  }
}
.form_list .column .column_form .two dl dt {
  width: 50px;
  font-size: 14px;
}
@media (max-width: 896px) {
  .form_list .column .column_form .two dl dt {
    width: 30px;
    font-size: 10px;
  }
}
.form_list .column .column_form .two dl dd {
  width: calc(100% - 50px);
}
@media (max-width: 896px) {
  .form_list .column .column_form .two dl dd {
    width: calc(100% - 30px);
  }
}
.form_list .column .column_form .two dl dd input {
  width: 100%;
}
@media (max-width: 896px) {
  .form_list .column .column_form .two dl dd input {
    width: 95%;
  }
}
.form_list .column .column_form .p-country-name {
  display: none;
}
.form_list .column .column_form .mwform-field {
  margin-bottom: 10px;
}
.form_list .column .column_form .mwform-field.min {
  width: 200px;
}
.form_list .column .column_form .long {
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.form_list .column .column_form .long dl {
  width: 100%;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.form_list .column .column_form .long dl dt {
  width: 100px;
  font-size: 14px;
}
@media (max-width: 896px) {
  .form_list .column .column_form .long dl dt {
    width: 60px;
    font-size: 12px;
  }
}
.form_list .column .column_form .long dl dd {
  width: calc(100% - 100px);
}
@media (max-width: 896px) {
  .form_list .column .column_form .long dl dd {
    width: calc(100% - 60px);
  }
}
.form_list .column .column_form .long dl dd input {
  width: 100%;
}
.form_list .column .column_form .long dl dd input.min {
  width: 200px;
}
.form_list .column .column_form .mwform-tel-field {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.form_list .column .column_form .mwform-tel-field input {
  width: auto;
  margin-right: 10px;
}
.form_list .column .column_form .mwform-tel-field input:nth-child(2) {
  margin-left: 10px;
}
.form_list .column .column_form .mwform-tel-field input:nth-child(3) {
  margin-left: 10px;
}
.form_list .btn_area {
  padding-top: 0px;
  text-align: center;
}
.form_list .btn_area input[type=submit], .form_list .btn_area input[type=button] {
  border: none;
  border-radius: 100px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: inline-block;
  margin-right: 10px;
  width: 255px;
  height: 60px;
  border: 1px #333 solid;
  background: #333;
  position: relative;
  color: #FFF;
  text-align: center;
  cursor: pointer;
  line-height: 60px;
  font-size: 16px;
  letter-spacing: 0.2em;
  transition: all 0.5s 0s ease;
}
.form_list .btn_area input[type=submit]:hover, .form_list .btn_area input[type=button]:hover {
  background: #FFF;
  color: #333;
}
.form_list .column .attention {
  color: #dc3232;
  font-size: 12px;
  line-height: 1.6;
  padding-bottom: 10px;
}
.form_list .column .attention svg {
  fill: #dc3232;
  width: 15px;
  margin-right: 5px;
  vertical-align: middle;
}
.form_list .column ::-moz-placeholder {
  color: #ccc;
}
.form_list .column ::placeholder {
  color: #ccc;
}

.mw_wp_form_confirm .column_form {
  border: none;
  background: #eee;
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 14px 15px;
  width: calc(100% - 30px);
  box-shadow: none;
  margin-top: 15px;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.mw_wp_form_complete {
  border: 1px #000 solid;
  padding: 40px;
  font-size: 16px;
}/*# sourceMappingURL=common.css.map */