@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  text-align: justify;
}

.container {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* sp menu */
.sp_menu {
  position: relative;
  z-index: 9999;
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 21px;
  top: 21px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #fff;
  transition: 0.5s all;
}
.hamburger.is_active span {
  background: #555;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 20px;
  left: 10px;
  width: 24px;
  background: #fff;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  left: 60%;
  opacity: 0;
  animation: active-hamburger-bar02 0.8s forwards;
}
@keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
.hamburger.active span:nth-child(3) {
  top: 20px;
  left: 9px;
  width: 24px;
  background: #fff;
  transform: rotate(45deg);
}

.hamburger::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: block;
  content: "";
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0);
  transition: all 0.75s;
}

.hamburger.active::after {
  border: 2px solid #fff;
}

.sp_menu-body {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #d4d4d4;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: all 0.8s ease;
  overflow-y: scroll;
  background-image: url("../images/bg_gradation1.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.sp_menu-body.active {
  opacity: 1;
  display: block;
  animation: appear 0.8s ease;
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header.is_active {
  mix-blend-mode: difference;
}

.m-header_logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-right: 94px;
  padding-left: 4%;
}
@media only screen and (max-width: 768px) {
  .m-header_logo {
    padding-right: 80px;
  }
}
.m-header_logo .logo {
  width: 50px;
}
@media only screen and (max-width: 768px) {
  .m-header_logo .logo {
    width: 43px;
  }
}
.m-header_logo .logo img {
  width: 100%;
}
.m-header_logo .menu {
  margin-top: 2px;
}

.header-list-menu li a {
  display: block;
  padding: 8px 10px;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.header-list-menu li a.is_contact {
  padding-right: 50px;
  background-image: url("../images/ic_mail.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}

.l-sitemap__inner {
  height: 100vh;
}

@media screen and (min-width: 1024px) {
  .l-sitemap__inner {
    width: 68vw;
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-left: 8vw;
    padding-right: 6vw;
  }
}
@media screen and (max-width: 1023px) {
  .l-sitemap__inner {
    width: 100vw;
    padding-left: 7vw;
    padding-right: 7vw;
  }
}
@media screen and (max-width: 560px) {
  .l-sitemap__inner {
    padding-top: 6rem;
  }
}
.l-sitemap__main {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .l-sitemap__main {
    padding-bottom: 4.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-sitemap__main {
    padding-bottom: 3.5rem;
  }
}
.l-sitemap__main::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.15);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 400ms cubic-bezier(0.77, 0, 0.175, 1);
}

.l-sitemap__body {
  width: 100%;
  padding: 12% 0 0;
}

/*
 *
 * sitemap.scss
 *
 */
/* ------------------------------------------------------------
 p-sitemap
------------------------------------------------------------ */
.p-sitemap {
  /* ---------- -black ---------- */
  /* ---------- -white ---------- */
}

@media screen and (min-width: 1024px) {
  .p-sitemap {
    display: flex;
    justify-content: space-between;
  }
}
.p-sitemap p,
.p-sitemap li {
  line-height: 1;
  text-align: left;
}

.p-sitemap li:not(:first-child) {
  margin-top: 12px;
}

.p-sitemap.-black {
  color: #333333;
}

.p-sitemap.-black .p-sitemap__parent a::before,
.p-sitemap.-black .p-sitemap__parent a::after {
  background-color: #333333;
}

@media screen and (max-width: 1023px) {
  .p-sitemap.-black .p-sitemap__children {
    margin-top: 16px;
  }
}
.p-sitemap.-white {
  color: #ffffff;
}

.p-sitemap.-white .p-sitemap__parent a::before,
.p-sitemap.-white .p-sitemap__parent a::after {
  background-color: #ffffff;
}

@media screen and (max-width: 1023px) {
  .p-sitemap.-white .p-sitemap__children {
    background-color: #171717;
  }
}
@media screen and (max-width: 1023px) {
  .p-sitemap.-white .p-sitemap__children li:not(:last-of-type) a {
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  }
}
/* ---------- p-sitemap__cell ---------- */
.p-sitemap__cell {
  /* ---------- -small footer ---------- */
  /* ---------- -large sitemap ---------- */
}

@media screen and (min-width: 1024px) {
  .p-sitemap__cell {
    flex-basis: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .p-sitemap__cell.-small {
    margin-right: 3.2rem;
  }
}
.p-sitemap__cell.-small .p-sitemap__parent {
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .p-sitemap__cell.-small .p-sitemap__other {
    padding-top: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-sitemap__cell.-small .p-sitemap__other {
    padding: 4rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-sitemap__cell.-large {
    margin-right: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-sitemap__cell .p-sitemap-toggle + .p-sitemap-toggle {
    margin-top: 0.6rem;
  }
}
/* ----- p-sitemap-toggle ----- */
.p-sitemap-toggle.is-open .c-trigger::after {
  height: 0;
}

@media screen and (max-width: 1023px) {
  .p-sitemap-toggle.is-open .p-sitemap__children {
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  }
}
/* ----- p-sitemap__parent ----- */
@media screen and (min-width: 1024px) {
  .p-sitemap__parent + .p-sitemap__parent {
    margin-top: 1.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-sitemap__parent + .p-sitemap-toggle {
    margin-top: 1.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-sitemap-toggle + .p-sitemap__parent {
    margin-top: 0.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-sitemap__parent + .p-sitemap__other {
    margin-top: 3.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-sitemap__parent + .p-sitemap__other {
    margin-top: 3rem;
  }
}
.p-sitemap__parent a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: UD新ゴNT M, sans-serif;
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .p-sitemap__parent a {
    padding: 2rem 0;
  }
}
@media screen and (max-width: 1023px) {
  .p-sitemap__parent a {
    padding: 1.8rem 0;
  }
}
@media screen and (max-width: 560px) {
  .p-sitemap__parent a {
    padding-right: 3rem;
  }
}
.p-sitemap__parent a.is-hover:hover::before {
  opacity: 0.6;
  transform: scaleY(2);
}

.p-sitemap__parent a.is-hover:hover::after {
  opacity: 0.2;
}

.p-sitemap__parent a.is-hover:hover .c-arrow-circle {
  opacity: 1;
}

.p-sitemap__parent a::before,
.p-sitemap__parent a::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.p-sitemap__parent a::before {
  width: 2.1rem;
  opacity: 0.2;
  transform-origin: 0 100%;
}

.p-sitemap__parent a::after {
  width: 100%;
  opacity: 0.1;
}

.p-sitemap__parent .c-arrow-circle {
  opacity: 0.4;
  margin-right: 1rem;
}

@media screen and (min-width: 1024px) {
  .p-sitemap__parent__trigger {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .p-sitemap__parent__trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.6;
  }
}
/* ----- p-sitemap__children ----- */
@media screen and (min-width: 1024px) {
  .p-sitemap__children {
    height: auto !important;
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-sitemap__children {
    transition: height 300ms ease;
    padding-left: 3.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-sitemap__children a {
    padding: 1.6rem 0;
  }
}
/* ----- p-sitemap__list ----- */
.p-sitemap__list a {
  font-size: 15px;
  opacity: 0.5;
}

@media screen and (min-width: 1024px) {
  .p-sitemap__list a {
    display: inline-flex;
  }
}
@media screen and (min-width: 1024px) {
  .p-sitemap__list a::before {
    opacity: 0.4;
  }
}
/* ----------------------------------------
 l-sitemap__other
---------------------------------------- */
.l-sitemap__other {
  margin-bottom: 3.5rem;
}

@media screen and (min-width: 1024px) {
  .l-sitemap__other {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.l-sitemap__other__nav {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 1024px) {
  .l-sitemap__other__nav {
    margin-top: -0.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-sitemap__other__nav {
    margin-top: -0.5rem;
    margin-bottom: 2rem;
  }
}
.l-sitemap__other__nav li {
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .l-sitemap__other__nav li {
    margin-top: 1rem;
    margin-right: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-sitemap__other__nav li {
    margin-top: 0.5rem;
    margin-right: 2rem;
  }
}
.l-sitemap__other__nav a {
  display: block;
  opacity: 0.5;
  font-size: 1.2rem;
  padding: 0.4rem 0;
  transition-property: background-size, opacity;
}

.l-sitemap__other__nav a.is-hover:hover {
  opacity: 1;
}

@media screen and (max-width: 1023px) {
  .l-sitemap__other__sns {
    justify-content: flex-start;
  }
}
/* ----------------------------------------
 l-sitemap__copyright
---------------------------------------- */
.l-sitemap__copyright {
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #000;
  text-align: left;
}

.l-sitemap__copyright small {
  opacity: 0.8;
}

/* ------------------------------------------------------------
 l-sitemap-bg
------------------------------------------------------------ */
.l-sitemap-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000000;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: 400ms ease;
  transition-property: opacity, visibility;
}

.inner_large {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 2%;
  padding-right: 2%;
}
@media only screen and (max-width: 768px) {
  .inner_large {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.inner_base {
  padding-left: 6%;
  padding-right: 6%;
}
@media only screen and (max-width: 768px) {
  .inner_base {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.inner_middle {
  padding-left: 8%;
  padding-right: 8%;
}
@media only screen and (max-width: 767px) {
  .inner_middle {
    padding-left: 6%;
    padding-right: 6%;
  }
}

.inner_narrow {
  padding-left: 10%;
  padding-right: 10%;
}
@media only screen and (max-width: 768px) {
  .inner_narrow {
    padding-left: 8%;
    padding-right: 8%;
  }
}

.inner_mv {
  padding-left: 8%;
  padding-right: 4%;
}
@media only screen and (max-width: 768px) {
  .inner_mv {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.btn_normal {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 10px 20px 54px;
  color: #262626;
  font-size: clamp(1.2rem, 1.6vw, 2.8rem);
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .btn_normal {
    padding: 20px 10px 20px 40px;
  }
}
.btn_normal::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  width: 40px;
  height: 40px;
  background-color: #262626;
  border-radius: 100px;
  transform: translateY(-50%);
  background-image: url("../images/ic-arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
  transition: all 0.5s;
}
@media only screen and (max-width: 768px) {
  .btn_normal::after {
    width: 32px;
    height: 32px;
    background-size: 10px auto;
  }
}
.btn_normal:hover::after {
  transform: translate(-20%, -50%);
}

.visible {
  opacity: 0;
  transition: transform 0.5s linear;
  animation-duration: 2.5s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}
/*　brightness　*/
.effect {
  animation: fadeIn 0.7s ease 0s 1 normal;
  opacity: 1;
  transition: 0.8s;
}

@keyframes imgbrightness {
  0% {
    opacity: 0;
    filter: brightness(300%);
    /*　明度300%　*/
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
    /*　100%が基準値　*/
  }
}
.effect_hue-rotate {
  animation-name: imghue-rotate;
  opacity: 1;
  transition: 0.8s;
}

@keyframes imghue-rotate {
  0% {
    opacity: 0;
    filter: hue-rotate(90deg);
  }
  50% {
    opacity: 0.5;
    filter: hue-rotate(180deg);
  }
  100% {
    opacity: 1;
    filter: hue-rotate(0deg);
  }
}
.tab-label {
  display: flex;
  display: none;
  align-items: center;
  justify-content: center;
  color: White;
  background: LightGray;
  text-align: center;
  padding: 14px 1.5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
  font-size: clamp(1.2rem, 1.6vw, 2rem);
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .tab-label {
    flex-direction: column;
    flex: unset;
    width: 100%;
  }
}

.tab-label:not(:last-of-type) {
  margin-right: 5px;
}

.tab-content {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  color: #262626;
  font-size: clamp(1.5rem, 1.6vw, 2.8rem);
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.tab-switch:checked + .tab-label {
  background: #29bedb;
}

.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: 0.5s opacity;
}
@media only screen and (max-width: 768px) {
  .tab-switch:checked + .tab-label + .tab-content {
    padding: 15px 4% 15px;
  }
}

.tab-switch {
  display: none;
}

.tab-label {
  border-radius: 100px;
}

.tab-label:not(:last-of-type) {
  margin-right: 0;
}

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 50px 0 0;
  overflow: hidden;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .tab-wrap {
    margin: 40px 0 0;
  }
}
.tab-wrap .tab-label {
  background: #fff;
  color: #29bedb;
  border: 1px solid;
  border-left: 1px solid;
}

label#tab04 {
  border-left: 1px solid #29bedb;
  border-radius: 15px 0 0 15px;
}

label#tab06 {
  border-radius: 0 15px 15px 0;
}

.tab-switch:checked + .tab-label + .tab-content {
  text-align: center;
}

.tab-switch:checked + .tab-label {
  background: #29bedb;
  color: #fff;
  border-color: #29bedb;
}

.l-tabbody {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .l-tabbody {
    flex-direction: column;
  }
}

.tabbody_chat {
  order: 1;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .tabbody_chat {
    order: 2;
    width: 100%;
    min-width: 200px;
  }
}
.tabbody_chat #embedPabot {
  width: 100%;
  margin-left: 0;
}

.tabbody_feature {
  order: 2;
  width: 50%;
  padding-top: 5%;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .tabbody_feature {
    order: 1;
    width: 100%;
  }
}

.l-tabbody {
  padding-top: 1rem;
}
@media only screen and (max-width: 768px) {
  .l-tabbody {
    padding-top: 0px;
  }
}

.st_news_list {
  display: flex;
  align-items: center;
  margin-top: 8px;
  margin-right: auto;
  margin-left: 0;
}

.txt_news_list {
  display: inline-block;
  margin-left: 10px;
  font-size: clamp(0.9rem, 1.1vw, 1.4rem);
  letter-spacing: 0.14em !important;
}

.list_function {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .list_function {
    margin-top: 2rem;
  }
}
.list_function li a {
  position: relative;
  display: block;
  padding: 16px 10px 16px 48px;
  color: #262626;
  background: rgba(199, 210, 234, 0.23);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  font-size: clamp(1.4rem, 1.5vw, 2.4rem);
}
@media only screen and (max-width: 768px) {
  .list_function li a {
    padding: 12px 10px 12px 44px;
    border-radius: 10px;
  }
}
.list_function li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 1;
  width: 28px;
  height: 28px;
  background-color: #10a9fc;
  border-radius: 100px;
  transform: translateY(-50%);
  background-image: url("../images/ic-arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px auto;
}
@media only screen and (max-width: 768px) {
  .list_function li a::after {
    left: 16px;
    width: 20px;
    height: 20px;
    background-size: 6px auto;
  }
}
.list_function li:not(:first-child) {
  margin-top: 1.2rem;
}

.inner_wide {
  padding-left: 0;
  padding-right: 0;
}

.header_wave {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  position: relative;
  text-align: center;
  color: white;
}
@media only screen and (max-width: 768px) {
  .header_wave {
    top: -36px;
  }
}

.inner-header {
  height: 65vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.flex {
  /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

.content {
  position: relative;
  height: 20vh;
  text-align: center;
  background-color: white;
}

/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
  .content {
    height: 30vh;
  }
  h1 {
    font-size: 24px;
  }
}
footer {
  background-color: #ebf6fa;
  padding-bottom: 10px;
  overflow: hidden;
  background-image: url("../images/bg_footer.webp");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  background-attachment: fixed;
}

.inner-footer {
  padding-left: 3%;
  padding-right: 3%;
}
@media only screen and (max-width: 768px) {
  .inner-footer {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.footer_crown {
  display: flex;
  justify-content: space-between;
  padding: 60px 0 43px 0;
}
@media only screen and (max-width: 768px) {
  .footer_crown {
    padding-left: 10px;
  }
}

.ic_scrolltop a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  background-color: #fff;
  border-radius: 300px;
}
.ic_scrolltop img {
  display: block;
  transform: rotate(-90deg);
}

.footer_bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 40px;
}

.footer_list_menu {
  display: flex;
  gap: 0px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .footer_list_menu {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 40px;
    gap: 0px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .footer_list_menu li {
    width: 100%;
  }
}
.footer_list_menu li a {
  display: flex;
  width: 100%;
  padding: 4px 24px;
  color: #636566;
}
@media only screen and (max-width: 768px) {
  .footer_list_menu li a {
    padding: 10px 24px 10px 0;
    text-align: left;
  }
}
.footer_list_menu li + li {
  border-left: 1px dotted #96bcb5;
}
@media only screen and (max-width: 768px) {
  .footer_list_menu li + li {
    border-top: 1px dotted #96bcb5;
    border-left: none;
  }
}

.sns_box {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .sns_box {
    gap: 10px;
  }
}

.sns_button {
  box-shadow: inset 0 0 0 1px #636566;
  border-radius: 100%;
  transition: all 280ms ease;
}

.sns_button a {
  display: table-cell;
  width: 44px;
  height: 44px;
  color: #636566;
  text-align: center;
  vertical-align: middle;
  transition: all 280ms ease;
}

.sns_button i {
  font-size: 20px;
  vertical-align: middle;
}

.sns_button:hover {
  box-shadow: inset 0 0 0 22px #ddd;
}

.twitter:hover a {
  color: #1B95E0;
}

.facebook:hover a {
  color: #3B5999;
}

.google:hover a {
  color: #dd4b39;
}

.instagram:hover a {
  color: #2b5c84;
}

.pocket:hover a {
  color: #EE4056;
}

.footer_copyright {
  color: #636566;
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  .footer_copyright {
    text-align: center;
  }
}

.footer-logo-pabot {
  width: 54px;
}
@media only screen and (max-width: 768px) {
  .footer-logo-pabot {
    width: 50px;
  }
}

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

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

.boxes {
  position: absolute;
  top: 50%;
  left: calc(50% - 50px);
  transform: translate(-50%, -50%);
  z-index: 1;
  --size: 32px;
  --duration: 800ms;
  height: calc(var(--size) * 2);
  width: calc(var(--size) * 3);
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  margin-top: calc(var(--size) * 1.5 * -1);
  transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}
.boxes .box {
  width: var(--size);
  height: var(--size);
  top: 0;
  left: 0;
  position: absolute;
  transform-style: preserve-3d;
}
.boxes .box:nth-child(1) {
  transform: translate(100%, 0);
  animation: box1 var(--duration) linear infinite;
}
.boxes .box:nth-child(2) {
  transform: translate(0, 100%);
  animation: box2 var(--duration) linear infinite;
}
.boxes .box:nth-child(3) {
  transform: translate(100%, 100%);
  animation: box3 var(--duration) linear infinite;
}
.boxes .box:nth-child(4) {
  transform: translate(200%, 0);
  animation: box4 var(--duration) linear infinite;
}
.boxes .box > div {
  --background: #13aafc;
  --top: auto;
  --right: auto;
  --bottom: auto;
  --left: auto;
  --translateZ: calc(var(--size) / 2);
  --rotateY: 0deg;
  --rotateX: 0deg;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--background);
  top: var(--top);
  right: var(--right);
  bottom: var(--bottom);
  left: var(--left);
  transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
}
.boxes .box > div:nth-child(1) {
  --top: 0;
  --left: 0;
}
.boxes .box > div:nth-child(2) {
  --background: #027dc0;
  --right: 0;
  --rotateY: 90deg;
}
.boxes .box > div:nth-child(3) {
  --background: #039ef2;
  --rotateX: -90deg;
}
.boxes .box > div:nth-child(4) {
  --background: #DBE3F4;
  --top: 0;
  --left: 0;
  --translateZ: calc(var(--size) * 3 * -1);
}

@keyframes box1 {
  0%, 50% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(200%, 0);
  }
}
@keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@keyframes box3 {
  0%, 50% {
    transform: translate(100%, 100%);
  }
  100% {
    transform: translate(0, 100%);
  }
}
@keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }
  50% {
    transform: translate(200%, 100%);
  }
  100% {
    transform: translate(100%, 100%);
  }
}
.txt_loading {
  position: absolute;
  top: calc(50vh + 120px);
  left: calc(50vw + 0px);
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: tikatika 1s step-end infinite;
}
.txt_loading img {
  width: 120px;
}

@keyframes tikatika {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
p b {
  font-weight: 400;
  color: #000 !important;
}

.column-character-thumbnail {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  overflow: hidden;
}
.column-character-thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 60px;
}

.tags {
  display: flex;
  gap: 8px 8px;
  flex-wrap: wrap;
}
.tags .tag_item {
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
  white-space: nowrap;
}

.m-writer {
  display: flex;
  align-items: center;
  gap: 0 16px;
}

.slide_txt .m-writer {
  margin-top: 1.1rem;
}

.column_content .column_txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.column_content .slide_txt .ttl_middle {
  margin-top: 8px;
}

.remodal .btn_close_banner {
  width: 60px;
  height: 60px;
  background-color: #ececec;
}

.remodal_body {
  padding: 30px 0;
}

.remodal_list {
  display: flex;
  gap: 4%;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .remodal_list {
    gap: 8%;
  }
}

.remodal_item {
  position: relative;
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .remodal_item {
    width: 46%;
  }
}
@media only screen and (max-width: 480px) {
  .remodal_item {
    width: 100%;
  }
}
.remodal_item small {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ececec;
  border-radius: 8px;
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .remodal_item small {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}
.remodal_item .font_size_rm {
  display: block;
  padding: 16px 12px 30px;
  line-height: 1.65;
  letter-spacing: 0.02em;
}
.remodal_item .font_size_rm a {
  display: table;
  margin: 0 0 0 auto;
}
.remodal_item img {
  width: 100%;
}

.remodal_ttl {
  margin-bottom: 40px;
  text-align: center;
}

.inner_news {
  padding: 30px;
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .inner_news {
    padding: 10px;
  }
}

.btn_close_news {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  border: none;
  outline: none;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.btn_close_news:hove {
  cursor: pointer;
}

.m-chat-line .chat-txt .txt,
.m-chat-line .chat-txt p {
  font-family: "a-otf-ud-shin-go-pr6n", sans-serif;
  font-weight: 300;
}/*# sourceMappingURL=common.css.map */