@charset "UTF-8";
/* settings
---------------------------------------------------*/
/* font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&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=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');



/* Base
-------------------------------- */
/***** 初期値 *****/
:root {
  /* 色設定 */
  --color-black: #231815;
  --color-gray: #666;
  --color-light-gray: #F5F5F5;
  --color-accent1: #369bea;
  --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,
    var(--color-accent1),
    var(--color-accent1-sub)
  );
  --accent-grd-color2: linear-gradient(
    to right,
    var(--color-accent2),
    var(--color-accent2-sub)
  );

  /* フォント */
  --font-color-base: #666;
  --font-family-sans: 'Noto Sans JP', sans-serif;
  --font-family-serif: 'Shippori Mincho B1', serif;
  --font-family-jost: 'Jost', sans-serif;
  --font-family-logo: "Libre Baskerville", serif;

  /* スタイル */
  --tx-shadow1: 1px 1px 1px rgba(0,0,0,.3);
  --box-shadow1: 2px 2px 5px rgba(0,0,0,.3);
  --max-width1: 1200px;
  --line-gray: 1px solid #A0A0A0;
  --line-gray2: 2px solid #A0A0A0;
}

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

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

/* 背景色設定 */
.bg-color0 {
  background: var(--accent-grd-color1);
}
.bg-color1 {
  background: var(--accent-grd-color2);
}
.bg-gray {
  background-color: #d9dfe1;
}
.bg-img1 {
  background: url(../images/contents-bk01.webp) no-repeat center center / cover;
}

/* テキスト設定 */
.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,h2,h3,h4,dt,dd {
  font-family: var(--font-family-sans);
  color: var(--font-color-base);
}
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;
}

.w100 { width: 100%; }

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

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

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

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


/* header
-------------------------------- */
:root {
  --header-h: 4.5rem;
  /* ロゴサイズ */
  --ark-logo_size--pc: var(--header-h);
  --ark-logo_size--sp: var(--header-h);
}
.l-header {
  width: 95%;
  height: var(--header-h);
  background: initial;
  margin: 0 auto;
}
@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;
}

/* ロゴまわり */
.l-header__center {
  min-width: 17rem;
  padding: 0;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .l-header__center {
    min-width: 0;
  }
}
.c-headLogo {
  padding: 0.4rem 0;
}

/* ロゴ テキストバージョン */
:root {
  --has-text-logo-w: 3rem;
}
.l-header__logo.has-text a {
  position: relative;
  display: block;
  font-size: 1.5rem;
  padding: 1rem;
  padding-left: calc(var(--has-text-logo-w) * 1.2);
  color: #333;
  font-family: var(--font-family-logo);
  font-weight: 700;
}
@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-icon02.png) no-repeat center center / contain;*/
}

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

/* コンタクト＆ハンバーガーメニュー */
:root {
  --l-header__drawerBtn-w: 15rem;
  --contact-menu-w: 8.5rem;
  --hamburger-menu-w: calc(var(--l-header__drawerBtn-w) - var(--contact-menu-w));
  --menu-icon-w: 1.6rem;
}
.l-header__drawerBtn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: var(--l-header__drawerBtn-w);
  height: 100%;
  background: var(--color-accent1);
  border-radius: 0 0 5px 5px;
  box-shadow: var(--box-shadow1);
}
.contact-menu {
  width: var(--contact-menu-w);
}
.c-iconBtn {
  width: var(--hamburger-menu-w);
}
.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-jost);
  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;
}
.hamburger-icon {
  width: var(--menu-icon-w);
  height: var(--menu-icon-w);
}
.hamburger-icon.__open {
  background: white;
  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: white;
  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;
  }
  .hamburger-icon.__open,
  .hamburger-icon.__close {
    background: var(--color-accent1);
  }
  .contact-menu, .c-iconBtn p {
    display: none;
  }
}


/* その他ヘッダー */

.l-header__right {
  background: white;
  padding: 1.3rem 1rem 1.3rem 1.5rem;
  border-radius: 0 0 5px 5px;
  margin-right: 2rem;
  box-shadow: var(--box-shadow1);
}
@media screen and (max-width: 1300px) {
  .l-header__right {
    display: none;
  }
}
.c-gnav .__mainText {
  color: var(--color-black);
  font-size: 1rem;
  order: 2;
}
.c-gnav .__subText {
  color: var(--color-accent1);
  font-family: var(--font-family-jost);
  font-weight: 600;
  order: 1;
  opacity: 1;
  text-align: left;
  margin-bottom: 0.8em;
  font-size: .8rem;
}
.c-gnav__li, .c-gnav__li>.c-gnav__a {
  display: flex;
}
.c-gnav__li>.c-gnav__a {
  position: relative;
  height: fit-content;
  padding: 0 0.5em;
  margin: 0 1em;
  border-left: 1px solid var(--color-accent1);
}

/* ドロワーメニュー
-------------------------------- */
.p-drawer {
  width: 27rem;
  right: 0;
  left: auto;
  background: rgba(255,255,255,.95);
}
@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: 1rem 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: block;
  width: 100%;
}
.p-drawer__nav ol > li {
  position: relative;
  border-bottom: var(--btn-line2);
  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);
}

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


/*テーマ上書き*/
.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);*/
background-color: #d9dfe1;
}

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

/* h2 */
h2 {
  font-size: 1rem;
  margin: 2rem 0 3.5rem;
  font-weight: 400;
  text-align: right;
  overflow: hidden;
}
h2 span {
  position: relative;
  width: fit-content;
  display: block;
  font-family: var(--font-family-jost);
  color: var(--color-accent1) !important;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0;
  padding-right: calc(var(--h2-mark-w) + .5rem);
  line-height: 1;
  margin-bottom: -0.7rem;
}
h2 span::before {
  position: absolute;
  content: "";
  width: 800px;
  height: 1px;
  background: var(--color-accent1);
  top: 0;
  bottom: 0;
  right: -820px;
  margin: auto 0;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1rem;
    margin: 1rem 0 3rem;
  }
  h2 span {
    font-size: 1.7rem;
    margin-bottom: -.5rem;
  }
}

/* h3 */
h3 {
  position: relative;
  height: fit-content;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.8rem 0 2.5rem;
  padding: 0 0.5em 0 1em;
  border-left: 5px solid var(--color-accent1);
}
h3 span {
  position: absolute;
  display: block;
  height: 30em;
  left: -3rem;
  top: .5em;
  font-size: 1rem;
  color: var(--color-accent1);
  font-weight: 900;
  opacity: .6;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  text-orientation: mixed;
  -webkit-text-orientation: mixed;
  -ms-text-orientation: mixed;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.1rem;
    margin: 2.8rem 0 2.5rem;
  }
}

/* h4 */
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: .1em .3em;
}

/* h5 */
h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .5rem;
  padding: .1em .3em;
}

/****** 装飾 ******/
.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 var(--color-accent1);
}
.btn1 {
  width: 100%;
}
.btn1 a {
  position: relative;
  display: block;
  width: fit-content;
  min-width: 8em;
  font-size: 1.1rem;
  font-family: var(--font-family-jost);
  border-bottom: var(--btn-line);
  padding: 0.5rem 4rem 0.5rem 1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  transition: 1s;
}
.btn1.-accent a {
  border-bottom: var(--btn-line2);
  color: var(--color-accent1);
}
.btn1.-white a {
  border-bottom: 1px solid white;
  color: white;
}

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

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

/****** 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-jost);
  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: 3.6rem;
  color: #ffffff;
  text-shadow: -1px -1px 1px #260d0d;
}
.p-breadcrumb {
  max-width: var(--max-width1);
  padding: .5rem 1rem;
}
.p-topArea.-noimg {
  background: url(../images/mv-back01.jpg) no-repeat center top / cover;
}

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

.page:not(.home) .l-container {
  max-width: 100%;
}
.section-contents {
  position: relative;
  width: 100%;
}
.inner {
  width: 90%;
  max-width: var(--max-width1);
  padding: 5rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 3rem 0;
  }
}

.contents-img {
  border-radius: 5px;
}

:root {
  --column-w1: 37%;
  --column-w2: 12rem;
  --column-wh: 50%;
}
.column1_s {
  width: var(--column-w1);
  min-width: 25rem;
}
.column1_b {
  width: calc(100% - var(--column-w1));
  padding: 0 0 0 5rem;
}
.column2_s {
  width: var(--column-w2);
}
.column2_b {
  width: calc(100% - var(--column-w2));
}
.column_h {
  width: calc(100% - var(--column-wh));
}

@media screen and (max-width: 1024px) {
  .column1_s, .column1_b {
    width: 100%;
  }
  .column2_s, .column2_b {
    width: 100%;
  }
  .column_h {
    width: 100%;
  }
  .column1_b {
    padding: 0 0 0 .5rem;
  }
}

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


/* テーブルスタイル */
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);
}


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

/* hero */
.hero {
  position: relative;
  height: 90vh;
  background: url(../images/mv-back01.jpg) no-repeat center center / cover;
}
@media screen and (max-width: 768px) {
  .hero {
    height: 75vh;
  }
}

.hero-inner {
  position: relative;
  width: 90%;
  height: 100%;
  margin: 0 auto;
}
.hero-text {
  position: relative;
  width: 100%;
  padding: 38vh 0 0;
}

/* キャッチテキスト（画像）*/
:root {
  --hero-title-img-w: 45%;
  --hero-title-img-max-w: 45rem;
}
p.hero-title {
  width: var(--hero-title-img-w);
  max-width: var(--hero-title-img-max-w);
  padding-top: calc(var(--hero-title-img-w) * .33);
  max-height: calc(var(--hero-title-img-max-w) * .33);
  background: #e2f8f9;
  mask: url(../images/catch-tx-img02.png) no-repeat center center / contain;
  -webkit-mask: url(../images/catch-tx-img02.png) no-repeat center center / contain;
}
@media screen and (max-width: 768px) {
  :root {
    --hero-title-img-w: 98%;
  }
}


/* キャッチテキスト
p.hero-title {
  font-size: 2.4rem;
  color: var(--color-accent1);
  letter-spacing: .35rem;
  font-family: var(--font-family-jost);
  line-height: 1.6;
}*/

@media screen and (max-width: 1024px) {
  :root {
    --hero-bk-h: calc(100vh - 24rem);
  }
  .hero::before {
    width: 100%;
  }
  .hero-text {
    top: 0;
    padding: 30vh 0 3rem;
  }
  p.hero-title {
    font-size: 1.8rem;
  }
  p.hero-sub {
    font-size: 1.3rem;
  }
}

/* hero スライダー */
.hero-slide-area {
  width: 95%;
  margin: 7rem auto 0;
}
@media screen and (max-width: 768px) {
  .hero-slide-area {
    width: 90%;
    margin: 1rem auto 0;
  }
}
.hero-slide-box {
  display: block;
  position: relative;
  background: white;
  border-radius: 10px;
  box-shadow: var(--box-shadow1);
  padding: 2rem;
  margin: 0 1rem;
  margin-bottom: 0.5rem;
  height: 25vh;
}
@media screen and (max-width: 768px) {
  .hero-slide-box {
    height: 24vh;
  }
}

p.hero-slide-title {
  font-size: 1.5rem;
  color: var(--color-accent1);
  margin-bottom: .2rem;
  font-family: var(--font-family-jost);
  line-height: 1.5;
}
ul.hero-slide-sub-title {
  margin-bottom: 1rem;
  padding: 0;
}
ul.hero-slide-sub-title li {
  list-style: none;
  position: relative;
  padding-left: .7em;
}
ul.hero-slide-sub-title li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 90%;
  background: var(--color-accent1);
  top: 0;
  bottom: 0;
  left: .1em;
  margin: auto 0;
}

p.hero-slide-tx {
  width: 45%;
  height: 50%;
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  overflow: hidden;
}
.hero-slide-box img {
  position: absolute;
  width: 45%;
  height: 68%;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  object-fit: cover;
}


/* hero スライダー 矢印・ドット設定 */
:root {
  --hero-arrow-w: 2.5rem;
}
.slick-prev::before, .slick-next::before {
  display: none;
}
.slick-prev, .slick-next {
  width: var(--hero-arrow-w);
  height: var(--hero-arrow-w);
  background: var(--color-accent1);
}
.slick-prev:hover, .slick-next:hover {
  background: var(--color-accent1);
  opacity: .8;
}
.slick-prev {
  mask: url(../images/icon-arrow-l.svg) no-repeat center center / contain;
  -webkit-mask: url(../images/icon-arrow-l.svg) no-repeat center center / contain;
  left: -3rem;
}
.slick-next {
  mask: url(../images/icon-arrow-r.svg) no-repeat center center / contain;
  -webkit-mask: url(../images/icon-arrow-r.svg) no-repeat center center / contain;
  right: -3rem;
}
.slick-dots {
  bottom: -2rem;
}
.slick-dots li button:before {
  color: var(--color-accent1);
  opacity: .4;
}
.slick-dots li.slick-active button:before {
  color: var(--color-accent1);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .slick-prev {
    left: -2.2rem;
  }
  .slick-next {
    right: -2.2rem;
  }
}

/* news */
.news-box {
  width: 100%;
}

.news-list {
  position: relative;
  border-bottom: var(--line-gray);
  padding: 1.5rem 3rem 1.5rem 1rem;
}
.news-list::after {
  position: absolute;
  content: "";
  width: .5rem;
  height: .5rem;
  border-top: var(--btn-line2);
  border-right: var(--btn-line2);
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto 0;
  transition: 1s;
}
.news-list:hover {
  border-bottom: var(--btn-line2);
}
.news-list:hover::after {
  right: 1rem;
}

.news-list p {
  margin-bottom: 0;
}
.news-date {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent1);
  font-family: var(--font-family-jost);
}
.news-date span {
  display: inline-block;
  width: fit-content;
  height: fit-content;
  font-size: 0.65em;
  color: white;
  background: var(--color-accent1);
  border-radius: 5px;
  line-height: 1;
  padding: 0.3em 1em .4em;
  margin-left: 1em;
}

.news-title {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .news-list {
    padding: 1.5rem 4rem 1.5rem 1rem;
  }
  .news-date {
    width: 100%;
  }
  .news-title {
    width: 100%;
  }
}


/****** COMPANY ページ ******/

/* グループ会社紹介 */
.group-logo-unit {
  margin: 3rem auto;
}
.group-logo-unit-g {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  width: 47%;
  min-width: 19em;
  background: white;
  box-shadow: var(--box-shadow1);
  padding: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .group-logo-unit-g {
    width: 100%;
  }
}
.group-logo-unit-logo {
  width: 100%;
  height: 10vh;
}
@media screen and (max-width: 768px) {
  .group-logo-unit-logo {
    height: 14vh;
  }
}
.group-logo-unit-logo img {
  display: block;
  width: auto;
  max-width: 75%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.group-logo-unit-tx {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.group-logo-unit-tx h3 {
  width: 100%;
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-left: 0;
  border-bottom: 1px solid var(--color-accent1);
  padding: .3em;
  color: var(--color-accent1);
}
.group-logo-unit-tx ul {
  margin-bottom: 1rem;
  flex-grow: 1;
  padding-left: .8em;
}
.group-logo-unit-tx ul li {
  position: relative;
  font-size: .8rem;
  list-style: none;
  padding-left: 1em;
}
.group-logo-unit-tx ul li::before {
  position: absolute;
  content: "";
  width: .4em;
  height: .4em;
  top: .6em;
  left: 0;
  margin: 0;
  background: var(--color-accent1);
  border-radius: 9999px;
}
.group-logo-unit-tx ul li.no-before::before {
  content: none;
}


.group-logo-unit-tx p {
  color: var(--color-accent1);
  font-size: .9rem;
  margin-bottom: 0;
  font-family: var(--font-family-jost);
}
.group-logo-unit-tx p span {
  display: inline-block;
  width: fit-content;
  font-size: 60%;
  line-height: 1;
  padding: .5em 1em;
  background: var(--color-accent1);
  color: white;
  margin-right: 1em;
}


/* 投稿 / アーカイブ 共通設定
-------------------------------- */
/* テーマ上書き */
.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 var(--color-accent1);
  padding: 0.5rem;
  margin-top: 4rem;
}
.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;
  }
}

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

/***** サイトマップページ *****/
.sitemap-area {
  margin: 2rem 0;
}
.sitemap-area ol > li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent1);
}
.sitemap-area ol > li ul {
  margin-top: .5rem;
  padding-left: 0;
}
.sitemap-area ol > li ul li {
  position: relative;
  list-style: none;
  padding: .3em .3em .3em 1.2em;
  font-size: 1rem;
  font-weight: 400;
}
.sitemap-area ol > li ul li::before {
  position: absolute;
  content: "";
  width: .5em;
  height: .5em;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  border-top: var(--btn-line2);
  border-right: var(--btn-line2);
  transform: rotate(45deg);
}



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


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

/****** 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
}


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

.l-footer {
  background: url(../images/mv-back01.jpg) no-repeat left 87% / cover;
  transform: scale(-1);
}
.l-footer__inner {
  transform: scale(-1);
}
.l-footer__foot {
  padding: 6rem 0;
}

.l-footer__inner a, .l-footer__inner p {
  color: #000000;
}

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

/* フッターロゴ（テキスト）*/
:root {
  --footer-nav-w: 20rem;
  --footer-logo-icon-w: 4rem;
}
.footer-logo {
  width: calc(100% - var(--footer-nav-w));
}
.footer-logo a {
  position: relative;
  display: block;
  font-size: 1.5rem;
  padding: 1rem;
/*  padding-left: calc(var(--footer-logo-icon-w) * 1.2);*/
  color: #000000;
  font-family: var(--font-family-logo);
  font-weight: 700;
}
.footer-logo a::before {
  position: absolute;
  content: "";
  width: var(--footer-logo-icon-w);
  height: var(--footer-logo-icon-w);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
/*  background: url(../images/site-icon02.png) no-repeat center center / contain;*/
}
/* フッターロゴ（画像）
:root {
  --footer-logo-img-w: 16rem;
}
.footer-logo {
  width: calc(100% - var(--footer-nav-w));
}
.footer-logo a {
  display: block;
  width: fit-content;
  max-width: var(--footer-logo-img-w);
}
*/

.footer-logo-tx {
  margin: 3rem 2rem;
}
.footer-logo-tx p {
  line-height: 1.6;
}

.footer-nav {
  width: var(--footer-nav-w);
  margin-top: 6rem;
  display: flex;
  flex-wrap: wrap;
}
.footer-nav a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: .8rem;
  font-size: 0.9rem;
}
.footer-nav a span {
  position: relative;
  display: inline-block;
  width: 50%;
  color: #264448;
  font-family: var(--font-family-jost);
  padding-right: 1.4em;
  text-align: right;
}
.footer-nav a span::after {
  position: absolute;
  content: "";
  width: .5em;
  height: .5em;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  border-top: var(--btn-line2);
  border-right: var(--btn-line2);
  transform: rotate(45deg);
}

.footer-nav a:hover {
  transform: translateX(3px);
}

p.c-copyright {
  padding: 1rem 0 2rem;
}

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


/* フォームスタイル
-------------------------------- */
.forminator-button {
  display: block !important;
  background: var(--color-accent1) !important;
  margin-left: auto !important;
  padding: .5em 2em !important;
  border-radius: 5px !important;
  box-shadow: var(--box-shadow1) !important;
}