@charset "UTF-8";
/*
Theme Name: skygold2023
Description: KEISUKE IGUCHI
Version: 1.0.0
Author:  KEISUKE IGUCHI
*/
/*★★★★★★★★★★★★★★★★★★★★★★★★

メディアクエリ数値設定

★★★★★★★★★★★★★★★★★★★★★★★★*/
/*★★★★★★★★★★★★★★★★★★★★★★★★

カラー設定

★★★★★★★★★★★★★★★★★★★★★★★★*/
:root {
  --base-font: "Noto Sans JP", "Montserrat", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --font1: "Jost", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --font2: "Poppins", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
  		"ＭＳ Ｐゴシック", sans-serif;
  --font3: "Noto Serif JP", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
  		"ＭＳ Ｐゴシック", sans-serif;
  --font4: "Inter", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
  		"ＭＳ Ｐゴシック", sans-serif;
  --base-font-color: #333;
  --theme-color1: #24D5F4;
  --theme-color2: #396EFF;
  --theme-color3: #AB39FF;
  --theme-color4: #00A1EF;
  --theme-color5: #3872FF;
  --theme-color6: #0E0F12;
  --theme-color7: #2C313C;
  --theme-color8: #FCFEFF;
  --theme-color9: #EDFCFF;
  --white-color: #fff;
  --black-color: #000;
  --black-color2: #111;
  --black-color3: #222;
  --black-color4: #242424;
  --black-color5: #1A1A1A;
  --gray-color: #efefef;
  --gray-color2: #777777;
  --gray-color3: #f5f5f5;
  --gray-color4: #f4f4f4;
  --gray-color5: #ccc;
  --gray-color6: #c1c1c1;
  --gray-color7: #797979;
  --gray-color8: #f7f7f7;
  --gray-color9: #a0a0a0;
  --gray-color10: #ddd;
  --gray-color11: #888;
  --gray-color12: #bbbbbb;
  --gray-color13: #acacac;
  --gray-color14: #7e7e7e;
  --gray-color15: #373737;
  --gray-color16: #c6c6c6;
  --gray-color17: #4E4E4E;
  --gray-color18: #A5A5A5;
  --gray-color19: #7b7b7b;
  --gray-color20: #dedede;
  --gray-color21: #666;
  --gray-color22: #D5D3D3;
  --gray-color23: #E8E8E8;
  --link-color: #005b9d;
  --rank-list-color1: #d0ad75;
  --rank-list-color2: #9f9f9f;
  --rank-list-color3: #d08375;
  --contact-input-border-color: #bebebe;
  --contact-privacy-border-color: #cecece;
  --contact-font-color: #dedede;
  --contact-required-color: #f05e5e;
  --contact-option-color: #b9aeae;
  --contact-submit-color: #4bb200;
  --contact-back-color: #c1c1c1;
  --contact-error-color: #ffe8f4;
  --contact-confirm-bg-color: #e4fdf2;
  --contact-confirm-font-color: #0c9073;
  --recruit-table-border-color: #ddd;
  --header-height: 72px;
}
@media only screen and (max-width:1023px) {
  :root {
    --header-height: 55px;
  }
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

scss mixin定義

★★★★★★★★★★★★★★★★★★★★★★★★*/
/*★★★★★★★★★★★★★★★

Common & Standard Layout

★★★★★★★★★★★★★★★*/
/*★★★★★★★★★★★★★★★

コンテンツ

★★★★★★★★★★★★★★★*/
.contents_index {
  padding-top: var(--header-height);
}
.contents__inner {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:767px) {
  .contents__inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}

.main-contents {
  width: 67.5%;
  padding-top: 5px;
  padding-bottom: 60px;
}
@media only screen and (max-width:767px) {
  .main-contents {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-right: 0;
  }
}

/*★★★★★★★★★★★★★★★

メイン(左)カラム

★★★★★★★★★★★★★★★*/
.main {
  width: 100%;
  font-family: var(--base-font);
  position: relative;
}
@media only screen and (max-width:767px) {
  .main {
    margin-bottom: 0;
    width: 100%;
    display: block;
  }
}
.main_blog {
  width: 67.5%;
  padding-top: 20px;
}
@media only screen and (max-width:767px) {
  .main_blog {
    width: 100%;
    padding-top: 10px;
  }
}

/*★★★★★★★★★★★★★★★

右カラム (サイドバーのBOX)

★★★★★★★★★★★★★★★*/
.sidebar {
  font-family: var(--base-font);
  width: 28%;
  position: relative;
}
@media only screen and (max-width:1023px) {
  .sidebar {
    margin-bottom: 45px;
  }
}
@media only screen and (max-width:767px) {
  .sidebar {
    margin-top: 0;
    width: 100%;
    display: block;
  }
}
.sidebar > *:nth-of-type(1) {
  margin-top: 0 !important;
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

背景の色があるときにコンテンツの余白をつけるためのBOX

★★★★★★★★★★★★★★★★★★★★★★★★*/
.inner {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
}

.inner1080 {
  max-width: 1080px;
  width: 100%;
  margin: auto;
}

.inner1024 {
  max-width: 1024px;
  width: 100%;
  margin: auto;
}

.inner960 {
  max-width: 960px;
  width: 100%;
  margin: auto;
}

.inner900 {
  max-width: 900px;
  width: 100%;
  margin: auto;
}

.inner880 {
  max-width: 880px;
  width: 100%;
  margin: auto;
}

.inner800 {
  max-width: 800px;
  width: 100%;
  margin: auto;
}

.inner768 {
  max-width: 768px;
  width: 100%;
  margin: auto;
}

.inner720 {
  max-width: 720px;
  width: 100%;
  margin: auto;
}

.inner640 {
  max-width: 640px;
  width: 100%;
  margin: auto;
}

.inner560 {
  max-width: 560px;
  width: 100%;
  margin: auto;
}

@media only screen and (max-width: 1200px) {
  .inner,
.inner1080,
.inner1024,
.inner960,
.inner900,
.inner880,
.inner800,
.inner768,
.inner720,
.inner640,
.inner560 {
    width: 94%;
    margin: 0 auto;
    padding: 0;
  }
}
@media only screen and (max-width:767px) {
  .inner,
.inner1080,
.inner1024,
.inner1000,
.inner960,
.inner900,
.inner880,
.inner800,
.inner768,
.inner760,
.inner720,
.inner640.inner560 {
    width: 90%;
  }
}
* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table.table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

.body {
  transition: 0.3s;
  opacity: 1;
}

.body.preload {
  opacity: 0;
  background-color: #222;
}

body.preload .wow {
  opacity: 0 !important;
}

body.preload * {
  transition: 0 !important;
}

.wow {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

a img {
  border: 0;
}

figure {
  margin: 0;
}

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

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
}

p {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 2.2;
}

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

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  transition: all 0.3s;
}
a:active, a:focus {
  outline: 0;
}
input:focus:not([type=submit]),
textarea:focus {
  box-shadow: 0 0 6px #67ddff;
  background: #f7f7f7;
}

textarea {
  width: 90%;
  height: 180px;
}

input[type=radio],
input[type=checkbox] {
  margin-right: 7px;
}

input[type=checkbox] {
  border: 2px solid var(--gray-color11);
}

select {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 250px;
  padding: 12px 15px;
  border: 1px solid var(--gray-color5);
  font-size: 14px;
  line-height: 1.6;
}
@media only screen and (max-width:767px) {
  select {
    width: 70%;
  }
}

.body {
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  font-family: var(--base-font);
  color: var(--base-font-color);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}
@media only screen and (max-width:767px) {
  .body {
    font-size: 15px;
  }
}
.body_header-nav-open {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.body__inner {
  overflow: hidden;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  margin: 0 auto;
  z-index: 910;
  display: none;
}
@media only screen and (max-width:767px) {
  .pagetop {
    bottom: 30px;
  }
}
.pagetop_show {
  display: flex;
}
.pagetop__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 10px;
  text-align: center;
  fill: var(--black-color);
  border-radius: 50%;
  background: var(--theme-color1) url(assets/img/common/ico_pagetop.svg) no-repeat 50%;
  background-size: 18px;
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: opacity;
  transition: 0.3s;
}

.common-btn__link {
  color: var(--white-color);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 53px;
  position: relative;
  background: var(--black-color2);
  background: linear-gradient(to right, var(--theme-color1) 0%, var(--theme-color3) 100%);
}
.common-btn__link span {
  display: block;
  position: relative;
  z-index: 3;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.common-btn__link span::before {
  content: "";
  background: linear-gradient(to right, var(--theme-color1) 0%, var(--theme-color3) 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  display: inline-block;
  z-index: -1;
  transition: 0.3s;
  width: 0%;
}
.common-btn__link span:hover::before {
  width: 100%;
}
.common-btn__link svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}

.sec-tit-box__jp-tit {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: var(--theme-color1);
  line-height: 1;
  color: var(--theme-color1);
  background: -webkit-linear-gradient(0deg, var(--theme-color1), var(--theme-color4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 10px;
}
.sec-tit-box__en-tit {
  font-family: var(--font1);
  font-size: 72px;
  font-weight: 800;
  color: var(--black-color);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .sec-tit-box__en-tit {
    font-size: 40px;
  }
}

.common-intro {
  background: var(--black-color5);
}
.common-intro__inner {
  padding: 80px 15px 105px;
}
@media only screen and (max-width:767px) {
  .common-intro__inner {
    padding: 30px 0 65px;
  }
}

.common-intro-main__tit {
  color: var(--theme-color4);
  background: -webkit-linear-gradient(180deg, var(--theme-color3), var(--theme-color4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 46px;
  letter-spacing: -0.03em;
  font-weight: 900;
  line-height: 1.52;
  margin-bottom: 45px;
}
@media only screen and (max-width:767px) {
  .common-intro-main__tit {
    font-size: 24px;
    line-height: 1.75;
    margin-bottom: 28px;
  }
}
.common-intro-main__txt {
  color: var(--white-color);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 2.22;
}
@media only screen and (max-width:767px) {
  .common-intro-main__txt {
    font-size: 15px;
    line-height: 1.87;
  }
}
.common-intro-main__txt_ec {
  letter-spacing: 0.05em;
}
.common-intro-main__btn {
  margin-top: 55px;
}
@media only screen and (max-width:767px) {
  .common-intro-main__btn {
    display: block;
    justify-content: center;
  }
}
.common-intro-main__btn-link {
  max-width: 480px;
  width: 100%;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(270deg, var(--theme-color3), var(--theme-color4));
  border-radius: 46px;
  font-size: 21px;
  letter-spacing: 0.01em;
  color: var(--white-color);
  font-weight: 900;
}
.common-intro-main__btn-link:hover {
  -webkit-filter: brightness(1.1);
  -moz-filter: brightness(1.1);
  -ms-filter: brightness(1.1);
  filter: brightness(1.1);
}
@media only screen and (max-width:767px) {
  .common-intro-main__btn-link {
    font-size: 16px;
    height: 60px;
    max-width: 335px;
  }
}

.common-cta {
  background: url(assets/img/common/common-cta-bg.jpg) no-repeat center;
  background-size: cover;
}
.common-cta__inner {
  padding: 85px 0;
}
@media only screen and (max-width:767px) {
  .common-cta__inner {
    padding: 55px 0;
  }
}

.common-cta-main {
  text-align: center;
}
.common-cta-main__tit {
  color: var(--theme-color4);
  background: -webkit-linear-gradient(180deg, var(--theme-color3), var(--theme-color4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 43px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.49;
  margin-bottom: 40px;
}
@media only screen and (max-width:767px) {
  .common-cta-main__tit {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.common-cta-main__btn {
  display: flex;
  justify-content: center;
}
.common-cta-main__btn-link {
  max-width: 480px;
  width: 100%;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(270deg, var(--theme-color3), var(--theme-color4));
  border-radius: 46px;
  font-size: 24px;
  letter-spacing: 0.01em;
  color: var(--white-color);
  font-weight: 900;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}
.common-cta-main__btn-link:hover {
  -webkit-filter: brightness(1.1);
  -moz-filter: brightness(1.1);
  -ms-filter: brightness(1.1);
  filter: brightness(1.1);
}
@media only screen and (max-width:767px) {
  .common-cta-main__btn-link {
    font-size: 20px;
    height: 60px;
    max-width: 335px;
  }
}

.common-point__item {
  display: flex;
  padding: 20px 0 33px;
  border-top: 1px solid var(--gray-color);
}
.common-point__item:nth-last-of-type(1) {
  border-bottom: 1px solid var(--gray-color);
}

.common-point-left {
  margin-right: 20px;
}
@media only screen and (max-width:767px) {
  .common-point-left {
    margin-right: 15px;
  }
}
.common-point-left__number {
  min-width: 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(270deg, var(--theme-color1), var(--theme-color2));
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  font-family: var(--font1);
  font-weight: 900;
  font-size: 36px;
}
@media only screen and (max-width:767px) {
  .common-point-left__number {
    min-width: 40px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

.common-point-right {
  padding-top: 14px;
}
@media only screen and (max-width:767px) {
  .common-point-right {
    padding-top: 4px;
  }
}
.common-point-right__tit {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
}
.common-point-right__txt {
  line-height: 2.13;
  letter-spacing: 0.01em;
}

.common-works__img-area {
  aspect-ratio: 3/2;
  background: var(--gray-color8);
  position: relative;
}
.common-works__img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  object-fit: contain;
  display: block;
}
.common-works__txt-area {
  padding: 20px 0;
}
@media only screen and (max-width:767px) {
  .common-works__txt-area {
    padding: 10px 0;
  }
}
.common-works__company {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--black-color);
  margin-bottom: 10px;
}
@media only screen and (max-width:767px) {
  .common-works__company {
    font-size: 12px;
  }
}
.common-works__tit {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media only screen and (max-width:767px) {
  .common-works__tit {
    font-size: 15px;
  }
}
.common-works__cat {
  font-size: 12px;
  color: var(--gray-color2);
}
@media only screen and (max-width:767px) {
  .common-works__cat {
    font-size: 11px;
    letter-spacing: 0.01em;
  }
}

/*　Headings　*/
/*★★★★★★★★★★★★★★★★★★★★★★★★

投稿記事・固定ページコンテンツ用の見出し。

★★★★★★★★★★★★★★★★★★★★★★★★*/
.blog-contents {
  font-family: var(--base-font);
}
.blog-contents h1 {
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-align: left;
  margin-top: 0 !important;
  margin-bottom: 33px !important;
  position: relative;
  border-top: 2px solid var(--theme-color1);
  border-bottom: 2px solid var(--theme-color1);
  padding: 22px 5px;
}
@media only screen and (max-width:767px) {
  .blog-contents h1 {
    font-size: 22px;
  }
}
.blog-contents h2 {
  font-weight: 900;
  font-size: 27px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 22px 5px;
  position: relative;
  color: var(--black-color);
}
@media only screen and (max-width:767px) {
  .blog-contents h2 {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
}
.blog-contents h2::after {
  content: "";
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(to right, var(--theme-color1), var(--theme-color2));
  border-radius: 80px;
}
.blog-contents h2::before {
  content: "";
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(to right, var(--theme-color1), var(--theme-color2));
  border-radius: 80px;
}
.blog-contents h3 {
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: left;
  padding: 17px;
  background: var(--gray-color3);
}
@media only screen and (max-width:767px) {
  .blog-contents h3 {
    font-size: 18px;
    letter-spacing: 0.05em;
  }
}
.blog-contents h4 {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
  border-bottom: 1px solid var(--theme-color1);
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
}
@media only screen and (max-width:767px) {
  .blog-contents h4 {
    font-size: 16px;
  }
}
.blog-contents h5 {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .blog-contents h5 {
    font-size: 14px;
  }
}
.blog-contents h6 {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .blog-contents h6 {
    font-size: 12px;
  }
}
.blog-contents p {
  line-height: 2.125;
}

.page-contents {
  font-family: var(--base-font);
}
.page-contents h1 {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-align: left;
  border-bottom: 2px solid var(--black-color2);
  padding-bottom: 26px;
  margin-top: 0 !important;
}
@media only screen and (max-width:767px) {
  .page-contents h1 {
    font-size: 22px;
  }
}
.page-contents h2 {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .page-contents h2 {
    font-size: 20px;
  }
}
.page-contents h3 {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .page-contents h3 {
    font-size: 18px;
    letter-spacing: 0.05em;
  }
}
.page-contents h4 {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
  border-bottom: 4px solid var(--black-color2);
  padding-left: 10px;
  padding-bottom: 5px;
}
@media only screen and (max-width:767px) {
  .page-contents h4 {
    font-size: 16px;
  }
}
.page-contents h5 {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .page-contents h5 {
    font-size: 14px;
  }
}
.page-contents h6 {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .page-contents h6 {
    font-size: 12px;
  }
}
.page-contents p {
  font-size: 15px;
  line-height: 2;
}
.page-contents p:nth-of-type(1) {
  line-height: 2.27;
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

へーダー

★★★★★★★★★★★★★★★★★★★★★★★★*/
.header {
  position: absolute;
  z-index: 1800;
  width: 100%;
  top: 0;
  padding-left: 73px;
}
@media only screen and (max-width:767px) {
  .header {
    padding-left: 20px;
  }
}
.header_sticky {
  transform: translateY(-150%);
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.3s;
  z-index: 900;
  background: var(--black-color5);
}
.header_sticky_show {
  transform: translateY(0);
}
.header_black {
  background: var(--black-color5);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.header-left {
  display: flex;
}

.header-logo {
  box-sizing: border-box;
  padding: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width:1023px) {
  .header-logo {
    padding: 11px 0;
  }
}
.header-logo__img {
  max-width: 200px;
}
@media only screen and (max-width:767px) {
  .header-logo__img {
    width: 160px;
  }
}

.header-nav {
  height: 100%;
  padding-left: 17px;
  box-sizing: border-box;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 6000;
  transform: translateX(200vw);
  padding-left: 0;
  background: #222222;
  transition: 0.3s;
}
.header-nav_open {
  transition: 0.3s;
  transform: translateX(0);
  padding: 50px 0;
  overflow: auto;
}
.header-nav__list {
  position: relative;
  max-width: 320px;
  width: 90%;
}
.header-nav__item {
  margin-bottom: 10px;
}
.header-nav__item_download {
  margin-top: 30px;
}
.header-nav__link {
  display: block;
  height: 100%;
  display: flex;
  font-weight: 700;
  font-size: 24px;
  font-family: var(--font1);
  color: var(--white-color);
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  padding: 3px 5px;
  display: flex;
  align-items: center;
}
.header-nav__link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  transition: 0.5s;
  background: #222222;
}
.header-nav__link::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color2) 100%);
}
.header-nav__link:hover::before {
  opacity: 0;
}
.header-nav__link_download {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--base-font);
  font-size: 20px;
  background: linear-gradient(to right, var(--theme-color1) 0%, var(--theme-color3) 100%);
  position: relative;
}
.header-nav__link_download:hover {
  -webkit-filter: brightness(1.1);
  -moz-filter: brightness(1.1);
  -ms-filter: brightness(1.1);
  filter: brightness(1.1);
  text-decoration: none;
}
.header-nav__link_download svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.header-nav__link_download::before, .header-nav__link_download::after {
  display: none;
}
.header-nav__second-list {
  padding-left: 27px;
  margin-top: 15px;
}
.header-nav__second-item {
  color: var(--white-color);
}
.header-nav__second-item_read {
  margin-bottom: 18px;
}
.header-nav__second-link {
  color: var(--white-color);
  font-size: 18px;
  font-family: var(--font1);
  font-weight: 700;
  position: relative;
  z-index: 0;
  padding-left: 5px;
  display: flex;
  align-items: center;
  padding: 3px 5px;
}
.header-nav__second-link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  transition: 0.5s;
  background: #222222;
}
.header-nav__second-link::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color2) 100%);
}
.header-nav__second-link:hover::before {
  opacity: 0;
}
.header-nav__second-link_no-link::before, .header-nav__second-link_no-link::after {
  display: none;
}
.header-nav__second-link_read {
  font-size: 16px;
  font-family: var(--base-font);
}
.header-nav div.header-nav__second-link:hover {
  text-decoration: none;
}
.header-nav__third-list {
  padding-left: 10px;
  margin-top: 10px;
}
.header-nav__third-link {
  color: var(--white-color);
  font-size: 15px;
  position: relative;
  z-index: 0;
  padding: 5px;
  display: flex;
  align-items: center;
}
.header-nav__third-link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  transition: 0.5s;
  background: #222222;
}
.header-nav__third-link::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color2) 100%);
}
.header-nav__third-link:hover::before {
  opacity: 0;
}

.header-right {
  display: flex;
}

.header-contact__link {
  width: 158px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, var(--theme-color1) 0%, var(--theme-color2) 100%);
  height: 100%;
  color: var(--white-color);
  font-family: var(--font1);
  font-size: 18px;
  font-weight: 600;
}
@media only screen and (max-width:767px) {
  .header-contact__link {
    width: 50px;
    height: 50px;
  }
}
.header-contact__link:hover {
  -webkit-filter: brightness(1.1);
  -moz-filter: brightness(1.1);
  -ms-filter: brightness(1.1);
  filter: brightness(1.1);
}
.header-contact__link_svg {
  margin-right: 8px;
}
@media only screen and (max-width:767px) {
  .header-contact__link_svg {
    margin-right: 0;
  }
}
@media only screen and (max-width:767px) {
  .header-contact__link span {
    display: none;
  }
}

.header-close {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 30px;
  height: 30px;
  z-index: 9999;
  cursor: pointer;
}
/*★★★★★★★★★★★★★★★★★★★★★★★★

ハンバーガーメニュー

★★★★★★★★★★★★★★★★★★★★★★★★*/
.header-hum-btn {
  z-index: 70000;
  width: 70px;
  height: 70px;
  cursor: pointer;
  background: var(--theme-color1);
  transition: 0.3s;
  position: relative;
  top: 0;
  right: 0;
}
@media only screen and (max-width:767px) {
  .header-hum-btn {
    width: 50px;
    height: 50px;
  }
}
.header-hum-btn::before {
  content: "CLOSE";
  font-size: 20px;
  font-family: var(--font1);
  color: var(--white-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -70px;
  display: none;
}
.header-hum-btn_open {
  background: none;
  top: 10px;
  right: 10px;
}
.header-hum-btn_open::before {
  display: block;
}
.header-hum-btn__box {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header-hum-btn__bar {
  width: 30px;
  height: 2px;
  background: var(--white-color);
  transition: 0.3s;
}
.header-hum-btn__bar_top {
  margin-right: 9px;
}
.header-hum-btn__bar_top_open {
  width: 100%;
  transform: rotate(135deg);
  animation-name: rotate-top;
  position: absolute;
  left: 0;
}
@keyframes rotate-bottom {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(135deg);
  }
}
.header-hum-btn__bar_middle {
  margin: 8px 0;
  margin-left: 9px;
}
.header-hum-btn__bar_middle_open {
  display: none;
}
.header-hum-btn__bar_bottom {
  margin-right: 9px;
}
.header-hum-btn__bar_bottom_open {
  width: 100%;
  position: absolute;
  left: 0;
  transform: rotate(-135deg);
  animation-name: rotate-top;
}
@keyframes rotate-top {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-135deg);
  }
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

運用サービスLP

★★★★★★★★★★★★★★★★★★★★★★★★*/
.header-menu {
  margin-left: 66px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .header-menu {
    margin-left: 33px;
  }
}
@media screen and (max-width: 1200px) {
  .header-menu {
    margin-left: 12px;
  }
}
@media screen and (max-width: 1023px) {
  .header-menu {
    display: none;
  }
}

.header-menu__list {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .header-menu__list {
    font-size: 14px;
  }
}

.header-menu__link {
  display: block;
  padding: 12px 24px;
}
@media screen and (max-width: 1400px) {
  .header-menu__link {
    padding: 12px 12px;
  }
}
@media screen and (max-width: 1200px) {
  .header-menu__link {
    padding: 12px 8px;
  }
}

.footer-cta-top__inner {
  padding: 76px 0 135px;
}
@media only screen and (max-width:767px) {
  .footer-cta-top__inner {
    padding: 45px 0 28px;
  }
}

.footer-cta-top-main__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-cta-top-main__item {
  width: 47.4%;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 70px;
}
@media only screen and (max-width:767px) {
  .footer-cta-top-main__item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer-cta-top-main__img {
  aspect-ratio: 570/320;
  object-fit: cover;
  object-position: center;
}
.footer-cta-top-main__txt-area {
  text-align: center;
  padding: 35px 10px;
}
@media only screen and (max-width:767px) {
  .footer-cta-top-main__txt-area {
    padding: 25px 5px;
  }
}
.footer-cta-top-main__en-tit {
  font-family: var(--font1);
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  color: var(--theme-color1);
  background: -webkit-linear-gradient(180deg, var(--theme-color2), var(--theme-color1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: 0.05em;
  margin-bottom: 7px;
}
@media only screen and (max-width:767px) {
  .footer-cta-top-main__en-tit {
    font-size: 32px;
    margin-bottom: -3px;
  }
}
.footer-cta-top-main__jp-tit {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--black-color);
  margin-bottom: 15px;
}
@media only screen and (max-width:767px) {
  .footer-cta-top-main__jp-tit {
    font-size: 12px;
    margin-bottom: 11px;
  }
}
.footer-cta-top-main__txt {
  font-size: 24px;
  letter-spacing: 0;
  font-weight: 900;
  color: var(--black-color);
  line-height: 1.46;
}
@media only screen and (max-width:767px) {
  .footer-cta-top-main__txt {
    font-size: 18px;
  }
}
@media only screen and (max-width:767px) {
  .footer-cta-top-main__txt_small {
    font-size: 16px;
  }
}

.footer-blog {
  background: var(--black-color4);
}
.footer-blog__inner {
  padding: 80px 0 18px;
}
@media only screen and (max-width:767px) {
  .footer-blog__inner {
    padding: 45px 0;
  }
}

.footer-blog-tit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 55px;
}
@media only screen and (max-width:767px) {
  .footer-blog-tit-box {
    margin-bottom: 40px;
  }
}
.footer-blog-tit-box__jp-tit {
  color: var(--white-color);
  background: none;
  -webkit-text-fill-color: unset;
  margin-bottom: 5px;
}
.footer-blog-tit-box__en-tit {
  color: var(--white-color);
}

.footer-blog-main__list .slick-track {
  display: flex;
}
.footer-blog-main__list .slick-slide {
  height: auto !important;
}
.footer-blog-main__list .slick-dots {
  bottom: -38px;
}
.footer-blog-main__list .slick-dots li {
  margin: 0 5px;
}
.footer-blog-main__list .slick-dots li button:before {
  font-size: 14px;
}
.footer-blog-main__list .slick-dots li.slick-active button:before {
  color: var(--theme-color1);
}
.footer-blog-main__item {
  width: 320px;
  margin: 0 25px;
}
.footer-blog-main__img {
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.footer-blog-main__txt-area {
  padding: 20px 0;
}
.footer-blog-main__tit {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.63;
  margin-bottom: 4px;
}
.footer-blog-main__date {
  color: var(--gray-color5);
  font-size: 12px;
  font-weight: 700;
}

.footer-cta-bottom {
  padding: 65px 0 70px;
}
@media only screen and (max-width:767px) {
  .footer-cta-bottom {
    padding: 45px 0 5px;
  }
}
.footer-cta-bottom-main__list {
  display: flex;
}
@media only screen and (max-width:767px) {
  .footer-cta-bottom-main__list {
    flex-wrap: wrap;
  }
}
.footer-cta-bottom-main__item {
  width: 50%;
}
@media only screen and (max-width:767px) {
  .footer-cta-bottom-main__item {
    width: 100%;
    margin-bottom: 45px;
  }
}
.footer-cta-bottom-main__item-inner {
  width: calc(100% - 66px);
}
@media only screen and (min-width:768px) and (max-width:1023px) {
  .footer-cta-bottom-main__item-inner {
    width: calc(100% - 10px);
  }
}
@media only screen and (max-width:767px) {
  .footer-cta-bottom-main__item-inner {
    width: 100%;
  }
}
.footer-cta-bottom-main__en-tit {
  color: var(--black-color);
  font-size: 34px;
  font-weight: 800;
  font-family: var(--font1);
  letter-spacing: 0.05em;
}
.footer-cta-bottom-main__jp-tit {
  font-size: 15px;
  font-weight: 900;
  color: var(--theme-color1);
  background: -webkit-linear-gradient(0deg, var(--theme-color1), var(--theme-color4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 27px;
}
@media only screen and (max-width:767px) {
  .footer-cta-bottom-main__jp-tit {
    margin-bottom: 23px;
  }
}
.footer-cta-bottom-main__txt {
  font-size: 16px;
  line-height: 2.13;
  margin-bottom: 32px;
}
@media only screen and (max-width:767px) {
  .footer-cta-bottom-main__txt {
    font-size: 14px;
    margin-bottom: 27px;
  }
}
.footer-cta-bottom-main__btn-link span {
  background: var(--white-color);
  color: var(--black-color);
}
.footer-cta-bottom-main__btn-link span:hover {
  color: var(--white-color);
}
.footer-cta-bottom-main__btn-link span:hover svg path {
  fill: var(--white-color);
}
.footer-cta-bottom-main__btn-link svg {
  right: 10px;
}

.footer-services {
  padding: 0 0 60px;
}
@media only screen and (max-width:767px) {
  .footer-services {
    padding: 0 0 32px;
  }
}
.footer-services__item {
  margin-bottom: 11px;
}
.footer-services__link {
  display: flex;
  align-items: center;
}
.footer-services__tit {
  width: 35%;
  font-size: 13px;
  font-weight: 900;
  color: var(--white-color);
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .footer-services__tit {
    width: 100%;
    text-align: center;
  }
}
.footer-services__desc {
  width: 65%;
  font-size: 12px;
  color: var(--gray-color18);
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .footer-services__desc {
    display: none;
  }
}

.footer {
  overflow: hidden;
  background: var(--black-color4);
}

.footer-logo__inner {
  padding: 70px 0 30px;
}
.footer-logo__link {
  margin-bottom: 42px;
  display: block;
}
.footer-logo__logo {
  max-width: 129px;
  display: block;
  margin: 0 auto;
}
.footer-logo__txt {
  text-align: center;
  color: var(--white-color);
  font-size: 12px;
  line-height: 2.17;
}

.footer-nav-top__inner {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid var(--gray-color19);
  border-bottom: 1px solid var(--gray-color19);
}
@media only screen and (max-width:1023px) {
  .footer-nav-top__inner {
    padding-top: 38px;
    padding-bottom: 24px;
  }
}
.footer-nav-top__list {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width:1023px) {
  .footer-nav-top__list {
    flex-direction: column;
    width: 89%;
    margin: 0 auto;
  }
}
.footer-nav-top__item {
  margin: 0 24px;
}
@media only screen and (min-width:1024px) and (max-width:1200px) {
  .footer-nav-top__item {
    margin: 0 15px;
  }
}
@media only screen and (max-width:1023px) {
  .footer-nav-top__item {
    margin: 0;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
  }
}
.footer-nav-top__link {
  display: flex;
  align-items: center;
  color: var(--white-color);
  font-weight: 700;
  font-size: 13px;
  font-family: var(--font1);
  letter-spacing: 0.05em;
}
.footer-nav-top__link:hover {
  text-decoration: underline;
}

.footer-nav-bottom {
  border-bottom: 1px solid var(--gray-color19);
}
.footer-nav-bottom__inner {
  padding: 37px 0;
}
.footer-nav-bottom__list {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width:767px) {
  .footer-nav-bottom__list {
    flex-direction: column;
  }
}
.footer-nav-bottom__item {
  padding: 0 40px;
}
@media only screen and (max-width:767px) {
  .footer-nav-bottom__item {
    padding: 0 20px;
    margin-bottom: 10px;
  }
}
.footer-nav-bottom__link {
  font-size: 12px;
  color: var(--white-color);
  line-height: 1;
  display: block;
}
.footer-nav-bottom__link:hover {
  text-decoration: underline;
}

.footer-copyright {
  padding: 55px 0;
}
.footer-copyright__txt {
  text-align: center;
  font-size: 13px;
  color: var(--white-color);
  font-family: var(--font1);
  font-weight: 500;
  letter-spacing: 0.17em;
}

/*★★★★★★★★★★★★★★★

SIDE BAR WIDGET(BLOG)

★★★★★★★★★★★★★★★*/
/*　検索ボックス　*/
#searchform #search,
.wp-block-search #search {
  text-align: center;
  background: #fff;
}
#searchform .screen-reader-text,
.wp-block-search .screen-reader-text {
  flex-grow: 1;
  min-width: 3em;
  border: 1px solid #949494;
}
#searchform #searchsubmit,
.wp-block-search #searchsubmit {
  background: url(assets/img/common/btn_search.png) no-repeat 0 0;
  background-size: 40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  text-indent: -9999px;
  position: relative;
  left: -5px;
  top: 0px;
}
#searchform .wp-block-search__button,
.wp-block-search .wp-block-search__button {
  background: url(assets/img/common/btn_search.png) no-repeat 0 0;
  background-size: 40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  text-indent: -9999px;
  position: relative;
  left: -9px;
  top: 0px;
}
#searchform .wp-block-search__input,
.wp-block-search .wp-block-search__input {
  border: 1px solid #ddd;
  color: #333;
  padding: 5px;
  background-color: #fff;
  font-size: 15px;
}

/*★★★★★★★★★★★★★★★

ウィジェット

★★★★★★★★★★★★★★★*/
#widget,
#widget1,
#widget2 {
  font-size: 14px;
  margin: 30px 0px;
}
#widget select,
#widget1 select,
#widget2 select {
  margin: 4%;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
}
#widget .screen-reader-text,
#widget1 .screen-reader-text,
#widget2 .screen-reader-text {
  height: 0px;
  display: none;
}

#widget_tit,
#widget1_tit,
#widget1 h2,
.wp-block-archives-dropdown label {
  padding: 4% 1% 5% 1%;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  position: relative;
}
#widget_tit::before, #widget_tit::after,
#widget1_tit::before,
#widget1_tit::after,
#widget1 h2::before,
#widget1 h2::after,
.wp-block-archives-dropdown label::before,
.wp-block-archives-dropdown label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
}
#widget_tit::before,
#widget1_tit::before,
#widget1 h2::before,
.wp-block-archives-dropdown label::before {
  background: var(--gray-color);
  width: 100%;
  z-index: 1;
}
#widget_tit::after,
#widget1_tit::after,
#widget1 h2::after,
.wp-block-archives-dropdown label::after {
  background: var(--theme-color1);
  width: 30%;
  z-index: 1;
}

#widget1 li {
  border-bottom: 1px dotted var(--gray-color10);
  font-size: 16px;
  line-height: 1.6;
  transition: 0.3s;
}
#widget1 li:hover {
  background: var(--black-color15);
}
#widget1 li a {
  padding: 5%;
  display: block;
  color: inherit;
  font-size: 16px;
  font-weight: bold;
}
#widget1 li ul.children {
  margin-bottom: 15px;
}
#widget1 li ul.children li a::before {
  content: "- ";
  display: inline;
}
#widget1 li ul.children li {
  border: none;
  text-indent: 20px;
  font-size: 14px;
  font-weight: normal;
}
#widget1 li ul.children li a {
  padding: 1.5%;
}
#widget1 li ul.children li ul.children li {
  text-indent: 40px;
  font-size: 13px;
}
#widget1 li ul.children li ul.children li a {
  padding: 0.3%;
}

.recentcomments {
  padding: 5% 0;
}
.recentcomments a:hover {
  text-decoration: underline;
}

.cat-item {
  border-bottom: 1px dotted var(--gray-color10);
  font-size: 16px;
  line-height: 1.6;
  transition: 0.3s;
}
.cat-item:hover {
  background: #f5f5f5;
}
.cat-item a {
  padding: 5%;
  display: flex;
}

/*　side-news-list　*/
.side-news-list__item {
  border-bottom: 1px dotted var(--gray-color10);
  font-size: 16px;
  line-height: 1.6;
  transition: 0.3s;
}
.side-news-list__item:hover {
  background: var(--black-color15);
}
.side-news-list__link {
  padding: 6% 0;
  display: flex;
  color: inherit;
  align-items: flex-start;
}
.side-news-list__img {
  max-width: 90px;
  width: 27%;
  margin-right: 5%;
  position: relative;
}
.side-news-list__img::before {
  content: "";
  display: block;
  padding-top: 100%;
  /* 縦横比 3:2 に固定 */
}
.side-news-list__img img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.side-news-list__tit {
  width: 68%;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
}

/* fixnav */
@media only screen and (max-width:767px) {
  .fixnav {
    position: static !important;
    width: 100% !important;
  }
}
/*　ランキング　*/
.rank-list {
  margin-top: 12px;
}
.rank-list__item {
  position: relative;
  background: var(--white-color);
  padding: 10px 0 0;
  margin-bottom: 15px;
  transition: 0.3s;
}
@media only screen and (max-width:767px) {
  .rank-list__item {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.rank-list__item:hover {
  box-shadow: 0 0 30px var(--shadow-hover-color);
}
.rank-list__link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.rank-list__link:hover {
  background: var(--black-color15);
}
.rank-list__number {
  font-weight: 900;
  font-size: 21px;
  line-height: 24px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 45px;
  height: 45px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  z-index: 30;
}
.rank-list__number_1 {
  background: var(--rank-list-color1);
}
.rank-list__number_2 {
  background: var(--rank-list-color2);
}
.rank-list__number_3 {
  background: var(--rank-list-color3);
}
.rank-list__img {
  position: relative;
  width: 100%;
}
.rank-list__img::before {
  content: "";
  display: block;
  padding-top: 66.6%;
  /* 縦横比 3:2 に固定 */
}
.rank-list__img img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.rank-list-box {
  padding: 15px 5px;
}
@media only screen and (max-width:1023px) {
  .rank-list-box {
    padding: 15px 0;
  }
}
.rank-list-box__date {
  font-weight: bold;
  font-size: 11px;
  color: var(--gray-color2);
  line-height: 1;
}
.rank-list-box__tit {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin-top: 2px;
}
.rank-list-box__category {
  font-size: 9px;
  color: var(--gray-color2);
}

/*　タグクラウド　*/
.wp-block-tag-cloud,
.tagcloud {
  padding: 10px;
}
.wp-block-tag-cloud .tag-cloud-link,
.tagcloud .tag-cloud-link {
  display: inline-block;
  background: var(--gray-color);
  border-radius: 14px;
  padding: 3px 10px;
  margin: 5px;
  color: var(--white-font-color);
  font-size: 12px !important;
  transition: 0.3s;
}
.wp-block-tag-cloud .tag-cloud-link:hover,
.tagcloud .tag-cloud-link:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

/*カレンダー*/
#sidebar .widget_calendar {
  margin-bottom: 40px;
}

table#wp-calendar {
  table-layout: fixed;
  width: 100%;
  margin: 5px auto 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 12px;
}

table#wp-calendar caption {
  margin: 10px 0 0 0;
  padding: 2px;
  width: auto;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

table#wp-calendar #today {
  display: block;
  font-weight: bold;
  background-color: #ffec67;
  border: none;
  z-index: 1;
}

table#wp-calendar .pad {
  font-weight: bold;
  background-color: #fff9f9;
}

table#wp-calendar th,
table#wp-calendar td {
  padding: 10px auto !important;
  vertical-align: middle;
  text-align: center;
}

table#wp-calendar td {
  line-height: 1.8;
  border: 1px solid #ddd;
  background-color: #fff;
}

table#wp-calendar th {
  font-style: normal;
  font-weight: bold;
  color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  background-color: #333;
}

table#wp-calendar a {
  font-size: 12px;
  color: #00a0dd;
  padding: 0;
  text-decoration: underline;
}

/*RSS*/
a.rsswidget {
  font-size: 14px;
}
a.rsswidget img {
  position: relative;
  top: 6px;
}

span.rss-date {
  font-size: 11px;
  padding: 5px 15px;
  color: #666;
}

.rssSummary {
  font-size: 11px;
  color: #666;
  padding: 5px 15px;
  margin-bottom: 10px;
}

cite {
  font-size: 11px;
  margin-bottom: 15px;
  display: block;
  padding: 5px 15px;
  color: #666;
}

.sidebar-list {
  margin-top: 20px;
}
.sidebar-list .sidebar-item {
  position: relative;
  background: var(--black-color15);
  margin-bottom: 20px;
  border: none !important;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width:767px) {
  .sidebar-list .sidebar-item {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.sidebar-list .sidebar-item a {
  border: none !important;
  padding: 0 !important;
  transition: 0.3s;
}
.sidebar-list .sidebar-item a:hover {
  -webkit-filter: brightness(1.2);
  -moz-filter: brightness(1.2);
  -ms-filter: brightness(1.2);
  filter: brightness(1.2);
}
.sidebar-list .sidebar-item:nth-of-type(1) .number {
  background: #d0ad75;
}
.sidebar-list .sidebar-item:nth-of-type(2) .number {
  background: #9f9f9f;
}
.sidebar-list .sidebar-item:nth-of-type(3) .number {
  background: #d08375;
}
.sidebar-list .sidebar-item .number {
  font-weight: 900;
  font-size: 21px;
  line-height: 24px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 20px;
  width: 45px;
  height: 45px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  z-index: 30;
}
.sidebar-list .sidebar-item figure {
  margin: 0;
  position: relative;
  aspect-ratio: 3/2;
}
.sidebar-list .sidebar-item figure img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.sidebar-list .sidebar-item .item-box {
  padding: 12px;
}
.sidebar-list .sidebar-item .item-box .date {
  font-weight: bold;
  font-size: 11px;
  letter-spacing: 0;
  margin-bottom: -2px;
  font-family: var(--font1);
  color: var(--gray-color18);
}
.sidebar-list .sidebar-item .item-box .tit {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin-top: 2px;
  margin-bottom: 8px;
}
.sidebar-list .sidebar-item .item-box .category-name {
  font-weight: 400;
  font-size: 10px;
  color: var(--theme-color1);
  margin-top: 4px;
  transform: scale(0.9);
  transform-origin: top left;
}

.ityped-cursor {
  opacity: 0.3;
  -webkit-animation: blink 0.3s infinite;
  -moz-animation: blink 0.3s infinite;
  animation: blink 0.3s infinite;
  animation-direction: alternate;
}

@keyframes blink {
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes blink {
  100% {
    opacity: 0;
  }
}
@-moz-keyframes blink {
  100% {
    opacity: 0ï;
  }
}
.typo {
  font-family: var(--font1);
  font-weight: 700;
  font-size: 134px;
  letter-spacing: 0.05em;
  color: #666;
}
@media only screen and (min-width:768px) and (max-width:1023px) {
  .typo {
    font-size: 90px;
  }
}
@media only screen and (max-width:767px) {
  .typo {
    font-size: 54px;
  }
}
.typo span#ityped {
  background: linear-gradient(90deg, #24d5f4, #ab39ff);
  background: -webkit-linear-gradient(0deg, #24d5f4, #ab39ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ani 8s infinite;
}
@keyframes ani {
  0%, 100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(360deg);
  }
}

.front-fv {
  width: 100%;
  height: 100vh;
  height: 100svh;
  max-height: 900px;
  aspect-ratio: 16/9;
  position: relative;
}
@media only screen and (max-width:767px) {
  .front-fv {
    max-height: 667px;
  }
}
.front-fv__inner {
  background: url(assets/img/front-page/front-fv-bg.jpg);
  background-size: cover;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width:767px) {
  .front-fv__inner {
    padding-top: 20px;
  }
}

.front-fv-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.front-fv-bg__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-fv-bg__filter {
  opacity: 0.9;
  background: var(--black-color3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.front-fv-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
@media only screen and (max-width:1023px) {
  .front-fv-left {
    display: none;
  }
}
.front-fv-left::after {
  content: "";
  display: block;
  width: 1px;
  height: 97%;
  background: var(--white-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.front-fv-left__txt {
  font-family: var(--font1);
  font-size: 13px;
  color: var(--white-color);
  font-weight: 600;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.front-fv-main {
  position: relative;
  z-index: 2;
}
.front-fv-main__tit {
  line-height: 1;
  display: block;
  text-align: center;
  margin-bottom: 33px;
}
@media only screen and (min-width:768px) and (max-width:1023px) {
  .front-fv-main__tit {
    margin-bottom: 23px;
  }
}
.front-fv-main__tit_top {
  font-size: 119px;
  color: var(--white-color);
  font-family: var(--font2);
  letter-spacing: 0;
  margin-bottom: -58px;
  display: block;
}
@media only screen and (max-width:767px) {
  .front-fv-main__tit_top {
    margin-bottom: -48px;
  }
}
.front-fv-main__tit_top_img {
  max-width: 385px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width:768px) and (max-width:1023px) {
  .front-fv-main__tit_top_img {
    max-width: 300px;
  }
}
@media only screen and (max-width:767px) {
  .front-fv-main__tit_top_img {
    width: 178px;
  }
}
.front-fv-main__tit_bottom {
  font-family: var(--font1);
  font-weight: 700;
  font-size: 134px;
  letter-spacing: 0.05em;
  color: var(--theme-color1);
  background: -webkit-linear-gradient(180deg, var(--theme-color3), var(--theme-color1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
@media only screen and (min-width:768px) and (max-width:1023px) {
  .front-fv-main__tit_bottom {
    font-size: 90px;
  }
}
@media only screen and (max-width:767px) {
  .front-fv-main__tit_bottom {
    font-size: 43px;
  }
}
.front-fv-main__tit ul {
  overflow: hidden;
  height: 135px;
  position: relative;
  display: inline-block;
  width: 1040px;
}
@media only screen and (min-width:768px) and (max-width:1023px) {
  .front-fv-main__tit ul {
    height: 90px;
  }
}
@media only screen and (max-width:767px) {
  .front-fv-main__tit ul {
    height: 43px;
  }
}
.front-fv-main__tit ul li {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 1040px;
  opacity: 0;
  animation: slideme 30s infinite;
}
.front-fv-main__tit ul li:nth-child(2) {
  animation-delay: 6s;
}
.front-fv-main__tit ul li:nth-child(3) {
  animation-delay: 12s;
}
.front-fv-main__tit ul li:nth-child(4) {
  animation-delay: 18s;
}
.front-fv-main__tit ul li:nth-child(5) {
  animation-delay: 24s;
}
.front-fv-main__tit ul li span {
  background: -webkit-linear-gradient(180deg, var(--theme-color3), var(--theme-color1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  display: inline-block;
  animation: bggradient 20s ease infinite;
}
.front-fv-main__txt {
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--white-color);
  font-size: 16px;
  line-height: 2;
}
@media only screen and (min-width:768px) and (max-width:1023px) {
  .front-fv-main__txt {
    font-size: 14px;
  }
}
@media only screen and (max-width:767px) {
  .front-fv-main__txt {
    font-size: 12px;
  }
}

.front-intro {
  position: relative;
}
.front-intro_first {
  background: var(--black-color2);
}
.front-intro_second {
  background: var(--black-color3);
}
.front-intro_third {
  background: var(--black-color);
}
.front-intro__inner {
  padding: 120px 15px;
}
@media only screen and (max-width:1023px) {
  .front-intro__inner {
    padding: 50px 0 0;
    padding-bottom: 0;
  }
}

@media only screen and (max-width:1023px) {
  .front-intro-main {
    display: flex;
    flex-direction: column;
  }
}
.front-intro-main_second {
  display: flex;
  justify-content: flex-end;
}

.front-intro-left {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width:1023px) {
  .front-intro-left {
    margin-bottom: 40px;
  }
}
.front-intro-left_second {
  padding: 0 25px 0 40px;
  max-width: 50%;
}
@media only screen and (max-width:1023px) {
  .front-intro-left_second {
    max-width: none;
    padding: 0;
  }
}
.front-intro-left__tit {
  color: var(--white-color);
  font-size: 36px;
  letter-spacing: 0;
  font-weight: 900;
  line-height: 1.42;
  margin-bottom: 40px;
}
@media only screen and (max-width:1023px) {
  .front-intro-left__tit {
    font-size: 24px;
    margin-bottom: 18px;
    line-height: 1.67;
  }
}
@media only screen and (max-width:1023px) {
  .front-intro-left__tit_second {
    margin-bottom: 30px;
  }
}
.front-intro-left__txt {
  color: var(--white-color);
  font-size: 16px;
  letter-spacing: 0.01em;
  margin-bottom: 48px;
  line-height: 2;
}
@media only screen and (max-width:1023px) {
  .front-intro-left__txt {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 2.14;
  }
}
.front-intro-left__txt_small {
  font-size: 15px;
  line-height: 2.13;
}
@media only screen and (max-width:767px) {
  .front-intro-left__txt_small {
    font-size: 14px;
    line-height: 2.14;
  }
}
.front-intro-left__txt ul {
  margin-bottom: 30px;
}
@media only screen and (max-width:1023px) {
  .front-intro-left__txt ul li {
    font-size: 13px;
  }
}
.front-intro-left__txt strong,
.front-intro-left__txt li {
  font-weight: 700;
}
.front-intro-left__txt strong {
  margin-bottom: 40px;
  display: block;
}
@media only screen and (max-width:767px) {
  .front-intro-left__txt strong {
    font-size: 12px;
    margin-bottom: 13px;
  }
}
@media only screen and (max-width:1023px) {
  .front-intro-left__btn {
    display: flex;
    justify-content: center;
  }
}
.front-intro-left__btn-link_first span {
  background: var(--black-color2);
}
.front-intro-left__btn-link_second span {
  background: var(--black-color3);
}
.front-intro-left__btn-link_third span {
  background: var(--black-color);
}

.front-intro-right {
  position: absolute;
}
@media only screen and (max-width:1023px) {
  .front-intro-right {
    position: relative;
  }
}
.front-intro-right_first {
  top: 0;
  right: -50px;
  width: 65%;
  height: 100%;
  max-width: 1082px;
}
@media only screen and (max-width:1023px) {
  .front-intro-right_first {
    position: relative;
    right: auto;
    width: 100vw;
    left: -6%;
    height: auto;
    max-width: none;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
}
.front-intro-right_second {
  position: absolute;
  left: 0;
  width: 50vw;
  max-width: 800px;
  padding: 0 50px;
}
@media only screen and (max-width:1023px) {
  .front-intro-right_second {
    position: relative;
    right: auto;
    left: auto;
    width: 100%;
    max-width: none;
    height: auto;
    padding: 0;
    padding-bottom: 35px;
  }
}
.front-intro-right_third {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 1074px;
  width: 75%;
  height: 100%;
}
@media only screen and (max-width:1023px) {
  .front-intro-right_third {
    position: relative;
    right: auto;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    max-width: none;
    height: auto;
  }
}
.front-intro-right__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
@media only screen and (max-width:767px) {
  .front-intro-right__img_first {
    width: 124%;
    margin-left: -7%;
    max-width: none;
  }
}
.front-works__inner {
  padding: 90px 0;
}
@media only screen and (max-width:767px) {
  .front-works__inner {
    padding: 50px 0;
  }
}

.front-works-tit-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  margin-bottom: -17px;
}
@media only screen and (max-width:767px) {
  .front-works-tit-box {
    margin-bottom: -11px;
  }
}
.front-works-main__list {
  margin-bottom: 30px;
}
@media only screen and (max-width:767px) {
  .front-works-main__list {
    margin-bottom: 25px;
  }
}
.front-works-main__list .slick-track {
  display: flex;
}
.front-works-main__list .slick-slide {
  height: auto !important;
}
.front-works-main__item {
  width: 514px;
  margin: 0 10px;
}
@media only screen and (max-width:767px) {
  .front-works-main__item {
    width: 247px;
  }
}
.front-works-main__btn {
  display: flex;
  justify-content: center;
}
.front-works-main__btn-link span {
  background: var(--white-color);
  color: var(--black-color);
}
.front-works-main__btn-link span:hover {
  color: var(--white-color);
}
.front-works-main__btn-link span:hover svg path {
  fill: var(--white-color);
}

.front-voices {
  background: var(--gray-color3);
}
.front-voices__inner {
  padding: 90px 0 65px;
}
@media only screen and (max-width:1023px) {
  .front-voices__inner {
    padding: 35px 0 50px;
  }
}

.front-voices-tit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -17px;
  position: relative;
  z-index: 1;
}

.front-voices-main .slick-track {
  display: flex;
}
@media only screen and (max-width:767px) {
  .front-voices-main .slick-track {
    display: block;
  }
}
.front-voices-main .slick-slide {
  height: auto !important;
}
.front-voices-main .slick-dots {
  bottom: -38px;
}
.front-voices-main .slick-dots li {
  margin: 0 5px;
}
.front-voices-main .slick-dots li button:before {
  font-size: 14px;
}
.front-voices-main .slick-dots li.slick-active button:before {
  color: var(--theme-color1);
}
.front-voices-main .slick-prev,
.front-voices-main .slick-next {
  width: 90px;
  height: 90px;
  z-index: 1;
}
@media only screen and (max-width:1023px) {
  .front-voices-main .slick-prev,
.front-voices-main .slick-next {
    width: 36px;
    height: 36px;
  }
}
.front-voices-main .slick-prev {
  left: calc(50% - 415px);
  transform: translate(-50%, -50%);
}
@media only screen and (min-width:768px) and (max-width:1023px) {
  .front-voices-main .slick-prev {
    left: calc(50% - 45vw);
  }
}
@media only screen and (max-width:767px) {
  .front-voices-main .slick-prev {
    left: calc(50% - 43vw);
  }
}
.front-voices-main .slick-next {
  right: calc(50% - 505px);
  transform: translate(-50%, -50%);
}
@media only screen and (min-width:768px) and (max-width:1023px) {
  .front-voices-main .slick-next {
    right: calc(50% - 45vw - 36px);
  }
}
@media only screen and (max-width:767px) {
  .front-voices-main .slick-next {
    right: calc(50% - 43vw - 36px);
  }
}
.front-voices-main .slick-next:before,
.front-voices-main .slick-prev:before {
  content: "";
}
.front-voices-main .slick-next:before {
  background: url(assets/img/front-page/slick-next.png);
  background-size: contain;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
}
.front-voices-main .slick-prev:before {
  background: url(assets/img/front-page/slick-prev.png);
  background-size: contain;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
}
.front-voices-main__item {
  width: 800px;
  background: var(--white-color);
  padding: 60px 60px 20px;
  margin: 0 15px;
}
@media only screen and (max-width:1023px) {
  .front-voices-main__item {
    width: 90vw;
    margin: 0 2.5vw;
    padding: 30px 30px 40px;
  }
}
.front-voices-main__tit {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--black-color);
  line-height: 1.43;
  margin-bottom: 30px;
}
@media only screen and (max-width:1023px) {
  .front-voices-main__tit {
    font-size: 18px;
    line-height: 1.44;
    margin-bottom: 20px;
  }
}
.front-voices-main__txt {
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 2.25;
  margin-bottom: 42px;
}
@media only screen and (max-width:1023px) {
  .front-voices-main__txt {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 17px;
  }
}
.front-voices-main__name {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.01em;
}
@media only screen and (max-width:1023px) {
  .front-voices-main__name {
    font-size: 12px;
  }
}

.front-services {
  background: var(--black-color2);
}
.front-services__inner {
  padding: 90px 0 40px;
}
@media only screen and (max-width:767px) {
  .front-services__inner {
    padding: 30px 0 65px;
  }
}

.front-services-tit-box {
  margin-bottom: 60px;
}
@media only screen and (max-width:767px) {
  .front-services-tit-box {
    margin-bottom: 40px;
    position: relative;
    top: -24px;
    margin-bottom: 12px;
  }
}
.front-services-tit-box__tit {
  color: var(--theme-color1);
  background: -webkit-linear-gradient(180deg, var(--theme-color3), var(--theme-color1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: var(--font1);
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
@media only screen and (min-width:768px) and (max-width:1023px) {
  .front-services-tit-box__tit {
    font-size: 50px;
  }
}
@media only screen and (max-width:767px) {
  .front-services-tit-box__tit {
    font-size: 32px;
    text-align: center;
    display: block;
  }
}

.front-services-main__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.front-services-main__item {
  width: calc(50% - 40px);
  margin-bottom: 70px;
}
@media only screen and (max-width:767px) {
  .front-services-main__item {
    width: 100%;
    margin-bottom: 0;
    border-top: #4e4e4e 1px solid;
  }
}
@media only screen and (max-width:767px) {
  .front-services-main__item:nth-last-of-type(1) {
    border-bottom: #4e4e4e 1px solid;
  }
}
.front-services-main__tit {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 900;
}
@media only screen and (max-width:1023px) {
  .front-services-main__tit {
    font-size: 22px;
    letter-spacing: 0.01em;
  }
}
.front-services-main__txt {
  color: var(--white-color);
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 2;
}
@media only screen and (max-width:1023px) {
  .front-services-main__txt {
    font-size: 14px;
    line-height: 2.14;
  }
}

.front-services-top {
  margin-bottom: 25px;
}
@media only screen and (max-width:767px) {
  .front-services-top {
    padding: 20px 35px 20px 0;
    margin-bottom: 0;
    position: relative;
  }
}
.front-services-top svg {
  display: none;
}
@media only screen and (max-width:767px) {
  .front-services-top svg {
    transition: 0.3s;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    right: 10px;
  }
}
@media only screen and (max-width:767px) {
  .front-services-top_open svg {
    transform: translateY(-50%) rotate(0deg);
  }
}

@media only screen and (max-width:767px) {
  .front-services-bottom {
    padding-bottom: 30px;
    display: none;
  }
}

.front-about {
  background: url(assets/img/front-page/front-about-bg.jpg);
}
.front-about__inner {
  padding: 105px 0 100px;
}
@media only screen and (max-width:767px) {
  .front-about__inner {
    padding: 50px 0 55px;
  }
}

.front-about-tit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 21px;
}
@media only screen and (max-width:767px) {
  .front-about-tit-box {
    margin-bottom: 30px;
  }
}
.front-about-tit-box__en-tit {
  margin-bottom: 13px;
}

.front-about-main__txt {
  font-size: 18px;
  font-weight: 700;
  line-height: 2.06;
  color: var(--black-color);
  text-align: center;
}
@media only screen and (max-width:767px) {
  .front-about-main__txt {
    font-size: 15px;
    text-align: left;
    line-height: 1.87;
  }
}

.home-blog__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-blog__list_relation {
  width: 67.5%;
  padding-bottom: 100px;
}
.home-blog__item {
  width: 48.2%;
  margin-bottom: 20px;
  box-sizing: border-box;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width:1023px) {
  .home-blog__item {
    padding: 0;
  }
}
@media only screen and (max-width:767px) {
  .home-blog__item {
    width: 100%;
  }
}
.home-blog__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: inherit;
  transition: 0.3s;
}
.home-blog__link:hover {
  -webkit-filter: brightness(1.2);
  -moz-filter: brightness(1.2);
  -ms-filter: brightness(1.2);
  filter: brightness(1.2);
}
.home-blog__category {
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  background: linear-gradient(to right, var(--theme-color1), var(--theme-color2));
  display: inline-block;
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 1;
  padding: 1px 10px;
  min-width: 108px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width:1023px) {
  .home-blog__category {
    font-size: 10px;
    padding: 1px 13px;
  }
}
.home-blog__category-svg {
  width: 14px;
  height: 11px;
  fill: var(--white-color);
  margin-right: 9px;
}
.home-blog__img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
}
.home-blog__img-wrapper img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.home-blog__box {
  padding: 12px 19px 23px;
}
.home-blog__date {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 6px;
  font-family: var(--font1);
  letter-spacing: 0;
  color: var(--gray-color18);
}
@media only screen and (max-width:1023px) {
  .home-blog__date {
    font-size: 10px;
    transform: scale(0.9);
    transform-origin: left top;
  }
}
.home-blog__tit {
  font-size: 21px;
  letter-spacing: 0.01em;
  font-weight: 900;
  line-height: 1.5;
}
@media only screen and (max-width:767px) {
  .home-blog__tit {
    font-size: 16px;
  }
}
.home-blog__author {
  font-size: 10px;
}
@media only screen and (max-width:1023px) {
  .home-blog__author {
    font-size: 10px;
    transform: scale(0.7);
    transform-origin: left top;
  }
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

固定ページ共通パーツ

★★★★★★★★★★★★★★★★★★★★★★★★*/
.page-fv {
  background: url(assets/img/page/page-fv-bg.jpg) no-repeat center;
  background-size: cover;
  min-height: 320px;
  box-sizing: border-box;
  padding: 45px 0 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width:767px) {
  .page-fv {
    min-height: 241px;
    border-bottom: none;
  }
}
.page-fv_company {
  border-bottom: 0;
}
.page-fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.page-fv-bg-left {
  background: var(--black-color);
  width: 100%;
  position: relative;
}
@media only screen and (max-width:767px) {
  .page-fv-bg-left {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    width: 100%;
  }
}
.page-fv-bg-left__bg {
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: var(--black-color3);
  position: absolute;
}
.page-fv-bg-left__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-fv-bg-right {
  width: 50%;
  height: 111%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-clip-path: polygon(31% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(31.3% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media only screen and (max-width:767px) {
  .page-fv-bg-right {
    height: auto;
    bottom: -27px;
    top: auto;
    max-width: 250px;
  }
}
.page-fv-bg-right__bg {
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: var(--black-color);
  position: absolute;
}
.page-fv-bg-right__img {
  display: block;
  width: 100%;
  height: 100%;
}

.page-fv-main {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width:767px) {
  .page-fv-main {
    text-align: center;
  }
}
.page-fv-main__en-tit {
  font-family: var(--font1);
  font-size: 57px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--theme-color1);
  background: -webkit-linear-gradient(180deg, var(--theme-color5), var(--theme-color1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
@media only screen and (max-width:767px) {
  .page-fv-main__en-tit {
    font-size: 31px;
    margin-bottom: -3px;
  }
}
.page-fv-main__jp-tit {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media only screen and (max-width:767px) {
  .page-fv-main__jp-tit {
    font-size: 12px;
  }
}

.page-contents {
  padding: 80px 0 180px;
}
@media only screen and (max-width:767px) {
  .page-contents {
    padding: 20px 0 40px;
  }
}
.breadcrumbs {
  padding: 2px 0;
}
.breadcrumbs_black {
  background: var(--black-color5);
}
@media only screen and (max-width:767px) {
  .breadcrumbs__half {
    width: 50%;
  }
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs__item {
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 5px 0;
  line-height: 1.1;
  color: var(--gray-color2);
}
.breadcrumbs__link {
  color: var(--gray-color2);
}

.service-intro {
  background: var(--black-color5);
}
.service-intro__inner {
  padding: 90px 0 105px;
}
@media only screen and (max-width:767px) {
  .service-intro__inner {
    padding: 40px 0 50px;
  }
}

.service-intro-main {
  text-align: center;
}
.service-intro-main__tit {
  color: var(--theme-color4);
  background: -webkit-linear-gradient(180deg, var(--theme-color3), var(--theme-color4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 40px;
  letter-spacing: 0;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 65px;
}
@media only screen and (max-width:767px) {
  .service-intro-main__tit {
    font-size: 24px;
    line-height: 1.75;
    margin-bottom: 28px;
  }
}
.service-intro-main__txt {
  color: var(--white-color);
  font-size: 24px;
  letter-spacing: 0;
  font-weight: 900;
  line-height: 1.96;
}
@media only screen and (max-width:767px) {
  .service-intro-main__txt {
    font-size: 15px;
    line-height: 1.87;
  }
}

.service-content {
  position: relative;
}
.service-content_gray {
  background: var(--gray-color3);
}
.service-content__inner {
  padding: 72px 0 80px;
}
@media only screen and (max-width:767px) {
  .service-content__inner {
    padding: 37px 0 60px;
  }
}
.service-content__inner_img {
  padding-bottom: 0;
}

.service-content-main__tit {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.69;
  margin-bottom: 30px;
}
@media only screen and (max-width:767px) {
  .service-content-main__tit {
    font-size: 22px;
    margin-bottom: 35px;
  }
}
.service-content-main__txt {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 2.5;
}
@media only screen and (max-width:767px) {
  .service-content-main__txt {
    font-size: 15px;
    line-height: 2;
  }
}
.service-content-main__img-wrapper {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  display: flex;
  align-items: center;
  width: 100vw;
  height: 340px;
  margin-top: 100px;
  overflow: hidden;
}
@media only screen and (max-width:767px) {
  .service-content-main__img-wrapper {
    height: 200px;
    margin-top: 35px;
  }
}
.service-content-main__img {
  max-width: none;
  width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.standard-tit-box {
  text-align: center;
  margin-bottom: 64px;
}
@media only screen and (max-width:767px) {
  .standard-tit-box {
    margin-bottom: 30px;
  }
}
.standard-tit-box__en-tit {
  font-size: 64px;
  letter-spacing: 0.05em;
  font-weight: 800;
  font-family: var(--font1);
  color: var(--theme-color1);
  background: -webkit-linear-gradient(180deg, var(--theme-color2), var(--theme-color1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: -6px;
}
@media only screen and (max-width:767px) {
  .standard-tit-box__en-tit {
    font-size: 34px;
  }
}
.standard-tit-box__jp-tit {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--black-color);
}
@media only screen and (max-width:767px) {
  .standard-tit-box__jp-tit {
    font-size: 16px;
  }
}

.standard-example__inner {
  padding: 70px 0;
}
@media only screen and (max-width:767px) {
  .standard-example__inner {
    padding: 40px 0;
  }
}

.standard-example-main__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.standard-example-main__item {
  width: 48.5%;
  background: var(--gray-color3);
  margin-bottom: 40px;
  padding: 50px 50px 25px;
}
@media only screen and (max-width:767px) {
  .standard-example-main__item {
    width: 100%;
    padding: 25px 25px 10px;
  }
}
.standard-example-main__tit {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--black-color);
  line-height: 1.5;
  margin-bottom: 15px;
}
@media only screen and (max-width:767px) {
  .standard-example-main__tit {
    font-size: 22px;
  }
}
.standard-example-main__yen {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--black-color);
  margin-bottom: 23px;
}
@media only screen and (max-width:767px) {
  .standard-example-main__yen {
    font-size: 22px;
  }
}
.standard-example-main dl {
  line-height: 2;
}
.standard-example-main dl dd {
  margin-bottom: 27px;
}

.standard-fee {
  background: var(--gray-color3);
}
.standard-fee__inner {
  padding: 72px 0;
}
@media only screen and (max-width:767px) {
  .standard-fee__inner {
    padding: 40px 0;
  }
}

.standard-fee-tit-box {
  margin-bottom: 40px;
}

.standard-fee-main {
  margin-bottom: 52px;
}
.standard-fee-main table {
  background: var(--white-color);
  width: 100%;
}
.standard-fee-main table tbody tr {
  border-bottom: 5px solid var(--gray-color3);
}
@media only screen and (max-width:767px) {
  .standard-fee-main table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
  }
}
.standard-fee-main table tbody tr td {
  padding: 23px 37px;
}
@media only screen and (max-width:767px) {
  .standard-fee-main table tbody tr td {
    padding: 0 25px;
  }
}
.standard-fee-main table tbody tr td:nth-of-type(1) {
  width: 58%;
  border-right: 5px solid var(--gray-color3);
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width:767px) {
  .standard-fee-main table tbody tr td:nth-of-type(1) {
    width: 100%;
    border: none;
    margin-bottom: 5px;
  }
}
.standard-fee-main table tbody tr td:nth-of-type(2) {
  width: 42%;
  font-size: 18px;
}
@media only screen and (max-width:767px) {
  .standard-fee-main table tbody tr td:nth-of-type(2) {
    width: 100%;
  }
}
.standard-fee-main__txt {
  margin-top: 20px;
}
.standard-fee-main__txt a {
  text-decoration: underline;
}
.standard-fee-main__txt a:hover {
  text-decoration: none;
}

.standard-package__inner {
  padding: 75px 0 95px;
}
@media only screen and (max-width:767px) {
  .standard-package__inner {
    padding: 40px 0;
  }
}

.standard-package-tit-box {
  text-align: center;
  margin-bottom: 58px;
}
.standard-package-tit-box__tit {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 40px;
}
@media only screen and (max-width:767px) {
  .standard-package-tit-box__tit {
    font-size: 29px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
}
.standard-package-tit-box__txt {
  line-height: 2.19;
  letter-spacing: 0.01em;
}
@media only screen and (max-width:767px) {
  .standard-package-tit-box__txt {
    line-height: 2;
  }
}

.branding-trouble {
  background: var(--gray-color3);
}
.branding-trouble__inner {
  padding: 75px 0 100px;
}
@media only screen and (max-width:767px) {
  .branding-trouble__inner {
    padding: 40px 0;
  }
}

.branding-trouble-main__tit {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--black-color);
  letter-spacing: 0.05em;
  margin-bottom: 62px;
}
@media only screen and (max-width:767px) {
  .branding-trouble-main__tit {
    font-size: 23px;
    margin-bottom: 30px;
  }
}
.branding-trouble-main__list {
  background: var(--white-color);
  padding: 50px;
}
@media only screen and (max-width:767px) {
  .branding-trouble-main__list {
    padding: 25px;
  }
}
.branding-trouble-main__item {
  font-size: 21px;
  letter-spacing: 0.01em;
  font-weight: 900;
  margin-bottom: 30px;
}
@media only screen and (min-width:768px) and (max-width:1023px) {
  .branding-trouble-main__item {
    font-size: 18px;
  }
}
@media only screen and (max-width:1023px) {
  .branding-trouble-main__item {
    display: flex;
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.branding-trouble-main__item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.branding-trouble-main__item svg {
  margin-right: 9px;
  min-width: 20px;
}
@media only screen and (max-width:1023px) {
  .branding-trouble-main__item svg {
    display: block;
    margin-top: 5px;
  }
}

.branding-tit-box {
  margin-bottom: 70px;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .branding-tit-box {
    margin-bottom: 40px;
  }
}
.branding-tit-box__tit {
  font-size: 32px;
  letter-spacing: 0.01em;
  line-height: 1.53;
  font-weight: 900;
  margin-bottom: 35px;
  color: var(--black-color);
}
@media only screen and (max-width:767px) {
  .branding-tit-box__tit {
    font-size: 19px;
    margin-bottom: 20px;
  }
}
.branding-tit-box__txt {
  letter-spacing: 0.01em;
  line-height: 2.06;
}
@media only screen and (max-width:767px) {
  .branding-tit-box__txt {
    font-size: 14px;
  }
}

.branding-explanation__inner {
  padding: 75px 0 5px;
}
@media only screen and (max-width:767px) {
  .branding-explanation__inner {
    padding: 40px 0 5px;
  }
}

.branding-explanation-tit-box_second {
  margin-bottom: 40px;
}

.branding-explanation-main {
  margin-bottom: 100px;
}
@media only screen and (max-width:767px) {
  .branding-explanation-main {
    margin-bottom: 50px;
  }
}
.branding-explanation-main__img_second {
  max-width: 960px;
  margin: 0 auto;
  display: block;
  width: 100%;
}

.branding-flow {
  background: var(--gray-color3);
}
.branding-flow__inner {
  padding: 80px 0 125px;
}
@media only screen and (max-width:767px) {
  .branding-flow__inner {
    padding: 40px 0;
  }
}

.branding-flow-tit-box__tit {
  color: var(--black-color);
}

.branding-merit__inner {
  padding: 85px 0 75px;
}
@media only screen and (max-width:767px) {
  .branding-merit__inner {
    padding: 40px 0 60px;
  }
}

.branding-merit-tit-box {
  margin-bottom: 47px;
}
@media only screen and (max-width:767px) {
  .branding-merit-tit-box__tit {
    font-size: 25px;
  }
}

.branding-merit-main__item {
  margin-bottom: 60px;
}
@media only screen and (max-width:767px) {
  .branding-merit-main__item {
    margin-bottom: 40px;
  }
}
.branding-merit-main__item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.branding-merit-main__tit {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.01em;
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
}
@media only screen and (max-width:767px) {
  .branding-merit-main__tit {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.branding-merit-main__tit::after {
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  content: "";
  height: 4px;
  background: linear-gradient(90deg, var(--theme-color1), var(--theme-color2));
}
@media only screen and (max-width:767px) {
  .branding-merit-main__tit::after {
    bottom: -10px;
  }
}
.branding-merit-main__txt {
  letter-spacing: 0.01em;
  line-height: 2.13;
}

.branding-flow-web {
  background: var(--gray-color3);
}
.branding-flow-web__inner {
  padding: 70px 0 40px;
}
@media only screen and (max-width:767px) {
  .branding-flow-web__inner {
    padding: 40px 0;
  }
}

.branding-flow-web-tit-box {
  margin-bottom: 50px;
}
.branding-flow-web-tit-box__tit {
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .branding-flow-web-tit-box__tit {
    font-size: 25px;
  }
}

.branding-flow-web-main__list {
  max-width: 400px;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  .branding-flow-web-main__list {
    width: 100%;
  }
}
.branding-flow-web-main__item {
  font-size: 21px;
  letter-spacing: 0.1em;
  height: 75px;
  margin-bottom: 42px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white-color);
}
@media only screen and (max-width:767px) {
  .branding-flow-web-main__item {
    font-size: 18px;
    height: 65px;
  }
}
.branding-flow-web-main__item::after {
  position: absolute;
  content: url(assets/img/page/plan/arrow.svg);
  width: 17px;
  height: 11px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
}
.branding-flow-web-main__item:nth-last-of-type(1)::after {
  display: none;
}

.operation-content__inner {
  padding: 70px 0 80px;
}
@media only screen and (max-width:767px) {
  .operation-content__inner {
    padding: 40px 0;
  }
}

.operation-content-main__tit {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (max-width:767px) {
  .operation-content-main__tit {
    font-size: 20px;
  }
}
.operation-content-main__item {
  display: flex;
  background: var(--gray-color3);
  margin-bottom: 30px;
  padding: 20px 5px 20px 50px;
}
@media only screen and (max-width:767px) {
  .operation-content-main__item {
    padding: 20px;
    flex-direction: column;
  }
}

.operation-content-left {
  width: 33%;
  padding-top: 18px;
  border-right: 1px solid var(--gray-color20);
}
@media only screen and (max-width:767px) {
  .operation-content-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--gray-color20);
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.operation-content-left__tit {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
@media only screen and (max-width:767px) {
  .operation-content-left__tit {
    font-size: 24px;
    margin-bottom: 0;
  }
}
.operation-content-left__yen {
  font-size: 16px;
  letter-spacing: 0.01em;
}
.operation-content-left__number {
  font-size: 28px;
  letter-spacing: 0.01em;
  font-weight: 900;
}
@media only screen and (max-width:767px) {
  .operation-content-left__number {
    font-size: 24px;
  }
}
.operation-content-left__txt {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 2.14;
  margin-top: 24px;
}
@media only screen and (max-width:767px) {
  .operation-content-left__txt {
    margin-top: 15px;
  }
}

.operation-content-right {
  width: 67%;
  padding-left: 5%;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media only screen and (max-width:767px) {
  .operation-content-right {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
  }
}
.operation-content-right__txt {
  font-size: 15px;
  line-height: 2.27;
}
@media only screen and (max-width:767px) {
  .operation-content-right__txt {
    font-size: 14px;
    line-height: 2.2;
  }
}
.operation-content-right__txt small {
  font-size: 12px;
}

.wordpress-content__inner {
  padding: 75px 0;
}
@media only screen and (max-width:767px) {
  .wordpress-content__inner {
    padding: 40px 0;
  }
}

.wordpress-content-main__tit {
  font-size: 32px;
  text-align: center;
  font-weight: 900;
  margin-bottom: 80px;
}
@media only screen and (max-width:767px) {
  .wordpress-content-main__tit {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

.works-detail-fv {
  width: 100%;
  position: relative;
  background: url(assets/img/page/works/works-detail-fv-bg.jpg);
  background-size: cover;
}
@media only screen and (max-width:767px) {
  .works-detail-fv {
    min-height: 545px;
    max-height: none;
    height: auto;
    display: flex;
    align-items: flex-end;
    padding-top: 70px;
  }
}
.works-detail-fv__inner {
  height: 100%;
  position: relative;
  padding: 96px 0 80px;
}
@media only screen and (max-width:767px) {
  .works-detail-fv__inner {
    padding: 0;
  }
}

.works-detail-fv-main {
  display: flex;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width:767px) {
  .works-detail-fv-main {
    flex-direction: column;
    justify-content: flex-start;
  }
}

.works-detail-fv-left {
  width: 50%;
  padding-right: 20px;
}
@media only screen and (max-width:767px) {
  .works-detail-fv-left {
    width: 100%;
    margin-bottom: 35px;
    padding-right: 0;
  }
}
.works-detail-fv-left__jp-works {
  color: var(--white-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: -10px;
}
@media only screen and (max-width:767px) {
  .works-detail-fv-left__jp-works {
    font-size: 12px;
  }
}
.works-detail-fv-left__en-works {
  font-family: var(--font1);
  font-size: 45px;
  font-weight: 700;
  color: var(--theme-color1);
  background: -webkit-linear-gradient(0deg, var(--theme-color1), var(--theme-color4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 30px;
}
@media only screen and (max-width:767px) {
  .works-detail-fv-left__en-works {
    font-size: 33px;
    margin-bottom: 14px;
  }
}
.works-detail-fv-left__tit {
  font-size: 33px;
  color: var(--white-color);
  font-weight: 900;
  line-height: 1.51;
  letter-spacing: 0.05em;
  margin-bottom: 27px;
}
@media only screen and (max-width:767px) {
  .works-detail-fv-left__tit {
    font-size: 21px;
    line-height: 1.76;
    margin-bottom: 22px;
  }
}
.works-detail-fv-left__txt-area {
  color: var(--white-color);
  font-size: 16px;
}
@media only screen and (max-width:767px) {
  .works-detail-fv-left__txt-area {
    font-size: 14px;
  }
}
.works-detail-fv-left__company {
  position: relative;
  margin-left: 10px;
}
.works-detail-fv-left__company::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 75%;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white-color);
}

.works-detail-fv-right {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width:767px) {
  .works-detail-fv-right {
    width: 100%;
    position: relative;
  }
}

.works-detail-content__inner {
  padding: 47px 0 70px;
}
@media only screen and (max-width:767px) {
  .works-detail-content__inner {
    padding: 25px 0;
  }
}

.works-detail-content-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media only screen and (max-width:767px) {
  .works-detail-content-main {
    flex-direction: column;
  }
}

.works-detail-content-left {
  width: 74%;
  padding-right: 4%;
}
@media only screen and (max-width:767px) {
  .works-detail-content-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 25px;
  }
}
.works-detail-content-left__tit {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 5px 0;
  margin-bottom: 16px;
  padding-left: 23px;
  position: relative;
}
@media only screen and (max-width:767px) {
  .works-detail-content-left__tit {
    font-size: 20px;
    padding: 1px 0;
    padding-left: 23px;
    margin-bottom: 20px;
  }
}
.works-detail-content-left__tit::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(0deg, var(--theme-color1), var(--theme-color4));
}
.works-detail-content-left__txt {
  line-height: 2.19;
  margin-bottom: 53px;
}
@media only screen and (max-width:767px) {
  .works-detail-content-left__txt {
    font-size: 15px;
    letter-spacing: 0.01em;
    display: flex;
    margin-bottom: 16px;
    line-height: 2.33;
  }
}
.works-detail-content-left__txt ul li {
  display: flex;
  margin-bottom: 15px;
}
@media only screen and (max-width:767px) {
  .works-detail-content-left__txt ul li {
    line-height: 1.93;
  }
}
.works-detail-content-left__txt ul li:before {
  content: "・";
}

.works-detail-content-right {
  width: 26%;
  padding-left: 3.5%;
  border-left: 1px solid var(--gray-color10);
  padding-top: 10px;
}
@media only screen and (max-width:767px) {
  .works-detail-content-right {
    width: 100%;
    border: none;
    padding-left: 0;
    margin-bottom: 45px;
  }
}
.works-detail-content-right__item {
  margin-bottom: 25px;
}
.works-detail-content-right__tit {
  font-size: 16px;
  font-weight: 900;
  color: var(--black-color);
}
.works-detail-content-right__txt {
  font-size: 14px;
  line-height: 2;
}
.works-detail-content-right__txt_link {
  text-decoration: underline;
}
.works-detail-content-right__txt_link:hover {
  text-decoration: none;
}

.works-detail-content-bottom {
  margin-top: 15px;
}
.works-detail-content-bottom__item {
  margin-bottom: 60px;
}
@media only screen and (max-width:767px) {
  .works-detail-content-bottom__item {
    margin-bottom: 25px;
  }
}
.works-detail-others__inner {
  padding: 60px 0 105px;
}
@media only screen and (max-width:767px) {
  .works-detail-others__inner {
    padding: 40px 0 55px;
  }
}

.works-detail-others-main__list {
  display: flex;
}
.works-detail-others-main__item {
  width: 33.333%;
  padding: 0 10px;
}
@media only screen and (max-width:767px) {
  .works-detail-others-main__item {
    width: 280px;
    padding: 0;
    margin: 0 10px;
  }
}
.works-detail-others-main__link {
  width: 100%;
}

.download-content__inner {
  padding: 70px 0;
}
@media only screen and (max-width:767px) {
  .download-content__inner {
    padding: 40px 0;
  }
}

.download-content-main__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.download-content-main__list::after {
  content: "";
  display: block;
  width: 30%;
}
.download-content-main__item {
  width: 31.7%;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}
@media only screen and (max-width:767px) {
  .download-content-main__item {
    width: 100%;
  }
}
.download-content-main__img {
  aspect-ratio: 380/260;
  object-fit: cover;
  width: 100%;
}
.download-content-main__txt-area {
  padding: 30px 20px;
}
.download-content-main__tit {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.56;
  margin-bottom: 15px;
}
.download-content-main__txt {
  font-size: 13px;
  letter-spacing: 0;
  color: var(--gray-color21);
  line-height: 1.85;
  margin-bottom: 25px;
}
.download-content-main__btn {
  display: flex;
  justify-content: center;
}
.download-content-main__btn-link {
  width: 100%;
  max-width: 280px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--white-color);
  border-radius: 80px;
  background: linear-gradient(90deg, var(--theme-color2) 0%, var(--theme-color1) 100%);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}
.download-content-main__btn-link:hover {
  -webkit-filter: brightness(1.1);
  -moz-filter: brightness(1.1);
  -ms-filter: brightness(1.1);
  filter: brightness(1.1);
}

.download-detail-content__inner {
  padding: 85px 0;
}
@media only screen and (max-width:767px) {
  .download-detail-content__inner {
    padding: 50px 0;
  }
}

.download-detail-content-main {
  display: flex;
}
@media only screen and (max-width:767px) {
  .download-detail-content-main {
    flex-direction: column;
  }
}

.download-detail-content-left {
  width: 50%;
}
@media only screen and (max-width:767px) {
  .download-detail-content-left {
    width: 100%;
    margin-bottom: 40px;
  }
}
.download-detail-content-left__inner {
  max-width: 540px;
  width: 90%;
}
@media only screen and (max-width:767px) {
  .download-detail-content-left__inner {
    max-width: none;
    width: 100%;
  }
}
.download-detail-content-left__tit {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.44;
  letter-spacing: 0.05em;
  margin-bottom: 55px;
}
@media only screen and (max-width:767px) {
  .download-detail-content-left__tit {
    font-size: 24px;
    margin-bottom: 35px;
  }
}
.download-detail-content-left__img {
  border-radius: 5px;
  margin-bottom: 50px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width:767px) {
  .download-detail-content-left__img {
    margin-bottom: 30px;
  }
}
.download-detail-content-left__txt-area {
  background: var(--gray-color8);
  padding: 40px 35px;
}
@media only screen and (max-width:767px) {
  .download-detail-content-left__txt-area {
    padding: 25px;
  }
}
.download-detail-content-left__txt-area-tit {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 27px;
}
@media only screen and (max-width:767px) {
  .download-detail-content-left__txt-area-tit {
    font-size: 18px;
  }
}
.download-detail-content-left__txt {
  font-size: 15px;
  line-height: 1.8;
}

.download-detail-content-right {
  width: 50%;
}
@media only screen and (max-width:767px) {
  .download-detail-content-right {
    width: 100%;
  }
}
.download-detail-content-right__txt {
  display: block;
  max-width: 528px;
  margin: 0 auto;
  letter-spacing: 0.01em;
  line-height: 2.19;
  margin-bottom: 30px;
}
.download-detail-content-right__form {
  display: block;
  max-width: 528px;
  margin: 0 auto;
}

.download-thanks-content__inner {
  padding: 75px 0 90px;
}
@media only screen and (max-width:767px) {
  .download-thanks-content__inner {
    padding: 40px 0;
  }
}

.download-thanks-content-main__tit {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--black-color);
  margin-bottom: 40px;
}
@media only screen and (max-width:767px) {
  .download-thanks-content-main__tit {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.download-thanks-content-main__txt {
  text-align: center;
  line-height: 2.13;
  margin-bottom: 35px;
}
@media only screen and (max-width:767px) {
  .download-thanks-content-main__txt {
    font-size: 15px;
  }
}
.download-thanks-content-main__btn {
  display: flex;
  justify-content: center;
}
.download-thanks-content-main__btn-link span {
  background: var(--white-color);
  color: var(--black-color);
}
.download-thanks-content-main__btn-link svg {
  right: 10px;
}

.simple-fv {
  position: relative;
}
.simple-fv-bg {
  background: url(assets/img/front-page/front-fv-bg.jpg);
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width:1023px) {
  .simple-fv-bg {
    height: 80%;
  }
}
@media only screen and (max-width:767px) {
  .simple-fv-bg {
    height: 84%;
  }
}

.simple-fv-main {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 70px 0;
}
@media only screen and (max-width:1023px) {
  .simple-fv-main {
    flex-direction: column;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width:767px) {
  .simple-fv-main {
    padding: 95px 0 15px;
  }
}

.simple-fv-left {
  width: 50%;
  color: var(--white-color);
  position: relative;
}
@media only screen and (max-width:1023px) {
  .simple-fv-left {
    width: 100%;
    margin-bottom: 78px;
  }
}
.simple-fv-left__inner {
  max-width: 480px;
  margin: 0 auto;
}

.simple-fv-left-tit-box {
  margin-bottom: 30px;
}
@media only screen and (max-width:1023px) {
  .simple-fv-left-tit-box {
    text-align: center;
    margin-bottom: 15px;
  }
}
.simple-fv-left-tit-box__jp-tit {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: -10px;
}
@media only screen and (max-width:767px) {
  .simple-fv-left-tit-box__jp-tit {
    font-size: 12px;
    margin-bottom: -5px;
  }
}
.simple-fv-left-tit-box__en-tit {
  color: var(--theme-color1);
  background: -webkit-linear-gradient(180deg, var(--theme-color5), var(--theme-color1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: var(--font1);
  font-size: 45px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .simple-fv-left-tit-box__en-tit {
    font-size: 33px;
  }
}

@media only screen and (max-width:1023px) {
  .simple-fv-left-catchcopy {
    text-align: center;
  }
}
.simple-fv-left-catchcopy__top {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
}
@media only screen and (max-width:767px) {
  .simple-fv-left-catchcopy__top {
    font-size: 14px;
    margin-bottom: 19px;
  }
}
.simple-fv-left-catchcopy__tit {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
@media only screen and (max-width:767px) {
  .simple-fv-left-catchcopy__tit {
    font-size: 35px;
    max-width: 260px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 14px;
  }
}
.simple-fv-left-catchcopy__price {
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  margin-bottom: 45px;
}
@media only screen and (max-width:1023px) {
  .simple-fv-left-catchcopy__price {
    justify-content: center;
  }
}
@media only screen and (max-width:767px) {
  .simple-fv-left-catchcopy__price {
    margin-bottom: 35px;
  }
}
.simple-fv-left-catchcopy__price_left {
  font-size: 57px;
}
@media only screen and (max-width:767px) {
  .simple-fv-left-catchcopy__price_left {
    font-size: 50px;
  }
}
.simple-fv-left-catchcopy__price_center {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 6px;
}
.simple-fv-left-catchcopy__price_package {
  font-size: 10px;
  transform: scale(0.9);
  transform-origin: top left;
  margin-bottom: 4px;
  margin-left: 5px;
}
@media only screen and (max-width:767px) {
  .simple-fv-left-catchcopy__price_package {
    transform: scale(0.7);
    margin-bottom: 1px;
  }
}
.simple-fv-left-catchcopy__price_yen {
  font-size: 28px;
}
@media only screen and (max-width:767px) {
  .simple-fv-left-catchcopy__price_yen {
    font-size: 24px;
  }
}
.simple-fv-left-catchcopy__price_right {
  font-size: 26px;
  margin-bottom: 7px;
  margin-left: 10px;
}
@media only screen and (max-width:767px) {
  .simple-fv-left-catchcopy__price_right {
    font-size: 23px;
    margin-bottom: 4px;
    margin-left: 1px;
  }
}

.simple-fv-left-btn {
  display: block;
}
.simple-fv-left-btn__link {
  background: linear-gradient(to left, var(--theme-color3), var(--theme-color1));
}
@media only screen and (max-width:1023px) {
  .simple-fv-left-btn__link {
    margin: 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .simple-fv-left-btn__link {
    font-size: 18px;
    height: 56px;
  }
}

.simple-fv-right {
  position: absolute;
  right: -6%;
  bottom: 7%;
  width: 55vw;
  max-width: 880px;
}
@media only screen and (max-width:1023px) {
  .simple-fv-right {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
  }
}

.simple-intro__inner {
  padding: 60px 0 90px;
}
@media only screen and (max-width:767px) {
  .simple-intro__inner {
    padding: 20px 0 55px;
  }
}
.simple-intro__inner_second {
  padding: 84px 0 40px;
}
@media only screen and (max-width:767px) {
  .simple-intro__inner_second {
    padding: 40px 0 20px;
  }
}

.simple-intro-main__txt {
  color: var(--theme-color4);
  background: -webkit-linear-gradient(180deg, var(--theme-color3), var(--theme-color4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 43px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.79;
  width: 100%;
}
@media only screen and (max-width:767px) {
  .simple-intro-main__txt {
    font-size: 21px;
    text-align: center;
    line-height: 1.62;
    letter-spacing: 0;
  }
}
@media only screen and (max-width:767px) {
  .simple-intro-main__txt_second {
    font-size: 19px;
    line-height: 1.53;
  }
}

.simple-service {
  background: var(--black-color2);
}
.simple-service__inner {
  padding: 85px 0;
}
@media only screen and (max-width:767px) {
  .simple-service__inner {
    padding: 50px 0 20px;
  }
}

.simple-service-main__list {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:767px) {
  .simple-service-main__list {
    flex-wrap: wrap;
  }
}
.simple-service-main__item {
  background: linear-gradient(315deg, var(--theme-color6) 0%, var(--theme-color7) 100%);
  border-radius: 10px;
  width: 31.7%;
  padding: 50px 5px 37px;
}
@media only screen and (max-width:767px) {
  .simple-service-main__item {
    width: 100%;
    padding: 50px 5px 20px;
    margin-bottom: 30px;
  }
}
.simple-service-main__img-wrapper {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width:767px) {
  .simple-service-main__svg_first {
    width: 232px;
  }
}
@media only screen and (max-width:767px) {
  .simple-service-main__svg_second {
    width: 124px;
  }
}
@media only screen and (max-width:767px) {
  .simple-service-main__svg_third {
    width: 113px;
  }
}
.simple-service-main__txt-area {
  color: var(--white-color);
  padding: 28px 12px 10px;
}
.simple-service-main__tit {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.33;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .simple-service-main__tit {
    font-size: 28px;
    line-height: 1.43;
  }
}
.simple-service-main__txt {
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 2.13;
}
@media only screen and (max-width:767px) {
  .simple-service-main__txt {
    line-height: 1.93;
  }
}

.simple-demo__inner {
  padding: 55px 0;
}
@media only screen and (max-width:767px) {
  .simple-demo__inner {
    padding: 35px 0 23px;
  }
}

.simple-demo-main__list {
  display: flex;
  margin-bottom: 60px;
}
@media only screen and (max-width:767px) {
  .simple-demo-main__list {
    margin-bottom: 70px;
  }
}
.simple-demo-main__item {
  width: 370px;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media only screen and (max-width:767px) {
  .simple-demo-main__item {
    width: 256px;
    margin: 0 10px;
  }
}
.simple-demo-main__img {
  border-radius: 10px;
}
.simple-demo-main__btn {
  width: 520px;
  height: 88px;
  margin: 0 auto;
  font-size: 22px;
  margin-bottom: 23px;
}
@media only screen and (max-width:767px) {
  .simple-demo-main__btn {
    width: 100%;
    font-size: 18px;
    margin-bottom: 18px;
  }
}
.simple-demo-main__btn span {
  background: var(--white-color);
  color: var(--black-color);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}
@media only screen and (max-width:767px) {
  .simple-demo-main__btn span {
    padding: 0 30px;
    justify-content: flex-start;
  }
}
.simple-demo-main__btn span {
  background: var(--white-color);
  color: var(--black-color);
}
.simple-demo-main__btn span:hover {
  color: var(--white-color);
}
.simple-demo-main__btn span:hover svg path {
  fill: var(--white-color);
}
.simple-demo-main__btn svg {
  position: static;
  margin-top: 30px;
  margin-left: 10px;
}
@media only screen and (max-width:767px) {
  .simple-demo-main__btn svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    right: 17px;
  }
}

.simple-plan__inner {
  padding: 20px 0 70px;
}
@media only screen and (max-width:767px) {
  .simple-plan__inner {
    padding: 20px 0;
  }
}

.simple-plan-main__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width:767px) {
  .simple-plan-main__list {
    flex-wrap: wrap;
  }
}
.simple-plan-main__item {
  width: 48.3%;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width:767px) {
  .simple-plan-main__item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.simple-plan-main__tit {
  text-align: center;
  color: var(--white-color);
  font-size: 27px;
  font-weight: 900;
  background: linear-gradient(to right, var(--theme-color3), var(--theme-color1));
  display: flex;
  justify-content: center;
  align-items: center;
  height: 79px;
}
@media only screen and (max-width:767px) {
  .simple-plan-main__tit {
    font-size: 21px;
    height: 62px;
  }
}
.simple-plan-main__price-area {
  width: 200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 30px 0 20px;
}
@media only screen and (max-width:767px) {
  .simple-plan-main__price-area {
    width: 190px;
    justify-content: center;
    padding: 40px 0 20px;
  }
}
.simple-plan-main__number {
  font-size: 100px;
  letter-spacing: 0;
  font-weight: 900;
  line-height: 1;
  display: block;
}
@media only screen and (max-width:767px) {
  .simple-plan-main__number {
    font-size: 76px;
  }
}
.simple-plan-main__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: -5px;
}
@media only screen and (max-width:767px) {
  .simple-plan-main__right {
    margin-bottom: 0;
  }
}
.simple-plan-main__tax {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: -10px;
}
@media only screen and (max-width:767px) {
  .simple-plan-main__tax {
    font-size: 10px;
    margin-bottom: -7px;
  }
}
.simple-plan-main__yen {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .simple-plan-main__yen {
    font-size: 27px;
  }
}
.simple-plan-main__bottom {
  display: block;
  width: 100%;
  margin-top: 10px;
}
@media only screen and (max-width:767px) {
  .simple-plan-main__bottom {
    text-align: center;
    margin-top: 4px;
  }
}
.simple-plan-main__month {
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}
@media only screen and (max-width:767px) {
  .simple-plan-main__month {
    font-size: 20px;
    margin-bottom: 22px;
  }
}
.simple-plan-main__asterisk {
  font-size: 12px;
  letter-spacing: 0.05em;
  display: block;
}
.simple-plan-main__txt-area {
  padding: 20px 30px 30px;
}
@media only screen and (max-width:767px) {
  .simple-plan-main__txt-area {
    padding: 23px 20px 20px;
  }
}
.simple-plan-main__txt-list {
  background: var(--gray-color8);
  padding: 35px;
}
@media only screen and (max-width:767px) {
  .simple-plan-main__txt-list {
    padding: 30px 20px;
  }
}
.simple-plan-main__txt-item {
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
@media only screen and (max-width:767px) {
  .simple-plan-main__txt-item {
    margin-bottom: 10px;
    padding-left: 1em;
    text-indent: -1em;
  }
}
.simple-plan-main__txt-item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.simple-plan-main__txt-item_asterisk {
  font-size: 12px;
}

.flow-content-tit-box {
  padding: 75px 0 56px;
}
@media only screen and (max-width:767px) {
  .flow-content-tit-box {
    padding: 45px 0;
  }
}
.flow-content-tit-box__tit {
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.01em;
  font-weight: 900;
  line-height: 1.71;
}
@media only screen and (max-width:767px) {
  .flow-content-tit-box__tit {
    font-size: 24px;
  }
}

.flow-content-main__item {
  background: var(--gray-color8);
  display: flex;
  padding: 20px;
  margin-bottom: 20px;
}

.flow-content-left {
  background: var(--white-color);
  min-width: 96px;
  display: flex;
  justify-content: center;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px));
}
@media only screen and (max-width:767px) {
  .flow-content-left {
    min-width: 50px;
  }
}
.flow-content-left__tit {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.4em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: block;
  padding-top: 47px;
}
@media only screen and (max-width:767px) {
  .flow-content-left__tit {
    font-size: 15px;
    padding-top: 20px;
  }
}

.flow-content-right {
  width: calc(100% - 126px);
  margin-left: 30px;
  padding-top: 40px;
}
@media only screen and (max-width:767px) {
  .flow-content-right {
    width: auto;
    padding-top: 0;
    margin-left: 20px;
  }
}
.flow-content-right__item {
  display: flex;
  margin-bottom: 50px;
}
@media only screen and (max-width:767px) {
  .flow-content-right__item {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.flow-content-right__number {
  font-size: 42px;
  font-family: var(--font1);
  letter-spacing: 0.01em;
  font-weight: 900;
  color: var(--gray-color22);
  min-width: 63px;
}
@media only screen and (max-width:767px) {
  .flow-content-right__number {
    font-size: 35px;
  }
}
.flow-content-right__txt-area {
  padding-left: 10px;
  padding-top: 10px;
}
@media only screen and (max-width:767px) {
  .flow-content-right__txt-area {
    padding: 0;
  }
}
.flow-content-right__tit {
  font-size: 28px;
  letter-spacing: 0;
  font-weight: 900;
  color: var(--black-color);
  margin-bottom: 18px;
}
@media only screen and (max-width:767px) {
  .flow-content-right__tit {
    font-size: 22px;
  }
}
.flow-content-right__txt {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2.13;
}
.flow-content-right__btn {
  margin-top: 23px;
}
@media only screen and (max-width:767px) {
  .flow-content-right__btn {
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  .flow-content-right__link {
    width: auto;
  }
}
.flow-content-right__link span {
  background: var(--white-color);
  color: var(--black-color);
}
.flow-content-right__link span svg {
  right: 10px;
}
@media only screen and (max-width:767px) {
  .flow-content-right__link span svg {
    width: 15px;
    right: 7px;
  }
}
.flow-content-right__link span {
  background: var(--white-color);
  color: var(--black-color);
}
.flow-content-right__link span:hover {
  color: var(--white-color);
}
.flow-content-right__link span:hover svg path {
  fill: var(--white-color);
}

.company-logo {
  position: relative;
}
.company-logo__inner {
  padding: 0 0 135px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width:767px) {
  .company-logo__inner {
    padding: 0 0 60px;
  }
}

.company-logo-bg {
  background: var(--theme-color1);
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.company-logo-main {
  margin-top: 140px;
}
@media only screen and (max-width:767px) {
  .company-logo-main {
    margin-top: 60px;
  }
}
.company-logo-main__logo {
  max-width: 335px;
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width:767px) {
  .company-logo-main__logo {
    max-width: 155px;
  }
}

.company-tit-box {
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width:767px) {
  .company-tit-box {
    margin-bottom: 30px;
  }
}
.company-tit-box__en-tit {
  color: var(--theme-color1);
  background: -webkit-linear-gradient(180deg, var(--theme-color5), var(--theme-color1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: var(--font1);
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: -17px;
}
@media only screen and (max-width:767px) {
  .company-tit-box__en-tit {
    font-size: 40px;
    margin-bottom: -5px;
  }
}
.company-tit-box__jp-tit {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media only screen and (max-width:767px) {
  .company-tit-box__jp-tit {
    font-size: 12px;
  }
}

.company-main__tit {
  color: var(--black-color);
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.79;
  letter-spacing: 0.21em;
  margin-bottom: 50px;
}
@media only screen and (max-width:767px) {
  .company-main__tit {
    font-size: 17px;
    margin-bottom: 33px;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width:767px) {
  .company-main__tit_large {
    font-size: 18px;
  }
}
.company-main__txt {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 2.25;
}
@media only screen and (max-width:767px) {
  .company-main__txt {
    font-size: 15px;
    text-align: left;
    letter-spacing: 0.1em;
    line-height: 2.4;
  }
}

.company-mission__inner {
  max-width: 1600px;
  margin: 0 auto;
}

.company-mission-main {
  display: flex;
}
@media only screen and (max-width:767px) {
  .company-mission-main {
    flex-direction: column;
  }
}

.company-mission-left {
  width: 45%;
  margin-right: 5%;
}
@media only screen and (max-width:767px) {
  .company-mission-left {
    width: 100%;
    margin-right: 0;
  }
}

.company-mission-right {
  width: 50%;
  padding: 0 20px;
}
@media only screen and (max-width:767px) {
  .company-mission-right {
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
}
.company-mission-right__inner {
  max-width: 580px;
  margin: 0 auto;
  padding: 100px 0;
}
@media only screen and (max-width:767px) {
  .company-mission-right__inner {
    padding: 40px 0 65px;
  }
}
.company-mission-right__tit {
  text-align: left;
}
@media only screen and (max-width:767px) {
  .company-mission-right__tit {
    text-align: center;
  }
}
.company-mission-right__txt {
  text-align: left;
}

.company-mission-tit-box {
  text-align: left;
}
@media only screen and (max-width:767px) {
  .company-mission-tit-box {
    text-align: center;
  }
}
.company-mission-tit-box__jp-tit {
  text-align: left;
}
@media only screen and (max-width:767px) {
  .company-mission-tit-box__jp-tit {
    text-align: center;
  }
}

.company-vision {
  background: linear-gradient(to left, var(--theme-color8), var(--theme-color9));
}
.company-vision__inner {
  padding: 105px 0 120px;
}
@media only screen and (max-width:767px) {
  .company-vision__inner {
    padding: 40px 0;
  }
}

.company-vision-main__tit {
  margin-bottom: 20px;
}

.common-parallax-main {
  position: relative;
  height: 400px;
}
@media only screen and (max-width:767px) {
  .common-parallax-main {
    height: 139px;
  }
}
.common-parallax-main__img-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 400px;
  clip-path: inset(0);
  z-index: -1;
}
@media only screen and (max-width:767px) {
  .common-parallax-main__img-wrapper {
    min-height: 139px;
    height: 139px;
  }
}
.common-parallax-main__img {
  position: fixed;
  width: 120%;
  height: 100%;
  min-height: 120svh;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}

.company-value {
  background: var(--black-color2);
}
.company-value__inner {
  padding: 85px 0 60px;
}
@media only screen and (max-width:767px) {
  .company-value__inner {
    padding: 40px 0;
  }
}

.company-value-tit-box {
  margin-bottom: 50px;
}
.company-value-tit-box__jp-tit {
  color: var(--white-color);
}

.company-value-main__list {
  text-align: center;
}
.company-value-main__item {
  color: var(--white-color);
  font-weight: 900;
  margin-bottom: 53px;
}
@media only screen and (max-width:767px) {
  .company-value-main__item {
    margin-bottom: 24px;
  }
}
.company-value-main__tit {
  font-size: 44px;
  font-family: var(--font1);
  letter-spacing: 0.05em;
  margin-bottom: -3px;
}
@media only screen and (max-width:767px) {
  .company-value-main__tit {
    font-size: 21px;
  }
}
.company-value-main__txt {
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width:767px) {
  .company-value-main__txt {
    font-size: 13px;
  }
}
.company-value-main__txt_blue {
  color: var(--theme-color1);
}

.company-outline {
  background: linear-gradient(to left, var(--theme-color8), var(--theme-color9));
}
.company-outline__inner {
  padding: 80px 0 110px;
}
@media only screen and (max-width:767px) {
  .company-outline__inner {
    padding: 40px 0 65px;
  }
}

.company-outline-main {
  background: var(--white-color);
  padding: 20px 30px;
}
@media only screen and (max-width:767px) {
  .company-outline-main {
    padding: 10px;
  }
}
.company-outline-main table tr:nth-of-type(1) {
  border-top: none;
}

.company-outline-tit-box {
  margin-bottom: 60px;
}
@media only screen and (max-width:767px) {
  .company-outline-tit-box {
    margin-bottom: 35px;
  }
}

@media only screen and (max-width:767px) {
  .company-outline-main table tr {
    display: flex;
    flex-direction: column;
    padding: 4% 0;
  }
}
@media only screen and (max-width:767px) {
  .company-outline-main table tr td:nth-of-type(1), .company-outline-main table tr td:nth-of-type(2) {
    width: 100%;
    padding: 0 5%;
  }
}
@media only screen and (max-width:767px) {
  .company-outline-main table tr td:nth-of-type(1) {
    margin-bottom: -3px;
    color: #999;
  }
}

.company-greeting__inner {
  padding: 100px 0 115px;
  max-width: 1600px;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  .company-greeting__inner {
    padding: 40px 0 0;
  }
}

.company-greeting-tit-box {
  text-align: left;
}
@media only screen and (max-width:767px) {
  .company-greeting-tit-box {
    text-align: center;
  }
}

.company-greeting-main {
  display: flex;
}
@media only screen and (max-width:767px) {
  .company-greeting-main {
    flex-direction: column;
  }
}

.company-greeting-left {
  width: 50%;
  padding: 0 20px;
  margin: 0 2.5%;
}
@media only screen and (max-width:767px) {
  .company-greeting-left {
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
}
.company-greeting-left__inner {
  max-width: 660px;
  margin: 0 auto;
}
.company-greeting-left__tit {
  text-align: left;
  font-family: var(--font3);
  font-size: 31px;
  letter-spacing: 0.01em;
  font-weight: 900;
  line-height: 1.45;
}
@media only screen and (max-width:767px) {
  .company-greeting-left__tit {
    font-size: 17px;
    text-align: center;
    line-height: 1.88;
    margin-bottom: 22px;
  }
}
.company-greeting-left__txt {
  text-align: left;
}
.company-greeting-left__txt {
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 2.25;
  margin-bottom: 35px;
}
@media only screen and (max-width:767px) {
  .company-greeting-left__txt {
    margin-bottom: 15px;
  }
}
.company-greeting-left__name {
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 16px;
  line-height: 1.53;
  text-align: right;
}

.company-greeting-right {
  width: 45%;
  padding-top: 20px;
}
@media only screen and (max-width:767px) {
  .company-greeting-right {
    width: 100%;
    margin-left: 0;
    padding-top: 65px;
  }
}

.company-greeting-tit-box {
  margin-bottom: 53px;
}
@media only screen and (max-width:767px) {
  .company-greeting-tit-box {
    margin-bottom: 28px;
  }
}

.recruit-content__inner {
  padding: 63px 0 120px;
}

.recruit-content-tit-box {
  margin-bottom: 55px;
}
.recruit-content-tit-box__tit {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--black-color);
  margin-bottom: 26px;
}
.recruit-content-tit-box__txt {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2.31;
}

.recruit-content-main .wp-block-table .recruit-content-main__table tr td {
  color: var(--black-color);
}
.recruit-content-main .wp-block-table .recruit-content-main__table tr td:nth-of-type(1) {
  padding: 3%;
  padding-left: 0;
  width: 26%;
}
.recruit-content-main .wp-block-table .recruit-content-main__table tr td:nth-of-type(2) {
  padding: 3%;
  width: 74%;
  line-height: 2.31;
}

.rights-contents__inner,
.agancy-contents__inner {
  padding: 63px 0;
}
@media only screen and (max-width:767px) {
  .rights-contents__inner,
.agancy-contents__inner {
    padding-top: 20px;
  }
}

.rights-contents-main,
.agancy-contents-main {
  color: var(--black-color);
}
.rights-contents-main__tit,
.agancy-contents-main__tit {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}
.rights-contents-main__txt,
.agancy-contents-main__txt {
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 2.31;
  margin-bottom: 70px;
}

.agancy-contents__inner {
  padding-bottom: 105px;
}

.agancy-contents-main__btn {
  display: flex;
  justify-content: center;
}
.agancy-contents-main__link span {
  background: var(--white-color);
  color: var(--black-color);
}
.agancy-contents-main__link span svg {
  right: 10px;
}
@media only screen and (max-width:767px) {
  .agancy-contents-main__link span svg {
    width: 15px;
    right: 7px;
  }
}

.contact-content__inner {
  padding: 75px 0 120px;
}
@media only screen and (max-width:767px) {
  .contact-content__inner {
    padding: 40px 0 60px;
  }
}

.contact-content-tit-box {
  text-align: center;
  margin-bottom: 50px;
}
.contact-content-tit-box__tit {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--black-color);
  margin-bottom: 40px;
}
@media only screen and (max-width:767px) {
  .contact-content-tit-box__tit {
    font-size: 21px;
  }
}
.contact-content-tit-box__txt {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.13;
}

.contact-content-main {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 80px 60px;
}
@media only screen and (max-width:767px) {
  .contact-content-main {
    padding: 40px 25px;
  }
}

.contact-content-btn__btn {
  display: flex;
  justify-content: center;
}
.contact-content-btn__link span {
  background: var(--white-color);
  color: var(--black-color);
}

.index-fv_index {
  margin-bottom: 30px;
}
.index-fv__tit {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.53;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 30px;
}
.index-fv__tit_small {
  font-size: 30px;
  letter-spacing: 0.01em;
  padding-top: 30px;
  margin-bottom: 0;
}
.index-fv__tit::after {
  content: "";
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(to right, var(--theme-color1), var(--theme-color2));
  border-radius: 80px;
}

.ec-content__inner {
  padding: 80px 0 95px;
}
@media only screen and (max-width:767px) {
  .ec-content__inner {
    padding: 40px 0;
  }
}

.ec-content-main__item {
  width: 370px;
  margin: 0 15px;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width:767px) {
  .ec-content-main__item {
    width: 300px;
  }
}
.ec-content-main__img {
  aspect-ratio: 370/462;
  object-fit: cover;
  border-radius: 10px;
}

.graphic-content {
  background: var(--black-color2);
}
.graphic-content__inner {
  padding: 100px 0 240px;
}
@media only screen and (max-width:767px) {
  .graphic-content__inner {
    padding: 50px 0 100px;
  }
}

.graphic-content-main {
  max-width: 1560px;
  margin: 0 auto;
}
.graphic-content-main__list {
  margin: 0 auto;
}
.graphic-content-main__item {
  width: 33.333%;
  padding: 0 15px;
  margin-bottom: 30px;
  animation-duration: 0.5s;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-animation: scaleUp 0.65s ease-in-out forwards;
  animation: scaleUp 0.65s ease-in-out forwards;
}
@media only screen and (max-width:767px) {
  .graphic-content-main__item {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 10px;
  }
}

.youtube-content__inner {
  padding: 90px 0;
}

.youtube-content-main .yrc-item-meta.pb-inline {
  display: none;
}
.youtube-content-main .yrc-core {
  display: flex !important;
  justify-content: space-between;
  flex-wrap: wrap;
}
.youtube-content-main .yrc-video {
  width: 30.8% !important;
  display: block !important;
  margin-bottom: 45px !important;
  margin-right: 0 !important;
}
@media only screen and (max-width:767px) {
  .youtube-content-main .yrc-video {
    width: 100% !important;
  }
}

.works-content__inner {
  padding: 60px 0 95px;
}
@media only screen and (max-width:767px) {
  .works-content__inner {
    padding: 50px 0;
  }
}

.works-content-main__txt {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 50px;
}
@media only screen and (max-width:767px) {
  .works-content-main__txt {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.works-content-main__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.works-content-main__item {
  width: 48.4%;
  margin-bottom: 45px;
}
@media only screen and (max-width:767px) {
  .works-content-main__item {
    width: 100%;
    margin-bottom: 20px;
  }
}

/*★★★★★★★★★★★★★★★

保守LPページ

★★★★★★★★★★★★★★★*/
.page-id-7497 .header {
  padding-left: 16px;
}

.page-maintenance {
  /* ページ共通
   * -------------------------------------------- */
  /* FV
   * -------------------------------------------- */
  /* 特徴
   * -------------------------------------------- */
  /* CTA
   * -------------------------------------------- */
  /* 特徴
   * -------------------------------------------- */
  /* 料金プラン
   * -------------------------------------------- */
  /* サービス詳細
   * -------------------------------------------- */
  /* ご利用の流れ
   * -------------------------------------------- */
  /* よくある質問
   * -------------------------------------------- */
}
.page-maintenance .en {
  font-family: var(--font4);
  font-weight: 900;
}
.page-maintenance .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 480px;
  min-height: 80px;
  padding: 20px 24px;
  border-radius: 999px;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.03em;
  background: linear-gradient(to right, var(--theme-color1), var(--theme-color3));
  transition: filter 0.2s ease-out;
}
@media only screen and (max-width:767px) {
  .page-maintenance .button {
    width: 100%;
    min-width: initial;
    max-width: 344px;
    min-height: 64px;
    padding: 16px 24px;
    font-size: 18px;
  }
}
.page-maintenance .button .wrap {
  display: inline-block;
}
.page-maintenance .button:hover {
  -webkit-filter: brightness(1.2);
  -moz-filter: brightness(1.2);
  -ms-filter: brightness(1.2);
  filter: brightness(1.2);
}
.page-maintenance .section {
  padding: 80px 0;
}
@media only screen and (max-width:767px) {
  .page-maintenance .section {
    padding: 40px 0;
  }
}
.page-maintenance .section-title {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  color: #263e7e;
}
@media only screen and (max-width:767px) {
  .page-maintenance .section-title {
    font-size: 19px;
  }
}
.page-maintenance .section-title .small {
  font-size: 24px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .section-title .small {
    font-size: 12px;
  }
}
.page-maintenance .fv {
  background: url(assets/img/page/maintenance/bg-fv-pc.jpg) center center/cover;
  display: grid;
  place-content: center;
  min-height: 680px;
  padding-top: 70px;
  color: #fff;
}
@media only screen and (max-width:767px) {
  .page-maintenance .fv {
    background: url(assets/img/page/maintenance/bg-fv-sp.jpg) center center/cover;
    min-height: 468px;
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
.page-maintenance .fv__inner {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding: 0 10px;
}
.page-maintenance .fv__content {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.page-maintenance .fv__lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .page-maintenance .fv__lead {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0;
  }
}
.page-maintenance .fv__lead::before {
  content: "\\";
  margin-right: 8px;
}
.page-maintenance .fv__lead::after {
  content: "/";
  margin-left: 8px;
}
.page-maintenance .fv__lead br {
  display: none;
}
@media only screen and (max-width: 374px) {
  .page-maintenance .fv__lead br {
    display: block;
  }
}
.page-maintenance .fv__title {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .page-maintenance .fv__title {
    font-size: 27px;
  }
}
@media only screen and (max-width: 374px) {
  .page-maintenance .fv__title {
    font-size: 7.2vw;
  }
}
.page-maintenance .fv__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .page-maintenance .fv__text {
    font-size: 10px;
  }
}
@media only screen and (max-width: 374px) {
  .page-maintenance .fv__text br {
    display: none;
  }
}
.page-maintenance .fv__button {
  margin-top: 57px;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .page-maintenance .fv__button {
    margin-top: 46px;
  }
}
.page-maintenance .problem {
  padding: 80px 0;
  position: relative;
}
@media only screen and (max-width:767px) {
  .page-maintenance .problem {
    padding: 40px 0;
  }
}
.page-maintenance .problem::after {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  max-width: 188px;
  aspect-ratio: 188/50;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
}
@media only screen and (max-width:767px) {
  .page-maintenance .problem::after {
    max-width: 122px;
  }
}
.page-maintenance .problem__inner {
  max-width: 1232px;
  padding: 0 16px;
  margin-inline: auto;
}
.page-maintenance .problem__content {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .problem__content {
    margin-top: 24px;
    grid-template-columns: 100%;
    gap: 24px;
    max-width: 600px;
    margin-inline: auto;
  }
}
.page-maintenance .problem-item__head {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  padding: 7px 12px;
  background: #263e7e;
}
@media only screen and (max-width:767px) {
  .page-maintenance .problem-item__head {
    gap: 16px;
    padding: 10px 14px;
    justify-content: initial;
  }
}
.page-maintenance .problem-item__head-icon {
  width: 100%;
  max-width: 66px;
  aspect-ratio: 1/1;
}
@media only screen and (max-width:767px) {
  .page-maintenance .problem-item__head-icon {
    max-width: 44px;
  }
}
.page-maintenance .problem-item__head-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-maintenance .problem-item__title {
  font-size: 28px;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 900;
}
@media only screen and (max-width:767px) {
  .page-maintenance .problem-item__title {
    font-size: 20px;
  }
}
.page-maintenance .problem-item__title .small {
  font-size: 16px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .problem-item__title .small {
    font-size: 12px;
  }
}
.page-maintenance .problem-item__body {
  background: #f4f4f4;
  padding: 24px 24px 36px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .problem-item__body {
    padding: 16px;
  }
}
.page-maintenance .problem-item__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .problem-item__list {
    gap: 16px;
    max-width: 520px;
    margin-inline: auto;
  }
}
.page-maintenance .problem-item__node {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .page-maintenance .problem-item__node {
    align-items: initial;
    font-size: 14px;
  }
}
.page-maintenance .problem-item__node::before {
  content: "";
  width: 32px;
  height: 32px;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="%23263E7E"/><rect x="11.4083" y="14.4083" width="5.6234" height="3.48117" transform="rotate(45 11.4083 14.4083)" fill="white"/><rect x="24.0001" y="13.4615" width="13.0544" height="3.48117" transform="rotate(135 24.0001 13.4615)" fill="white"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width:767px) {
  .page-maintenance .problem-item__node::before {
    width: 24px;
    height: 24px;
  }
}
.page-maintenance .cta {
  background: url(assets/img/page/maintenance/bg-cta-pc.jpg) center center/cover;
  padding: 80px 0;
}
@media only screen and (max-width:767px) {
  .page-maintenance .cta {
    background: url(assets/img/page/maintenance/bg-cta-sp.jpg) center center/cover;
    padding: 56px 0;
  }
}
.page-maintenance .cta__inner {
  width: 100%;
  max-width: 960px;
  padding: 0 10px;
  margin-inline: auto;
}
.page-maintenance .cta__lead {
  max-width: 753px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  position: relative;
}
@media only screen and (max-width:767px) {
  .page-maintenance .cta__lead {
    max-width: 355px;
  }
}
.page-maintenance .cta__lead .small {
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .page-maintenance .cta__lead .small {
    font-size: 14px;
  }
}
@media only screen and (max-width: 374px) {
  .page-maintenance .cta__lead .small {
    font-size: 3.7333333333vw;
  }
}
.page-maintenance .cta__lead .medium {
  font-size: 24px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .page-maintenance .cta__lead .medium {
    font-size: 18px;
  }
}
@media only screen and (max-width: 374px) {
  .page-maintenance .cta__lead .medium {
    font-size: 4.8vw;
  }
}
.page-maintenance .cta__lead .large {
  font-size: 48px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .page-maintenance .cta__lead .large {
    font-size: 27px;
  }
}
@media only screen and (max-width: 374px) {
  .page-maintenance .cta__lead .large {
    font-size: 7.2vw;
  }
}
.page-maintenance .cta__lead .icon {
  position: absolute;
  right: 47px;
  top: -21px;
  width: 100%;
  max-width: 88px;
  aspect-ratio: 88/99;
}
@media only screen and (max-width:767px) {
  .page-maintenance .cta__lead .icon {
    max-width: 49px;
    right: -11px;
    top: 0;
  }
}
@media only screen and (max-width: 374px) {
  .page-maintenance .cta__lead .icon {
    max-width: 13.0666666667vw;
    right: -2.9333333333vw;
  }
}
.page-maintenance .cta__lead .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-maintenance .cta__button {
  margin-top: 40px;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .page-maintenance .cta__button {
    margin-top: 24px;
  }
}
.page-maintenance .feature__inner {
  max-width: 1232px;
  padding: 0 16px;
  margin-inline: auto;
}
@media only screen and (max-width:767px) {
  .page-maintenance .feature__title.section-title {
    font-size: 23px;
  }
}
@media only screen and (max-width:767px) {
  .page-maintenance .feature__title.section-title .small {
    font-size: 16px;
  }
}
.page-maintenance .feature__contents {
  margin-top: 40px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .feature__contents {
    margin-top: 24px;
  }
}
.page-maintenance .feature__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .feature__list {
    grid-template-columns: 100%;
    max-width: 480px;
    margin-inline: auto;
  }
}
.page-maintenance .feature-item__img {
  width: 100%;
  aspect-ratio: 373/210;
  position: relative;
}
@media only screen and (max-width:767px) {
  .page-maintenance .feature-item__img {
    aspect-ratio: 344/210;
  }
}
.page-maintenance .feature-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-maintenance .feature-item__img .icon {
  content: "";
  width: 48px;
  height: 48px;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="%2365C42B"/><rect x="11.4083" y="14.4083" width="5.6234" height="3.48117" transform="rotate(45 11.4083 14.4083)" fill="white"/><rect x="24.0001" y="13.4615" width="13.0544" height="3.48117" transform="rotate(135 24.0001 13.4615)" fill="white"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 8px;
  right: 8px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .feature-item__img .icon {
    width: 40px;
    height: 40px;
    right: 6px;
  }
}
.page-maintenance .feature-item__title {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .page-maintenance .feature-item__title {
    font-size: 18px;
  }
}
.page-maintenance .feature-item__text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.page-maintenance .price {
  background: #f0f0f0;
}
.page-maintenance .price__inner {
  max-width: 1232px;
  padding: 0 16px;
  margin-inline: auto;
}
@media only screen and (max-width:767px) {
  .page-maintenance .price__title.section-title {
    font-size: 24px;
  }
}
.page-maintenance .price__contents {
  margin-top: 43px;
  padding-top: 13px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .price__contents {
    margin-top: 10px;
    margin-right: calc(50% - 50vw);
    overflow-x: auto;
    padding-top: 11px;
    padding-bottom: 10px;
    padding-right: 16px;
  }
}
.page-maintenance .price__table {
  width: 100%;
}
@media only screen and (max-width:767px) {
  .page-maintenance .price__table {
    min-width: 688px;
  }
}
.page-maintenance .price-table {
  font-size: 16px;
  font-weight: bold;
  border-spacing: 0;
  background: #fff;
}
@media only screen and (max-width:767px) {
  .page-maintenance .price-table {
    font-size: 12px;
  }
}
@media only screen and (max-width:767px) {
  .page-maintenance .price-table__thead {
    font-size: 11px;
  }
}
.page-maintenance .price-table__thead th.price-table__cell {
  border-bottom: 1px solid #fff;
}
.page-maintenance .price-table__cell {
  height: 75px;
  vertical-align: middle;
  font-weight: bold;
}
@media only screen and (max-width:767px) {
  .page-maintenance .price-table__cell {
    height: 50px;
  }
}
.page-maintenance th.price-table__cell {
  background: #263e7e;
  color: #fff;
  padding: 0 32px;
  width: 27.6%;
  position: sticky;
  left: 0;
  z-index: 1;
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width:767px) {
  .page-maintenance th.price-table__cell {
    width: 25%;
    padding: 0 8px;
  }
}
.page-maintenance td.price-table__cell {
  text-align: center;
  width: 24.1333333333%;
}
@media only screen and (max-width:767px) {
  .page-maintenance td.price-table__cell {
    width: 25%;
  }
}
.page-maintenance td.price-table__cell.-bold {
  font-weight: 900;
}
.page-maintenance td.price-table__cell.-strong {
  font-size: 27px;
  font-weight: 900;
}
@media only screen and (max-width:767px) {
  .page-maintenance td.price-table__cell.-strong {
    font-size: 16px;
    font-weight: bold;
  }
}
.page-maintenance td.price-table__cell.-check .icon::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="%23263E7E"/><rect x="11.4083" y="14.4083" width="5.6234" height="3.48117" transform="rotate(45 11.4083 14.4083)" fill="white"/><rect x="24.0001" y="13.4615" width="13.0544" height="3.48117" transform="rotate(135 24.0001 13.4615)" fill="white"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width:767px) {
  .page-maintenance td.price-table__cell.-check .icon::before {
    width: 16px;
    height: 16px;
  }
}
.page-maintenance .price-table__thead td.price-table__cell {
  color: #fff;
  font-weight: 900;
}
.page-maintenance td.price-table__cell.-lite {
  background: #75c761;
}
.page-maintenance td.price-table__cell.-standard {
  background: #43bfc7;
}
.page-maintenance td.price-table__cell.-customize {
  background: #dd6792;
}
.page-maintenance td.price-table__cell:has(.tag) {
  position: relative;
}
.page-maintenance td.price-table__cell .tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  padding: 3px 8px;
  background: #ffe500;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
}
@media only screen and (max-width:767px) {
  .page-maintenance td.price-table__cell .tag {
    font-size: 10px;
  }
}
.page-maintenance .price-table__tbody td.price-table__cell {
  border-bottom: 1px solid #EFEFEF;
  border-right: 1px solid #EFEFEF;
}
.page-maintenance .scroll-hint-icon-wrap {
  z-index: 1;
}
.page-maintenance .plan__inner {
  max-width: 992px;
  padding: 0 16px;
  margin-inline: auto;
}
@media only screen and (max-width:767px) {
  .page-maintenance .plan__inner {
    max-width: 600px;
  }
}
@media only screen and (max-width:767px) {
  .page-maintenance .plan__title.section-title {
    font-size: 20px;
  }
}
.page-maintenance .plan__contents {
  margin-top: 40px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .plan__contents {
    margin-top: 24px;
  }
}
.page-maintenance .plan__list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.page-maintenance .plan-item {
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.page-maintenance .plan-item__title {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 16px 12px;
  border-left: 4px solid #263E7E;
  background: #f5f5f5;
}
@media only screen and (max-width:767px) {
  .page-maintenance .plan-item__title {
    margin-bottom: 17px;
    font-size: 18px;
  }
}
.page-maintenance .plan-item__body > * {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .page-maintenance .plan-item__body > * {
    font-size: 14px;
  }
}
.page-maintenance .plan-item__text + .plan-item__text {
  margin-top: 2em;
}
.page-maintenance .plan-item__text.-small {
  font-size: 12px;
  margin-top: 14px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .plan-item__text.-small {
    font-size: 11px;
    margin-top: 12px;
  }
}
.page-maintenance .flow {
  background: #f5f5f5;
}
.page-maintenance .flow__inner {
  max-width: 832px;
  padding: 0 16px;
  margin-inline: auto;
}
@media only screen and (max-width:767px) {
  .page-maintenance .flow__inner {
    max-width: 600px;
  }
}
@media only screen and (max-width:767px) {
  .page-maintenance .flow__title.section-title {
    font-size: 20px;
  }
}
.page-maintenance .flow__contents {
  margin-top: 40px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .flow__contents {
    margin-top: 24px;
  }
}
.page-maintenance .flow__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 0;
  counter-reset: flow 0;
}
@media only screen and (max-width:767px) {
  .page-maintenance .flow__list {
    gap: 24px;
  }
}
.page-maintenance .flow__list::before {
  content: "";
  width: 10px;
  height: calc(100% - 40px);
  background: rgba(38, 62, 126, 0.8);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media only screen and (max-width:767px) {
  .page-maintenance .flow__list::before {
    width: 2px;
  }
}
.page-maintenance .flow-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  background: #fff;
  padding: 32px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .flow-item {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 16px;
  }
}
.page-maintenance .flow-item__num {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #263e7e;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.05em;
  display: grid;
  place-content: center;
}
@media only screen and (max-width:767px) {
  .page-maintenance .flow-item__num {
    font-size: 24px;
  }
}
.page-maintenance .flow-item__num::before {
  counter-increment: flow 1;
  content: counter(flow);
  content: counter(flow, decimal-leading-zero);
}
.page-maintenance .flow-item__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #263e7e;
}
@media only screen and (max-width:767px) {
  .page-maintenance .flow-item__title {
    font-size: 18px;
  }
}
.page-maintenance .flow-item__text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:767px) {
  .page-maintenance .flow-item__text {
    margin-top: 7px;
    font-size: 13px;
  }
}
.page-maintenance .flow__button {
  margin-top: 40px;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .page-maintenance .flow__button {
    margin-top: 24px;
  }
}
.page-maintenance .faq {
  background: linear-gradient(to right, #263E7E, #2B54C3);
}
.page-maintenance .faq__inner {
  max-width: 992px;
  padding: 0 16px;
  margin-inline: auto;
}
@media only screen and (max-width:767px) {
  .page-maintenance .faq__inner {
    max-width: 600px;
  }
}
.page-maintenance .faq__title.section-title {
  color: #fff;
}
@media only screen and (max-width:767px) {
  .page-maintenance .faq__title.section-title {
    font-size: 20px;
  }
}
.page-maintenance .faq__contents {
  margin-top: 40px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .faq__contents {
    margin-top: 24px;
  }
}
.page-maintenance .faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-maintenance .faq-item {
  border-radius: 8px;
  overflow: hidden;
}
.page-maintenance .faq-item__head,
.page-maintenance .faq-item__body {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 24px 48px 24px 24px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .faq-item__head,
.page-maintenance .faq-item__body {
    padding: 16px 48px 16px 15px;
  }
}
.page-maintenance .faq-item__head {
  background: #293555;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.page-maintenance .faq-item__head:after {
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translate(0, -75%) rotate(45deg);
  transition: transform 0.2s ease-out;
}
.page-maintenance .faq-item__head.is-open::after {
  transform: translate(0, -25%) rotate(225deg);
}
.page-maintenance .faq-item__body {
  background: #fff;
}
.page-maintenance .faq-item__icon {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 20px;
  line-height: 1;
}
.page-maintenance .faq-item__head .faq-item__icon {
  background: #00e0ff;
  color: #000;
}
.page-maintenance .faq-item__head .faq-item__text {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-top: 6px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .faq-item__head .faq-item__text {
    font-size: 15px;
    margin-top: 7px;
  }
}
.page-maintenance .faq-item__body .faq-item__icon {
  background: #293555;
  color: #fff;
}
.page-maintenance .faq-item__body .faq-item__text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
@media only screen and (max-width:767px) {
  .page-maintenance .faq-item__body .faq-item__text {
    font-size: 14px;
    margin-top: 5px;
  }
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

WORDPRESS専用パーツ

★★★★★★★★★★★★★★★★★★★★★★★★*/
/*　External Link　*/
.outlink {
  background: #f8f8f8;
  border: 1px solid #ddd;
  padding: 3%;
  margin: 4%;
}
.outlink li {
  background: url(assets/img/common/icon-outlink.png) no-repeat 0px 2px;
  background-size: 15px;
  padding-left: 25px;
  line-height: 1.1em;
}

/*　Blockquote　*/
.wp-block-quote {
  border-left: none;
}

pre.wp-block-code {
  padding: 15px;
  background: #333;
  color: #fff;
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

CATEGORY LABEL

★★★★★★★★★★★★★★★★★★★★★★★★*/
.article_cat {
  font-size: 10px;
  padding: 2px 7px;
  background: #f5f5f5;
  display: inline-block;
  color: #fff;
  margin-right: 10px;
}

span.tag {
  background: url(assets/img/common/ico_tag.svg) no-repeat;
  background-size: 14px;
  padding: 2px 2px 3px 20px;
}

span.author {
  background: url(assets/img/common/ico_author.svg) no-repeat;
  background-size: 14px;
  padding: 2px 2px 3px 20px;
}

.single-back {
  padding: 40px 0;
}

.single-back-main__link {
  border-top: 1px solid var(--gray-color);
  border-bottom: 1px solid var(--gray-color);
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 300px;
  padding: 20px 0;
  font-weight: bold;
  font-size: 17px;
  transition: 0.3s;
}
.single-back-main__link:hover {
  background: var(--gray-color3);
}
.single-back-main__link::before {
  content: "←";
  color: #009BD2;
  margin-right: 10px;
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

　シングル・ページ用ページング

★★★★★★★★★★★★★★★★★★★★★★★★*/
.next-prev {
  padding: 4% 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: var(--black-color9);
}
@media only screen and (max-width:767px) {
  .next-prev {
    flex-direction: column;
  }
}

/*　next-prev-box　*/
.next-prev-box {
  width: 49.5%;
  font-size: 14px;
  line-height: 1.5;
}
@media only screen and (max-width:767px) {
  .next-prev-box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.next-prev-box__link {
  display: flex;
  text-decoration: none !important;
  padding: 4%;
  border-top: 1px solid var(--gray-color);
  border-bottom: 1px solid var(--gray-color);
  transition: 0.3s;
  color: var(--base-font-color) !important;
}
.next-prev-box__img {
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  overflow: auto;
  display: flex;
  align-items: center;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-right: 15px;
}
.next-prev-box__img img {
  object-fit: cover;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 10px;
}
@media only screen and (max-width:767px) {
  .next-prev-box__img {
    min-width: 70px;
    max-width: 70px;
    height: 70px;
    overflow: hidden;
  }
}
.next-prev-box__title {
  font-size: 15px;
  line-height: 1.6;
  font-weight: bold;
}
@media only screen and (max-width:767px) {
  .next-prev-box__title {
    font-size: 12px;
    overflow: hidden;
    line-height: 1.2;
  }
}

/*　next-box　*/
.next-box__link {
  padding-left: 20px;
  margin-right: 1px;
  position: relative;
}
.next-box__link::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #bebebe;
  border-left: 2px solid #bebebe;
  -webkit-transform: rotate(225deg);
  transform: rotate(405deg) translateY(-50%);
}

/*　prev-box　*/
.prev-box__link {
  padding-right: 25px;
  position: relative;
}
.prev-box__link::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #bebebe;
  border-right: 2px solid #bebebe;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translateY(-50%);
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

　インデックス・カテゴリー・タグ用ページング

★★★★★★★★★★★★★★★★★★★★★★★★*/
.nav-links {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-top: 30px;
}
.nav-links .page-numbers {
  border-radius: 10px;
  background-color: var(--gray-color23);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 7px;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 19px;
}
.nav-links .page-numbers:hover {
  color: var(--white-color);
  background-color: var(--theme-color1);
}
.nav-links .prev,
.nav-links .next {
  display: none;
}
.nav-links .dots:hover {
  background-color: var(--black-color14);
  color: var(--theme-color1);
}
.nav-links .current {
  color: var(--white-color);
  background-color: var(--theme-color1);
  font-weight: bold;
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

　ブログ日付

★★★★★★★★★★★★★★★★★★★★★★★★*/
.blog-data {
  font-size: 10px;
  padding: 4px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  border-bottom: 1px solid var(--gray-color);
  margin-bottom: 30px;
}
.blog-data__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 24px;
}
.blog-data__list_views {
  position: absolute;
  right: 0;
  margin-right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width:767px) {
  .blog-data__list_views {
    position: relative;
    top: 0;
    transform: none;
  }
}
.blog-data__img {
  display: flex;
  align-items: center;
  width: 15px;
  margin: 0 !important;
  margin-right: 3px !important;
}
.blog-data__link {
  text-decoration: none !important;
  font-size: 12px;
  color: var(--base-font-color) !important;
}
.blog-data__txt {
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0;
  margin: 0 !important;
}
@media only screen and (max-width:767px) {
  .blog-data__txt {
    line-height: 1.5;
  }
}
.blog-data__views {
  color: var(--white-color);
  letter-spacing: 0;
  font-size: 11px;
}
.blog-data__views_count {
  font-size: 13px;
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

　ブロックCSS

★★★★★★★★★★★★★★★★★★★★★★★★*/
.blog-contents__inner > *:first-child,
.page-contents__inner > *:first-child {
  margin-top: 0;
}
.blog-contents figure,
.page-contents figure {
  text-align: center;
  margin-bottom: 40px;
}
.blog-contents figure img,
.page-contents figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.blog-contents img,
.page-contents img {
  max-width: 100%;
  height: auto;
}
.blog-contents h1,
.blog-contents table,
.blog-contents blockquote,
.blog-contents dl,
.blog-contents > ul,
.blog-contents ol,
.blog-contents > cite,
.blog-contents figure,
.page-contents h1,
.page-contents table,
.page-contents blockquote,
.page-contents dl,
.page-contents > ul,
.page-contents ol,
.page-contents > cite,
.page-contents figure {
  margin-top: 60px;
  margin-bottom: 20px;
}
@media only screen and (max-width:767px) {
  .blog-contents h1,
.blog-contents table,
.blog-contents blockquote,
.blog-contents dl,
.blog-contents > ul,
.blog-contents ol,
.blog-contents > cite,
.blog-contents figure,
.page-contents h1,
.page-contents table,
.page-contents blockquote,
.page-contents dl,
.page-contents > ul,
.page-contents ol,
.page-contents > cite,
.page-contents figure {
    margin-top: 30px;
  }
}
.blog-contents h2,
.blog-contents h3,
.page-contents h2,
.page-contents h3 {
  margin-top: 85px;
  margin-bottom: 30px;
}
.blog-contents h4,
.blog-contents h5,
.blog-contents h6,
.page-contents h4,
.page-contents h5,
.page-contents h6 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-contents p,
.page-contents p {
  margin: 20px 0;
}
.blog-contents figure,
.page-contents figure {
  margin-top: 30px;
  margin-bottom: 30px;
}
.blog-contents ul,
.blog-contents ol,
.page-contents ul,
.page-contents ol {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width:767px) {
  .blog-contents ul,
.blog-contents ol,
.page-contents ul,
.page-contents ol {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.blog-contents strong,
.page-contents strong {
  font-weight: bold;
}
.blog-contents a,
.page-contents a {
  color: var(--link-color);
  text-decoration: underline;
}
.blog-contents a:visited,
.page-contents a:visited {
  color: var(--link-color);
}
.blog-contents a:hover,
.page-contents a:hover {
  color: var(--link-color);
  text-decoration: none;
}
.blog-contents table,
.page-contents table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.blog-contents table tr td,
.blog-contents table tr th,
.page-contents table tr td,
.page-contents table tr th {
  width: 70%;
  line-height: 1.86;
  border: 1px solid #ddd;
}
@media only screen and (max-width:767px) {
  .blog-contents table tr td,
.blog-contents table tr th,
.page-contents table tr td,
.page-contents table tr th {
    padding: 5% 2.5%;
    box-sizing: border-box;
  }
}
.blog-contents table tr th,
.page-contents table tr th {
  background: #fafafa;
}
.blog-contents ul,
.page-contents ul {
  margin: 4% 0 4% 5px;
}
.blog-contents ul li,
.page-contents ul li {
  list-style-type: disc;
  margin: 2% 0% 0% 4%;
  line-height: 1.6em;
  font-size: 15px;
}
.blog-contents ol,
.page-contents ol {
  margin: 4% 0 4% 5px;
}
.blog-contents ol li,
.page-contents ol li {
  list-style-type: decimal;
  margin: 2% 0% 0% 4%;
  line-height: 1.6em;
  font-size: 15px;
}
.blog-contents > ul li,
.page-contents > ul li {
  list-style-type: disc;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  margin: 0 0 20px 30px;
}
.blog-contents > ol li,
.page-contents > ol li {
  list-style: decimal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  margin: 0 0 20px 30px;
}
.blog-contents dl,
.page-contents dl {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  border: 1px solid #ccc;
  border-bottom: none;
}
.blog-contents dt,
.page-contents dt {
  background: #f5f5f5;
  padding: 5px;
  width: 20%;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
}
.blog-contents dd,
.page-contents dd {
  background: #fff;
  padding: 5px;
  width: 80%;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
}
.blog-contents blockquote,
.page-contents blockquote {
  line-height: 1.6;
  padding: 50px;
  background: var(--gray-color8);
  position: relative;
  border-radius: 5px;
  border-left: none;
}
@media only screen and (max-width:767px) {
  .blog-contents blockquote,
.page-contents blockquote {
    padding: 35px;
  }
}
.blog-contents blockquote:before,
.page-contents blockquote:before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 70px;
  font-weight: bold;
  color: #ddd;
  position: absolute;
  left: 10px;
  top: 0px;
}
@media only screen and (max-width:767px) {
  .blog-contents blockquote:before,
.page-contents blockquote:before {
    font-size: 50px;
    position: absolute;
    left: 10px;
    top: 0px;
  }
}
.blog-contents blockquote:after,
.page-contents blockquote:after {
  content: "“";
  font-family: Georgia, serif;
  font-size: 70px;
  font-weight: bold;
  color: #ddd;
  position: absolute;
  right: 10px;
  bottom: 0px;
  transform: rotate(180deg);
}
@media only screen and (max-width:767px) {
  .blog-contents blockquote:after,
.page-contents blockquote:after {
    font-size: 50px;
    right: 10px;
    bottom: 0px;
  }
}
.blog-contents blockquote p,
.page-contents blockquote p {
  letter-spacing: 0.1em;
  line-height: 2;
}
.blog-contents blockquote cite,
.page-contents blockquote cite {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 7px;
  display: block;
  padding: 5px 0;
}
.blog-contents > cite,
.page-contents > cite {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 31px 28px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  display: block;
  font-weight: bold;
}
.blog-contents > cite a,
.page-contents > cite a {
  font-weight: normal;
  line-height: 1.5;
}
@media only screen and (max-width:767px) {
  .blog-contents > cite,
.page-contents > cite {
    padding: 21px 16px;
    font-size: 14px;
  }
  .blog-contents > cite a,
.page-contents > cite a {
    display: block;
  }
}
.blog-contents iframe,
.page-contents iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  height: auto;
}

.blog-contents .attachment-post-thumbnail,
.page-contents .attachment-post-thumbnail {
  margin: 0 0 20px;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.blog-contents img {
  border-radius: 10px;
}

.blog-contents .wp-block-button {
  width: 100%;
  padding: 30px 0;
}
.blog-contents .wp-block-button__link {
  width: 521px;
  height: 80px;
  padding: 0 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  border-radius: 40px;
  font-size: 19px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--black-color);
  transition: 0.3s;
  text-decoration: none;
  background: var(--theme-color2);
}
@media only screen and (max-width:767px) {
  .blog-contents .wp-block-button__link {
    width: 335px;
    max-width: 100%;
  }
}
.blog-contents .wp-block-button__link:hover {
  -webkit-filter: brightness(1.2);
  -moz-filter: brightness(1.2);
  -ms-filter: brightness(1.2);
  filter: brightness(1.2);
  color: var(--black-color);
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

　ブロックエディタ調整

★★★★★★★★★★★★★★★★★★★★★★★★*/
hr,
.wp-block-separator {
  border-bottom: 1px dashed #ccc;
  margin: 50px auto;
  width: 50%;
  height: 1px;
}

.wp-block {
  max-width: 800px;
}

.wp-block-table table,
.is-style-stripes table {
  width: 100%;
  margin: 0;
}
.wp-block-table table thead,
.is-style-stripes table thead {
  border: 0;
}
.wp-block-table table tr,
.is-style-stripes table tr {
  border-top: 1px solid var(--gray-color);
}
.wp-block-table table tr:nth-last-of-type(1),
.is-style-stripes table tr:nth-last-of-type(1) {
  border-bottom: 1px solid var(--gray-color);
}
.wp-block-table table th,
.is-style-stripes table th {
  border: none;
  padding: 3%;
  line-height: 1.86;
  font-size: 16px;
  font-weight: bold;
  padding: 2.8% 3% 2.8% 4%;
}
@media only screen and (max-width:767px) {
  .wp-block-table table th,
.is-style-stripes table th {
    padding: 5% 2.5%;
  }
}
.wp-block-table table td,
.is-style-stripes table td {
  vertical-align: top;
  padding: 3%;
  line-height: 1.86;
  font-size: 16px;
  border: none;
}
.wp-block-table table td:nth-of-type(1),
.is-style-stripes table td:nth-of-type(1) {
  width: 33%;
  padding: 2.8% 3% 2.8% 4%;
  font-weight: 700;
}
@media only screen and (max-width:767px) {
  .wp-block-table table td:nth-of-type(1),
.is-style-stripes table td:nth-of-type(1) {
    padding: 5% 2.5%;
  }
}
.wp-block-table table td:nth-of-type(2),
.is-style-stripes table td:nth-of-type(2) {
  width: 67%;
}
@media only screen and (max-width:767px) {
  .wp-block-table table td:nth-of-type(2),
.is-style-stripes table td:nth-of-type(2) {
    padding: 5% 2.5%;
  }
}
.wp-block-table table td .small,
.is-style-stripes table td .small {
  font-size: 12px;
  line-height: 1.75;
  margin-top: 20px;
  display: block;
}

div#toc_container {
  width: 100% !important;
}

#toc_container p.toc_title {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-left: 45px;
}
#toc_container p.toc_title::before {
  content: "";
  background: url(./assets/img/common/single/table_of_content.svg) center no-repeat;
  object-fit: contain;
  display: inline-block;
  height: 35px;
  width: 35px;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.toc_list {
  padding: 0 23px !important;
  background: var(--white-color) !important;
}
.toc_list > li > a {
  padding: 23px 0;
  display: block;
  border-bottom: 1px dotted var(--gray-color10);
}
.toc_list > li > a:hover, .toc_list > li > a:visited {
  color: var(--base-font-color);
  text-decoration: none !important;
  background: var(--gray-color8);
}
.toc_list > li > ul {
  padding: 10px 0 !important;
  display: block;
}
.toc_list > li > ul > li a {
  padding: 6px 0;
  display: block;
}
.toc_list > li > ul > li a:hover, .toc_list > li > ul > li a:visited {
  color: var(--base-font-color);
  text-decoration: none !important;
  background: var(--gray-color8);
}

.toc_list a {
  color: var(--base-font-color);
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

　記事を書いた人レイアウト

★★★★★★★★★★★★★★★★★★★★★★★★*/
.author {
  margin: 65px 0 70px;
}
@media only screen and (max-width:767px) {
  .author {
    width: 89%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 55px;
  }
}
.author__wrap {
  background-color: #fff;
  border-radius: 10px;
}
.author__tit {
  background: #f5f5f5;
  padding: 1% 3%;
  margin-top: 3%;
}

.author-box {
  padding: 30px 40px 40px;
  display: flex;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width:767px) {
  .author-box {
    flex-direction: column;
    align-items: center;
    padding: 30px 10px 20px;
  }
}

.author-box-left {
  margin-right: 40px;
}
@media only screen and (max-width:767px) {
  .author-box-left {
    margin: 0;
    margin-bottom: 20px;
  }
}
.author-box-left__img {
  min-width: 130px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
}
@media only screen and (max-width:767px) {
  .author-box-left__img img {
    height: 100%;
  }
}

.author-box-right {
  overflow: hidden;
}
.author-box-right__name {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 30px;
  text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width:767px) {
  .author-box-right__name {
    text-align: center;
    margin-bottom: 20px;
  }
}
.author-box-right__desc {
  font-size: 13px;
  overflow: hidden;
  line-height: 2;
  background: #f7f7f7;
  padding: 30px;
}
@media only screen and (max-width:767px) {
  .author-box-right__desc {
    padding: 25px;
  }
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

　記事を書いた人レイアウト 2

★★★★★★★★★★★★★★★★★★★★★★★★*/
.author-2 {
  display: flex;
  background: var(--base-color);
  margin-top: 30px;
  padding: 30px 40px;
  background: var(--sub-color);
}
@media only screen and (max-width:767px) {
  .author-2 {
    flex-direction: column;
    padding: 0;
    margin-top: 0;
    padding-bottom: 22px;
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

.author-2-left {
  width: 23%;
  margin-right: 2%;
}
@media only screen and (max-width:767px) {
  .author-2-left {
    margin-right: 0;
    width: 100%;
    margin-top: 60px;
  }
}
.author-2-left__img {
  text-align: center;
  border-radius: 50%;
  max-width: 130px;
  height: auto;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width:767px) {
  .author-2-left__img {
    margin: 0 auto;
  }
}

.author-2-right {
  width: 75%;
}
@media only screen and (max-width:767px) {
  .author-2-right {
    width: 100%;
    padding: 0 3%;
    box-sizing: border-box;
  }
}
.author-2-right__name {
  font-weight: 900;
  font-size: 16px;
  line-height: 2;
  text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width:767px) {
  .author-2-right__name {
    font-size: 14px;
    text-align: center;
    padding: 0 15px;
    margin: 20px 0;
  }
}
.author-2-right__txt {
  margin-top: 39px;
  background: var(--base-color);
  padding: 27px 33px;
  font-size: 13px;
  line-height: 2;
}
@media only screen and (max-width:767px) {
  .author-2-right__txt {
    font-size: 12px;
  }
}

/*★★★★★★★★★★★★★★★★★★★★★★★★

PC・SP表示切り替え

★★★★★★★★★★★★★★★★★★★★★★★★*/
.sp {
  display: none !important;
}

@media only screen and (max-width:1023px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inherit !important;
  }
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.tada {
  animation-name: tada;
}

@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}

@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.rollIn {
  animation-name: rollIn;
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

@-webkit-keyframes scaleUp {
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleUp {
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes bgLeftSlide {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.bgLeftSlide {
  animation-name: bgLeftSlide;
}