@charset "UTF-8";

/* ========== コンポーネント ========== */
/* ヘッダー */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: 0.5s;
}
@media (min-width: 1020px) {
  .topnav {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media (min-width: 1380px) {
  .topnav {
    padding-left: 72px;
    padding-right: 72px;
  }
}

.topnav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding-left: 16px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background-color: #fff;
}
@media (min-width: 1020px) {
  .topnav__container {
    height: 92px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.topnav__logo img {
  width: 80px;
  height: 27px;
}
@media (min-width: 1020px) {
  .topnav__logo img {
    height: 44px;
    width: 131px;
  }
}

@media screen and (min-width: 1020px) {
  .topnav__navigation {
    display: block;
  }
}
@media screen and (max-width: 1019px) {
  .topnav__navigation {
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }
  .topnav__navigation.toggle-navigation-mobile {
    max-height: 100vh;
    opacity: 1;
    pointer-events: auto;
  }
}

@media screen and (min-width: 1020px) {
  .topnav__menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
@media screen and (max-width: 1019px) {
  .topnav__menu {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow-y: auto;
    --tw-bg-opacity: 1;
    background-color: rgb(255 0 0 / var(--tw-bg-opacity));
  }
}

.topnav__link {
  display: block;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 18px;
  letter-spacing: 2px;
  color: #ff0000;
  transition: 0.5s;
}
@media screen and (max-width: 1019px) {
  .topnav__link {
    margin-top: 1.5rem;
    display: block;
    height: 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 40px;
    letter-spacing: 2px;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}

.topnav__link:hover {
  color: #1e60bb;
}

.topnav__item--request .topnav__link {
  border-radius: 50px;
  --tw-bg-opacity: 1;
  background-color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  --tw-text-opacity: 1;
  text-align: center;
  color: rgb(255 0 0 / var(--tw-bg-opacity));
  border: solid 3px rgb(255 0 0 / var(--tw-bg-opacity));
  transition: all .3s ease-out;
}
.topnav__item--request .topnav__link:hover{
  color: #fff;
  background-color: #ff0000;
}
@media screen and (max-width: 1019px) {
  .topnav__item--request .topnav__link {
    padding: 0px 20px;
    line-height: 32px;
    color: #fff;
    background-color: rgb(255 0 0 / var(--tw-bg-opacity));
    border-color: #fff;
  }
}

.topnav__item--contact .topnav__link {
  background-color: #ff0000;
  color: #fafaf4;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
}
@media screen and (max-width: 1019px) {
  .topnav__item--contact .topnav__link {
    width: 240px;
    border-radius: 50px;
    --tw-bg-opacity: 1;
    background-color: rgb(243 242 242 / var(--tw-bg-opacity));
    text-align: center;
    font-size: 16px;
    --tw-text-opacity: 1;
    color: rgb(67 63 63 / var(--tw-text-opacity));
    padding: 0;
  }
}

.topnav__item--contact .topnav__link:hover {
  background-color: #fff;
  color: #ff0000;
}

.topnav__burger {
  display: block;
  position: absolute;
  top: 8px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #ff0000;
  border-radius: 24px;
  z-index: 1000;
}
@media screen and (min-width: 1020px) {
  .topnav__burger {
    display: none;
  }
}

.topnav__burger-line {
  padding-top: 14px;
}

.topnav__burger-line span {
  display: block;
  width: 14px;
  height: 2px;
  margin: 0 auto 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: 0.4s ease-in-out;
  transform-origin: 14px;
}
.topnav__burger.toggle-animate span {
  opacity: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.topnav__burger.toggle-animate span:nth-child(2) {
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  opacity: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transform-origin: -50% -50%;
  transform-origin: -50% -50%;
}
.topnav__burger.toggle-animate span:nth-child(3) {
  opacity: 1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* フッター */
.footer {
  background-color: #5D5858;
  padding: 40px 0;
  text-align: center;
}

.footer__nav {
  width: 90%;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid #7B7272;
  padding-bottom: 1rem;
  color: white;
}

.footer__nav-item {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

@media (min-width: 1020px) {
  .footer__nav {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    padding-bottom: 16px;
  }

  .footer__nav-item {
    font-size: 16px;
  }
}

.footer__logo {
  display: block;
  width: 123px;
  margin: 24px auto 28px;
}

@media (min-width: 1020px) {
  .footer__logo {
    width: 165px;
  }
}

.footer__address,
.footer__email {
  color: #F3F2F2;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
}

@media (min-width: 1020px) {
  .footer__address,
  .footer__email {
    font-size: 14px;
  }
}

.footer__email-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__button {
  display: block;
  margin: 16px auto;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 18px;
  background-color: rgb(255, 0, 0);
  color: #FAFAF4;
  padding: 12px 24px;
  border-radius: 50px;
  text-align: center;
  width: 220px;
}

.footer__button a {
  color: inherit;
  text-decoration: none;
}

.footer__button--document {
  margin-top: 16px;
  border: solid 3px #fff;
  padding: 10px 20px;
  background-color: transparent;
}

.footer__copyright {
  font-size: 12px;
  color: #958E8E;
  margin-top: 8px;
}

@media (min-width: 1020px) {
  .footer__copyright {
    font-size: 14px;
  }
}

.footer__copyright-symbol {
  vertical-align: text-top;
}

/* LV */
.lv {
  position: relative;
  min-height: 313px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}

.lv__title {
  padding-top: 28%;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

@media (min-width: 768px) {
  .lv {
    min-height: 548px;
  }

  .lv__title {
    font-size: 48px;
    padding-top: 20%;
  }
}

@media (min-width: 1020px) {
  .lv__title {
    padding-top: 18%;
    font-size: 48px;
  }
}

@media (min-width: 1380px) {
  .lv__title {
    padding-top: 14%;
    font-size: 80px;
  }
}

@media (min-width: 1536px) {
  .lv__title {
    padding-top: 200px;
  }
}
.lv__text {
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .lv__text {
    font-size: 20px;
  }
}

/* ページネーション */
.pagination {
  margin: 24px auto 80px;
  text-align: center;
}
.pagination__nav-link{
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__nav-link a,
.pagination__nav-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  width: 41px;
  height: 28px;
  color: #7B7272;
}
@media (min-width: 1020px) {
  .pagination__nav-link{
    column-gap: 8px;
  }
  .pagination__nav-link a,
  .pagination__nav-link span {
    font-size: 14px;
    width: 58px;
    height: 38px;
  }
}

.pagination__nav-link span.current {
  color: #262626;
  border: 3px solid #262626;
  border-radius: 30px;
  padding: 8px 16px;
}

.pagination__nav-link img{
  width: 14px;
  height: 14px;
}
@media (min-width: 768px) {
  .pagination__nav-link img{
    width: 20px;
    height: 20px;
  }
}

/* パンくずリスト */
.breadcrumb {
  margin-bottom: 34px;
  width: 88%;
  max-width: 1286px;
  margin-left: auto;
  margin-right: auto;
  color: #958E8E;
}

.breadcrumb a {
  color: #5D5858;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.5s;
}

.breadcrumb a:hover {
  color: #FF0000;
}

@media (min-width: 1020px) {
  .service__breadcrumb {
    width: 988px;
  }
}

@media (min-width: 1380px) {
  .service__breadcrumb {
    width: 1286px;
  }
}

/* セクションタイトル */
.section-title{
  font-size: 24px;
  color: #1E60BB;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 1020px) {
  .section-title{
    font-size: 40px;
  }
}

@media (min-width: 1380px) {
  .section-title{
    font-size: 56px;
  }
}


/* global map */
.global-map {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.global-map__map-img {
  width: 100%;
  height: auto;
  display: block;
}

.global-map__flags {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.global-map__flag {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 0, 0, .5);
}
.global-map__flag::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 47px;
  height: 47px;
  background: red;
  border-radius: 50%;
  opacity: .2;
}

.global-map__flag img {
  width: 20px;
}

.global-map__flag--jp {
  top: 19%;
  right: 20%;
  width: 47px;
  height: 47px;
}
.global-map__flag--jp::after {
    animation: 1.1s linear 1s infinite alternate breath;
    width: 67px;
    height: 67px;
}
@media (min-width: 768px) {
  .global-map__flag--jp {
    top: 19%;
    right: 20%;
    width: 66px;
    height: 66px;
  }
  .global-map__flag--jp img {
    width: 40px;
  }
  .global-map__flag--jp::after {
    width: 95px;
    height: 95px;
  }
}
.global-map__flag--korea {
  top: 21%;
  right: 34%;
  width: 27px;
  height: 27px;
}
@media (min-width: 768px) {
  .global-map__flag--korea {
    top: 21%;
    right: 34%;
    width: 46px;
    height: 46px;
  }
  .global-map__flag--korea img {
    width: 30px;
  }
  .global-map__flag--korea::after {
    animation: 1.1s linear 1s infinite alternate breath;
    width: 65px;
    height: 65px;
  }
}
.global-map__flag--honkong {
  top: 43%;
  right: 46%;
  width: 27px;
  height: 27px;
}
@media (min-width: 768px) {
  .global-map__flag--honkong {
    top: 43%;
    right: 46%;
    width: 36px;
    height: 36px;
  }
}
.global-map__flag--taiwan {
  top: 42%;
  right: 41%;
  width: 27px;
  height: 27px;
}
@media (min-width: 768px) {
  .global-map__flag--taiwan {
    top: 42%;
    right: 41%;
    width: 36px;
    height: 36px;
  }
}
.global-map__flag--tailand {
  top: 54%;
  right: 59%;
  width: 27px;
  height: 27px;
}
@media (min-width: 768px) {
  .global-map__flag--tailand {
    top: 54%;
    right: 59%;
    width: 36px;
    height: 36px;
  }
}
.global-map__flag--vietnam {
  top: 59%;
  right: 53%;
  width: 27px;
  height: 27px;
}
@media (min-width: 768px) {
  .global-map__flag--vietnam {
    top: 59%;
    right: 53%;
    width: 36px;
    height: 36px;
  }
}
.global-map__flag--malaysia {
  top: 68%;
  right: 59%;
  width: 27px;
  height: 27px;
}
@media (min-width: 768px) {
  .global-map__flag--malaysia {
    top: 68%;
    right: 59%;
    width: 36px;
    height: 36px;
  }
}
.global-map__flag--singapore {
  top: 74%;
  right: 57%;
  width: 27px;
  height: 27px;
}
@media (min-width: 768px) {
  .global-map__flag--singapore {
    top: 74%;
    right: 57%;
    width: 36px;
    height: 36px;
  }
}
.global-map__flag--philippines {
  top: 57%;
  right: 40%;
  width: 27px;
  height: 27px;
}
@media (min-width: 768px) {
  .global-map__flag--philippines {
    top: 57%;
    right: 40%;
    width: 36px;
    height: 36px;
  }
}
.global-map__flag--indonesia {
  top: 79%;
  right: 41%;
  width: 27px;
  height: 27px;
}
@media (min-width: 768px) {
  .global-map__flag--indonesia {
    top: 79%;
    right: 41%;
    width: 36px;
    height: 36px;
  }
}
.global-map__flag--honkong::after,
.global-map__flag--indonesia::after,
.global-map__flag--korea::after,
.global-map__flag--malaysia::after,
.global-map__flag--philippines::after,
.global-map__flag--singpore::after,
.global-map__flag--tailand::after,
.global-map__flag--taiwan::after,
.global-map__flag--vietnam::after{
  animation: 1.1s linear 1s infinite alternate breath;
}
@media (min-width: 768px) {
  .global-map__flag--honkong::after,
  .global-map__flag--indonesia::after,
  .global-map__flag--malaysia::after,
  .global-map__flag--philippines::after,
  .global-map__flag--singpore::after,
  .global-map__flag--tailand::after,
  .global-map__flag--taiwan::after,
  .global-map__flag--vietnam::after {
    animation: 1.1s linear 1s infinite alternate breath;
    width: 52px;
    height: 52px;
  }
}
@keyframes breath{
  0% {
    opacity: .2;
  }

  100% {
    opacity: 0;
  }
}

/* creators一覧 */
.creators-card__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  justify-content: center;
}
@media (min-width: 1020px) {
  .creators-card__list {
    justify-content: flex-start;
  }
}

.creators-card__item {
  background: #fff;
  padding: 24px 0;
  margin-top: 32px;
  border-radius: 24px;
  width: 100%;
}

@media (min-width: 768px) {
  .creators-card__item {
    width: 360px;
  }
}

@media (min-width: 1020px) {
  .creators-card__item {
    width: 458px;
  }
}

@media (min-width: 1380px) {
  .creators-card__item {
    width: 390px;
  }
}

.creators-card__image {
  width: 120px;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media (min-width: 1380px) {
  .creators-card__image {
    width: 190px;
  }
}

.creators-card__image img{
  border-radius: 50%;
}

.creators-card__name {
  font-size: 18px;
  font-weight: bold;
  color: #1E60BB;
  text-align: center;
  margin: 24px 0;
}

@media (min-width: 1020px) {
  .creators-card__name {
    font-size: 24px;
  }
}

.creators-card__description {
  width: 86%;
  margin: 0 auto;
  font-size: 14px;
  color: #5D5858;
  font-weight: 500;
  text-align: left;
}

.creators-card__social-media {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.creators-card__social-link img {
  width: 44px;
}

/* お問い合わせフォーム */
input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0;
  padding: 8px 12px;
  font-size: 16px;
  line-height: 24px;
  --tw-shadow: 0 0 #0000;
}
.form__group {
  margin-top: 20px;
}

.form__row{
  display: grid;
}
.form__row--single{
  display: block;
  margin-top: 20px;
}
.form__col {
  margin-top: 1.25rem;
}
.form__label {
  font-weight: bold;
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.form__required {
  color: red;
  margin-left: 4px;
}

.form__input-wrapper {
  position: relative;
  margin-top: 8px;
}

.form__input {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  outline: none;
  background-color: #f3f2f2;
  font-size: 16px;
}

.form__input:focus {
  border-color: #3b82f6;
}

textarea.form__input {
  height: 120px;
  resize: vertical;
}

.form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
  width: 80%;
  max-width: 320px;
  height: 64px;
  background-color: #262626;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form__submit:hover {
  background-color: red;
}

.form__submit-arrow img {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: transform 0.3s;
}

.form__submit:hover .form__submit-arrow img {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .form__row{
    gap: 24px;
    grid-template-columns: repeat(12, 1fr);
  }
  .form__col {
    grid-column: span 6/span 6;
  }
  .form__submit {
    width: 320px;
  }

}

@media (min-width: 1024px) {
  .form__submit-arrow img {
    width: 24px;
    height: 24px;
  }
}



/* ========== トップページ ========== */
/* MV */
.mv {
  position: relative;
  min-height: 393px;
  background-image: url('../images/home-mobile.svg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}

.mv__slogan {
  padding-top: 34%;
  padding-left: 10%;
}

.mv__logo {
  margin-bottom: 16px;
  width: 210px;
  height: 78px;
}

.mv__title {
  font-size: 1rem;
  color: rgb(255, 0, 0); /* text-primary */
  font-weight: bold;
  margin-bottom: 16px;
}

.mv__title--inline {
  display: block;
}

.mv__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #262626;
  color: #FAFAF4;
  font-weight: bold;
  width: 188px;
  height: 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.5s;
}

.mv__button:hover,
.mv__button:active,
.mv__button:focus {
  background-color: rgb(255, 0, 0);
  outline: none;
}

.mv__button-text {
  font-size: 14px;
  margin-right: 8px;
}

.mv__arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease-in-out;
}

.mv__button:hover .mv__arrow-icon {
  transform: translateX(3px);
}

@media (min-width: 393px) {
  .mv__slogan {
    padding-top: 24%;
  }
}

@media (min-width: 768px) {
  .mv {
    min-height: 768px;
  }
  .mv__logo {
    width: 403px;
    height: 134px;
  }

  .mv__title {
    font-size: 20px;
  }

  .mv__title--inline {
    display: inline;
  }
}

@media (min-width: 1020px) {
  .mv {
    min-height: 833px;
    background-image: url('../images/home.svg');
  }

  .mv__slogan {
    padding-top: 20%;
  }

  .mv__logo {
    width: 478px;
    height: 161px;
  }

  .mv__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .mv__button {
    width: 281px;
    height: 64px;
  }

  .mv__button-text {
    font-size: 24px;
  }

  .mv__arrow-icon {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 1380px) {
  .mv {
    min-height: 1128px;
  }
  .mv__logo {
    width: 620px;
    height: 208px;
  }

  .mv__title {
    font-size: 32px;
  }
}
/* about */
.top-about {
  position: relative;
  background-color: #fff;
  width: 88%;
  margin: -50px auto 0;
  padding: 32px 24px;
  border-radius: 24px;
}

.top-about__title {
  margin-bottom: 16px;
}

.top-about__content {
  display: flex;
  flex-direction: column;
}

.top-about__text-block {
  text-align: left;
}

.top-about__heading {
  font-size: 16px;
  line-height: 19px;
  color: #1A1919;
  font-weight: bold;
  margin-bottom: 8px;
}

.top-about__text {
  font-size: 14px;
  color: #262626;
  font-weight: 500;
}

.top-about__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #262626;
  margin-top: 8px;
  transition: color 0.5s ease;
}

.top-about__link:hover,
.top-about__link:active,
.top-about__link:focus {
  color: #FF0000;
  outline: none;
}

.top-about__arrow img {
  margin-left: 4px;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.top-about__link:hover .top-about__arrow img {
  transform: translateX(3px);
}

.top-about__image-wrapper {
  margin: 8px auto 0;
  text-align: center;
  flex-shrink: 0;
}

.top-about__image {
  width: 313px;
}

@media (min-width: 768px) {
  .top-about {
    width: 70%;
  }

  .top-about__heading {
    font-size: 18px;
    line-height: 21px;
  }

  .top-about__image {
    width: 400px;
  }
}

@media (min-width: 1020px) {
  .top-about {
    width: 948px;
    padding-left: 56px;
    padding-right: 56px;
  }

  .top-about__content {
    flex-direction: row;
  }

  .top-about__link {
    justify-content: flex-start;
  }

  .top-about__arrow img {
    width: 24px;
    height: 24px;
  }

  .top-about__image-wrapper {
    margin-left: 8px;
    margin-top: 0;
  }

  .top-about__text {
    font-size: 16px;
  }

  .top-about__link {
    font-size: 16px;
  }
}

@media (min-width: 1380px) {
  .top-about {
    width: 1236px;
  }
  .top-about__heading {
    line-height: 33px;
    font-size: 28px;
  }
  .top-about__text {
    font-size: 20px;
  }
  .top-about__image {
    width: 522px;
  }
}

@media (min-width: 1536px) {
  .top-about__link {
    font-size: 24px;
  }
}
/* service */
.top-service {
  width: 88%;
  margin: 0 auto;
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .top-service {
    width: 70%;
  }
}

@media (min-width: 1020px) {
  .top-service {
    width: 948px;
  }
}

@media (min-width: 1380px) {
  .top-service {
    width: 1236px;
  }
}

.top-service__title {
  margin-top: 80px;
  padding-top: 24px;
}

.top-service__lead {
  margin-top: 32px;
  font-weight: 500;
}

@media (min-width: 1020px) {
  .top-service__lead {
    font-size: 18px;
  }
}

@media (min-width: 1536px) {
  .top-service__lead {
    font-size: 24px;
  }
}

.top-service__link {
  display: flex;
  justify-content: end;
  align-items: center;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  color: #262626;
  margin-top: 8px;
  margin-bottom: 32px;
  transition: color 0.5s;
}

.top-service__link:hover,
.top-service__link:active {
  color: #FF0000;
}

.top-service__link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #D2CFCF;
}

@media (min-width: 1020px) {
  .top-service__link {
    font-size: 16px;
    margin-top: 12px;
  }
}

@media (min-width: 1380px) {
  .top-service__link {
    font-size: 24px;
  }
}

.top-service__link-arrow img {
  margin-left: 4px;
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.top-service__link:hover .top-service__link-arrow img {
  transform: translateX(3px);
}

@media (min-width: 1020px) {
  .top-service__link-arrow img {
    width: 24px;
    height: 24px;
  }
}

.top-service__items {
  display: flex;
  flex-direction: column;
  color: white;
  gap: 32px;
}

@media (min-width: 1020px) {
  .top-service__items {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (min-width: 1380px) {
  .top-service__items {
    gap: 24px;
  }
}

.top-service__item {
  border-radius: 24px;
  padding: 32px 24px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .top-service__item {
    width: 360px;
  }
}
@media (min-width: 1020px) {
  .top-service__item {
    width: calc(100%/4 - 16px*3/4);
  }
}
@media (min-width: 1380px) {
  .top-service__item {
    width: calc(100%/4 - 24px*3/4);
  }
}

.top-service__item--primary {
  background-color: #FF0000;
}

.top-service__item--second {
  background-color: #1E60BB;
}

.top-service__item-title {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

@media (min-width: 1020px) {
  .top-service__item-title {
    font-size: 20px;
  }
}

@media (min-width: 1020px) {
  .service__item-title--mb {
    margin-bottom: 44px;
  }
}

.top-service__item-sub {
  display: block;
}

.top-service__item-image {
  display: block;
  margin: 24px auto;
  width: 165px;
}

@media (min-width: 768px) {
  .top-service__item-image {
    width: 400px;
  }
}

@media (min-width: 1380px) {
  .top-service__item-image {
    width: 522px;
  }
}

.top-service__item-desc {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
/* work */
.top-work {
  width: 88%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .top-work {
    width: 70%;
  }
}
@media (min-width: 1020px) {
  .top-work {
    width: 948px;
  }
}
@media (min-width: 1380px) {
  .top-work {
    width: 1236px;
  }
}

.top-work__title {
  margin-top: 80px;
  padding-top: 24px;
}

@media (min-width: 1020px) {
  .top-work__list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
    justify-content: start;
  }
}

.top-work__item {
  display: block;
  width: 100%;
  color: white;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .top-work__item {
    width: 360px;
  }
}
@media (min-width: 1020px) {
  .top-work__item {
    width: 458px;
  }
}
@media (min-width: 1380px) {
  .top-work__item {
    width: 390px;
  }
}

.top-work__item-image {
  display: block;
  margin: 24px auto 0;
  border-radius: 24px;
  width: 90%;
}
@media (min-width: 1020px) {
  .top-work__item-image {
    margin-top: 0;
  }
}

.top-work__item-desc {
  background-color: #FF0000;
  padding: 24px;
  margin-top: -16px;
  border-radius: 24px;
}

.top-work__item-title {
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 1536px) {
  .top-work__item-title {
    font-size: 24px;
  }
}

.top-work__item-company {
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 8px;
}

.top-work__item-period {
  font-size: 16px;
  font-weight: 500;
  margin-top: 8px;
}

.top-work__more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 2rem 0;
  font-weight: bold;
  font-size: 14px;
  color: #262626;
  transition: color 0.5s;
}
.top-work__more:hover {
  color: #FF0000;
}
@media (min-width: 1020px) {
  .top-work__more {
    font-size: 16px;
    margin-top: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (min-width: 1380px) {
  .top-work__more {
    font-size: 24px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

.top-work__arrow img {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  transition: transform 0.3s ease-in-out;
}
.top-work__more:hover .top-work__arrow img {
  transform: translateX(3px);
}
@media (min-width: 1020px) {
  .top-work__arrow img {
    width: 24px;
    height: 24px;
  }
}

.top-work__request {
  text-align: center;
}

.top-work__request-button {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  border: 3px solid #262626;
  border-radius: 50px;
  padding: 12px 0;
  width: 305px;
  max-width: 100%;
  height: 64px;
  transition: all 0.5s;
}
.top-work__request-button:hover {
  background-color: #262626;
  color: #F3F2F2;
}
@media (min-width: 1380px) {
  .top-work__request-button {
    width: 400px;
  }
}
/* global relationship */
.top-global {
  margin-top: 104px;
  width: 88%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .top-global {
    width: 70%;
  }
}
@media (min-width: 1020px) {
  .top-global {
    width: 948px;
  }
}
@media (min-width: 1380px) {
  .top-global {
    width: 1236px;
  }
}

.top-global__title {
  line-height: 24px;
}
@media screen and (min-width: 1020px) {
  .top-global__title {
    line-height: 40px;
  }
}
@media screen and (min-width: 1380px) {
  .top-global__title {
    line-height: 56px;
  }
}

.top-global__title-line {
  display: block;
}

.top-global__text {
  margin: 2rem 0;
  text-align: left;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  color: #262626;
  max-width: 800px;
}

@media screen and (min-width: 1020px) {
  .top-global__text {
    font-size: 18px;
    line-height: 21px;
  }
}

@media screen and (min-width: 1380px) {
  .top-global__text {
    font-size: 24px;
    line-height: 28px;
  }
}
/* creators */
.top-creators {
  width: 100%;
  background-color: #FF0000;
  border-top-left-radius: 56px;
  border-top-right-radius: 56px;
  padding: 40px 16px;
  margin-top: 120px;
  text-align: center;
}

.top-creators__title {
  color: #fff;
}

.top-creators__list{
  margin-left: auto;
  margin-right: auto;
  width: 88%;
}
@media (min-width: 768px) {
  .top-creators__list {
    width: 70%;
  }
}
@media (min-width: 1020px) {
  .top-creators__list {
    width: 948px;
  }
}
@media (min-width: 1380px) {
  .top-creators__list {
    width: 1236px;
  }
}
.top-creators__more{
  margin-top: 32px;
}

.top-creators__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #262626;
  color: #FAFAF4;
  font-weight: bold;
  width: 100%;
  height: 40px;
  border-radius: 50px;
  margin: 0 auto;
  text-decoration: none;
  transition: background-color 0.5s ease;
}
@media (min-width: 768px) {
  .top-creators__button {
    width: 240px;
  }
}
@media (min-width: 1020px) {
  .top-creators__button {
    width: 281px;
    height: 64px;
  }
}

.top-creators__button:hover {
  background-color: #1E60BB;
}

.top-creators__button-text {
  font-size: 16px;
  margin-right: 8px;
}
@media (min-width: 1020px) {
  .top-creators__button-text {
    font-size: 24px;
  }
}

.top-creators__arrow img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 1020px) {
  .top-creators__arrow img {
    width: 24px;
    height: 24px;
  }
}

.top-creators__button:hover .top-creators__arrow img {
  transform: translateX(3px);
}
/* contact */
.top-contact {
  background-color: #1E60BB; /* .bg-second */
  padding: 40px 0;
}

.top-contact__inner {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 40px;
  margin: 0 auto;
  width: 88%;
}
@media (min-width: 768px) {
  .top-contact__inner {
    width: 70%;
  }
}
@media (min-width: 1020px) {
  .top-contact__inner {
    width: 948px;
  }
}
@media (min-width: 1380px) {
  .top-contact__inner {
    width: 1236px;
  }
}

.top-contact__title {
  font-size: 24px;
  font-weight: bold;
  color: #1E60BB;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .top-contact__title {
    font-size: 28px;
  }
}
@media (min-width: 1020px) {
  .top-contact__title {
    font-size: 40px;
  }
}
@media (min-width: 1380px) {
  .top-contact__title {
    font-size: 56px;
  }
}

.top-contact__text {
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  text-align: left;
  margin: 0 auto;
  color: #262626;
}

@media (min-width: 1020px) {
  .top-contact__text {
    font-size: 24px;
  }
}




/* ========== About ========== */
.lv--about {
  background-image: url('../images/about-banner-mobile.svg');
}

@media (min-width: 1020px) {
  .lv--about {
    background-image: url('../images/about-banner.svg');
  }
}

/* about-us section */
.about__content {
  position: relative;
  margin: -90px auto 0;
  width: 88%;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px 24px;
}

@media (min-width: 768px) {
  .about__content {
    margin-top: -160px;
    width: 70%;
  }
}

@media (min-width: 1020px) {
  .about__content {
    margin-top: -220px;
    display: flex;
    align-items: flex-start;
    width: 948px;
    padding-left: 56px;
    padding-right: 56px;
  }
}

@media (min-width: 1380px) {
  .about__content {
    margin-top: -80px;
    width: 1236px;
  }
}

.about__desc-heading {
  font-size: 24px;
  color: #1E60BB;
  font-weight: 700;
  margin-bottom: 16px;
}

.about__desc-text {
  font-size: 14px;
  color: #262626;
  font-weight: 500;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .about__desc-heading {
    margin-bottom: 18px;
  }
}

@media (min-width: 1020px) {
  .about__desc-heading {
    font-size: 40px;
  }
  .about__desc-text {
    font-size: 16px;
  }
}

@media (min-width: 1380px) {
  .about__desc-heading {
    font-size: 48px;
  }

  .about__desc-text {
    font-size: 20px;
  }
}

.about__image {
  display: block;
  margin: 8px auto 0;
  width: 313px;
  text-align: center;
}

@media (min-width: 768px) {
  .about__image {
    width: 400px;
  }
}

@media (min-width: 1020px) {
  .about__image {
    margin-left: 8px;
  }
}

@media (min-width: 1380px) {
  .about__image {
    width: 522px;
  }
}

/* map */
.about__map {
  margin: 50px auto 80px;
  width: 88%;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px 24px;
}

@media (min-width: 768px) {
  .about__map {
    width: 70%;
  }
}

@media (min-width: 1020px) {
  .about__map {
    width: 948px;
    padding-left: 56px;
    padding-right: 56px;
    margin-bottom: 120px;
  }
}

@media (min-width: 1380px) {
  .about__map {
    width: 1236px;
  }
}

.about__map-title {
  font-size: 24px;
  font-weight: 700;
  color: #1E60BB;
  margin-bottom: 16px;
}

@media (min-width: 1020px) {
  .about__map-title {
    font-size: 40px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1380px) {
  .about__map-title {
    font-size: 48px;
  }
}

.about__map-iframe {
  width: 100%;
  height: 339px;
}

@media (min-width: 1020px) {
  .about__map-iframe {
    height: 612px;
  }
}

.about__address {
  display: block;
  margin-top: 24px;
}

@media (min-width: 1020px) {
  .about__address {
    display: flex;
    justify-content: space-between;
    padding-right: 60px;
  }
}

@media (min-width: 1380px) {
  .about__address {
    padding-right: 300px;
  }
}

.about__addr-heading,
.about__email-heading {
  font-size: 20px;
  color: #262626;
  font-weight: 700;
  margin-bottom: 8px;
}

.about__addr-text,
.about__email-text {
  font-size: 14px;
  color: #433F3F;
  font-weight: 500;
  margin-bottom: 16px;
}

@media (min-width: 1020px) {
  .about__addr-heading,
  .about__email-heading {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .about__addr-text,
  .about__email-text {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.about__email {
  border-left: none;
  padding-left: 0;
}

@media (min-width: 1020px) {
  .about__email {
    border-left: 2px solid #D2CFCF;
    padding-left: 24px;
  }
}

.about__email-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}



/* ========== Service ========== */
.lv--service {
  background-image: url('../images/service-banner-mobile.svg');
}

@media (min-width: 1020px) {
  .lv--service {
    background-image: url('../images/service-banner.svg');
  }
}

.service {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 88%;
  margin-top: -150px;
}

@media (min-width: 768px) {
  .service {
    width: 70%;
    margin-top: -220px;
  }
}

@media (min-width: 1020px) {
  .service {
    width: 948px;
    margin-top: -280px;
  }
}

@media (min-width: 1380px) {
  .service {
    width: 1236px;
    margin-top: -180px;
  }
}

.service__desc-text {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

@media (min-width: 640px) {
  .service__desc-text {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .service__desc-text {
    margin-bottom: 32px;
    text-align: center;
  }
}

@media (min-width: 1536px) {
  .service__desc-text {
    font-size: 24px;
  }
}

.service__list {
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

@media (min-width: 1020px) {
  .service__list {
    flex-direction: row;
    gap: 1rem;
  }
}

@media (min-width: 1380px) {
  .service__list {
    gap: 1.5rem;
  }
}

.service__item {
  width: 100%;
  margin: 0 auto 2rem;
  border-radius: 24px;
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .service__item {
    width: 360px;
  }
}

@media (min-width: 1020px) {
  .service__item {
    width: 460px;
  }
}

.service__item--primary {
  background-color: rgb(255, 0, 0); /* bg-primary */
}

.service__item--second {
  background-color: rgb(30, 96, 187); /* bg-second */
}

.service__item-title {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

@media (min-width: 1020px) {
  .service__item-title {
    font-size: 20px;
  }
}

.service__item-subtitle {
  display: block;
}

.service__item-image {
  display: block;
  margin: 1.5rem auto;
  width: 165px;
}

@media (min-width: 768px) {
  .service__item-image {
    width: 400px;
  }
}

@media (min-width: 1380px) {
  .service__item-image {
    width: 522px;
    margin-left: 0.5rem;
  }
}

.service__item-text {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}


/* STRENGTH */
.service__strength {
  margin-left: auto;
  margin-right: auto;
  width: 88%;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px 24px;
}

@media (min-width: 768px) {
  .service__strength {
    width: 70%;
  }
}

@media (min-width: 1020px) {
  .service__strength {
    width: 948px;
    padding: 40px;
  }
}

@media (min-width: 1380px) {
  .service__strength {
    width: 1236px;
  }
}

.service__strength-title {
  color: rgb(30, 96, 187); /* text-second */
  font-size: 24px;
  font-weight: bold;
}

@media (min-width: 1020px) {
  .service__strength-title {
    font-size: 48px;
  }
}

.service__strength-text {
  color: #262626;
  font-size: 14px;
  font-weight: 500;
  margin: 16px 0;
}

@media (min-width: 1020px) {
  .service__strength-text {
    font-size: 24px;
    margin: 24px 0;
  }
}

.service__strength-image--pc {
  display: none;
}

@media (min-width: 1020px) {
  .service__strength-image--pc {
    display: block;
    width: 100%;
    height: auto;
  }
}

.service__strength-image--sp {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1020px) {
  .service__strength-image--sp {
    display: none;
  }
}


/* GLOBAL RELATIONSHIP */
.service__global {
  margin: 40px auto 80px;
  padding: 32px 24px;
  width: 88%;
  background-color: #ffffff;
  border-radius: 24px;
}

@media (min-width: 768px) {
  .service__global {
    width: 70%;
  }
}

@media (min-width: 1020px) {
  .service__global {
    width: 948px;
    padding: 40px;
  }
}

@media (min-width: 1380px) {
  .service__global {
    width: 1236px;
    margin-bottom: 120px;
  }
}

.service__global-title {
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #1E60BB;
}

@media (min-width: 1020px) {
  .service__global-title {
    font-size: 40px;
    line-height: 40px;
  }
}

@media (min-width: 1380px) {
  .service__global-title {
    font-size: 48px;
    line-height: 56px;
  }
}

.service__global-text {
  margin: 16px 0;
  font-size: 14px;
  font-weight: 500;
  color: #262626;
  line-height: 17px;
  text-align: left;
}

@media (min-width: 1020px) {
  .service__global-text {
    margin: 24px 0;
    font-size: 18px;
    line-height: 21px;
  }
}

@media (min-width: 1380px) {
  .service__global-text {
    font-size: 24px;
    line-height: 28px;
  }
}



/* ========== Works ========== */
.lv--works {
  background-image: url('../images/works-banner-mobile.svg');
}

@media (min-width: 1020px) {
  .lv--works {
    background-image: url('../images/works-banner.svg');
  }
}
.works {
  margin: 0 auto;
  margin-top: -130px;
  width: 88%;
  z-index: 10;
}

@media (min-width: 768px) {
  .works {
    margin-top: -160px;
    width: 70%;
  }
}

@media (min-width: 1020px) {
  .works {
    margin-top: -260px;
    width: 948px;
  }
}

@media (min-width: 1380px) {
  .works {
    margin-top: -120px;
    width: 1236px;
  }
}

.works__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 32px;
  position: relative;
}

.works__item {
  display: block;
  width: 100%;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .works__item {
    width: 360px;
  }
}

@media (min-width: 1020px) {
  .works__list {
    justify-content: flex-start;
  }

  .works__item {
    width: 458px;
    margin-top: 32px;
  }
}

@media (min-width: 1380px) {
  .works__item {
    width: 390px;
  }
}

.works__thumbnail {
  display: block;
  margin: 24px auto 0;
  border-radius: 24px;
  width: 90%;
}
@media (min-width: 1020px) {
  .works__thumbnail {
    margin-top: 0;
  }
}

.works__desc {
  background-color: rgb(255, 0, 0); /* .bg-primary */
  border-radius: 24px;
  padding: 24px;
  margin-top: -16px;
  width: 100%;
}

.works__title {
  font-size: 18px;
  font-weight: bold;
}

@media (min-width: 1536px) {
  .works__title {
    font-size: 24px;
  }
}

.works__company {
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 8px;
}

.works__period {
  font-size: 16px;
  font-weight: 500;
  margin-top: 8px;
}

.works__country {
  font-size: 16px;
  font-weight: 500;
  margin-top: 8px;
}



/* ========== Works詳細 ========== */
.work-detail {
  width: 90%;
  margin: 0 auto;
  padding-top: 96px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .work-detail {
    width: 70%;
    padding-top: 136px;
  }
}

@media (min-width: 1020px) {
  .work-detail {
    width: 948px;
    padding-top: 172px;
  }
}

@media (min-width: 1380px) {
  .work-detail {
    width: 1236px;
    padding-top: 212px;
  }
}

.work-detail__client {
  font-size: 16px;
  font-weight: 500;
  color: #1A1919;
}

@media (min-width: 768px) {
  .work-detail__client {
    font-size: 20px;
  }
}

@media (min-width: 1020px) {
  .work-detail__client {
    font-size: 24px;
  }
}

@media (min-width: 1380px) {
  .work-detail__client {
    font-size: 28px;
  }
}

.work-detail__client-label {
  color: #3079DE;
}

.work-detail__title {
  margin: 16px 0 24px;
  font-size: 24px;
  font-weight: 700;
  color: #1A1919;
}

.work-detail__thumbnail {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.work-detail__panel {
  margin: 24px 0 24px;
  padding: 16px;
  background-color: #f3f2f2;
  border-radius: 24px;
}

@media (min-width: 768px) {
  .work-detail__panel {
    margin: 40px 0;
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.work-detail__panel-part {
  border-left: 1px solid #D9D9D9;
  margin-bottom: 16px;
  padding-left: 8px;
  color: #5D5858;
}

@media (min-width: 768px) {
  .work-detail__panel-part {
    margin-bottom: 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 24px;
  }
}

.work-detail__hint {
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .work-detail__hint {
    font-size: 16px;
  }
}

@media (min-width: 1020px) {
  .work-detail__hint {
    font-size: 20px;
  }
}

@media (min-width: 1380px) {
  .work-detail__hint {
    font-size: 24px;
  }
}

.work-detail__desc {
  font-size: 16px;
  font-weight: 700;
}

@media (min-width: 1020px) {
  .work-detail__desc {
    font-size: 20px;
  }
}

@media (min-width: 1380px) {
  .work-detail__desc {
    font-size: 24px;
  }
}

.work-detail__content p {
  font-size: 16px;
  font-weight: 500;
  color: #433F3F;
}

@media (min-width: 1020px) {
  .work-detail__content p {
    font-size: 20px;
  }
}

@media (min-width: 1380px) {
  .work-detail__content p {
    font-size: 24px;
  }
}

.work-detail__links-title {
  color: #958E8E;
  font-size: 16px;
  font-weight: 500;
  margin: 24px 0;
}

@media (min-width: 768px) {
  .work-detail__links-title {
    font-size: 20px;
  }
}

@media (min-width: 1020px) {
  .work-detail__links-title {
    font-size: 24px;
  }
}

.work-detail__link {
  display: block;
  max-width: max-content;
  font-size: 14px;
  color: #5C96E5;
}

.work-detail__link:hover {
  color: #FF0000;
}




/* ========== Creators ========== */
.lv--creators {
  background-image: url('../images/creators-banner-mobile.svg');
}

@media (min-width: 1020px) {
  .lv--creators {
    background-image: url('../images/creators-banner.svg');
  }
}

.creators {
  margin: 0 auto;
  width: 88%;
  margin-top: -130px;
  position: relative;
}

@media (min-width: 768px) {
  .creators {
    margin-top: -210px;
  }
}

@media (min-width: 1020px) {
  .creators {
    margin-top: -220px;
    width: 948px;
  }
}

@media (min-width: 1380px) {
  .creators {
    margin-top: -100px;
    width: 1236px;
  }
}


/* ========== Blogs ========== */
.lv--blogs {
  background: url('../images/blog-banner-mobile.svg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}

@media (min-width: 1020px) {
  .lv--blogs {
    background-image: url('../images/blog-banner.svg');
  }
}

/* コンテナ */
.blogs__container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin-top: -100px;
  padding: 0 4%;
  position: relative;
}

@media (min-width: 1020px) {
  .blogs__container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    column-gap: 40px;
    padding: 0;
    margin-top: -220px;
  }
}
@media (min-width: 1380px) {
  .blogs__container {
    margin-top: -110px;
    column-gap: 64px;
  }
}
@media (min-width: 1536px) {
  .blogs__container {
    margin-top: -50px;
  }
}

/* カテゴリー */
.blogs__categories {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 32px;
  width: 100%;
}
@media (min-width: 768px) {
  .blogs__categories {
    width: 560px;
  }
}
@media (min-width: 1020px) {
  .blogs__categories {
    height: 408px;
    width: 248px;
  }
}
@media (min-width: 1380px) {
  .blogs__categories {
    height: 416px;
  }
}

.blogs__categories-title {
  font-size: 24px;
  font-weight: 500;
  color: #174A91;
}

@media (min-width: 1020px) {
  .blogs__categories-title {
    font-size: 28px;
  }
}

.blogs__categories-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blogs__categories-item a{
  border-bottom: 1px solid #f3f2f2;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 14px;
  color: #262626;
}

@media (min-width: 1020px) {
  .blogs__categories-item a{
    font-size: 18px;
  }
}

.blogs__arrow {
  width: 16px;
  transition: transform 0.3s ease-in-out;
}

.blogs__categories-item:hover .blogs__arrow {
  transform: translateX(3px);
}

@media (min-width: 1020px) {
  .blogs__arrow {
    width: 24px;
  }
}

/* カテゴリ説明 */
.blogs__category-desc {
  width: 100%;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 24px;
  margin-bottom: 40px;
}

@media (min-width: 1380px) {
  .blogs__category-desc {
    margin-bottom: 56px;
  }
}

.blogs__category-label {
  font-size: 12px;
  font-weight: bold;
  color: #7B7272;
}

@media (min-width: 1020px) {
  .blogs__category-label {
    font-size: 16px;
  }
}

.blogs__category-title {
  font-size: 24px;
  font-weight: bold;
  color: #1E60BB;
  margin: 16px 0;
}

@media (min-width: 1020px) {
  .blogs__category-title {
    font-size: 32px;
  }
}
@media (min-width: 1380px) {
  .blogs__category-title {
    font-size: 48px;
    margin: 24px 0;
  }
}

.blogs__category-text {
  font-size: 14px;
  font-weight: 500;
  color: #262626;
  line-height: 28px;
}

@media (min-width: 1020px) {
  .blogs__category-text {
    font-size: 16px;
  }
}
@media (min-width: 1380px) {
  .blogs__category-text {
    font-size: 24px;
  }
}

/* 投稿一覧 */
.blogs__items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 24px;
}

@media (min-width: 768px) {
  .blogs__items {
    width: 560px;
    row-gap: 0;
  }
}

@media (min-width: 1020px) {
  .blogs__items {
    width: 660px;
  }
}

@media (min-width: 1380px) {
  .blogs__items {
    width: 924px;
  }
}

.blogs__item {
  width: 100%;
  text-decoration: none;
}

@media (min-width: 768px) {
  .blogs__item {
    margin-bottom: 40px;
  }
}
@media (min-width: 1020px) {
  .blogs__item {
    margin-bottom: 54px;
    width: 318px;
  }
}
@media (min-width: 1380px) {
  .blogs__item {
    width: 292px;
  }
}

.blogs__item-image {
  width: 100%;
  border-radius: 16px;
}

.blogs__item-title {
  margin: 16px 0 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  color: #1A1919;
}

@media (min-width: 393px) {
  .blogs__item-title {
    font-size: 18px;
  }
}

.blogs__item-excerpt {
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 500;
  color: #433F3F;
}

@media (min-width: 393px) {
  .blogs__item-excerpt {
    font-size: 14px;
    line-height: 17px;
  }
}

.blogs__item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blogs__item-date {
  font-size: 10px;
  font-weight: bold;
  color: #958E8E;
}

@media (min-width: 768px) {
  .blogs__item-date {
    font-size: 12px;
  }
}

.blogs__item-category {
  background: #FFADAD;
  color: #262626;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 24px;
}

/* 投稿がないとき */
.blogs__no-posts {
  font-size: 14px;
  color: #7B7272;
  text-align: center;
}

.blogs__pagination{
  margin: 8px auto 40px;
}
@media (min-width: 1020px) {
  .blogs__pagination{
    margin: 40px auto 40px;
  }
}


/* ========== Blogs詳細 ========== */
.blog-detail {
  margin: 80px auto;
  width: 90%;
  background-color: #fff;
  border-radius: 24px;
  padding: 16px;
}
@media (min-width: 768px) {
  .blog-detail {
    margin-top: 94px;
    width: 70%;
    border-radius: 24px;
    padding: 32px 24px;
  }
}
@media (min-width: 1020px) {
  .blog-detail {
    margin-top: 144px;
    width: 948px;
    padding: 60px 40px;
  }
}
@media (min-width: 1380px) {
  .blog-detail {
    margin-top: 172px;
    width: 1236px;
  }
}

.blog-detail__title {
  color: #1A1919;
  font-size: 20px;
  font-weight: bold;
  margin: 16px 0 24px;
}

@media (min-width: 1020px) {
  .blog-detail__title {
    font-size: 36px;
  }
}

.blog-detail__tags {
  margin-bottom: 16px;
}

.blog-detail__tag {
  margin-right: 0.5rem;
  background-color: #FAFAF4;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 24px;
  color: #262626;
}

.blog-detail__date {
  font-size: 10px;
  font-weight: bold;
  color: #958E8E;
}
@media (min-width: 768px) {
  .blog-detail__date {
    font-size: 12px;
  }
}

.blog-detail__thumbnail {
  width: 100%;
  margin: 16px 0;
  display: block;
}

.blog-detail__content {
  font-size: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.blog-detail h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(67 63 63 / var(--tw-text-opacity));
}
@media (min-width: 768px) {
  .blog-detail h2 {
    font-size: 24px;
  }
}
.blog-detail h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(67 63 63 / var(--tw-text-opacity));
}
@media (min-width: 768px) {
  .blog-detail h3 {
    font-size: 20px;
  }
}
.blog-detail p {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 16px;
}
.blog-detail ol,
.blog-detail ul {
  margin: 18px;
  list-style-type: decimal;
}
.blog-detail img {
    margin-top: 16px;
    margin-bottom: 16px
}
.blog-detail li {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: 16px
}
.blog-detail a {
    font-size: 16px;
    --tw-text-opacity: 1;
    color: rgb(255 0 0 / var(--tw-text-opacity));
    text-decoration-line: underline;
    text-decoration-color: #1E60BB;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    word-break: break-word;
}
/* バナー */
.blog-detail__document-banner {
  margin: 40px auto;
  width: 90%;
}
@media (min-width: 768px) {
  .blog-detail__document-banner {
    width: 70%;
  }
}
@media (min-width: 1020px) {
  .blog-detail__document-banner {
    margin-top: 80px;
    margin-bottom: 80px;
    width: 948px;
  }
}
@media (min-width: 1380px) {
  .blog-detail__document-banner {
    width: 1236px;
  }
}

.blog-detail__document-banner--desktop {
  display: none;
}

.blog-detail__document-banner--mobile {
  display: block;
}

@media (min-width: 1020px) {
  .blog-detail__document-banner--desktop {
    display: block;
  }

  .blog-detail__document-banner--mobile {
    display: none;
  }
}

/* 関連記事 */
.blog-detail__related-posts {
  margin: 0 auto;
  width: 90%;
}
@media (min-width: 768px) {
  .blog-detail__related-posts {
    width: 70%;
  }
}
@media (min-width: 1020px) {
  .blog-detail__related-posts {
    width: 948px;
  }
}
@media (min-width: 1380px) {
  .blog-detail__related-posts {
    width: 1236px;
  }
}

.blog-detail__related-title {
  color: #1A1919;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .blog-detail__related-title {
    margin-bottom: 40px;
  }
}
@media (min-width: 1020px) {
  .blog-detail__related-title {
    font-size: 24px;
  }
}

.blog-detail__related-container {
  margin-bottom: 40px;
}
@media (min-width: 1020px){
  .blog-detail__related-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
  }
}

.blog-detail__related-item {
  display: block;
  width: 100%;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .blog-detail__related-item {
    margin-bottom: 40px;
  }
}

@media (min-width: 1020px) {
  .blog-detail__related-item {
    width: 295px;
    margin-bottom: 54px;
  }
}
@media (min-width: 1380px) {
  .blog-detail__related-item {
    width: 291px;
  }
}

.blog-detail__related-thumb {
  width: 100%;
  height: auto;
  display: block;
}

.blog-detail__related-heading {
  font-size: 14px;
  font-weight: bold;
  color: #1A1919;
  margin: 16px 0 8px;
}
@media (min-width: 393px) {
  .blog-detail__related-heading {
    font-size: 16px;
  }
}

.blog-detail__related-excerpt {
  font-size: 10px;
  color: #433F3F;
  margin-bottom: 8px;
}
@media (min-width: 393px) {
  .blog-detail__related-excerpt {
    font-size: 14px;
  }
}

.blog-detail__related-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: bold;
  color: #958E8E;
}
@media (min-width: 768px) {
  .blog-detail__related-meta {
    font-size: 12px;
  }
}

.blog-detail__related-meta span:nth-child(2) {
  background-color: #FFADAD;
  border-radius: 24px;
  padding: 4px 10px;
  color: #262626;
  font-size: 12px;
}



/* ========== Document ========== */
.document {
  margin: 0 auto 80px;
  width: 90%;
  padding-top: 120px;
}

.document__title {
  color: #1E60BB; /* text-second */
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

.document__desc {
  margin-top: 16px;
  margin-bottom: 64px;
  font-size: 14px;
  font-weight: 500;
  color: #262626;
  line-height: 1.6;
}

.document__form {
  background-color: #fff;
  border-radius: 24px;
  padding: 24px;
}

.document select{
  appearance: auto;
}

@media (min-width: 768px) {
  .document {
    width: 70%;
  }

  .document__desc {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 0;
  }

  .document__form {
    padding: 40px;
  }
}

@media (min-width: 1020px) {
  .document {
    width: 948px;
    margin-bottom: 120px;
    padding-top: 172px;
  }

  .document__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
  }

  .document__title {
    font-size: 40px;
    line-height: 48px;
  }

  .document__desc {
    font-size: 24px;
    margin-top: 0;
  }
}

@media (min-width: 1380px) {
  .document {
    width: 1236px;
    padding-top: 212px;
  }

  .document__head {
    margin-bottom: 120px;
  }

  .document__title {
    font-size: 80px;
    line-height: 96px;
  }

  .document__desc {
    font-size: 24px;
  }
}


/* ========== Contact ========== */
.contact {
  margin: 0 auto 80px;
  width: 90%;
  padding-top: 120px;
}

.contact__head {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 64px;
}

.contact__title {
  color: #1E60BB; /* text-second */
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

.contact__desc {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #262626;
  line-height: 1.6;
}

.contact__form {
  background-color: #fff;
  border-radius: 24px;
  padding: 24px;
}

@media (min-width: 768px) {
  .contact {
    width: 70%;
  }

  .contact__title {
    font-size: 28px;
  }

  .contact__desc {
    font-size: 16px;
    margin-top: 24px;
  }
  .contact__form {
    padding: 40px;
  }
}

@media (min-width: 1020px) {
  .contact {
    width: 948px;
    margin-bottom: 120px;
    padding-top: 172px;
  }

  .contact__form {
    width: 50%;
  }

  .contact__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
  }

  .contact__title {
    font-size: 40px;
    line-height: 48px;
  }

  .contact__desc {
    font-size: 20px;
    margin-top: 0;
  }
}

@media (min-width: 1380px) {
  .contact {
    width: 1236px;
    padding-top: 212px;
  }

  .contact__title {
    font-size: 80px;
    line-height: 96px;
  }

  .contact__desc {
    font-size: 24px;
  }
}


/* ========== 404ページ ========== */
.page404 {
  margin: 123px auto 83px;
  min-height: 170px;
  width: 50%;
  text-align: center;
}

.page404__status {
  font-size: 80px;
  font-weight: 700;
  line-height: 60px;
  color: #1E60BB; /* text-second */
}

.page404__title {
  margin-top: 23px;
  font-size: 24px;
  font-weight: 700;
  color: #1E60BB;
}

.page404__desc {
  margin-top: 13px;
  font-size: 14px;
  font-weight: 600;
  color: #958E8E; /* text-[#958E8E] */
}

@media (min-width: 768px) {
  .page404 {
    margin-top: 134px;
    margin-bottom: 94px;
  }

  .page404__desc {
    margin-top: 26px;
  }
}

@media (min-width: 1020px) {
  .page404 {
    margin-top: 174px;
    margin-bottom: 144px;
  }

  .page404__status {
    font-size: 100px;
    line-height: 90px;
  }

  .page404__title {
    margin-top: 46px;
    font-size: 32px;
  }

  .page404__desc {
    margin-top: 36px;
    font-size: 16px;
  }
}

@media (min-width: 1380px) {
  .page404 {
    margin-top: 182px;
    margin-bottom: 172px;
  }

  .page404__status {
    font-size: 200px;
    line-height: 200px;
  }

  .page404__title {
    margin-top: 22px;
    font-size: 40px;
  }

  .page404__desc {
    margin-top: 22px;
    font-size: 24px;
  }
}

/* 未使用ファイル */
.template-title{
  height: 2000px;
  margin-top: 100px;
  color: #f00;
}
.search{
  height: 700px;
}
.search__title{
  color: #000;
  margin-left: 40px;
  margin-top: 100px;
}
.search__text{
  margin-left: 40px;
}