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




/* Base
-------------------------------- */
/***** 初期値 *****/
:root {
  /* 色設定 */
  --color-black: #231815;
  --color-gray: #666;
  --color-light-gray: #F5F5F5;
  --color-accent1: #8e7300;
  --color-accent2: #69318e;
  --color-accent3: #00a6bb;

  --bg-color0: black;
  --bg-color1: #1A0B05;
  --bg-color2: #f1f1f1;
  --bg-color3: #F9E7D6;

  --bg-grd-color1: linear-gradient(
    to top,
    #FFE2C2,
    #FCF2E8
  );
  --accent-grd-color1: linear-gradient(
    to right,
    #8e7300 0%,
    #9f8111 13%,
    #846700 36%,
    #846700 70%,
    #7a6100 100%
  );
  --accent-grd-color2: linear-gradient(
    45deg,
    #d5d6de 0%,
    white 50%,
    #d5d6de 100%
  );
  --accent-grd-color3: linear-gradient(
    60deg,
    #131313 0%,
    #1b1b1b 100%
  );

  /* フォント */
  --font-color-base: #333;
  --font-family-main: "Noto Sans JP", sans-serif;
  --font-family-en: 'Jost', sans-serif;
  --font-family-head: 'Jost', sans-serif;
  --font-family-logo: "Stick No Bills", sans-serif;

  /* スタイル */
  --tx-shadow1: 2px 2px 2px rgba(0,0,0,.4);
  --box-shadow1: 2px 2px 5px rgba(0,0,0,.3);
  --max-width1: 1200px;
  --max-width2: 1400px;
  --max-width3: 800px;
  --line-gray: 1px solid #A0A0A0;
  --line-gray2: 2px solid #A0A0A0;
  --cover-color: rgb(6 44 93 / 34%);
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 80% !important;
  }
}

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

/* 背景色設定 */
.bg-accent1 {
  background: var(--accent-grd-color1);
}
.bg-accent2 {
  background: var(--accent-grd-color2);
}
.bg-accent3 {
  background: var(--accent-grd-color3);
}
.bg-w {
  background: white;
}
.bg-w_95 {
  background: rgba(255,255,255,.9);
}
.bg-y_95 {
  background: rgba(254,203,6,.9);
}

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

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

div,span,p,a,li,dt,dd {
  font-family: var(--font-family-main);
  color: var(--font-color-base);
}
h2,h3,h4,h5,h6 {
  font-family: var(--font-family-head);
  font-weight: 400;
  color: #333;
}

a {
  text-decoration: none;
  transition: 1s;
}
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;
}

.shadow1 {
  box-shadow: var(--box-shadow1);
}

.w100 { width: 100%; }

.pd-tb6vw {
  padding: 6vw 0;
}
.pd-tb8vw {
  padding: 8vw 0;
}
.pd-tb10vw {
  padding: 10vw 0;
}
.pd-tb12vw {
  padding: 12vw 0;
}
.pd-lr1 {
  padding: 0 1rem;
}
.pd-lr2 {
  padding: 0 2rem;
}
@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-t-r {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
}
.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;
}


/* header
-------------------------------- */
:root {
  --header-h: 5rem;
  /* ロゴサイズ */
  --ark-logo_size--pc: var(--header-h);
  --ark-logo_size--sp: var(--header-h);
}
.l-header {
  width: 100%;
  background: initial;
  margin: 0 auto;
}
.l-header__body {
  height: var(--header-h);
  background: url(../images/footer-bk01.jpg) no-repeat center top / cover;
}
@media screen and (max-width: 768px) {
  .l-header {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-header__body {
    display: flex;
    height: 4rem;
  }
  .l-header__center {
    position: absolute;
    width: 100%;
    min-width: 100%;
    flex-basis: auto;
  }
}


.l-content {
  margin-top: calc(var(--header-h) * -1);
}
.l-content__body {
  margin: 0 auto;
}
.l-container {
  max-width: 100%;
  padding: 0;
}

/* ロゴまわり */
:root {
  --l-header-logo-w: 17rem;
}
.l-header__center {
  width: var(--l-header-logo-w);
  padding: 0;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .l-header__center {
    min-width: 0;
  }
}
.c-headLogo {
  padding: 0.4rem 1rem;
  height: 3.5rem !important;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    justify-content: left;
}
}

/* ロゴ テキストバージョン */
:root {
  --has-text-logo-w: 3rem;
}
.l-header__logo.has-text a {
  position: relative;
  display: block;
  font-size: 2.5rem;
  padding: 1rem;
  padding-left: calc(var(--has-text-logo-w) * 1.2);
  color: white;
  font-family: var(--font-family-logo);
  font-weight: 600;
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .l-header__logo.has-text a {
    font-size: 1.2rem;
  }
}
.l-header__logo.has-text a::before {
  position: absolute;
  content: "";
  width: var(--has-text-logo-w);
  height: var(--has-text-logo-w);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  background: url(../images/site-logo2.png) no-repeat center center / contain;
}

/****** ナビメニューまわり
*********************************************/

/* コンタクト＆ハンバーガーメニュー */
:root {
  --menu-icon-w: 1.6rem;
  --contact-menu-w: calc(var(--menu-icon-w) * 3.5);
}
.l-header__drawerBtn {
  position: absolute;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  width: var(--contact-menu-w);
  height: 100%;
  right: 0;
  top: 0;
  z-index: 10;
}
@media screen and (max-width: 1300px) {
  .l-header__drawerBtn {
    display: flex;
  }
}

.contact-menu, .c-iconBtn {
  position: relative;
  display: flex;
  justify-content: center;
  height: fit-content;
}
.contact-menu p,
.c-iconBtn p {
  width: fit-content;
  color: white;
  font-family: var(--font-family-en);
  margin: 0;
}
.c-iconBtn p {
  padding-left: .5rem;
}
.contact-menu p {
  position: relative;
  padding-left: calc(var(--menu-icon-w) + .5em);
}
.contact-menu p::before {
  position: absolute;
  content: "";
  width: var(--menu-icon-w);
  height: var(--menu-icon-w);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  background: white;
  mask: url(../images/icon-mail.svg) no-repeat center center / contain;
  -webkit-mask: url(../images/icon-mail.svg) no-repeat center center / contain;
}

.c-iconBtn__icon {
  width: var(--menu-icon-w);
  height: var(--menu-icon-w);
}
.hamburger-icon {
  width: 100%;
  height: 100%;
}
.hamburger-icon.__open {
  background: var(--accent-grd-color1);
  mask: url(../images/icon-menu.svg) no-repeat center center / contain;
  -webkit-mask: url(../images/icon-menu.svg) no-repeat center center / contain;
}
.hamburger-icon.__close {
  background: var(--accent-grd-color1);
  mask: url(../images/icon-menu-close.svg) no-repeat center center / contain;
  -webkit-mask: url(../images/icon-menu-close.svg) no-repeat center center / contain;
}
@media screen and (max-width: 768px) {
  .l-header__drawerBtn {
    position: absolute;
    width: fit-content;
    background: initial;
    box-shadow: none;
    right: 1rem;
    z-index: 10;
  }
  .c-iconBtn {
    width: fit-content;
  }
  .contact-menu, .c-iconBtn p {
    display: none;
  }
}

/* サブメニュー */
.c-gnav__depth1 {
  top: 130%;
}
.c-gnav .sub-menu {
  background: var(--accent-grd-color3);
  & .c-gnav__a .__mainText {
    position: relative;
    display: block;
    font-size: .8rem;
    padding-left: 2rem;
  }
  & .c-gnav__a .__mainText::before {
    position: absolute;
    content: "";
    width: 1.2rem;
    height: 1px;
    top: 0;
    bottom: 0;
    left: .2rem;
    margin: auto 0;
    background: rgba(255,255,255.6);
  }
}

/* その他ヘッダー */

.l-header__right {
  width: calc(100% - var(--l-header-logo-w));
  padding: 0;
  margin-right: 0;
  grid-area: center;
}
@media screen and (max-width: 1300px) {
  .l-header__right {
    display: none;
  }
}

.l-header__body .c-gnavWrap {
  position: static;
  width: 100%;
}

.c-gnav {
  justify-content: center;
}
.c-gnav .__mainText {
  color: white;
  font-size: 1rem;
  font-family: var(--font-family-en);
  text-align: left;
}
.c-gnav .__subText {
  color: white;
  font-family: var(--font-family-en);
  font-weight: 400;
  text-align: left;
  margin-top: 0.2em;
  font-size: .7rem;
}
.c-gnav__li {
  position: relative;
}
.c-gnav__li::before {
  position: absolute;
  content: "";
  width: 40%;
  height: 2px;
  bottom: 0;
  right: 0;
  background: var(--accent-grd-color1);
}
.c-gnav__li, .c-gnav__li>.c-gnav__a {
  display: flex;
}
.c-gnav__li>.c-gnav__a {
  position: relative;
  height: fit-content;
  padding: .7em 0 .7em !important;
  margin: 0 .5em 0 3em;
}

.c-gnav__li.nav-btn {
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: fit-content;
  height: fit-content;
}
.c-gnav__li.nav-btn::before {
  display: none;
}
.c-gnav__li.nav-btn>.c-gnav__a {
  margin: 0 1rem 0 0;
  padding: .7em 2em !important;
  background: var(--accent-grd-color1);
  & .__mainText {
    font-size: 125%;
  }
}


/* ドロワーメニュー
-------------------------------- */
.p-drawer {
  width: 27rem;
  right: 0;
  left: auto;
  background: var(--accent-grd-color3);
}
@media screen and (max-width: 768px) {
  .p-drawer {
    width: 100%;
  }
}

/* サブメニューの初期設定 */
.p-drawer__nav ul {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease; /* 0.5秒かけて高さを変化させる */
}

/* アクティブなサブメニューのスタイル */
.p-drawer__nav ul.active {
  height: auto; /* サブメニューの自然な高さ */
  transition: height 0.5s ease; /* こちらも同様に0.5秒かけて高さを変化させる */
}

.p-drawer__nav ol {
  display: flex;
  flex-wrap: wrap;
  width: 85%;
  margin: 0 auto 2rem;
  padding-left: 0;
}
.p-drawer__nav ol li {
  list-style: none;
  width: 100%;
  font-size: 1.1rem;
  padding: 0.2em .5em;
}
.p-drawer__nav ol li a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: white;
}
.p-drawer__nav ol li a span {
  color: var(--accent-grd-color1);
  font-family: var(--font-family-en);
}
.p-drawer__nav ol > li {
  position: relative;
  border-bottom: var(--btn-line2);
  border-image: var(--accent-grd-color1) 1;
  padding: .8em;
  z-index: 2;
}
.p-drawer__nav ol > li.havemenu::after {
  position: absolute;
  content: "";
  width: 0.5em;
  height: 0.5em;
  top: 1.2em;
  right: 1rem;
  border-bottom: var(--btn-line2);
  border-right: var(--btn-line2);
  transform: rotate(45deg);
  transition: .5s;
  z-index: -1;
}
.p-drawer__nav ol > li.havemenu.active::after {
  transform: rotate(-135deg);
  top: 1.4em;
}
.p-drawer__nav ol > li.havemenu ul {
  padding-left: .5em;
}
.p-drawer__nav ol > li.havemenu.active ul {
  margin: .7em 0 .4em;
}
.p-drawer__nav ol > li.havemenu ul li {
  position: relative;
  font-size: .95rem;
  padding-left: 2em;
}
.p-drawer__nav ol > li.havemenu ul li::before {
  position: absolute;
  content: "";
  width: 1.2em;
  height: 1px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  background: var(--color-accent1);
}
.p-drawer__close {
  color: white;
}

/* サイトコンテンツ
-------------------------------- */


/*テーマ上書き*/
.home .l-content__body {
  padding: 0;
  margin: 0 auto !important;
  max-width: 100%;
}
.home .l-main {
  width: 100%;
  max-width: 100%;
}


/* 共通設定
-------------------------------- */

/****** 色切り替え・配置切り替え ******/
.-white {
  color: white;
}
.bg-black {
  background: var(--color-black);
}
.bg-gray {
  background: var(--color-light-gray);
}

/****** 見出し設定 ******/

/* h2 */
:root{
  --h2-deco-w: 3rem;
}
h2.head-style {
  width: fit-content;
  font-size:.8rem;
  margin: 1rem auto;
  font-weight: 400;
  font-family: var(--font-family-main);
  text-align: center;
  & span {
    position: relative;
    display: block;
    font-family: var(--font-family-en);
    font-size: 1.8rem;
    font-weight: 500;
    padding: 0 0 2rem;
    line-height: 1;
    margin-bottom: 0;
  }
  & span::before {
    position: absolute;
    content: "";
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: var(--h2-deco-w);
    height: 2px;
    background: var(--accent-grd-color1);
  }
}

@media screen and (max-width: 1096px) {
  h2.head-style {
    font-size: 1rem;
    & span {
      font-size: 1.7rem;
    }
  }
}

/* h3 */


/* h4 */


/* h5 */


.bg-accent3 {
  & .head-style, p, span, dt, dd, li {
    color: white;
  }
}

/****** 装飾 ******/
.frame-style1 {
  position: relative;
  margin-bottom: 0;
}
:root {
  --frame-style1-w: 3.5rem;
}
.frame-style1::before, .frame-style1::after {
  position: absolute;
  content: "";
  width: var(--frame-style1-w);
  height: 1px;
  background: var(--color-accent1);
  transform: rotate(-45deg);
}
.frame-style1::before {
  top: calc(var(--frame-style1-w) * -.2);
  left: calc(var(--frame-style1-w) * -.7);
}
.frame-style1::after {
  bottom: calc(var(--frame-style1-w) * -.2);;
  right: calc(var(--frame-style1-w) * -.7);
}

/****** ボタン設定 ******/
:root {
  --btn-entry-w: 10rem;
  --btn-line: 1px solid var(--font-color-base);
  --btn-line2: 1px solid;
}
.btn1 {
  width: 100%;
}
.btn1 a {
  position: relative;
  display: block;
  width: fit-content;
  min-width: 8em;
  font-size: 1.1rem;
  font-family: var(--font-family-en);
  border: var(--btn-line);
  padding: 0.5rem 3rem 0.5rem 2rem;
  margin-top: 3rem;
  margin-bottom: 0;
  transition: 1s;
}
.btn1.-accent a {
  border-bottom: var(--btn-line2);
  color: var(--color-accent1);
}
.btn1.-white a {
  border: 1px solid white;
  color: white;
}
.btn1.-bkb a {
  border: none;
  color: white;
  background: var(--accent-grd-color1);
}


.btn1.-left a {
  margin-left: 0;
  margin-right: auto;
}
.btn1.-right a {
  margin-left: auto;
  margin-right: 0;
}
.btn1.-center a {
  margin-left: auto;
  margin-right: auto;
}
:root {
  --btn-mark-w: .5rem;
}

.btn1 a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--font-color-base);
  transition: 1s;
}
.btn1 a::after {
  position: absolute;
  content: "";
  width: var(--btn-mark-w);
  height: var(--btn-mark-w);
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto 0;
  border-top: var(--btn-line);
  border-right: var(--btn-line);
  transform: rotate(45deg);
  transition: 1s;
}

.btn1 a:hover {
  border-bottom: 1px solid rgba(0,0,0,0);
}
.btn1 a:hover::before {
  width: 100%;
}
.btn1 a:hover::after {
  right: .5rem;
  border-top: var(--btn-line2);
  border-right: var(--btn-line2)
}

.btn1.-accent a::before {
  background: var(--color-accent1);
}
.btn1.-white a::before {
  background: white;
}
.btn1.-accent a::after {
  border-color: var(--color-accent1);
}
.btn1.-white a::after {
  border-color: white;
}
.btn1.-bkb a::after {
  border-color: white;
}

@media screen and (max-width: 768px) {
  .btn1 a {
    margin-top: 1.5rem;
  }
}

/****** BOXボタン設定 ******/
:root {
  --box-btn-gap: 15px;
  --box-btn-w: calc(50% - var(--box-btn-gap));
  --box-btn-before-w: .5em;
}
.box-btn-area {
  width: 100%;
}
.box-btn-area a {
  position: relative;
  display: block;
  width: var(--box-btn-w);
  margin-left: var(--box-btn-gap);
  margin-bottom: var(--box-btn-gap);
  padding: 1rem;
  padding-left: 2.8rem;
  background: white;
  box-shadow: 1px 1px 5px rgba(0,0,0,.2);
  border-radius: 5px;
}
.box-btn-area a::before {
  position: absolute;
  content: "";
  width: var(--box-btn-before-w);
  height: var(--box-btn-before-w);
  top: calc(var(--box-btn-before-w) * 3.1);
  left: calc(var(--box-btn-before-w) * 3);
  background: var(--color-accent1);
  border-radius: 9999px;
  font-size: 1rem;
  color: var(--font-color-base);
}
.box-btn-area a:hover {
  transform: translateY(-3px);
}

.box-btn-area a span {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0.9em;
  padding: 0 1em 0 0;
  color: var(--color-accent1);
  font-weight: var(--font-family-en);
  text-align: right;
  margin-top: 0.5rem;
}
.box-btn-area a span::after {
  position: absolute;
  content: "";
  width: .6em;
  height: .6em;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  border-top: var(--btn-line2);
  border-right: var(--btn-line2);
  transform: rotate(45deg);
  transition: 1s;
}
.box-btn-area a:hover span::after {
  transform: rotate(45deg) translate(5px, -3px);
}


@media screen and (max-width: 768px) {
  .box-btn-area a {
    width: 100%;
    margin-left: 0;
  }
}


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

/* 固定ページタイトル */
.c-pageTitle__main {
  padding-top: 3rem;
  font-size: 1.8rem;
  color: white;
  font-family: var(--font-family-en);
  font-weight: 400;
  opacity: .8;
}
.p-breadcrumb {
  max-width: var(--max-width1);
  padding: .5rem 1rem;
}
.p-topArea {
  min-height: 45vh;
}
.p-topArea.-noimg {
  background: url(../images/fv01.jpg) no-repeat center top / cover;
}

@media screen and (max-width: 768px) {
  .p-topArea {
    min-height: 30vh;
  }
}

/****** 共通設定 ******/

.page:not(.home) {
  & .l-container {
    max-width: 100%;
  }
  & .section-contents {
    position: relative;
    width: 100%;
    max-width: var(--max-width1);
    margin: 0 auto;
  }
  & h2.page-head {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--color-gray);
  }
  & h2.page-head span {
    font-family: var(--font-family-en);
    margin-right: 1rem;
    font-size: 160%;
    color: var(--font-color-base);
    font-weight: 500;
  }
  & h2.page-head::before {
    position: absolute;
    content: "";
    width: 2rem;
    height: 2px;
    background: var(--accent-grd-color1);
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
  }
}
@media screen and (max-width: 768px) {
  .page:not(.home) {
    & .section-contents {
      padding: 2rem 1.5rem;
    }
  }
}

.inner {
  width: 95%;
  max-width: var(--max-width1);
  margin: 0 auto;
  padding: 6rem 0;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 3rem 0;
  }
}

.area {
  padding: 3% 12%;
}
@media screen and (max-width: 768px) {
  .area {
    padding: 3% 10%;
  }
}


/* カラム設定 */
:root {
  --column-head: 100%;
  --column-main: 100%;
}
.column-style {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.column-head {
  width: var(--column-head);
  margin: 1rem auto 5rem;
}
.column-main {
  width: var(--column-main);
  margin-right: var(--column-pd);
}
@media screen and (max-width: 768px) {
  .column-head {
    margin: 0 auto 2rem;
  }
}

/* coming soon ... */
.comingsoon {
  width: 100%;
  height: 28vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}
.comingsoon p {
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-accent1);
  letter-spacing: .35rem;
  font-family: (--font-family-en);
}


/* テーブルスタイル */
dl.table-style1 {
  width: 100%;
  border-top: 1px solid var(--color-light-gray);
}
dl.table-style1 dt {
  color: var(--color-accent1);
  font-weight: 600;
  padding: 1.5rem 1rem 1rem;
}
dl.table-style1 dd {
  padding: 0 1rem 1.5rem 1.2rem;
  border-bottom: 1px solid var(--color-light-gray);
}


/****** トップページ ******/
:root {
  --fv-h: calc(80vh - var(--ark-adminbar_height));
}
@media screen and (max-width: 1100px) {
  :root {
    --fv-h: calc(35rem - var(--ark-adminbar_height));
  }
}
@media screen and (max-width: 768px) {
  :root {
    --fv-h: calc(33rem - var(--ark-adminbar_height));
  }
}
@media screen and (max-width: 486px) {
  :root {
    --fv-h: calc(30rem - var(--ark-adminbar_height));
  }
}

.hero-slider {
  width: 100%;
  max-width: var(--max-width2);
  margin: 0 auto;
  pointer-events: none;
  box-shadow: var(--box-shadow1);
  overflow: hidden;
  border-radius: 2rem 0;
}
.hero-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.-slider1 .hero-img {
  height: var(--fv-h);
}
.hero-img.-img1 {
  background-image: url(../images/lf-fv01.jpg);
}
.hero-img.-img2 {
  background-image: url(../images/lf-fv03-3.jpg);
}
.hero-img.-img3 {
  background-image: url(../images/lf-fv04.jpg);
}
.hero-img.-img4 {
  background-image: url(../images/lf-fv06.jpg);
}
@media screen and (max-width: 486px) {
  .hero-img.-img2 {
    background-image: url(../images/lf-fv03-5-sp.jpg);
  }
}


/* hero */
:root {
  --hero-side-pd: 6rem;
  --hero-side-w: 20rem;
  --hero-title-shift: 1.5rem;
}
@media screen and (max-width: 768px) {
  :root {
    --hero-side-w: 0;
  }
}
.hero-back {
  position: relative;
  padding: var(--hero-side-pd);
  padding-top: calc(var(--header-h) + 1rem);
  background: url(../images/footer-bk01.jpg) no-repeat center top / cover;
}

.hero {
  position: absolute;
  width: 100%;
  height: calc(100% - var(--header-h));
  left: 0;
  bottom: 0;
}
.fv-catch {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-title {
  position: absolute;
  height: fit-content;
  width: fit-content;
  margin: auto;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 4px;
  font-size: 5vh;
  font-family: var(--font-family-en);
  color: white;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  opacity: .4;
}
.hero-title.title1 {
  top: .8rem;
  left: var(--hero-title-shift);
}
.hero-title.title2 {
  bottom: var(--hero-side-pd);
  right: var(--hero-title-shift);
}
.hero-sub-title {
  position: absolute;
  height: fit-content;
  width: 23em;
  margin: auto;
  bottom: 4em;
  left: -5rem;
  color: white;
  font-weight: 600;
  text-shadow: var(--box-shadow1);
  text-align: center;
  font-size: 1.8rem;
  background: rgba(0,0,0,.8);
  transform: skewX(-10deg);
  padding-left: 6rem;
}
@media screen and (max-width: 1096px) {
  :root {
    --hero-side-pd: 4.5rem;
  }
  .hero-title {
    font-size: 1.2rem;
  }
  .hero-sub-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --hero-side-pd: 3.5rem;
    --hero-title-shift: 1rem;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-sub-title {
    width: 17em;
    font-size: 1.6rem;
    line-height: 1.6;
    padding: .5em 1em .5em 5em;
    bottom: 1em;
  }
}

/* FV 上下のデザイン */
:root {
  --fv-deco-line: 3px solid;
  --fv-deco-pd: 7rem;
  --fv-deco-deg: 25deg;
}
.fv-deco {
  position: relative;
  width: 100%;
  padding: 0 var(--l-header-logo-w) 0 0;
}

.fv-deco.-top {
  width: 100%;
}
@media screen and (max-width: 768px) {
  :root {
    --fv-deco-pd: 5rem;
  }
  .fv-deco.-bottom {
    padding: 1rem 7rem 1rem 1rem;
  }
}

/* 装飾 */
:root {
  --comark-w1: 70%;
  --comark-w1-shift: calc(var(--comark-w1) * -.3);
  --comark-w2: 50%;
  --comark-w2-shift: calc(var(--comark-w2) * -.3);
}
.comark {
  position: relative;
  overflow: hidden;
}
.comark::before, .comark::after {
  position: absolute;
  content: "";
  background: var(--accent-grd-color1);
  mask: url(../images/comark1.svg) no-repeat center center / contain;
  -webkit-mask: url(../images/comark1.svg) no-repeat center center / contain;
  opacity: .07;
}
.comark::before {
  width: var(--comark-w1);
  height: var(--comark-w1);
  bottom: var(--comark-w1-shift);
  right: var(--comark-w1-shift);
}
.comark::after {
  width: var(--comark-w2);
  height: var(--comark-w2);
  top: var(--comark-w2-shift);
  left: var(--comark-w2-shift);
}
.bg-accent3.comark::before, .bg-accent3.comark::after {
  background: var(--accent-grd-color2);
  opacity: .03;
}


/* Service */
.service-box {
  width: 30%;
  margin: 0 4% 3.5rem;
  & .service-img {
    position: relative;
    width: 90%;
    padding-top: 90%;
    margin: 0 auto 1rem;
    border-radius: 9999px;
    overflow: hidden;
    border: 3px solid var(--color-accent1);
  }
  & .service-img img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    object-fit: cover;
  }
  & h3 {
    position: relative;
    padding: 2em 1em .5em;
    font-size: 1.2rem;
    text-align: center;
    margin: 2em 0 .5em;
  }
  & h3 span {
    position: absolute;
    display: block;
    width: 100%;
    height: fit-content;
    top: 0;
    left: 0;
    text-align: center;
    font-weight: 600;
    opacity: .5;
    font-family: var(--font-family-en);
    color: var(--color-accent1);
  }
  & p {
    text-align: center;
    font-size: .8rem;
    opacity: .8;
  }
}
@media screen and (max-width: 768px) {
  .service-box {
    width: 47%;
    margin: 0 1% 2rem;
    & h3 {
      font-size: .95rem !important;
      text-align: center;
      margin: 1.5em 0 .5em !important;
    }
    & p {
      font-size: .8rem;
    }
  }
}


/* Company */
:root {
  --company-table-dt-w: 10em;
}
.company-area {
  max-width: var(--max-width3);
  padding: 5rem;
  background: rgba(0,0,0,.2);
  margin: 0 auto;
  border-radius: 3rem 0;
}
.company-table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  & dt, dd {
    padding: 1em;
    margin-bottom: .9em;
    font-size: .95rem;
    border-bottom: 1px solid rgba(255,255,255,.3);
  }
  & dt {
    width: var(--company-table-dt-w);
    font-weight: 600;
  }
  & dd {
    width: calc(100% - var(--company-table-dt-w));
  }
  & dd a {
    color: var(--color-accent1);
  }
}
@media screen and (max-width: 767px) {
  .company-area {
    padding: 2rem;
  }
  .company-table {
    width: 100%;
    padding: 1rem;
    & dt, dd {
      padding: .5em;
      margin-bottom: 2.5em;
      font-size: 1.1rem;
    }
    & dt {
      width: 100%;
      border-bottom: 0;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    & dd {
      width: 100%;
      margin-bottom: 2rem;
      padding-left: 1em;
    }
  }
}

/* access */
.access-area {
  position: relative;
  width: 90%;
  max-width: var(--max-width3);
  margin: 0 auto;
  padding: 3rem 5rem;
  background: #f4f2ed;
  z-index: 2;
  border-radius: 3rem 0;
}
.access-jpmap {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  content: "";
  width: 55%;
  bottom: -6%;
  right: -6%;
  & img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .access-area {
    padding: 2rem 5rem 8rem;
  }
  .access-jpmap {
    width: 75%;
  }
}
@media screen and (max-width: 486px) {
  .access-area {
    padding: 2rem 2rem 6rem;
  }
  .access-jpmap {
    width: 82%;
    right: -14%;
  }
}

.access-box {
  margin: 3rem 0 0;
  & p.access-st {
    font-size: 0.8rem;
  }
  & p.access-st span {
    position: relative;
    display: block;
    padding-left: 1.5rem;
    margin-bottom: .5em;
    color: var(--color-accent1);
  }
  & p.access-st span::before {
    position: absolute;
    content: "";
    width: 1rem;
    height: 1px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    background: var(--accent-grd-color1);
  }
}
@media screen and (max-width: 767px) {
  .access-box {
    margin: 2rem 0 0;
  }
  & p.access-st {
    font-size: 0.9rem;
  }
  & p.access-st span::before {
    top: .9em;
    bottom: auto;
  }
}
.access-map {
  position: relative;
  width: 100vw;
  height: 45vh;
  margin: 0 calc(50% - 50vw);
  background: var(--accent-grd-color2);
  padding: 10px 0 0;
  z-index: 1;
  & iframe {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .access-map {
    height: 65vh;
  }
}

/* contact */
:root {
  --contact-tel-w: 2.5rem;
}
.wp-block-column.contact-box {
  width: 95%;
  max-width: 35rem;
  margin: 0 auto 3rem !important;
  padding: 2rem;
  background: white;
  box-shadow: var(--box-shadow1);
  & .contact-head {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
  }
  & h3 {
    position: relative;
    margin: 1rem 0 0 !important;
    font-weight: 600;
    color: var(--font-color-base);
  }
  & h3::before {
    display: none;
  }
  & p {
    line-height: 1.5;
    font-size: .95rem;
  }
  & p.contact-sub-head {
    position: absolute;
    font-size: .75rem;
    left: 0;
    right: 0;
    bottom: .9rem;
    margin: 0 auto;
    color: var(--color-gray);
  }
  & .contact-head::before {
    position: absolute;
    content: "";
    width: 3rem;
    height: 3px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--accent-grd-color1);
  }
  & p.contact-tel {
    position: relative;
    width: fit-content;
    font-size: 1.8rem;
    line-height: 1.2;
    font-family: var(--font-family-en);
    font-weight: 600;
    margin: 1rem auto .5rem;
    background: var(--accent-grd-color1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  & p.contact-tel.-free {
    padding-left: calc(var(--contact-tel-w) * 1.2);
  }
  & p.contact-tel.-free::before {
    position: absolute;
    content: "";
    width: var(--contact-tel-w);
    height: var(--contact-tel-w);
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    background: var(--accent-grd-color1);
    mask: url(../images/icon-free1.svg) no-repeat center center / contain;
    -webkit-mask: url(../images/icon-free1.svg) no-repeat center center / contain;
  }
  & p.contact-foam-fax {
    margin: 0 auto;
    font-family: var(--font-family-en);
    font-weight: 400;
    color: var(--color-accent1);
  }
  & p.contact-time {
    font-size: .9rem;
    color: var(--color-gray);
  }
  & .wp-block-buttons.wp-block-buttons {
    margin: 2rem 0;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-columns {
    gap: 0 !important;
  }
  .wp-block-column.contact-box {
    margin: 0 auto 2rem !important;
    & h3 {
      font-size: 1.2rem;
    }
  }
}

.contact-foam-block {
  width: 100%;
  max-width: 50rem;
  padding: 4rem 3rem;
  background: var(--accent-grd-color2);
  margin: 5rem auto;
  & h2 {
    position: relative;
    width: fit-content;
    margin: 0 auto 2rem;
    padding-bottom: 3rem;
    font-size: 1.6rem;
    font-weight: 400;
  }
  & h2::before {
    position: absolute;
    content: "";
    bottom: 2.3rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 3rem;
    height: 3px;
    background: var(--accent-grd-color1);
  }
  & h2::after {
    position: absolute;
    width: fit-content;
    content: "CONTACT FOAM";
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 1rem;
    font-family: var(--font-family-en);
    color: var(--color-accent1);
  }
}
@media screen and (max-width: 767px) {
  .contact-foam-block {
    padding: 2rem 0;
    margin: 2rem auto 3rem;
  }
}

/* forminatorスタイル設定 */
:root {
  --form-input-color: rgb(255, 251, 234);
}
.forminator-label {
  position: relative;
  padding-bottom: .5rem;
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--font-color-base);
  margin-left: -.5rem;
}
.select2-container {
  background: var(--form-input-color);
  margin-top: 0 !important;
}
.forminator-select-dropdown {
  background: var(--form-input-color);
  border: 1px solid #ddd !important;
}
.forminator-col {
  padding: 0;
}
.forminator-field-textarea {
  padding: 0;
}
label.forminator-floating--textarea {
  position: relative !important;
  padding: 0;
}
.forminator-field {
  & input, textarea {
    background: var(--form-input-color);
  }
}
button.forminator-button.forminator-button-submit {
  color: white;
}

.form-attention {
  display: block;
  background: white;
  padding: 1.5rem !important;
  max-width: 32em;
  flex: none !important;
  -webkit-box-flex: unset !important;
  margin: 0 auto;
  & label.forminator-label {
    text-align: center;
    margin: 1rem 0 .5rem !important;
  }
  & .forminator-field p {
    font-size: .8rem;
    text-align: center;
    margin-bottom: 0;
  }
  & .forminator-checkbox__wrapper {
    width: fit-content;
    align-items: center !important;
    margin: 0 auto 1.5rem;
  }
  & .forminator-row span.forminator-checkbox-box {
    border: 1px solid var(--color-accent1) !important;
    border-radius: 1px !important;
    background: var(--form-input-color);
  }
}
@media screen and (max-width: 767px) {
  .form-attention {
    & .forminator-checkbox__wrapper {
      align-items: flex-start !important;
    }
    & .forminator-checkbox__wrapper label {
      top: 5px;
    }
  }
}


:root {
  --sns-link-icon-w: 1.2em;
}
.sns-link {
  width: fit-content;
  margin: 0 auto 3rem;
  & a {
    position: relative;
    font-size: 1.2rem;
    font-family: var(--font-family-en);
    padding-left: calc(var(--sns-link-icon-w) * 1.5);
    border-bottom: 1px solid var(--color-accent1);
  }
  & a::before {
    position: absolute;
    content: "";
    width: var(--sns-link-icon-w);
    height: var(--sns-link-icon-w);
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    background: var(--color-accent1);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
  }
  & a.-insta::before {
    mask-image: url(../images/icon-insta1.svg);
    -webkit-mask-image: url(../images/icon-insta1.svg);
  }
}

@media screen and (max-width: 767px) {
  .sns-link {
    margin: 3rem auto;
  }
}


/* 固定ページ 共通設定
-------------------------------- */



/* 投稿 / アーカイブ 共通設定
-------------------------------- */
/* テーマ上書き */
.single-post .l-content__body,
.archive .l-content__body {
  max-width: var(--max-width1);
  margin-top: 5rem;
  margin-bottom: 8rem;
}
.single-post .c-pageTitle__main,
.archive .c-pageTitle__main {
  font-size: 1.3rem;
  border-bottom: 2px solid;
  border-image: var(--accent-grd-color1) 1;
  padding: 0.5rem;
  margin-top: 4rem;
  color: var(--font-color-base);
}
.single-post .p-breadcrumb,
.archive .p-breadcrumb {
  top: 7rem;
}

.p-postList .p-postList__title {
  font-size: 1rem;
  text-align: left;
}

@media screen and (max-width: 768px) {
  :root {
    --ark-mt--h2: 1.5rem;
  }
  .single-post .l-content__body,
  .archive .l-content__body {
    width: 95%;
  }
  .l-main__body>.c-postContent {
    margin-top: 2rem;
  }
  .single-post .c-pageTitle__main,
  .archive .c-pageTitle__main {
    margin-top: 7rem;
  }
  .single-post .p-breadcrumb,
  .archive .p-breadcrumb {
    top: 6rem;
  }
  .single-post h2 {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
}


/* サイドバー・関連情報
-------------------------------- */
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: 2px;
  background: var(--accent-grd-color1);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}


/* プラグイン設定
-------------------------------- */

/****** forminator ******/
form.forminator-ui {
  width: 90% !important;
  max-width: 600px;
  margin: 0 auto !important;
}
.forminator-field{
  text-align: left;
}
button.forminator-button {
  background: var(--color-black);
}
button.forminator-button span {
  color: white
}
.forminator-button {
  display: block !important;
  background: var(--accent-grd-color1) !important;
  margin-left: auto !important;
  padding: .5em 2em !important;
  border-radius: 0 !important;
  box-shadow: var(--box-shadow1) !important;
}

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

.l-footer {
  background: url(../images/footer-bk01.jpg);
}
.l-footer__foot {
  padding: 7rem 0 2rem;
}

.l-footer__inner a, .l-footer__inner p {
  color: var(--font-color-base);
}

.l-footer .l-container {
  width: 95%;
  max-width: var(--max-width1);
  margin: 0 auto;
  padding-right: 3%;
}

/* フッターロゴ（画像）*/
:root {
  --footer-logo-img-w: 13rem;
}
.footer-logo {
  width: 100%;
}
a.footer-logo-icon {
  display: block;
  width: var(--footer-logo-img-w);
  margin: 0 auto;
}

/* フッターナビ*/
.footer-nav {
  width: 100%;
}
.footer-nav1 {
  position: relative;
  margin: 6rem auto 0;
  & a {
    position: relative;
    margin: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,.7);
    padding: .7em;
  }
  & a span {
    display: inline-block;
    color: white;
    font-family: var(--font-family-en);
  }
  & a::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 2px;
    bottom: 0;
    right: 0;
    margin: auto 0;
    background: var(--accent-grd-color1);
  }
  & a:hover {
    transform: translateX(3px);
  }
}

/* 別窓リンク */
:root {
  --new-window-w: .8rem;
}
.footer-nav, .p-drawer__nav {
  & a.new_window {
    position: relative;
    padding-left: calc(var(--new-window-w) * 1.3);
  }
}
.footer-nav, .p-drawer__nav {
  & a.new_window::before {
    position: absolute;
    content: "";
    width: var(--new-window-w);
    height: var(--new-window-w);
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    background: var(--font-color-base);
    mask: url(../images/icon-newwindow1.svg) no-repeat center center / contain;
    -webkit-mask: url(../images/icon-newwindow1.svg) no-repeat center center / contain;
  }
}

p.c-copyright {
  padding: 1rem 0;
  color: white;
  font-family: var(--font-family-en);
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .l-footer__foot {
    padding: 5rem 0 2rem;
  }
  .footer-logo-tx {
    margin: 2rem 0 0;
  }
  .footer-nav {
    width: 100%;
    margin-top: 3rem;
  }
  .footer-nav1 {
    margin: 2rem auto 0;
  }
}


/* SNSメニュー */
:root {
  --sns-link-w: 2rem;
}
.sns-menus {
  display: flex;
  flex-wrap: wrap;
  margin: 0 2rem;
  & a {
    display: inline-block;
    width: var(--sns-link-w);
    height: var(--sns-link-w);
    background: var(--color-accent1);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
  }
  & a:not(:first-child) {
    margin-left: calc(var(--sns-link-w) * .6);
  }
  & a.-insta {
    mask-image: url(../images/icon-insta1.svg);
    -webkit-mask-image: url(../images/icon-insta1.svg);
  }
  & a.-line {
    mask-image: url(../images/icon-line1.svg);
    -webkit-mask-image: url(../images/icon-line1.svg);
  }
}
@media screen and (max-width: 768px) {
  .sns-menus {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
}
.sns-menus.-drawer {
  justify-content: center;
  margin-bottom: 3rem;
  & a {
    background: var(--accent-grd-color1);
  }
}



/*==================================================
ローディングアニメーション
===================================*/

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(70px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-70px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(70px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
