@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand&family=Work+Sans:wght@200;300&display=swap");
/**
* reset
* -----------------------------------------------------------------------------
*/
a {
  color: inherit;
  text-decoration: none;
  display: block;
}
a:hover {
  transition: color 0.4s ease, background-color 0.4s ease;
}

ul {
  list-style-type: none;
}

table {
  border-collapse: separate !important;
}

/**
* Common
* -----------------------------------------------------------------------------
*/
html {
  font-size: 62.5%;
}

h1 {
  font-size: clamp(34px, 7vw, 56px);
}

h2 {
  font-size: clamp(27px, 6vw, 38px);
}

h3 {
  font-size: clamp(18px, 3vw, 24px);
}

body {
  color: #26222b;
  font-family: "Quicksand", "Work Sans", "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", sans-serif;
  line-height: 1.6;
  font-weight: normal;
  animation: fadeIn 3s ease 0s 1 normal;
  overflow-wrap: normal;
  font-size: clamp(1rem, 0.8rem + 1.6vw, 1.5rem);
  letter-spacing: 0.05em;
  position: relative;
}

img {
  height: auto;
  max-width: 100%;
  min-height: 1px;
  vertical-align: bottom;
}

.header_logo {
  font-size: 3rem;
}

/*----------------------------
scroll_up
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
scroll_left
----------------------------*/
.scroll_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
scroll_right
----------------------------*/
.scroll_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

.timing02 {
  transition-delay: 0.3s;
}

.timing03 {
  transition-delay: 0.6s;
}

.timing04 {
  transition-delay: 0.9s;
}

/*------------------------------*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.sec_inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 1.9rem;
}
.sec_inner .normal_tit {
  padding: 40px 0 44px;
  letter-spacing: 0.2rem;
  line-height: 1.2;
  text-align: center;
}

.our_vis h3 {
  font-size: clamp(18px, 5vw, 40px);
  font-weight: normal;
}

.sml_tit {
  display: block;
  font-size: 18px;
  display: inline-block;
  background: linear-gradient(90deg, #af89e2, #c850c0 30%, #ffcc70);
  background: -webkit-linear-gradient(0deg, #af89e2, #c850c0 30%, #ffcc70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: normal;
  margin-bottom: 5rem;
  letter-spacing: 0.2rem;
  filter: hue-rotate(360deg);
  animation: ani 15s infinite;
}

@keyframes ani {
  0%, 100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(360deg);
  }
}
.h3_tit {
  display: block;
  line-height: 1.4;
}

.bread_wrap {
  max-width: 1047px;
  font-size: #999;
  padding: 12px 1rem;
  margin: auto;
  text-align: right;
}
.bread_wrap .breadcrumb li {
  display: inline-block;
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}
.bread_wrap .breadcrumb li::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -3px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  transform: rotate(45deg);
}

.fa-regular {
  margin-right: 10px;
}

.pc {
  display: none;
}

/**
 * header
 * -----------------------------------------------------------------------------
 */
.header {
  width: 100%;
  z-index: 999;
  position: fixed;
  padding: 2rem 15px;
  transition: 0.5s;
}
.header_inner {
  position: relative;
  width: calc(100% - 10px);
  z-index: 99;
  letter-spacing: 0.05rem;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 95, 144, 0.2);
  padding: 13px 28px 12px 3rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
.header_logo {
  width: 220px;
  line-height: 1;
  z-index: 100;
}
.header.scroll-nav {
  padding: 10px 15px;
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/**
 * ハンバーガーメニュー
 * -----------------------------------------------------------------------------
 */
.sp-gnav {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s linear;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  visibility: visible;
  transition: 0.55s ease-in-out;
  background-color: rgba(12, 12, 12, 0.9);
  font-weight: 600;
}
.sp-gnav.open {
  display: block;
  pointer-events: auto;
  opacity: 1;
}

.sp-nav {
  display: block;
}

.nav_toggle {
  display: block;
  position: absolute;
  top: 28%;
  left: 18px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 999;
}
.nav_toggle span {
  display: block;
  position: absolute;
  width: 100%;
  border-bottom: solid 1px #444;
  transition: 0.35s ease-in-out;
}
.nav_toggle span:nth-child(1) {
  top: 5px;
}
.nav_toggle span:nth-child(2) {
  top: 15px;
}
.nav_toggle span:nth-child(3) {
  top: 27px;
}
.nav_toggle span p.togbtn {
  position: absolute;
  top: 32px;
  font-size: 9px;
}
.nav_toggle.active span {
  border-bottom: solid 1px #fff;
}
.nav_toggle.active span:nth-child(1) {
  top: 18px;
  transform: rotate(-45deg);
}
.nav_toggle.active span:nth-child(2), .nav_toggle.active span:nth-child(3) {
  top: 18px;
  transform: rotate(45deg);
}

.gnav {
  display: none;
}
.gnav ul.menu {
  display: flex;
  justify-content: space-between;
  padding: 0;
  align-items: center;
  width: 100%;
  height: 100%;
}
.gnav ul.menu li {
  border-bottom: none;
  font-size: 15px;
  letter-spacing: 0;
  margin-right: 6rem;
  padding: 0;
  color: inherit;
}
.gnav ul.menu li a {
  padding: 1.5rem 0;
  pointer-events: auto;
  letter-spacing: 0.2rem;
}
.gnav ul.menu li a:hover {
  color: grey;
}
.gnav ul.menu li.js-has-sub {
  position: relative;
}
.gnav ul.menu li.js-has-sub::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #26222b;
  border-right: 1px solid #26222b;
  transform: rotate(135deg);
  position: absolute;
  top: 24px;
  right: -20px;
}
.gnav ul.menu li .sub-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: 0.3s all ease-in-out;
  background-color: rgba(160, 147, 223, 0.6);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 95, 144, 0.2);
  padding: 12px 16px;
  height: auto;
  width: 170px;
  font-size: 12px;
  position: absolute;
  left: 0px;
  top: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gnav ul.menu li .sub-menu.slidedown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.gnav ul.menu li .sub-menu li {
  margin-right: 0;
}
.gnav ul.menu li .sub-menu li + li {
  margin-left: 0;
}
.gnav ul.menu li.last-li {
  margin-top: 8rem;
}
.gnav ul.menu li.last-li a {
  text-align: center;
  border-radius: 36px;
  color: #f2f0e7;
  border: 1px solid #26222b;
  background-color: #26222b;
  padding: 1rem 30px;
}
.gnav ul.menu li.last-li a::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  margin-right: 5px;
  color: #fff;
}
.gnav ul.menu li.last-li a:hover {
  background-color: grey;
  border: 1px solid #999;
}
.gnav ul.menu li.current.no-current a {
  color: inherit !important;
}
.gnav ul.menu li.current a {
  position: relative;
  display: inline-block;
}
.gnav ul.menu li.current.last-li a {
  background: grey !important;
  color: #f2f0e7;
  border: 1px solid #999;
}

.sp-gnav ul.menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding: 18rem 2rem 0;
}
.sp-gnav ul.menu li {
  color: #fff;
  margin-left: 0;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  border-bottom: 1px dotted #676767;
}
.sp-gnav ul.menu li:first-child {
  border-top: 1px dotted #676767;
}
.sp-gnav ul.menu li:nth-child(6) {
  border-bottom: none;
}
.sp-gnav ul.menu li a {
  padding: 1.5rem 0;
  pointer-events: auto;
}
.sp-gnav ul.menu li a:hover {
  color: grey;
}
.sp-gnav ul.menu li .sub-menu li {
  font-size: 80%;
  padding-left: 2rem;
}
.sp-gnav ul.menu li .sub-menu li a::before {
  content: "-";
  display: inline-block;
  margin-right: 13px;
}
.sp-gnav ul.menu li .sub-menu li.current.no-current a {
  color: inherit !important;
}
.sp-gnav ul.menu li .sub-menu li.current a {
  position: relative;
  display: inline-block;
  color: #fff;
}
.sp-gnav ul.menu li .sub-menu li.current.last-li a {
  background: grey !important;
  color: #f2f0e7;
  border: 1px solid #999;
}

.open {
  overflow: hidden;
}

/*button*/
.more {
  margin-top: 80px;
}

.all_button {
  width: 200px;
  height: 60px;
  padding: 0 50px 0 30px;
  position: relative;
  display: flex;
  align-items: center;
  border: 1px #26222b solid;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  color: #26222b;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.all_button:before {
  content: "";
  background: #fff;
  width: 2px;
  height: 10px;
  position: absolute;
  left: -1px;
  top: 30px;
  display: block;
  transform: rotate(-15deg);
  transition: opacity 0.4s ease;
}

.all_button span {
  width: 100%;
  position: static;
  display: block;
  font-weight: inherit;
}

.all_button span:before {
  content: "";
  background: #fff;
  width: 2px;
  height: 10px;
  position: absolute;
  right: -1px;
  top: 18px;
  display: block;
  transform: rotate(-15deg);
  transition: opacity 0.4s ease;
}

.all_button:after {
  content: "";
  background: url(../images/arrow_black.svg) no-repeat center/16px 12px;
  width: 16px;
  height: 12px;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

.all_button:hover {
  background: #26222b;
  border-color: #26222b;
  color: #fff;
  opacity: 1;
}

.all_button._hover::before,
.all_button._hover span:before {
  opacity: 0;
}

.all_button._hover::after {
  background: url(../images/arrow_white.svg);
}

/**
 * front
 * -----------------------------------------------------------------------------
 */
.main {
  /* ランダムにテキスト出現 */
  /* 流れるテキスト */
  /*全共通*/
  /*左右のアニメーション*/
}
.main .top_textanime {
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: 600px;
  height: 100vh;
}
.main .top_textanime .top_visual {
  position: absolute;
  width: 85%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-family: acumin-pro, Noto Sans JP, sans-serif;
  text-align: center;
}
.main .top_textanime .top_visual .TextRandomAnime {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1rem;
}
.main .top_textanime .top_visual .sub_anime {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 1rem;
}
.main .TextRandomAnime span {
  opacity: 0;
}
.main .TextRandomAnime.appearRandomtext span {
  animation: text_randomanime_on 0.5s ease-out forwards;
}
@keyframes text_randomanime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.main .TextRandomAnime.appearRandomtext span:nth-child(2n) {
  animation-delay: 0.5s; /* spanのついた2の倍数の文字列の変化を0.5秒遅らせる*/
}
.main .TextRandomAnime.appearRandomtext span:nth-child(3n+1) {
  animation-delay: 0.15s; /* spanのついた3の倍数＋1の文字列の変化を0.15秒遅らせる*/
}
.main .slide-in {
  overflow: hidden;
  display: inline-block;
}
.main .slide-in_inner {
  display: inline-block;
}
.main .leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}
.main .slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.main .slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.main .scr {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 5%;
  translate: translateX(-50%);
  z-index: 2;
  padding: 10px 0 100px;
  overflow: hidden;
  font-size: 13px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-decoration: none;
  writing-mode: vertical-lr;
}
.main .scr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: #26222b;
  height: 15px;
  animation: sdl 1.5s ease infinite;
}
.main .scr::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.4);
}
@keyframes sdl {
  0% {
    transform: translateY(-70px);
  }
  50%, 100% {
    transform: translateY(30px);
  }
}

section.sec_concept {
  padding: 3rem 0;
  position: relative;
}
section.sec_concept .concept_inner {
  display: block;
}
section.sec_concept .concept_inner .concept_text {
  width: 100%;
}
section.sec_concept .concept_inner .concept_text h3 {
  line-height: 1.6;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.2rem;
}
section.sec_concept .concept_inner .concept_text .text {
  line-height: 2.1;
  margin-top: 4rem;
}
section.sec_concept .concept_inner .concept_image {
  display: none;
}

section.sec_about {
  background: url(../images/yuri.png) no-repeat;
  background-position: right 35% bottom 45%;
}
section.sec_about .sec_inner .our_vis .head_tit {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: 0.2rem;
}
section.sec_about .sec_inner .our_vis .about_flex {
  display: flex;
  justify-content: end;
}
section.sec_about .sec_inner .our_vis .about_flex .flex_end {
  width: max(38.28vw, 480px);
  line-height: 2;
  margin-top: 9rem;
}

section.sec_news {
  padding: 0 0 8rem;
  position: relative;
  margin-left: 8vw;
}
section.sec_news .news_inner .news_text ul {
  display: flex;
  justify-content: space-around;
}
section.sec_news .news_inner .news_text ul li {
  width: 30%;
}
section.sec_news .news_inner .news_text ul li a {
  display: block;
  padding: 3rem 0;
  position: relative;
}
section.sec_news .news_inner .news_text ul li a .news_thum {
  width: 100%;
  height: 220px;
  aspect-ratio: 220/190;
}
section.sec_news .news_inner .news_text ul li a .news_date {
  margin: 14px 0;
}
section.sec_news .news_inner .news_text ul li a .news_date .date_box {
  color: #999;
}
section.sec_news .news_inner .news_text ul li a .news_date .cate_box {
  border: 1px solid #26222b;
  font-size: 12px;
  display: inline-block;
  padding: 2px 14px;
  margin-left: 1rem;
}
section.sec_news .news_inner .news_text ul li a .news_tit {
  padding-top: 2rem;
}

.swiper-wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  /*height: 380px !important;*/
}

.swiper-slide {
  width: 100%;
  height: auto;
}
.swiper-slide .news_thum {
  overflow: hidden;
  height: 210px;
  border: 1px solid rgba(242, 242, 242, 0.9490196078);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 95, 144, 0.2);
}
.swiper-slide .news_thum img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.swiper-slide .news_thum img:hover {
  transform: scale(1.2, 1.2);
  transition: 1s all;
}
.swiper-slide .news_box .news_date {
  margin-top: 1rem;
}
.swiper-slide .news_box .news_date .date_box {
  color: #999;
  font-size: 90%;
}
.swiper-slide .news_box .news_date .cate_box {
  font-size: 77%;
  margin-left: 1rem;
  padding: 1px 12px;
}
.swiper-slide .news_box .news_tit {
  margin-top: 1rem;
}
.swiper-slide .news_box .news_tit:hover {
  color: grey;
}

.swiper-ctr {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-end;
  margin-top: 3.2rem;
}

.swiper-pagination {
  margin-right: auto;
}

.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  width: 50px;
  height: 50px;
  border: 1px solid;
  border-radius: 50%;
  color: #26222b;
  background: #26222b;
}

.swiper-button-prev:after {
  font-size: 20px;
  content: "\f060";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
}

.swiper-button-next:after {
  font-size: 20px;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  bottom: 2%;
  top: auto;
  width: 70%;
  height: 1px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #26222b;
}

/**
 * footer
 * -----------------------------------------------------------------------------
 */
footer {
  width: 100%;
}
footer .f_c_area {
  width: 100%;
  position: relative;
  margin: auto;
  color: inherit;
}
footer .f_c_area .f_c_inner {
  position: relative;
  max-width: 1200px;
  padding: 0 1.8rem;
  width: 100%;
  margin: auto;
  z-index: 99;
  border-top: 1px solid #dfdfdf;
}
footer .f_c_area .f_c_inner .more {
  margin-bottom: 80px;
  display: flex;
  /*justify-content: center;*/
}
footer .f_c_area .f_c_inner .f_c_txt {
  width: 100%;
  padding: 43px 0 0;
}
footer .f_c_area .f_c_inner .f_c_txt .normal_tit {
  margin-bottom: 4rem;
}
footer .f_c_area .f_c_inner .f_c_txt .normal_tit .sml_tit {
  margin-bottom: 4rem;
}
footer .f_c_area .f_c {
  padding: 3em 2% 4.5em;
  background: linear-gradient(90deg, #b38ecb, #f7c9df 30%, #f8e5c3);
  animation: bggradient 15s ease infinite;
  background-size: 200% 200%;
  color: white;
  text-align: center;
}
footer .f_c_area .f_c .ct-tit {
  font-size: 3.2em;
  letter-spacing: 0.2rem;
}
footer .f_c_area .f_c a {
  display: block;
  margin: auto;
}
footer .f_c_area .f_c p {
  font-weight: bold;
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
footer .footer_container {
  background: rgba(0, 0, 0, 0.05);
}
footer .footer_container .footer_wrap {
  max-width: 1047px;
  padding: 45px 15px 0;
  margin: auto;
}
footer .footer_container .footer_wrap .f_info {
  letter-spacing: 0.1rem;
}
footer .footer_container .footer_wrap .f_info .f_info_inner .f_logo {
  max-width: 162px;
  width: 100%;
  margin: auto;
}
footer .footer_container .footer_wrap .f_info .f-gnav {
  display: none;
}
footer .footer_container .footer_wrap .f_info .f-gnav .menu {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  font-size: 14px;
}
footer .footer_container .footer_wrap .f_info .f-gnav .menu li {
  position: relative;
}
footer .footer_container .footer_wrap .f_info .f-gnav .menu li .sub-menu {
  font-size: 12px;
  color: #a6a6a6;
  margin-top: 10px;
}
footer .footer_container .footer_wrap .f_info .f-gnav .menu li .sub-menu li a {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 2px;
}
footer .footer_container .footer_wrap .f_info .f-gnav .menu li .sub-menu li a::before {
  content: "";
  background: #a6a6a6;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 10px;
  top: 0.75em;
  transform: translateY(-50%);
  display: block;
  border-radius: 50%;
}
footer .footer_container .footer_wrap .f_info_2 {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0 3rem;
  flex-direction: row-reverse;
  margin-top: 3rem;
  font-size: 90%;
}

.swiper-ctr {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-end;
  margin-top: 3.2rem;
  padding-right: 10%;
}

.swiper-pagination {
  margin-right: auto;
}

.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  width: 50px;
  height: 50px;
  border: 1px solid;
  border-radius: 50%;
  color: #26222b;
  background: #26222b;
}

.swiper-button-prev:after {
  width: 18px;
  height: 18px;
  background: url(../images/arrow_white.svg) no-repeat center/contain;
  content: "";
  transform: rotate(180deg);
}

.swiper-button-next:after {
  width: 18px;
  height: 18px;
  background: url(../images/arrow_white.svg) no-repeat center/contain;
  content: "";
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  bottom: 2%;
  top: auto;
  width: 70%;
  height: 1px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #26222b;
}

.service_list {
  margin-top: 2rem;
}
.service_list li {
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid #dedede;
}
.service_list li.service:nth-child(1) a:hover {
  color: rgb(65, 164, 253);
}
.service_list li.service:nth-child(1)._hover::after {
  background: url(../images/arrow_blue.svg) no-repeat center/16px 12px;
}
.service_list li.service:nth-child(2) a:hover {
  color: rgb(141, 139, 226);
}
.service_list li.service:nth-child(2)._hover::after {
  background: url(../images/arrow_purple.svg) no-repeat center/16px 12px;
}
.service_list li.service:nth-child(3) a:hover {
  color: rgb(253, 177, 170);
}
.service_list li.service:nth-child(3)._hover::after {
  background: url(../images/arrow_pink.svg) no-repeat center/16px 12px;
}
.service_list li.service:nth-child(4) a:hover {
  color: #67e4c3;
}
.service_list li.service:nth-child(4)._hover::after {
  background: url(../images/arrow_green.svg) no-repeat center/16px 12px;
}
.service_list li::after {
  content: "";
  background: url(../images/arrow_black.svg) no-repeat center/16px 12px;
  width: 16px;
  height: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

.concept_circle {
  position: relative;
  height: 400px;
  margin-top: 7rem;
}

.distorted-circle {
  color: white;
  width: 230px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  mix-blend-mode: multiply;
}
.distorted-circle dl {
  /*&::after {
    width: 18px;
    height: 18px;
    background: url(../images/arrow_white.svg) no-repeat center/contain;
    content: "";
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: auto;
  }*/
}
.distorted-circle dl dt {
  font-size: 2rem;
  margin: 10px;
  font-weight: bold;
}
.distorted-circle dl dd {
  margin: 10px;
  line-height: 1.2;
}

.distorted-circle:nth-child(1) {
  position: absolute;
  top: 15px;
  left: 0;
  background-image: linear-gradient(90deg, rgb(65, 164, 253), rgb(14, 244, 255));
  background-size: 200% 200%;
  animation: gradietionAnimation 8s ease infinite, wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.1s ease-in-out infinite alternate;
  border-radius: 53% 54% 45% 51%/60% 59% 42% 39%;
}

.distorted-circle:nth-child(2) {
  position: absolute;
  top: 0px;
  left: 38%;
  background-image: linear-gradient(90deg, rgb(141, 139, 226), rgb(253, 187, 203));
  background-size: 200% 200%;
  border-radius: 55% 43% 45% 55%/43% 46% 53% 54%;
  animation: gradietionAnimation 8s ease infinite, wobbling_x 1.7s ease-in-out infinite alternate, wobbling_y 2.2s ease-in-out infinite alternate;
}

.distorted-circle:nth-child(3) {
  position: absolute;
  top: 57%;
  left: 6%;
  background-image: linear-gradient(90deg, rgb(253, 177, 170), rgb(240, 226, 226));
  background-size: 200% 200%;
  border-radius: 55% 43% 45% 55%/43% 46% 53% 54%;
  animation: gradietionAnimation 8s ease infinite, wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.3s ease-in-out infinite alternate;
}

.distorted-circle:nth-child(4) {
  position: absolute;
  top: 54%;
  left: 45%;
  background-image: linear-gradient(90deg, rgb(144, 245, 154), rgb(4, 202, 255));
  background-size: 200% 200%;
  border-radius: 53% 54% 45% 51%/60% 59% 42% 39%;
  animation: gradietionAnimation 8s ease infinite, wobbling_x 1.9s ease-in-out infinite alternate, wobbling_y 2.4s ease-in-out infinite alternate;
}

.distorted-circle:nth-child(5) {
  position: absolute;
  top: 25%;
  right: 2%;
  background: #e5b1d6;
}

/* グラデ */
@keyframes gradietionAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* ふわふわ */
@keyframes wobbling_x {
  0% {
    margin-left: 8px;
  }
  100% {
    margin-left: 0px;
  }
}
@keyframes wobbling_y {
  0% {
    margin-top: 0px;
  }
  100% {
    margin-top: 8px;
  }
}
.mailbtn a {
  width: 80px;
  height: 80px;
  background-image: url(../images/mail1.png);
  background-size: contain;
  margin: 0 auto 30px !important;
  background-position: bottom;
}
.mailbtn a:hover {
  background-image: url(../images/mail2.png);
  background-position: top 50px;
  transition: 0.4s ease;
}

.loop03 {
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}

.loop03__box {
  display: flex;
  width: 100vw;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #000066;
}

.loop03__item {
  flex: 0 0 auto;
  font-size: 40px;
  white-space: nowrap;
  padding-right: 25px;
  padding-left: 25px;
  color: #fff;
}

.loop03__item:nth-child(odd) {
  animation: loop 50s -25s linear infinite;
}

.loop03__item:nth-child(even) {
  animation: loop2 50s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}/*# sourceMappingURL=style.css.map */