@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)) {
  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;
}

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

body.page .wrapper {
  padding-top: 150px;
}

@media only screen and (max-width: 896px) {
  body.page .wrapper {
    padding-top: 100px;
  }
}
/*----------------------------------------------------
 block_loading
--------------------------------------------------- */
.block_loading {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  background: #FFF;
}
body.pageLoad .block_loading {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s 0.8s ease;
}

.block_loading .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  width: 80px;
  transform: scale(1, 1) translate(0%, -50%);
  opacity: 0;
}
body.pageLoad .block_loading .icon {
  opacity: 1;
  transition: all 0.3s 0s ease;
}

.block_loading .icon svg {
  transform-style: preserve-3d;
  animation: rotate-anime-3d 1s cubic-bezier(0.875, 0.005, 0.09, 0.99) infinite;
  fill: #af2534;
}

/*----------------------------------------------------
 block_header
--------------------------------------------------- */
.block_header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  transition: all 0.5s 0s ease;
}
body.page_scroll .block_header {
  background: #FFF;
}
@media (max-width: 896px) {
  body.page_scroll .block_header {
    background: none;
  }
}

.block_header .logo {
  position: absolute;
  top: 42px;
  left: 40px;
  width: 200px;
  transition: all 0.5s 0s ease;
}
body.page_scroll .block_header .logo {
  top: 25px;
}

@media (max-width: 896px) {
  .block_header .logo {
    top: 30px;
    left: 20px;
    width: 100px;
  }
  body.page_scroll .block_header .logo {
    top: 30px;
  }
}
.block_header .logo a {
  display: block;
}
.block_header ul.menu {
  position: absolute;
  top: 56px;
  right: 300px;
  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;
}
body.page_scroll .block_header ul.menu {
  top: 34px;
}

@media (max-width: 896px) {
  .block_header ul.menu {
    display: none;
  }
}
.block_header ul.menu li {
  margin-left: 2vw;
}
.block_header ul.menu li a {
  display: block;
  font-size: 14px;
  transition: all 0.3s 0s ease;
}
.block_header ul.menu li a span {
  font-weight: 800;
  display: inline-block;
  position: relative;
}
body.page .block_header ul.menu li a span {
  color: #FFF;
  transition: all 0.5s 0s ease;
}

body.page.header_bk .block_header ul.menu li a span {
  color: #000;
  transition: all 0.5s 0s ease;
}

body.page.page_scroll .block_header ul.menu li a span {
  color: #000;
}

.block_header ul.menu li a span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #af2534;
  transition: all 0.3s 0s ease;
}
.block_header ul.menu li a:hover {
  color: #af2534;
}
body.page .block_header ul.menu li a:hover span {
  color: #af2534;
}

.block_header ul.menu li a:hover span:before {
  width: 100%;
}
.block_header .btn_entry {
  position: absolute;
  top: 40px;
  right: 40px;
  transition: all 0.5s 0s ease;
}
body.page_scroll .block_header .btn_entry {
  top: 20px;
}

@media (max-width: 896px) {
  .block_header .btn_entry {
    top: 17px;
    right: 80px;
  }
  body.page_scroll .block_header .btn_entry {
    top: 17px;
  }
}
.block_header .btn_entry a {
  display: block;
  background: #af2534;
  position: relative;
  overflow: hidden;
  color: #FFF;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  width: 200px;
  height: 60px;
  border-radius: 30px;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border: 1px #af2534 solid;
  transition: all 0.3s 0s ease;
}
@media (max-width: 896px) {
  .block_header .btn_entry a {
    width: 100px;
    height: 40px;
    border-radius: 40px;
    font-size: 12px;
  }
}
.block_header .btn_entry a span {
  position: relative;
  z-index: 1;
}
.block_header .btn_entry 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_header .btn_entry a:hover {
  color: #af2534;
}
.block_header .btn_entry a:hover:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

@media screen and (max-width: 1220px) and (min-width: 896px) {
  .block_header ul.menu {
    right: 200px;
  }
  .block_header ul.menu li {
    margin-left: 20px;
  }
  .block_header ul.menu li a {
    font-size: 12px;
  }
  .block_header .btn_entry a {
    width: 120px;
    height: 60px;
  }
}
/*----------------------------------------------------
 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 a {
  position: fixed;
  display: none;
  z-index: 100;
  top: 0%;
  right: 0px;
  width: 120px;
  height: 120px;
  border-radius: 120px;
  background: #af2534;
  box-shadow: 0px 10px 30px 0px rgba(51, 51, 51, 0.1);
}
@media (max-width: 896px) {
  .block_navi a {
    display: block;
    width: 70px;
    height: 70px;
  }
}
.block_navi a i {
  display: none;
}
.block_navi a .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  overflow: hidden;
  transition: all 0.4s 0s ease;
}
.block_navi a span.l1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-top: -6px;
  margin-left: -15px;
  background: #FFF;
  transform-origin: center center;
}
.block_navi a span.l2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-top: 0px;
  margin-left: -15px;
  background: #FFF;
  transform-origin: center center;
}
.block_navi a span.l3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-top: 6px;
  margin-left: -15px;
  background: #FFF;
  transform-origin: center center;
}

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: 10;
  opacity: 0;
  background: rgba(255, 255, 255, 0.7);
  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: 90;
  opacity: 0;
  transition: all 0.5s 0s ease;
  visibility: hidden;
}

body.menu_open .block_sp_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0px);
}
body.menu_open .block_sp_menu .menu_image figure {
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(0deg);
}

.block_sp_menu .inner {
  padding: 35px 0 35px 35px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0%, -50%);
  z-index: 2;
}
.block_sp_menu .inner ul.menu > li {
  position: relative;
  margin-bottom: 10px;
}
.block_sp_menu .inner ul.menu > li > a {
  color: #000;
  display: block;
  line-height: 1;
  font-size: 24px;
  letter-spacing: 0.05em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  padding: 10px;
}

/*----------------------------------------------------
 block_top_bg
--------------------------------------------------- */
.block_top_bg {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.block_top_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background: #FFF;
  z-index: 2;
  transition: all 0.8s 0s cubic-bezier(0.875, 0.005, 0.09, 0.99);
}
@media (max-width: 896px) {
  .block_top_bg::before {
    width: 15%;
  }
}
.block_top_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: #FFF;
  z-index: 2;
  transition: all 0.8s 0s cubic-bezier(0.875, 0.005, 0.09, 0.99);
}
@media (max-width: 896px) {
  .block_top_bg::after {
    height: 80px;
  }
}
body.page_scroll .block_top_bg::before {
  width: 0%;
}
body.page_scroll .block_top_bg::after {
  height: 0%;
}
body.page_scroll .block_top_bg .slide {
  top: 0px;
  left: 0%;
  height: 100%;
}
body.page_scroll .block_top_bg .slide::after {
  background: rgba(255, 255, 255, 0.9);
}

.block_top_bg .slide {
  position: absolute;
  top: 5%;
  left: 5%;
  height: 90%;
  width: 100%;
  overflow: hidden;
  transition: all 1.2s 0s ease;
}
.block_top_bg .slide::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0%;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: #FFF;
}
body.pageLoad .block_top_bg .slide:before {
  width: 0;
  transition: all 2s 1s cubic-bezier(0.875, 0.005, 0.09, 0.99);
}

.block_top_bg .slide::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(255, 255, 255, 0);
  transition: all 0.8s 0s ease;
}
@media (max-width: 896px) {
  .block_top_bg .slide {
    position: relative;
    height: 164vw;
  }
}
.block_top_bg .slide .column figure {
  position: relative;
  height: -webkit-calc(100%);
  height: 100%;
  overflow: hidden;
  margin: 0;
}
.block_top_bg .slide .column figure span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 896px) {
  .block_top_bg .slide .column figure span {
    width: 150vh;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes zoomSlide {
  0% {
    transform: scale(1, 1) translate(-10%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(-50%, 0%);
  }
}
.block_top_bg .swiper-slide-active .img_wrap span,
.block_top_bg .swiper-slide-duplicate-active .img_wrap span,
.block_top_bg .swiper-slide-prev .img_wrap span {
  animation: zoomUp 7s linear 0s normal both;
}
@media (max-width: 896px) {
  .block_top_bg .swiper-slide-active .img_wrap span,
  .block_top_bg .swiper-slide-duplicate-active .img_wrap span,
  .block_top_bg .swiper-slide-prev .img_wrap span {
    animation: zoomSlide 14s linear 0s normal both;
  }
}
.block_top_bg .swiper-wrapper {
  transition-timing-function: linear;
}

/*----------------------------------------------------
 block_mainvisual
--------------------------------------------------- */
@keyframes rotate-ball {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.block_mainvisual {
  position: relative;
  height: 100vh;
  margin-bottom: 20%;
}
.block_mainvisual .copy {
  position: absolute;
  top: 200px;
  left: 7.2%;
  line-height: 1.5;
  z-index: 2;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 4vw;
  font-weight: 500;
  transform: translate(40px, 0%);
  opacity: 0;
}
@media (max-width: 896px) {
  .block_mainvisual .copy {
    top: 200px;
    left: 5%;
    font-size: 7vw;
  }
}
body.pageLoad .block_mainvisual .copy {
  transform: translate(0px, 0%);
  opacity: 1;
  transition: all 0.8s 1.2s ease;
}

.block_mainvisual .copy small {
  display: block;
  font-family: "Roboto", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.2vw;
  text-align: left;
  color: #af2534;
  padding-top: 1vw;
  transform: translate(40px, 0%);
  opacity: 0;
}
@media (max-width: 896px) {
  .block_mainvisual .copy small {
    font-size: 3vw;
    padding-top: 2vw;
  }
}
body.pageLoad .block_mainvisual .copy small {
  transform: translate(0px, 0%);
  opacity: 1;
  transition: all 0.8s 1.4s ease;
}

.block_mainvisual .icon {
  position: absolute;
  top: 70vh;
  left: -2vw;
  width: 40vh;
  z-index: 3;
  transform: translate(-40vh, 0%) rotate(-180deg);
}
@media (max-width: 896px) {
  .block_mainvisual .icon {
    top: 125vw;
    left: -5vw;
    width: 50vw;
  }
}
body.pageLoad .block_mainvisual .icon {
  transform: translate(0px, 0%) rotate(0deg);
  transition: all 2s 1s cubic-bezier(0.875, 0.005, 0.09, 0.99);
}

.block_mainvisual .pick_btn {
  position: absolute;
  top: 80vh;
  right: 0;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_mainvisual .pick_btn {
    top: 140vw;
  }
}
.block_mainvisual .pick_btn a {
  display: block;
  background: #af2534;
  position: relative;
  overflow: hidden;
  color: #FFF;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  height: 60px;
  border-radius: 30px;
  padding: 0 100px 0 40px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border: 1px #af2534 solid;
  transition: all 0.3s 0s ease;
  transform: scale(1, 1) translate(60px, 0%);
}
@media (max-width: 896px) {
  .block_mainvisual .pick_btn a {
    height: 40px;
    padding: 0 70px 0 20px;
    font-size: 14px;
  }
}
.block_mainvisual .pick_btn a span {
  position: relative;
  z-index: 1;
}
.block_mainvisual .pick_btn 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_mainvisual .pick_btn a:hover {
  color: #af2534;
  transform: scale(1, 1) translate(40px, 0%);
}
.block_mainvisual .pick_btn a:hover:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.block_mainvisual .nami.pos01 {
  position: absolute;
  top: 130px;
  right: -10px;
  width: 200px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_mainvisual .nami.pos01 {
    top: 100px;
    right: -10px;
    width: 140px;
  }
}
.block_mainvisual .nami.pos02 {
  position: absolute;
  top: 95vh;
  left: 40vh;
  width: 200px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_mainvisual .nami.pos02 {
    top: 95vw;
    left: -5vw;
    width: 150px;
  }
}

/*----------------------------------------------------
 block_top_message
--------------------------------------------------- */
.block_top_message {
  position: relative;
  margin-bottom: 20%;
}
.block_top_message .nami.pos01 {
  position: absolute;
  top: -10vw;
  right: -10px;
  width: 200px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_top_message .nami.pos01 {
    top: -20vw;
    right: -10px;
    width: 150px;
  }
}
.block_top_message .nami.pos02 {
  position: absolute;
  top: 30vw;
  left: -5vw;
  width: 250px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_top_message .nami.pos02 {
    top: 150vw;
    left: auto;
    right: -2vw;
    width: 130px;
  }
}
.block_top_message .bg_image {
  position: absolute;
  top: 0%;
  left: 0vw;
  width: 100vw;
  opacity: 0.3;
}
.block_top_message .bg_image.pos01 {
  top: -20%;
  width: 100%;
}
.block_top_message .bg_image.pos01 figure {
  position: relative;
  left: 0%;
  width: 30%;
}
.block_top_message .bg_image.pos02 {
  top: 20%;
}
.block_top_message .bg_image.pos02 figure {
  position: relative;
  left: 70%;
  width: 50%;
}
.block_top_message .bg_image.pos03 {
  top: 85%;
}
.block_top_message .bg_image.pos03 figure {
  position: relative;
  left: 5%;
  width: 40%;
}
.block_top_message .bg_image figure .img_wrap {
  position: relative;
  padding-top: 70%;
}
.block_top_message .bg_image figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.block_top_message .message {
  position: relative;
  width: 700px;
  margin: 0 auto;
}
@media (max-width: 896px) {
  .block_top_message .message {
    width: 90%;
  }
}
.block_top_message .message p {
  font-size: 18px;
  line-height: 3;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  margin-bottom: 18px;
}
@media (max-width: 896px) {
  .block_top_message .message p {
    font-size: 14px;
    line-height: 2.5;
    margin-bottom: 15px;
  }
}
.block_top_message .message .en {
  color: #af2534;
  font-size: 14px;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding-top: 20px;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*----------------------------------------------------
  block_top_future
--------------------------------------------------- */
.block_top_future {
  position: relative;
  padding: 10% 0;
  background: #FFF7F2;
  /* スライドの動き等速 */
}
@media (max-width: 896px) {
  .block_top_future {
    padding: 20% 0 10% 0;
  }
}
.block_top_future .nami.pos01 {
  position: absolute;
  top: -3vw;
  right: -10px;
  width: 200px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_top_future .nami.pos01 {
    top: -3vw;
    right: -10px;
    width: 140px;
  }
}
.block_top_future .nami.pos02 {
  position: absolute;
  top: 30vw;
  left: -1vw;
  width: 250px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_top_future .nami.pos02 {
    top: 100vw;
    left: -1vw;
    width: 150px;
  }
}
.block_top_future::before {
  content: "What is important";
  position: absolute;
  top: 10vw;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: "Roboto", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 10vw;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 100;
  color: #af2534;
  opacity: 0.1;
  padding-top: 80px;
}
@media (max-width: 896px) {
  .block_top_future::before {
    padding-top: 40px;
  }
}
.block_top_future .title {
  position: relative;
  left: 50%;
  margin-left: -25%;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 44px;
  font-weight: 500;
  writing-mode: vertical-rl;
}
@media (max-width: 896px) {
  .block_top_future .title {
    margin-left: -35%;
    font-size: 24px;
  }
}
.block_top_future .textarea {
  position: relative;
  left: 50%;
  margin-top: -10%;
  margin-left: -10%;
  width: 40%;
  margin-bottom: 10%;
}
@media (max-width: 896px) {
  .block_top_future .textarea {
    left: 50%;
    margin-top: -40%;
    margin-left: -20%;
    width: 60%;
  }
}
.block_top_future .textarea p {
  font-size: 16px;
}
@media (max-width: 896px) {
  .block_top_future .textarea p {
    font-size: 14px;
  }
}
.block_top_future .slide .column figure {
  position: relative;
}
.block_top_future .slide .column figure .img_wrap {
  position: relative;
  padding-top: 70%;
}
.block_top_future .slide .column figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.block_top_future .swiper-wrapper {
  transition-timing-function: linear;
}
.block_top_future .copy {
  font-family: "Roboto", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 7vw;
  text-align: center;
  font-weight: 200;
  line-height: 1;
  padding-top: 10%;
  color: #af2534;
}
@media (max-width: 896px) {
  .block_top_future .copy {
    line-height: 1.5;
  }
}

/*----------------------------------------------------
  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: 500;
  font-family: "Roboto", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  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_top_works
--------------------------------------------------- */
.block_top_works {
  position: relative;
  margin-bottom: 10%;
}
.block_top_works::before {
  content: "Works";
  position: absolute;
  font-family: "Roboto", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  font-size: 20.7vw;
  top: -1vw;
  line-height: 1;
  left: -3.5vw;
  color: #FFF7F2;
  z-index: 2;
  writing-mode: vertical-rl;
}
.block_top_works a {
  display: block;
  position: relative;
}
.block_top_works a .nami.pos01 {
  position: absolute;
  top: 6vw;
  right: -10px;
  width: 300px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_top_works a .nami.pos01 {
    top: 6vw;
    right: -10px;
    width: 150px;
  }
}
.block_top_works a figure .img_wrap {
  position: relative;
  padding-top: 56.25%;
}
@media (max-width: 896px) {
  .block_top_works a figure .img_wrap {
    padding-top: 170vw;
  }
}
.block_top_works a figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
@media (max-width: 896px) {
  .block_top_works a figure .img_wrap span {
    background-attachment: scroll;
    background-position: center bottom;
  }
}
.block_top_works a .textarea {
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 40%;
}
@media (max-width: 896px) {
  .block_top_works a .textarea {
    bottom: 5%;
    left: 10%;
    width: 80%;
  }
}
.block_top_works a .textarea .title {
  color: #FFF;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 3vw;
  font-weight: 500;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_top_works a .textarea .title {
    font-size: 24px;
    margin-bottom: 2%;
  }
}
.block_top_works a .textarea p {
  color: #FFF;
  font-size: 16px;
}
@media (max-width: 896px) {
  .block_top_works a .textarea p {
    font-size: 14px;
    margin-bottom: -20px;
  }
}

/*----------------------------------------------------
  block_interview_list
--------------------------------------------------- */
.block_interview_list {
  position: relative;
  margin-bottom: 10%;
}
body.page .block_interview_list {
  padding: 10% 0;
  background: #FFF;
  margin-bottom: 0%;
}
body.page .block_interview_list.min {
  padding: 0;
  padding-bottom: 10%;
}

.block_interview_list .nami.pos01 {
  position: absolute;
  top: -3vw;
  right: -10px;
  width: 300px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_interview_list .nami.pos01 {
    top: -3vw;
    right: -10px;
    width: 150px;
  }
}
body.page .block_interview_list .nami.pos01 {
  display: none;
}

.block_interview_list .inner {
  padding: 0 12vw;
}
@media (max-width: 896px) {
  .block_interview_list .inner {
    padding: 0 20px;
  }
}
.block_interview_list .inner .title {
  color: #af2534;
  line-height: 1;
  font-size: 62px;
  font-weight: 300;
  font-family: "Roboto", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  .block_interview_list .inner .title {
    font-size: 34px;
  }
}
.block_interview_list.min .inner .title {
  margin-bottom: 40px;
}

.block_interview_list .inner .ja {
  line-height: 1;
  font-size: 22px;
  font-weight: 300;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_interview_list .inner .ja {
    font-size: 16px;
  }
}
.block_interview_list .inner .exp {
  font-size: 16px;
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_interview_list .inner .exp {
    font-size: 14px;
  }
}
.block_interview_list .inner .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}
.block_interview_list .inner .list::after {
  content: "";
  position: absolute;
  bottom: 5vw;
  right: -15vw;
  width: 30vw;
  height: 30vw;
  opacity: 0.5;
  background: url(../img/common/icon.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 896px) {
  .block_interview_list .inner .list::after {
    bottom: 10vw;
    right: -15vw;
    width: 50vw;
    height: 50vw;
  }
}
body.page .block_interview_list .inner .list::after {
  display: none;
}

.block_interview_list .inner .list .column {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 5%;
}
.block_interview_list .inner .list .column:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 896px) {
  .block_interview_list .inner .list .column {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 10%;
  }
  .block_interview_list .inner .list .column:nth-child(3n) {
    margin-right: 4%;
  }
  .block_interview_list .inner .list .column:nth-child(2n) {
    margin-right: 0;
  }
}
.block_interview_list .inner .list .column a {
  display: block;
}
.block_interview_list .inner .list .column a:hover {
  color: #af2534;
}
.block_interview_list .inner .list .column a:hover figure .img_wrap {
  transform: scale(0.9, 0.9);
}
.block_interview_list .inner .list .column a figure {
  margin-bottom: 10px;
}
.block_interview_list .inner .list .column a figure .img_wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  transition: all 0.5s 0s ease;
}
.block_interview_list .inner .list .column a figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.1, 1.1);
}
.block_interview_list .inner .list .column a figure .img_wrap span.lazyloaded {
  transition: all 0.5s 0s ease;
  opacity: 1;
  transform: scale(1, 1);
}
.block_interview_list .inner .list .column a .c_title {
  font-size: 16px;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  margin-bottom: 5px;
}
@media (max-width: 896px) {
  .block_interview_list .inner .list .column a .c_title {
    font-size: 14px;
  }
}
.block_interview_list .inner .list .column a .copy {
  font-size: 24px;
  line-height: 1.5;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  margin-bottom: 15px;
}
@media (max-width: 896px) {
  .block_interview_list .inner .list .column a .copy {
    font-size: 16px;
  }
}
.block_interview_list .inner .list .column a .meta {
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 896px) {
  .block_interview_list .inner .list .column a .meta {
    font-size: 12px;
  }
}

/*----------------------------------------------------
  block_link
--------------------------------------------------- */
.block_link {
  position: relative;
  background: #FFF;
}
.block_link .btn_entry {
  position: relative;
}
.block_link .btn_entry .nami.pos01 {
  position: absolute;
  top: -3vw;
  left: -10px;
  width: 200px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_link .btn_entry .nami.pos01 {
    top: -3vw;
    left: -10px;
    width: 150px;
  }
}
.block_link .btn_entry a {
  display: block;
  background: #af2534;
  color: #FFF;
  padding: 100px 12vw;
}
@media (max-width: 896px) {
  .block_link .btn_entry a {
    padding: 100px 20px;
  }
}
.block_link .btn_entry a .wrap {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_link .btn_entry a .wrap figure {
  width: 15%;
}
@media (max-width: 896px) {
  .block_link .btn_entry a .wrap figure {
    width: 20%;
  }
}
.block_link .btn_entry a .wrap .t_title {
  width: 55%;
  padding-left: 30px;
  font-size: 70px;
  line-height: 1;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
}
@media (max-width: 896px) {
  .block_link .btn_entry a .wrap .t_title {
    width: 65%;
    font-size: 12vw;
    padding-left: 20px;
  }
}
.block_link .btn_entry a .wrap .t_title small {
  display: block;
  font-size: 16px;
  padding-top: 20px;
  color: #B6A78C;
}
@media (max-width: 896px) {
  .block_link .btn_entry a .wrap .t_title small {
    padding-top: 10px;
    font-size: 3.5vw;
  }
}
.block_link .btn_entry a .wrap .btn_more {
  width: 40%;
  padding-top: 0px;
}
@media (max-width: 896px) {
  .block_link .btn_entry a .wrap .btn_more {
    width: 15%;
  }
}
.block_link .btn_entry a .wrap .btn_more a .t, .block_link .btn_entry a .wrap .btn_more .b_wrap .t {
  color: #FFF;
}
@media (max-width: 896px) {
  .block_link .btn_entry a .wrap .btn_more a .t, .block_link .btn_entry a .wrap .btn_more .b_wrap .t {
    display: none;
  }
}
.block_link .btn_entry a .wrap .btn_more a .arrow, .block_link .btn_entry a .wrap .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;
}
.block_link .btn_entry a .wrap .btn_more a .arrow svg, .block_link .btn_entry a .wrap .btn_more .b_wrap .arrow svg {
  fill: #FFF;
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
}
.block_link .btn_entry a .wrap .btn_more a .arrow:before, .block_link .btn_entry a .wrap .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_link .btn_entry a:hover .wrap .btn_more .b_wrap .arrow svg {
  fill: #af2534;
}
.block_link .btn_entry a:hover .wrap .btn_more .b_wrap .arrow:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.block_link .btn_page {
  position: relative;
}
.block_link .btn_page .nami.pos01 {
  position: absolute;
  top: -3vw;
  left: -10px;
  width: 200px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_link .btn_page .nami.pos01 {
    top: -3vw;
    left: -10px;
    width: 100px;
  }
}
.block_link .btn_page a {
  display: block;
}
.block_link .btn_page a:hover figure::after {
  opacity: 0;
}
.block_link .btn_page a figure {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
}
@media (max-width: 896px) {
  .block_link .btn_page a figure {
    height: 200px;
  }
}
.block_link .btn_page a figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.5s 0s ease;
}
.block_link .btn_page a figure .img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_link .btn_page a figure .img_wrap span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}
.block_link .btn_page a .wrap {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 12vw;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  transform: translate(0%, -50%);
}
.block_link .btn_page a .wrap .t_title {
  font-size: 14px;
  line-height: 1;
  font-family: "Roboto", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  color: #FFF;
}
@media (max-width: 896px) {
  .block_link .btn_page a .wrap .t_title {
    font-size: 12px;
  }
}
.block_link .btn_page a .wrap .t_title small {
  display: block;
  font-size: 42px;
  padding-top: 20px;
  letter-spacing: 0.1em;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  color: #FFF;
}
@media (max-width: 896px) {
  .block_link .btn_page a .wrap .t_title small {
    padding-top: 10px;
    font-size: 16px;
  }
}
.block_link .btn_page a .wrap .btn_more {
  padding-top: 20px;
}
@media (max-width: 896px) {
  .block_link .btn_page a .wrap .btn_more a .t, .block_link .btn_page a .wrap .btn_more .b_wrap .t {
    display: none;
  }
}
.block_link .btn_page a .wrap .btn_more a .arrow, .block_link .btn_page a .wrap .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;
}
.block_link .btn_page a .wrap .btn_more a .arrow svg, .block_link .btn_page a .wrap .btn_more .b_wrap .arrow svg {
  fill: #FFF;
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
}
.block_link .btn_page a .wrap .btn_more a .arrow:before, .block_link .btn_page a .wrap .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_link .btn_page a:hover .wrap .btn_more .b_wrap .arrow svg {
  fill: #af2534;
}
.block_link .btn_page a:hover .wrap .btn_more .b_wrap .arrow:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

/*----------------------------------------------------
  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 40px;
}
@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; /* row row-reverse column */
  }
}
.block_footer .inner .wrap .company {
  width: 200px;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .company {
    width: 100%;
    margin-bottom: 40px;
  }
}
.block_footer .inner .wrap .company .c_logo {
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .company .c_logo {
    width: 200px;
    margin: 0 auto;
    margin-bottom: 0px;
  }
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .company .entry {
    display: none;
  }
}
.block_footer .inner .wrap .company .entry a {
  display: block;
  background: #af2534;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  color: #FFF;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  height: 60px;
  border-radius: 30px;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border: 1px #af2534 solid;
  transition: all 0.3s 0s ease;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .company .entry a {
    width: 250px;
    margin: 0 auto;
  }
}
.block_footer .inner .wrap .company .entry a span {
  position: relative;
  z-index: 1;
}
.block_footer .inner .wrap .company .entry 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_footer .inner .wrap .company .entry a:hover {
  color: #af2534;
}
.block_footer .inner .wrap .company .entry a:hover:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.block_footer .inner .wrap .menu {
  width: calc(100% - 260px);
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .menu {
    width: 100%;
  }
}
.block_footer .inner .wrap .menu .m_menu {
  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: 20px;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .menu .m_menu {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_footer .inner .wrap .menu .m_menu dl {
  width: 25%;
  border-top: 2px #af2534 solid;
  margin-right: 20px;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .menu .m_menu dl {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.block_footer .inner .wrap .menu .m_menu dl dt a {
  display: block;
  background: url(../img/common/arrow_link.svg) no-repeat right center;
  background-size: 15px auto;
  font-size: 16px;
  font-weight: 800;
  padding: 4px 0;
}
.block_footer .inner .wrap .menu .m_menu dl dt a:hover {
  color: #af2534;
}
.block_footer .inner .wrap .menu .m_menu dl dd {
  padding-top: 20px;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .menu .m_menu dl dd {
    padding-top: 0px;
  }
}
.block_footer .inner .wrap .menu .m_menu dl dd ul.wide {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.block_footer .inner .wrap .menu .m_menu dl dd ul.wide li {
  width: 50%;
}
.block_footer .inner .wrap .menu .m_menu dl dd ul li a {
  display: block;
  font-size: 14px;
  font-weight: 800;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .menu .m_menu dl dd ul li a {
    font-size: 12px;
  }
}
.block_footer .inner .wrap .menu .m_menu dl dd ul li a:hover {
  color: #af2534;
}
.block_footer .inner .wrap .menu .s_menu {
  border-top: 2px #af2534 solid;
}
.block_footer .inner .wrap .menu .s_menu ul {
  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  */
  padding-top: 10px;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .menu .s_menu ul {
    flex-direction: column; /* row row-reverse column */
    padding-top: 20px;
  }
}
.block_footer .inner .wrap .menu .s_menu ul li {
  margin-right: 20px;
}
@media (max-width: 896px) {
  .block_footer .inner .wrap .menu .s_menu ul li {
    margin-bottom: 10px;
  }
}
.block_footer .inner .wrap .menu .s_menu ul li a {
  display: block;
  font-size: 14px;
  font-weight: 800;
  position: relative;
  padding: 0 20px 0 0;
}
.block_footer .inner .wrap .menu .s_menu ul li a:hover {
  color: #af2534;
}
.block_footer .inner .wrap .menu .s_menu ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 0;
  width: 15px;
  height: 15px;
  background: url(../img/common/arrow_link.svg) no-repeat;
  background-size: 15px auto;
  transform: rotate(-45deg);
}
.block_footer .inner .f_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  */
}
.block_footer .inner .f_wrap .copyright {
  font-size: 11px;
  font-family: "Roboto", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.05em;
}
@media (max-width: 896px) {
  .block_footer .inner .f_wrap .copyright {
    font-size: 10px;
  }
}
.block_footer .inner .f_wrap 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  */
}
.block_footer .inner .f_wrap ul li {
  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: 20px;
}
.block_footer .inner .f_wrap ul li a {
  display: block;
  font-size: 14px;
  font-weight: 800;
  position: relative;
  padding: 0 20px 0 0;
}
.block_footer .inner .f_wrap ul li a:hover {
  color: #af2534;
}
.block_footer .inner .f_wrap ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 0;
  width: 15px;
  height: 15px;
  background: url(../img/common/arrow_link.svg) no-repeat;
  background-size: 15px auto;
  transform: rotate(-45deg);
}

/*----------------------------------------------------
  block_summary_bg
--------------------------------------------------- */
.block_summary_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  z-index: 0;
}
.block_summary_bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 2;
}
body.pageLoad .block_summary_bg:before {
  width: 0;
  transition: all 1.2s 0s cubic-bezier(0.875, 0.005, 0.09, 0.99);
}

.block_summary_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.block_summary_bg figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_summary_bg figure .img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_summary_bg figure .img_wrap span {
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

/*----------------------------------------------------
  block_summary
--------------------------------------------------- */
.block_summary {
  position: relative;
  width: 100%;
  height: 300px;
  color: #af2534;
}
body.pageLoad .block_summary {
  color: #FFF;
  transition: all 1.2s 0s ease;
}

.block_summary .inner {
  padding: 0 80px;
  padding-top: 80px;
}
@media (max-width: 896px) {
  .block_summary .inner {
    padding: 0 20px;
    padding-top: 180px;
  }
}
.block_summary .inner .title {
  font-size: 42px;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  .block_summary .inner .title {
    font-size: 24px;
  }
}
.block_summary .inner .en {
  font-size: 18px;
  font-family: "Roboto", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media (max-width: 896px) {
  .block_summary .inner .en {
    font-size: 14px;
  }
}
.block_summary .nami.pos01 {
  position: absolute;
  top: 40px;
  right: -10px;
  width: 200px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_summary .nami.pos01 {
    top: 10px;
    right: -10px;
    width: 140px;
  }
}
.block_summary .nami.pos02 {
  position: absolute;
  bottom: 40px;
  left: -10px;
  width: 200px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_summary .nami.pos02 {
    bottom: 10px;
    left: -10px;
    width: 140px;
  }
}
body.entry_page .block_summary {
  color: #000;
  height: 200px;
}
@media (max-width: 896px) {
  body.entry_page .block_summary .nami.pos01 {
    top: 10px;
    right: -10px;
    width: 100px;
  }
}
@media (max-width: 896px) {
  body.entry_page .block_summary .nami.pos02 {
    bottom: 10px;
    left: -10px;
    width: 100px;
  }
}
body.pageLoad.entry_page .block_summary {
  color: #000;
}

body.entry_page .block_summary .inner {
  padding: 0 80px;
  padding-top: 40px;
  text-align: center;
}
body.entry_page .block_summary .inner .title {
  font-size: 42px;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  body.entry_page .block_summary .inner .title {
    font-size: 24px;
  }
}
body.entry_page .block_summary .inner .en {
  font-size: 18px;
  font-family: "Roboto", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media (max-width: 896px) {
  body.entry_page .block_summary .inner .en {
    font-size: 14px;
  }
}

/*----------------------------------------------------
  block_entry
--------------------------------------------------- */
.block_entry {
  position: relative;
  width: 100%;
  padding: 10% 0;
  background: #FFF;
}
body.entry_page .block_entry {
  background: #FFF7F2;
  padding: 0% 0 10%;
}
body.entry_page .block_entry .entry {
  max-width: 980px;
  margin: 0 auto;
}

.block_entry .inner {
  padding: 0 80px;
  /*common*/
  /*common end*/
}
@media (max-width: 896px) {
  .block_entry .inner {
    padding: 0 20px;
  }
}
.block_entry .inner figure {
  margin: 0;
}
.block_entry .inner figure .img_wrap {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.block_entry .inner figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.1, 1.1);
}
.block_entry .inner figure .img_wrap span.lazyloaded {
  opacity: 1;
  transition: all 0.8s 0s ease;
  transform: scale(1, 1);
}
.block_entry .inner .copy {
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_entry .inner .copy {
    font-size: 18px;
  }
}
.block_entry .inner .copy small {
  font-size: 16px;
}
@media (max-width: 896px) {
  .block_entry .inner .copy small {
    font-size: 12px;
  }
}
.block_entry .inner .sub_title {
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_entry .inner .sub_title {
    font-size: 16px;
  }
}
.block_entry .inner .sub_title small {
  font-size: 14px;
}
@media (max-width: 896px) {
  .block_entry .inner .sub_title small {
    font-size: 12px;
  }
}
.block_entry .inner p {
  font-size: 16px;
}
@media (max-width: 896px) {
  .block_entry .inner p {
    font-size: 14px;
  }
}
.block_entry .inner .btn a {
  display: block;
  background: #af2534;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 20px 20px;
  border-radius: 100px;
  border: 1px #af2534 solid;
  transition: all 0.3s 0s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_entry .inner .btn a {
    padding: 10px;
    font-size: 14px;
  }
}
.block_entry .inner .btn a span {
  position: relative;
  z-index: 1;
}
.block_entry .inner .btn a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #FFF;
  transform-origin: 100% 50%;
  transition: all ease 0.5s;
  opacity: 0;
}
.block_entry .inner .btn a:hover {
  color: #af2534;
}
.block_entry .inner .btn a:hover:before {
  opacity: 1;
}
.block_entry .inner .box_summary {
  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: 10%;
  position: relative;
}
@media (max-width: 896px) {
  .block_entry .inner .box_summary {
    flex-direction: column;
  }
}
@media (max-width: 896px) {
  .block_entry .inner .box_summary {
    margin-bottom: 40px;
  }
}
.block_entry .inner .box_summary .nami.pos01 {
  position: absolute;
  top: -5vw;
  right: -100px;
  width: 200px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_entry .inner .box_summary .nami.pos01 {
    top: -12vw;
    right: -5px;
    width: 100px;
  }
}
.block_entry .inner .box_summary .nami.pos02 {
  position: absolute;
  bottom: -10vw;
  left: -5vw;
  width: 250px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_entry .inner .box_summary .nami.pos02 {
    bottom: -5vw;
    left: -10vw;
    right: auto;
    width: 100px;
  }
}
.block_entry .inner .box_summary .textarea {
  width: 60%;
}
@media (max-width: 896px) {
  .block_entry .inner .box_summary .textarea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.block_entry .inner .box_summary .imagearea {
  width: 35%;
}
.block_entry .inner .box_summary .imagearea figure {
  position: relative;
  width: calc(100% + 80px);
}
@media (max-width: 896px) {
  .block_entry .inner .box_summary .imagearea figure {
    width: calc(100% + 20px);
  }
}
.block_entry .inner .box_summary .imagearea figure .img_wrap {
  padding-top: 70%;
}
@media (max-width: 896px) {
  .block_entry .inner .box_summary .imagearea {
    width: 100%;
  }
}
.block_entry .inner .box_image_wide {
  position: relative;
  left: -80px;
  width: 100vw;
  margin-bottom: 10%;
}
@media (max-width: 896px) {
  .block_entry .inner .box_image_wide {
    left: -20px;
    margin-bottom: 40px;
  }
}
.block_entry .inner .box_profile {
  position: relative;
  margin-bottom: 10%;
  padding-top: 100px;
  margin-top: -100px;
}
@media (max-width: 896px) {
  .block_entry .inner .box_profile {
    margin-bottom: 40px;
  }
}
.block_entry .inner .box_profile .profile {
  margin-bottom: 5%;
  padding-left: 30%;
}
@media (max-width: 896px) {
  .block_entry .inner .box_profile .profile {
    padding-left: 10%;
    margin-bottom: 20px;
  }
}
.block_entry .inner .box_profile .profile .s_title {
  font-size: 16px;
  font-weight: 800;
}
@media (max-width: 896px) {
  .block_entry .inner .box_profile .profile .s_title {
    font-size: 14px;
    line-height: 1.5;
  }
}
.block_entry .inner .box_profile .profile .name {
  font-size: 32px;
  font-weight: 800;
}
@media (max-width: 896px) {
  .block_entry .inner .box_profile .profile .name {
    font-size: 24px;
    line-height: 1.5;
  }
}
.block_entry .inner .box_profile .profile .en {
  font-size: 14px;
  font-family: "Roboto", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #af2534;
  font-weight: 800;
}
@media (max-width: 896px) {
  .block_entry .inner .box_profile .profile .en {
    font-size: 12px;
    line-height: 1.5;
  }
}
.block_entry .inner .box_profile .textarea {
  padding-left: 30%;
}
@media (max-width: 896px) {
  .block_entry .inner .box_profile .textarea {
    padding-left: 10%;
  }
}
.block_entry .inner .box_profile .textarea p {
  margin-bottom: 20px;
}
.block_entry .inner .box_profile .textarea .s_title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_entry .inner .box_profile .textarea .s_title {
    font-size: 14px;
    line-height: 1.5;
  }
}
.block_entry .inner .box_profile .textarea dl {
  border: 1px #ccc solid;
  padding: 20px;
  margin-bottom: 20px;
}
.block_entry .inner .box_profile .textarea dl dt {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}
.block_entry .inner .box_profile .textarea dl dd {
  font-size: 14px;
}
.block_entry .inner .box_profile .nami.pos01 {
  position: absolute;
  top: 10vw;
  left: -100px;
  width: 250px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_entry .inner .box_profile .nami.pos01 {
    top: -15vw;
    left: -5vw;
    width: 100px;
  }
}
.block_entry .inner .box_image_left {
  position: relative;
  left: -80px;
  width: 100vw;
  margin-bottom: 10%;
}
@media (max-width: 896px) {
  .block_entry .inner .box_image_left {
    left: -20px;
    margin-bottom: 40px;
  }
}
.block_entry .inner .box_image_left figure {
  width: 55%;
}
@media (max-width: 896px) {
  .block_entry .inner .box_image_left figure {
    width: 70%;
  }
}
.block_entry .inner .box_image_left .nami.pos01 {
  position: absolute;
  top: 5vw;
  right: -20px;
  width: 250px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_entry .inner .box_image_left .nami.pos01 {
    top: -5vw;
    right: -10px;
    width: 150px;
  }
}
.block_entry .inner .box_text_middle {
  margin-bottom: 10%;
  position: relative;
  padding-top: 100px;
  margin-top: -100px;
}
@media (max-width: 896px) {
  .block_entry .inner .box_text_middle {
    margin-bottom: 40px;
  }
}
.block_entry .inner .box_text_middle .inner {
  padding: 0 5%;
}
.block_entry .inner .box_text_middle .inner figure {
  margin-bottom: 40px;
}
.block_entry .inner .box_text_middle .inner figure .img_wrap {
  padding-top: 40%;
}
.block_entry .inner .box_text_middle .inner figure .img_wrap span {
  background-position: 95%;
}
.block_entry .inner .box_text_middle .inner p {
  line-height: 1.8;
  margin-bottom: 30px;
}
@media (max-width: 896px) {
  .block_entry .inner .box_text_middle .inner p {
    line-height: 1.8;
    margin-bottom: 30px;
  }
}
.block_entry .inner .box_text_middle .inner ul.img_two {
  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_entry .inner .box_text_middle .inner ul.img_two {
    flex-direction: column; /* row row-reverse column */
    margin-bottom: 20px;
  }
}
.block_entry .inner .box_text_middle .inner ul.img_two li {
  width: 48%;
}
.block_entry .inner .box_text_middle .inner ul.img_two li figure {
  margin-bottom: 0px;
}
.block_entry .inner .box_text_middle .inner ul.img_two li figure .img_wrap {
  padding-top: 70%;
}
@media (max-width: 896px) {
  .block_entry .inner .box_text_middle .inner ul.img_two li {
    width: 100%;
    margin-bottom: 20px;
  }
  .block_entry .inner .box_text_middle .inner ul.img_two li:last-child {
    margin-bottom: 0;
  }
}
.block_entry .inner .box_text_middle .nami.pos01 {
  position: absolute;
  bottom: -10vw;
  left: -100px;
  width: 250px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_entry .inner .box_text_middle .nami.pos01 {
    top: -15vw;
    left: -5vw;
    width: 100px;
  }
}
.block_entry .inner .box_text_middle .nami.pos02 {
  position: absolute;
  bottom: -10vw;
  right: -100px;
  width: 250px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_entry .inner .box_text_middle .nami.pos02 {
    bottom: -10vw;
    right: -10px;
    width: 100px;
  }
}
.block_entry .inner .box_text_middle .nami.pos03 {
  position: absolute;
  top: 10vw;
  right: -100px;
  width: 250px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_entry .inner .box_text_middle .nami.pos03 {
    top: -5vw;
    right: -5vw;
    width: 100px;
  }
}
.block_entry .inner .box_text_middle .nami.pos04 {
  position: absolute;
  bottom: 40vw;
  right: 50px;
  width: 250px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_entry .inner .box_text_middle .nami.pos04 {
    bottom: 5vw;
    right: -5vw;
    width: 100px;
  }
}
.block_entry .inner .box_image_text {
  position: relative;
  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  */
}
@media (max-width: 896px) {
  .block_entry .inner .box_image_text {
    margin-bottom: 40px;
    flex-direction: column; /* row row-reverse column */
  }
}
.block_entry .inner .box_image_text .imagearea {
  width: 47%;
}
@media (max-width: 896px) {
  .block_entry .inner .box_image_text .imagearea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.block_entry .inner .box_image_text .textarea {
  width: 47%;
}
@media (max-width: 896px) {
  .block_entry .inner .box_image_text .textarea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.block_entry .inner .box_image_text .nami.pos01 {
  position: absolute;
  bottom: -10vw;
  right: -100px;
  width: 200px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_entry .inner .box_image_text .nami.pos01 {
    bottom: -12vw;
    right: -10vw;
    width: 100px;
  }
}
.block_entry .inner .entry {
  padding: 0 80px;
}
@media (max-width: 896px) {
  .block_entry .inner .entry {
    padding: 0 0%;
  }
}

/*----------------------------------------------------
  block_interview_summary
--------------------------------------------------- */
.block_interview_summary {
  position: relative;
  width: 100%;
  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_interview_summary {
    flex-direction: column-reverse; /* row row-reverse column */
    margin-top: -20px;
  }
}
.block_interview_summary .textarea {
  width: 60%;
  padding: 100px;
}
@media (max-width: 896px) {
  .block_interview_summary .textarea {
    width: 100%;
    padding: 20px;
  }
}
.block_interview_summary .textarea .c_title {
  font-size: 16px;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  margin-bottom: 5px;
}
@media (max-width: 896px) {
  .block_interview_summary .textarea .c_title {
    font-size: 14px;
  }
}
.block_interview_summary .textarea .copy {
  font-size: 32px;
  line-height: 1.5;
  font-family: "Zen Antique", "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 300;
  margin-bottom: 15px;
}
@media (max-width: 896px) {
  .block_interview_summary .textarea .copy {
    font-size: 16px;
  }
}
.block_interview_summary .textarea .meta {
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 896px) {
  .block_interview_summary .textarea .meta {
    font-size: 12px;
  }
}
.block_interview_summary figure {
  width: 40%;
}
@media (max-width: 896px) {
  .block_interview_summary figure {
    width: 100%;
  }
}
.block_interview_summary figure .img_wrap {
  padding-top: 100%;
  position: relative;
}
.block_interview_summary figure .img_wrap span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.block_interview_summary .nami.pos01 {
  position: absolute;
  bottom: 40px;
  left: -10px;
  width: 200px;
  z-index: 3;
}
@media (max-width: 896px) {
  .block_interview_summary .nami.pos01 {
    top: 90vw;
    bottom: auto;
    left: auto;
    right: -10px;
    width: 140px;
  }
}

/*----------------------------------------------------
.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: #000;
  background: #af2534;
  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: #000;
  color: #af2534;
}
.block_pager .page-numbers.dots {
  border: none;
  background: none;
  color: #000;
}
.block_pager .page-numbers:hover {
  background: #000;
  color: #af2534;
}
.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  */
  border-radius: 50px;
  background: #000;
  transition: all 0.5s 0s ease;
  text-indent: -9999px;
  background: #af2534 url(../img/common/arrow_prev_w.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: #af2534 url(../img/common/arrow_prev_w.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.prev:hover,
.block_pager .prev a:hover {
  background: #000 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: #af2534 url(../img/common/arrow_prev.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;
  transition: all 0.5s 0s ease;
  text-indent: -9999px;
  background: #af2534 url(../img/common/arrow_next_w.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: #af2534 url(../img/common/arrow_next_w.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.next:hover,
.block_pager .next a:hover {
  background: #000 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.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: #FFF;
  padding: 0 40px;
  width: auto;
  height: 60px;
  line-height: 60px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-style: normal;
  transition: all 0.5s 0s ease;
  background: #af2534;
}
.block_pager a.list:hover {
  background: #FFF;
  color: #af2534;
}

/*----------------------------------------------------
 block_contact
--------------------------------------------------- */
.block_contact {
  position: relative;
}
.block_contact::before {
  content: "";
  position: absolute;
  top: -5vw;
  left: -6vw;
  width: 25vw;
  height: 25vw;
  background: var(--ramdom-color01);
  border-radius: 25vw;
}
.block_contact::after {
  content: "";
  position: absolute;
  top: 20vw;
  right: 2vw;
  width: 14vw;
  height: 14vw;
  background: var(--ramdom-color02);
  border-radius: 14vw;
}
.block_contact .inner {
  padding: 0 12vw;
}
@media (max-width: 896px) {
  .block_contact .inner {
    padding: 0 20px;
  }
}
.block_contact .inner p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_contact .inner p {
    font-size: 14px;
  }
}
.block_contact .inner .form_list {
  margin: 0 auto;
  position: relative;
  max-width: 1000px;
  border-radius: 30px;
  background: #FFF;
  padding: 40px;
}
@media (max-width: 896px) {
  .block_contact .inner .form_list {
    padding: 20px;
  }
}
.block_contact .inner .form_list .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  */
  padding-bottom: 30px;
}
@media (max-width: 896px) {
  .block_contact .inner .form_list .column {
    flex-direction: column; /* row row-reverse column */
    padding-bottom: 10px;
  }
}
.block_contact .inner .form_list .column .column_title {
  line-height: 1.5;
  font-size: 16px;
  padding-bottom: 10px;
  padding-top: 20px;
  font-weight: 700;
  width: 200px;
  position: relative;
}
@media (max-width: 896px) {
  .block_contact .inner .form_list .column .column_title {
    width: 100%;
    margin-bottom: 10px;
  }
}
.block_contact .inner .form_list .column .column_title .must {
  position: absolute;
  top: 18px;
  right: 20px;
  display: inline-block;
  background: #dc3232;
  color: #FFF;
  font-size: 12px;
  padding: 5px 10px;
  margin-left: 10px;
  border-radius: 30px;
  font-weight: 700;
}
@media (max-width: 896px) {
  .block_contact .inner .form_list .column .column_title .must {
    right: 0;
  }
}
.block_contact .inner .form_list .column .column_form {
  width: calc(100% - 200px);
}
@media (max-width: 896px) {
  .block_contact .inner .form_list .column .column_form {
    width: 100%;
  }
}
.block_contact .inner .form_list .column .column_form p {
  font-size: 12px;
  display: block;
  padding-top: 10px;
}
.block_contact .inner .form_list .column .column_form input[type=text],
.block_contact .inner .form_list .column .column_form input[type=email],
.block_contact .inner .form_list .column .column_form input[type=tel],
.block_contact .inner .form_list .column .column_form textarea {
  border: none;
  background: #FFF;
  color: var(--ramdom-color01);
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 14px 15px;
  width: 100%;
  box-shadow: none;
  margin-bottom: 5px;
  font-family: "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  color: #000;
}
.block_contact .inner .form_list .column .column_form input[type=text].min,
.block_contact .inner .form_list .column .column_form input[type=email].min,
.block_contact .inner .form_list .column .column_form input[type=tel].min,
.block_contact .inner .form_list .column .column_form textarea.min {
  width: 40%;
}
.block_contact .inner .form_list .column .column_form .mwform-radio-field {
  font-family: "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 16px;
  padding-top: 14px;
  display: inline-block;
}
.block_contact .inner .form_list .column .column_form .error {
  color: #dc3232;
  font-size: 14px;
}
.block_contact .inner .form_list .column .column_form input[type=text]::-moz-placeholder, .block_contact .inner .form_list .column .column_form input[type=email]::-moz-placeholder, .block_contact .inner .form_list .column .column_form input[type=tel]::-moz-placeholder, .block_contact .inner .form_list .column .column_form textarea::-moz-placeholder {
  color: #ccc;
}
.block_contact .inner .form_list .column .column_form input[type=text]::placeholder,
.block_contact .inner .form_list .column .column_form input[type=email]::placeholder,
.block_contact .inner .form_list .column .column_form input[type=tel]::placeholder,
.block_contact .inner .form_list .column .column_form textarea::placeholder {
  color: #ccc;
}
.block_contact .inner .btn_area {
  padding-top: 40px;
}
.block_contact .inner .btn_area input[type=submit],
.block_contact .inner .btn_area input[type=button] {
  border-radius: 0px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: inline-block;
  width: 100%;
  border: none;
  text-align: center;
  line-height: 80px;
  border-radius: 80px;
  font-weight: 700;
  font-family: "IBM Plex Sans", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  cursor: pointer;
  background: #af2534;
  color: #FFF;
  transition: all 0.5s 0s ease;
}
.block_contact .inner .btn_area input[type=submit]:hover,
.block_contact .inner .btn_area input[type=button]:hover {
  background: #FFF;
  color: #af2534;
}
.block_contact .inner .comp {
  text-align: center;
  font-size: 16px;
}
.block_contact .inner .ui-widget {
  font-family: "Montserrat", "IBM Plex Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif !important;
  font-size: 0.8em !important;
}
.block_contact .inner .grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
  margin-right: 10px !important;
}/*# sourceMappingURL=common.css.map */