@charset "UTF-8";
/*
Theme Name: xxx
*/
@import url("assets/scss/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

@media screen and (max-width: 959px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
}
body {
  color: #1c0e57;
  letter-spacing: 0.01em;
  font-family: "Noto Sans JP", serif;
  line-height: 1.4;
  background-color: #fff;
}
body input,
body button {
  font-family: inherit;
}
body a {
  color: inherit;
}
body p {
  line-height: 1.8;
}
body strong {
  font-weight: bold;
}
body .underline {
  text-decoration: underline;
}
body img {
  max-width: 100%;
  height: auto;
}
body iframe {
  max-width: 100%;
}
@media screen and (min-width: 960px) {
  body a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
@media screen and (max-width: 959px) {
  body {
    font-size: 14px;
  }
}

.container {
  width: 1200px;
  max-width: 100%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 8px;
}
@media screen and (max-width: 959px) {
  .container {
    padding: 0 20px;
  }
}

ul.normal-list li {
  line-height: 1.8;
  padding-left: 1.4em;
  position: relative;
}
ul.normal-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0.5em;
}

ol.normal-list {
  list-style: decimal;
  padding-left: 2em;
}
ol.normal-list li {
  line-height: 1.8;
}

.logo-text {
  font-size: 36px;
}
.logo-text.white {
  color: #fff;
}
@media screen and (max-width: 959px) {
  .logo-text {
    font-size: 24px;
  }
}

.fz-20 {
  font-size: 20px;
}
@media screen and (max-width: 959px) {
  .fz-20 {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  .fz-20 {
    font-size: 14px;
  }
}

.heading {
  text-align: center;
  position: relative;
}
.heading .heading-en {
  font-size: 135px;
  color: rgba(28, 14, 87, 0.04);
  position: absolute;
  right: 0;
  left: 0;
  bottom: -24%;
  margin: auto;
}
@media screen and (max-width: 959px) {
  .heading .heading-en {
    font-size: 90px;
  }
}
@media screen and (max-width: 479px) {
  .heading .heading-en {
    font-size: 90px;
  }
}
.heading .heading-ja {
  font-size: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 959px) {
  .heading .heading-ja {
    font-size: 20px;
  }
}
@media screen and (max-width: 479px) {
  .heading .heading-ja {
    font-size: 20px;
  }
}
@media screen and (max-width: 959px) {
  .heading .heading-ja {
    padding-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .heading .heading-ja {
    padding-bottom: calc(30 * 2 / 10 * 1vw);
  }
}
.heading .heading-sub {
  font-size: 20px;
}
@media screen and (max-width: 959px) {
  .heading .heading-sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 479px) {
  .heading .heading-sub {
    font-size: 18px;
  }
}

.contents-block {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .contents-block {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}

.margin-l-0 {
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 959px) {
  .margin-l-0 {
    margin-left: auto;
  }
}

.margin-r-0 {
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 959px) {
  .margin-r-0 {
    margin-right: auto;
  }
}

.ta-center {
  text-align: center;
}

.ta-right {
  text-align: right;
}

.fd-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.bg-white {
  background-color: #fff !important;
}

.button-basic {
  background-color: #154c7a;
  color: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 50px;
  padding-right: 50px;
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: relative;
  min-width: 200px;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .button-basic {
    padding-top: calc(10 * 2 / 10 * 1vw);
    padding-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .button-basic {
    padding-left: calc(50 * 2 / 10 * 1vw);
    padding-right: calc(50 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .button-basic {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .button-basic {
    font-size: 12px;
  }
}
@media screen and (max-width: 959px) {
  .button-basic {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .button-basic {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.button-basic::after {
  content: url(./assets/images/icon/arow-right--white.svg);
  position: absolute;
  right: 24px;
  width: 20px;
  height: auto;
}
.button-basic:hover {
  background-color: #fff;
  color: #1c0e57;
  border: 1px solid #154c7a;
}
.button-basic:hover::after {
  content: url(./assets/images/icon/arow-right.svg);
}

.button-more {
  background-color: #1c0e57;
  color: #fff8f5;
  font-size: 15px;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  position: absolute;
  top: 0;
  right: -35px;
  bottom: 0;
  margin: auto 0;
  text-align: center;
  line-height: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fff8f5;
}
@media screen and (max-width: 959px) {
  .button-more {
    font-size: 15px;
  }
}
@media screen and (max-width: 479px) {
  .button-more {
    font-size: 15px;
  }
}
.button-more__inner {
  padding-bottom: 14px;
  position: relative;
}
.button-more__inner::after {
  content: url(./assets/images/icon/arow-right--white.svg);
  position: absolute;
  right: 0;
  left: 0;
  bottom: -4px;
  margin: auto;
  width: 25px;
  height: auto;
}
@media screen and (max-width: 959px) {
  .button-more {
    top: auto;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -35px;
  }
}
.button-more:hover {
  background-color: #fff !important;
  border: 1px solid #1c0e57;
  color: #1c0e57;
}
.button-more:hover .button-more__inner::after {
  content: url(./assets/images/icon/arow-right.svg);
}

.link-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 959px) {
  .link-block {
    margin-bottom: calc(60 * 2 / 10 * 1vw);
  }
}
.link-block__item {
  display: block;
  text-align: center;
  padding-top: 14px;
  padding-bottom: 36px;
  font-size: 16px;
  border: 1px solid #f1f1f1;
  border-radius: 20px;
  background-color: #154c7a;
  color: #fff;
  font-weight: 500;
  width: 200px;
  position: relative;
}
@media screen and (max-width: 959px) {
  .link-block__item {
    padding-top: calc(14 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .link-block__item {
    padding-bottom: calc(36 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .link-block__item {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  .link-block__item {
    font-size: 14px;
  }
}
@media screen and (max-width: 959px) {
  .link-block__item {
    padding-bottom: 36px;
  }
}
.link-block__item::after {
  position: absolute;
  content: url(./assets/images/icon/arow-down--white.svg);
  width: 10px;
  height: auto;
  bottom: 8px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .link-block__item::after {
    bottom: 6px;
  }
}
.link-block__item:hover {
  background-color: #fff;
  color: #154c7a;
  border: 1px solid #154c7a;
}
.link-block__item:hover::after {
  content: url(./assets/images/icon/arow-down.svg);
}
.link-block .link-block-sub {
  background-color: #f1f1f1;
  border: 1px solid #154c7a;
  color: #1c0e57;
}
.link-block .link-block-sub::after {
  content: url(./assets/images/icon/arow-down.svg);
}
.link-block .link-block-sub:hover {
  background-color: #154c7a;
  color: #f1f1f1;
  border: 1px solid #154c7a;
}
.link-block .link-block-sub:hover::after {
  content: url(./assets/images/icon/arow-down--white.svg);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.7s ease, -webkit-filter 0.7s ease 0.2s, -webkit-transform 0.7s ease 0.2s;
  transition: opacity 0.7s ease, -webkit-filter 0.7s ease 0.2s, -webkit-transform 0.7s ease 0.2s;
  transition: opacity 0.7s ease, filter 0.7s ease 0.2s, transform 0.7s ease 0.2s;
  transition: opacity 0.7s ease, filter 0.7s ease 0.2s, transform 0.7s ease 0.2s, -webkit-filter 0.7s ease 0.2s, -webkit-transform 0.7s ease 0.2s;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  will-change: filter;
}
.fade-in.active {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.fade-in.delay-1 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.fade-in.delay-2 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.fade-in.delay-3 {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.mv-fade-in {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  will-change: transform, filter, opacity;
  -webkit-transition: opacity 1s ease, -webkit-filter 0.7s ease 0.2s, -webkit-transform 1.7s ease 0.2s;
  transition: opacity 1s ease, -webkit-filter 0.7s ease 0.2s, -webkit-transform 1.7s ease 0.2s;
  transition: opacity 1s ease, filter 0.7s ease 0.2s, transform 1.7s ease 0.2s;
  transition: opacity 1s ease, filter 0.7s ease 0.2s, transform 1.7s ease 0.2s, -webkit-filter 0.7s ease 0.2s, -webkit-transform 1.7s ease 0.2s;
}
.mv-fade-in.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-filter: blur(0);
          filter: blur(0);
}
.mv-fade-in.delay-1 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.mv-fade-in.delay-2 {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.mv-fade-in.delay-3 {
  -webkit-transition-delay: 3.5s;
          transition-delay: 3.5s;
}

.hidden {
  opacity: 0 !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bg-purple {
  background-color: #f7f5ff;
}

.header {
  padding: 0 0 8px 0;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  position: fixed;
  z-index: 10;
}
@media screen and (max-width: 959px) {
  .header {
    background-color: unset;
    position: unset;
    padding: 25px 0;
  }
}
.header__wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  width: 60%;
  max-width: 420px;
}
@media screen and (max-width: 959px) {
  .header__logo {
    width: 50%;
    max-width: 160px;
  }
}
.header__main {
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .header__main {
    display: none;
  }
}
.header__sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .header__sub {
    margin-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
.header__nav nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2em;
}
.header .header-item__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
}
.header .header-item__cta {
  display: block;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__hamburger {
  position: fixed;
  right: 40px;
  top: 40px;
  width: 100px;
  height: 80px;
  border-radius: 20px;
  background: #1c0e57;
  background: -webkit-linear-gradient(71deg, rgb(28, 14, 87) 0%, rgb(28, 14, 87) 50%, rgb(201, 122, 30) 100%);
  background: linear-gradient(19deg, rgb(28, 14, 87) 0%, rgb(28, 14, 87) 50%, rgb(201, 122, 30) 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 12;
}
@media screen and (max-width: 959px) {
  .header__hamburger {
    top: 20px;
    right: 20px;
    width: 70px;
    height: 56px;
  }
}
.header__hamburger:hover {
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  .header__wrap {
    padding: 0 20px;
  }
  .header__navi {
    display: none;
  }
}

.header-navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header-navi__item {
  margin-left: 30px;
  text-transform: uppercase;
  font-size: 16px;
}

.menu-trigger {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 !important;
  width: 40px;
  position: relative;
  height: 14px;
  vertical-align: middle;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  .menu-trigger {
    width: 30px;
  }
}
.menu-trigger span {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  bottom: 0;
}
.menu-trigger.active span {
  display: block;
  background-color: #fff;
}
.menu-trigger.active span:first-child {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  top: unset;
  bottom: 6px;
}
.menu-trigger.active span:last-child {
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  bottom: 6px;
}

.sp-nav {
  width: 40%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  color: #fff;
  background: #3e4c59;
  -webkit-transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 959px) {
  .sp-nav {
    width: 96%;
  }
}
.sp-nav.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
  opacity: 1;
  pointer-events: auto;
}
.sp-nav__wrap {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 120px;
  padding-bottom: 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .sp-nav__wrap {
    padding-left: calc(60 * 2 / 10 * 1vw);
    padding-right: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .sp-nav__wrap {
    padding-top: calc(120 * 2 / 10 * 1vw);
    padding-bottom: calc(120 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .sp-nav__wrap {
    padding: 100px 20px;
  }
}
.sp-nav__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 959px) {
  .sp-nav__block {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .sp-nav__block {
    display: block;
  }
}
.sp-nav__item {
  width: 100%;
}
.sp-nav__item-heading {
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .sp-nav__item-heading {
    margin-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
.sp-nav__item-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  .sp-nav__item-block {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .sp-nav__item-block {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.sp-nav__item-block .button {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 959px) {
  .sp-nav__item-block .button {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
  }
}
.sp-nav__item-block .button a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #30404e;
  border-radius: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 959px) {
  .sp-nav__item-block .button a {
    padding-top: calc(20 * 2 / 10 * 1vw);
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .sp-nav__item-block .button a {
    padding-left: calc(30 * 2 / 10 * 1vw);
    padding-right: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .sp-nav__item-block .button a {
    font-size: 14px;
  }
}
.sp-nav__links {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: block;
}
.sp-nav__links .sp-nav-link {
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  .sp-nav__links .sp-nav-link {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.sp-nav__links .sp-nav-link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #374857;
  border-radius: 10px;
}
@media screen and (max-width: 959px) {
  .sp-nav__links .sp-nav-link a {
    padding-top: calc(20 * 2 / 10 * 1vw);
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .sp-nav__links .sp-nav-link a {
    padding-left: calc(30 * 2 / 10 * 1vw);
    padding-right: calc(30 * 2 / 10 * 1vw);
  }
}
.sp-nav__links .sp-nav-link a:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 1047px) {
  .sp-nav {
    display: block;
  }
}

.fixed-menu {
  display: none;
}
@media screen and (max-width: 959px) {
  .fixed-menu {
    position: fixed;
    bottom: -1px;
    right: 0;
    display: block;
    color: #fff;
    height: 60px;
    width: 100%;
    z-index: 8;
    text-align: center;
  }
}
.fixed-menu__wrap {
  height: 100%;
}
.fixed-menu__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.fixed-menu__item {
  width: 50%;
  white-space: nowrap;
  background-color: #3e4c59;
  color: #fff;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-weight: bold;
}
.fixed-menu__item img {
  width: 20px;
}
.fixed-menu__item:first-child {
  border-right: 1px solid #fff;
}

.main-visual {
  height: 100vh;
  background-color: #f4f4f4;
}
@media screen and (max-width: 959px) {
  .main-visual {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.main-visual__wrap {
  height: 100%;
}
@media screen and (max-width: 959px) {
  .main-visual__wrap {
    padding: 60px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.main-visual__container {
  width: 76%;
  height: 100%;
  margin: auto auto;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 959px) {
  .main-visual__container {
    width: 90%;
  }
}
.main-visual__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.main-visual__bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual__catch {
  text-align: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 160px;
}
@media screen and (max-width: 959px) {
  .main-visual__catch {
    padding-top: calc(160 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .main-visual__catch {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .main-visual__catch {
    padding-left: calc(20 * 2 / 10 * 1vw);
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
.main-visual__catch .catch-ja {
  font-size: 3vw;
}
@media screen and (max-width: 959px) {
  .main-visual__catch .catch-ja {
    font-size: 5.6vw;
  }
}
.main-visual__catch .catch-sub {
  font-size: 2.4vw;
}
.main-visual__catch .catch-sub span {
  font-size: 4vw;
}
@media screen and (max-width: 959px) {
  .main-visual__catch .catch-sub {
    font-size: 4.6vw;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .main-visual__catch .catch-sub {
    margin-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .main-visual__catch .catch-sub span {
    font-size: 7vw;
  }
}

.design-sample {
  max-width: 1040px;
  margin: auto;
}
.design-sample__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 50px;
  gap: 50px 0;
}
@media screen and (max-width: 959px) {
  .design-sample__container {
    margin-top: calc(50 * 2 / 10 * 1vw);
  }
}
.design-sample .design-sample-box {
  width: 46%;
  position: relative;
}
@media screen and (max-width: 959px) {
  .design-sample .design-sample-box {
    width: 100%;
  }
}
.design-sample .design-sample-box__scroll {
  position: absolute;
  font-size: 12px;
  color: #999;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 16px;
  right: -34px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 959px) {
  .design-sample .design-sample-box__scroll {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .design-sample .design-sample-box__scroll {
    font-size: 12px;
  }
}
.design-sample .design-sample-box__image {
  border-radius: 10px;
  overflow: auto;
  aspect-ratio: 683/384;
}
.design-sample .design-sample-box__image img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
}
.design-sample .design-sample-box__plan {
  margin: 0 0 0 auto;
  margin-top: 14px;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .design-sample .design-sample-box__plan {
    margin-top: calc(14 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .design-sample .design-sample-box__plan {
    font-size: 11px;
  }
}
@media screen and (max-width: 479px) {
  .design-sample .design-sample-box__plan {
    font-size: 11px;
  }
}
.design-sample .design-sample-box__plan.--simple {
  background: #1c0e57;
  background: -webkit-linear-gradient(250deg, rgba(28, 14, 87, 0.6) 0%, rgb(28, 14, 87) 100%);
  background: linear-gradient(200deg, rgba(28, 14, 87, 0.6) 0%, rgb(28, 14, 87) 100%);
}
.design-sample .design-sample-box__plan.--premier {
  background: #f4b56c;
  background: -webkit-linear-gradient(237deg, rgb(244, 181, 108) 0%, rgb(201, 122, 30) 100%);
  background: linear-gradient(213deg, rgb(244, 181, 108) 0%, rgb(201, 122, 30) 100%);
}
.design-sample .design-sample-box__plan.--other {
  background: #363535;
  background: -webkit-linear-gradient(250deg, rgba(54, 53, 53, 0.6) 0%, rgb(54, 53, 53) 100%);
  background: linear-gradient(200deg, rgba(54, 53, 53, 0.6) 0%, rgb(54, 53, 53) 100%);
}
.design-sample .design-sample-box__client {
  font-size: 16px;
  margin-top: 14px;
  letter-spacing: 0.06em;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .design-sample .design-sample-box__client {
    font-size: 15px;
  }
}
@media screen and (max-width: 479px) {
  .design-sample .design-sample-box__client {
    font-size: 15px;
  }
}
@media screen and (max-width: 959px) {
  .design-sample .design-sample-box__client {
    margin-top: calc(14 * 2 / 10 * 1vw);
  }
}
.design-sample .design-sample-box__client span {
  color: #888888;
  font-size: 12px;
  padding-left: 10px;
}
@media screen and (max-width: 959px) {
  .design-sample .design-sample-box__client span {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .design-sample .design-sample-box__client span {
    font-size: 12px;
  }
}
.design-sample .design-sample-box__client img {
  width: 14px;
  height: auto;
  margin-left: 4px;
}

.flow {
  max-width: 800px;
  margin: auto;
}

.faq {
  max-width: 900px;
  margin: auto;
}

.contact__line a {
  padding-bottom: 6px;
  border-bottom: 1px solid #3e4c59;
  margin: 60px auto 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  font-weight: bold;
  letter-spacing: 0.06em;
}
.contact__line a img {
  width: 20px;
}
@media screen and (max-width: 959px) {
  .contact__line a {
    margin-top: 40px;
  }
}

.contact-form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 60px;
}
@media screen and (max-width: 959px) {
  .contact-form {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
.contact-form .form-item {
  width: 100%;
  letter-spacing: 0.1em;
}
.contact-form .form-item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  .contact-form .form-item:not(:first-child) {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .contact-form .form-item:not(:first-child) {
    margin-top: 30px;
  }
}
.contact-form .form-item__label {
  width: 100%;
  font-weight: bold;
  margin-bottom: 10px;
}
.contact-form .form-item__label .isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
.contact-form .form-item__label br {
  display: none;
}
.contact-form .form-item__label-required {
  border-radius: 5px;
  margin-right: 10px;
  padding: 2px 10px;
  display: inline-block;
  text-align: center;
  background: #f28a11;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 12px;
}
@media screen and (max-width: 959px) {
  .contact-form .form-item__label-required {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .contact-form .form-item__label-required {
    font-size: 12px;
  }
}
.contact-form .form-item__label-note {
  font-size: 12px;
  padding-left: 6px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 959px) {
  .contact-form .form-item__label-note {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .contact-form .form-item__label-note {
    font-size: 12px;
  }
}
.contact-form .form-item__input {
  border: 1px solid #efefef;
  background-color: #f4f4f4;
  padding: 0 1em;
  height: 40px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-form .form-item__textarea {
  border: 1px solid #f4f4f4;
  background-color: #f4f4f4;
  padding: 1em;
  height: 200px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-form .form-item__note {
  color: red;
  font-size: 14px;
  margin-bottom: 40px;
}
@media screen and (max-width: 959px) {
  .contact-form .form-item__note {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .contact-form .form-item__note {
    font-size: 12px;
  }
}
@media screen and (max-width: 959px) {
  .contact-form .form-item__note {
    margin-bottom: 20px;
  }
}
.contact-form .form-item__lead {
  padding: 10px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-form .form-item__lead p {
  color: #154c7a;
}
.contact-form .form-item__lead a {
  font-weight: bold;
  border-bottom: 1px solid #154c7a;
}
.contact-form .form-btn {
  border-radius: 6px !important;
  margin: 30px auto 0 auto !important;
  padding: 20px 0 !important;
  width: 400px !important;
  display: block !important;
  background: #1c0e57 !important;
  color: #fff !important;
  font-weight: bold !important;
  letter-spacing: 0.1em !important;
  cursor: pointer !important;
}
@media screen and (max-width: 959px) {
  .contact-form .form-btn {
    width: 80% !important;
  }
}

.wpcf7-list-item label {
  cursor: pointer !important;
}

.wpcf7-form-control {
  font-size: 16px;
}

.single {
  width: 100%;
  margin: auto;
}
.single__title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 959px) {
  .single__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 479px) {
  .single__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 959px) {
  .single__title {
    margin-bottom: calc(30 * 2 / 10 * 1vw);
  }
}
.single__date {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 959px) {
  .single__date {
    margin-bottom: calc(50 * 2 / 10 * 1vw);
  }
}
.single__content {
  margin-bottom: 160px;
}
@media screen and (max-width: 959px) {
  .single__content {
    margin-bottom: calc(160 * 2 / 10 * 1vw);
  }
}
.single p {
  margin-bottom: 30px;
}
@media screen and (max-width: 959px) {
  .single p {
    margin-bottom: calc(30 * 2 / 10 * 1vw);
  }
}
.single p span {
  color: #d93e16;
  font-weight: bold;
}
.single h2 {
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .single h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 479px) {
  .single h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 959px) {
  .single h2 {
    margin-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .single h2 {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.single h3 {
  font-weight: 500;
  position: relative;
  gap: 0.4em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .single h3 {
    margin-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
.single h3::before {
  content: "";
  background: #154c7a;
  width: 6px;
  height: 2px;
}
.single figure {
  margin-bottom: 30px;
}
@media screen and (max-width: 959px) {
  .single figure {
    margin-bottom: calc(30 * 2 / 10 * 1vw);
  }
}
.single figcaption {
  font-size: 12px;
}
@media screen and (max-width: 959px) {
  .single figcaption {
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .single figcaption {
    font-size: 10px;
  }
}
.single img {
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .single img {
    margin-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
.single ol {
  counter-reset: list-counter;
}
.single ol li {
  counter-increment: list-counter;
  padding-left: 20px;
  gap: 0.4em;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.6;
  margin-top: 16px;
}
@media screen and (max-width: 959px) {
  .single ol li {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .single ol li {
    margin-top: calc(16 * 2 / 10 * 1vw);
  }
}
.single ol li::before {
  content: counter(list-counter) ".";
}
.single ul li {
  padding-left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.4em;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 16px;
}
@media screen and (max-width: 959px) {
  .single ul li {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .single ul li {
    margin-bottom: calc(16 * 2 / 10 * 1vw);
  }
}
.single ul li::before {
  content: "⚫︎";
  color: #154c7a;
}

.footer {
  color: #fff;
  background: #1c0e57;
  letter-spacing: 0.08em;
  background: -webkit-linear-gradient(71deg, rgb(28, 14, 87) 0%, rgb(28, 14, 87) 50%, rgb(201, 122, 30) 100%);
  background: linear-gradient(19deg, rgb(28, 14, 87) 0%, rgb(28, 14, 87) 50%, rgb(201, 122, 30) 100%);
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 959px) {
  .footer {
    padding-top: calc(60 * 2 / 10 * 1vw);
    padding-bottom: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .footer {
    margin-bottom: 60px;
    padding: 30px 0;
  }
}
.footer__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 959px) {
  .footer__container {
    display: block;
  }
}
.footer__info {
  font-size: 12px;
  margin-top: 60px;
}
@media screen and (max-width: 959px) {
  .footer__info {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .footer__info {
    font-size: 12px;
  }
}
@media screen and (max-width: 959px) {
  .footer__info {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .footer__info {
    text-align: center;
  }
}
.footer__privacy-policy {
  margin-top: 4px;
  font-size: 11px;
  color: #c6c6c6;
}
@media screen and (max-width: 959px) {
  .footer__privacy-policy {
    margin-top: calc(4 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .footer__privacy-policy {
    font-size: 11px;
  }
}
@media screen and (max-width: 479px) {
  .footer__privacy-policy {
    font-size: 11px;
  }
}
@media screen and (max-width: 959px) {
  .footer__privacy-policy {
    text-align: center;
  }
}
.footer__legal {
  font-size: 10px;
  color: #c6c6c6;
}
@media screen and (max-width: 959px) {
  .footer__legal {
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .footer__legal {
    font-size: 10px;
  }
}
@media screen and (max-width: 959px) {
  .footer__legal {
    text-align: center;
    margin-top: 20px;
  }
}

.page {
  padding: 70px 0px 70px;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .page {
    padding: 40px 0px 70px;
  }
}
.page__head {
  margin-bottom: 100px;
}
@media screen and (max-width: 959px) {
  .page__head {
    margin-bottom: 30px;
  }
}

.page-mv {
  position: relative;
}
.page-mv__wrap {
  height: 100%;
  padding-top: 140px;
  padding-bottom: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .page-mv__wrap {
    padding-top: calc(140 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .page-mv__wrap {
    padding-bottom: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .page-mv__wrap {
    padding-top: 100px;
  }
}
.page-mv > .container {
  height: 100%;
  position: relative;
  z-index: 2;
}
.page-mv__content {
  position: absolute;
  line-height: 1.6;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  margin: auto;
  text-align: center;
  color: #fff;
}
.page-mv__content img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-mv__title {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 959px) {
  .page-mv__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 479px) {
  .page-mv__title {
    font-size: 20px;
  }
}
.page-mv__title-block {
  position: relative;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-mv__title-block-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.page-mv__title-block-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 959px) {
  .page-mv > .container {
    width: 100%;
    padding: 0;
  }
  .page-mv__content {
    padding: 15px 20px;
  }
}

.wysiwyg {
  font-weight: 500;
  line-height: 1.875;
}
.wysiwyg p,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg table,
.wysiwyg dl,
.wysiwyg blockquote, .wysiwyg > ul, .wysiwyg > ol, .wysiwyg > figure, .wysiwyg > div {
  margin-bottom: 2em;
}
.wysiwyg h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 12px;
}
.wysiwyg h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 4px;
}
.wysiwyg h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}
.wysiwyg p {
  font-size: 16px;
  line-height: 1.875;
}
.wysiwyg .wp-block-table {
  overflow-x: scroll;
}
.wysiwyg .wp-block-table::-webkit-scrollbar {
  width: 10px;
}
.wysiwyg .wp-block-table::-webkit-scrollbar-track {
  border-radius: 10px;
  border: 1px solid #e7e7e7;
}
.wysiwyg .wp-block-table::-webkit-scrollbar-thumb {
  background-color: #f2f2f2;
  border-radius: 10px;
}
.wysiwyg img {
  max-width: 100%;
}
.wysiwyg img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wysiwyg img.alignright {
  float: right;
  margin-left: 1.5em;
}
.wysiwyg img.alignleft {
  float: left;
  margin-right: 1.5em;
}
.wysiwyg table thead {
  background-color: #454545;
  color: #fff;
  text-align: right;
}
.wysiwyg table thead th {
  text-align: center;
}
.wysiwyg table th,
.wysiwyg table td {
  padding: 12px 12px;
  white-space: nowrap;
  position: relative;
}
.wysiwyg table th::after,
.wysiwyg table td::after {
  content: "";
  display: block;
  width: 2px;
  height: 1.6em;
  background-color: #e6e6e6;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.wysiwyg table th:last-child::after,
.wysiwyg table td:last-child::after {
  display: none;
}
.wysiwyg table tbody tr td {
  border-bottom: 2px solid #e6e6e6;
}
.wysiwyg table tbody tr td:first-child {
  background-color: #f2f2f2;
}
.wysiwyg table tbody tr td:first-child::after {
  display: none;
}
.wysiwyg table tbody tr th {
  background-color: #f2f2f2;
}
.wysiwyg dl {
  border: 1px solid #ccc;
}
.wysiwyg dt,
.wysiwyg dd {
  padding: 12px;
  line-height: 1.6;
}
.wysiwyg dt {
  background-color: #454545;
  color: #fff;
}
.wysiwyg blockquote {
  font-size: 16px;
  line-height: 1.875;
  background-color: #f2f2f2;
  padding: 48px;
  position: relative;
}
.wysiwyg blockquote::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 24px;
  color: #9e9b94;
  font-size: 24px;
}
.wysiwyg blockquote::after {
  content: "”";
  position: absolute;
  bottom: 12px;
  right: 24px;
  color: #9e9b94;
  font-size: 24px;
}
.wysiwyg blockquote cite {
  font-size: 14px;
  display: block;
  text-align: right;
  color: #6f6c67;
  position: relative;
}
.wysiwyg blockquote cite::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 28px;
  background-color: #707070;
  vertical-align: middle;
  margin-right: 1.5em;
}
.wysiwyg ul {
  list-style: disc;
}
.wysiwyg ol {
  list-style: decimal;
}
.wysiwyg ul,
.wysiwyg ol {
  padding-left: 1.3em;
}
.wysiwyg ul li,
.wysiwyg ol li {
  line-height: 1.8;
}
.wysiwyg strong {
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .wysiwyg h2 {
    font-size: 18px;
  }
  .wysiwyg h3 {
    font-size: 16px;
  }
  .wysiwyg h4 {
    font-size: 14px;
  }
  .wysiwyg p {
    font-size: 14px;
  }
  .wysiwyg blockquote {
    font-size: 14px;
    padding: 40px 32px;
  }
  .wysiwyg blockquote cite {
    font-size: 12px;
  }
}

.pagination-wrap {
  width: 100%;
  margin: 100px auto 0;
}

.pagination,
.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination span,
.pagination a,
.page-numbers span,
.page-numbers a {
  margin: 0 10px;
  display: block;
  text-align: center;
  width: 40px;
  line-height: 40px;
  font-size: 18px;
  border-radius: 3px;
  border: 1px solid #1c0e57;
}
.pagination span.current, .pagination span:hover,
.pagination a.current,
.pagination a:hover,
.page-numbers span.current,
.page-numbers span:hover,
.page-numbers a.current,
.page-numbers a:hover {
  background: #1c0e57;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
  color: #fff;
}
@media screen and (max-width: 959px) {
  .pagination,
  .page-numbers {
    margin-top: 65px;
  }
  .pagination span,
  .pagination a,
  .page-numbers span,
  .page-numbers a {
    font-size: 16px;
    width: 28px;
    line-height: 28px;
  }
}

.breadcrumb {
  margin-top: 20px;
}
.breadcrumb ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb li {
  white-space: nowrap;
}
.breadcrumb li::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 13px;
  background-image: url("./assets/images/arrow-right--mini.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 20px;
  color: #ebe4d8;
}
.breadcrumb li:last-child::after {
  display: none;
}
@media screen and (max-width: 959px) {
  .breadcrumb {
    overflow-x: scroll;
  }
}

.single__category {
  margin-bottom: 4px;
}
.single__title {
  line-height: 1.5;
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 20px;
}
.single__date {
  font-size: 16px;
}
.single__terms {
  margin-top: 10px;
}
.single__thumbnail {
  margin-top: 60px;
}
.single__thumbnail img {
  width: 100%;
}
.single__content {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .single__title {
    font-size: 20px;
  }
  .single__date {
    font-size: 12px;
  }
  .single__terms a {
    font-size: 12px;
  }
}

.information__block {
  background-color: #fff;
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
  max-width: 850px;
  margin: auto;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .information__block {
    padding-left: calc(80 * 2 / 10 * 1vw);
    padding-right: calc(80 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .information__block {
    padding-top: calc(40 * 2 / 10 * 1vw);
    padding-bottom: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .information__block {
    padding: 20px 20px 50px 20px;
  }
}
.information__block h2 {
  font-size: 20px;
  text-align: center !important;
  margin-bottom: 20px;
}
@media screen and (max-width: 959px) {
  .information__block h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 479px) {
  .information__block h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 959px) {
  .information__block h2 {
    margin-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.information__item:not(:first-child) {
  margin-top: 20px;
  display: inline-block;
}
@media screen and (max-width: 959px) {
  .information__item:not(:first-child) {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.information .information-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2em;
}
@media screen and (max-width: 959px) {
  .information .information-item {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  .information .information-item__date {
    margin-bottom: 4px;
  }
}/*# sourceMappingURL=style.css.map */