@charset "UTF-8";
@-webkit-keyframes circlemovePC {
  0% {
    bottom: 2.5rem;
  }
  100% {
    bottom: -0.3125rem;
  }
}
@keyframes circlemovePC {
  0% {
    bottom: 2.5rem;
  }
  100% {
    bottom: -0.3125rem;
  }
}
@-webkit-keyframes circlemoveSP {
  0% {
    bottom: 2.8571428571rem;
  }
  100% {
    bottom: -0.3571428571rem;
  }
}
@keyframes circlemoveSP {
  0% {
    bottom: 2.8571428571rem;
  }
  100% {
    bottom: -0.3571428571rem;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loadAnim {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loadAnim {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*============================================================
	Base
============================================================*/
html,
body {
  width: 100%;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  html,
body {
    min-height: 100vh;
  }
}

html {
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  font-feature-settings: "palt";
  color: #444;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.7333333333vw;
    -webkit-text-size-adjust: 100%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1500px) {
  html {
    font-size: 1.1111111111vw;
  }
}
html * {
  box-sizing: border-box;
}
html.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}
@media only screen and (max-width: 767px) {
  html.fixed {
    height: -webkit-fill-available;
    height: 100vh;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
  }
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.top::before {
  position: fixed;
  content: "";
  width: 100%;
  height: 100vh;
  background: url(../img/bg_pc.svg) no-repeat center center/cover;
  left: 0;
  top: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  body.top::before {
    background-image: url(../img/bg_sp.svg);
  }
}

img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
}

a,
a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #444;
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
}

header,
main,
section,
footer {
  width: 100%;
}

main {
  flex: 1 0 auto;
  min-height: 1px;
}

/*============================================================
	Objects
============================================================*/
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.inner {
  position: relative;
  width: 88.8888888889vw;
  max-width: 1280px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    width: 89.3333333333%;
    max-width: 89.3333333333vw;
  }
}
.inner .container {
  width: 88.8888888889vw;
  max-width: 1280px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .inner .container {
    width: 100%;
    max-width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .inner .inner-small {
    padding: 0 5rem;
  }
}

/*  animation
-------------------------------------------------*/
.splitting .word {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
}
.splitting .word .char {
  display: inline-block;
  transform: translateY(var(--y, 110%));
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-property: transform;
  transition-delay: calc(0.04s * var(--char-index));
}
.splitting.is-active .word {
  --y: 0;
}

/*  components
-------------------------------------------------*/
.title-type01 {
  text-align: center;
}
.title-type01 .en {
  font-size: 5rem;
  font-family: "Space Grotesk", serif;
  font-weight: 700;
  letter-spacing: 0;
  display: flex;
  justify-content: center;
  gap: 0 0.5rem;
}
@media only screen and (max-width: 767px) {
  .title-type01 .en {
    font-size: 4.2857142857rem;
  }
}
.title-type01 .ja {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 800;
  display: block;
  margin-top: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .title-type01 .ja {
    font-size: 1.2857142857rem;
    margin-top: 0.3571428571rem;
  }
}
@media only screen and (max-width: 767px) {
  .title-type01.sp .en:not(:first-child) {
    margin-top: -0.1785714286rem;
  }
}

.btn-type01 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 100rem;
  border: 2px solid #444;
  background-color: #fff;
  width: 100%;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .btn-type01 {
    font-size: 1.2857142857rem;
    height: 4.5714285714rem;
  }
}
@media print, screen and (min-width: 768px) {
  .btn-type01:hover {
    background-color: #FFB857;
    border-color: #FFB857;
  }
}

.link {
  position: relative;
}
.link--ex::before {
  content: "";
  background: url(../img/common/icon_ex.svg) no-repeat center center/100%;
  width: 0.5625rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 32%;
  right: -1.25rem;
  transform: translateX(-50%);
}
.link--arrow::before, .link--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.link--arrow::before {
  width: 1.125rem;
  aspect-ratio: 18/16;
  background: url(../img/common/icon_arrow.svg) no-repeat center center/100%;
  right: 2.4375rem;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .link--arrow::before {
    background-image: url(../img/common/icon_arrow_sp.svg);
    width: 0.8571428571rem;
    right: 1.8571428571rem;
  }
}
.link--arrow::after {
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 100rem;
  background-color: #FFF9B1;
  right: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .link--arrow::after {
    width: 2.2857142857rem;
    right: 1.1428571429rem;
  }
}
@media print, screen and (min-width: 768px) {
  .link--arrow:hover::after {
    transform: translateY(-50%) scale(1.25);
  }
}

/*  pagetop
-------------------------------------------------*/
.page_top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: block;
  width: 3.75rem;
  height: 3.75rem;
  z-index: 100;
  transform: rotate(-90deg);
  transition: all 0.3s;
  opacity: 0;
}
.page_top.visible {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .page_top {
    width: 3.5714285714rem;
    height: 3.5714285714rem;
    right: 0.7142857143rem;
    bottom: 0.7142857143rem;
  }
}
@media print, screen and (min-width: 768px) {
  .page_top:hover {
    transform: rotate(-90deg) scale(1.1);
  }
}

/*  scroll
-------------------------------------------------*/
.scroll_item,
.scroll_list_item,
.scroll_fade_item {
  opacity: 0;
  transition: all ease-in-out 0.6s;
}
.scroll_item.scrollActive,
.scroll_list_item.scrollActive,
.scroll_fade_item.scrollActive {
  opacity: 1;
  transform: translate(0) scale(1);
}

.fadeTop {
  transform: translate(0, 50px);
}
.fadeTop.scrollActive {
  transform: translate(0, 0);
}

.fadeLeft,
.fadeRight {
  transform: translate(50px, 0);
}
.fadeLeft.scrollActive,
.fadeRight.scrollActive {
  transform: translate(0, 0);
}

.fadeRight {
  transform: translate(-50px, 0);
}

/*  scroll_container
-------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .scroll_container {
    position: relative;
    overflow-x: scroll;
  }
}
@media only screen and (max-width: 767px) {
  .scroll_container .scroll_icon {
    width: 5.7142857143rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/*  swiper
-------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .js-swiper {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .js-swiper .link--arrow::before {
    width: 1.2857142857rem;
  }
}
@media only screen and (max-width: 767px) {
  .js-swiper .link--arrow::after {
    width: 3.4285714286rem;
  }
}

.swiper-pagination, .swiper-button-prev, .swiper-button-next {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-button-prev, .swiper-button-next {
  top: unset;
  bottom: -0.9375rem;
}
.swiper-button-prev::after, .swiper-button-next::after {
  display: none;
}
.swiper-button-prev span::before, .swiper-button-next span::before {
  right: -2rem;
}
@media only screen and (max-width: 767px) {
  .swiper-button-prev span::before, .swiper-button-next span::before {
    right: -2.4rem;
  }
}
.swiper-button-prev span::after, .swiper-button-next span::after {
  left: 0;
}

.swiper-pagination {
  bottom: 0;
  font-family: "Space Grotesk", serif;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .swiper-pagination {
    font-size: 1.2857142857rem;
  }
}

.swiper-button-prev {
  left: 45%;
  rotate: -180deg;
}
@media only screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 30.5%;
  }
}

.swiper-button-next {
  left: 53%;
}
@media only screen and (max-width: 767px) {
  .swiper-button-next {
    left: 60%;
  }
}

html {
  font-feature-settings: inherit;
}

/*============================================================
	Layout
============================================================*/
/*  loader
-------------------------------------------------*/
/*  header
-------------------------------------------------*/
header {
  height: 8.75rem;
  padding-left: 2.5rem;
  padding-right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  header::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    inset: 0;
    z-index: 9999;
  }
}
@media only screen and (max-width: 767px) {
  header {
    height: 4.5714285714rem;
    padding-left: 0.7142857143rem;
    padding-right: 0.7142857143rem;
    background: #fff;
  }
}
header.narrow {
  height: 5rem;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  header.narrow {
    height: 3.9285714286rem;
  }
}
header .header__ttl {
  width: 18.75rem;
}
@media only screen and (max-width: 767px) {
  header .header__ttl {
    width: 15rem;
    z-index: 10000;
  }
}
header .header__hamburger {
  display: block;
  width: 2.8571428571rem;
  height: 2.8571428571rem;
  border-radius: 50%;
  background: #FFB857;
  cursor: pointer;
  position: relative;
  z-index: 10000;
}
@media print, screen and (min-width: 768px) {
  header .header__hamburger {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  header .header__hamburger {
    margin-left: auto;
  }
}
header .header__hamburger span {
  position: absolute;
  width: 1.7142857143rem;
  height: 0.1428571429rem;
  border-radius: 0.0714285714rem;
  background: #444;
  transition: all 0.3s;
  left: 50%;
}
header .header__hamburger span:first-child {
  top: 1rem;
  transform: translateX(-50%);
}
header .header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
header .header__hamburger span:last-child {
  width: 1.1428571429rem;
  left: 0.5714285714rem;
  bottom: 1rem;
}
header .header__hamburger.active span:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
}
header .header__hamburger.active span:nth-child(2) {
  transform: scaleX(0);
}
header .header__hamburger.active span:last-child {
  width: 1.7142857143rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
}
header .header__contents {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  header .header__contents {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    min-height: calc(100% - 100px);
    z-index: 999;
  }
  header .header__contents::before, header .header__contents::after {
    position: absolute;
    content: "";
    z-index: 998;
  }
  header .header__contents::before {
    background: url(../img/common/nav_bg_01_new.svg) no-repeat left top/contain;
    width: 14.6428571429rem;
    height: 13.0714285714rem;
    top: 2.1428571429rem;
    left: -3.8571428571rem;
  }
  header .header__contents::after {
    background: url(../img/common/nav_bg_02_new.svg) no-repeat right bottom/contain;
    width: 17.1428571429rem;
    height: 13.7857142857rem;
    bottom: -1.4285714286rem;
    right: -5rem;
  }
  header .header__contents.open {
    opacity: 1;
    visibility: visible;
  }
}
header .header__contents a {
  display: inline-block;
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  header .header__contents a {
    position: relative;
  }
  header .header__contents a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.125rem;
    background: #444;
    transition: all 0.3s;
    left: 0;
    bottom: -1.5625rem;
    opacity: 0;
  }
  header .header__contents a:hover::after,
  header .header__contents a.is-active::after {
    opacity: 1;
    bottom: -0.9375rem;
  }
  header .header__contents a.is-active::after {
    background: #FFB857;
  }
}
@media only screen and (max-width: 767px) {
  header .header__contents a {
    font-size: 1.2857142857rem;
    letter-spacing: 0.08em;
    padding: 0.3571428571rem 0;
    z-index: 1000;
  }
}
@media print, screen and (min-width: 768px) {
  header .header__contents a:not(:last-child) {
    margin-right: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  header .header__contents a:not(:last-child) {
    margin-bottom: 1.0714285714rem;
  }
}
@media only screen and (max-width: 767px) {
  header .header__contents a.link_parents {
    margin-bottom: 1.4285714286rem;
  }
}
@media only screen and (max-width: 767px) {
  header .header__contents a.link_child {
    font-size: 1rem;
    font-weight: normal;
  }
}
header .header__contents a.sp:last-child, header .header__contents a.sp:nth-last-child(2) {
  color: #7C777A;
  font-size: 1rem;
  text-decoration: underline;
}
header .header__contents a.sp:nth-last-child(2) {
  position: relative;
  padding-top: 2.8571428571rem;
}
header .header__contents a.sp:nth-last-child(2)::before {
  position: absolute;
  content: "";
  background: #EAE5E7;
  width: 84vw;
  height: 0.0714285714rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
header .header__contents a.app {
  font-size: 0.625rem;
  text-align: center;
  width: 12.5rem;
  height: 3.75rem;
  background-color: #FFB857;
  border-radius: 1.875rem 0 0 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  header .header__contents a.app {
    font-size: 0.7142857143rem;
    border-radius: 100rem;
    width: 17.1428571429rem;
    height: 4.2857142857rem;
    margin-top: 1.0714285714rem;
  }
}
header .header__contents a.app::after {
  display: none;
}
header .header__contents a.app b {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  margin-top: 0.625rem;
}
@media only screen and (max-width: 767px) {
  header .header__contents a.app b {
    font-size: 1.4285714286rem;
    margin-top: 0.3571428571rem;
    margin-top: 0.3571428571rem;
  }
}
@media print, screen and (min-width: 768px) {
  header .header__contents a.app:hover {
    background-color: #FF851E;
  }
}
@media print, screen and (min-width: 768px) {
  header .header__contents .link_wrap {
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  header .header__contents .link_wrap {
    display: contents;
  }
}
@media print, screen and (min-width: 768px) {
  header .header__contents .link_wrap .link_child {
    display: none;
    font-size: 0.875rem;
    color: #fff;
    white-space: nowrap;
    background-color: #04183D;
    border-radius: 0.625rem;
    padding: 0 2.125rem;
    height: 4.75rem;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 33%;
    transform: translateX(-50%);
    bottom: -7.375rem;
  }
}
@media only screen and (max-width: 767px) {
  header .header__contents .link_wrap .link_child {
    margin-bottom: 2.8571428571rem;
  }
}
@media print, screen and (min-width: 768px) {
  header .header__contents .link_wrap .link_child::before {
    content: "";
    width: 0.75rem;
    height: 0.5rem;
    background: url(../img/triangle.svg) no-repeat center center/100%;
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media print, screen and (min-width: 768px) {
  header .header__contents .link_wrap .link_child::after {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  header .header__contents .link_wrap .link_child.is-hover {
    display: flex;
  }
}

/*  kv
-------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .kv {
    max-height: 100vh;
    width: 100%;
    aspect-ratio: 1440/800;
  }
}
.kv .inner {
  height: 100%;
}
.kv .inner .container {
  width: 100%;
  height: 100%;
  position: relative;
}
.kv .inner .container::before {
  content: "";
  background: url(../img/top/kv_deco.svg) no-repeat center center/100%;
  width: 70.8125rem;
  aspect-ratio: 1/1;
  position: absolute;
  right: -35.8125rem;
}
@media print, screen and (min-width: 768px) {
  .kv .inner .container::before {
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .kv .inner .container::before {
    width: 40.4642857143rem;
    top: -28.5714285714rem;
    right: -20.3571428571rem;
  }
}
.kv .inner .container figure {
  width: 48rem;
  aspect-ratio: 1/1;
  mix-blend-mode: multiply;
}
@media print, screen and (min-width: 768px) {
  .kv .inner .container figure {
    position: absolute;
    bottom: 5rem;
    right: -2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .kv .inner .container figure {
    width: 100%;
    margin-top: 9.7857142857rem;
  }
}
.kv__copy {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 800;
}
@media print, screen and (min-width: 768px) {
  .kv__copy {
    position: absolute;
    left: 0;
    bottom: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .kv__copy {
    font-size: 2.1428571429rem;
    line-height: 1.5;
    text-align: center;
    margin: 1.4285714286rem 0 0.5357142857rem;
  }
}
.kv__bnr {
  width: 20rem;
  height: 6rem;
  margin-left: auto;
  display: block;
  border-radius: 100rem;
  border: 2px solid #fff;
  background-color: #FFB857;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 2.6875rem;
  right: 2.5625rem;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  .kv__bnr {
    width: 50%;
    height: 4.2857142857rem;
    bottom: 0.7142857143rem;
    right: 0.7142857143rem;
  }
}
.kv__bnr p {
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.04em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .kv__bnr p {
    font-size: 0.5714285714rem;
    font-size: 66%;
  }
}
.kv__bnr p .strong {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  font-feature-settings: "palt";
  margin: 0 0 0 0.5rem;
}
@media only screen and (max-width: 767px) {
  .kv__bnr p .strong {
    font-size: 1.1428571429rem;
    font-size: 170%;
    margin: 0.2857142857rem 0 0 0.1785714286rem;
  }
}
.kv__bnr .bnr_icon {
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 100rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .kv__bnr .bnr_icon {
    width: 20%;
    left: 0.8571428571rem;
  }
}
.kv__bnr .bnr_icon img {
  width: 63%;
  margin-top: 0.5rem;
}
@media print, screen and (min-width: 768px) {
  .kv__bnr:hover {
    background-color: #FF851E;
    cursor: pointer;
  }
}

/*  イントロ
-------------------------------------------------*/
.intro {
  padding-top: 6.5rem;
}
@media only screen and (max-width: 767px) {
  .intro {
    padding-top: 11.8571428571rem;
  }
}
.intro .inner .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .intro .inner .container {
    padding-right: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .intro .inner .container {
    flex-direction: column;
  }
}
.intro .inner .container::before {
  content: "";
  background: url(../img/top/intro_deco.svg) no-repeat center center/100%;
  width: 13.875rem;
  aspect-ratio: 222/506;
  position: absolute;
  top: -4.5rem;
  left: -11.875rem;
}
@media only screen and (max-width: 767px) {
  .intro .inner .container::before {
    width: 7.9285714286rem;
    top: -2.8571428571rem;
    left: -5.1785714286rem;
  }
}
.intro__img {
  mix-blend-mode: multiply;
}
@media print, screen and (min-width: 768px) {
  .intro__img {
    width: 37.5rem;
  }
}
.intro__note p {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 600;
}
@media print, screen and (min-width: 768px) {
  .intro__note p {
    width: 30rem;
    margin-left: 7.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .intro__note p {
    font-size: 1.2857142857rem;
    margin-top: 2.8571428571rem;
  }
}
.intro__note p:not(:first-child) {
  margin-top: 1.5625rem;
}
@media only screen and (max-width: 767px) {
  .intro__note p:not(:first-child) {
    margin-top: 2.8571428571rem;
  }
}

/*  SPARKEでできること
-------------------------------------------------*/
.service {
  padding-top: 8.5625rem;
}
@media only screen and (max-width: 767px) {
  .service {
    margin-top: 9.5rem;
  }
}
.service .inner .container {
  position: relative;
}
.service .inner .container::before {
  content: "";
  background: url(../img/top/service_deco.svg) no-repeat center top/100%;
  width: 24.3125rem;
  aspect-ratio: 389/450;
  position: absolute;
  top: 2.625rem;
  right: -8.5rem;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .service .inner .container::before {
    width: 13.8571428571rem;
    top: -3.75rem;
    right: -4.1071428571rem;
  }
}
@media print, screen and (min-width: 768px) {
  .service .btn-type01 {
    width: 28.75rem;
  }
}
.service__area {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .service__area {
    margin-top: 3.5714285714rem;
  }
}
.service__list .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.service__list .item.item--01 {
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .service__list .item {
    flex-direction: column;
  }
}
.service__list .item .list_text {
  width: 24.05rem;
}
@media only screen and (max-width: 767px) {
  .service__list .item .list_text {
    margin-top: -1.3214285714rem;
    order: 2;
    position: relative;
    z-index: 2;
  }
}
.service__list .item .list_text__num {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Space Grotesk", serif;
  color: #FFB857;
}
@media only screen and (max-width: 767px) {
  .service__list .item .list_text__num {
    font-size: 2.8571428571rem;
    display: block;
    text-align: center;
  }
}
.service__list .item .list_text__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0.3125rem;
}
@media only screen and (max-width: 767px) {
  .service__list .item .list_text__title {
    font-size: 1.7142857143rem;
    line-height: 1.5;
    text-align: center;
    margin-top: 0.7142857143rem;
  }
}
.service__list .item .list_text__note {
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .service__list .item .list_text__note {
    font-size: 1.1428571429rem;
  }
}
.service__list .item .list_img {
  border-radius: 0.5rem;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .service__list .item .list_img {
    width: 40rem;
  }
}
@media only screen and (max-width: 767px) {
  .service__list .item .list_img {
    order: 1;
  }
}
.service__list .item:not(:first-child) {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .service__list .item:not(:first-child) {
    margin-top: 2.8571428571rem;
  }
}
.service__list .item:nth-child(even) .list_text {
  order: 2;
}
.service__list .item--02 .list_text__num {
  color: #8AD392;
}
.service__list .item--03 .list_text__num {
  color: #8ABCEE;
}
.service__link {
  margin-top: 5rem;
}
@media print, screen and (min-width: 768px) {
  .service__link {
    display: flex;
    justify-content: center;
    gap: 0 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .service__link {
    margin-top: 2.8571428571rem;
  }
}
@media only screen and (max-width: 767px) {
  .service__link a:not(:first-child) {
    margin-top: 1.4285714286rem;
  }
}

/*  コンテンツの一例
-------------------------------------------------*/
.contents {
  padding-top: 7.5625rem;
  margin-top: 10rem;
  background-color: #FFB857;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .contents {
    padding-top: 5.7142857143rem;
    margin-top: 5.7142857143rem;
  }
}
.contents::before, .contents::after {
  content: "";
  width: 100%;
  height: 32rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .contents::before, .contents::after {
    height: 14.5rem;
    bottom: 9rem;
  }
}
.contents::before {
  background: rgba(255, 187, 93, 0.2);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .contents::before {
    background: rgba(255, 187, 93, 0.4);
  }
}
.contents::after {
  background: rgb(255, 187, 93);
  background: linear-gradient(180deg, rgba(255, 187, 93, 0) 0%, rgb(255, 187, 93) 100%);
  z-index: 3;
}
.contents .inner .container {
  position: relative;
}
.contents .inner .container::before, .contents .inner .container::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  z-index: 5;
}
.contents .inner .container::before {
  width: 22.5625rem;
  aspect-ratio: 361/215;
  background-image: url(../img/top/contents_deco01.svg);
  top: -11.875rem;
  left: -10rem;
}
@media only screen and (max-width: 767px) {
  .contents .inner .container::before {
    width: 12.8928571429rem;
    top: -9.2857142857rem;
    left: -6.6071428571rem;
  }
}
.contents .inner .container::after {
  width: 15.3125rem;
  aspect-ratio: 245/216;
  background-image: url(../img/top/contents_deco02.svg);
  bottom: 20rem;
  right: -5.625rem;
}
@media only screen and (max-width: 767px) {
  .contents .inner .container::after {
    width: 6.4285714286rem;
    aspect-ratio: 138/180;
    background-image: url(../img/top/contents_deco02_sp.svg);
    bottom: 20rem;
    right: -2.8571428571rem;
  }
}
.contents__list {
  margin-top: 5.25rem;
}
@media only screen and (max-width: 767px) {
  .contents__list {
    margin-top: 2.8571428571rem;
  }
}
@media print, screen and (min-width: 768px) {
  .contents__list .list_view {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 2.46875rem;
  }
}
.contents__list .list_blur {
  display: flex;
  justify-content: space-between;
  margin-top: 2.46875rem;
  filter: blur(4px);
}
@media only screen and (max-width: 767px) {
  .contents__list .list_blur {
    width: 177%;
    margin-top: 2.5714285714rem;
    gap: 0 1.25rem;
    position: relative;
    left: -1.875rem;
  }
}
.contents__list .item {
  border-radius: 0.5rem;
  background-color: #fff;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .contents__list .item {
    width: calc((100% - 4.9375rem) / 3);
  }
}
@media only screen and (max-width: 767px) {
  .contents__list .item {
    border-radius: 0.5714285714rem;
  }
}
.contents__list .item__img {
  width: 100%;
  aspect-ratio: 346/203;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .contents__list .item__img {
    aspect-ratio: 295/173;
  }
}
.contents__list .item__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  scale: 1;
  transition: all 0.3s;
}
.contents__list .item__detail {
  padding: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .contents__list .item__detail {
    padding: 1.2857142857rem;
  }
}
.contents__list .item__label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3125rem 0.25rem;
  margin-bottom: 0.25rem;
}
@media print, screen and (min-width: 768px) {
  .contents__list .item__label {
    width: 100%;
  }
}
.contents__list .item__label li {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4375rem;
  text-align: center;
  height: 1.4375rem;
  border-radius: 100rem;
  background-color: #444;
  padding: 0 0.5rem;
}
@media only screen and (max-width: 767px) {
  .contents__list .item__label li {
    font-size: 0.7142857143rem;
    height: 1.5rem;
  }
}
.contents__list .item__label li.subject {
  background: #FFB857;
}
.contents__list .item__label.subject li {
  background: #FFB857;
}
.contents__list .item__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .contents__list .item__title {
    font-size: 1.4285714286rem;
  }
}
.contents__list .item__note {
  margin: 0.875rem 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.contents__list .item__note dt, .contents__list .item__note dd {
  line-height: 1.5;
  width: 100%;
}
.contents__list .item__note dt {
  font-size: 0.875rem;
  font-weight: 700;
  padding-left: 1.25rem;
  position: relative;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .contents__list .item__note dt {
    font-size: 0.8571428571rem;
  }
}
.contents__list .item__note dt::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 0;
  left: 0;
}
.contents__list .item__note dt.preliminary::before {
  background-image: url(../img/common/icon_preliminary.svg);
}
.contents__list .item__note dt.calendar::before {
  width: 0.9rem;
  background-image: url(../img/common/icon_calendar.svg);
}
.contents__list .item__note dt.apartment::before {
  background-image: url(../img/common/icon_apartment.svg);
}
.contents__list .item__note dd {
  font-size: 1rem;
  padding-left: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .contents__list .item__note dd {
    font-size: 1rem;
  }
}
.contents__list .item a {
  pointer-events: none;
}
@media print, screen and (min-width: 768px) {
  .contents__list .item a:hover figure img {
    scale: 1.2;
  }
}
.contents__btn {
  width: 100%;
  height: 10.5rem;
  text-align: center;
  margin-top: -10rem;
  position: relative;
  bottom: 14.375rem;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .contents__btn {
    height: 5.7142857143rem;
    margin-top: -11.7857142857rem;
  }
}
.contents__btn a {
  height: 100%;
  background-color: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
  .contents__btn a {
    width: 60rem;
  }
}
@media only screen and (max-width: 767px) {
  .contents__btn a::before {
    right: 1.4285714286rem;
  }
}
.contents__btn a::after {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .contents__btn a::after {
    right: 0.7142857143rem;
  }
}
.contents__btn a p {
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contents__btn a p {
    font-size: 0.7142857143rem;
  }
}
.contents__btn a p span {
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-top: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .contents__btn a p span {
    font-size: 1.1428571429rem;
  }
}
@media print, screen and (min-width: 768px) {
  .contents__btn a:hover::after {
    background-color: #fff;
  }
}
@media print, screen and (min-width: 768px) {
  .contents__swiper {
    display: contents;
  }
}
@media only screen and (max-width: 767px) {
  .contents__swiper {
    padding-bottom: 4.5rem;
    position: relative;
    z-index: 6;
  }
}

/*  先生・生徒の声
-------------------------------------------------*/
.voice {
  background: url(../img/top/voice_bg-single.svg) repeat top left/60px #fff;
  background-size: 60px !important;
  padding-bottom: 7.5rem;
  margin-top: -7.5rem;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .voice {
    margin-top: -9.2857142857rem;
    padding-bottom: 4.2857142857rem;
  }
}
.voice__wrapper {
  max-width: 1525px;
  margin: auto;
  padding-top: 7.5rem;
  background: url(../img/top/voice_deco.svg) no-repeat left top -12.3125rem;
  background-size: 24rem 24.75rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1525px) {
  .voice__wrapper {
    background-position: left -2.75rem top -12.3125rem;
  }
}
@media only screen and (max-width: 767px) {
  .voice__wrapper {
    background-size: 14.6428571429rem 14.3571428571rem;
    background-position: left -5.7142857143rem top -9.3571428571rem;
    padding-top: 4.2857142857rem;
  }
}
.voice__box .box_note {
  background-color: #FFB857;
  padding: 0 2.5rem;
  border-radius: 0.5rem;
  width: 100%;
  height: 14.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .voice__box .box_note {
    height: 21.0714285714rem;
    padding: 0 1.4285714286rem;
  }
}
.voice__box .box_note::after {
  content: "";
  background: url(../img/top/voice_note_deco_01.svg) no-repeat center center/100%;
  width: 1.5rem;
  aspect-ratio: 1/1;
  position: absolute;
  left: 3.75rem;
  bottom: -1.5rem;
}
@media only screen and (max-width: 767px) {
  .voice__box .box_note::after {
    width: -1.1428571429rem;
    bottom: -0.8571428571rem;
    left: 2.9285714286rem;
  }
}
.voice__box .box_note p {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .voice__box .box_note p {
    font-size: 1.1428571429rem;
  }
}
.voice__box .box_card {
  margin-top: 2.16875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
@media only screen and (max-width: 767px) {
  .voice__box .box_card {
    margin-top: 1.7142857143rem;
    gap: 0 1.0357142857rem;
  }
}
.voice__box .box_card__img {
  width: 7.5rem;
}
@media only screen and (max-width: 767px) {
  .voice__box .box_card__img {
    width: 5.7142857143rem;
  }
}
.voice__box .box_card__detail ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem 0.25rem;
}
.voice__box .box_card__detail ul li {
  font-size: 0.75rem;
  color: #fff;
  border-radius: 100rem;
  background-color: #FFB857;
  padding: 0 0.625rem;
  height: 1.4375rem;
  line-height: 1.4375rem;
}
.voice__box .box_card__detail p {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .voice__box .box_card__detail p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.voice__box.box_02 .box_note {
  background-color: #8AD392;
}
.voice__box.box_02 .box_note::after {
  background-image: url(../img/top/voice_note_deco_02.svg);
}
.voice__box.box_03 .box_note {
  background-color: #FFF9B1;
}
.voice__box.box_03 .box_note::after {
  background-image: url(../img/top/voice_note_deco_03.svg);
}
.voice__container {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .voice__container {
    margin-top: 2.8571428571rem;
  }
}
.voice__swiper {
  padding-bottom: 4.375rem;
}
@media print, screen and (min-width: 768px) {
  .voice__swiper {
    width: 98.75rem;
    margin-top: 2.75rem;
    margin-left: 15.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .voice__swiper {
    padding-bottom: 5.5714285714rem;
  }
}

/*  私たちについて
-------------------------------------------------*/
.about {
  padding: 10rem 0;
  background-color: #FFF9B1;
}
@media only screen and (max-width: 767px) {
  .about {
    padding: 4.2857142857rem 0;
  }
}
.about .inner {
  position: relative;
}
.about .inner::before {
  content: "";
  width: 27.0625rem;
  height: 27.9375rem;
  background: url(../img/top/about_deco.svg) no-repeat center center/100%;
  position: absolute;
  right: -14.625rem;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .about .inner::before {
    width: 15.9285714286rem;
    height: 16rem;
    right: -6.0714285714rem;
    top: 1.6428571429rem;
  }
}
.about__box {
  margin-top: 5.25rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .about__box {
    margin-top: 3.5714285714rem;
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  .about__box .box_note {
    width: 35.7142857143%;
  }
}
@media only screen and (max-width: 767px) {
  .about__box .box_note {
    margin-top: 1.4285714286rem;
    order: 2;
  }
}
.about__box .box_note p {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .about__box .box_note p {
    font-size: 1.1428571429rem;
    line-height: 2;
  }
}
.about__box .box_movie {
  aspect-ratio: 640/360;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .about__box .box_movie {
    width: 57.1428571429%;
  }
}
@media only screen and (max-width: 767px) {
  .about__box .box_movie {
    order: 1;
  }
}
.about__box .box_movie::before {
  content: "";
  background-color: #fff;
  width: 7.5rem;
  aspect-ratio: 1/1;
  border-radius: 100rem;
  position: absolute;
  top: 50%;
  left: 49.2%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .about__box .box_movie::before {
    width: 4.5rem;
  }
}
.about__box .box_movie video {
  background-color: #E2E2E2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: 50%, 50%;
     object-position: 50%, 50%;
}
.about__box .box_movie__play {
  width: 2.5625rem;
  height: 2.9375rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .about__box .box_movie__play {
    width: 1.7857142857rem;
    height: 1.5714285714rem;
  }
}
@media print, screen and (min-width: 768px) {
  .about__box .box_movie:hover::before {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/*  お知らせ
-------------------------------------------------*/
.news {
  padding: 10rem 0;
  background-color: #8ABCEF;
}
@media only screen and (max-width: 767px) {
  .news {
    padding: 4.2857142857rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  .news .container {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  .news .container {
    padding-bottom: 7.4285714286rem;
    position: relative;
  }
}
@media print, screen and (min-width: 768px) {
  .news .title-type01 {
    text-align: left;
  }
}
@media print, screen and (min-width: 768px) {
  .news .title-type01 .en {
    justify-content: start;
  }
}
@media print, screen and (min-width: 768px) {
  .news .title-type01 .en .word, .news .title-type01 .ja .word {
    justify-content: start;
  }
}
@media print, screen and (min-width: 768px) {
  .news__title {
    width: 21.4285714286%;
  }
}
@media only screen and (max-width: 767px) {
  .news__btn {
    text-align: center;
    width: 17.1428571429rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.news__btn .btn-type01 {
  font-size: 1rem;
  height: 4rem;
  margin-top: 1.75rem;
  border: unset;
}
.news__btn .btn-type01::before {
  width: 0.75rem;
  right: 1.25rem;
}
.news__btn .btn-type01::after {
  width: 2rem;
  right: 0.625rem;
}
.news__list {
  border-top: 1px solid #fff;
}
@media print, screen and (min-width: 768px) {
  .news__list {
    width: 64.2857142857%;
  }
}
@media only screen and (max-width: 767px) {
  .news__list {
    margin-top: 2.8571428571rem;
  }
}
.news__list .item {
  border-bottom: 1px solid #fff;
}
.news__list .item a {
  padding: 2rem 1.25rem;
  display: block;
}
.news__list .item a::after {
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .news__list .item a:hover {
    background-color: #7EB2EC;
  }
  .news__list .item a:hover::after {
    background-color: #fff;
  }
}
.news__list .item__info {
  display: flex;
  align-items: center;
}
.news__list .item__date {
  font-size: 0.875rem;
  font-family: "Space Grotesk", serif;
  font-weight: 700;
}
.news__list .item__category {
  margin-left: 0.90625rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.news__list .item__category li {
  font-size: 0.75rem;
  line-height: 1.4375rem;
  color: #8ABCEE;
  background-color: #444444;
  border-radius: 100rem;
  height: 1.4375rem;
  padding: 0 0.625rem;
}
.news__list .item__detail {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  padding-right: 5rem;
}
@media only screen and (max-width: 767px) {
  .news__list .item__detail {
    padding-right: 2.8571428571rem;
  }
}

/*  コンタクト
-------------------------------------------------*/
.contact {
  margin: 7.8125rem 0 5.96875rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contact {
    margin: 4.2857142857rem 0;
  }
}
.contact__link01 {
  height: 20rem;
  background-color: #FFB857;
  border: unset;
}
@media only screen and (max-width: 767px) {
  .contact__link01 {
    border-radius: 0.5714285714rem;
    height: 15rem;
  }
}
.contact__link01 .link_title {
  font-size: 5rem;
  font-family: "Space Grotesk", serif;
  font-weight: 700;
  color: #FFF9B1;
}
@media print, screen and (min-width: 768px) {
  .contact__link01 .link_title {
    padding-right: 40.6875rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact__link01 .link_title {
    font-size: 2.8571428571rem;
    margin-top: 8.5714285714rem;
  }
}
.contact__link01 .link_img {
  width: 25rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  mix-blend-mode: multiply;
}
@media print, screen and (min-width: 768px) {
  .contact__link01 .link_img {
    right: 7.0625rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact__link01 .link_img {
    width: 13.6428571429rem;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.contact__link01::before {
  right: 46.5rem;
}
.contact__link01::after {
  background-color: #fff;
  right: 45.5rem;
}
@media print, screen and (min-width: 768px) {
  .contact__link01:hover {
    background-color: #F47F1D;
  }
  .contact__link01:hover::after {
    background-color: #fff;
  }
}
.contact__link02 {
  margin-top: 2.5rem;
  display: inline-block;
}
.contact__link02 svg {
  width: 0.6875rem;
  height: 0.6875rem;
}
.contact__link02 span {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-align: center;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .contact__link02 span {
    font-size: 1.1428571429rem;
  }
}
.contact__link02 span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #444;
  transition: all 0.3s;
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .contact__link02 span::after {
    font-size: 1.1428571429rem;
  }
}
@media print, screen and (min-width: 768px) {
  .contact__link02:hover span::after {
    opacity: 0;
  }
}

/*  footer
-------------------------------------------------*/
footer {
  background-color: #F7F7F7;
  padding: 7.5rem 0 10rem;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 4.2857142857rem 0 8.5714285714rem;
  }
}
footer .footer__link {
  display: flex;
}
@media only screen and (max-width: 767px) {
  footer .footer__link {
    flex-direction: column;
  }
}
footer .footer__link .link_logo {
  width: 18.75rem;
}
@media only screen and (max-width: 767px) {
  footer .footer__link .link_logo {
    width: 15rem;
    margin: auto;
  }
}
footer .footer__link .link_list {
  display: flex;
  flex-wrap: wrap;
}
footer .footer__link .link_list li {
  letter-spacing: 0.08em;
}
footer .footer__link .link_list--01 {
  gap: 2.5rem 0;
}
@media print, screen and (min-width: 768px) {
  footer .footer__link .link_list--01 {
    width: 40rem;
    margin-left: 3.75rem;
  }
}
@media only screen and (max-width: 767px) {
  footer .footer__link .link_list--01 {
    margin-top: 4.2857142857rem;
    padding: 0 1.4285714286rem;
  }
}
footer .footer__link .link_list--01 li {
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  footer .footer__link .link_list--01 li {
    letter-spacing: 0.08em;
  }
}
@media print, screen and (min-width: 768px) {
  footer .footer__link .link_list--01 li a {
    position: relative;
  }
  footer .footer__link .link_list--01 li a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.125rem;
    background: #444;
    transition: all 0.3s;
    left: 0;
    bottom: -1.5625rem;
    opacity: 0;
  }
  footer .footer__link .link_list--01 li a:hover::after {
    opacity: 1;
    bottom: -0.9375rem;
  }
}
footer .footer__link .link_list--01 li:nth-child(odd) {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  footer .footer__link .link_list--01 li:nth-child(odd) {
    width: 50%;
  }
}
footer .footer__link .link_list--01 li:nth-child(even) {
  width: 60%;
  padding-left: 1.4285714286rem;
}
@media only screen and (max-width: 767px) {
  footer .footer__link .link_list--01 li:nth-child(even) {
    width: 50%;
    padding-left: 0;
  }
}
footer .footer__link .link_list--01 li.spacer {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
footer .footer__link .link_list--02 {
  gap: 1rem 0;
}
@media print, screen and (min-width: 768px) {
  footer .footer__link .link_list--02 {
    width: 12.5rem;
    margin-left: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  footer .footer__link .link_list--02 {
    margin-top: 3.5714285714rem;
    text-align: center;
  }
}
footer .footer__link .link_list--02 li {
  font-size: 0.75rem;
  width: 100%;
}
footer .footer__link .link_list--02 li:last-child small {
  font-size: 0.625rem;
  font-family: "Space Grotesk", serif;
  white-space: nowrap;
  margin-top: 1.5rem;
}
@media print, screen and (min-width: 768px) {
  footer .footer__link .link_list--02 li a:hover {
    opacity: 0.7;
  }
}

.contact-animation .contact__link01 {
  width: 70rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact-animation .contact__link01 {
    width: auto;
  }
}
.contact-animation .contact__link01::before {
  right: 40.5rem;
  top: 58%;
}
@media screen and (max-width: 767px) {
  .contact-animation .contact__link01::before {
    display: none;
  }
}
.contact-animation .contact__link01::after {
  right: 39.5rem;
  top: 58%;
}
@media screen and (max-width: 767px) {
  .contact-animation .contact__link01::after {
    display: none;
  }
}
.contact-animation .contact__link01 .link_title {
  font-family: "Noto Sans JP", serif;
  font-size: 4rem;
  padding-right: 36.6875rem;
}
@media screen and (max-width: 767px) {
  .contact-animation .contact__link01 .link_title {
    font-size: 2.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-right: 0;
  }
  .contact-animation .contact__link01 .link_title .icon {
    width: 2.2857142857rem;
    height: 2.2857142857rem;
    background: #fff;
    border-radius: 2.2857142857rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    margin-top: 0.3rem;
  }
  .contact-animation .contact__link01 .link_title .icon::before {
    content: "";
    background: url(../img/common/icon_arrow_sp.svg) no-repeat center/100%;
    width: 0.8571428571rem;
    aspect-ratio: 18/16;
    z-index: 1;
    position: relative;
    display: block;
  }
}
.contact-animation .contact__link01 .link_title .sub-ttl {
  color: #FFF9B0;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .contact-animation .contact__link01 .link_title .sub-ttl {
    font-size: 1rem;
    width: 100%;
    margin-bottom: 0.3rem;
  }
}
.contact-animation .hover-image {
  position: absolute;
  width: 38.65%;
  right: 7%;
  bottom: 0;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .contact-animation .hover-image {
    width: 48vw;
    height: 37vw;
    top: -6.5vw;
    right: 0;
    bottom: auto;
    left: 0;
    margin: auto;
  }
}
.contact-animation .hover-image div {
  position: absolute;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .contact-animation .hover-image div {
    position: static;
  }
}
@media screen and (min-width: 768px) {
  .contact-animation .hover-image div.sp-illust {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .contact-animation .hover-image div.sp-illust img {
    width: 100%;
  }
}
.contact-animation .hover-image div.illust1 {
  width: 100%;
  z-index: 2;
  bottom: 5px;
}
@media screen and (max-width: 767px) {
  .contact-animation .hover-image div.illust1 {
    display: none;
  }
}
.contact-animation .hover-image div.illust2 {
  width: 77.1%;
  z-index: 1;
  bottom: 15px;
  left: 13%;
}
@media screen and (max-width: 767px) {
  .contact-animation .hover-image div.illust2 {
    display: none;
  }
}
.contact-animation .hover-image div.illust3 {
  width: 99.4%;
  z-index: 0;
  bottom: 20px;
  right: -2%;
}
@media screen and (max-width: 767px) {
  .contact-animation .hover-image div.illust3 {
    display: none;
  }
}
.contact-animation a:hover .illust1 {
  transform: scale(1.2);
}
.contact-animation a:hover .illust2 {
  transform: scale(1.1) rotate(-6deg);
}
.contact-animation a:hover .illust3 {
  transform: scale(1.05);
}

.contact__link02 svg {
  position: relative;
  transition: all 0.3s;
  right: 0;
}
.contact__link02:hover svg {
  right: -1rem;
}

/*============================================================
	icon anime
============================================================*/
.kv__bnr .bnr_icon {
  width: 3rem;
  height: 3rem;
  aspect-ratio: auto;
  border-radius: 100rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 3.125rem;
  transform: translateY(-50%) translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .kv__bnr .bnr_icon {
    width: 2.5714285714rem;
    height: 2.5714285714rem;
    left: 2.1428571429rem;
  }
}
.kv__bnr .bnr_icon span {
  background: url(../img/common/icon_box_sprite.svg) no-repeat;
  width: 4rem;
  height: 3.25rem;
  display: inline-block;
  background-size: 36rem 3.25rem;
  position: relative;
  left: -0.625rem;
  top: -0.5rem;
}
@media only screen and (max-width: 767px) {
  .kv__bnr .bnr_icon span {
    width: 3.1428571429rem;
    height: 2.4285714286rem;
    background: url(../img/common/icon_box.svg) no-repeat;
    background-size: 1.5714285714rem 1.5714285714rem;
    left: calc(50% - 0.7857142857rem);
    top: calc(50% - 0.7857142857rem);
  }
}
@media print, screen and (min-width: 768px) {
  .kv__bnr:hover .bnr_icon {
    width: 3.75rem;
    height: 3.75rem;
  }
}
@media print, screen and (min-width: 768px) {
  .kv__bnr:hover .bnr_icon span {
    top: -0.1875rem;
    left: -0.25rem;
    -webkit-animation: boxopen 0.15s steps(8) forwards;
            animation: boxopen 0.15s steps(8) forwards;
  }
}
@media print, screen and (min-width: 768px) {
  .kv__bnr.animated:not(:hover) span {
    -webkit-animation: boxclose 0.15s steps(8) forwards;
            animation: boxclose 0.15s steps(8) forwards;
  }
}

@-webkit-keyframes boxopen {
  to {
    background-position: -32rem 0;
  }
}

@keyframes boxopen {
  to {
    background-position: -32rem 0;
  }
}
@-webkit-keyframes boxclose {
  from {
    background-position: -32rem 0;
  }
  to {
    background-position: 0px 0;
  }
}
@keyframes boxclose {
  from {
    background-position: -32rem 0;
  }
  to {
    background-position: 0px 0;
  }
}
/*# sourceMappingURL=style.css.map */