@charset "UTF-8";
/* settings
---------------------------------------------------*/
/* font */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/* Base
-------------------------------- */
/***** テーマ上書き *****/
:root {
  --ark-color--main: #e60020;
}
/***** 初期値 *****/
:root {
  /* 色設定 */
  --font-color-base: #4d4d4d;

  --color-accent1: #e60020;
  --color-accent2: #231815;

  --op-bk: rgba(255,255,255,.8);

  --bg-color0: white;
  --bg-color1: #23181513;
  --bg-color2: #e60020;

  --bg-grd-color1: linear-gradient(
    to top,
    #FFE2C2,
    #FCF2E8
  );
  --accent-grd-color1: linear-gradient(
    to right,
    var(--color-accent1),
    var(--color-accent1-sub)
  );
  --marker1: linear-gradient(
    transparent 60%,
    #e6001f2a 60%
  );
  --marker2: linear-gradient(
    transparent 60%,
    #ffff00 60%
  );

  --sns-line-color: #00b900;

  /* フォント */
  --font-family-jp: 'Noto Sans JP', sans-serif;
  --font-family-jp2: "Noto Serif JP", serif;
  --font-family-en: 'Jost', sans-serif;

  /* スタイル */
  --tx-shadow1: 1px 1px 1px rgba(0,0,0,.3);
  --box-shadow1: 2px 2px 5px rgba(0,0,0,.3);
  --drop-shadow1: drop-shadow(1px 1px 3px rgba(0,0,0,.3));
  --max-width1: 1400px;
  --max-width2: 1200px;
  --max-width3: 1000px;
  --max-width-sp1: 90%;
  --border1: 1px solid var(--color-accent1);
  --border2: 2px solid var(--color-accent1);
  --border3: 3px solid var(--color-accent1);
  --line-gray: 1px solid #A0A0A0;
  --line-gray2: 2px solid #A0A0A0;
  --bd-r1: .5rem;

  --icon-size0-7: .7em;
  --icon-size1-0: 1em;
  --icon-size1-2: 1.2em;

  --border-radius1: 15px;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 13px !important;
  }
}
.wrapper {
  position: relative;
}

/***** デフォルト設定 *****/

/* 背景色設定 */
.-bg-color0 {
  background: var(--bg-color0);
}
.-bg-color1 {
  background: var(--bg-color1);
}
.-bg-color2 {
  background: var(--bg-color2);
}

/* テキスト設定 */
.tx-c { text-align: center; }
.tx-l { text-align: left; }
.tx-r { text-align: right; }

.ac-c1 { color: var(--color-accent1); }
.ac-c2 { color: var(--color-accent2); }

.fw9 { font-weight: 900; }
.fw6 { font-weight: 600; }

p {
  color: var(--font-color-base);
  line-height: 1.8;
  margin-bottom: 1.5em;
  font-weight: 400;
}

p,a,li,h1,h2,h3,h4,dt,dd {
  font-family: var(--font-family-jp);
  color: var(--font-color-base);
}
a {
  text-decoration: none;
  transition: 1s;
  color: var(--color-accent3);
}
a:hover {
  opacity: 0.7;
}

/* その他 */
.tx-white {
  color: white;
}
.opacity1 {
  opacity: 0.1;
}
.opacity2 {
  opacity: 0.2;
}
.opacity3 {
  opacity: 0.3;
}
.opacity5 {
  opacity: 0.5;
}
.opacity8 {
  opacity: 0.8;
}
.opacity9 {
  opacity: 0.9;
}

.w100 { width: 100%; }

.pd-tb6vw {
  padding: 6vw 0;
}
.pd-tb8vw {
  padding: 8vw 0;
}
.pd-tb10vw {
  padding: 10vw 0;
}
.pd-tb12vw {
  padding: 12vw 0;
}
@media screen and (max-width: 768px) {
  .pd-tb8vw {
    padding: 12vw 0;
  }
  .pd-tb10vw {
    padding: 16vw 0;
  }
  .pd-tb12vw {
    padding: 18vw 0;
  }
}

@media screen and (max-width: 768px) {
  .sp-od1 {
    order: 1;
  }
  .sp-od2 {
    order: 2;
  }
}

.pc { display: block }
.sp { display: none }
.pc-inline { display: inline-block }
.sp-inline { display: none }
@media screen and (max-width: 768px) {
  .pc { display: none }
  .sp { display: block }
  .pc-inline { display: none }
  .sp-inline { display: inline-block }
}

/* flex設定 */
.flex-t-c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex-t-sa {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.flex-t-l {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.flex-t-sb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-s-c {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.flex-c-c {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.flex-c-l {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
}
.flex-c-r {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
}
.flex-c-sa {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.flex-c-sb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.flex-b-c {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
}
.flex-st-c {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.w50 { width: 50%; }
@media screen and (max-width: 768px) {
  .w50 { width: 100%; }
}

/* 角丸 */
.bd-r1 { border-radius: var(--bd-r1); }

/* ブロック範囲外非表示 */
.of-hid { overflow: hidden; }

/* メニュースタイル
-------------------------------- */
:root {
  --menu-icon-w: 1em;
}
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  & .menu-item {
    position: relative;
    width: fit-content;
  }
  & a {
    position: relative;
    display: block;
    width: fit-content;
    cursor: pointer;
    font-size: 1rem;
    padding-left: 1.5em;
    color: var(--color-accent2);
    letter-spacing: .15em;
    font-weight: 600;
    &::before {
      position: absolute;
      content: "";
      width: var(--menu-icon-w);
      aspect-ratio: 1 / 1;
      top: .3em;
      left: 0;
      background: url(../images/icon-arrow.svg) no-repeat center / contain;
    }
    & span {
      display: block;
      text-align: right;
      font-size: 60%;
      font-family: var(--font-family-en);
      color: var(--color-accent1);
      margin-top: .5em;
      font-weight: 600;
    }
  }
  & a:not(:last-child) {
    margin-right: 2em;
  }
}
/* サブメニュー */
.nav-menu .-submenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 3.5rem;
  margin: 0 auto;
  display: block;
  width: max-content;
  background: rgba(255,255,255,.9);
  border-radius: var(--bd-r1);
  box-shadow: var(--box-shadow1);
  transition: .5s;
  max-height: 0;
  padding: 0 1rem;
  overflow: hidden;
  & a {
    font-size: .9rem;
    padding-bottom: 1em;
  }
  &.-active {
    max-height: 20rem;
    padding: 1rem 1rem .3rem;
  }
}

@media screen and (max-width: 1200px) {
  .nav-menu {
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
    & a {
      width: 100%;
      & span {
        text-align: left;
      }
    }
    & a:not(:last-child) {
      margin-right: 0;
      margin-bottom: 2em;
    }
    & .menu-item {
      width: 100%;
    }
  }
  /* サブメニュー */
  .nav-menu .-submenu {
    position: relative;
    top: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    &.-active {
      margin-top: -.5rem;
      margin-left: 0;
      padding: 0 1rem 1rem;
      & a {
        margin-bottom: .5rem !important;
      }
    }
  }
}


/* header
-------------------------------- */
:root {
  --header-logo-w: 8rem;
  --hm-btn-w: 3rem;
  --hm-btn-inner-w: calc(var(--hm-btn-w) * .4);
}
.header {
  position: fixed;
  top: var(--ark-adminbar_height);
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  z-index: 9;
  & .header__logo {
    width: var(--header-logo-w);
    height: fit-content;
    background: var(--op-bk);
    border-radius: 0 0 var(--bd-r1) 0;
    padding: .5rem;
  }
  & .header__nav {
    height: fit-content;
    background: var(--op-bk);
    border-radius: 0 0 var(--bd-r1) var(--bd-r1);
    padding: 1.7rem 2.5rem 1.5rem;
    margin-right: 2rem;
    transition: .5s;
    box-shadow: var(--box-shadow1);
  }
  & .hm-btn {
    position: absolute;
    width: var(--hm-btn-w);
    height: var(--hm-btn-w);
    max-height: 0;
    top: 1rem;
    right: 1rem;
    background: var(--color-accent1);
    border-radius: 9999px;
    cursor: pointer;
    transition: .5s;
    overflow: hidden;
    opacity: 0;
    & .-inner {
      position: relative;
      width: var(--hm-btn-inner-w);
      aspect-ratio: 1 / .8;
      & span {
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        background: white;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        caret-color: transparent;
        transition: .5s;
      }
      & span:first-child {
        bottom: auto;
      }
      & span:last-child {
        top: auto;
      }
    }
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --header-logo-w: 6rem;
  }
  .header {
    & .header__logo {
      padding: .2rem;
    }
    & .header__nav {
      max-height: 0;
      margin: 2rem 2rem 0 0;
      background: white;
      border-radius: var(--bd-r1);
      opacity: 0;
      z-index: -1;
    }
    & .hm-btn {
      max-height: var(--hm-btn-w);
      opacity: 1;
    }
  }
  .header.-active {
    & .header__nav {
      max-height: 90vh;
      opacity: 1;
      z-index: 5;
    }
    & .hm-btn {
      z-index: 10;
      & .-inner {
        & span {
          opacity: 0;
        }
        & span:first-child {
          opacity: 1;
          bottom: 0;
          transform: rotate(45deg);
        }
        & span:last-child {
          opacity: 1;
          top: 0;
          transform: rotate(-45deg);
        }
      }
    }
  }
}

/* LP-SERVICEページ用ヘッダー */
.-service.header {
  & .header__logo {
    width: 7rem;
    background: initial;
    padding: 0;
    background: var(--op-bk);
  }
  & .header__nav {
    max-height: 0;
    padding: 0;
    overflow: hidden;
  }
  & .hm-btn {
    max-height: var(--hm-btn-w);
    opacity: 1;
  }
}
.-service.header.-active {
  & .header__nav {
    max-height: 90vh;
    opacity: 1;
    padding: 1.7rem 2.5rem 1.5rem;
    padding-right: 3.5rem;
    overflow: visible;
  }
  & .hm-btn {
    & .-inner {
      & span {
        opacity: 0;
      }
      & span:first-child {
        opacity: 1;
        bottom: 0;
        transform: rotate(45deg);
      }
      & span:last-child {
        opacity: 1;
        top: 0;
        transform: rotate(-45deg);
      }
    }
  }
}
@media screen and (max-width: 1200px) {
  .-service.header {
    & .header__logo {
      width: 5.5rem;
    }
  }
}

/* 固定ページ
-------------------------------- */

/****** 固定ページヘッド ******/
.c-pageTitle__main {
  padding-top: 3rem;
  font-size: 1.6rem;
}
.p-breadcrumb {
  max-width: var(--max-width1);
  padding: .5rem 1rem;
}
.p-topArea.-noimg {
  background: url(../images/mv-back01.webp) no-repeat center top / cover;
}

/****** 共通設定 ******/
.content {
  overflow: hidden;
}
.page:not(.home) .l-container {
  max-width: 100%;
}
.section-contents {
  position: relative;
  width: 100%;
}
.inner {
  position: relative;
  width: var(--max-width-sp1);
  max-width: var(--max-width1);
  padding: 5rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 3rem 0;
  }
}

/****** 背景 切り替え ******/
.-white {
  color: white;
}
.bg-black {
  background: var(--color-black);
}
.bg-gray {
  background: var(--color-light-gray);
}

/****** 見出し設定 ******/
.h-title1 {
    padding: 0 1em;
    font-size: 1.3rem;
    border-left: 3px solid var(--color-accent1);
    color: var(--color-accent2);
    margin: 1em 0;
}

.h-title2 {
  font-size: 2.2rem;
  color: var(--color-accent2);
  text-align: center;
  margin-bottom: 1.5em;
  & span {
    display: block;
    font-size: 50%;
    font-family: var(--font-family-en);
    color: var(--color-accent1);
    margin-top: .5em;
  }
}
@media screen and (max-width: 768px) {
  .h-title2 {
    font-size: 1.8rem;
  }
}

.h-title3 {
  position: relative;
  font-size: 1.6rem;
  padding: .4em .8em;
  padding-left: 1.8em;
  color: var(--color-accent2);
  border-bottom: var(--border3);
  margin-bottom: 3rem;
  &::before {
    position: absolute;
    content: "";
    width: var(--icon-size1-0);
    height: var(--icon-size1-0);
    top: 0;
    bottom: 0;
    left: .3em;
    margin: auto 0;
    background: url(../images/icon-plus.svg) no-repeat center / contain;
  }
}
@media screen and (max-width: 768px) {
  .h-title3 {
    font-size: 1.4rem;
  }
}

.h-title4 {
  position: relative;
  font-size: 1.4rem;
  text-align: center;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  letter-spacing: .2em;
  line-height: 1.8;
  color: var(--color-accent2);
  &::after {
    position: absolute;
    content: "";
    width: 3em;
    height: 5px;
    background: var(--color-accent1);
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  &.-wh {
    color: white;
  }
}
@media screen and (max-width: 768px) {
  .h-title4 {
    &::after {
      height: 3px;
    }
  }
}

.h-title5 {
  width: fit-content;
  margin: 0 auto 1.5em;
  padding: .4em 5em;
  font-size: 1.2rem;
  background: var(--color-accent1);
  color: white;
  font-weight: 900;
  border-radius: 9999px;
  letter-spacing: .2em;
}

/* div要素にクラスを付け その中にh2などの要素を入れる */
:root {
  --h-title6-deg: 45deg;
  --h-title6-deg-re: calc(var(--h-title6-deg) * -1);
  --h-title6-shift-y: .7rem;
  --h-title6-shift-x: -.75rem;
  --h-title6-pd: 1em;
  --h-title6-shift-y2: 1rem;
  --h-title6-shift-x2: -.25rem;
  --h-title6-pd2: 2em;
}
.h-title6 {
  position: relative;
  width: fit-content;
  height: fit-content;
  margin: 0 auto 4rem;
  & div {
    position: relative;
    transform: skewX(var(--h-title6-deg));
    overflow: hidden;
    & h2 {
      position: relative;
      text-align: center;
      font-size: 1.7rem;
      color: white;
      font-weight: 900;
      padding: .4em 4em;
      transform: skewX(var(--h-title6-deg-re));
      letter-spacing: .2em;
      & span {
        font-size: 60%;
        font-weight: 600;
      }
    }
    & h2::before {
      position: absolute;
      content: "";
      width: calc(100% - var(--h-title6-pd));
      height: 100%;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      background: var(--color-accent2);
      transform: skewX(-30deg);
      z-index: -1;
    }
  }
}
.h-title6::before, .h-title6::after {
  position: absolute;
  content: "";
  width: 4em;
  height: 2px;
  background: var(--color-accent1);
  transform: rotate(45deg);
  z-index: 2;
}
.h-title6::before {
  bottom: var(--h-title6-shift-y);
  left: var(--h-title6-shift-x);
}
.h-title6::after {
  top: var(--h-title6-shift-y);
  right: var(--h-title6-shift-x);
}

.-double.h-title6 {
  & div {
    & h2::before {
      width: calc(100% - var(--h-title6-pd2));
    }
  }
}
.-double.h-title6::before, .-double.h-title6::after {
  width: 5em;
}
.-double.h-title6::before {
  bottom: var(--h-title6-shift-y2);
  left: var(--h-title6-shift-x2);
}
.-double.h-title6::after {
  top: var(--h-title6-shift-y2);
  right: var(--h-title6-shift-x2);
}
@media screen and (max-width: 768px) {
  :root {
    --h-title6-shift-y: .7rem;
    --h-title6-shift-x: -.75rem;
    --h-title6-pd: 1em;
    --h-title6-shift-y2: 1rem;
    --h-title6-shift-x2: -.7rem;
    --h-title6-pd2: 2em;
  }
  .h-title6 {
    min-width: 100%;
    margin-bottom: 3rem;
    & div {
      & h2 {
        font-size: 1.1rem;
        padding: 1em 2em;
        & span {
          font-size: 80%;
        }
      }
    }
  }
}

.fukidashi-title {
  position: relative;
  width: fit-content;
  font-size: 1.6rem;
  color: var(--color-accent2);
  padding: 0 4rem;
  margin: 0 auto 2rem;
  text-align: center;
  font-weight: 900;
  letter-spacing: .2em;
  &::before,
  &::after {
    position: absolute;
    content: "";
    height: 100%;
    aspect-ratio: 5 / 12;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: url(../images/lp/icon-fukidashi1.svg) no-repeat center / contain;
  }
  &::before {
    left: 0;
    transform: scaleX(-1);
  }
  &::after {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .fukidashi-title {
    font-size: 1.3rem;
    & + p {
      width: 80%;
      margin: 0 auto 2rem;
    }
  }
}

/****** ボタン設定 ******/

:root {
  --btn-line-w: 2px;
  --btn-border1: var(--btn-line-w) solid var(--color-accent1);
  --btn-border2: var(--btn-line-w) solid var(--color-accent2);
  --btn-icon1-w: 1em;
}

/*メインボタン*/
.btn1 {
  margin: 1rem 0;
  & a {
    position: relative;
    display: block;
    width: fit-content;
    padding: .5em 2.5em;
    padding-right: 3em;
    background: white;
    font-size: 1.2rem;
    color: var(--color-accent2);
    letter-spacing: .1em;
    border-left: var(--btn-border1);
    border-top: var(--btn-border1);
    border-right: var(--btn-border2);
    border-bottom: var(--btn-border2);
    font-weight: 600;
    &::after {
      position: absolute;
      content: "";
      width: var(--btn-icon1-w);
      height: var(--btn-icon1-w);
      top: 0;
      bottom: 0;
      right: .5em;
      margin: auto 0;
      background: url(../images/icon-arrow.svg) no-repeat center / contain;
    }
  }
  &.-left a {
    margin: 0 auto 0 0;
  }
  &.-center a {
    margin: 0 auto;
  }
  &.-right a {
    margin: 0 0 0 auto;
  }
  &.-en a {
    font-family: var(--font-family-en);
  }
  &.-down a::after {
    transform: rotate(90deg);
  }
}

/*LINEボタン*/
.btn-line {
  width: fit-content;
  margin: 1rem auto;
  background: var(--sns-line-color);
  border-radius: var(--bd-r1);
  & a {
    display: flex;
    align-items: center;
    width: fit-content;
    text-align: center;
    font-size: 1.2rem;
    padding: .5em 4em;
    margin: 0 auto;
    color: white;
    font-weight: 600;
    & span {
      display: inline-block;
      width: 1.1em;
      height: 1.1em;
      background: white;
      mask: url(../images/icon-line-color.svg) no-repeat center / contain;
      -weblit-mask: url(../images/icon-line-color.svg) no-repeat center / contain;
      margin-right: .5em;
    }
  }
}


/****** SNSリンク設定 ******/
.sns-link {
  width: fit-content;
  margin: 2rem auto 2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  & a {
    position: relative;
    display: block;
    font-size: 1rem;
    width: 9.5em;
    margin-bottom: 1em;
    padding: .5em 1em .5em 3.5em;
    background: white;
    box-shadow: var(--box-shadow1);
    font-weight: 600;
    border-radius: .4em;
    &::before {
      position: absolute;
      content: "";
      width: 1.5em;
      height: 1.5em;
      left: 1em;
      top: 0;
      bottom: 0;
      margin: auto 0;
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }
  }
  & a.-line::before {
    background-image: url(../images/icon-line-color.svg);
  }
  & a.-insta::before {
    background-image: url(../images/icon-insta-color.svg);
  }
  & a.-facebook::before {
    background-image: url(../images/icon-fb-color.svg);
  }
  & a:not(:last-child) {
    margin-right: 1em;
  }
}
@media screen and (max-width: 768px) {
  .sns-link {
    margin: 1rem auto 0;
    & a {
      width: 9em;
      font-size: .9rem;
      padding: .5em .5em .5em 3em;
      &::before {
        left: .7em;
      }
    }
  }
}


/****** カラム設定 ******/
:root {
  --column-box-icon-w: 1.7em;
}
.column-3 {
  display: block;
  width: 31%;
  min-width: 25rem;
  margin: 0 1% 2.5rem;
  & .-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--bd-r1);
    overflow: hidden;
    margin-bottom: 1rem;
    & img, iframe {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  & .-title {
    position: relative;
    font-size: 1.2rem;
    padding: 0 .7em;
    padding-right: 2em;
    border-left: var(--border3);
    margin: 0 0 .7em;
    &::after {
      position: absolute;
      content: "";
      width: var(--column-box-icon-w);
      height: var(--column-box-icon-w);
      top: 0;
      bottom: 0;
      right: 0;
      margin: auto 0;
      background: url(../images/icon-arrow2.svg) no-repeat center / contain;
      filter: var(--drop-shadow1);
    }
  }
  & .-tx {
    font-size: .95rem;
    margin-bottom: 0;
    & span {
      display: block;
      color: var(--color-accent1);
    }
  }
  & .-cat {
    width: fit-content;
    font-size: .9rem;
    padding: .2em 1.5em;
    color: white;
    background: var(--color-accent1);
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: .5em;
  }
}

/****** テーブル設定 ******/
:root {
  --table1-dt-w: 14em;
  --table1-dd-w: calc(100% - var(--table1-dt-w) - 2px);
}
.table1 {
  display: flex;
  flex-wrap: wrap;
  & dt, dd {
    font-size: 1.1rem;
    padding: 1em 2em;
    margin: 0 0 1px 1px;
  }
  & dt {
    width: var(--table1-dt-w);
    background: var(--color-accent1);
    color: white;
    font-weight: 600;
  }
  & dd {
    width: var(--table1-dd-w);
    background: #eee;
    & p {
      margin-bottom: 0;
      color: var(--color-accent2);
    }
  }
}


/****** トップページ ******/

/* hero */
:root {
  --hero-h: 90vh;
}
.hero {
  position: relative;
  height: var(--hero-h);
  background: url(../images/hero-image01-1.jpg) no-repeat center / cover;
  &::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.2);
  }
}
.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 85%;
  height: 100%;
  max-width: 700px;
  margin: 0 auto;
}
:root {
  --hero-img-w: 90%;
  --hero-img-pd: calc((100% - 45%) / 2);
}
.hero-box {
  width: 100%;
  padding-bottom: 1.5rem;
  & .hero-logo {
    position: relative;
    width: 100%;
    padding: 0 var(--hero-img-pd);
    & img {
      width: var(--hero-img-w);
      margin: 0 auto;
    }
  }
  & .hero-logo::before, .hero-logo::after {
    position: absolute;
    content: "";
    width: var(--hero-img-pd);
    height: 2px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: var(--color-accent1);
  }
  & .hero-logo::before {
    left: 0;
  }
  & .hero-logo::after {
    right: 0;
  }
}
.hero-message {
  margin: 2rem auto;
  & p {
      text-align: center;
      font-size: min(5.5vw, 2.8rem);
      color: white;
      font-weight: 900;
      transform: skewX(-5deg);
      margin-bottom: 0;
      line-height: 1.7;
      letter-spacing: .15em;
      text-shadow: var(--tx-shadow1);
    & span {
      font-size: 70%;
    }
  }
}
.hero-message-sub {
  font-size: min(3vw, 1.57rem);
  color: var(--color-accent1);
  font-family: var(--font-family-en);
  font-weight: 700;
  text-align: center;
  line-height: 1;
  padding: .3em 0 .3em;
  border-radius: 9999px;
  background: rgba(255,255,255,.7);
}
@media screen and (max-width: 768px) {
  :root {
    --hero-h: 35rem;
  }
}

/* News / Topics */
:root {
  --top-info-shift: 6rem;
}
.top-info {
  position: absolute;
  width: var(--max-width-sp1);
  max-width: var(--max-width2);
  bottom: calc(var(--top-info-shift) * -1);
  left: 0;
  right: 0;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  box-shadow: var(--box-shadow1);
  padding: 3rem;
  z-index: 2;
  & h2 {
    position: relative;
    font-size: 1.7rem;
    font-family: var(--font-family-en);
    color: var(--color-accent1);
    font-weight: 600;
    overflow: hidden;
    margin-bottom: .5em;
    &::before {
      position: absolute;
      content: "";
      width: 100%;
      height: 3px;
      left: 7.5em;
      bottom: .5em;
      background: var(--color-accent1);
    }
  }
  & a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: .5rem .8rem;
    padding-right: 3rem;
    border-bottom: 1px dotted rgba(0,0,0,.5);
    &::after {
      position: absolute;
      content: "";
      width: 1.2rem;
      height: 1.2rem;
      top: 0;
      bottom: 0;
      right: 1rem;
      margin: auto 0;
      background: url(../images/icon-arrow.svg) no-repeat center / contain;
    }
    & p {
      font-size: 1.15rem;
      height: fit-content;
      margin-bottom: 0;
      &.-date {
        width: fit-content;
        font-size: 125%;
        font-family: var(--font-family-en);
      }
      &.-category {
        width: 10em;
        font-size: 60%;
        text-align: center;
        margin: 0 2.5em;
        padding: .3em 1em;
        background: var(--color-accent1);
        color: white;
        font-weight: 600;
        border-radius: 9999px;
      }
    }
  }
  & a:not(:last-child) {
    margin-bottom: .5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-info {
    padding: 2rem;
    & h2 {
      font-size: 1.4rem;
      &::before {
        height: 2px;
      }
    }
    & a {
      flex-wrap: wrap;
      & p {
        width: 100%;
        font-size: 1rem;
      }
    }
  }
}

/* message */
.message-wrap {
  & .-img, .-contents {
    padding: 0 2%;
  }
  & .message-tx {
    margin: 3rem 0;
  }
}
@media screen and (max-width: 768px) {
  .-message .btn1 a {
    margin: 0 auto;
  }
}

/* lp */
.service-wrap {
  margin-bottom: 3rem;
}

/* movie */
.movie-box {
  & .-title::after {
    display: none;
  }
}

/* shiryo */
.shiryo-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  & .shiryo-box {
    width: 30%;
    height: fit-content;
    box-shadow: var(--box-shadow1);
  }
  & .shiryo-download {
    width: 100%;
    margin: 3rem 0;
    & p {
      width: fit-content;
      margin: 0 auto;
      text-align: center;
      background: var(--color-accent2);
      color: white;
      font-weight: 600;
      font-size: 1.2rem;
      padding: .3em 2em;
      border-radius: 9999px;
    }
  }
}
@media screen and (max-width: 768px) {
  .shiryo-wrap {
    & .shiryo-download {
      & p {
        font-size: 1rem;
      }
    }
  }
}

/* topix */
.-topics .inner {
  max-width: 100%;
  padding-top: 10rem;
}
.topics-wrap {
  width: 90%;
  margin: 0 auto 3rem;
}
.topics-box {
  margin: 0 1rem;
  & .-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 1rem;
    border-radius: var(--bd-r1);
    overflow: hidden;
    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  & .-cat {
    width: fit-content;
    font-size: .65rem;
    margin: 0 0 1em;
    padding: .3em 2em;
    background: var(--color-accent1);
    color: white;
    font-weight: 600;
    border-radius: 9999px;
  }
  & .-title {
    font-size: .9rem;
    padding: 0 .7em;
    padding-right: 2em;
    border-left: var(--border3);
    margin: 0 0 .7em;
  }
}
@media screen and (max-width: 768px) {
  .-topics .inner {
    padding-top: 9rem;
  }
}

/* faq */
.faq-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.faq-box {
  margin: 0 0 3rem;
  & .faq-area {
    position: relative;
    & > span {
      position: absolute;
      font-family: var(--font-family-en);
    }
    &.-q {
      font-size: 1.3rem;
      color: var(--color-accent2);
      padding: .5em;
      padding-left: 2.5em;
      font-weight: 600;
      & > span {
        width: 2em;
        height: 2em;
        top: .2em;
        left: 0;
        line-height: 1;
        background: var(--color-accent2);
        color: white;
        border-radius: 9999px;
      }
    }
    &.-a {
      margin-left: 3.5em;
      margin-top: 2em;
      padding: 0 1.5em;
      &::before {
        position: absolute;
        content: "";
        width: 3px;
        height: calc(100% - 1em);
        bottom: 0;
        left: 0;
        background: var(--color-accent1);
      }
      & > span {
        width: fit-content;
        height: fit-content;
        line-height: 1;
        font-size: 1.8em;
        top: -.5em;
        left: -0.85em;
        text-align: right;
        color: var(--color-accent1);
        font-weight: 600;
      }
    }
  }
}
@media screen and (max-width: 768px) {
  .faq-box {
    & .faq-area {
      &.-q {
        font-size: 1.1rem;
      }
    }
  }
}

/* LP SERVICEページ 設定
-------------------------------- */
.service-page {
  border-bottom: 5px solid var(--color-accent1);
  & .h-title4 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .service-page {
    & .inner {
      width: 95%;
      padding: 4rem 0 2rem;
    }
    & .h-title4 {
      font-size: 1.5rem;
    }
    & .h-title5 {
      width: 100%;
      text-align: center;
    }
  }
}

/* LP 背景パターン設定 */
.-lp-bk1 {
  position: relative;
  background: #e6e6e6;
  overflow: hidden;
  &::before {
    position: absolute;
    content: "";
    width: 50vw;
    height: 50vw;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #f2f2f2;
    border-radius: 9999px;
  }
}
.-lp-bk2 {
  background: url(../images/lp/lp-bk2.jpg) repeat-y center top / 100% auto;
}
.-lp-bk3 {
  background: url(../images/lp/lp-bk3.jpg) repeat-y center top / 100% auto;
}

/* LP リストデザイン設定 */
ul.lp-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 90%;
  max-width: 54rem;
  margin: 0 auto;
  & li {
    position: relative;
    width: 50%;
    min-width: 20em;
    list-style: none;
    padding-left: 1.5em;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1em;
    color: var(--color-accent2);
    letter-spacing: .1em;
    & span {
      display: block;
      font-size: 60%;
      font-weight: 400;
      color: var(--font-color-base);
      margin-top: .4em;
    }
    &::before {
      position: absolute;
      content: "";
      width: 1em;
      height: 1em;
      top: .3em;
      left: 0;
      background: url(../images/icon-arrow.svg) no-repeat center / contain;
    }
  }
}
@media screen and (max-width: 768px) {
  ul.lp-list {
    width: 90%;
    padding-left: 0;
    & li {
      width: 100%;
      font-size: 1.2rem;
      & span {
        font-size: 80%;
      }
    }
  }
}

/* LP テーブルデザイン設定 */
:root {
  --width-tb: 55rem;
}
.lp-table {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 2rem;
  & table {
    width: var(--width-tb);
    min-width: var(--width-tb);
    border-spacing: 3px;
    border-collapse: separate;
    border: 0;
    margin: 0 auto 1rem;
    & th, td {
      display: table-cell;
      padding: 1rem 2rem !important;
      font-family: var(--font-family-jp);
      text-align: center;
      vertical-align: middle;
      border: 0;
    }
    & th {
      background: var(--color-accent1);
      color: white;
      font-size: 1.3rem;
      font-weight: 900;
      & em {
        display: block;
        font-size: 50%;
      }
    }
    & td {
      font-size: 1.1rem;
      color: var(--color-accent2);
      font-weight: 600;
      background: #f2f2f2;
      & div {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        color: var(--color-accent2);
        font-size: 1.2rem;
        font-weight: 600;
        text-align: left;
        margin-bottom: 1em;
        line-height: 2;
        border-bottom: 1px solid var(--color-accent2);
        & span {
          display: inline-block;
          margin-left: 1em;
          font-weight: 900;
        }
      }
    }
    & tr:nth-child(odd) td {
      background: #e6e6e6;
    }
  }
}

/* LP 説明ボックスデザイン */
.lp-ex-contents {
  width: var(--width-tb);
  margin: 2rem auto;
  & p {
    text-align: left;
  }
}

/* LP 補足説明ボックスデザイン */
.ex-box p {
  max-width: var(--width-tb);
  background: white;
  font-size: .95rem;
  padding: 2em;
  border: 1px solid var(--font-color-base);
  margin: 0 auto;
  border-radius: var(--bd-r1);
  &.-small {
    font-size: .75rem;
  }
}

/* スペーサー */
.lp-spacer5 { height: 5rem; }

/* 定型文字 */
.-comment {
  font-size: 1.3rem;
  text-align: center;
  color: var(--color-accent1);
  margin-bottom: 2em;
  letter-spacing: .15em;
}

/* lp --head */
:root {
  --tx-st1: .3vw;
  --tx-st2: calc(var(--tx-st1) * -1);
  --tx-st-color: white;
  --fukidashi-w: 2vw;
  --fukidashi-shift: calc(var(--fukidashi-w) * -.95);
}
.-lp-head {
  position: relative;
  width: 100%;
  height: 48vw;
  background: url(../images/lp/head-bk1.jpg) no-repeat center / cover;
  & .-illust {
    position: absolute;
    width: 14vw;
    aspect-ratio: 1 / 1;
    & img {
      width: 100%;
    }
    &.-case1 {
      width: 14vw;
      top: 15%;
      left: 10%;
    }
    &.-case2 {
      width: 18vw;
      top: 10%;
      right: 8%;
    }
    &.-case3 {
      width: 12vw;
      bottom: 7%;
      left: 5%;
    }
    &.-case4 {
      width: 15vw;
      bottom: 5%;
      right: 5%;
    }
  }
  & .-title {
    width: fit-content;
    margin: 0 auto;
    padding-top: 4%;
    & h1 {
      text-align: center;
      font-weight: 900;
      & span {
        display: block;
        position: relative;
      }
      & .-head1 {
        width: fit-content;
        font-size: 2vw;
        color: var(--color-accent2);
        padding: 0 3vw;
        margin: 0 auto;
      }
      & .-head1::before, .-head1::after {
        position: absolute;
        content: "";
        height: 100%;
        aspect-ratio: 5 / 12;
        top: 0;
        bottom: 0;
        background: url(../images/lp/icon-fukidashi1.svg) no-repeat center / contain;
      }
      & .-head1::before {
        transform: scaleX(-1);
        left: 0;
      }
      & .-head1::after {
        right: 0;
      }
      & .-head2 {
        font-size: 4.2vw;
        color: var(--color-accent1);
        text-shadow:
          var(--tx-st1) 0 0 var(--tx-st-color),
          var(--tx-st2) 0 0 var(--tx-st-color),
          0 var(--tx-st1) 0 var(--tx-st-color),
          0 var(--tx-st2) 0 var(--tx-st-color),
          var(--tx-st1) var(--tx-st1) 0 var(--tx-st-color),
          var(--tx-st1) var(--tx-st2) 0 var(--tx-st-color),
          var(--tx-st2) var(--tx-st1) 0 var(--tx-st-color),
          var(--tx-st2) var(--tx-st1) 0 var(--tx-st-color);
        &.-size-l {
          font-size: 4.5vw;
        }
        &.-size-m {
          font-size: 4.2vw;
        }
        &.-size-s {
          font-size: 3.8vw;
        }
      }
    }
    & .-message {
      width: fit-content;
      height: fit-content;
      margin: 1rem auto;
      border-top: 10px solid var(--color-accent1);
      & p {
        font-size: 1.6vw;
        font-weight: 900;
        color: white;
        background: var(--color-accent2);
        padding: 0 1em;
        letter-spacing: .2em;
        & strong {
          font-size: 140%;
        }
      }
    }
  }
  & .-point {
    position: absolute;
    width: 70vw;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    & .-img {
      width: 44%;
      & img {
        width: 100%;
      }
    }
    & .-fukidashi {
      position: relative;
      width: fit-content;
      height: fit-content;
      background: white;
      border-radius: var(--bd-r1);
      padding: 1.2vw 1.7vw;
      margin: auto var(--fukidashi-w);
      &::after {
        position: absolute;
        content: "";
        width: var(--fukidashi-w);
        aspect-ratio: 17 / 10;
        background: white;
        clip-path: polygon(0 0, 100% 30%, 0 100%);
      }
      &.-case1 {
        margin-top: 5%;
        &::after {
          top: 15%;
          right: var(--fukidashi-shift);
        }
      }
      &.-case2 {
        margin-top: 6%;
        &::after {
          bottom: 25%;
          left: var(--fukidashi-shift);
          transform: scaleX(-1);
        }
      }
      & div {
        background: var(--color-accent1);
        color: white;
        text-align: center;
        font-size: 1.2vw;
        font-weight: 900;
        border-radius: 9999px;
      }
      & p {
        font-size: 3.2vw;
        color: var(--color-accent2);
        font-weight: 900;
        margin: .1em 0 0;
        line-height: 1;
        & span {
          position: relative;
          display: inline-block;
          font-size: 50%;
          bottom: .1vw;
          margin-left: .3vw;
        }
      }
    }
  }
}
@media screen and (max-width: 768px) {
  :root {
    --fukidashi-w: 3vw;
  }
  .-lp-head {
    height: 36rem;
    & .-illust {
      &.-case1 {
        width: 30vw;
        top: 7%;
        left: 4%;
      }
      &.-case2 {
        width: 34vw;
        top: 3%;
        right: -1%;
      }
      &.-case3 {
        width: 27vw;
        bottom: -2%;
        left: -4%;
      }
      &.-case4 {
        width: 26vw;
        bottom: 2%;
        right: -1%;
      }
    }
    & .-title {
      padding-top: 32%;
      & h1 {
        & .-head1 {
          font-size: 4vw;
          padding: 0 7vw;
          margin: 0 auto .5rem;
        }
        & .-head2 {
          &.-size-l {
            font-size: 8vw;
          }
          &.-size-m {
            font-size: 6.5vw;
          }
          &.-size-s {
            font-size: 5vw;
          }
        }
      }
      & .-message {
        border-top: 5px solid var(--color-accent1);
        & p {
          font-size: 3.2vw;
        }
      }
    }
    & .-point {
      width: 100%;
      & .-img {
        width: 45%;
      }
      & .-fukidashi {
        padding: 2.5vw 3vw;
        &.-case1 {
          margin-top: -8%;
          margin-right: -6%;
          &::after {
            top: 60%;
          }
        }
        &.-case2 {
            margin-top: -6%;
            margin-left: -2%;
        }
        & div {
          font-size: 3.2vw;
        }
        & p {
          font-size: 6vw;
        }
      }
    }
  }
}

/* lp --first */
.first-plan {
  & .-plan {
    width: 6.5rem;
    aspect-ratio: 1 / 1;
    background: white;
    border: 2px solid var(--color-accent2);
    border-radius: 9999px;
    margin-bottom: 1rem;
    & p {
      width: fit-content;
      height: fit-content;
      margin-bottom: 0;
      color: var(--color-accent2);
      text-align: center;
      font-size: .9rem;
      font-weight: 900;
      line-height: 1.3;
      padding-bottom: .6em;
      & span {
        display: block;
        width: 100%;
        color: var(--color-accent1);
        font-size: 150%;
        font-family: var(--font-family-en);
        margin-bottom: .1em;
        transform: skewX(-5deg);
      }
    }
  }
  & .-plan:not(:last-child) {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .first-plan {
    & .-plan {
      width: 30%;
      & p {
        font-size: 1rem;
      }
    }
  }
}

/* lp --offer */
.-lp-offer {
  position: relative;
  background: black;
  &::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/lp/offer-bk1.jpg) no-repeat center top / cover;
    opacity: .2;
  }
}
.service-offer {
  text-align: center;
  & a {
    display: inline-block;
    width: 80%;
    max-width: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .service-offer {
    & a {
      width: 90%;
    }
  }
}

/* lp --amount */
.lp-amount-wrap:not(:last-child) {
  margin-bottom: 5rem;
}

/* lp --about */
.-lp-about {
  & .-about-wrap {
    & .-img {
      width: 23rem;
    }
    & .-tx {
      width: fit-content;
      max-width: 42rem;
      & > p {
        display: inline;
        font-size: 1.3rem;
        line-height: 2.3;
        background: var(--marker1);
        font-weight: 600;
      }
    }
    & .-comment {
      margin-top: 2rem;
      & p {
        font-size: 1rem;
        text-align: left;
      }
    }
  }
}
@media screen and (max-width: 768px) {
  .-lp-about {
    & .-about-wrap {
      & .-tx {
        width: 90%;
        & > p {
          font-size: 1rem;
        }
      }
    }
  }
}

/* lp --manga */
.lp-manga-wrap {
  margin-top: 3rem;
  & img {
    width: 100%;
    display: block;
    max-width: 800px;
    margin: 1rem auto;
  }
}


/* lp --worries */
:root {
  --worries-arrow-h: 1.2em;
}
.worries-head {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  & img {
    display: block;
    width: 100%;
    max-width: var(--max-width2);
    margin: 0 auto;
  }
  & h2 {
    position: relative;
    margin-bottom: 4.5rem;
    padding: .5em;
    text-align: center;
    background: var(--color-accent2);
    color: white;
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: .2em;
    border-top: 5px solid var(--color-accent1);
    & span {
      display: inline-block;
      font-size: 130%;
      margin: 0 .5em;
    }
    &::after {
      position: absolute;
      content: "";
      width: var(--worries-arrow-h);
      aspect-ratio: 1 / 1;
      bottom: calc(var(--worries-arrow-h) * -.95);
      left: 0;
      right: 0;
      margin: 0 auto;
      background: var(--color-accent2);
      clip-path: polygon(0 0, 100% 0, 50% 100%);
    }
  }
}
@media screen and (max-width: 768px) {
  .worries-head {
    & h2 {
      margin-bottom: 3.5rem;
      font-size: 1.2rem;
    }
  }
}

.worries-box ul {
  width: fit-content;
  background: #e6e6e6;
  padding: 3rem;
  border-radius: var(--bd-r1);
  margin: 0 auto;
  & li {
    position: relative;
    list-style: none;
    padding: .2em 0;
    padding-left: 2.3em;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-accent2);
    letter-spacing: .05em;
    &::before {
      position: absolute;
      content: "";
      width: 1.8em;
      height: 1.8em;
      top: .4em;
      left: 0;
      background: url(../images/icon-check2.svg) no-repeat center / contain;
    }
    & strong {
      display: inline-block;
      font-size: 120%;
      background: var(--marker2);
      font-weight: 900;
      margin: 0 .2em;
    }
  }
  & li:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
.worries-clear {
  width: 100%;
  max-width: var(--max-width2);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .worries-box ul {
    width: 95%;
    padding: 1.5rem 1rem;
    & li {
      font-size: 1rem;
      padding-left: 2em;
      & strong {
        font-size: 110%;
      }
      &::before {
        width: 1.6em;
        height: 1.6em;
        top: .25em;
      }
    }
    & li:not(:last-child) {
      margin-bottom: 1em;
    }
  }
}


/* lp --case */
.lp-case-box {
  width: 25%;
  min-width: 21rem;
  background: white;
  border-radius: var(--bd-r1);
  overflow: hidden;
  box-shadow: var(--box-shadow1);
  margin: 0 1% 1.5rem;
  & .-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  & .-tx {
    position: relative;
    padding: 1.7rem 1rem;
    & .-num {
      position: absolute;
      width: fit-content;
      padding: 0 2em;
      top: -1em;
      left: 0;
      right: 0;
      margin: 0 auto;
      font-size: 1.3rem;
      font-weight: 600;
      font-family: var(--font-family-en);
      background: var(--color-accent1);
      color: white;
      clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
      letter-spacing: .2em;
      & span {
        display: inline-block;
        font-size: 120%;
        color: white;
      }
    }
    & h3 {
      width: fit-content;
      color: var(--color-accent2);
      font-size: 1.1rem;
      padding: .1em .3em;
      border-bottom: 3px solid var(--color-accent1);
      font-weight: 900;
      margin: 0 auto 1em;
    }
    & .-label {
      & p {
        width: fit-content;
        padding: .2em 1.5em;
        font-size: .8rem;
        color: var(--color-accent2);
        font-weight: 600;
        border: 1px solid var(--color-accent2);
        border-radius: 9999px;
        margin: 0 auto 1em;
      }
    }
    & .-case-price {
      text-align: center;
      font-size: 1.3rem;
      color: var(--color-accent1);
      font-weight: 900;
      transform: skewX(-5deg);
      margin-bottom: 0;
      line-height: 1.5;
      & span {
        display: inline-block;
        font-size: 165%;
        font-family: var(--font-family-en);
        margin: 0 .2em;
      }
    }
  }
}
@media screen and (max-width: 768px) {
  .lp-case-box {
    min-width: 90%;
    margin: 0 auto 2.5rem;
  }
}


/* lp --profile */
:root {
  --lp-profile-img-w: 23rem;
  --lp-profile-mg: 3rem;
  --lp-profile-tx-w: calc(100% - var(--lp-profile-img-w) - var(--lp-profile-mg));
}
.-lp-profile {
  & .-profile-wrap {
    max-width: 1100px;
    margin: 0 auto;
    & .-img {
      width: var(--lp-profile-img-w);
      margin: 0 auto 2rem;
    }
    & .-tx {
      width: var(--lp-profile-tx-w);
      margin-left: var(--lp-profile-mg);
      & .-profile-company {
        font-size: 1rem;
        color: var(--color-accent1);
        margin-bottom: 0;
        margin-left: .6em;
      }
      & h3 {
        font-size: 2rem;
        font-weight: 900;
        color: var(--color-accent2);
        padding: .3em;
        border-bottom: 2px solid var(--color-accent1);
        margin-bottom: 1em;
        & span {
          display: inline-block;
          margin-right: 1.2em;
          font-size: 65%;
        }
      }
      & .-profile-box {
        padding: 0 3%;
        line-height: 1.7;
        & p {
          font-size: 1rem;
          &.-career {
            margin-bottom: 2em;
          }
          &.-message {
            margin-top: 0;
            color: var(--color-accent2);
            font-weight: 600;
          }
        }
      }
    }
  }
}
@media screen and (max-width: 768px) {
  :root {
    --lp-profile-img-w: 70%;
    --lp-profile-mg: 0;
    --lp-profile-tx-w: 100%;
  }
}


/* lp --sdgs */
.-sdgs-wrap {
  max-width: var(--max-width3);
  margin: 0 auto;
  & .-img {
    padding: 0 3.5rem;
  }
  & .-tx {
    padding: 3rem;
    background: white;
    box-shadow: var(--box-shadow1);
    & h3 {
      font-size: 1.5rem;
      color: var(--color-accent1);
      font-weight: 900;
      margin-bottom: 1.5em;
    }
    & p {
      font-size: 1rem;
      & span {
        color: var(--color-accent1);
      }
    }
    & p:last-child {
      margin-bottom: 0;
    }
  }
}
@media screen and (max-width: 768px) {
  .-sdgs-wrap {
    & .-img {
      padding: 0 0 3rem;
    }
    & .-tx {
      padding: 2rem;
      & h3 {
        font-size: 1.3rem;
      }
    }
  }
}

/* lp --text */
.lp-text-wrap {
  width: 90%;
  max-width: var(--max-width3);
  margin: 0 auto;
  & p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent2);
    & strong {
      font-size: 120%;
      background: var(--marker2);
      margin: 0 .2em;
    }
  }
}

/* lp --merit */
:root {
  --lp-merit-pd: 10px;
  --lp-merit-img-w: 18rem;
  --lp-merit-tx-w: calc(100% - var(--lp-merit-img-w));
}
.lp-merit-wrap {
  max-width: var(--max-width2);
  margin: 0 auto;
  & .lp-merit-box {
    width: 85%;
    & .-img {
      position: relative;
      width: var(--lp-merit-img-w);
      aspect-ratio: 1 / 1;
      border-radius: 50% 0 50% 50%;
      background: var(--color-accent1);
      padding: var(--lp-merit-pd);
      & p {
        position: absolute;
        top: 0;
        right: 0;
        font-family: var(--font-family-en);
        font-size: 2rem;
        line-height: 1;
        color: white;
        padding: var(--lp-merit-pd);
        margin-bottom: 0;
      }
      & img {
        display: block;
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 9999px;
        margin: 0 auto;
      }
    }
    & .-tx {
      width: var(--lp-merit-tx-w);
      padding: 0 3rem;
      & h3 {
        font-size: 1.5rem;
        color: var(--color-accent1);
        font-weight: 900;
        margin-bottom: 1em;
      }
      & p {
        font-size: 1.1rem;
      }
    }
    &:nth-child(3n + 1) { margin: 0 auto 0 0; }
    &:nth-child(3n + 2) { margin: 0 auto; }
    &:nth-child(3n) { margin: 0 0 0 auto; }
  }
  & .lp-merit-box:not(:last-child) {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --lp-merit-pd: 5px;
    --lp-merit-img-w: 60%;
    --lp-merit-tx-w: 100%;
  }
  .lp-merit-wrap {
    & .lp-merit-box {
      width: 100%;
      margin: 0 auto 3rem !important;
      & .-img {
        margin-bottom: 2rem;
      }
      & .-tx {
        padding: 0 2rem;
        & h3 {
          font-size: 1.3rem;
        }
      }
    }
  }
}

/* lp --flow */
.lp-flow-box {
  padding: 0 3rem;
  & h3 {
    background: var(--color-accent1);
    color: white;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 900;
    padding: .3em 2em;
    border-radius: 9999px;
  }
}
.lp-flow-box:not(:last-child) {
  border-right: 2px solid var(--color-accent2);
}
.lp-flow-slide {
  position: relative;
  &::before {
    position: absolute;
    content: "";
    width: 70%;
    aspect-ratio: 1 / 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #f2f2f2;
    border-radius: 9999px;
  }
}
.lp-flow-slide-inner {
  position: relative;
  padding: 3rem 2rem;
  & .-step {
    font-family: var(--font-family-en);
    font-size: 1.8rem;
    color: var(--color-accent1);
    font-weight: 900;
    margin-bottom: .5em;
    text-align: center;
    letter-spacing: .1em;
    line-height: 1;
    & span {
      font-size: 150%;
    }
  }
  & h4 {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--color-accent2);
    text-align: center;
  }
  & .-img {
    width: 10rem;
    aspect-ratio: 1 / 1;
    margin: 1rem auto;
    & img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
  & .-caption {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .lp-flow-box {
    width: 95%;
    padding: 2rem 0;
    & h3 {
      font-size: 1.2rem;
    }
  }
  .lp-flow-box:not(:last-child) {
    border-right: 0;
  }
  .lp-flow-slide-inner {
    padding: 2rem 0 0;
    & .-step {
      font-size: 1.4rem;
    }
    & h4 {
      font-size: 1.4rem;
    }
    & .-img {
      width: 55%;
    }
    & .-caption {
      font-size: 1rem;
    }
  }
}


/* lp --plan */
.lp-plan-box {
  width: calc(100% / 3);
  padding: 0 1rem;
  margin-bottom: 2rem;
  & h3 {
    font-size: 1.6rem;
    text-align: center;
    padding: .2em;
    color: var(--color-accent2);
    font-weight: 900;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--color-accent2);
    letter-spacing: .1em;
    & span {
      font-family: var(--font-family-en);
      font-size: 130%;
      color: var(--color-accent1);
      margin-right: .2em;
    }
  }
  & .-tx {
    min-height: 11.5rem;
    padding: 0 .5rem;
    margin-bottom: 1rem;
    & h4 {
      font-size: 1.2rem;
      color: white;
      background: var(--color-accent2);
      font-weight: 900;
      text-align: center;
      padding: .3em 2em;
      border-radius: 9999px;
      margin-bottom: .5rem;
    }
    & p {
      font-size: 1.1rem;
      text-align: center;
      margin-bottom: 0;
      & span {
        color: var(--color-accent1);
        font-weight: 600;
        & .tx-large {
          font-size: 200%;
          font-family: var(--font-family-en);
          font-weight: 900;
        }
      }
    }
  }
}
.lp-plan-box.-sub {
  & h3 {
    font-size: 1.25rem;
    margin-bottom: .5rem;
  }
  & .-tx {
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .lp-plan-box {
    width: 100%;
    margin: 0 auto 1rem;
    & .-tx {
      min-height: auto;
    }
  }
}

/* lp -special */
.lp-special-wrap {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  & .-left {
    padding-right: 3%;
  }
}
:root {
  --special-icon-w: 4.7rem;
}
.lp-special-list {
  position: relative;
  display: flex;
  margin-bottom: .7rem;
  &::before {
    position: absolute;
    content: "";
    width: calc(100% - (var(--special-icon-w) * .8));
    height: 5px;
    bottom: 26%;
    right: 0;
    background: var(--color-accent1);
  }
  & .-icon {
    position: relative;
    width: var(--special-icon-w);
    aspect-ratio: 40 / 59;
    background: url(../images/lp/lp-special0.png) no-repeat center / contain;
    & span {
      position: absolute;
      display: inline-block;
      width: 100%;
      top: 23%;
      left: 0;
      font-size: calc(var(--special-icon-w) * .34);
      text-align: center;
      font-weight: 900;
      font-family: var(--font-family-jp2);
      transform: skewX(-7deg);
    }
  }
  & p {
    flex-grow: 1;
    font-size: 2.1rem;
    color: var(--color-accent2);
    font-weight: 900;
    margin: 0 0 0 .7em;
    padding-top: .4em;
    transform: skewX(-7deg);
  }
}
@media screen and (max-width: 768px) {
  :root {
    --special-icon-w: 4rem;
  }
  .lp-special-list {
    width: 90%;
    margin: 0 auto .5rem;
    &::before {
      height: 3px;
    }
    & p {
      font-size: 1.5rem;
      padding-top: .6em;
    }
  }
}

/* lp -faq */
.faq-wrap.-lp {
  & .faq-box {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    padding-right: 3rem;
    box-shadow: var(--box-shadow1);
    margin-bottom: 1.5rem;
    & .faq-area {
      position: relative;
      &.-q {
        margin-bottom: 0;
        cursor: pointer;
        padding-right: 2em;
        &::before, &::after {
          position: absolute;
          content: "";
          width: 1.2em;
          height: 5px;
          top: 0;
          bottom: 0;
          right: 0;
          margin: auto 0;
          transition: .5s;
        }
        &::before {
          background: var(--color-accent2);
          transform: rotate(90deg);
        }
        &::after {
          background: var(--color-accent1);
        }
      }
      &.-a {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: .5s;
      }
    }
    &.-active {
      & .faq-area {
        &.-q {
          &::before {
            transform: rotate(0);
            opacity: 0;
          }
        }
        &.-a {
          margin: 2em 0 1.5em 3.5em;
          max-height: 50rem;
          overflow: visible;
        }
      }
    }
  }
}
@media screen and (max-width: 768px) {
  .faq-wrap.-lp {
    width: 95%;
    margin: 0 auto;
    & .faq-box {
      border-radius: 1rem;
      padding: 1.2rem;
      padding-right: 1.5rem;
      &.-active {
        & .faq-area {
          &.-a {
            margin: 1.5em 0 1.5em 2em;
          }
        }
      }
    }
  }
}

/* lp -form */
.lp-form-wrap {
  width: 95%;
  max-width: var(--max-width3);
  margin: 0 auto;
  background: white;
  border-radius: var(--bd-r1);
  box-shadow: var(--box-shadow1);
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  .lp-form-wrap {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}


/* 経営コンサル支援（management）ページ
-------------------------------- */
:root {
  --mg-service-mg: 3%;
  --mg-service-img-w: 27rem;
  --mg-service-tx-w: calc(100% - var(--mg-service-img-w) - var(--mg-service-mg));
}
.-management {
  & .-mg-head {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 18rem;
    background: var(--color-accent2);
    & .-mg-head-bk {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      opacity: .5;
      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
    & .-mg-head-wrap {
      position: relative;
      width: fit-content;
      height: fit-content;
      & p {
        color: white;
        text-align: center;
        margin-bottom: 0;
        &.-jp {
          font-size: 2rem;
          margin-bottom: .5em;
        }
        &.-en {
          font-size: 1rem;
          font-family: var(--font-family-en);
        }
      }
    }
  }
  & .lp-merit-wrap {
    & .lp-merit-box {
      &:nth-child(3n + 1) {
        margin: 0 auto;
      }
      &:nth-child(3n) {
        margin: 0 auto;
      }
    }
    & .lp-merit-box:not(:last-child) {
      margin-bottom: 3rem;
    }
  }
  & .-mg-service-wrap {
    & .-img {
      width: var(--mg-service-img-w);
      border-radius: var(--bd-r1);
      overflow: hidden;
    }
    & .-tx {
      width: var(--mg-service-tx-w);
      padding: 2rem;
      background: white;
      border-radius: var(--bd-r1);
      margin-left: var(--mg-service-mg);
      box-shadow: var(--box-shadow1);
    }
    & ul {
      padding: 0 0.5rem;
      & li {
        position: relative;
        list-style: none;
        padding: .5em 0;
        padding-left: 2em;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--color-accent2);
        letter-spacing: .05em;
        &::before {
          position: absolute;
          content: "";
          width: 1.3em;
          height: 1.3em;
          top: .65em;
          left: 0;
          background: url(../images/icon-check2.svg) no-repeat center / contain;
        }
      }
    }
  }
  & .-mg-flow {
    width: 60%;
    & .lp-flow-slide-inner {
      & .-caption {
        width: 80%;
        margin: 0 auto;
        text-align: center;
        min-height: 8em;
        background: white;
        padding: 3% 4%;
        border-radius: var(--bd-r1);
        box-shadow: var(--box-shadow1);
      }
    }
  }
  & .lp-plan-box {
    & .-tx {
      min-height: 8rem;
    }
  }
  .mg-ex-box {
    width: fit-content;
    max-width: var(--width-tb);
    background: white;
    font-size: .95rem;
    padding: 2.5rem 3rem;
    border: 1px solid var(--font-color-base);
    margin: 0 auto;
    border-radius: var(--bd-r1);
    & h3 {
      font-size: 1.3rem;
      margin: 2rem 0 .5rem;
    }
    & h4 {
      margin: .5rem 0 .5rem;
    }
    & *:first-child {
      margin-top: 0;
    }
  }
}
@media screen and (max-width: 768px) {
  :root {
    --mg-service-img-w: 100%;
    --mg-service-tx-w: 100%;
  }
}

/* slick設定
-------------------------------- */
:root {
  --slick-arrow-w: 3rem;
  --slick-arrow-shift: -5%;
  --slick-dot-size: 15px;
}
.slick-prev, .slick-next {
  width: var(--slick-arrow-w);
  height: var(--slick-arrow-w);
  top: 35%;
  z-index: 2;
}
.slick-prev {
  left: var(--slick-arrow-shift);
}
.slick-next {
  right: var(--slick-arrow-shift);
}
.slick-prev:before, .slick-next:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/icon-arrow2.svg) no-repeat center / contain;
  filter: var(--drop-shadow1);
  opacity: 1;
}
.slick-prev:before {
  transform: scaleX(-1);
}
.slick-dots li button:before {
  font-size: var(--slick-dot-size);
  color: var(--color-accent2);
}
.slick-dots li.slick-active button:before {
  color: var(--color-accent1);
  opacity: 1;
}

/* lp-flow slider設定 */
:root {
  --flow-arrow-w: 2rem;
  --flow-arrow-shift: 5%;
}
.service-page {
  & .slick-prev, .slick-next {
    width: var(--flow-arrow-w);
    height: var(--flow-arrow-w);
    top: 50%;
  }
  & .slick-prev {
    left: var(--flow-arrow-shift);
  }
  & .slick-next {
    right: var(--flow-arrow-shift);
  }
  & .slick-prev:before, .slick-next:before {
    background: var(--color-accent1);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
}
@media screen and (max-width: 768px) {
  :root {
    --flow-arrow-w: 1.5rem;
    --flow-arrow-shift: 3%;
    --slick-dot-size: 12px;
  }
  .slick-dots li {
    width: 14px;
  }
}


/* 下層ページ（固定ページ）
-------------------------------- */
.page:not(.home) {
  & .content {
    & .page-head {
      position: relative;
      padding: 10rem 0 6rem;
      border-bottom: 2px solid var(--color-accent1);
      &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: white;
        opacity: .75;
      }
      & h1 {
        position: relative;
        text-align: center;
        font-size: 1.6rem;
        color: var(--color-accent2);
      }
    }
    & .page-contents {
      & .inner > *:first-child {
        margin-top: 0;
      }
      & h2, h3, h4, h5 {
        position: relative;
        margin: 1.5em 0 1em;
      }
      & h2 {
        font-size: 1.4rem;
        border-bottom: .2em solid var(--color-accent1);
        padding: .3em;
        margin: 2em auto 2em;
      }
      & h3 {
        font-size: 1.25rem;
        border-left: .3em solid var(--color-accent1);
        padding: 0 .7em;
      }
      & h4 {
        font-size: 1.2rem;
        padding-left: 1.3em;
        &::before {
          position: absolute;
          content: "";
          width: .7em;
          height: .7em;
          top: 0;
          bottom: 0;
          left: 0;
          margin: auto 0;
          background: var(--color-accent1);
          border-radius: 9999px;
        }
      }
      & h5 {
        font-size: 1.15rem;
        color: var(--color-accent1);
      }
    }
    & ul.wp-block-list {
      padding-left: .5em;
      & li {
        position: relative;
        list-style: none;
        padding: .5em;
        padding-left: 2em;
        &::before {
          position: absolute;
          content: "";
          width: 1.2em;
          height: 1.2em;
          top: .65em;
          left: 0;
          background: var(--color-accent1);
          mask: url(../images/icon-check.svg) no-repeat center / contain;
        }
      }
    }
    & ol.wp-block-list {
      padding-left: .5em;
       margin-left: 1.5rem;
      & li {
        padding: .3em;
        &::marker {
          font-weight: 600;
          color: var(--color-accent1);
          font-family: var(--font-family-en);
        }
      }
    }
    & .post-form-wrap {
      max-width: 850px;
      margin: 0 auto;
    }
  }
}
@media screen and (max-width: 768px) {
  .page:not(.home) {
    & .content {
      & .page-head {
        padding: 8rem 3rem 4rem;
      }
    }
  }
}

/* Wordpressデフォルトブロック設定 */
.page:not(.home) {
  & .image-column {
    & .wp-block-columns {
      margin-bottom: 4rem;
      & h3 {
        margin: .5em 0 1em;
      }
    }
  }
}
/* Wordpressデフォルトカラム内画像サイズ調整 */
.wp-original-column {
  & .wp-block-image img {
    aspect-ratio: 5 / 3;
    object-fit: cover;
  }
}

/* page-company */
.company-table {
  max-width: 850px;
  margin: 0 auto;
}

/* page-partner */
.partner-menu {
  flex-wrap: wrap !important;
}
.partner-table {
  & .wp-block-columns {
    gap: .5rem !important;
  }
  & .wp-block-column {
    flex-basis: auto !important;
    flex-grow: initial !important;
  }
  & .wp-block-column:first-child {
    width: 12rem;
  }
  & h3 {
    margin: 0 !important;
    font-size: 1.2rem !important;
  }
  & p {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .partner-menu {
    & .wp-block-buttons {
      width: 45%;
    }
  }
}


/* 投稿 / アーカイブ 共通設定
-------------------------------- */

/* ぱんくず */
.p-breadcrumb {
  svg:not([fill]) {
    fill: var(--color-accent1);
  }
}
.single-post .p-breadcrumb, .archive .p-breadcrumb {
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 0 0 auto;
    z-index: 999;
    & .p-breadcrumb__list {
      padding: 0;
      justify-content: flex-end;
    }
}
@media screen and (max-width: 768px) {
  .single-post .p-breadcrumb, .archive .p-breadcrumb {
    & .p-breadcrumb__list {
      justify-content: flex-start;
    }
  }
}

.single-page, .archive-page {
  margin-top: 6rem;
  margin-bottom: 4rem;
  & .page-contents {
    width: 90%;
    max-width: var(--max-width3);
    margin: 0 auto;
    /* アイキャッチ画像 */
    & .p-entry__thumb {
      width: 80%;
      margin: 1rem auto;
    }
    /* 見出し */
    & h1 {
      font-size: 1.5rem;
      padding: .4em .5em;
      border-top: var(--border2);
      border-bottom: var(--border2);
      margin-top: 3rem;
    }
    & h2 {
      font-size: 1.3rem;
      border-bottom: var(--border2);
      padding: .2em .4em;
    }
    & h3 {
      font-size: 1.2rem;
      padding: 0 .4em;
      padding-left: 1em;
      border-left: var(--border3);
    }
  }
}
.archive-page {
  & .page-contents {
    & h2 {
      font-size: .9rem !important;
    }
  }
}

@media screen and (max-width: 768px) {
  .single-page, .archive-page {
    margin-top: 6.5rem;
    & .page-contents {
      & .c-pageTitle__main {
        font-size: 1.2rem;
        margin-top: 1rem;
      }
    }
  }
}


/* サイドバー・関連情報
-------------------------------- */
aside#sidebar {
  margin-top: 4rem;
}
aside#sidebar h2.wp-block-heading,
.p-entry__related h2.c-bottomSection__title {
  position: relative;
  font-size: 1rem;
  padding-left: 2.5rem;
  text-align: left;
}
aside#sidebar h2.wp-block-heading::before,
.p-entry__related h2.c-bottomSection__title::before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--color-accent1);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}


/* プラグイン設定
-------------------------------- */
:root {
  --form-input-mg: 2rem;
  --form-input-w: calc(100% - (var(--form-input-mg)) * 2);
}
@media screen and (max-width: 768px) {
  :root {
    --form-input-mg: 1rem;
  }
}

/****** forminator ******/
form.forminator-ui {
  width: 100% !important;
  margin: 0 auto !important;
}
.forminator-field {
  text-align: left;
}

.forminator-field label {
  position: relative;
  padding: 1em 1.5em 1em 2em;
  font-size: 1.1rem;
  line-height: 1.5 !important;
  font-weight: 900;
  color: var(--color-accent2);
  font-family: var(--font-family-jp);
  border-bottom: 1px solid #999 !important;
  margin-bottom: 1.5rem !important;
}
.forminator-field label::before {
  position: absolute;
  content: "";
  width: 1.2em;
  height: 1.2em;
  top: 0;
  bottom: 0;
  left: .4em;
  margin: auto 0;
  background: url(../images/icon-arrow.svg) no-repeat center center / contain;
}

.forminator-field input,
.forminator-field textarea {
  max-width: var(--form-input-w) !important;
  margin-left: var(--form-input-mg) !important;
  border: 1px solid #999;
  border-radius: 3px !important;
  background: #f9f4ed;
}

.forminator-button {
  display: block !important;
  background: var(--color-accent2) !important;
  margin: 0 auto 1rem !important;
  padding: 1em 2.5em !important;
  border-radius: 3px !important;
  box-shadow: var(--box-shadow1) !important;
  color: white !important;
  font-weight: 400;
  letter-spacing: .2em;
}

span.forminator-error-message,
span.forminator-required {
  color: var(--color-accent1) !important;
  font-size: 80%;
}

.forminator-field-consent {
  & .forminator-field {
    margin-top: 2rem !important;
  }
  & .forminator-checkbox__wrapper {
    justify-content: center;
    align-items: center !important;
  }
  & .forminator-field label {
    margin-bottom: 0 !important;
    border: 0 !important;
    &::before {
      display: none;
    }
  }
  & .forminator-checkbox {
    padding: 0 !important;
  }
}

/* 必須マーク */
span.forminator-required {
  display: inline-block;
  position: relative;
  color: initial;
  margin-left: 1rem;
  &::after {
    position: absolute;
    content: "必須";
    width: 4em;
    height: fit-content;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    font-size: .7rem;
    padding: .3em 0;
    color: white;
    background: var(--color-accent1);
    text-align: center;
    letter-spacing: .2em;
    border-radius: 2px;
    font-weight: 600;
  }
}



/* フッター
-------------------------------- */

/* お問い合わせエリア */
.-footer-contact {
  position: relative;
  background: var(--color-accent2);
  &::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/footer-image01-1.jpg) no-repeat center / cover;
    opacity: .2;
  }
}
.footer-contact-wrap {
  position: relative;
  z-index: 2;
}
.footer-contact-box {
  & .-tx {
    color: white;
    text-align: center;
    font-size: 1.1em;
    line-height: 2.3;
    margin-bottom: 2.5em;
  }
}
.footer-contact-box:not(:last-child) {
  border-right: 1px solid white;
}
@media screen and (max-width: 768px) {
  .footer-contact-box {
    & .-tx {
      font-size: 1em;
    }
  }
  .footer-contact-box:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid white;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}


/* フッター ロゴ・メニュー */
.footer__logo {
  width: 10rem;
  margin: 0 auto;
}
.footer-info {
    text-align: center;
    font-size: .85rem;
    margin-bottom: 3rem;
}
.footer__nav {
  margin-bottom: 2rem;
}
.footer__submenu {
  text-align: center;
  & a {
    display: inline-block;
    font-size: .85rem;
    padding: 0 1em;
    margin-bottom: 1em;
  }
  & a:not(:last-child) {
    border-right: 1px solid gray;
  }
}

.-footer-contact.-service {
  display: none;
}

/* copyright */
p.c-copyright {
  padding: 1rem 0;
  margin-bottom: 0;
  background: var(--color-accent1);
  color: white;
  font-family: var(--font-family-sans);
}

@media screen and (max-width: 768px) {

}