@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: #5d82c1;
}
/***** 初期値 *****/
:root {
  /* 色設定 */
  --font-color-base: white;
  --font-color-gray: #868686;

  --color-accent1: black;
  --color-accent2: #231815;
  --color-accent3: #0071bc;
  --color-accent4: #c90546;

  --color-bk1: #f2f2f2;

  --op-bk: rgba(255,255,255,.6);
  --op-bk2: rgba(255,255,255,.9);

  --bg-color0: white;
  --bg-color1: #f2f2f2;
  --bg-color2: #5d82c1;

  --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 2px rgba(0,0,0,.5);
  --box-shadow1: 1px 1px 3px rgba(0,0,0,.2);
  --drop-shadow1: drop-shadow(1px 1px 3px rgba(0,0,0,.3));
  --max-width1: 1800px;
  --max-width2: 1200px;
  --max-width3: 1000px;
  --max-width-sp1: 90%;
  --border1: 1px solid rgba(255,255,255,.5);
  --border2: 2px solid white;
  --border3: 3px solid white;
  --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: 90%;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 70%;
  }
}

body {
  background: black;
}

.wrapper {
  position: relative;
}

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

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

/* テキスト設定 */
.font-en { font-family: var(--font-family-en); }

.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: 2.3;
  margin-bottom: 1.5em;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1rem;
  }
}

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: .7s;
  color: var(--color-accent3);
}
a:hover {
  opacity: 0.7;
  transform: translate(0, -3px);
}
.hover-action {
  transition: .7s;
  &:hover {
    opacity: 0.7;
    transform: translate(0, -3px);
  }
}

/* その他 */
.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 }
.pc_tb { display: block }
.sp { display: none }
.pc-inline { display: inline-block }
.sp-inline { display: none }
@media screen and (max-width: 1200px) {
  .pc { display: none }
}
@media screen and (max-width: 768px) {
  .pc_tb { 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-r {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  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;
}

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


/* header
-------------------------------- */
:root {
  --header-h: 7rem;
  --header-logo-w: 18rem;
  --hm-btn-w: 3rem;
  --hm-btn-inner-w: calc(var(--hm-btn-w) * .45);
}
.header {
  position: fixed;
  top: var(--ark-adminbar_height);
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  background: initial;
  padding: .5rem 1rem;
  z-index: 9999;
  & .header__logo {
    width: var(--header-logo-w);
    height: fit-content;
    background: initial;
    border-radius: 0;
    padding: 0;
    margin: 0 auto;
    background: rgba(0,0,0,.7);
    padding: .5rem 1rem;
    border-radius: 3px;
  }
  & .header__nav {
    display: none;
    height: fit-content;
    background: initial;
    border-radius: 0;
    padding: 0;
    margin-right: 0;
    transition: .5s;
  }
  & .hm-btn {
    display: none;
    position: absolute;
    width: var(--hm-btn-w);
    height: var(--hm-btn-w);
    min-height: 0;
    top: 0;
    bottom: 0;
    left: 2rem;
    margin: auto 0;
    background: white;
    border-radius: 9999px;
    cursor: pointer;
    transition: .5s;
    overflow: hidden;
    opacity: 1;
    & .-inner {
      position: relative;
      width: var(--hm-btn-inner-w);
      aspect-ratio: 1 / .8;
      & span {
        position: absolute;
        display: block;
        width: 100%;
        height: 3px;
        background: var(--color-accent1);
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto 0;
        caret-color: transparent;
        transition: .5s;
      }
      & span:first-child {
        bottom: auto;
      }
      & span:nth-child(2) {
        width: 90%;
      }
      & span:last-child {
        width: 80%;
        top: auto;
      }
    }
  }
  /* header-独立contactボタン */
  & .head-contact {
    position: absolute;
    width: fit-content;
    height: fit-content;
    top: 0;
    bottom: 0;
    right: 2rem;
    margin: auto 0;
    & a {
      position: relative;
      padding: .5em 1em;
      padding-left: 3em;
      background: white;
      color: black;
      font-size: 1.1rem;
      font-family: var(--font-family-en);
      font-weight: 600;
      border-radius: 9999px;
      &::before {
        position: absolute;
        content: "";
        width: 1.3em;
        height: 1px;
        top: 0;
        bottom: 0;
        left: 1em;
        margin: auto 0;
        background: black;
      }
    }
    & a.sp {
      width: var(--hm-btn-w);
      height: var(--hm-btn-w);
      padding: 0;
      &::before {
        display: none;
      }
      & span {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: black;
        mask: url(../images/icon-mail2.svg) no-repeat center / 70%;
        -webkit-mask: url(../images/icon-mail2.svg) no-repeat center / 70%;
      }
    }
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --header-logo-w: 16rem;
  }
  .header {
    & .header__nav {
      position: fixed;
      display: block;
      left: -20rem;
      max-height: 0;
      background: rgba(0,0,0,.9);
      border-radius: var(--bd-r1);
      padding: 3rem;
      opacity: 0;
    }
    & .hm-btn {
      display: flex;
      max-height: var(--hm-btn-w);
      opacity: 1;
    }
  }
  .header.-active {
    & .header__nav {
      top: 6rem;
      left: 4rem;
      display: block;
      max-height: 90vh;
      opacity: 1;
    }
    & .hm-btn {
      & .-inner {
        & span {
          opacity: 0;
        }
        & span:first-child {
          opacity: 1;
          bottom: 0;
          transform: rotate(45deg);
        }
        & span:last-child {
          width: 100%;
          opacity: 1;
          top: 0;
          transform: rotate(-45deg);
        }
      }
    }
  }
}
@media screen and (max-width: 768px) {
  :root {
    --header-h: 5rem;
  }
  .header {
    background: black;
    & .header__nav {
      padding: 3rem;
    }
    & .hm-btn {
      left: 1rem;
    }
    & .head-contact {
      right: 1rem;
    }
  }
  .header.-active {
    & .header__nav {
      top: 8rem;
    }
  }
}

/* メニュースタイル
-------------------------------- */
:root {
  --menu-icon-w: 1em;
}
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  & > a {
    position: relative;
    display: block;
    width: fit-content;
    height: fit-content;
    font-size: 1.4rem;
    padding: 0;
    color: var(--color-accent2);
    letter-spacing: .15em;
    line-height: 1.7;
    font-weight: 300;
    font-family: var(--font-family-en);
    color: var(--font-color-base);
    /* ナビメニュー内ボタン */
    &.-btn {
      font-size: 90%;
      padding: .5em 1em !important;
      background: var(--color-accent1);
      color: white;
      border-radius: 5px;
    }
  }
  & > a:not(:last-child) {
    margin-right: 2em;
  }
}
@media screen and (max-width: 1200px) {
  .nav-menu {
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
    & > a {
      width: 100%;
      &.-btn {
        text-align: center;
      }
    }
    & > a:not(:last-child) {
      margin-right: 0;
      margin-bottom: 1em;
    }
  }
}

/* サブメニュー */
:root {
  --submenu-fukidashi-w: 1rem;
}
.nav-menu .have-menu {
  position: relative;
  width: fit-content;
  height: fit-content;
  font-size: 1rem;
  padding-left: 0;
  color: var(--color-accent2);
  letter-spacing: .15em;
  line-height: 1.7;
  font-weight: 600;
  padding-right: 1.5em;
  font-family: var(--font-family-jp);
  cursor: pointer;
  &::after {
    position: absolute;
    content: "";
    width: .8em;
    height: .8em;
    top: .5em;
    right: 0;
    margin: 0;
    background: var(--color-accent1);
    mask: url(../images/icon-plus.svg) no-repeat center / contain;
    -webkit-mask: url(../images/icon-plus.svg) no-repeat center / contain;
    transition: .5s;
  }
  & .-sub-menu {
    position: absolute;
    top: 1.8rem;
    left: 0;
    max-width: 0;
    max-height: 0;
    transition: .5s;
    overflow: hidden;
    & .-sub-menu-inner {
      position: relative;
      width: fit-content;
      height: fit-content;
      background: var(--op-bk2);
      border-radius: var(--bd-r1);
      padding: 1rem;
      &::before {
        position: absolute;
        content: "";
        width: var(--submenu-fukidashi-w);
        height: var(--submenu-fukidashi-w);
        top: calc(var(--submenu-fukidashi-w) * -1);
        left: var(--submenu-fukidashi-w);
        background: var(--op-bk2);
        clip-path: polygon(50% 0, 100% 100%, 0% 100%);
      }
      & a {
        position: relative;
        display: block;
        width: max-content;
        padding-left: 1.5em;
        font-size: .9rem;
        color: var(--font-color-base);
        &::before {
          position: absolute;
          content: "";
          width: .8em;
          height: .8em;
          top: .5em;
          left: 0;
          margin: 0;
          background: var(--color-accent1);
          mask: url(../images/icon-arrow.svg) no-repeat center / contain;
          -webkit-mask: url(../images/icon-arrow.svg) no-repeat center / contain;
        }
      }
      & a:not(:last-child) {
        margin-bottom: 1em;
      }
    }
  }
  &.-active::after {
    transform: rotate(180deg);
    mask: url(../images/icon-minus.svg) no-repeat center / contain;
    -webkit-mask: url(../images/icon-minus.svg) no-repeat center / contain;
  }
  &.-active .-sub-menu {
    max-width: 20rem;
    max-height: 20rem;
    padding-top: var(--submenu-fukidashi-w);
  }
  
}
.nav-menu .have-menu:not(:last-child) {
  margin-right: 2em;
}
@media screen and (max-width: 1200px) {
  .nav-menu .have-menu {
    width: 100%;
    margin-right: 0;
    & .-sub-menu {
      position: relative;
      top: 0;
      & .-sub-menu-inner {
        padding: 1rem .5rem .5rem;
      }
    }
    &.-active .-sub-menu {
      padding-top: 0;
    }
  }
  .nav-menu .have-menu:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1em;
  }
}


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

/****** 固定ページヘッド ******/
.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: 1rem 0;
  }
}

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

/****** 見出し設定 ******/
:root {
  --h-title1-pd: 1em;
  --h-title1-line: calc(var(--h-title1-pd) - 1em);
}
.h-title1 {
    padding: 0;
    font-size: 2.6rem;
    color: var(--font-color-base);
    font-family: var(--font-family-en);
    margin: .5em 0 1.5em;
    font-weight: 400;
    letter-spacing: .1em;
    border-bottom: var(--border1);
    & span {
      position: relative;
      display: block;
      width: fit-content;
      font-family: var(--font-family-jp);
      padding-right: var(--h-title1-pd);
      font-size: 40%;
      line-height: 1;
      bottom: -5px;
      color: rgba(255,255,255,.6);
      background: black;
    }
}
@media screen and (max-width: 768px) {
  .h-title1 {
    & span {
      bottom: -1px;
    }
  }
}

.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) {
  .h-title6 {
    & div {
      & h2 {
        padding: .4em 3em;
      }
    }
  }
}

.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;
  }
}


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

:root {
  --btn-line-w: 1px;
  --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.1rem;
    color: var(--color-accent1);
    letter-spacing: .1em;
    border: var(--btn-border1);
    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: var(--color-accent1);
      mask: url(../images/icon-arrow.svg) no-repeat center / contain;
      -webkit-mask: 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);
  }
}
@media screen and (max-width: 768px) {
  .btn1 {
    &.-left a,
    &.-center a,
    &.-right a {
      margin: 0 auto;
    }
  }
}

/*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 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  & a {
    position: relative;
    display: block;
    width: 1.8rem;
    aspect-ratio: 1 / 1;
    box-shadow: var(--box-shadow1);
    background: white;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    &.-line {
      mask-image:  url(../images/icon-line.svg);
      -webkit-mask-image:  url(../images/icon-line.svg);
    }
    &.-insta {
      mask-image:  url(../images/icon-insta.svg);
      -webkit-mask-image:  url(../images/icon-insta.svg);
    }
    &.-facebook {
      mask-image:  url(../images/icon-fb.svg);
      -webkit-mask-image:  url(../images/icon-fb.svg);
    }
  }
  & a:not(:last-child) {
    margin-right: 2em;
  }
}
@media screen and (max-width: 768px) {

}


/****** カラム設定 ******/

/* 約半分の2カラム */
.column-1 {
  border-bottom: var(--border1);
  margin-bottom: 2rem;
  &.-tx {
    width: 45%;
  }
  &.-img {
    width: 45%;
    & img {
      width: 100%;
      aspect-ratio: 7 / 5;
      object-fit: cover;
      border-radius: var(--bd-r1);
    }
  }
}
@media screen and (max-width: 768px) {
  .column-1 {
    &.-tx, &.-img {
      width: 95%;
    }
    &.-img {
      order: 1;
      margin-bottom: 3rem;
    }
    &.-tx {
      order: 2;
    }
  }
}

/* 3カラム等分 */
:root {
  --column-box-icon-w: 1.7em;
}
.column-3 {
  display: block;
  width: 31%;
  min-width: 25rem;
  margin: 0 1% 2rem;
  & .-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;
    & 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 {
  --contents-img-h1: 10.5rem;
}
.message-tx {
  margin-bottom: 3rem;
  & .head-img1 {
    width: 100%;
    height: var(--contents-img-h1);
    margin-bottom: 2rem;
    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--bd-r1);
    }
  }
}

/* テーブル・リスト */
:root {
  --list-data-dt-w: 7em;
  --list-data-dd-w: calc(100% - var(--list-data-dt-w));
}
.list-data {
  width: 97%;
  margin: 1rem auto;
  & dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    & dt, dd {
      font-size: 1.1rem;
      color: white;
      line-height: 2;
    }
    & dt {
      position: relative;
      width: var(--list-data-dt-w);
      font-weight: 600;
      padding-right: 1.5em;
      &::after {
        position: absolute;
        content: "：";
        top: 0;
        right: 0;
      }
    }
    & dd {
      width: var(--list-data-dd-w);
      padding-left: 1em;
    }
  }
}
@media screen and (max-width: 768px) {
  :root {
    --list-data-dt-w: fit-content;
    --list-data-dd-w: 100%;
  }
}


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

/* hero */
:root {
  --hero-h: 55vw;
}
.hero {
  position: relative;
  height: var(--hero-h);
  max-height: 90vh;
  margin-bottom: 2rem;
  &::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: url(../images/fv-bk01.png) no-repeat right center / auto 100%;
    opacity: .2;
  }
}
.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: var(--header-h) 0;
}
:root {
  --hero-menu-w: 20rem;
  --hero-box-w: calc(100% - var(--hero-menu-w));
}
.hero-box {
  position: relative;
  width: var(--hero-box-w);
  height: 100%;
  display: flex;
  align-items: center;
  &::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/fv-mask-image01.jpg) no-repeat center / cover;
    mask: url(../images/fv-mask01.svg) no-repeat right center / 108% auto;
    -webkit-mask: url(../images/fv-mask01.svg) no-repeat right center / 108% auto;
    opacity: .55;
  }
}
.hero-message {
  width: fit-content;
  margin: auto 0 auto 18%;
  & p {
      text-align: left;
      font-size: min(4.2vw, 2.4rem);
      color: white;
      font-weight: 600;
      margin-bottom: 0;
      line-height: 1.7;
      letter-spacing: .15em;
      text-shadow: var(--tx-shadow1);
      padding: 0 .5em;
      transform: skewX(-3deg);
      &.-second {
        padding-left: 1em;
      }
      &.-name {
        font-size: min(3.5vw, 1.3rem);
        font-weight: 400;
        text-align: right;
        border-top: 1px solid white;
        margin-top: 1em;
        padding: 1em .5em 0;
      }
    & span {
      display: inline-block;
      font-size: 120%;
      margin: 0 .2em;
    }
  }
}
:root {
  --hero-nav-pd: 1.6em;
  --hero-nav-af-h: .9em;
  --hero-nav-af-shift: calc((var(--hero-nav-pd) - var(--hero-nav-af-h)) / 1.7);
}
.hero-menu {
  width: var(--hero-menu-w);
  height: fit-content;
  & .nav-menu {
    flex-wrap: wrap;
    & a {
      display: block;
      width: 100%;
      text-align: center;
      font-size: 1.3rem;
    }
    & > a:not(:last-child) {
      margin: 0 auto;
      padding-bottom: var(--hero-nav-pd);
      &::after {
        position: absolute;
        content: "";
        width: 1px;
        height: var(--hero-nav-af-h);
        bottom: var(--hero-nav-af-shift);
        left: 0;
        right: 0;
        margin: 0 auto;
        background: white;
      }
    }
  }
  & .sns-link {
    margin: 3rem auto 0;
  }
}
:root {
  --hero-tx-size: 3.2vw;
  --hero-tx-shift: calc(var(--hero-tx-size) * -.5);
}
.hero-tx {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--hero-tx-shift);
  & p {
    text-align: center;
    font-size: var(--hero-tx-size);
    font-family: var(--font-family-en);
    color: white;
    line-height: 1;
    margin: 0;
    opacity: .2;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --hero-h: 60vw;
    --hero-menu-w: 20rem;
    --hero-box-w: 100%;
  }
  .hero-menu {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --hero-h: 95vw;
    --hero-tx-size: 7vw;
    --hero-tx-shift: calc(var(--hero-tx-size) * -1.7);
  }
  .hero {
    margin-bottom: 5rem;
  }
  .hero-inner {
    padding-bottom: 4rem;
  }
  .hero-tx {
    padding: 0 4vw;
    & p {
      line-height: 1.2;
    }
  }
}

/* News / Topics */
.top-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 0 3%;
  margin: 0 auto;
  & img {
    width: 100%;
    height: var(--contents-img-h1);
    object-fit: cover;
    border-radius: var(--bd-r1);
    margin-bottom: .5rem;
  }
  & a {
    position: relative;
    width: 45%;
    &::after {
      position: absolute;
      content: "";
      width: var(--top-info-arrow-w);
      height: var(--top-info-arrow-w);
      top: 0;
      bottom: 0;
      right: 1rem;
      margin: auto 0;
      background: var(--color-accent1);
      mask: url(../images/icon-arrow.svg) no-repeat center / contain;
      -webkit-mask: url(../images/icon-arrow.svg) no-repeat center / contain;
    }
    & p {
      font-size: .9rem;
      height: fit-content;
      margin-bottom: 0;
      line-height: 1.7;
      &.-date {
        width: 8em;
        font-size: .9rem;
        font-family: var(--font-family-en);
        opacity: .7;
      }
      /* categoryを出す場合 */
      &.-category {
        display: none;
        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: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --top-info-shift: 5rem;
  }
  .top-info {
    min-width: auto;
    padding: 0 0 2rem;
    left: 0;
    right: 0;
    & h2 {
      font-size: 1.4rem;
      margin-bottom: 0;
      &::before {
        height: 2px;
      }
    }
    & a {
      width: 47%;
      & p {
        width: 100%;
        font-size: .8rem;
        &.-date {
          font-size: .75rem;
        }
      }
    }
  }
}

/* business */
.-business .inner {
  max-width: var(--max-width2);
}
:root {
  --business-logo-mg: 2.8rem;
  --business-logo-tx: calc(var(--business-logo-mg) * .5);
  --business-image-tile-gap: 2rem;
}
.business-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 7rem;
  & .-box  {
    width: 47%;
  }
  & h3 {
    font-size: 1.6rem;
    margin-bottom: .5em;
    & span {
      display: inline-block;
      font-size: 170%;
      margin-right: .5em;
      font-family: var(--font-family-en);
      transform: skewX(-5deg);
      background: url(../images/tx-bk01.jpg) no-repeat center / cover;
      -webkit-background-clip: text;
      color: transparent;
    }
  }
  & .business-area {
    padding: 2.5rem 1rem 2rem 4rem;
    border-left: var(--border1);
  }
  & .business-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: var(--business-logo-mg);
    width: 50%;
    aspect-ratio: 1 / 1;
    background: white;
    border-radius: var(--bd-r1);
    padding: 1rem;
    margin-bottom: 3rem;
    & p {
      position: absolute;
      top: 0;
      left: calc(var(--business-logo-mg) * -1);
      font-size: var(--business-logo-tx);
      font-family: var(--font-family-en);
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      text-orientation: sideways;
      margin: 0;
      line-height: 1;
      opacity: .7;
    }
    & img {
      width: 100%;
    }
  }
  & .business-contents {
    & h4 {
      font-size: 1.5rem;
      font-weight: 400;
      letter-spacing: .2em;
      margin-bottom: 1.5em;
      & span {
        display: block;
        font-size: 85%;
        font-family: var(--font-family-en);
        opacity: .7;
        margin-bottom: .5em;
      }
    }
  }
  & .-img {
    & img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: var(--bd-r1);
    }
    & .image-tile {
      display: flex;
      gap: var(--business-image-tile-gap);
      & .-column {
        width: 45%;
        & img:not(:last-child) {
          margin-bottom: var(--business-image-tile-gap);
        }
      }
      & .-column:nth-child(2) {
        margin-top: var(--business-image-tile-gap);
      }
    }
  }
}
.business-wrap:nth-child(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .business-wrap {
    justify-content: center;
    margin: 0 auto 4rem;
    & .-box  {
      width: 95%;
    }
    & .business-logo {
      width: 70%;
    }
    & .business-area {
      padding: 2.5rem 0 1rem 3rem;
      margin-bottom: 3rem;
    }
  }
}


/* ACCESS */
.access-map {
  width: 97%;
  aspect-ratio: 16 / 11;
  margin: 2rem auto;
  & iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--bd-r1);
  }
}

/* recruit */
.-recruit .inner {
  max-width: var(--max-width2);
}
:root {
  --recruit-img-w: 100%;
  --recruit-tx-w: 100%;
  --contents-img-h2: 18vw;
}
.recruit-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin: 1rem auto;
  & .-img {
    width: var(--recruit-img-w);
    height: var(--contents-img-h2);
    margin-bottom: 3rem;
    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--bd-r1);
    }
  }
  & .-tx {
    width: var(--recruit-tx-w);
    padding-left: 1rem;
    & .recruit-box {
      & h3 {
        position: relative;
        font-size: 1.6rem;
        padding-left: 2em;
        margin-bottom: .8em;
        &::before {
          position: absolute;
          content: "";
          width: 1.6em;
          height: 1.6em;
          top: 0;
          left: -.2em;
          background: url(../images/tx-bk01.jpg) no-repeat center / cover;
          mask-repeat: no-repeat;
          mask-position: center;
          mask-size: contain;
          -webkit-mask-repeat: no-repeat;
          -webkit-mask-position: center;
          -webkit-mask-size: contain;
        }
        &.-speaker::before {
          mask-image: url(../images/icon-speaker.svg);
          -webkit-mask-image: url(../images/icon-speaker.svg);
        }
        &.-check::before {
          mask-image: url(../images/icon-check3.svg);
          -webkit-mask-image: url(../images/icon-check3.svg);
        }
      }
      & .-contents {
        border-left: var(--border1);
        padding: .7rem;
        padding-left: 3rem;
        & p {
          margin-bottom: 0;
        }
        & .list-data {
          margin: 0 auto;
          & dl {
            margin-bottom: 0;
            & dt {
              width: 8em;
            }
          }
          & dl:not(:last-child) {
            margin-bottom: 2rem;
          }
        }
      }
    }
    & .recruit-box:not(:last-child) {
      margin-bottom: 3rem;
    }
  }
}
@media screen and (max-width: 768px) {
  :root {
    --recruit-img-w: 100%;
    --recruit-tx-w: 100%;
  }
  .recruit-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    margin: 1rem auto;
    & .-img {
      height: var(--contents-img-h1);
      margin-bottom: 3rem;
    }
    & .-tx {
      padding-left: 0;
      & .recruit-box {
        & .-contents {
          padding-left: 1.5rem;
          & .list-data {
            & dl {
              & dt {
                width: fit-content;
              }
            }
          }
        }
      }
    }
  }
}

/* CONTACT */
.-contact .inner {
  max-width: var(--max-width2);
}
.contact-message {
  padding: 0 1rem 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .-contact .inner {
    margin-bottom: 5rem;
  }
}


/* 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%);
  }
}


/* 下層ページ（固定ページ）
-------------------------------- */

/* WPによる投稿した時のスタイル */
.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: black;
        opacity: .3;
      }
      & h1 {
        position: relative;
        text-align: center;
        font-size: 1.6rem;
        color: white;
        text-shadow: var(--tx-shadow1);
        letter-spacing: .2em;
      }
    }
    & .page-contents {
      & 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;
      }
      & h3 {
        font-size: 1.3rem;
        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);
      }

    }
  }
}
@media screen and (max-width: 768px) {
  .page:not(.home) {
    & .content {
      & .page-head {
        padding: 8rem 0 6rem;
      }
    }
  }
}


/* 共通スタイル */
:root {
  --p-title-icon-w: 4rem;
  --p-title-icon-pd: calc(var(--p-title-icon-w) * 1.3);
}
.p-title {
  position: relative;
  padding-left: var(--p-title-icon-pd);
  margin-bottom: 3.5rem;
  &::before {
    position: absolute;
    content: "";
    width: var(--p-title-icon-w);
    height: var(--p-title-icon-w);
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  & h2 {
    font-size: 1.3rem;
    padding: .2em;
    border-bottom: 2px solid var(--color-accent1);
    & span {
      position: relative;
      display: inline-block;
      font-size: 60%;
      opacity: .6;
      padding-left: 2em;
      margin-left: 1em;
      &::before {
        position: absolute;
        content: "";
        width: 1.5em;
        height: 1px;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto 0;
        background: var(--font-color-base);
      }
    }
  }
}

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

/* ぱんくず */
.p-breadcrumb {
  svg:not([fill]) {
    fill: var(--font-color-base);
  }
}
.single-post .p-breadcrumb, .archive .p-breadcrumb {
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 0 0 auto;
    z-index: 9;
    & .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: calc(var(--header-h) + .5rem);
  margin-bottom: 4rem;
  & .p-entry__head {
    margin-bottom: 2rem;
  }
  & .p-entry__content.c-postContent {
    padding: 0 .5rem;
  }
  & .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);
    }
  }
  /* 関連記事 */
  & .-related .p-postList__title {
    font-size: .9rem;
  }
}
.archive-page {
  & .page-contents {
    & h2 {
      font-size: 1.1rem !important;
    }
    & p {
      font-size: .9rem;
    }
  }
}
.p-postList--notfound {
  color: white;
  margin: 0 1%;
}

.p-entry__foot>.c-postMetas {
    margin-top: 1em;
}
svg:not([fill]) {
    fill: var(--font-color-base);
}
.p-entry__head {
  & .c-postTimes, a.c-postTerms__link {
    color: var(--font-color-base);
  }
}

.p-entry__foot .c-postTerms__link {
  background: initial;
  color: var(--font-color-base);
  padding: .3em;
  margin-left: .2em;
  transition: .5s;
  font-family: var(--font-family-en);
}

@media screen and (max-width: 768px) {
  .single-page, .archive-page {
    margin-top: calc(var(--header-h) + 1rem);
    & .page-contents {
      & .c-pageTitle__main {
        font-size: 1.2rem;
        margin-top: 1rem;
      }
    }
    /* 関連記事 */
    & .-related .p-postList__title {
      font-size: .9rem;
    }
  }
}


/* サイドバー・関連情報
-------------------------------- */
aside#sidebar {
  margin-top: 4rem;
}
aside#sidebar h2.wp-block-heading,
.p-entry__related h2.c-bottomSection__title {
  position: relative;
  font-size: 1rem;
  padding: .8em .8em .8em 2.8em;
  text-align: left;
  margin-bottom: 2em;
}
aside#sidebar h2.wp-block-heading::before,
.p-entry__related h2.c-bottomSection__title::before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 1px;
  background: white;
  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: 0;
  }
}

/****** forminator ******/
form.forminator-ui {
  width: 100% !important;
  padding: 5rem !important;
  margin: 0 auto !important;
  background: #e6e6e6;
  border-radius: var(--bd-r1) !important;
  & p {
    color: black !important;
  }
}
@media screen and (max-width: 768px) {
  form.forminator-ui {
    padding: 2em 2.5rem !important;
  }
}


.forminator-field {
  text-align: left;
}

.forminator-field label:not(.forminator-checkbox),
.forminator-field-checkbox .forminator-label {
  position: relative;
  padding: 1em 1.5em 1em 2em;
  font-size: 1.1rem !important;
  line-height: 1 !important;
  font-weight: 600;
  color: var(--color-accent1);
  font-family: var(--font-family-jp);
  border-bottom: 1px solid #999 !important;
  margin-bottom: 1.5rem !important;
}
.forminator-field label:not(.forminator-checkbox)::before,
.forminator-field-checkbox .forminator-label::before {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  top: 0;
  bottom: 0;
  left: .4em;
  margin: auto 0;
  background: black;
  mask: url(../images/icon-arrow3.svg) no-repeat center center / contain;
  -webkit-mask: url(../images/icon-arrow3.svg) no-repeat center center / contain;
}
@media screen and (max-width: 768px) {
  .forminator-field label:not(.forminator-checkbox),
  .forminator-field-checkbox .forminator-label {
    font-size: 1.35rem !important;
  }
}

.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;
}
label.forminator-checkbox:nth-child(2) {
  margin-left: var(--form-input-mg) !important;
}
@media screen and (max-width: 768px) {
  label.forminator-checkbox:not(.forminator-consent) {
  width: 100% !important;
}
}

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

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: flex-start;
    margin-left: var(--form-input-mg) !important;
    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-accent4);
    text-align: center;
    letter-spacing: .2em;
    border-radius: 2px;
    font-weight: 600;
  }
}



/* フッター
-------------------------------- */
footer {
  border-top: var(--border1);
}
.footer-wrap {
  width: 90%;
  max-width: var(--max-width2);
  margin: 0 auto;
  padding: 5rem 0 4rem;

  & .footer-info {
    width: fit-content;
    & .-logo {
      width: 12rem;
      margin-bottom: 2.5rem;
    }
    & p {
      font-size: .8rem;
      &.-copy {
        font-size: .7rem;
        font-family: var(--font-family-en);
      }
    }
    & .sns-link {
      margin: 2rem 0 4rem;
    }
  }
  & .footer-menu {
    & .nav-menu {
      width: 13rem;
      flex-wrap: wrap;
      & a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 1.3rem;
      }
      & > a:not(:last-child) {
        margin: 0 auto;
        padding-bottom: var(--hero-nav-pd);
        &::after {
          position: absolute;
          content: "";
          width: 1px;
          height: var(--hero-nav-af-h);
          bottom: var(--hero-nav-af-shift);
          left: 0;
          right: 0;
          margin: 0 auto;
          background: white;
        }
      }
    }
  }

}

@media screen and (max-width: 768px) {
  .footer-wrap {
    align-items: center;
    & .footer-menu {
      & .nav-menu {
        width: 8rem;
      }
    }
  }
}