@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');
@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: rgba(7,1,1,1);
  --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 bottom,
    rgba(7,1,1,1) 20%,
    rgba(7,1,1,.8) 50%,
    rgba(7,1,1,0) 100%
  );
  --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 Serif JP", serif;
  --font-family-en: "Noto Serif JP", 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: 1200px;
  --max-width2: 1100px;
  --max-width3: 800px;
  --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: rgba(7,1,1,1);
}

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

/* mask設定 */
.-mask {
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  &.-insta {
    mask-image: url(../images/icon-insta.svg);
    -webkit-mask-image: url(../images/icon-insta.svg);
  }
}

.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: 14rem;
  --hm-btn-w: 3rem;
  --hm-btn-inner-w: calc(var(--hm-btn-w) * .6);
}
.header {
  position: fixed;
  top: var(--ark-adminbar_height);
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  background: var(--bg-grd-color1);
  padding: .5rem 2rem 2.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 0 0;
    border-radius: 3px;
  }
  & .header__nav {
    display: block;
    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: 1rem;
    right: 2rem;
    margin: 0;
    border-radius: 0;
    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: 2px;
        background: white;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto 0;
        caret-color: transparent;
        transition: .5s;
      }
      & span:first-child {
        bottom: auto;
      }
      & span:last-child {
        top: auto;
      }
    }
  }
  & .head-sns {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --header-logo-w: 16rem;
  }
  .header {
    & .header__nav {
      position: absolute;
      display: block;
      top: 5rem;
      right: -20rem;
      max-height: 0;
      background: rgba(0,0,0,.9);
      border-radius: var(--bd-r1);
      padding: 2rem 3rem;
      opacity: 0;
    }
    & .hm-btn {
      display: flex;
      max-height: var(--hm-btn-w);
      opacity: 1;
    }
    & .head-sns {
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      height: var(--hm-btn-w);
      top: 1rem;
      right: 6rem;
      & a {
        display: inline-block;
        width: var(--hm-btn-inner-w);
        aspect-ratio: 1 / 1;
        background: white;
      }
    }
  }
  .header.-active {
    & .header__nav {
      right: 2.5rem;
      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 {
    padding: .5rem;
    & .header__nav {
      padding: 3rem;
    }
    & .hm-btn {
      right: 1rem;
    }
    & .head-sns {
      right: 5.5rem;
    }
  }
  .header.-active {
    & .header__nav {
      top: 5rem;
      right: 2rem;
    }
  }
}

/* メニュースタイル
-------------------------------- */
:root {
  --menu-icon-w: 1.2em;
}
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  & > a {
    position: relative;
    display: block;
    width: fit-content;
    height: fit-content;
    font-size: .95rem;
    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;
    }
    &.-sns {
      & span {
        display: block;
        width: var(--menu-icon-w);
        height: var(--menu-icon-w);
        background: white;
        margin: 0 auto;
      }
    }
  }
  /* ボタン・SNS以外の装飾 */
  & a:not(.-sns) {
    padding-left: 1.8em;
    &::before {
      position: absolute;
      content: "";
      width: 1.1em;
      height: 1px;
      top: 0;
      bottom: 0;
      left: 0;
      margin: auto 0;
      background: white;
    }
  }
  & > a:not(:last-child) {
    margin-right: 1.8em;
  }
}
@media screen and (max-width: 1200px) {
  .nav-menu {
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
    & > a {
      width: 100%;
      &.-btn {
        text-align: center;
      }
      &.-sns {
        margin-top: .5rem;
      }
    }
    & > a:not(:last-child) {
      margin-right: 0;
      margin-bottom: 1em;
    }
  }
}
@media screen and (max-width: 1200px) {
  .nav-menu {
    & > a {
      font-size: 1.4rem;
    }
    & > a:not(:last-child) {
      margin-bottom: 1.5em;
    }
  }
}

/* サブメニュー */
: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;
  padding-bottom: 3rem;
}
.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: 2rem 0;
  }
}

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

/****** 見出し設定 ******/
:root {
  --h-title1-pd: 2.5em;
  --h-title1-line: calc(var(--h-title1-pd) - .8em);
}
.h-title1 {
  position: relative;
  font-size: 1.6rem;
  color: var(--font-color-base);
  font-family: var(--font-family-en);
  margin: .5em 0 2.5em;
  font-weight: 400;
  letter-spacing: .1em;
  padding-left: var(--h-title1-pd);
  &::before {
    position: absolute;
    content: "";
    width: var(--h-title1-line);
    height: 1px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    background: white;
  }
  & span {
    position: relative;
    display: inline-block;
    width: fit-content;
    font-family: var(--font-family-jp);
    margin-left: 1em;
    font-size: 70%;
    line-height: 1;
    color: rgba(255,255,255,.6);
    background: black;
  }
}
@media screen and (max-width: 768px) {
  .h-title1 {
    & span {
      bottom: -1px;
    }
  }
}

.h-title2 {
  font-size: 1.3rem;
  color: white;
  padding: .8em;
  border-top: var(--border1);
  border-bottom: var(--border1);
  margin-bottom: 1.2em;
  letter-spacing: .15em;
}

.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 {
  position: relative;
  width: fit-content;
  margin: 2rem auto 0;
  padding: 5px;
  border: var(--border1);
  & a {
    position: relative;
    display: block;
    width: fit-content;
    padding: 1em 3em;
    padding-right: 4em;
    background: white;
    font-size: 1.1rem;
    color: var(--color-accent1);
    letter-spacing: .1em;
    border: var(--btn-border1);
    font-weight: 900;
    &::after {
      position: absolute;
      content: "";
      width: var(--btn-icon1-w);
      height: var(--btn-icon1-w);
      top: 0;
      bottom: 0;
      right: 1em;
      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 {
    margin-left: 0;
  }
  &.-right {
    margin-right: 0;
  }
  &.-en a {
    font-family: var(--font-family-en);
  }
  &.-down a::after {
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 768px) {
  .btn1 {
    margin-top: 0;
    &.-left,
    &.-center,
    &.-right {
      margin: 0 auto;
    }
    & a {
      text-align: center;
      min-width: 22em;
    }
  }
}

/*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) {

}


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

:root {
  --column-1-img-pd: 1rem;
}
.column-wrap {
  max-width: var(--max-width2);
  margin: 0 auto;
}
/* 約半分の2カラム */
.column-1 {
  margin-bottom: 2rem;
  &.-tx {
    width: 48%;
    & p {
      padding: 0 1em;
    }
  }
  &.-img {
    position: relative;
    width: 45%;
    padding-right: var(--column-1-img-pd);
    padding-bottom: var(--column-1-img-pd);
    &::before {
      position: absolute;
      content: "";
      width: calc(100% - var(--column-1-img-pd));
      height: calc(100% - var(--column-1-img-pd));
      right: 0;
      bottom: 0;
      border: var(--border1);
    }
    & img {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }
    & iframe {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 35vh;
    }
  }
  &.-btn {
    width: fit-content;
    padding: 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  .column-1 {
    &.-tx, &.-img {
      width: 100%;
    }
    &.-img {
      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%;
  }
}

ul.list-style {
  margin: 0 0 3rem 1rem;
  padding-left: 1rem;
  & li {
    font-size: 1rem;
    padding: .5em;
  }
}


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

/* hero */
:root {
  --hero-h: 100vh;
}
.hero {
  position: relative;
  height: var(--hero-h);
  &::after {
    position: absolute;
    content: "";
    width: 100%;
    height: var(--header-h);
    left: 0;
    bottom: -1px;
    background: var(--bg-grd-color1);
    transform: scaleY(-1);
  }
}
.hero-inner {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: var(--header-h) 0;
}
.hero-box {
  position: relative;
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
}
.hero-message {
  width: fit-content;
  margin: 0 0 10%;
  padding: 3rem 4rem;
  background: linear-gradient(
    to left,
    rgba(7,1,1,.6) 0,
    rgba(7,1,1,.35) 80%,
    rgba(7,1,1,0) 100%
  );
  & p {
    text-align: left;
    font-size: min(4.7vw, 2rem);
    color: white;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.7;
    letter-spacing: .15em;
    text-shadow: var(--tx-shadow1);
    padding: 0 1em 0 0;
    transform: skewX(-10deg);
    &.-sub {
      position: relative;
      text-align: right;
      font-size: min(3.7vw, 1.6rem);
      padding: 0 0 0 6em;
      margin-top: .8em;
      &::before {
        position: absolute;
        content: "";
        width: 3.5em;
        height: 1px;
        top: 0;
        bottom: 0;
        left: 2em;
        margin: auto 0;
        background: white;
      }
    }
  }
}

/* スライダー設定 */
.hero-slider-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: .7;
  overflow: hidden;
}

/* ★初期化前のスライダーを非表示にする */
.hero-slider-wrap .hero-slider {
  opacity: 0; /* 透明にする */
  transition: opacity 0.5s ease-in-out; /* フェードインさせる */
  width: 100%;
  height: 100%;
}

/* ★Slickが初期化されたら表示する */
.hero-slider-wrap .hero-slider.slick-initialized {
  opacity: 1; /* 不透明にする */
}

.hero-slider-wrap .hero-slide {
  width: 100%;
  height: 100%;
}

.hero-slider-wrap .slick-list,
.hero-slider-wrap .slick-track {
  height: 100%;
}

/* Slickのfadeモードでは、スライドは自動的に重ねて配置される */
.hero-slider-wrap .slick-slide {
  width: 100%;
  height: 100%;
}

.hero-slider-wrap .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ★ズームアニメーションを全ての画像に適用 */
  animation: zoomUp 15s linear forwards;
}

/* ★表示が切り替わるたびにアニメーションをリセット */
.hero-slider-wrap .slick-active img {
  animation: zoomUp 15s linear forwards;
}

/* ズームアップのアニメーション定義 */
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}


: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);
}
@media screen and (max-width: 1200px) {
  :root {
    --hero-h: 90vh;
    --hero-menu-w: 20rem;
    --hero-box-w: 100%;
  }
  .hero-menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --hero-h: 75vh;
    --hero-tx-size: 7vw;
    --hero-tx-shift: calc(var(--hero-tx-size) * -1.7);
  }
  .hero {
    margin-bottom: 5rem;
  }
  .hero-inner {
    padding-bottom: 4rem;
  }
  .hero-message {
    padding: 7vw;
  }
  .hero-tx {
    padding: 0 4vw;
    & p {
      line-height: 1.2;
    }
  }
}

/* News / Topics */
.-news .h-title1 {
  margin-bottom: 2rem;
}
:root {
  --top-info-date-w: 10em;
  --top-info-title-w: calc(100% - var(--top-info-date-w));
  --top-info-arrow-w: 1.1em;
}
.top-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 0 6%;
  margin: 0 auto;
  & a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 1.5em;
    padding-right: 4em;
    border-bottom: var(--border1);
    &::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(--font-color-base);
      mask: url(../images/icon-arrow.svg) no-repeat center / contain;
      -webkit-mask: url(../images/icon-arrow.svg) no-repeat center / contain;
    }
    /* アイキャッチ画像 */
    & img {
      display: none;
      width: 100%;
      height: var(--contents-img-h1);
      object-fit: cover;
      border-radius: var(--bd-r1);
      margin-bottom: .5rem;
    }
    & p {
      font-size: 1.1rem;
      height: fit-content;
      margin-bottom: 0;
      line-height: 1.7;
      &.-date {
        width: var(--top-info-date-w);
        font-size: 1rem;
        font-family: var(--font-family-en);
        opacity: .7;
      }
      &.-title {
        width: var(--top-info-title-w);
      }
      /* カテゴリー表示 */
      &.-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-date-w: 100%;
    --top-info-title-w: 100%;
  }
  .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: 100%;
      & p {
        width: 100%;
        &.-date {
          margin-bottom: .5em;
        }
      }
    }
  }
}

/* ABOUT */
.about-box:not(:last-child) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .about-box:not(:last-child) {
    margin-bottom: 1rem;
  }
}

/* Gallery */
:root {
  --gallery-box-main-w: 65%;
  --gallery-box-sub-w: calc(100% - var(--gallery-box-main-w) - 3%);
  --gallery-gap: 5px;
  --gallery-img-w: calc((100% / 3) - var(--gallery-gap));
}
.gallery-box {
  & .-img {
    width: var(--gallery-box-main-w);
    & img {
      display: none;
      aspect-ratio: 14 / 9;
      &.-active {
        display: block;
      }
    }
  }
  & .-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gallery-gap);
    width: var(--gallery-box-sub-w);
    & img {
      width: var(--gallery-img-w);
      aspect-ratio: 1 / 1;
      object-fit: cover;
      cursor: pointer;
      transition: .5s;
      opacity: .5;
      &:hover,
      &.-select {
        opacity: 1;
      }
    }
  }
}
@media screen and (max-width: 768px) {
  :root {
    --gallery-box-main-w: 100%;
    --gallery-box-sub-w: 100%;
    --gallery-gap: 5px;
    --gallery-img-w: calc((100% / 5) - var(--gallery-gap));
  }
}

/* company */
.-company .h-title1 {
  margin-bottom: 2rem;
}
:root {
  --company-dt-w: 10em;
  --company-dd-w: calc(100% - var(--company-dt-w));
}
.company-wrap {
  padding: 0 6%;
  margin-bottom: 3rem;
  & dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 1.5em;
    border-bottom: var(--border1);
    & dt, dd {
      font-size: 1.1rem;
    }
    & dt {
      width: var(--company-dt-w);
      opacity: .7;
    }
    & dd {
      width: var(--company-dd-w);
    }
  }
  & dl:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --company-dt-w: 100%;
    --company-dd-w: 100%;
  }
  .company-wrap {
    padding: 0 3%;
    & dl {
      & dt, dd {
        font-size: 1.2rem;
      }
      & dt {
        margin-bottom: .5em;
      }
      & dd {
        padding-left: 1em;
      }
    }
  }
}

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


/* 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: .6;
      }
      & h1 {
        position: relative;
        text-align: center;
        font-size: 1.6rem;
        color: white;
        text-shadow: var(--tx-shadow1);
        letter-spacing: .2em;
      }
    }
    & .page-contents {
      & .inner {
        padding: 1rem 0;
      }
      & h2, h3, h4, h5 {
        position: relative;
        margin: 1.5em 0 1em;
      }
      & h2 {
        font-size: 1.4rem;
        border-bottom: 1px solid white;
        padding: .7em .5em;
        font-weight: 600;
      }
      & h3 {
        font-size: 1.3rem;
        border-left: .3em solid white;
        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: white;
          border-radius: 9999px;
        }
      }
      & h5 {
        font-size: 1.15rem;
        color: white;
      }

    }
  }
}
@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-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 {
      padding-top: 2rem;
      & .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-left: .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: 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.page-footer {
  position: relative;
  background: url(../images/foot-image01.jpg) no-repeat center / cover;
  &::before,
  &::after {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    bottom: 0;
  }
  &::before {
    height: 100%;
    background: var(--color-accent1);
    opacity: .8;
  }
  &::after {
    height: var(--header-h);
    background: var(--bg-grd-color1);
    transform: scaleY(-1);
  }

}
.footer-info {
  position: relative;
  width: 100%;
  padding: 6rem 0;
  & .-logo {
    width: 10rem;
    margin: 0 auto 1.5rem;
  }
  & p {
    text-align: center;
    margin-bottom: 1rem;
    &.-company {
      font-size: 1rem;
      font-weight: 900;
    }
    &.-address {
      font-size: .8rem;
      font-weight: 600;
    }
  }
}
.footer-menu {
  margin-top: 3rem;
  & .nav-menu {
    & > a {
      font-size: .8rem;
    }
  }
}
.footer-copy {
  position: relative;
  padding: 1.5rem;
  border-top: var(--border1);
  z-index: 2;
  & p {
    text-align: center;
    margin-bottom: 0;
    font-size: .7rem;
    font-weight: 400;
  }
}

@media screen and (max-width: 1200px) {
  .footer-menu {
    margin-top: 4rem;
    & .nav-menu {
      & > a {
        font-size: 1.2rem;
      }
    }
  }
}
