@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

html, body {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #F5F5F5;
  font-weight: 500;
}

li {
  list-style: none;
}

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

a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

a:hover {
  opacity: 0.8;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 110;
  display: block;
}
.l-header.-js-none {
  display: none;
}
.l-header.-js-change {
  background-color: #F5F5F5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.l-header--b {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  opacity: 1;
  transition: all 0.4s;
  background-color: #4D4D4D;
}
.l-header--b.-js-hover {
  opacity: 0;
  display: none;
}
.l-header--b.-js-change {
  background-color: #F5F5F5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.l-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 767px) {
  .l-container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1024px) {
  .c-nav {
    display: none;
  }
}
.c-nav__list {
  display: flex;
}
.c-nav__item {
  position: relative;
}
.c-nav__item + .c-nav__item {
  margin-left: 60px;
}
.c-nav__txt {
  font-size: 1.6rem;
  font-weight: 500;
  display: inline-block;
  padding: 15px 0;
  position: relative;
  overflow: hidden;
}
.c-nav__txt:hover {
  opacity: 0.8;
}
.c-nav__txt::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #8966EF;
  position: absolute;
  bottom: 0;
  left: -100px;
  transition: left 0.3s;
}
.c-nav__txt:hover::before {
  left: 0;
}
.c-nav__txt.-color-w {
  color: #fff;
}
.c-nav__group {
  padding: 0px 40px 60px;
  width: 100%;
  background-color: #4D4D4D;
  display: none;
}
.c-nav__group.-js-block {
  display: block;
}
.c-nav__ttl {
  font-size: 3.2rem;
  color: #8966EF;
  font-weight: 700;
}
.c-nav__menu {
  margin-top: 50px;
  display: flex;
}
.c-nav__menu-item {
  width: 25%;
  position: relative;
  padding-bottom: 25px;
  overflow: hidden;
}
.c-nav__menu-item::before {
  content: "";
  width: 85%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #A8AEB3;
}
.c-nav__menu-item::after {
  content: "";
  width: 85%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: -100%;
  background-color: #8966EF;
  transition: 0.3s;
}
.c-nav__menu-item:hover {
  opacity: 0.8;
}
.c-nav__menu-item:hover:after {
  left: 0;
}
.c-nav__menu-link {
  font-size: 1.8rem;
  color: #fff;
}
.c-nav__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}
.c-nav__bg.-js-block {
  display: block;
}

.c-drawer-icon {
  position: fixed;
  top: 40px;
  right: 70px;
  z-index: 200;
  display: none;
  transition: all 0.5s ease 0s;
  opacity: 0.8;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: #8966EF;
}
@media screen and (max-width: 1024px) {
  .c-drawer-icon {
    display: inline-block;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .c-drawer-icon {
    display: inline-block;
    cursor: pointer;
    right: 50px;
  }
}
.c-drawer-icon.-js-change {
  top: 20px;
  right: 40px;
}
@media screen and (max-width: 767px) {
  .c-drawer-icon.-js-change {
    right: 20px;
  }
}
.c-drawer-icon.is-active .c-drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.c-drawer-icon.is-active .c-drawer-icon__bar2 {
  display: none;
}
.c-drawer-icon.is-active .c-drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
}
.c-drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}
.c-drawer-icon__bar1, .c-drawer-icon__bar2, .c-drawer-icon__bar3 {
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: #fff;
  top: 0;
  left: 0;
}
.c-drawer-icon__bar1.is-active, .c-drawer-icon__bar2.is-active, .c-drawer-icon__bar3.is-active {
  background-color: #333;
}
.c-drawer-icon__bar1 {
  top: 0;
}
.c-drawer-icon__bar2 {
  top: 8px;
}
.c-drawer-icon__bar3 {
  top: 16px;
}

.c-drawer-content {
  width: 40%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 130;
  background: #4D4D4D;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  transform: translateX(110%);
  transition: transform 0.5s ease 0s;
  overflow-y: scroll;
}
.c-drawer-content.is-active {
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .c-drawer-content {
    width: 60%;
  }
}
.c-drawer-content__logo {
  position: absolute;
  top: 40px;
  left: 20px;
  z-index: 130;
  width: 40%;
  transition: all 0.5s ease 0s;
}
.c-drawer-content__logo.-js-change {
  top: 20px;
  left: 20px;
}
.c-drawer-content__list {
  margin-top: 100px;
}
.c-drawer-content__item {
  border-bottom: 1px dotted #707070;
}
.c-drawer-content__link {
  display: block;
  font-size: 1.8rem;
  padding: 20px;
  color: #fff;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-drawer-content__link {
    font-size: 1.6rem;
  }
}
.c-drawer-content__item-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-drawer-content__toggle {
  width: 25px;
  height: 25px;
  border-radius: 1000px;
  background-color: #8966EF;
  position: relative;
  margin-right: 20px;
}
.c-drawer-content__bar1 {
  width: 14px;
  height: 2px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-drawer-content__bar2 {
  width: 2px;
  height: 14px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease 0s;
}
.c-drawer-content__bar2.js-open {
  transform: translate(-50%, -50%) rotate(90deg);
}
.c-drawer-content__sub-list {
  display: none;
  margin-bottom: 20px;
  padding-left: 20px;
}
.c-drawer-content__sub-item a {
  display: block;
  font-size: 1.6rem;
  color: #A8AEB3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-drawer-content__sub-item a {
    font-size: 1.4rem;
  }
}
.c-drawer-content__sub-item + .c-drawer-content__sub-item {
  margin-top: 20px;
}
.c-drawer-content__btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.c-drawer-content__btn-link {
  display: inline-block;
  padding: 12px 37px;
  background-color: #8966EF;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 1000px;
  font-weight: 500;
}
.c-drawer-content__sns {
  margin-top: 35px;
  padding: 0 0 60px 20px;
}

.c-drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
}
.c-drawer-background.is-active {
  display: block;
}

.c-ttl {
  position: relative;
  display: flex;
}
.c-ttl__en {
  font-size: 8rem;
  color: #333;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .c-ttl__en {
    font-size: 6rem;
  }
}
.-color-w .c-ttl__en {
  color: #fff;
}
.c-ttl__ja {
  font-size: 1.4rem;
  font-weight: 700;
  color: #8966EF;
  margin-left: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .c-ttl__ja {
    margin-top: 30px;
  }
}

.c-page-ttl {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-page-ttl {
    font-size: 3rem;
  }
}
.c-page-ttl__ja {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #8966EF;
}
.c-page-ttl__en {
  color: #fff;
  display: block;
}

.c-contact-btn {
  background-color: #8966EF;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 1000px;
  font-weight: 500;
  display: inline-block;
  box-sizing: border-box;
  border: 2px solid #8966EF;
  transition: all 0.3s;
}
.c-contact-btn:hover {
  color: #333;
  background-color: #fff;
}

.c-circle-btn01 {
  display: block;
  width: 130px;
  height: 130px;
  border-radius: 1000px;
  position: relative;
  border: 2px solid #fff;
  overflow: hidden;
  transition: all 0.3s;
  background-color: transparent;
}
@media screen and (max-width: 500px) {
  .c-circle-btn01 {
    width: 80px;
    height: 80px;
  }
}
.c-circle-btn01:hover {
  opacity: 1;
}
.c-circle-btn01.js-active {
  background-color: #fff;
}
.c-circle-btn01__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
.c-circle-btn01::before {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/top/arrow-w.svg") no-repeat center center/cover;
  transition: left 0.3s;
}
.c-circle-btn01::after {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: -50%;
  transform: translate(-50%, -50%);
  background: url("../img/top/arrow-b.svg") no-repeat center center/cover;
  transition: left 0.3s;
}
.c-circle-btn01.js-active::before {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 150%;
  transform: translate(-50%, -50%);
  background: url("../img/top/arrow-w.svg") no-repeat center center/cover;
  transition: left 0.3s;
}
.c-circle-btn01.js-active::after {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/top/arrow-b.svg") no-repeat center center/cover;
  transition: left 0.3s;
}

.c-circle-btn02 {
  display: inline-flex;
  align-items: center;
}
.c-circle-btn02:hover {
  opacity: 1;
}
.c-circle-btn02__icon {
  width: 130px;
  height: 130px;
  border-radius: 1000px;
  overflow: hidden;
  position: relative;
  border: 1px solid #333;
  display: inline-block;
  background-color: transparent;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .c-circle-btn02__icon {
    width: 100px;
    height: 100px;
  }
}
.c-circle-btn02__icon.js-active {
  background-color: #333;
}
.c-circle-btn02__icon::before {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/top/arrow-b.svg") no-repeat center center/cover;
  transition: left 0.3s;
}
.c-circle-btn02__icon::after {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: -50%;
  transform: translate(-50%, -50%);
  background: url("../img/top/arrow-w.svg") no-repeat center center/cover;
  transition: left 0.3s;
}
.c-circle-btn02__icon.js-active::before {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 150%;
  transform: translate(-50%, -50%);
  background: url("../img/top/arrow-b.svg") no-repeat center center/cover;
  transition: left 0.3s;
}
.c-circle-btn02__icon.js-active::after {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/top/arrow-w.svg") no-repeat center center/cover;
  transition: left 0.3s;
}
.-w .c-circle-btn02__icon {
  border: 1px solid #fff;
}
.-w .c-circle-btn02__icon.js-active {
  background-color: #fff;
}
.-w .c-circle-btn02__icon::before {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/top/arrow-w.svg") no-repeat center center/cover;
  transition: left 0.3s;
}
.-w .c-circle-btn02__icon::after {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: -50%;
  transform: translate(-50%, -50%);
  background: url("../img/top/arrow-b.svg") no-repeat center center/cover;
  transition: left 0.3s;
}
.-w .c-circle-btn02__icon.js-active::before {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 150%;
  transform: translate(-50%, -50%);
  background: url("../img/top/arrow-w.svg") no-repeat center center/cover;
  transition: left 0.3s;
}
.-w .c-circle-btn02__icon.js-active::after {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/top/arrow-b.svg") no-repeat center center/cover;
  transition: left 0.3s;
}
.c-circle-btn02__txt {
  display: inline-block;
  margin-left: 16px;
  font-size: 1.4rem;
}
.-w .c-circle-btn02__txt {
  color: #fff;
}

.c-entry-tag {
  display: inline-block;
  padding: 5px 9px;
  background-color: #8966EF;
  color: #fff;
  border-radius: 1000px;
  margin-left: 3px;
  margin-top: 4px;
  font-size: 1.2rem;
}

.c-sns__item {
  display: block;
}
.c-sns__item + .c-sns__item {
  margin-top: 25px;
}
.c-sns__txt {
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.c-sns__link {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  padding-left: 35px;
  position: relative;
}
.c-sns__link.-twitter::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url("../img/top/twitter.png") no-repeat center center/cover;
}
.c-sns__link.-instagram::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url("../img/top/insta.png") no-repeat center center/cover;
}

.c-heading {
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 70px;
  position: relative;
}
@media screen and (max-width: 500px) {
  .c-heading {
    font-size: 2.2rem;
    padding-left: 55px;
    line-height: 1.4;
  }
}
.c-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  background: url("../img/page/check.png") no-repeat center center/cover;
}
@media screen and (max-width: 500px) {
  .c-heading::before {
    width: 35px;
    height: 35px;
  }
}

.header {
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 120px;
    padding: 0 30px;
  }
}
.header.-js-change {
  padding: 0;
  height: 120px;
}
@media screen and (max-width: 1024px) {
  .header.-js-change {
    height: 80px;
  }
}
.header__logo {
  width: 170px;
}
.header__link {
  display: block;
}
@media screen and (max-width: 1024px) {
  .header__contact {
    display: none;
  }
}
.header__contact-btn {
  padding: 12px 37px;
}

#loader-bg {
  opacity: 1;
  visibility: visible;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #F5F5F5;
  z-index: 1000;
}
#loader-bg.is-active {
  opacity: 0;
  visibility: hidden;
}

#loader {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}
#loader.is-active {
  opacity: 1;
  visibility: visible;
}

#logo-inner {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

#loader-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  transition: top 1s;
  animation: logo 1s ease-in-out infinite;
}

#load-txt {
  position: relative;
  top: 51%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 2.6rem;
}

@keyframes logo {
  0% {
    top: 0;
  }
  50% {
    top: 30px;
  }
  100% {
    top: 0;
  }
}
.mv {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.mv__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100vh;
}
.mv__copy {
  position: absolute;
  top: 45%;
  left: 5%;
  z-index: 2;
  transform: translateY(-50%);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .mv__copy {
    font-size: 4rem;
    top: 32%;
  }
}
@media screen and (max-width: 767px) {
  .mv__copy {
    font-size: 2.6rem;
    top: 32%;
  }
}
.mv__copy .strong {
  display: block;
  margin-top: 20px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .mv__copy .strong {
    font-size: 1.4rem;
  }
}
.mv__copy span {
  display: block;
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .mv__copy span {
    font-size: 1.4rem;
  }
}
.mv__img {
  position: absolute;
  width: 42%;
  min-width: 440px;
  bottom: 0%;
  right: 8%;
  z-index: 1;
}
@media screen and (min-width: 1025px) and (max-width: 1399px) {
  .mv__img {
    right: 0%;
    width: 48%;
    max-width: 530px;
  }
}
@media screen and (max-width: 1024px) {
  .mv__img {
    right: 0%;
    bottom: 21%;
    width: 57%;
    min-width: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv__img {
    right: 0%;
    bottom: 17%;
    width: 73%;
    min-width: 0;
  }
}
.mv__btn-inner {
  position: absolute;
  display: inline-block;
  bottom: 20%;
  left: 5%;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .mv__btn-inner {
    bottom: 8%;
    left: 0;
    display: block;
    width: 100%;
    text-align: center;
  }
}
.mv__btn {
  padding: 20px 37px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .mv__btn {
    padding: 17px 30px;
  }
}

.top-service__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top-service__wrap {
    display: block;
  }
}
.top-service__left {
  flex: 0 0 380px;
}
.top-service__img {
  margin-top: 80px;
  width: 97%;
}
@media screen and (max-width: 1024px) {
  .top-service__img {
    display: none;
  }
}
.top-service__lead {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.33;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .top-service__lead {
    margin-top: 30px;
  }
}
.top-service__right {
  flex: 0 1 730px;
  margin-left: 60px;
}
@media screen and (max-width: 1024px) {
  .top-service__right {
    margin-left: 0;
    margin-top: 60px;
  }
}
.top-service__item {
  width: 100%;
  padding: 30px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top-service__item {
    padding: 40px 80px;
  }
}
@media screen and (max-width: 767px) {
  .top-service__item {
    padding: 40px 70px;
  }
}
@media screen and (max-width: 500px) {
  .top-service__item {
    padding: 30px 40px;
  }
}
.top-service__item.-bg1 {
  background: url("../img/top/service-bg1.png") no-repeat center/cover;
}
.top-service__item.-bg2 {
  background: url("../img/top/service-bg2.jpg") no-repeat center/cover;
}
.top-service__item.-bg3 {
  background: url("../img/top/service-bg3.jpg") no-repeat center/cover;
}
.top-service__item.-bg4 {
  background: url("../img/top/service-bg4.jpg") no-repeat center/cover;
}
.top-service__item::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
.top-service__item + .top-service__item {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .top-service__item + .top-service__item {
    margin-top: 30px;
  }
}
.top-service__ttl {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-service__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 500px) {
  .top-service__ttl {
    font-size: 1.8rem;
  }
}
.top-service__br {
  display: block;
}
@media screen and (min-width: 1080px) {
  .top-service__br {
    display: none;
  }
}

.top-works__slide-inner {
  width: 100%;
  overflow: hidden;
}
.top-works__head {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top-works__head {
    margin-bottom: 45px;
  }
}
.top-works__bottom {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top-works__bottom {
    margin-top: 45px;
  }
}

.s-works__slide-inner {
  width: 100%;
  overflow: hidden;
}
.s-works__ttl {
  padding-bottom: 40px;
}

.top-blog {
  width: 100%;
  margin-top: 60px;
  position: relative;
}
.top-blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #4D4D4D;
  display: none;
}
@media screen and (max-width: 1024px) {
  .top-blog::before {
    width: 100%;
    height: 180px;
    display: block;
  }
}
.top-blog__wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-blog__wrap {
    display: block;
  }
}
.top-blog__left {
  flex: 0 0 327px;
  padding-top: 100px;
  padding-left: 30px;
  background-color: #4D4D4D;
}
@media screen and (max-width: 1024px) {
  .top-blog__left {
    padding-top: 60px;
    padding-left: 0;
    background-color: transparent;
  }
}
.top-blog__nav {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .top-blog__nav {
    display: none;
  }
}
.top-blog__item {
  padding-left: 25px;
  position: relative;
}
.top-blog__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 5px;
  border-color: transparent transparent transparent #ffffff;
}
.top-blog__item + .top-blog__item {
  margin-top: 30px;
}
.top-blog__link {
  font-size: 1.4rem;
  color: #fff;
}
.top-blog__btn-inner {
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .top-blog__btn-inner {
    display: none;
  }
}
.top-blog__right {
  flex: 0 1 70%;
  padding: 100px 0;
  margin-left: 60px;
}
@media screen and (max-width: 1024px) {
  .top-blog__right {
    width: 100%;
    margin-left: 0;
    padding: 90px 0 0 0;
  }
}
.top-blog__entry {
  display: block;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #DFDFDF;
  position: relative;
}
.top-blog__entry:first-child {
  padding-top: 20px;
  border-top: 1.5px solid #DFDFDF;
}
.top-blog__entry + .top-blog__entry {
  margin-top: 20px;
}
.top-blog__entry-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.top-blog__entry-link:hover {
  opacity: 1;
}
.top-blog__entry-img {
  display: block;
  width: 31.7%;
  overflow: hidden;
  position: relative;
}
.top-blog__entry-img::before {
  content: "";
  display: block;
  padding-top: 68.75%;
}
.top-blog__entry-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1, 1);
  transition: transform 0.3s;
}
.top-blog__entry-img img:hover {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}
.top-blog__entry-txt {
  width: 63.3%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top-blog__entry-head-inner {
  display: flex;
  justify-content: space-between;
}
.top-blog__cat {
  font-size: 1.4rem;
  color: #A8AEB3;
  display: block;
}
@media screen and (max-width: 767px) {
  .top-blog__cat {
    font-size: 1.2rem;
  }
}
.top-blog__time {
  font-size: 1.4rem;
  color: #A8AEB3;
}
@media screen and (max-width: 767px) {
  .top-blog__time {
    font-size: 1.2rem;
  }
}
.top-blog__entry-ttl {
  display: block;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .top-blog__entry-ttl {
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .top-blog__entry-ttl {
    font-size: 1.4rem;
  }
}
.top-blog__entry-ttl:hover {
  text-decoration: underline;
}
.top-blog__entry-tag {
  margin-top: 10px;
  margin-bottom: 5px;
}
.top-blog__bottom-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .top-blog__bottom-btn {
    display: block;
    margin-top: 40px;
  }
}

.outline {
  margin-bottom: 60px;
}
.outline__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .outline__wrap {
    display: block;
  }
}
.outline__left {
  flex: 0 0 395px;
}
.outline__right {
  flex: 0 1 765px;
  justify-content: space-between;
  padding-top: 30px;
  margin-left: 80px;
}
@media screen and (max-width: 1024px) {
  .outline__right {
    margin-left: 0;
  }
}
.outline__list {
  display: flex;
  padding: 25px 0;
  border-bottom: 1.5px solid #dfdfdf;
}
.outline__term {
  flex: 0 1 216px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #8966EF;
}
@media screen and (max-width: 1024px) {
  .outline__term {
    flex: 0 1 190px;
  }
}
@media screen and (max-width: 767px) {
  .outline__term {
    flex: 0 1 160px;
  }
}
@media screen and (max-width: 500px) {
  .outline__term {
    flex: 0 1 130px;
  }
}
.outline__desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
}
.outline__desc span {
  display: block;
  margin-top: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}

.swiper {
  display: flex;
  overflow: visible;
  width: 100%;
  max-width: 1320px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 5px;
  box-sizing: content-box;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .swiper {
    padding-left: 20px;
  }
}
@media screen and (max-width: 500px) {
  .swiper {
    overflow: hidden;
  }
}
.swiper-wrapper {
  display: block;
  flex: 0 0 350px;
  max-width: 350px;
  border: 1px solid #DFDFDF;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
}
.swiper-wrapper + .swiper-wrapper {
  margin-left: 30px;
}
.swiper-wrapper:hover {
  opacity: 1;
}
.swiper-slide {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.swiper-slide::before {
  content: "";
  display: block;
  padding-top: 52.5%;
}
.swiper-slide:hover .swiper-hover-bg {
  opacity: 1;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper-hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}
.swiper-hover-cat {
  margin-top: 15px;
}
.swiper-button-next {
  top: -80px;
  width: 60px;
  height: 60px;
  border: 2px solid #8966EF;
  border-radius: 1000px;
  right: 60px;
  color: #8966EF;
}
@media screen and (max-width: 1024px) {
  .swiper-button-next {
    display: none;
  }
}
.swiper-button-prev {
  top: -80px;
  right: 150px;
  left: auto;
  width: 60px;
  height: 60px;
  border: 2px solid #8966EF;
  border-radius: 1000px;
  color: #8966EF;
}
@media screen and (max-width: 1024px) {
  .swiper-button-prev {
    display: none;
  }
}

.cta {
  display: block;
  position: relative;
  background: url("../img/top/cta.png") no-repeat center center/cover;
}
.cta:hover {
  opacity: 1;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.cta__wrap {
  position: relative;
  padding: 165px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .cta__wrap {
    padding: 80px 0;
  }
}
.cta__txt {
  font-size: 2.6rem;
  color: #fff;
  line-height: 1.6;
  margin-right: 70px;
}
@media screen and (max-width: 1024px) {
  .cta__txt {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 500px) {
  .cta__txt {
    font-size: 1.8rem;
    margin-right: 40px;
  }
}

.footer {
  padding-top: 60px;
  background-color: #4D4D4D;
}
.footer__wrap {
  display: flex;
  padding-bottom: 85px;
}
@media screen and (max-width: 1024px) {
  .footer__wrap {
    display: block;
    padding-bottom: 30px;
  }
}
.footer__logo {
  width: 250px;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .footer__logo {
    width: 200px;
  }
}
.footer__sns {
  margin-top: 35px;
}
@media screen and (max-width: 1024px) {
  .footer__sns {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__sns-item + .footer__sns-item {
    margin-top: 0;
    margin-left: 40px;
  }
}
.footer__right {
  margin-left: 150px;
}
@media screen and (max-width: 1024px) {
  .footer__right {
    margin-left: 0;
    margin-top: 80px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__right {
    margin-left: 0;
    margin-top: 80px;
    display: block;
  }
}
.footer__nav {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    justify-content: center;
  }
}
.footer__nav + .footer__nav {
  margin-top: 90px;
}
@media screen and (max-width: 1024px) {
  .footer__nav + .footer__nav {
    margin-top: 0;
    margin-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav + .footer__nav {
    margin-top: 60px;
    margin-left: 0;
  }
}
.footer__item + .footer__item {
  margin-left: 130px;
}
@media screen and (max-width: 1024px) {
  .footer__item + .footer__item {
    margin-left: 60px;
  }
}
.footer__item-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  color: #8966EF;
}
@media screen and (max-width: 500px) {
  .footer__item-ttl {
    font-size: 1.4rem;
  }
}
.footer__item-ttl a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #8966EF;
}
@media screen and (max-width: 500px) {
  .footer__item-ttl a {
    font-size: 1.4rem;
  }
}
.footer__item-group {
  margin-top: 27px;
}
.footer__item-group li:not(:first-child) {
  margin-top: 24px;
}
.footer__item-group li a {
  font-size: 1.4rem;
  color: #fff;
  padding-left: 12px;
  display: block;
  position: relative;
}
@media screen and (max-width: 500px) {
  .footer__item-group li a {
    font-size: 1.2rem;
  }
}
.footer__item-group li a::before {
  content: "";
  width: 6px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
}
.footer__copyright {
  padding: 30px 0;
}
.footer__copyright-txt {
  color: #fff;
  font-size: 1.2rem;
}

.fv {
  padding-top: 180px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .fv {
    padding-top: 120px;
  }
}
.fv__bg {
  position: absolute;
  top: 180px;
  left: 0;
  width: 75%;
  height: 315px;
  border-radius: 0 1000px 1000px 0;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .fv__bg {
    top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .fv__bg {
    width: 90%;
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .fv__bg {
    width: 90%;
    height: 220px;
  }
}
.fv__wrap {
  position: relative;
  width: 70%;
  max-width: 980px;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .fv__wrap {
    width: 85%;
    margin-top: 80px;
  }
}
.fv__en-ttl {
  font-size: 2.4rem;
  color: #8966EF;
  line-height: 1, 46;
}
@media screen and (max-width: 767px) {
  .fv__en-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .fv__en-ttl {
    font-size: 1.8rem;
  }
}
.fv__ja-ttl {
  font-size: 4.8rem;
  font-weight: 700;
  display: block;
  line-height: 1.46;
}
@media screen and (max-width: 767px) {
  .fv__ja-ttl {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 500px) {
  .fv__ja-ttl {
    font-size: 3rem;
  }
}
.fv__img {
  position: absolute;
  width: 285px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .fv__img {
    top: 100px;
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .fv__img {
    top: 70px;
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .fv__img {
    top: 70px;
    width: 140px;
  }
}

.about {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .about {
    margin-top: 90px;
  }
}
.about__wrap {
  background-color: #4D4D4D;
  border-radius: 30px;
  padding: 100px 50px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .about__wrap {
    display: block;
    padding: 80px 50px;
  }
}
@media screen and (max-width: 500px) {
  .about__wrap {
    padding: 60px 30px;
  }
}
.about__left {
  flex: 0 0 150px;
}
.about__right {
  flex: 0 1 868px;
  margin-left: 100px;
}
@media screen and (max-width: 1024px) {
  .about__right {
    margin-left: 0;
    margin-top: 30px;
  }
}
.about__item {
  color: #fff;
  padding: 60px 0;
  border-bottom: 1px solid #707070;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .about__item {
    padding: 45px 0;
  }
}
.about__item:first-child {
  border-top: 1px solid #707070;
}
.about__num {
  flex: 0 0 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  border: 1.5px solid #8966EF;
}
@media screen and (max-width: 767px) {
  .about__num {
    flex: 0 0 120px;
    height: 120px;
  }
}
@media screen and (max-width: 500px) {
  .about__num {
    display: none;
  }
}
.about__num span {
  font-size: 3.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .about__num span {
    font-size: 2.4rem;
  }
}
.about__txt {
  margin-left: 80px;
}
@media screen and (max-width: 767px) {
  .about__txt {
    margin-left: 40px;
  }
}
@media screen and (max-width: 500px) {
  .about__txt {
    margin-left: 0;
  }
}
.about__heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 500px) {
  .about__heading {
    font-size: 2rem;
    padding-bottom: 5px;
    position: relative;
  }
  .about__heading::before {
    content: "POINT";
    position: absolute;
    top: -45px;
    left: -15px;
    color: #8966EF;
    font-size: 4.8rem;
    opacity: 0.2;
  }
}
.about__lead {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 16px;
}
@media screen and (max-width: 500px) {
  .about__lead {
    margin-top: 20px;
  }
}

.detail__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .detail__wrap {
    display: block;
  }
}
.detail__wrap + .detail__wrap {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .detail__wrap + .detail__wrap {
    margin-top: 80px;
  }
}
.detail__left {
  flex: 0 0 380px;
}
.detail__lead {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 500px) {
  .detail__lead {
    margin-top: 15px;
    line-height: 1.6;
  }
}
.detail__right {
  width: 100%;
  margin-left: 90px;
}
@media screen and (max-width: 1080px) {
  .detail__right {
    margin-left: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .detail__right {
    margin-left: 0;
    margin-top: 30px;
  }
}
.detail__items {
  display: flex;
  flex-wrap: wrap;
}
.detail__item {
  border: 1px solid #707070;
  border-radius: 10px;
  padding: 45px 20px;
}
@media screen and (min-width: 1400px) {
  .detail__item {
    flex: 0 0 32%;
  }
  .detail__item:not(:nth-child(3n+1)) {
    margin-left: 2%;
  }
  .detail__item:nth-child(n+4) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1399px) {
  .detail__item {
    flex: 0 0 48%;
  }
  .detail__item:not(:nth-child(2n+1)) {
    margin-left: auto;
  }
  .detail__item:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .detail__item {
    flex: 0 0 32%;
    margin-top: 20px;
  }
  .detail__item:not(:nth-child(3n+1)) {
    margin-left: 2%;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .detail__item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .detail__item:nth-child(n+4) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .detail__item:nth-child(n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .detail__item {
    flex: 0 0 48%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .detail__item {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 767px) {
  .detail__item:not(:nth-child(2n+1)) {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .detail__item:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .detail__item {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 500px) and (max-width: 767px) {
  .detail__item {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 500px) {
  .detail__item:not(:nth-child(2n+1)) {
    margin-left: auto;
  }
}
@media screen and (max-width: 500px) {
  .detail__item:nth-child(n+3) {
    margin-top: 20px;
  }
}
.detail__item-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #8966EF;
}
.detail__item-lead {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 25px;
}
@media screen and (max-width: 500px) {
  .detail__item-lead {
    font-size: 1.4rem;
  }
}

.faq {
  background-color: #fff;
}
.faq__ttl {
  text-align: center;
}
.faq__list {
  margin-top: 60px;
}
.faq__item + .faq__item {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .faq__item + .faq__item {
    margin-top: 45px;
  }
}
@media screen and (max-width: 500px) {
  .faq__q {
    font-size: 1.8rem;
  }
}
.faq__a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
  margin-top: 20px;
  padding-left: 70px;
}
@media screen and (max-width: 500px) {
  .faq__a {
    padding-left: 55px;
    line-height: 1.4;
  }
}
.faq__contact-inner {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
.faq__contact-btn {
  padding: 28px 97px;
}
@media screen and (max-width: 500px) {
  .faq__contact-btn {
    padding: 28px 0;
    width: 100%;
    display: inline-block;
  }
}

.s-links {
  padding: 100px 0;
  background: url("../img/page/service-footer.png") no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .s-links {
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
  }
}
.s-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.s-links__inner {
  display: inline-block;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .s-links__inner {
    display: block;
  }
}
.s-links__inner + .s-links__inner {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .s-links__inner + .s-links__inner {
    margin-left: 0;
    margin-top: 10px;
  }
}
.s-links__btn {
  display: inline-block;
  width: 190px;
  height: 190px;
  border: 1px solid #fff;
  border-radius: 1000px;
  text-align: center;
  line-height: 190px;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.5s;
}
.s-links__btn:hover {
  background-color: #fff;
  color: #333;
  opacity: 1;
}
.s-links__btn + .s-links__btn {
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  .s-links__btn + .s-links__btn {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .s-links__btn {
    width: 160px;
    height: 160px;
    line-height: 160px;
  }
  .s-links__btn:nth-child(2n) {
    margin-left: 10px;
  }
}

.trave {
  margin-top: 120px;
}
@media screen and (max-width: 1024px) {
  .trave {
    margin-top: 120px;
  }
}
.trave__ttl {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .trave__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 500px) {
  .trave__ttl {
    font-size: 2rem;
  }
}
.trave__logo {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trave__digist-logo {
  width: 220px;
}
@media screen and (max-width: 767px) {
  .trave__digist-logo {
    width: 150px;
  }
}
.trave__trave-logo {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .trave__trave-logo {
    width: 180px;
  }
}
.trave__batsu {
  margin: 0 30px;
  position: relative;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .trave__batsu {
    width: 30px;
    height: 30px;
  }
}
.trave__bar1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 4px;
  border-radius: 1000px;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .trave__bar1 {
    width: 30px;
  }
}
.trave__bar2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 4px;
  border-radius: 100px;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .trave__bar2 {
    width: 30px;
  }
}
.trave__lead {
  margin-top: 60px;
  font-size: 2rem;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .trave__lead {
    font-size: 1.6rem;
  }
}
.trave__contact-inner {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trave__contact-inner {
    margin-top: 60px;
  }
}
.trave__contact-btn {
  display: inline-block;
  padding: 28px 0;
  width: 450px;
  font-size: 1.6rem;
}
@media screen and (max-width: 500px) {
  .trave__contact-btn {
    width: 100%;
    padding: 25px 0;
  }
}

.works {
  margin-top: 120px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .works {
    margin-top: 100px;
    margin-bottom: 80px;
  }
}
.works__items {
  display: flex;
  flex-wrap: wrap;
}
.works__item {
  background-color: #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  .works__item {
    width: 32%;
  }
  .works__item:not(:nth-child(3n+1)) {
    margin-left: 2%;
  }
  .works__item:nth-child(n+4) {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .works__item {
    width: 48%;
  }
  .works__item:not(:nth-child(2n+1)) {
    margin-left: auto;
  }
  .works__item:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .works__item {
    width: 100%;
  }
  .works__item:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
  .works__item + .works__item {
    margin-top: 40px;
  }
}
.works__link {
  display: block;
}
.works__img {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px 10px 0 0;
}
.works__img::before {
  content: "";
  display: block;
  padding-top: 52.5%;
}
.works__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1, 1);
  transition: all 0.3s;
}
.works__img img:hover {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}
.works__txt {
  padding: 10px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .works__txt {
    padding: 20px 0;
  }
}
.works__name {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.works__cat {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}

.work-mv {
  padding: 120px 0 60px;
}
@media screen and (max-width: 1024px) {
  .work-mv {
    padding: 100px 0 60px;
  }
}
.work-mv__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .work-mv__wrap {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .work-mv__ttl {
    text-align: center;
  }
}
.work-mv__name {
  font-size: 2.4rem;
  line-height: 1.45;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid #333;
}
.work-mv__cat {
  display: block;
  font-size: 1.8rem;
  line-height: 1.45;
  margin-top: 5px;
}
.work-mv__img {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .work-mv__img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .work-mv__img {
    width: 70%;
  }
}

.project {
  background-color: #fff;
  padding: 60px 0 100px;
}
@media screen and (max-width: 767px) {
  .project {
    padding: 60px 0 80px;
  }
}
.project__ttl {
  text-align: center;
}
.project__lead {
  width: 80%;
  padding-top: 30px;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .project__lead {
    width: 100%;
    font-size: 1.6rem;
  }
}

.point {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .point {
    padding: 80px 0;
  }
}
.point__ttl {
  text-align: center;
}
.point__list {
  margin-top: 50px;
}
.point__item + .point__item {
  margin-top: 60px;
}
.point__lead {
  margin-top: 20px;
  margin-left: 70px;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 500px) {
  .point__lead {
    margin-left: 0;
  }
}

.site-img {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .site-img {
    padding-bottom: 80px;
  }
}
.site-img__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .site-img__wrap {
    display: block;
  }
}
.site-img__left {
  width: 48%;
  border: 1px solid #DFDFDF;
}
@media screen and (max-width: 767px) {
  .site-img__left {
    width: 70%;
    margin: 0 auto;
  }
}
.site-img__right {
  width: 48%;
  border: 1px solid #DFDFDF;
}
@media screen and (max-width: 767px) {
  .site-img__right {
    width: 70%;
    margin: 0 auto;
    margin-top: 20px;
  }
}

.info__wrap {
  padding: 60px 0;
}
.info__list {
  display: flex;
}
.info__list + .info__list {
  margin-top: 20px;
}
.info__term {
  font-size: 2rem;
  width: 160px;
}
@media screen and (max-width: 767px) {
  .info__term {
    width: 120px;
    font-size: 1.6rem;
  }
}
.info__desc {
  width: calc(100% - 160px);
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .info__desc {
    font-size: 1.6rem;
  }
}
.info__back-inner {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .info__back-inner {
    margin-top: 50px;
  }
}
.info__back-btn {
  display: inline-block;
  padding: 13px 60px;
  border-radius: 50px;
  border: 1px solid #333;
  font-size: 1.6rem;
}
.info__contact-inner {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .info__contact-inner {
    margin-top: 45px;
  }
}
.info__contact-btn {
  display: inline-block;
  padding: 28px 100px;
}
@media screen and (max-width: 500px) {
  .info__contact-btn {
    padding: 28px 0;
    width: 100%;
  }
}

.other {
  margin: 100px 0;
}
@media screen and (max-width: 767px) {
  .other {
    margin: 80px 0;
  }
}
.other__slide-inner {
  width: 100%;
  overflow: hidden;
}
.other__ttl {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .other__ttl {
    padding-bottom: 45px;
  }
}

.category {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .category {
    overflow-x: scroll;
    white-space: nowrap;
    height: 50px;
  }
}
.category__ttl {
  display: inline-block;
  font-size: 1.6rem;
  padding: 8px 10px;
  margin-bottom: 10px;
  background-color: #4D4D4D;
  color: #fff;
}
.category__list {
  display: flex;
  align-items: center;
}
.category__item + .category__item {
  margin-left: 25px;
}
.category__item span {
  display: inline-block;
  font-size: 1.6rem;
  padding: 8px 10px;
  margin-bottom: 10px;
  background-color: #4D4D4D;
  color: #fff;
}
.category__item a {
  display: inline-block;
  font-size: 1.6rem;
  padding-bottom: 10px;
}
.category__item a:hover {
  border-bottom: 2px solid #333;
}

.blog-heading {
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .blog-heading {
    font-size: 3.6rem;
  }
}
.blog-heading-inner {
  margin-top: 180px;
  padding: 20px 0 60px;
  border-bottom: 2px solid #333;
}
@media screen and (max-width: 1024px) {
  .blog-heading-inner {
    margin-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .blog-heading-inner {
    padding: 20px 0 45px;
  }
}

.blog-catTtl {
  font-size: 4rem;
  font-weight: 700;
  padding: 60px 0 0 10px;
}
.blog-catTtl.-tagTtl {
  font-size: 2.8rem;
}
@media screen and (max-width: 500px) {
  .blog-catTtl {
    font-size: 3.6rem;
    padding: 60px 0 0 0;
  }
  .blog-catTtl.-tagTtl {
    font-size: 2.6rem;
  }
}

.blog-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .blog-wrap {
    display: block;
  }
}

.blog {
  width: 100%;
  padding-top: 25px;
}
@media screen and (max-width: 500px) {
  .blog {
    padding-top: 10px;
  }
}
.blog__entry {
  display: block;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #DFDFDF;
  position: relative;
}
.blog__entry:first-child {
  padding-top: 20px;
  border-top: 1.5px solid #DFDFDF;
}
.blog__entry + .blog__entry {
  margin-top: 20px;
}
.blog__entry-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.blog__entry-link:hover {
  opacity: 1;
}
.blog__entry-img {
  display: block;
  width: 31.7%;
  overflow: hidden;
  position: relative;
}
.blog__entry-img::before {
  content: "";
  display: block;
  padding-top: 68.75%;
}
.blog__entry-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1, 1);
  transition: transform 0.3s;
}
.blog__entry-img img:hover {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}
.blog__entry-txt {
  width: 63.3%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog__entry-head-inner {
  display: flex;
  justify-content: space-between;
}
.blog__cat {
  font-size: 1.4rem;
  color: #A8AEB3;
  display: block;
}
@media screen and (max-width: 767px) {
  .blog__cat {
    font-size: 1.2rem;
  }
}
.blog__time {
  font-size: 1.4rem;
  color: #A8AEB3;
}
@media screen and (max-width: 767px) {
  .blog__time {
    font-size: 1.2rem;
  }
}
.blog__entry-ttl {
  display: block;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .blog__entry-ttl {
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .blog__entry-ttl {
    font-size: 1.4rem;
  }
}
.blog__entry-ttl:hover {
  text-decoration: underline;
}
.blog__entry-tag {
  margin-top: 10px;
  margin-bottom: 5px;
}
.blog__bottom-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .blog__bottom-btn {
    display: block;
    margin-top: 40px;
  }
}

.side-nav {
  flex: 0 0 350px;
  margin-left: 45px;
}
@media screen and (max-width: 1024px) {
  .side-nav {
    flex: 0 1 100%;
    margin-left: 0;
    margin-top: 60px;
  }
}
.side-nav__pickup-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  .side-nav__pickup-ttl {
    font-size: 2rem;
    text-align: center;
    padding-bottom: 20px;
  }
}
.side-nav__pickup-item {
  padding: 12px 0;
}
.side-nav__pickup-item:not(:last-child) {
  border-bottom: 1px solid #dfdfdf;
}
.side-nav__link {
  display: flex;
  justify-content: space-between;
}
.side-nav__img {
  flex: 0 0 80px;
  overflow: hidden;
  position: relative;
}
.side-nav__img::before {
  content: "";
  display: block;
  padding-top: 68.75%;
}
.side-nav__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1, 1);
  transition: transform 0.3s;
}
.side-nav__img img:hover {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}
@media screen and (max-width: 1024px) {
  .side-nav__img {
    flex: 0 0 20%;
  }
}
.side-nav__txt {
  flex: 0 1 100%;
  margin-left: 10px;
  font-size: 1.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .side-nav__txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 500px) {
  .side-nav__txt {
    font-size: 1.4rem;
  }
}
.side-nav__tag-ttl {
  margin-top: 25px;
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  .side-nav__tag-ttl {
    font-size: 2rem;
    text-align: center;
    padding-bottom: 20px;
  }
}
.side-nav__tag {
  font-size: 1.4rem;
  margin-top: 8px;
}

.pageNav {
  padding-top: 20px;
}
.pageNav .page-numbers {
  display: inline-block;
  padding: 10px;
  font-size: 1.6rem;
}
.pageNav .page-numbers.current {
  background-color: #3E3E3E;
  color: #fff;
}

.entry {
  margin-top: 60px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .entry {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .entry {
    margin-top: 100px;
  }
}
.entry__body {
  margin-top: 60px;
  padding-top: 15px;
  border-top: 2px solid #dfdfdf;
}
@media screen and (max-width: 767px) {
  .entry__body {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }
}
.entry__body > p {
  margin: 25px 0 30px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
.entry__body > p .markerYellow {
  background-color: gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, #fff799));
}
@media screen and (max-width: 767px) {
  .entry__body > p {
    margin: 15px 0 20px;
    letter-spacing: 0;
  }
}
.entry__body > p a {
  font-size: 1.6rem;
  color: #0d5174;
}
@media screen and (max-width: 767px) {
  .entry__body > p a {
    font-size: 1.6rem;
  }
}
.entry__body > p a:hover {
  text-decoration: underline;
}
.entry__body > a {
  font-size: 1.6rem;
  color: #0d5174;
  margin: 25px 0 30px;
}
@media screen and (max-width: 767px) {
  .entry__body > a {
    font-size: 1.6rem;
  }
}
.entry__body > a:hover {
  text-decoration: underline;
}
.entry__body > ul {
  margin-bottom: 30px;
}
.entry__body > ul li {
  font-size: 1.6rem;
  line-height: 1.5;
  list-style-type: disc;
  list-style-position: inside;
}
@media screen and (max-width: 767px) {
  .entry__body > ul li {
    font-size: 1.6rem;
  }
}
.entry__body > ul li:not(:first-child) {
  margin-top: 16px;
}
.entry__body > ol {
  margin-bottom: 30px;
}
.entry__body > ol li {
  font-size: 1.8rem;
  line-height: 1.5;
  list-style-type: decimal;
  list-style-position: inside;
}
@media screen and (max-width: 767px) {
  .entry__body > ol li {
    font-size: 1.6rem;
  }
}
.entry__body > ol li:not(:first-child) {
  margin-top: 16px;
}
.entry__body h2 {
  margin: 100px 0 30px;
  padding: 20px 30px 20px;
  color: #fff;
  background-color: #4D4D4D;
}
.entry__body h2 span {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .entry__body h2 {
    padding: 10px 20px;
    margin: 55px 0 20px;
  }
  .entry__body h2 span {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.entry__body h3 {
  margin: 30px 0 20px;
  padding: 15px 0;
  border-bottom: 2px solid #333;
}
.entry__body h3 span {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .entry__body h3 {
    margin: 40px 0 20px;
  }
  .entry__body h3 span {
    font-size: 2rem;
  }
}
.entry__body h4 {
  max-width: 30px 0 20px;
  padding: 3px 0 3px 10px;
  border-left: 4px solid #333;
}
.entry__body h4 span {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .entry__body h4 span {
    font-size: 1.8rem;
  }
}
.entry__body blockquote {
  background-color: rgba(47, 47, 47, 0.1);
  padding: 20px 30px 20px 60px;
  margin-bottom: 40px;
  position: relative;
}
.entry__body blockquote::before {
  content: "";
  background: url("../img/page/icon_quotation.png") no-repeat center center/cover;
  position: absolute;
  top: 16px;
  left: 20px;
  display: block;
  width: 20px;
  height: 21px;
}
.entry__body blockquote p {
  font-size: 1.4rem;
  line-height: 1.5;
}
.entry__body blockquote cite {
  display: block;
  font-size: 1.4rem;
  color: #666;
  font-style: italic;
  padding-top: 15px;
}
.entry__body #toc_container {
  margin-top: 30px;
  padding: 30px;
  background: #ececec;
}
.entry__body .toc_title {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 10px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .entry__body .toc_title {
    font-size: 1.8rem;
  }
}
.entry__body .toc_list {
  margin-top: 10px;
}
.entry__body .toc_list > li {
  padding: 15px 0;
  border-top: 1px solid rgba(47, 47, 47, 0.1);
  list-style-type: decimal;
  list-style-position: inside;
}
.entry__body .toc_list > li::marker {
  font-size: 1.6rem;
}
.entry__body .toc_list > li ul {
  padding-left: 30px;
  padding-top: 6px;
}
.entry__body .toc_list > li ul li {
  padding: 5px 0;
  line-height: 2;
  list-style-type: disc;
  list-style-position: inside;
  font-size: 1.6rem;
}
.entry__body .toc_list a {
  font-size: 1.6rem;
  color: #004296;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.entry__body .toc_list a:hover {
  text-decoration: underline;
}
.entry__body .wp-block-file {
  margin: 25px 0 30px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .entry__body .wp-block-file {
    margin: 15px 0 20px;
  }
}
.entry__body .wp-block-file a {
  color: #004296;
  text-decoration: underline;
}
.entry__body .wp-block-file a.wp-block-file__button {
  color: #333;
  text-decoration: none;
}
.entry__body .wp-block-file a:hover {
  text-decoration: none;
}
.entry__body .wp-block-button a {
  background-color: #8966EF;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 1000px;
  font-weight: 500;
  display: inline-block;
  box-sizing: border-box;
  border: 2px solid #8966EF;
  transition: all 0.3s;
}
.entry__body .wp-block-button a:hover {
  color: #333;
  background-color: #fff;
}
.entry__body .wp-block-table td, .entry__body .wp-block-table th {
  border: 1px solid #dadada;
  font-size: 1.6rem;
  padding: 15px;
}
.entry__body .wp-block-table th {
  background-color: #ececec;
}
.entry__body .liquid-speech-balloon-text p {
  font-size: 1.6rem;
  line-height: 1.5;
}
.entry__share {
  display: inline-block;
  position: sticky;
  top: 180px;
}
@media screen and (max-width: 1024px) {
  .entry__share {
    top: 150px;
  }
}
@media screen and (max-width: 767px) {
  .entry__share {
    display: none;
  }
}
.entry__share-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.entry__share-item {
  font-size: 1.6rem;
  list-style-type: none;
}
.entry__share-item + .entry__share-item {
  margin-top: 10px;
}
.entry__share-item span {
  writing-mode: vertical-rl;
}
.entry__share-item a {
  display: inline-block;
  width: 30px;
}
.entry__share-sp {
  display: none;
  padding: 20px 0;
  margin: 40px 0 15px;
  border-bottom: 2px solid #dfdfdf;
  border-top: 2px solid #dfdfdf;
}
@media screen and (max-width: 767px) {
  .entry__share-sp {
    display: block;
  }
}
.entry__share-sp-list {
  display: flex;
  align-items: center;
}
.entry__share-sp-item {
  list-style-type: none;
}
.entry__share-sp-item + .entry__share-sp-item {
  margin-left: 20px;
}
.entry__share-sp-item span {
  font-size: 2.4rem;
}
.entry__share-sp-item a {
  display: inline-block;
  width: 30px;
}
.entry__wrap {
  width: 70vw;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .entry__wrap {
    max-width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .entry__wrap {
    width: 100%;
  }
}
.entry__thumb-sp-inner {
  display: none;
}
@media screen and (max-width: 767px) {
  .entry__thumb-sp-inner {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .entry__head {
    margin-top: 30px;
  }
}
.entry__cat {
  font-size: 1.8rem;
  color: #A8AEB3;
}
@media screen and (max-width: 767px) {
  .entry__cat {
    font-size: 1.6rem;
  }
}
.entry__ttl {
  font-size: 3.4rem;
  font-weight: 700;
  margin: 10px 0 20px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .entry__ttl {
    font-size: 2.4rem;
  }
}
.entry__data {
  font-size: 1.4rem;
  color: #A8AEB3;
}
.entry__tag-inner {
  margin-top: 20px;
}
.entry__thumb {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .entry__thumb {
    display: none;
  }
}
.entry__relate {
  margin-top: 100px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 0 0;
  border-top: 2px solid #dfdfdf;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .entry__relate {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .entry__relateTtl {
    font-size: 2.2rem;
  }
}
.entry__relate-items {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .entry__relate-items {
    display: block;
  }
}
.entry__relate-item {
  flex: 0 1 31%;
}
@media screen and (max-width: 1024px) {
  .entry__relate-item {
    display: block;
    width: 100%;
    position: relative;
  }
  .entry__relate-item + .entry__relate-item {
    margin-top: 20px;
  }
}
.entry__relate-link {
  display: block;
}
@media screen and (max-width: 1024px) {
  .entry__relate-link {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
  }
  .entry__relate-link:hover {
    opacity: 1;
  }
}
.entry__relate-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  background-color: #fff;
}
.entry__relate-img::before {
  content: "";
  display: block;
  padding-top: 68.75%;
}
.entry__relate-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1, 1);
  transition: transform 0.3s;
}
.entry__relate-img img:hover {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}
@media screen and (max-width: 1024px) {
  .entry__relate-img {
    display: block;
    width: 31.7%;
    overflow: hidden;
    position: relative;
  }
  .entry__relate-img::before {
    content: "";
    display: block;
    padding-top: 68.75%;
  }
  .entry__relate-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    transition: transform 0.3s;
  }
  .entry__relate-img img:hover {
    transform: translate(-50%, -50%) scale(1.1, 1.1);
  }
}
.entry__relate-txt {
  width: 100%;
  padding: 25px 15px;
}
@media screen and (max-width: 1024px) {
  .entry__relate-txt {
    width: 63.3%;
    padding: 5px 0 0;
  }
}
.entry__time {
  font-size: 1.4rem;
  color: #A8AEB3;
}
@media screen and (max-width: 1024px) {
  .entry__time {
    display: none;
  }
}
.entry__relate-ttl {
  display: block;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 5px;
}
@media screen and (max-width: 1024px) {
  .entry__relate-ttl {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .entry__relate-ttl {
    font-size: 1.4rem;
  }
}
.entry__relate-ttl:hover {
  text-decoration: underline;
}

.page-breadcrumbs {
  margin-top: 145px;
  font-size: 1.2rem;
  line-height: 1.5;
}
.page-breadcrumbs .pankuzu_arrow {
  padding: 0 6px;
}
.page-breadcrumbs .current-item {
  color: #A8AEB3;
}
.page-breadcrumbs span {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-breadcrumbs {
    margin-top: 90px;
  }
}

.work-breadcrumbs {
  padding-top: 25px;
  background-color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
}
.work-breadcrumbs .pankuzu_arrow {
  padding: 0 6px;
}
.work-breadcrumbs .current-item {
  color: #A8AEB3;
}
.work-breadcrumbs span {
  line-height: 1.5;
}

.blog-breadcrumbs {
  padding: 25px 0;
  font-size: 1.2rem;
  line-height: 1.5;
}
.blog-breadcrumbs .pankuzu_arrow {
  padding: 0 6px;
}
.blog-breadcrumbs .current-item {
  color: #A8AEB3;
}
.blog-breadcrumbs span {
  line-height: 1.5;
}

.entry__breadcrumbs {
  font-size: 1.2rem;
}
.entry__breadcrumbs .pankuzu_arrow {
  padding: 0 6px;
}
.entry__breadcrumbs .current-item {
  color: #A8AEB3;
}
.entry__breadcrumbs span {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .entry__breadcrumbs {
    padding-bottom: 30px;
  }
}

.contact__head {
  padding: 220px 0 80px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .contact__head {
    padding: 140px 0 60px;
  }
}
.contact__ttl {
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact__ttl {
    font-size: 2.6rem;
    line-height: 1.7;
  }
}
.contact__lead {
  margin-top: 60px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact__lead {
    font-size: 1.6rem;
    margin-top: 40px;
  }
}
.contact__caution {
  font-size: 1.6rem;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__caution {
    font-size: 1.4rem;
  }
}
.contact__caution span {
  color: red;
}
.contact__top-btn {
  text-align: center;
  margin-top: 60px;
}
.contact__contact-btn {
  padding: 28px 97px;
}
@media screen and (max-width: 500px) {
  .contact__contact-btn {
    padding: 20px 50px;
    display: inline-block;
  }
}
.contact__form {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .contact__form {
    padding: 40px 0 60px;
  }
}
.contact__items {
  width: 740px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.contact__item {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__item {
    display: block;
    max-width: 100%;
  }
}
.contact__item:nth-of-type(n + 2) {
  margin-top: 40px;
}
.contact__label {
  flex: 0 0 250px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__label {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.contact__label label {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 14px 0;
}
.contact__label label span {
  position: relative;
  font-weight: 700;
}
.contact__label label span::after {
  content: "＊";
  position: absolute;
  display: inline-block;
  top: -2px;
  right: -15px;
  color: red;
  font-size: 12px;
  line-height: 1;
}
.contact__input {
  padding-left: 10px;
  flex: 0 1 100%;
}
@media screen and (max-width: 767px) {
  .contact__input {
    flex: 0 0 100%;
    margin-top: 10px;
    padding-left: 0;
  }
}
.contact__input [type=text], .contact__input [type=email], .contact__input [type=tel] {
  width: 100%;
  height: 45px;
  border: none;
  box-shadow: none;
  border-radius: 2px;
  background: #fff;
  padding: 10px 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
  font-family: inherit;
  font-size: 1.4rem;
  border: none;
  line-height: 1;
  margin: 0;
}
.contact__input [type=text]:focus, .contact__input [type=email]:focus, .contact__input [type=tel]:focus {
  box-shadow: none;
  outline: 2px solid rgb(0, 103, 255);
}
.contact__input textarea {
  width: 100%;
  height: 122px;
  border: none;
  box-shadow: none;
  border-radius: 2px;
  background: #fff;
  padding: 10px 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
  font-family: inherit;
  font-size: 1.4rem;
  resize: vertical;
  line-height: 1.4;
}
.contact__input textarea:focus {
  box-shadow: none;
  outline: 2px solid rgb(0, 103, 255);
}
.contact__select {
  box-shadow: none;
  border: none;
  padding: 14px 16px;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  color: #333;
  font-family: inherit;
  font-size: 1.4rem;
  line-height: 1;
  width: 100%;
  background: #fff url("../img/page/contact-arrow.png") no-repeat right 12px center/12px 8px;
}
.contact__select:focus-visible {
  outline: 2px solid rgb(0, 103, 255);
  box-shadow: none;
}
.contact__name-inner {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 47%;
}
.contact__name-inner + .contact__name-inner {
  margin-left: 5%;
}
.contact__name-label {
  font-size: 1.4rem;
  margin-right: 10px;
}
.contact__checkbox-inner {
  position: relative;
  margin-top: 25px;
}
.contact__checkbox-inner .wpcf7-list-item {
  margin: 0;
}
.contact__checkbox-inner [type=checkbox] {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  opacity: 0;
  margin: 0;
}
.contact__checkbox-inner [type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: #8966EF;
}
.contact__checkbox-inner [type=checkbox]:checked + .wpcf7-list-item-label::after {
  display: block;
}
.contact__checkbox-inner [type=checkbox]:focus-visible + .wpcf7-list-item-label::before {
  outline: 2px solid rgb(0, 103, 255);
  box-shadow: none;
  border: none;
  opacity: 1;
}
.contact__checkbox-inner [type=checkbox]:focus:checked + .wpcf7-list-item-label::before {
  background-color: #8966EF;
  outline: none;
}
.contact__checkbox-inner [type=checkbox]:focus:checked + .wpcf7-list-item-label::after {
  display: block;
}
.contact__checkbox-inner .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 45px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .contact__checkbox-inner .wpcf7-list-item-label {
    font-size: 1.4rem;
  }
}
.contact__checkbox-inner .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid #A8AEB3;
  background: #fff;
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contact__checkbox-inner .wpcf7-list-item-label::after {
  content: "";
  display: none;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  background: url("../img/page/contact_check.png") no-repeat center center/cover;
}
.contact__submit-inner {
  text-align: center;
  margin-top: 48px;
}
.contact__submit-inner [type=submit] {
  display: inline-block;
  padding: 20px 80px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  background-color: #8966EF;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 1000px;
  font-weight: 500;
  border: 2px solid #8966EF;
  transition: background 0.3s ease 0s;
}
.contact__submit-inner [type=submit]:hover {
  color: #333;
  background-color: #fff;
}
.contact__submit-inner [type=submit]:focus-visible {
  outline: 2px solid rgb(0, 103, 255);
}
.contact__message {
  text-align: center;
  margin-top: 60px;
  font-size: 1.8rem;
  display: none;
}
.contact__back-btn {
  text-align: right;
  margin-top: 30px;
}
.contact__success {
  font-size: 1.8rem;
  line-height: 2;
}

.u-section {
  padding: 120px 0 60px;
}
@media screen and (max-width: 1024px) {
  .u-section {
    padding: 100px 0 60px;
  }
}
.u-section.-bg_black {
  background-color: #4D4D4D;
}

.u-page-section {
  padding-top: 80px;
  margin-top: 70px;
}
@media screen and (max-width: 1024px) {
  .u-page-section {
    padding-top: 60px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .u-page-section {
    padding-top: 40px;
    margin-top: 40px;
  }
}

.u-tab-block {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-tab-block {
    display: block;
  }
}

.u-sp-block {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-block {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */