@charset "UTF-8";
/* 基本設定 */

/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 GLOBAL 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
/*============================================
	― PC表示
=============================================*/
.pc-disblock {
  display: block;
}

.pc-disline {
  display: inline;
}

.pc-dislineblock {
  display: inline-block;
}

.pc-none {
  display: none;
}

.sp-disblock {
  display: none;
}

.sp-disline {
  display: none;
}

.sp-dislineblock {
  display: none;
}

/*============================================
      ― スマホ表示切り替え
  =============================================*/
@media screen and (max-width: 769px) {
  .pc-disblock {
    display: none;
  }
  .pc-disline {
    display: none;
  }
  .pc-dislineblock {
    display: none;
  }
  .sp-disblock {
    display: block;
  }
  .sp-disline {
    display: inline;
  }
  .sp-dislineblock {
    display: inline-block;
  }
  .sp-none {
    display: none;
  }
}
body {
  font-family: 'Shippori Mincho';
  letter-spacing: 1px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close */
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* modules */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.main-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

@media screen and (width <= 767px) {
  .sp_none {
    display: none;
  }
}
/* ===================================================================================================
〇 LOADING
=================================================================================================== */
.loading {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 10000;
  /* background */
}
.loading .bg {
  position: absolute;
  inset: 0;
  height: 200vh;
  background: linear-gradient(
    0deg,
    rgb(0, 0, 0) 0%,
    rgb(17, 17, 17) 50%,
    rgb(64, 64, 64) 100%
  );
  z-index: 1;
}
.loading {
  /* center content */
}
.loading .container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .container .text {
  color: #fff;
  font-family: Cinzel, serif;
  text-align: center;
  /* main title */
}
.loading .container .text .main {
  visibility: hidden;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 24px;
}
.loading .container .text .main .line {
  color: transparent;
  -webkit-text-stroke: 1px rgb(220, 220, 220);
}
.loading .container .text {
  /* tagline */
}
.loading .container .text .tagline {
  margin-top: 10px;
  visibility: hidden;
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 16px;
}

@media screen and (width >= 768px) {
  .loading .text .main {
    font-size: 24px;
    letter-spacing: 6px;
  }
  .loading .text .tagline {
    font-size: 16px;
    letter-spacing: 4px;
  }
}
/* ===================================================================================================
767px 以下（SP）
=================================================================================================== */
@media screen and (width <= 767px) {
  .loading .text .main {
    font-size: 5vw;
    letter-spacing: 5px;
  }
  .loading .text .tagline {
    font-size: 4vw;
  }
}
/* ===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 first 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
==================================================================================================== */
.first .first-title {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: upright;
  right: 24px;
  top: 24px;
}
.first .first-title h1 {
  font-size: 29px;
  background-color: #fff;
  margin-left: 8px;
  height: fit-content;
  padding: 8px 0;
}
.first .first-title p {
  margin-top: 1rem;
  background-color: #fff;
}
.first .first-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-6px);
  animation: fadeUp 0.5s ease forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.first .top-image-bg {
  background-image: url('../images/top_pc.png');
  height: 100vh;
  max-height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.first .top-image-bg .top-image-box {
  width: 100%;
  height: 100%;
  position: relative;
}
.first .top-image-bg .top-image-box .image-box-left {
  padding-top: 30px;
}
.first .top-image-bg .top-image-box .image-box-left img {
  max-width: 450px;
  width: 40vw;
  animation: 6s topdown-left infinite;
}
@keyframes topdown-left {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
.first .top-image-bg .top-image-box .fadeout {
  opacity: 0;
}
.first .top-image-bg .top-image-box .top-image-chara {
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  position: absolute;
  bottom: 17%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.first .top-image-bg .top-image-box .top-image-chara img {
  width: 240px;
  transition: opacity 0.35s ease;
}
.first .top-image-bg .top-image-box .top-image-chara .speech {
  position: absolute;
  top: 0;
  left: 52%;
  transform: translateY(10px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 20;
}
.first .top-image-bg .top-image-box .image-box-right {
  position: absolute;
  right: 0;
  bottom: 0;
}
.first .top-image-bg .top-image-box .image-box-right img {
  max-width: 300px;
  width: 25vw;
  animation: 12s topdown-right infinite;
}
@keyframes topdown-right {
  0%,
  100% {
    transform: translateY(30px);
  }
  50% {
    transform: translateY(0);
  }
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start---------------------------------------------------------------------------- */
@media screen and (width >= 1024px) and (width <= 1280px) {
  .first .top-image-bg .top-image-box .image-box-left img {
    max-width: 560px;
    width: 35vw;
  }
  .first .top-image-bg .top-image-box .image-box-right {
    padding-top: 0;
    margin-top: -25px;
  }
  .first .top-image-bg .top-image-box .image-box-right img {
    max-width: 500px;
    width: 22vw;
  }
}
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start---------------------------------------------------------------------------- */
@media screen and (width <= 767px) {
  .first .first-title h1 {
    font-size: 1.5rem;
  }
  .first .top-image-bg {
    height: 100vh;
  }
  .first .top-image-bg .top-image-box {
    height: 100%;
  }
  .first .top-image-bg .top-image-box .top-image-chara {
    bottom: 25%;
  }
  .first .top-image-bg .top-image-box .top-image-chara img {
    width: 170px;
  }
  .first .top-image-bg .top-image-box .top-image-chara .speech {
    display: none;
  }
  .first .top-image-bg .top-image-box .image-box-left {
    padding-top: 4rem;
  }
  .first .top-image-bg .top-image-box .image-box-left img {
    height: 100%;
    width: 65%;
    max-width: 350px;
  }
  .first .top-image-bg .top-image-box .image-box-right img {
    height: 100%;
    width: 100%;
    max-width: 184px;
  }
}
/* 767px responsive-closed */
/* end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* ===================================================================================================
〇 HEADER
=================================================================================================== */
.header {
  overflow: hidden;
}
.header .container {
  max-width: 1920px;
  margin: 0 auto;
  /* --------------------------------------------------
  navigation
  -------------------------------------------------- */
}
.header .container nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 2% 0;
}
.header .container nav .logo {
  width: 200px;
  line-height: 0;
}
.header .container nav ul {
  display: flex;
  align-items: center;
}
.header .container nav ul li {
  margin-right: 30px;
}
.header .container nav ul li a {
  font-family: Cinzel, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 2px;
  color: #000000;
}
.header .container nav ul li:last-child {
  margin-right: 0;
}
.header .container nav {
  /* SP / Tablet 用タイトル */
}
.header .container nav h1 {
  display: none;
}
.header .container nav h1 .catch {
  font-family: Cinzel, serif;
}
.header .container {
  /* --------------------------------------------------
  first view
  -------------------------------------------------- */
}
.header .container .first-view {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  margin-top: 20px;
}
.header .container .first-view .top-images {
  position: relative;
  width: 100%;
  /* user icon */
}
.header .container .first-view .top-images .top-image-user {
  position: absolute;
  top: 52.5%;
  left: 46.5%;
  z-index: 3;
}
.header .container .first-view .top-images .top-image-user img {
  width: 4.5vw;
  max-width: 100px;
}
.header .container .first-view .top-images {
  /* floating images */
}
.header .container .first-view .top-images .top-image-box {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.header .container .first-view .top-images .top-image-box .image-box--left {
  padding-top: 30px;
}
.header .container .first-view .top-images .top-image-box .image-box--left img {
  width: 45vw;
  max-width: 800px;
  animation: header-float-left 6s ease-in-out infinite;
}
.header .container .first-view .top-images .top-image-box .image-box--right {
  padding-top: 10px;
  display: flex;
  justify-content: flex-end;
}
.header
  .container
  .first-view
  .top-images
  .top-image-box
  .image-box--right
  img {
  width: 30vw;
  max-width: 500px;
  animation: header-float-right 12s ease-in-out infinite;
}

/* ===================================================================================================
animations
=================================================================================================== */
@keyframes header-float-left {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
@keyframes header-float-right {
  0%,
  100% {
    transform: translateY(30px);
  }
  50% {
    transform: translateY(0);
  }
}
/* ===================================================================================================
1281px – 1680px
=================================================================================================== */
@media screen and (width >= 1281px) and (width <= 1680px) {
  .header .first-view .top-images .top-image-box .image-box--left img {
    width: 35vw;
    max-width: 560px;
  }
  .header .first-view .top-images .top-image-box .image-box--right {
    margin-top: -25px;
  }
  .header .first-view .top-images .top-image-box .image-box--right img {
    width: 22vw;
  }
}
/* ===================================================================================================
1024px – 1280px
=================================================================================================== */
@media screen and (width >= 1024px) and (width <= 1280px) {
  .header nav .logo {
    width: 170px;
  }
  .header nav ul li a {
    font-size: 19px;
  }
}
/* ===================================================================================================
768px – 1023px
=================================================================================================== */
@media screen and (width >= 768px) and (width <= 1023px) {
  .header nav ul {
    display: none;
  }
  .header nav h1 {
    display: block;
  }
  .header nav h1 .catch {
    font-size: 17px;
  }
}
/* ===================================================================================================
767px 以下（SP）
=================================================================================================== */
@media screen and (width <= 767px) {
  .header nav {
    padding: 20px 3% 0;
  }
  .header nav .logo {
    width: 35vw;
  }
  .header nav ul {
    display: none;
  }
  .header nav h1 {
    display: block;
  }
  .header nav h1 .catch {
    font-size: 4vw;
    line-height: 1.3;
  }
  .header .first-view {
    display: block;
  }
}
.introduction {
  margin-bottom: 10rem;
}
.introduction .container .title {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  text-align: center;
}
.introduction .container .title .catch {
  font-family: Cinzel;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 5px;
  text-align: center;
  font-size: 80px;
}
.introduction .container .title .catch_subtitle {
  margin: 5px 0;
  font-weight: 500;
  letter-spacing: 4px;
  text-align: center;
  font-size: 28px;
}
.introduction .container .introduction_blocks {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 4rem auto 0;
}
.introduction .container .introduction_blocks .introduction_block_right {
  width: 45%;
}
.introduction .container .introduction_blocks h3 {
  font-size: 20px;
}
.introduction .container .introduction_blocks p {
  line-height: 32px;
  margin-top: 1rem;
  font-size: 16px;
}
.introduction .container .introduction_block_left {
  position: relative;
}
.introduction .container .introduction_block_left::before {
  content: '';
  position: absolute;
  top: -171px;
  left: -120px;
  width: 600px;
  height: 600px;
  background: url('../images/feature_about.png') center/contain no-repeat;
  pointer-events: none;
  z-index: -1;
}
.introduction .container .introduction_block_left img {
  object-fit: cover;
}

@media screen and (width >= 768px) and (width <= 1023px) {
  .introduction .container .introduction_blocks {
    flex-wrap: wrap;
    margin: 0 auto;
  }
  .introduction .container .introduction_blocks .introduction_block_right {
    width: 60%;
  }
  .introduction .container .introduction_blocks h3 {
    margin-top: 3rem;
    font-size: 20px;
    text-align: center;
  }
  .introduction .container .introduction_blocks p {
    line-height: 32px;
    margin-top: 2rem;
    font-size: 16px;
  }
}
@media screen and (width <= 767px) {
  .introduction {
    margin-bottom: 6rem;
  }
  .introduction .container .title .catch {
    font-size: 2rem;
  }
  .introduction .container .title .catch_subtitle {
    font-size: 1.5rem;
  }
  .introduction .container .introduction_blocks {
    flex-wrap: wrap;
    margin: 0 auto;
  }
  .introduction .container .introduction_blocks .introduction_block_right {
    width: 85%;
  }
  .introduction .container .introduction_blocks h3 {
    margin-top: 3rem;
    font-size: 20px;
    text-align: center;
  }
  .introduction .container .introduction_blocks p {
    line-height: initial;
    margin-top: 2rem;
    font-size: 16px;
  }
}
/* ===================================================================================================
〇 WHAT
=================================================================================================== */
.what {
  margin: 0 24px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: url('../images/asakusabg.png') center/cover no-repeat;
  /* canvas overlay */
}
.what canvas {
  position: absolute;
  inset: 0;
  z-index: 10;
  margin-top: -10rem;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.what {
  /* background title (decorative) */
}
.what .catch {
  position: relative;
  z-index: 2;
  margin-top: 5rem;
  text-align: center;
  font-family: Cinzel;
  font-size: 80px;
  line-height: 1.25;
  letter-spacing: 5px;
  font-weight: initial;
  color: #fff;
}
.what .catch_subtitle {
  font-weight: 500;
  letter-spacing: 4px;
  text-align: center;
  font-size: 28px;
  margin: 0 auto;
  display: block;
  color: #fff;
}
.what {
  /* main content */
}
.what .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin: 5rem auto;
  /* marks */
}
.what .container .mark-wrapper {
  width: 750px;
}
.what .container .mark-wrapper ul {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.what .container .mark-wrapper ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  margin-right: 30px;
  border-radius: 50%;
  background-color: rgba(0, 51, 69, 0.5);
}
.what .container .mark-wrapper ul li::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgb(214, 214, 214);
  border-top-color: rgb(139, 139, 139);
  border-radius: 50%;
  animation: what-mark-spin 3s ease-in-out infinite;
}
.what .container .mark-wrapper ul li p {
  color: #fff;
  font-size: 22px;
  text-align: center;
}
.what .container .mark-wrapper ul li:last-child {
  margin-right: 0;
}
.what .container {
  /* text */
}
.what .container .text {
  width: 40%;
  padding-left: 80px;
  color: #fff;
}
.what .container .text .what_sentence {
  margin-top: 30px;
}
.what .container .text .what_sentence p {
  padding: 25px 0;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1px;
  text-align: left;
}

/* animation */
@keyframes what-mark-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ===================================================================================================
1024px – 1280px
=================================================================================================== */
@media screen and (width >= 1024px) and (width <= 1280px) {
  .what {
    background-image: url('../images/asakusabg_sp.png');
  }
  .what .catch {
    font-size: 70px;
  }
  .what .container {
    max-width: 100%;
    margin-top: 20px;
  }
  .what .container .mark-wrapper {
    width: 600px;
  }
  .what .container .mark-wrapper ul li {
    width: 180px;
    height: 180px;
    margin-right: 20px;
  }
  .what .container .mark-wrapper ul li p {
    font-size: 20px;
  }
  .what .container .text {
    width: calc(100% - 520px);
    padding: 0 25px;
  }
  .what .container .text .catch {
    font-size: 40px;
  }
  .what .container .text .what_sentence p {
    font-size: 17px;
  }
}
/* ===================================================================================================
768px – 1023px
=================================================================================================== */
@media screen and (width >= 768px) and (width <= 1023px) {
  .what {
    background-image: url('../images/asakusabg_sp.png');
  }
  .what .container {
    display: block;
    margin-top: 20px;
  }
  .what .container .mark-wrapper {
    width: 600px;
    margin: 0 auto;
  }
  .what .container .mark-wrapper ul li {
    width: 180px;
    height: 180px;
    margin-right: 20px;
  }
  .what .container .mark-wrapper ul li p {
    font-size: 20px;
  }
  .what .container .text {
    width: 100%;
    padding: 30px 4% 0;
    text-align: center;
  }
  .what .container .text .catch {
    font-size: 40px;
  }
  .what .container .text .what_sentence p {
    padding-top: 25px;
    font-size: 17px;
  }
}
/* ===================================================================================================
767px 以下（SP）
=================================================================================================== */
@media screen and (width <= 767px) {
  .what {
    margin: 0 16px;
    padding: 20px 0;
    background-image: url('../images/asakusabg_sp.png');
  }
  .what .catch {
    font-size: 8vw;
    letter-spacing: 3px;
  }
  .what .catch_subtitle {
    font-size: 24px;
  }
  .what .container {
    display: block;
  }
  .what .container .mark-wrapper {
    width: 100%;
  }
  .what .container .mark-wrapper ul li {
    width: 25vw;
    height: 25vw;
    margin-right: 2vw;
  }
  .what .container .mark-wrapper ul li p {
    font-size: 2.5vw;
  }
  .what .container .text {
    width: 100%;
    padding: 30px 5% 0;
    text-align: center;
  }
  .what .container .text .catch {
    font-size: 7.25vw;
  }
  .what .container .text .what_sentence p {
    padding: 20px 0;
    font-size: 3vw;
  }
}
/* ===================================================================================================
〇 WORKS
=================================================================================================== */
.works {
  position: relative;
  overflow: hidden;
  color: #343434;
  padding: 104px 0;
  /* background */
}
.works .works_bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f4f8fb 20%, #fff 50%, #f9f1df 150%);
}
.works .works_bg img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.works {
  /* title */
}
.works .title {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  text-align: center;
}
.works .title .catch {
  font-family: Cinzel, serif;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 5px;
  font-size: 80px;
}
.works .title .catch_subtitle {
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: 4px;
  font-size: 28px;
}
.works {
  /* content */
}
.works .container {
  position: relative;
  z-index: 2;
  width: 94%;
  max-width: 1480px;
  margin: 40px auto 0;
  padding-bottom: 70px;
}
.works .container .splide .splide__track .splide__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 400px);
  justify-content: center;
  gap: 32px;
}
.works .container .splide .splide__track .splide__list .splide__slide {
  background: #fff;
  color: #000;
  box-shadow: 0 7px 29px rgba(153, 159, 163, 0.2);
  cursor: pointer;
  border-radius: 24px;
}
.works .container .splide .splide__track .splide__list .splide__slide .thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}
.works
  .container
  .splide
  .splide__track
  .splide__list
  .splide__slide
  .thumb
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.works .container .splide .splide__track .splide__list .splide__slide .text {
  padding: 30px 45px;
}
.works
  .container
  .splide
  .splide__track
  .splide__list
  .splide__slide
  .text
  .category
  p {
  display: inline-block;
  font-family: Cinzel, serif;
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 25px;
  background: linear-gradient(90deg, #cbcbb6 0%, #d6d2b6 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.works
  .container
  .splide
  .splide__track
  .splide__list
  .splide__slide
  .text
  .catch {
  font-size: 22px;
}
.works
  .container
  .splide
  .splide__track
  .splide__list
  .splide__slide
  .text
  .catch_subtitle {
  font-size: 20px;
}
.works .container .splide .splide__track .splide__progress__bar {
  height: 3px;
  background: #ccc;
}

/* ===================================================================================================
1024px – 1280px
=================================================================================================== */
@media screen and (width >= 1024px) and (width <= 1280px) {
  .works .title .catch {
    font-size: 72px;
  }
  .works .title .catch_subtitle {
    font-size: 26px;
  }
  .works .container {
    width: 96%;
  }
  .works .container .text {
    padding: 30px;
  }
  .works .container .text .category p {
    font-size: 24px;
  }
  .works .container .text .catch {
    font-size: 21px;
  }
  .works .container .text .catch_subtitle {
    font-size: 19px;
  }
}
/* ===================================================================================================
768px – 1023px
=================================================================================================== */
@media screen and (width >= 768px) and (width <= 1023px) {
  .works .title .catch {
    font-size: 64px;
  }
  .works .title .catch_subtitle {
    font-size: 24px;
  }
  .works .container {
    width: 96%;
  }
  .works .container .text {
    padding: 30px 20px;
  }
  .works .container .text .category p {
    font-size: 22px;
  }
  .works .container .text .catch {
    font-size: 19px;
  }
  .works .container .text .catch_subtitle {
    font-size: 17px;
  }
}
/* ===================================================================================================
767px 以下（SP）
=================================================================================================== */
@media screen and (width <= 767px) {
  .works .title {
    padding: 50px 0;
  }
  .works .title .catch {
    font-size: 10vw;
    letter-spacing: 2px;
  }
  .works .container .splide .splide__track .splide__list {
    grid-template-columns: repeat(auto-fit, 380px);
  }
  .works .title .catch_subtitle {
    font-size: 6vw;
  }
  .works .container {
    margin-top: 5px 16px;
    padding-bottom: 55px;
  }
  .works .container .text {
    padding: 25px;
  }
  .works .container .text .category p {
    font-size: 5vw;
  }
  .works .container .text .catch {
    font-size: 4.5vw;
  }
  .works .container .text .catch_subtitle {
    font-size: 3.5vw;
  }
}
/* ===================================================================================================
〇 FEATURE
=================================================================================================== */
.feature {
  overflow: hidden;
  padding-top: 100px;
}
.feature .container {
  /* --------------------------------------------------
  title
  -------------------------------------------------- */
}
.feature .container .title {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1920px;
  height: 650px;
  margin: 0 auto;
}
.feature .container .title .text {
  position: relative;
  z-index: 2;
  padding-left: 6%;
}
.feature .container .title .text .catch {
  font-family: Cinzel, serif;
  font-weight: 500;
  letter-spacing: 10px;
  font-size: 90px;
}
.feature .container .title .text .catch_subtitle {
  margin-top: 60px;
  font-weight: 600;
  line-height: 1.8;
  font-size: 24px;
}
.feature .container .title .thumb {
  position: absolute;
  inset: 0 0 0 auto;
  width: 60%;
  height: 100%;
  z-index: 1;
}
.feature .container .title .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature .container {
  /* --------------------------------------------------
  feature boxes
  -------------------------------------------------- */
}
.feature .container .box-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 6% 0;
}
.feature .container .box-wrapper .box {
  margin-top: 60px;
  /* top */
}
.feature .container .box-wrapper .box .top {
  display: flex;
  align-items: center;
  position: relative;
}
.feature .container .box-wrapper .box .top .thumb {
  position: relative;
  width: 600px;
  aspect-ratio: 1/1;
  z-index: 3;
}
.feature .container .box-wrapper .box .top .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature .container .box-wrapper .box .top .thumb .number {
  position: absolute;
  right: 10px;
  top: -40px;
}
.feature .container .box-wrapper .box .top .thumb .number p {
  font-family: Cinzel, serif;
  font-weight: 600;
  font-size: 100px;
  letter-spacing: 4px;
  opacity: 0.7;
  background: linear-gradient(90deg, #cbcbb6 0%, #d6d2b6 100%);
  background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature .container .box-wrapper .box .top .text {
  position: relative;
  padding-left: 70px;
}
.feature .container .box-wrapper .box .top .text .en p {
  font-family: Cinzel, serif;
  font-weight: 500;
  letter-spacing: 14px;
  font-size: 85px;
  line-height: 1.1;
}
.feature .container .box-wrapper .box .top .text .catch {
  margin-top: 30px;
  font-size: 30px;
  line-height: 1.8;
  letter-spacing: 3px;
}
.feature .container .box-wrapper .box .top .text ul {
  margin-top: 30px;
}
.feature .container .box-wrapper .box .top .text ul li {
  background: url('../images/gems.svg') no-repeat 0 center/20px;
  padding-left: 30px;
  font-size: 20px;
}
.feature .container .box-wrapper .box .top .text .geometry {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  opacity: 0.4;
  z-index: 1;
}
.feature .container .box-wrapper .box .top .text .geometry img {
  animation: feature-float 6s ease-in-out infinite;
}
.feature .container .box-wrapper .box {
  /* bottom */
}
.feature .container .box-wrapper .box .bottom {
  margin-top: 30px;
}
.feature .container .box-wrapper .box .bottom .sentence p {
  font-size: 18px;
  line-height: 2;
  padding: 10px 0;
}
.feature .container .box-wrapper .box {
  /* reverse layout */
}
.feature .container .box-wrapper .box:nth-child(even) .top {
  flex-direction: row-reverse;
}
.feature .container .box-wrapper .box:nth-child(even) .top .text {
  padding: 0 70px 0 0;
}
.feature .container .box-wrapper .box:nth-child(even) .top .text .geometry {
  right: 70px;
}

/* ===================================================================================================
animations
=================================================================================================== */
@keyframes feature-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
}
/* ===================================================================================================
Tablet (1023px 以下)
=================================================================================================== */
@media screen and (width <= 1023px) {
  .feature .title {
    height: 600px;
  }
  .feature .title .text .catch {
    font-size: 72px;
    letter-spacing: 10px;
  }
  .feature .title .text .catch_subtitle {
    font-size: 23px;
  }
  .feature .box-wrapper {
    padding: 60px 0 0;
  }
  .feature .box-wrapper .box .top {
    display: block;
  }
  .feature .box-wrapper .box .top .thumb {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .feature .box-wrapper .box .top .text {
    padding: 30px 4% 0;
  }
  .feature .box-wrapper .box .top .text .en p {
    font-size: 72px;
  }
}
/* ===================================================================================================
SP (767px 以下)
=================================================================================================== */
@media screen and (width <= 767px) {
  .feature .title {
    height: 500px;
  }
  .feature .title .text {
    padding-left: 5%;
  }
  .feature .title .text .catch {
    font-size: 11vw;
    letter-spacing: 4px;
  }
  .feature .title .text .catch_subtitle {
    font-size: 5vw;
  }
  .feature .title .thumb {
    width: 80%;
  }
  .feature .box-wrapper .box .top .thumb {
    height: 400px;
  }
  .feature .box-wrapper .box .top .thumb .number p {
    font-size: 18vw;
    top: -5vw;
  }
  .feature .box-wrapper .box .top .text {
    padding: 30px 4% 0;
  }
  .feature .box-wrapper .box .top .text .en p {
    font-size: 9vw;
  }
  .feature .box-wrapper .box .top .text .catch {
    font-size: 6.5vw;
    letter-spacing: 2px;
  }
  .feature .box-wrapper .box .top .text ul li {
    font-size: 4.5vw;
    background-size: 3.5vw;
    padding-left: 4.25vw;
  }
  .feature .box-wrapper .box .top .text .geometry {
    width: 40vw;
  }
  .feature .box-wrapper .box .bottom .sentence p {
    font-size: 4vw;
  }
}
/* ===================================================================================================
〇 MERIT
=================================================================================================== */
.merit {
  overflow: hidden;
  padding: 100px 0;
}
.merit .container {
  /* title */
}
.merit .container .title {
  text-align: center;
}
.merit .container .title .catch {
  font-family: Cinzel, serif;
  font-weight: 500;
  letter-spacing: 10px;
  font-size: 90px;
}
.merit .container .title .catch_subtitle {
  margin-top: 10px;
  font-weight: 600;
  line-height: 1.8;
  font-size: 24px;
}
.merit .container {
  /* boxes */
}
.merit .container .box-wrapper {
  padding-top: 30px;
}
.merit .container .box-wrapper .box {
  margin-top: 70px;
  /* image */
}
.merit .container .box-wrapper .box .thumb-wrapper {
  display: flex;
}
.merit .container .box-wrapper .box .thumb-wrapper .thumb {
  width: 50%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.merit .container .box-wrapper .box .thumb-wrapper .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.merit .container .box-wrapper .box {
  /* text */
}
.merit .container .box-wrapper .box .text {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  /* background text */
}
.merit .container .box-wrapper .box .text .back {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.merit .container .box-wrapper .box .text .back p {
  font-family: Cinzel, serif;
  font-weight: 500;
  font-size: 130px;
  letter-spacing: 25px;
  line-height: 1;
  color: #bcbcbc;
  opacity: 0.4;
}
.merit .container .box-wrapper .box .text .inset {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 2% 0;
}
.merit .container .box-wrapper .box .text .inset .semi-title {
  display: flex;
  align-items: center;
}
.merit .container .box-wrapper .box .text .inset .semi-title .number {
  font-family: Cinzel, serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  position: relative;
  top: 3px;
}
.merit .container .box-wrapper .box .text .inset .semi-title .catch {
  padding-left: 10px;
  font-size: 45px;
  letter-spacing: 5px;
  line-height: 1.1;
}
.merit .container .box-wrapper .box .text .inset .sentence {
  margin: 60px 0 0 15%;
}
.merit .container .box-wrapper .box .text .inset .sentence p {
  padding: 10px 0;
  font-size: 18px;
  line-height: 2;
}

/* ===================================================================================================
1024px – 1280px
=================================================================================================== */
@media screen and (width >= 1024px) and (width <= 1280px) {
  .merit .container .title .catch {
    font-size: 80px;
  }
  .merit .container .box .thumb {
    aspect-ratio: 16/10;
  }
  .merit .container .box .text .back p {
    font-size: 120px;
  }
  .merit .container .box .text .inset {
    padding: 100px 4% 0;
  }
  .merit .container .box .text .inset .semi-title .catch {
    font-size: 42px;
  }
}
/* ===================================================================================================
768px – 1023px
=================================================================================================== */
@media screen and (width >= 768px) and (width <= 1023px) {
  .merit .container .title .catch {
    font-size: 77px;
    letter-spacing: 6px;
  }
  .merit .container .box .text .back p {
    font-size: 100px;
    letter-spacing: 20px;
  }
  .merit .container .box .text .inset {
    padding: 100px 4% 0;
  }
  .merit .container .box .text .inset .semi-title .number {
    font-size: 21px;
  }
  .merit .container .box .text .inset .semi-title .catch {
    font-size: 40px;
  }
}
/* ===================================================================================================
767px 以下（SP）
=================================================================================================== */
@media screen and (width <= 767px) {
  .merit {
    padding: 50px 0;
  }
  .merit .container .title .catch {
    font-size: 9.25vw;
    letter-spacing: 4px;
  }
  .merit .container .title .catch_subtitle {
    font-size: 6vw;
  }
  .merit .container .box-wrapper {
    padding-top: 10px;
  }
  .merit .container .box-wrapper .box {
    margin-top: 50px;
  }
  .merit .container .box-wrapper .box .thumb-wrapper {
    display: block;
  }
  .merit .container .box-wrapper .box .thumb-wrapper .thumb {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .merit .container .box-wrapper .box .text .back p {
    font-size: 14vw;
    letter-spacing: 2vw;
  }
  .merit .container .box-wrapper .box .text .inset {
    padding: 15vw 5% 0;
  }
  .merit .container .box-wrapper .box .text .inset .semi-title {
    display: block;
  }
  .merit .container .box-wrapper .box .text .inset .semi-title .number {
    font-size: 6vw;
  }
  .merit .container .box-wrapper .box .text .inset .semi-title .catch {
    padding-top: 10px;
    font-size: 7vw;
    letter-spacing: 2px;
    line-height: 1.5;
  }
  .merit .container .box-wrapper .box .text .inset .sentence {
    margin: 40px 0 0 10%;
  }
  .merit .container .box-wrapper .box .text .inset .sentence p {
    font-size: 4vw;
  }
}
/* ===================================================================================================
〇 FLOW
=================================================================================================== */
.flow {
  overflow: hidden;
  padding: 60px 0;
}
.flow .container {
  /* --------------------------------------------------
  title
  -------------------------------------------------- */
}
.flow .container .title {
  text-align: center;
}
.flow .container .title .catch {
  font-family: Cinzel, serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 10px;
  font-size: 90px;
}
.flow .container .title .catch_subtitle {
  margin-top: 10px;
  font-weight: 600;
  line-height: 1.25;
  font-size: 24px;
}
.flow .container {
  /* --------------------------------------------------
  flow boxes
  -------------------------------------------------- */
}
.flow .container .box-wrapper {
  max-width: 1680px;
  width: 96%;
  margin: 80px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.flow .container .box-wrapper .box {
  width: 45%;
  margin-top: 30px;
  background: linear-gradient(
    30deg,
    rgba(231, 237, 242, 0.9) 0%,
    rgba(244, 248, 252, 0.9) 35%,
    rgba(255, 255, 255, 0.9) 100%
  );
  box-shadow: rgba(236, 236, 236, 0.2) 0 7px 29px 0;
  position: relative;
}
.flow .container .box-wrapper .box .inner {
  display: flex;
  align-items: center;
  padding: 30px 45px;
  /* step number */
}
.flow .container .box-wrapper .box .inner .number {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(315deg, #b8c6db 0%, #f5f7fa 74%);
  box-shadow: rgba(236, 236, 236, 0.2) 0 7px 29px 0;
  color: #757485;
}
.flow .container .box-wrapper .box .inner .number p {
  font-family: Cinzel, serif;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
.flow .container .box-wrapper .box .inner .number p.sub {
  font-size: 20px;
}
.flow .container .box-wrapper .box .inner .number p.main {
  font-size: 30px;
}
.flow .container .box-wrapper .box .inner {
  /* text */
}
.flow .container .box-wrapper .box .inner .text {
  padding-left: 45px;
}
.flow .container .box-wrapper .box .inner .text .catch {
  font-size: 30px;
}
.flow .container .box-wrapper .box .inner .text .sentence {
  margin-top: 10px;
}
.flow .container .box-wrapper .box .inner .text .sentence p {
  font-size: 18px;
  line-height: 1.8;
  color: #343434;
  padding: 10px 0;
}
.flow .container .box-wrapper {
  /* arrow */
}
.flow .container .box-wrapper .arrow {
  width: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow .container .box-wrapper .arrow img {
  transform: rotate(-90deg);
}

/* ===================================================================================================
1024px 以下（Tablet）
=================================================================================================== */
@media screen and (width <= 1023px) {
  .flow .container .title .catch {
    font-size: 77px;
  }
  .flow .container .box-wrapper {
    width: 94%;
    margin-top: 40px;
  }
  .flow .container .box-wrapper .box {
    width: 100%;
    margin-top: 50px;
  }
  .flow .container .box-wrapper .box .inner {
    display: block;
    padding: 25px 30px;
  }
  .flow .container .box-wrapper .box .inner .number {
    margin: -20px auto 0;
    width: 8vw;
    height: 8vw;
  }
  .flow .container .box-wrapper .box .inner .number p.sub {
    font-size: 2vw;
  }
  .flow .container .box-wrapper .box .inner .number p.main {
    font-size: 2.5vw;
  }
  .flow .container .box-wrapper .box .inner .text {
    padding: 20px 0 0;
    text-align: center;
  }
  .flow .container .box-wrapper .box .inner .text .catch {
    font-size: 3.15vw;
  }
  .flow .container .box-wrapper .box .inner .text .sentence p {
    font-size: 1.8vw;
  }
  .flow .container .box-wrapper .arrow {
    margin: 20px auto;
  }
}
/* ===================================================================================================
767px 以下（SP）
=================================================================================================== */
@media screen and (width <= 767px) {
  .flow .container .title .catch {
    font-size: 9vw;
    letter-spacing: 6px;
  }
  .flow .container .title .catch_subtitle {
    font-size: 6vw;
  }
  .flow .container .box-wrapper {
    display: block;
  }
  .flow .container .box-wrapper .box {
    width: 100%;
    margin-top: 0;
  }
  .flow .container .box-wrapper .box .inner {
    padding: 30px 20px;
  }
  .flow .container .box-wrapper .box .inner .number {
    width: 20vw;
    height: 20vw;
  }
  .flow .container .box-wrapper .box .inner .number p.sub {
    font-size: 4vw;
  }
  .flow .container .box-wrapper .box .inner .number p.main {
    font-size: 6vw;
  }
  .flow .container .box-wrapper .box .inner .text {
    padding-top: 20px;
  }
  .flow .container .box-wrapper .box .inner .text .catch {
    font-size: 6vw;
  }
  .flow .container .box-wrapper .box .inner .text .sentence p {
    font-size: 4vw;
  }
  .flow .container .box-wrapper .arrow {
    width: 30vw;
    margin: 30px auto;
  }
  .flow .container .box-wrapper .arrow img {
    transform: rotate(0deg);
  }
}
/* ===================================================================================================
〇 FLOW
=================================================================================================== */
.flow {
  overflow: hidden;
  padding: 60px 0;
}
.flow .container {
  /* --------------------------------------------------
  title
  -------------------------------------------------- */
}
.flow .container .title {
  text-align: center;
}
.flow .container .title .catch {
  font-family: Cinzel, serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 10px;
  font-size: 90px;
}
.flow .container .title .catch_subtitle {
  margin-top: 10px;
  font-weight: 600;
  line-height: 1.25;
  font-size: 24px;
}
.flow .container {
  /* --------------------------------------------------
  flow boxes
  -------------------------------------------------- */
}
.flow .container .box-wrapper {
  max-width: 1680px;
  width: 96%;
  margin: 80px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.flow .container .box-wrapper .box {
  width: 45%;
  margin-top: 30px;
  background: linear-gradient(
    30deg,
    rgba(231, 237, 242, 0.9) 0%,
    rgba(244, 248, 252, 0.9) 35%,
    rgba(255, 255, 255, 0.9) 100%
  );
  box-shadow: rgba(236, 236, 236, 0.2) 0 7px 29px 0;
  position: relative;
}
.flow .container .box-wrapper .box .inner {
  display: flex;
  align-items: center;
  padding: 30px 45px;
  /* step number */
}
.flow .container .box-wrapper .box .inner .number {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(315deg, #b8c6db 0%, #f5f7fa 74%);
  box-shadow: rgba(236, 236, 236, 0.2) 0 7px 29px 0;
  color: #757485;
}
.flow .container .box-wrapper .box .inner .number p {
  font-family: Cinzel, serif;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
.flow .container .box-wrapper .box .inner .number p.sub {
  font-size: 20px;
}
.flow .container .box-wrapper .box .inner .number p.main {
  font-size: 30px;
}
.flow .container .box-wrapper .box .inner {
  /* text */
}
.flow .container .box-wrapper .box .inner .text {
  padding-left: 45px;
}
.flow .container .box-wrapper .box .inner .text .catch {
  font-size: 30px;
}
.flow .container .box-wrapper .box .inner .text .sentence {
  margin-top: 10px;
}
.flow .container .box-wrapper .box .inner .text .sentence p {
  font-size: 18px;
  line-height: 1.8;
  color: #343434;
  padding: 10px 0;
}
.flow .container .box-wrapper {
  /* arrow */
}
.flow .container .box-wrapper .arrow {
  width: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow .container .box-wrapper .arrow img {
  transform: rotate(-90deg);
}

/* ===================================================================================================
1024px 以下（Tablet）
=================================================================================================== */
@media screen and (width <= 1023px) {
  .flow .container .title .catch {
    font-size: 77px;
  }
  .flow .container .box-wrapper {
    width: 94%;
    margin-top: 40px;
  }
  .flow .container .box-wrapper .box {
    width: 100%;
    margin-top: 50px;
  }
  .flow .container .box-wrapper .box .inner {
    display: block;
    padding: 25px 30px;
  }
  .flow .container .box-wrapper .box .inner .number {
    margin: -20px auto 0;
    width: 8vw;
    height: 8vw;
  }
  .flow .container .box-wrapper .box .inner .number p.sub {
    font-size: 2vw;
  }
  .flow .container .box-wrapper .box .inner .number p.main {
    font-size: 2.5vw;
  }
  .flow .container .box-wrapper .box .inner .text {
    padding: 20px 0 0;
    text-align: center;
  }
  .flow .container .box-wrapper .box .inner .text .catch {
    font-size: 3.15vw;
  }
  .flow .container .box-wrapper .box .inner .text .sentence p {
    font-size: 1.8vw;
  }
  .flow .container .box-wrapper .arrow {
    margin: 20px auto;
  }
}
/* ===================================================================================================
767px 以下（SP）
=================================================================================================== */
@media screen and (width <= 767px) {
  .flow .container .title .catch {
    font-size: 9vw;
    letter-spacing: 6px;
  }
  .flow .container .title .catch_subtitle {
    font-size: 6vw;
  }
  .flow .container .box-wrapper {
    display: block;
  }
  .flow .container .box-wrapper .box {
    width: 100%;
    margin-top: 0;
  }
  .flow .container .box-wrapper .box .inner {
    padding: 30px 20px;
  }
  .flow .container .box-wrapper .box .inner .number {
    width: 20vw;
    height: 20vw;
  }
  .flow .container .box-wrapper .box .inner .number p.sub {
    font-size: 4vw;
  }
  .flow .container .box-wrapper .box .inner .number p.main {
    font-size: 6vw;
  }
  .flow .container .box-wrapper .box .inner .text {
    padding-top: 20px;
  }
  .flow .container .box-wrapper .box .inner .text .catch {
    font-size: 6vw;
  }
  .flow .container .box-wrapper .box .inner .text .sentence p {
    font-size: 4vw;
  }
  .flow .container .box-wrapper .arrow {
    width: 30vw;
    margin: 30px auto;
  }
  .flow .container .box-wrapper .arrow img {
    transform: rotate(0deg);
  }
}
.cta {
  overflow: hidden;
  margin: 0;
  padding: 90px 0 50px;
}
.cta .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 2%;
}
.cta .container .catch_title {
  position: relative;
  z-index: 2;
  margin-bottom: -40px;
  font-family: Cinzel;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 10px;
  text-align: center;
  font-size: 80px;
}
.cta .container .inner {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 7px 29px rgba(100, 100, 111, 0.2);
  max-width: 1280px;
}
.cta .container .inner .bg {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.cta .container .inner .bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cta .container .inner .block {
  position: relative;
  z-index: 2;
  max-width: 85%;
  margin: 0 auto;
  padding: 80px;
}
.cta .container .inner .block .sentence {
  text-align: center;
}
.cta .container .inner .block .sentence p {
  line-height: 2;
  font-size: 22px;
  padding: 10px 0;
}
.cta .container .inner .block ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 40px 0 0;
}
.cta .container .inner .block ul li {
  border: solid 1px #343434;
  width: 100%;
  padding: 30px;
}
.cta .container .inner .block ul li a {
  color: #343434;
}
.cta .container .inner .block ul li a .catch_subtitle {
  margin: -20px 0 0 40px;
  display: inline-block;
  color: #fff;
  background: #343434;
  font-size: 22px;
  padding: 2px 10px;
}
.cta .container .inner .block ul li a .number {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta .container .inner .block ul li a .number .icon {
  line-height: 0;
  width: 42px;
}
.cta .container .inner .block ul li a .number p {
  font-family: Cinzel;
  font-weight: 500;
  line-height: 1.2;
  font-size: 42px;
}
.cta .container .inner .block ul li a .date {
  text-align: center;
  font-size: 22px;
  margin-top: 10px;
}
.cta .container .inner .block ul li a .date .en {
  font-family: Cinzel;
  font-weight: 500;
}
.cta .container .inner .block .form {
  margin-top: 30px;
}
.cta .container .inner .block .form a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  padding: 10px 0;
  background: #000;
}
.cta .container .inner .block .form a .icon {
  line-height: 0;
  width: 40px;
}
.cta .container .inner .block .form a .catch {
  padding-left: 10px;
}
.cta .container .inner .block .form a .catch p {
  color: #fff;
  letter-spacing: 5px;
  font-size: 22px;
}
.cta .container .inner .block .form a .link {
  position: absolute;
  line-height: 0;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  width: 40px;
}

@media screen and (width >= 1024px) and (width <= 1280px) {
  .cta {
    margin: 0;
    padding: 90px 0 50px;
  }
  .cta .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3%;
  }
  .cta .container .catch_title {
    margin-bottom: -35px;
    line-height: 0.9;
    letter-spacing: 10px;
    font-size: 75px;
  }
  .cta .container .inner {
    max-width: 100%;
    margin: 0 auto;
  }
  .cta .container .inner .bg {
    right: 0;
    left: 0;
  }
  .cta .container .inner .block {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 40px;
  }
  .cta .container .inner .block .sentence p {
    line-height: 2;
    font-size: 22px;
    padding: 10px 0;
  }
  .cta .container .inner .block ul {
    margin: 40px 0 0;
  }
  .cta .container .inner .block ul li {
    width: 100%;
  }
  .cta .container .inner .block ul li a h3 {
    margin: -20px 0 0 40px;
  }
  .cta .container .inner .block ul li a h3 .catch {
    font-size: 22px;
    padding: 2px 10px;
  }
  .cta .container .inner .block ul li a .number {
    padding-top: 30px;
  }
  .cta .container .inner .block ul li a .number .icon {
    line-height: 0;
    width: 42px;
  }
  .cta .container .inner .block ul li a .number p {
    line-height: 1.2;
    font-size: 42px;
  }
  .cta .container .inner .block ul li a .date {
    font-size: 22px;
    margin-top: 10px;
  }
  .cta .container .inner .block .form {
    margin-top: 30px;
  }
  .cta .container .inner .block .form a {
    padding: 10px 0;
  }
  .cta .container .inner .block .form a .icon {
    line-height: 0;
    width: 40px;
  }
  .cta .container .inner .block .form a .catch {
    padding-left: 10px;
  }
  .cta .container .inner .block .form a .catch p {
    letter-spacing: 5px;
    font-size: 22px;
  }
  .cta .container .inner .block .form a .link {
    line-height: 0;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    width: 40px;
  }
} /* 1024px～1280px responsive-close */
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start---------------------------------------------------------------------------- */
@media screen and (width >= 768px) and (width <= 1023px) {
  .cta {
    margin: 0;
    padding: 90px 0 50px;
  }
  .cta .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3%;
  }
  .cta .container .catch_title {
    line-height: 0.9;
    margin: 0 0 -30px;
    letter-spacing: 10px;
    font-size: 70px;
  }
  .cta .container .inner {
    max-width: 100%;
    margin: 0 auto;
  }
  .cta .container .inner .bg {
    left: 0;
    right: 0;
  }
  .cta .container .inner .block {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 30px;
  }
  .cta .container .inner .block .sentence p {
    line-height: 2;
    font-size: 22px;
    padding: 10px 0;
  }
  .cta .container .inner .block ul {
    margin: 40px 0 0;
  }
  .cta .container .inner .block ul li {
    padding: 0 25px 30px;
  }
  .cta .container .inner .block ul li a h3 {
    margin: -20px 0 0 40px;
  }
  .cta .container .inner .block ul li a h3 .catch {
    font-size: 22px;
    padding: 2px 10px;
  }
  .cta .container .inner .block ul li a .number {
    padding-top: 30px;
  }
  .cta .container .inner .block ul li a .number .icon {
    line-height: 0;
    width: 32px;
  }
  .cta .container .inner .block ul li a .number p {
    line-height: 1.2;
    font-size: 30px;
  }
  .cta .container .inner .block ul li a .date {
    font-size: 20px;
    margin-top: 10px;
  }
  .cta .container .inner .block .form {
    margin-top: 30px;
  }
  .cta .container .inner .block .form a {
    padding: 10px 0;
  }
  .cta .container .inner .block .form a .icon {
    line-height: 0;
    width: 40px;
  }
  .cta .container .inner .block .form a .catch {
    padding-left: 10px;
  }
  .cta .container .inner .block .form a .catch p {
    letter-spacing: 5px;
    font-size: 22px;
  }
  .cta .container .inner .block .form a .link {
    line-height: 0;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    width: 40px;
  }
} /* 768px～1023px responsive-closed */
/* end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start---------------------------------------------------------------------------- */
@media screen and (width <= 767px) {
  .cta {
    margin: 0;
    padding: 90px 0 50px;
  }
  .cta .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3%;
  }
  .cta .container .catch_title {
    font-size: 3rem;
  }
  .cta .container .catch_title .catch {
    line-height: 0.9;
    letter-spacing: 5px;
    font-size: 11vw;
  }
  .cta .container .inner {
    max-width: 100%;
    margin: 0 auto;
  }
  .cta .container .inner .bg {
    left: 0;
    right: 0;
  }
  .cta .container .inner .block {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
  }
  .cta .container .inner .block .sentence p {
    line-height: 2;
    font-size: 3vw;
    padding: 10px 0;
  }
  .cta .container .inner .block .sentence p br {
    display: none;
  }
  .cta .container .inner .block ul {
    display: block;
    margin: 20px 0 0;
  }
  .cta .container .inner .block ul li {
    margin: 45px 0 0;
    padding: 0 15px 30px;
  }
  .cta .container .inner .block ul li a h3 {
    text-align: center;
    margin: -20px 0 0;
  }
  .cta .container .inner .block ul li a h3 .catch {
    font-size: 22px;
    padding: 2px 10px;
  }
  .cta .container .inner .block ul li a .number {
    padding-top: 30px;
  }
  .cta .container .inner .block ul li a .number .icon {
    line-height: 0;
    width: 8.5vw;
  }
  .cta .container .inner .block ul li a .number p {
    line-height: 1.2;
    font-size: 8.5vw;
  }
  .cta .container .inner .block ul li a .date {
    text-align: center;
    font-size: 4vw;
    margin-top: 10px;
  }
  .cta .container .inner .block .form {
    margin-top: 30px;
  }
  .cta .container .inner .block .form a {
    padding: 10px 0;
  }
  .cta .container .inner .block .form a .icon {
    line-height: 0;
    width: 6vw;
  }
  .cta .container .inner .block .form a .catch {
    padding: 0 10px;
  }
  .cta .container .inner .block .form a .catch p {
    letter-spacing: 2px;
    font-size: 5vw;
  }
  .cta .container .inner .block .form a .link {
    position: relative;
    line-height: 0;
    right: 0;
    top: 0;
    transform: translate(0, 0%);
    width: 5vw;
  }
} /* 767px responsive-closed */
/* end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* ===================================================================================================
〇 SECTION INDICATOR
=================================================================================================== */
.indicator {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
}
.indicator div {
  width: 10px;
  height: 10px;
  margin: 6px 0;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #333;
  cursor: pointer;
}

/* ===================================================================================================
〇 FOOTER
=================================================================================================== */
.footer {
  overflow: hidden;
  background: #000;
  padding: 120px 0 60px;
}
.footer .container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 2%;
  /* --------------------------------------------------
  top area
  -------------------------------------------------- */
}
.footer .container .top .logo_title {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
}
.footer .container .top nav {
  max-width: 1080px;
  margin: 0 auto;
}
.footer .container .top nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 80px;
}
.footer .container .top nav ul li {
  position: relative;
  padding: 8px 50px 0 0;
}
.footer .container .top nav ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  width: 1px;
  height: 20px;
  background: #a4a4a4;
}
.footer .container .top nav ul li a {
  display: flex;
  align-items: center;
  color: #fff;
}
.footer .container .top nav ul li a .en {
  font-family: Cinzel, serif;
  font-size: 24px;
}
.footer .container .top nav ul li a .jp {
  margin-left: 5px;
  font-size: 16px;
}
.footer .container .top nav ul li:last-child {
  padding-right: 0;
}
.footer .container .top nav ul li:last-child::before {
  display: none;
}
.footer .container {
  /* --------------------------------------------------
  privacy
  -------------------------------------------------- */
}
.footer .container .privacy {
  padding: 60px 0 20px;
}
.footer .container .privacy p {
  text-align: right;
}
.footer .container .privacy p a {
  position: relative;
  font-family: Cinzel, serif;
  font-size: 16px;
  letter-spacing: 10px;
  color: #fff;
}
.footer .container .privacy p a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #747474;
}
.footer .container {
  /* --------------------------------------------------
  copyright
  -------------------------------------------------- */
}
.footer .container .copyright {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #adadad;
  text-align: center;
}
.footer .container .copyright small {
  font-size: 14px;
  letter-spacing: 3px;
  color: #fff;
}

/* ===================================================================================================
1024px 以下（Tablet）
=================================================================================================== */
@media screen and (width <= 1023px) {
  .footer .container {
    padding: 0 3%;
  }
  .footer .container .copyright small {
    font-size: 13px;
    letter-spacing: 2px;
  }
}
/* ===================================================================================================
767px 以下（SP）
=================================================================================================== */
@media screen and (width <= 767px) {
  .footer {
    padding: 120px 0 60px;
  }
  .footer .container {
    padding: 0 2.5%;
  }
  .footer .container .top nav ul {
    display: block;
  }
  .footer .container .top nav ul li {
    padding: 12px 0;
    border-top: 1px solid #aaa;
  }
  .footer .container .top nav ul li::before {
    display: none;
  }
  .footer .container .top nav ul li a .en {
    font-size: 6vw;
  }
  .footer .container .top nav ul li a .jp {
    font-size: 3.75vw;
  }
  .footer .container .top nav ul li:last-child {
    border-bottom: 1px solid #aaa;
  }
  .footer .container .privacy p a {
    font-size: 4vw;
    letter-spacing: 6px;
  }
  .footer .container .privacy p a::before {
    left: -4vw;
    border-width: 1.4vw 0 1.4vw 2.8vw;
  }
  .footer .container .copyright small {
    font-size: 2.95vw;
    line-height: 1.35;
  }
}

/*# sourceMappingURL=style.css.map */
