@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  transition: font-size 0.2s ease-in-out;
}

/* PC: 769px以上 */
@media (min-width: 769px) {
  html {
    /* 1440pxで1rem = 10pxになるように計算 */
    font-size: 0.6944444444vw;
  }
}
/* SP: 768px以下 */
@media (max-width: 768px) {
  html {
    /* 390pxで1rem = 10pxになるように計算 */
    font-size: 2.3255813953vw;
  }
}
body {
  font-size: 1.2rem;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho", "Yu Mincho", "MS PMincho", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  /* color: #333333; */
  overflow-x: hidden;
  background: url("../img/main-bg.webp") repeat center center/cover;
  background-size: 40rem auto;
}

main {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.allura {
  font-family: "Allura", cursive;
  font-weight: 400;
  font-style: normal;
}

section {
  position: relative;
  /* margin: 10rem 0; */
}

p {
  font-size: 1.6rem;
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

span {
  display: inline-block;
}

li {
  list-style: none;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

/* プライバシーポリシー */
.privacy h2 {
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin: 4rem 0;
  padding-left: 2rem;
  border-left: 5px solid #5C4435;
}
.privacy p {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin-bottom: 4rem;
}

/* お知らせ記事 */
.single {
  margin: 6rem 0 11rem 0;
}
.single__contents {
  /* background-color: #fcf4e5; */
  padding: 8rem 12rem 12rem 12rem;
}
.single__info {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.single__info__date, .single__info__category {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.single .blog__list li h2 {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-weight: 600;
}
.single h1 {
  font-size: 3rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: bold;
  margin: 1.5rem 0 6.5rem 0;
}
.single_thumb {
  margin-bottom: 5rem;
}
.single_thumb img {
  width: 100%;
  height: 54rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.single h2,
.single h3,
.single h4,
.single h5,
.single h6,
.single p {
  letter-spacing: 0.12em;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.single h2 {
  font-size: 2.6rem;
}
.single h3 {
  font-size: 2.2rem;
}
.single h4 {
  font-size: 2rem;
}
.single h5 {
  font-size: 1.8rem;
}
.single h6 {
  font-size: 1.7rem;
}
.single p {
  font-size: 1.6rem;
}
.single_btn {
  margin-top: 8rem;
}
.single_btn a {
  margin: auto;
}

.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.delay02 {
  animation-delay: 0.2s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay08 {
  animation-delay: 0.8s;
}

.delay10 {
  animation-delay: 1s;
}

.delay12 {
  animation-delay: 1.2s;
}

.delay14 {
  animation-delay: 1.4s;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.fade {
  opacity: 0;
}

/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  p {
    font-size: 1.4rem;
  }
  .delay02,
  .delay04,
  .delay06,
  .delay08,
  .delay10 {
    animation-delay: 0.4s;
  }
}
.f-txt {
  font-size: 1.9rem;
  line-height: 2;
  font-weight: 500;
  color: #4D4D4D;
}

.f-ttl {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 600;
  color: #4D4D4D;
}

.f-sub_ttl {
  font-size: 2.4rem;
  line-height: 2;
  font-weight: 600;
  color: #f8f8f8;
}

.btn {
  width: 40rem;
  padding: 1rem 2.4rem 1rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}
.btn:hover .icon {
  rotate: 180deg;
}
.btn:hover .arw {
  transform: translateX(0.5rem);
}
.btn.btn__main {
  background: linear-gradient(180deg, #06C3D5 0%, #0389AD 100%);
  border-radius: 999px;
}
.btn.btn__main:hover {
  background: linear-gradient(0deg, #06C3D5 0%, #0389AD 100%);
}
.btn.btn__white {
  background: #F8F8F8;
  border-radius: 999px;
}
.btn.btn__white .btn__text {
  color: #049BBC;
}
.btn .icon {
  width: 5.6rem;
  transition: all 0.3s ease-in-out;
}
.btn .arw {
  width: 1.6rem;
  transition: all 0.3s ease-in-out;
}
.btn__text {
  margin-right: 2rem;
}

.section__title {
  font-size: 4.8rem;
  color: #049BBC;
  line-height: 1.5;
  font-weight: 600;
  padding-bottom: 0.4rem;
  position: relative;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 3.2rem;
    padding-bottom: 0.8rem;
  }
}
.section__title::after {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 20rem;
  height: 1px;
  border-bottom: 0.2rem dashed #049BBC;
}

.rotate {
  width: 50rem;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: -13rem;
  right: -13rem;
  transform-origin: center center;
  z-index: -1;
}
@media (max-width: 768px) {
  .rotate {
    width: 12rem;
  }
}
.rotate.cw {
  bottom: -13.5rem;
  right: -13.5rem;
  transform: rotate(0deg);
  transition: transform 0.3s ease-out;
}
@media (max-width: 768px) {
  .rotate.cw {
    bottom: -3.5rem;
    right: -3.5rem;
  }
}
.rotate.ccw {
  bottom: -13.5rem;
  left: -13.5rem;
  transform: rotate(0deg);
  transition: transform 0.3s ease-out;
}
@media (max-width: 768px) {
  .rotate.ccw {
    bottom: -3.5rem;
    left: -3.5rem;
  }
}
.rotate img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes rotate-cw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate-ccw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/* =====================
    header
===================== */
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  background-color: #f8f8f8;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}
.header__container {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .header__container {
    padding: 0.8rem;
    padding-right: 1.6rem;
  }
}
.header__logo a:hover {
  opacity: 0.6;
}
.header__logo a img {
  margin-left: 3.2rem;
  width: 8.3rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
@media (max-width: 768px) {
  .header__logo a img {
    width: 6.7rem;
    margin-left: 0;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.4rem;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav .header__list {
  display: flex;
  align-items: center;
}
.header__nav .header__list .header__item {
  height: 5.2rem;
  overflow: visible;
}
.header__nav .header__list .header__item:not(:first-child) {
  border-left: 1px solid #FFBB00;
}
.header__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 4.6rem;
  position: relative;
  height: 5.2rem;
}
.header__link:hover::after {
  opacity: 1;
}
.header__link:hover .en {
  margin-bottom: 1.5rem;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/icon_gear-h.webp") no-repeat center center/cover;
  aspect-ratio: 1/1;
  opacity: 0;
  transform: translateY(90%);
  transition: all 0.3s ease-in-out;
}
.header__link .jp {
  color: #000;
  line-height: 2;
  transition: all 0.3s ease-in-out;
  font-size: 1.9rem;
}
.header__link .en {
  color: #049BBC;
  line-height: 1.5;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
}
.header__contact {
  padding: 1.4rem 2.4rem 2.2rem;
  background: linear-gradient(180deg, #06C3D5 0%, #0389AD 100%);
  transition: all 0.3s ease-in-out;
}
.header__contact .inner {
  display: flex;
  align-items: center;
  padding-bottom: 0.4rem;
  gap: 1.6rem;
  border-bottom: 1px solid #F8F8F8;
}
.header__contact .inner svg {
  width: 2.6rem;
  height: 1.8rem;
}
.header__contact .inner span {
  font-size: 2.4rem;
  line-height: 2;
  color: #F8F8F8;
  font-weight: 600;
}
.header__contact:hover {
  background: linear-gradient(0deg, #06C3D5 0%, #0389AD 100%);
}
.header__menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #f8f8f8;
  padding: 8.8rem 2.4rem 4rem;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
  overflow-y: auto;
}
.header__menu.show {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.header__menu .header__list {
  padding: 0 4.8rem 6.7rem;
}
.header__menu__item .header__menu__link {
  align-items: flex-start;
  padding: 2.4rem 0;
  border-bottom: 1px solid #FFBB00;
}
.header__menu__item .header__menu__link:hover {
  background-color: transparent;
}
.header__menu__item .header__menu__link:hover .jp {
  color: #049BBC;
}
.header__menu__item .header__menu__link:hover .en {
  color: #FFBB00;
}
.header__menu__item .header__menu__link span {
  display: block;
}
.header__menu__item .header__menu__link span.jp {
  font-size: 1.9rem;
  color: #4D4D4D;
}
.header__menu__item .header__menu__link span.en {
  font-size: 1rem;
  color: #049BBC;
}
.header__menu .header__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.6rem 3.2rem;
  gap: 1.6rem;
  background: linear-gradient(180deg, #06C3D5 0%, #0389AD 100%);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}
.header__menu .header__contact:hover {
  background: linear-gradient(0deg, #06C3D5 0%, #0389AD 100%);
}
.header__menu .header__contact__icon {
  width: 2.6rem;
  height: 1.8rem;
}
.header__menu .header__contact__text {
  font-size: 2.4rem;
  line-height: 2;
  color: #f8f8f8;
  font-weight: 600;
}
.header__menu .header__contact__arw {
  width: 1rem;
  height: 1.8rem;
}
.header__icon {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 4rem;
  height: 3rem;
  cursor: pointer;
  z-index: 5000;
  position: relative;
}
@media (max-width: 768px) {
  .header__icon {
    display: block;
  }
}
.header__icon.open .header__bar:nth-child(1) {
  transform: rotate(45deg) translate(0);
}
.header__icon.open .header__bar:nth-child(2) {
  opacity: 0;
}
.header__icon.open .header__bar:nth-child(3) {
  transform: rotate(315deg) translate(0);
}
.header__bar {
  width: 100%;
  height: 2px;
  background-color: #4D4D4D;
  border-radius: 0.1rem;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.header__bar:nth-child(1) {
  transform: translateY(-1.5rem);
}
.header__bar:nth-child(2) {
  transform: translateY(0);
}
.header__bar:nth-child(3) {
  transform: translateY(1.5rem);
}

/* =====================
    footer
===================== */
.footer {
  padding-top: 12rem;
  position: relative;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 6.4rem;
  }
}
.footer .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 16rem;
}
@media (max-width: 768px) {
  .footer .wrapper {
    padding: 0 2.4rem;
  }
}
.footer__logo {
  width: 20rem;
}
@media (max-width: 768px) {
  .footer__logo {
    width: 12rem;
  }
}
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4.8rem 0;
  width: 100%;
}
@media (max-width: 768px) {
  .footer__nav {
    padding: 0 1.6rem 4.8rem;
    flex-direction: column;
    gap: 4rem;
  }
}
.footer__list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.2rem 0;
  width: 100%;
}
@media (max-width: 768px) {
  .footer__list {
    flex-direction: column;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .footer__list .footer__item {
    width: 100%;
  }
}
.footer__list .footer__item:last-child a {
  border-right: none;
}
.footer__list .footer__item .footer__link {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 3.2rem;
  transition: all 0.3s ease-in-out;
  border-right: 1px solid #FFBB00;
}
@media (max-width: 768px) {
  .footer__list .footer__item .footer__link {
    padding: 2.4rem 0;
    border-right: none;
    border-bottom: 1px solid #FFBB00;
    border-right: none;
    width: 100%;
  }
}
.footer__list .footer__item .footer__link:hover .jp,
.footer__list .footer__item .footer__link:hover .en {
  color: #FFBB00;
}
.footer__list .footer__item .footer__link .jp {
  display: block;
  color: #4D4D4D;
  font-size: 2.4rem;
  line-height: 2;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .footer__list .footer__item .footer__link .jp {
    text-align: left;
    font-size: 1.9rem;
  }
}
.footer__list .footer__item .footer__link .en {
  display: block;
  text-align: center;
  color: #049BBC;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .footer__list .footer__item .footer__link .en {
    text-align: left;
  }
}
.footer__ex__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .footer__ex__list {
    flex-direction: column;
    gap: 1.6rem;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer__ex__list .footer__item {
    width: 100%;
  }
}
.footer__ex__list .footer__item .footer__link {
  font-size: 1.9rem;
  line-height: 2;
  font-weight: 500;
  color: #049BBC;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .footer__ex__list .footer__item .footer__link {
    text-align: left;
  }
}
.footer__ex__list .footer__item .footer__link:hover {
  color: #FFBB00;
}
.footer__social__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .footer__social__contact {
    flex-direction: column-reverse;
    width: 100%;
  }
}
.footer__social__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}
.footer__social__list .footer__item .footer__link img {
  width: 5rem;
}
.footer__social__list .footer__item .footer__link:hover {
  opacity: 0.7;
  scale: 0.9;
}
.footer__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 1.6rem 3.2rem;
  gap: 1.6rem;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(180deg, #06C3D5 0%, #0389AD 100%);
}
@media (max-width: 768px) {
  .footer__contact {
    width: 100%;
  }
}
.footer__contact:hover {
  background: linear-gradient(0deg, #06C3D5 0%, #0389AD 100%);
}
.footer__contact svg {
  width: 2.6rem;
  height: 1.8rem;
}
.footer__contact .jp {
  font-size: 2.4rem;
  line-height: 2;
  color: #f8f8f8;
  font-weight: 600;
  text-align: center;
}
.footer__contact .icon {
  display: none;
}
@media (max-width: 768px) {
  .footer__contact .icon {
    display: block;
    width: 1rem;
    height: 1.8rem;
  }
}
.footer__copy {
  background-color: #003341;
  padding: 1.2rem 0;
  margin-top: 12rem;
}
@media (max-width: 768px) {
  .footer__copy {
    margin-top: 4rem;
    padding: 0.8rem 0;
  }
}
.footer__copy .f-txt {
  color: #f8f8f8;
  text-align: center;
}
@media (max-width: 768px) {
  .footer__copy .f-txt {
    font-size: 1.2rem;
  }
}
.footer__icon {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 768px) {
  .footer__icon {
    left: unset;
    width: 25rem;
  }
}
.footer__icon__ccw {
  position: absolute;
  z-index: 1;
  bottom: 4.7rem;
  left: -1.5rem;
  right: 0;
  width: 25rem;
  animation: rotate-ccw 10s linear infinite;
}
@media (max-width: 768px) {
  .footer__icon__ccw {
    display: none;
  }
}
.footer__icon__cw {
  position: absolute;
  z-index: 1;
  bottom: 5.6rem;
  left: 17.5rem;
  right: 0;
  width: 16rem;
  animation: rotate-cw 10s linear infinite;
}
@media (max-width: 768px) {
  .footer__icon__cw {
    display: none;
  }
}

/* =====================
    Top page
===================== */
.index__fv {
  position: relative;
  padding-top: 8.8rem;
}
.index__fv__content {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0 16rem;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .index__fv__content {
    padding: 0 2.4rem;
    top: unset;
    bottom: 9.6rem;
  }
}
.index__fv__content__text {
  font-size: 2.4rem;
  line-height: 2;
  color: #4D4D4D;
  font-weight: 600;
}
.index__fv__content__title {
  width: 50rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .index__fv__content__title {
    width: 38.4rem;
  }
}
.index__fv__content .contact__link {
  margin-top: 6.4rem;
}
@media (max-width: 768px) {
  .index__fv__content .contact__link {
    margin-top: 18.5rem;
    width: 100%;
  }
}

.contact__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 3.2rem;
  gap: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(180deg, #06C3D5 0%, #0389AD 100%);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.08);
  border-radius: 900px;
}
.contact__link:hover {
  background: linear-gradient(0deg, #06C3D5 0%, #0389AD 100%);
}
.contact__link__icon {
  width: 2.6rem;
  height: 1.8rem;
}
.contact__link__icon svg {
  width: 100%;
  height: 100%;
}
.contact__link__text {
  font-size: 2.4rem;
  line-height: 2;
  color: #f8f8f8;
  font-weight: 600;
}
.contact__link__text .pc {
  display: inline-block;
}
@media (max-width: 768px) {
  .contact__link__text .pc {
    display: none;
  }
}
.contact__link__arw {
  width: 1rem;
  height: 1.8rem;
}
.contact__link__arw svg {
  width: 100%;
  height: 100%;
}
.contact__link.cta {
  padding: 0 2.4rem 0 1.6rem;
  gap: 1.2rem;
}
.contact__link.cta .contact__link__icon {
  width: 7.2rem;
  height: 7.3rem;
}
.contact__link.cta .contact__link__arw {
  width: 2.4rem;
  height: 7.3rem;
}
.contact__link.pc {
  display: flex;
}
@media (max-width: 768px) {
  .contact__link.pc {
    display: none !important;
  }
}
.contact__link.sp {
  display: none;
}
@media (max-width: 768px) {
  .contact__link.sp {
    display: flex;
  }
}

.index__concept {
  padding: 10rem 16rem;
  background: url("../img/fv_below-bg.webp") no-repeat center center/cover;
}
@media (max-width: 768px) {
  .index__concept {
    padding: 6.4rem 2.4rem;
    background: url("../img/fv_below-bg-sp.webp") no-repeat center center/cover;
  }
}
.index__concept .wrapper {
  padding: 8rem 10rem;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6.4rem;
}
@media (max-width: 768px) {
  .index__concept .wrapper {
    padding: 3.2rem 1.6rem;
  }
}
.index__concept__title {
  font-size: 3.2rem;
  color: #049BBC;
  line-height: 1.5;
  font-weight: medium;
  padding-bottom: 0.4rem;
}
@media (max-width: 768px) {
  .index__concept__title {
    text-align: center;
  }
}
.index__concept__text {
  font-size: 1.9rem;
  color: #4D4D4D;
  line-height: 2;
  text-align: center;
}

.index__about {
  padding: 10rem 8.8rem;
}
@media (max-width: 768px) {
  .index__about {
    padding: 6.4rem 2.4rem;
  }
}
.index__about .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6.4rem;
}
@media (max-width: 768px) {
  .index__about .wrapper {
    gap: 4rem;
  }
}
.index__about__content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 6.4rem;
  padding-left: 7.2rem;
}
@media (max-width: 768px) {
  .index__about__content {
    gap: 6rem;
    flex-direction: column;
    padding-left: 0;
    width: 100%;
  }
}
.index__about__content__img {
  position: relative;
  z-index: 2;
}
.index__about__content__img .img {
  width: 66rem;
  border-radius: 10rem;
  border-top-right-radius: 2.4rem;
  border-bottom-left-radius: 2.4rem;
  overflow: hidden;
  box-shadow: 1.6rem 1.6rem 0 0 #049BBC;
}
@media (max-width: 768px) {
  .index__about__content__img .img {
    width: 100%;
    height: 26rem;
    border-radius: 2.4rem;
    box-shadow: none;
  }
}
.index__about__content__img .rotate {
  width: 33rem;
  bottom: -9rem;
  right: -10rem;
}
@media (max-width: 768px) {
  .index__about__content__img .rotate {
    width: 12rem;
    bottom: -3.5rem;
    right: -4rem;
  }
}
.index__about__text {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

.index__service {
  padding-top: 9rem;
}
@media (max-width: 768px) {
  .index__service {
    padding-top: 6rem;
  }
}
.index__service .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6.4rem;
}
@media (max-width: 768px) {
  .index__service .wrapper {
    gap: 4rem;
  }
}
.index__service__list {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
}
@media (max-width: 768px) {
  .index__service__list {
    flex-direction: column;
  }
}
.index__service__link {
  position: relative;
}
.index__service__link::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(3, 137, 173, 0.7215686275);
  transition: all 0.3s ease-in-out;
}
.index__service__link::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  border: 1px dotted #F8F8F8;
  border-radius: 2.4rem;
}
.index__service__link:hover .icon {
  transform: rotate(1turn);
}
.index__service__link:hover::before {
  background: rgba(3, 137, 173, 0.8784313725);
}
.index__service__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index__service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.index__service__text {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.index__service__text .line {
  width: 10rem;
  height: 1px;
  border-bottom: 2px dotted #F8F8F8;
}
@media (max-width: 768px) {
  .index__service__text .line {
    width: 16rem;
  }
}
@media (max-width: 768px) {
  .index__service__text .title {
    line-height: 1;
    font-size: 3.2rem;
  }
}
.index__service__text .icon {
  width: 6.4rem;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .index__service__text .icon {
    width: 4rem;
  }
}

.index__symbol {
  padding: 20rem 16rem 20rem 12rem;
}
@media (max-width: 768px) {
  .index__symbol {
    padding: 6.4rem 2.4rem;
  }
}
.index__symbol .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6.4rem;
}
@media (max-width: 768px) {
  .index__symbol .wrapper {
    gap: 4rem;
  }
}
.index__symbol__content {
  display: flex;
  align-items: center;
  gap: 6.4rem;
}
@media (max-width: 768px) {
  .index__symbol__content {
    flex-direction: column;
    justify-content: center;
    gap: 6.4rem;
  }
}
.index__symbol__img {
  width: 52.4rem;
}
@media (max-width: 768px) {
  .index__symbol__img {
    width: 100%;
  }
}
.index__symbol__text {
  width: calc(100% - 52.4rem - 6.4rem);
}
@media (max-width: 768px) {
  .index__symbol__text {
    width: 100%;
  }
}

.index__blogs {
  padding: 10rem 0;
  background: url("../img/t_blog-bg.webp") no-repeat center center/cover;
}
@media (max-width: 768px) {
  .index__blogs {
    padding: 6.4rem 0;
    background: url("../img/t_blog-bg-sp.webp") no-repeat center center/cover;
  }
}
.index__blogs .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
@media (max-width: 768px) {
  .index__blogs .wrapper {
    gap: 4.4rem;
  }
}
.index__blogs__title {
  font-size: 4.8rem;
  color: #F8F8F8;
  line-height: 1.4;
  font-weight: 500;
  width: calc(100% - 17rem);
  border-bottom: 2px dotted #F8F8F8;
  margin: 0 7rem 0 10rem;
  padding-bottom: 0.4rem;
}
@media (max-width: 768px) {
  .index__blogs__title {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    font-size: 3.2rem;
    padding: 0;
    padding-bottom: 0.8rem;
  }
}
.index__blogs__list {
  width: 100%;
  position: relative;
}
.index__blogs .slick-slider {
  position: relative;
  margin-bottom: 0 !important;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  touch-action: pan-y;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.index__blogs .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.index__blogs .slick-current {
  transform: translateY(-2rem);
}
@media (max-width: 768px) {
  .index__blogs .slick-current {
    transform: scale(1);
  }
}
.index__blogs .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .index__blogs .slick-track {
    padding: 0;
  }
}
.index__blogs .slick-arrow {
  position: absolute;
  top: -10rem;
  z-index: 10;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #06C3D5;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .index__blogs .slick-arrow {
    top: unset;
    bottom: -3.2rem;
    transform: translateY(100%);
  }
}
.index__blogs .slick-arrow:hover {
  opacity: 0.7;
}
.index__blogs .slick-arrow.slick-prev {
  right: 35.3rem;
  left: unset;
}
@media (max-width: 768px) {
  .index__blogs .slick-arrow.slick-prev {
    left: 6rem;
  }
}
.index__blogs .slick-arrow.slick-next {
  right: 7rem;
}
@media (max-width: 768px) {
  .index__blogs .slick-arrow.slick-next {
    right: 6rem;
  }
}
.index__blogs .slick-arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.index__blogs .slick-arrow.slick-prev:before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Crect%20width%3D%2224%22%20height%3D%2224%22%20rx%3D%2212%22%20fill%3D%22%2306C3D5%22/%3E%3Cpath%20d%3D%22M13.4297%208.90462L10.0964%2012.238L13.4297%2015.5713%22%20stroke%3D%22%23F8F8F8%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
}
.index__blogs .slick-arrow.slick-next:before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Crect%20width%3D%2224%22%20height%3D%2224%22%20rx%3D%2212%22%20fill%3D%22%2306C3D5%22/%3E%3Cpath%20d%3D%22M10.5703%208.90462L13.9036%2012.238L10.5703%2015.5713%22%20stroke%3D%22%23F8F8F8%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
}
.index__blogs .slick-dots {
  position: absolute;
  bottom: unset;
  top: -10.8rem;
  right: 14rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: unset;
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .index__blogs .slick-dots {
    top: unset;
    bottom: -5.2rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.index__blogs .slick-dots li {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.index__blogs .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #F8F8F8;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.index__blogs .slick-dots li button:hover {
  background: #FFBB00;
}
.index__blogs .slick-dots li button::before {
  content: none;
}
.index__blogs .slick-dots li.slick-active button {
  background: #FFBB00;
}
.index__blogs__item {
  background: #f8f8f8;
  border-radius: 2.4rem;
  padding: 2.4rem;
  overflow: hidden;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  margin: 0 1rem;
}
@media (max-width: 768px) {
  .index__blogs__item {
    margin: 0 0.3rem;
    transform: scale(0.95);
    margin: 0;
    padding: 2.4rem 1.4rem;
  }
}
.index__blogs__item__img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 1.6rem;
}
.index__blogs__item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.index__blogs__item__text {
  margin-top: 1.6rem;
}
.index__blogs__item__text .meta {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .index__blogs__item__text .meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.index__blogs__item__text .meta .date {
  font-size: 1.6rem;
  color: #4D4D4D;
  line-height: 2;
}
@media (max-width: 768px) {
  .index__blogs__item__text .meta .date {
    font-size: 1.9rem;
  }
}
.index__blogs__item__text .meta .category {
  display: flex;
  gap: 0.4rem;
}
.index__blogs__item__text .meta .category span {
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.4rem 2.4rem;
}
.index__blogs__item__text .meta .category span.item {
  background-color: #FFD700;
  color: #f8f8f8;
}
.index__blogs__item__text .meta .category span.guild {
  background-color: #FF6B35;
  color: #f8f8f8;
}
.index__blogs__item__text .index__blogs__item__title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #000;
  line-height: 1;
  margin-top: 1.6rem;
  padding-bottom: 1.6rem;
  position: relative;
}
@media (max-width: 768px) {
  .index__blogs__item__text .index__blogs__item__title {
    margin-top: 3.4rem;
  }
}
.index__blogs__item__text .index__blogs__item__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 1px;
  border-bottom: 2px dashed #049BBC;
}
.index__blogs__item__text .index__blogs__item__desc {
  font-size: 1.9rem;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #4D4D4D;
  font-weight: 300;
  margin-top: 1.6rem;
}
@media (max-width: 768px) {
  .index__blogs__item__text .index__blogs__item__desc {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    line-height: 2;
  }
}
@media (max-width: 768px) {
  .index__blogs .btn {
    width: calc(100% - 3.8rem);
    margin-top: 5.2rem;
  }
}

.index__contact {
  background: url("../img/t_contact-bg.webp") no-repeat center center/cover;
  padding: 16rem;
}
@media (max-width: 768px) {
  .index__contact {
    background: url("../img/t_contact-bg-sp.webp") no-repeat center center/cover;
    padding: 6rem 1.4em;
  }
}
.index__contact .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6.4rem;
  padding: 6.4rem 20rem;
  border-radius: 999px;
  background-color: #F8F8F8;
}
@media (max-width: 768px) {
  .index__contact .wrapper {
    padding: 4rem 1.6rem;
    border-radius: 4rem;
    gap: 4rem;
  }
}
.index__contact .wrapper .contact__link {
  width: 40rem;
}
@media (max-width: 768px) {
  .index__contact .wrapper .contact__link {
    width: 100%;
  }
}
.index__contact__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.index__contact__en {
  font-size: 6.4rem;
  color: #049BBC;
  line-height: 1.2;
  font-weight: 500;
  opacity: 0.25;
}
@media (max-width: 768px) {
  .index__contact__en {
    line-height: 1;
  }
}
.index__contact__jp {
  font-size: 5.6rem;
  color: #049BBC;
  line-height: 1.5;
  font-weight: bold;
}
@media (max-width: 768px) {
  .index__contact__jp {
    font-size: 3.2rem;
    text-align: center;
  }
}
.index__contact__jp .sm {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .index__contact__jp .sm {
    font-size: 3.2rem;
  }
}/*# sourceMappingURL=style.css.map */