@charset "utf-8";

/*=================================================
 *  CSS Custom Properties
 *================================================*/
:root {
  /* --- 初期値設定 ここから ------------------------ */
  --font-family-base: 'Noto Sans JP', sans-serif; /* FontFamily（日本語） */
  --font-family-en: 'Rock Salt', cursive; /* FontFamily（英字） */
  --line-height-base: 1.6; /* 基本のline-height */
  --color-bg: #fff; /* 背景色 */
  --color-main: #1A449A; /* メインカラー */
  --color-accent: #006BB6; /* アクセントカラー */
  --color-font-base: #333; /* 文字色 */
  --color-font-btn: #fff; /* ボタン文字色 */
  --height-header: 60; /* SP表示時のヘッダーの高さ */
  --padding-inline: 20px; /* SP表示時の左右余白 */
  --width-max-img: 600px; /* SP表示時の最大画像幅 */
  --l-inner-xs: 900; /* PC表示時のインナー幅 - 極小 */
  --l-inner-s: 1000;/* PC表示時のインナー幅 - 小 */
  --l-inner: 1100; /* PC表示時のインナー幅 - 基本 */
  --space-xs: 20; /* 項目間のスペース - 極小 */
  --space-sm: 30; /* 項目間のスペース - 小 */
  --space-md: 50; /* 項目間のスペース - 中 */
  --space-lg: 100; /* 項目間のスペース - 大 */
  --space-xl: 140; /* 項目間のスペース - 極大 */
  /* --- 初期値設定 ここまで ------------------------ */

  /* z-index */
  --l-layer__modal: 100;
  --l-layer__drawer: 40;
  --l-layer__header: 20;
  --l-layer__floating: 10;
  --l-layer__default: 1;
}

/* PC */
@media screen and (min-width: 768px) {
  :root {
    --height-header: 140; /* PC表示時のヘッダーの高さ */
    --padding-inline: 20px; /* PC表示時の左右余白 */
    --width-max-img: 100%; /* PC表示時の最大画像幅 */
    --space-md: 80; /* 項目間のスペース - 中 */
  }
}


/*=================================================
 *  Base ベーススタイル
 *================================================*/
html{
  font-size: 1em;
  min-height: -webkit-fill-available;
}

body {
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: var(--line-height-base);
  color: var(--color-font-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-bg);
  word-wrap: break-word;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

[lang=en] {
  font-family: var(--font-family-en);
  text-transform: uppercase;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

a {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

/* フォーカス時のアウトライン */
:focus-visible {
  outline: 1px solid var(--color-accent);
}

/* アンカー位置をヘッダーの高さ分ずらす */
:target {
  scroll-margin-top: calc(var(--height-header)*1px);
}

/* PC */
@media screen and (min-width: 768px) {
  html{
    font-size: min(calc( 8/var(--l-inner) * 100vw + .5em ), 1em);
  }
  body {
    min-width: calc(var(--l-inner)*1px + var(--padding-inline)*2);
  }
  #wrapper{
    overflow: hidden;
  }
  /* 電話番号リンクをクリック不可 */
  a[href^="tel:"]{
    pointer-events: none;
  }
}

/*=================================================
 *  Utility ユーティリティ
 *================================================*/

 /* float関連 */
.u-cf::before,
.u-cf::after {
  clear: both;
  content: "";
  display: block;
}
.u-fl {
  float: left;
}
.u-fr {
  float: right;
}

/* 左寄せ、中央、右寄せ */
.u-left {
  text-align: left;
}
.u-center {
  text-align: center;
}
.u-right {
  text-align: right;
}

/* 太字 */
.u-bold {
  font-weight: 700;
}

/* Word Break（親要素にクラス指定） */
.u-wbr {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* スクリーンリーダー向け */
.u-screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/* 表示／非表示 切り替え */
.u-pc-only {
  display: none;
}

/* PC */
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
  .u-sp-only {
    display: none;
  }
}

/*=================================================
 *  Layout レイアウト
 *================================================*/
/* インナー - 標準 */
.l-inner {
  width: 100%;
  max-width: calc(var(--l-inner)*1px + var(--padding-inline)*2);
  padding-inline: var(--padding-inline);
  margin-inline: auto;
  overflow: hidden;
}

/* main - TOPページ*/
.l-top-main {
  /*padding-top: calc(var(--height-header)/16*1rem);*/
}

/* main - 下層ページ*/
.l-sub-main {
  /*padding-top: calc(var(--height-header)/16*1rem);*/
}

/* セクション */
.l-section {
  margin-top: calc(var(--space-md)/16*1rem);
}

/* セクション - 下層ページ */
.l-sub-section {
  margin-top: calc(var(--space-md)/16*1rem);
}

/* ボタンエリア */
.l-btn-area {
  margin-top: calc(var(--space-xs)/16*1rem);
  text-align: center;
}

  /* CMSページ(column2) */
  .l-main{
    margin-bottom:calc(100/16*1rem);
    /*border:red solid 1px;*/
  }

/* PC */
@media screen and (min-width: 768px) {
  /* main - 下層ページ*/
  .l-sub-main {
    padding-top: calc(var(--height-header)/16*1rem);
  }
  /* インナー - 極小 */
  .l-inner-xs {
    margin-inline: auto;
    max-width: calc(var(--l-inner-xs) * 1px);
  }
  /* インナー - 小 */
  .l-inner-s {
    margin-inline: auto;
    max-width: calc(var(--l-inner-s) * 1px);
  }
  /* CMSページ(column1) */
  .l-column1{
    display: grid;
    grid-template-columns: 1fr;
  }
  /* CMSページ(column2) */
  .l-column2{
    display: grid;
    grid-template-columns: calc(200/16*1rem) 1fr;
    gap: calc(60/16*1rem);
  }
  .l-side{
    order:1;
    padding-top:calc(70/16*1rem);
  }
  .l-main{
    order:2;
    margin-bottom:0;
  }
}

/*=================================================
 *  Component 共通部品
 *================================================*/

 /*------------------------------------------
 *  ハンバーガーメニュー
 *------------------------------------------*/
.c-hamburger {
  padding: 15px;
  width: 60px;
  height: 60px;
  background:#fff;
  position: relative;
}
.c-hamburger::after{
  content: "MENU";
  font-weight: 600;
  display: block;
  position: absolute;
  top:30px;
  left: 0;
  text-align: center;
  width:100%;
  font-size:12px;
  color:var(--color-main);
  transition: 0.3s; 
}
.c-hamburger__line {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  background-color: transparent;
  border-radius: 2px;
  line-height: 1;
  top:-10px;
}
.c-hamburger__line::before,
.c-hamburger__line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  -webkit-transition: .2s all ease-in-out;
  transition: .2s all ease-in-out;
  background-color:var(--color-main);
  border-radius: 2px;
}
.c-hamburger__line::before {
  top: -5px;
}
.c-hamburger__line::after {
  top: 5px;
}

/* ハンバーガーメニュー open時 */
.is-drawerActive .c-hamburger::after{
  content: "CLOSE";
  top:35px;
}
.is-drawerActive .c-hamburger__line {
  background-color: transparent;
}
.is-drawerActive .c-hamburger__line::before,
.is-drawerActive .c-hamburger__line::after {
  top: 0;
  background-color:var(--color-main);
}
.is-drawerActive .c-hamburger__line::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.is-drawerActive .c-hamburger__line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*------------------------------------------
 *  パンくず
 *------------------------------------------*/
.c-breadcrumb-wrapper{
  background-color: rgba(52,139,204,0.2);
  padding:0 calc(20/16*1rem); 
 }
.c-breadcrumb {
  display:flex;
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
  padding:calc(12/16*1rem) 0;
  overflow: hidden;
}
.c-breadcrumb__item {
  position: relative;
  line-height: 1;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "＞";
  position: absolute;
  top: calc(50% - .3em);
  right: calc(100% + .6em);
  font-size: calc(12/16*1rem);
  line-height: 1;
}
.c-breadcrumb__item + .c-breadcrumb__item {
  margin-left: 2em;
}
.c-breadcrumb__item:first-child a{
  padding-top:.2em;
}
.c-breadcrumb__item a {
  font-size: calc(12/16*1rem);
  color:var(--color-font-sub);
  display: inline-block;
  color:#666;
}
.c-breadcrumb__item + .c-breadcrumb__item a{
  padding-top:.2em;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    max-width:calc(var(--l-inner) * 1px);
    margin-inline: auto;
  }
  .c-breadcrumb__item:not(:first-child)::before {
    top: calc(50% - .4em);
    font-size: calc(14/16*1rem);
  }
  .c-breadcrumb__item + .c-breadcrumb__item {
    margin-left: 2em;
  }
  .c-breadcrumb__item a {
    font-size: calc(14/16*1rem);
  }
}

/*------------------------------------------
 *  ページタイトル
 *------------------------------------------*/
 .c-page-ttl {
  background-color: #348BCC;
  color:#fff;
  height:calc(170/16*1rem);
  display: flex;
  align-items:flex-end; 
}
.c-page-ttl__ttl{
  line-height: 1;
  padding:calc(30/16*1rem) 0;
}
.c-page-ttl__main{
  margin-bottom:calc(13/16*1rem);
}
.c-page-ttl__main[lang="en"]{
  font-size:calc(40/16*1rem);
  font-weight: 400;
  text-transform:capitalize; 
}
.c-page-ttl__main[lang="en"] span{
  display: inline-block;
}
.c-page-ttl__main[lang="en"] span:not(:last-child){
  margin-right:1em;
}
.c-page-ttl__sub{
  font-size:calc(14/16*1rem);
  font-weight: 700;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-page-ttl {
    height:calc(170/16*1rem);
  }
  .c-page-ttl__ttl{
    padding:calc(45/16*1rem) 0 calc(20/16*1rem);
  }
  .c-page-ttl__main{
    margin-bottom:calc(20/16*1rem);
  }
  .c-page-ttl__main[lang="en"]{
    font-size:calc(60/16*1rem);
  }
  .c-page-ttl__sub{
    font-size:calc(18/16*1rem);
  }
}

/*------------------------------------------
 *  セクションタイトル
 *------------------------------------------*/
.c-sec-ttl {
  text-align: center;
  margin-bottom:calc(50/16*1rem);
  position: relative;
}
.c-sec-ttl__main{
  font-size:calc(50/16*1rem);
  font-weight: 400;
  text-transform:capitalize;
}
.c-sec-ttl__sub{
  font-size:calc(16/16*1rem);
  font-weight: 700;
  margin-top:calc(10/16*1rem);
}
.c-sec-ttl__btn{
  display: flex;
  justify-content: center;
  align-items:center;
  width:calc(50/16*1rem);
  height:calc(50/16*1rem);
  border-width: 1px;
  border-style:solid;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size:calc(22/16*1rem) auto;
  border-radius: 50%;
  position: absolute;
  top:calc(15/16*1rem);
  right:0;
  transition: 0.3s;
  overflow: hidden;
}
.c-sec-ttl__btn:hover{
  background-color: var(--color-accent);
}
.c-sec-ttl__btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform-origin: top left;
  transform: scale(0, 1);
  transition: transform 0.4s;
  content: "";
  border-radius: 50%;
}
.c-sec-ttl__btn:hover::before {
  transform: scale(1, 1);
}
.c-sec-ttl__btn::after{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
.c-sec-ttl__btn:hover::after{
  background:url("../img/common/icon-arrow-white.webp") no-repeat 50% 50%/calc(22/16*1rem) auto;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-sec-ttl {
    margin-bottom:calc(70/16*1rem);
  }
  .c-sec-ttl__main{
    font-size:calc(70/16*1rem);
  }
  .c-sec-ttl__sub{
    font-size:calc(20/16*1rem);
    margin-top:calc(10/16*1rem);
  }
  .c-sec-ttl__btn{
    width:calc(80/16*1rem);
    height:calc(80/16*1rem);
    top:calc(70/16*1rem);
    background-size:calc(30/16*1rem) auto;
  }
  .c-sec-ttl__btn:hover::after{
    background-size:calc(30/16*1rem) auto;
  }
}

/*------------------------------------------
 *  ボタン
 *------------------------------------------*/
 /* ベーシックなボタン */
.c-btn {
  display: flex;
  justify-content: center;  
  align-items:center;
  background-color: #fff;
  border:var(--color-accent) solid 2px;
  width:100%;
  max-width:calc(240/16*1rem);
  height:calc(60/16*1rem);
  border-radius: calc(30/16*1rem);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.c-btn:hover{
  background-color: var(--color-accent);
}
.c-btn span{
  display: inline-block;
  font-weight: 700;
  color:var(--color-accent);
  font-size:calc(16/16*1rem);
  position: relative;
  z-index:1;
}
.c-btn:hover span{
  color:#fff;
}
.c-btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color:var(--color-accent);
  transform-origin: top left;
  transform: scale(0, 1);
  transition: transform 0.4s;
  content: "";
  border-radius: calc(40/16*1rem);
}
.c-btn:hover::before {
  transform: scale(1, 1);
}

/*------------------------------------------
 *  お問い合わせフォーム
 *------------------------------------------*/
 .c-form__row {
   max-width: 100%;
   display: -ms-grid;
   display: grid;
   -ms-grid-columns: 1fr;
   grid-template-columns: 1fr;
   gap: calc(20/16*1rem);
 }
 .c-form__row + .c-form__row {
   margin-top: calc(30/16*1rem);
 }
 .c-form__head {
   /*margin-top: calc(9/16*1rem);*/
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   background-color: #F3F9FC;
   padding:calc(15/16*1rem);
 }
 /* タイトルラベル */
 .c-form__ttl {
   font-weight: 600;
   font-size: calc(16/16*1rem);
   letter-spacing: .04em;
   line-height: calc(20/16);
 }
 /* 必須ラベル */
 .c-form__required {
   display: inline-block;
   margin-left: 2em;
   width: calc(50/16*1rem);
   height: calc(22/16*1rem);
   font-weight: 500;
   font-size: calc(12/16*1rem);
   letter-spacing: .04em;
   line-height: calc(27/16);
   background-color: var(--color-accent);
   text-align: center;
   color:#fff;
   border-radius: 3px;
 }
 /* メッセージ */
 .c-form__msg{
   font-size:calc(13/16*1rem);
   padding-top: .5em;
 }
 /* 入力項目 */
 .c-form__input {
   width: 100%;
   padding: calc(7/16*1rem) calc(20/16*1rem) calc(5/16*1rem) calc(20/16*1rem);
   background: #fff;
   border: 1px solid #ddd;
 }
 .c-form__input--textarea{
   line-height: 1.4;
 }
 .c-form__input + .c-form__input {
   margin-top: calc(20/16*1rem);
 }
 .c-form__input::-webkit-input-placeholder {
   font-size: calc(14/16*1rem);
   letter-spacing: .01em;
   color: #bbb;
 }
 .c-form__input::-moz-placeholder {
   font-size: calc(16/16*1rem);
   letter-spacing: .04em;
   color: #bbb;
 }
 .c-form__input:-ms-input-placeholder {
   font-size: calc(16/16*1rem);
   letter-spacing: .04em;
   color: #bbb;
 }
 .c-form__input::-ms-input-placeholder {
   font-size: calc(16/16*1rem);
   letter-spacing: .04em;
   color: #bbb;
 }
 .c-form__input::placeholder {
   font-size: calc(16/16*1rem);
   letter-spacing: .04em;
   color: #bbb;
 }
 /* ラジオボタン */
 .c-form__radio {
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   flex-wrap: wrap;
   margin-left:-1em;
 }
 .c-form__radio-item label {
   position: relative;
   padding-left: 2em;
   line-height: 2;
 }
 .c-form__radio-item label::before,
 .c-form__radio-item label::after {
   position: absolute;
   top: 50%;
   -webkit-transform: translateY(-50%);
           transform: translateY(-50%);
   content: "";
   display: block;
   border-radius: 50%;
 }
 .c-form__radio-item label::before {
   width: 20px;
   height: 20px;
   left: 0;
   background-color: #fff;
   border: 1px solid #dedede;
 }
 .c-form__radio-item label::after {
   width: 12px;
   height: 12px;
   left: 4px;
   background-color: var(--color-accent);
   opacity: 0;
 }
 .c-form__radio-item input[type="radio"]:checked + label::after {
   opacity: 1;
 }
 /* セレクトボックス */
 .c-form__select-wrap {
   position: relative;
   width: -webkit-fit-content;
   width: -moz-fit-content;
   width: fit-content;
 }
 .c-form__select-wrap::after {
   content: "";
   position: absolute;
   right: 22px;
   top: 16px;
   width: 10px;
   height: 10px;
   border-top: 2px solid #ccc;
   border-left: 2px solid #ccc;
   -webkit-transform: translateY(-50%) rotate(-135deg);
           transform: translateY(-50%) rotate(-135deg);
   font-size: 20px;
   pointer-events: none;
 }
 .c-form__select-box {
   padding: 0 40px 0 20px;
   min-height: 2.6em;
   margin: 0 auto 0 0;
   color: #757575;
   background-color: #fff;
   border: solid 1px #dedede;
   border-radius: 3px;
 }
 .c-form__select-box option {
   color: #000;
 }
 /* チェックボックス */
 .c-form__checkbox-label {
   position: relative;
   display: inline-block;
   margin-left: 1.8em;
 }
 .c-form__checkbox-label::before{
   content: '';
   display: block;
   position: absolute;
   top: .8em;
   left: -1.8em;
   -webkit-transform: translateY(-50%);
           transform: translateY(-50%);
   width: 20px;
   height: 20px;
   background-color: #fff;
   border: 1px solid #ddd;
   border-radius: 4px;
 }
 .c-form__checkbox-label:after {
   position: absolute;
   content: "";
   display: block;
   top: .8em;
   left: -1.4em;
   width: 7px;
   height: 11px;
   border-right: 2px solid var(--color-accent);
   border-bottom: 2px solid var(--color-accent);
   -webkit-transform: translateY(-70%) rotate(45deg);
           transform: translateY(-70%) rotate(45deg);
   opacity: 0;
 }
 .c-form__checkbox:checked {
   color: var(--color-accent);
 }
 .c-form__checkbox:checked + .c-form__checkbox-label:after {
   opacity: 1;
 }
 .c-form__checkbox-label a{
  text-decoration: underline;
 }
 /* 確認データ */
 .c-form__confirm-data {
   display: block;
   padding-inline: 1em;
   font-size: calc(16/16*1rem);
   letter-spacing: .04em;
   line-height: calc(27/16);
 }
 /* PPボックス */
 .p-sub-contact__pp-box{
   text-align: center;
   padding-top:calc(30/16*1rem);
   padding-bottom:calc(20/16*1rem);
 }
 /* 確認ページ ボタンレイアウト */
 .p-sub-contact__btn--confirm{
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
 }
 .p-sub-contact__btn--confirm li{
    margin:calc(10/16*1rem) calc(15/16*1rem);
    width:calc(240/16*1rem);
 }
 /* PC */
 @media screen and (min-width: 768px) {
   .c-form__row {
     -ms-grid-columns: calc(240/16*1rem) calc(33/16*1rem) 1fr;
     grid-template-columns: calc(240/16*1rem) 1fr;
     gap: calc(33/16*1rem);
   }
   .c-form__row + .c-form__row {
     margin-top: calc(40/16*1rem);
   }
   .c-form__head {
     -webkit-box-pack: justify;
     -webkit-justify-content: space-between;
         -ms-flex-pack: justify;
             justify-content: space-between;
             align-items:center;
    padding:calc(15/16*1rem) calc(20/16*1rem);
   }
   .c-form__required {
     margin-left: 0;
   }
   .c-form__input{
    min-height:calc(50/16*1rem);
   }
   .c-form__input::-webkit-input-placeholder {
     font-size: calc(16/16*1rem);
     letter-spacing: .04em;
   }
   .c-form__confirm-data {
     margin-top: 0.5em;
   }
   .c-form__radio {
    padding-top:calc(8/16*1rem);
   }
   /* メッセージ */
   .c-form__msg{
     font-size:calc(14/16*1rem);
   }
  /* 確認データ */
  .c-form__confirm-data {
    line-height: calc(50/16*1rem);
  }
 }

/*=================================================
 *  Project ページ固有
 *================================================*/
#wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
}

/*------------------------------------------
 *  ヘッダー
 *------------------------------------------*/
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(var(--height-header)/16*1rem);
  z-index: var(--l-layer__header);
}
/* インナー */
.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  width: 100%;
  max-width: calc((1390/16*1rem) + var(--padding-inline)*2);
  padding-inline: var(--padding-inline);
  margin-inline: auto;
}
/* メニュー */
.p-header__menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
}
.p-header__hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: calc(var(--l-layer__drawer) + 1);
}
.p-header__menu {
  position: absolute;
  display: none;
  top: 0;
  bottom: 0;
  right: 0;
  padding-bottom: calc(20/16*1rem);
  width: 100%;
  min-width: 100vw;
  height: 100vh;
  background:var(--color-main);
  z-index: var(--l-layer__drawer);
  overflow: auto;
}
.is-drawerActive .p-header__menu {
  display: block;
}
.p-menu__logo {
  width:100%;
  height: calc(var(--height-header)/16*1rem);
  display: flex; 
  justify-content: center; 
  align-items:center;
  padding-top:calc(20/16*1rem);
}
.p-menu__logo img{
  width: calc(180/16*1rem);
}
.p-header__menu-contents{
  padding:calc(20/16*1rem) calc(40/16*1rem);
}
.p-header__menu-item{
  padding:.5em 1em;
}
.p-header__menu-item a {
  position: relative;
  font-size: calc(18/16*1rem);
  color: #fff;
  letter-spacing: .1em;
  font-weight: 500;
  position: relative;
  padding-left:1.5em;
}
.p-header__menu-item a::after {
  content: "";
  height:3px;
  width:1em;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  top:50%;
  left:0;
}
.p-header__menu-item-logo{
  display: none;
}
.p-header__menu-list{
  margin-bottom:calc(30/16*1rem);
}
.p-header__contact{
  margin-bottom:calc(15/16*1rem);
  width:100%;
  display: flex;
  justify-content: center;
  align-items:center; 
}
.p-header__contact-button{
  display: flex;
  justify-content: center;  
  align-items:center;
  background-color: #fff;
  border:var(--color-accent) solid 2px;
  width:100%;
  max-width:calc(330/16*1rem);
  height:calc(70/16*1rem);
  border-radius: calc(40/16*1rem);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.p-header__contact-button:hover{
  background-color: var(--color-accent);
}
.p-header__contact-button span{
  display: inline-block;
  font-weight: 700;
  color:var(--color-accent);
  background:url("../img/common/icon-mail-lightblue.webp") no-repeat 0 50%/calc(26/16*1rem) auto;
  padding-left:calc(40/16*1rem);
  font-size:calc(16/16*1rem);
  position: relative;
  z-index:1;
}
.p-header__contact-button:hover span{
  color:#fff;
  background-image:url("../img/common/icon-mail-white.webp");
}
.p-header__contact-button::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color:var(--color-accent);
  transform-origin: top left;
  transform: scale(0, 1);
  transition: transform 0.4s;
  content: "";
  border-radius: calc(40/16*1rem);
}
.p-header__contact-button:hover::before {
  transform: scale(1, 1);
}
.p-header__privacy{
  margin-bottom:calc(30/16*1rem);
  text-align: center;
  display: block;
}
.p-header__privacy a{
  color:#fff;
  font-size:calc(16/16*1rem);
  font-weight: 500;
}
.p-header__button-list{
  display: flex;
  justify-content: space-between;
  width:100%;
  max-width:calc(330/16*1rem);
  margin:auto;
}
.p-header__button-item{
  width:calc((100% - (10/16*1rem)) / 2);
}
.p-header__button-item a{
  display: flex;
  justify-content: center;  
  align-items:center;
  background-color: var(--color-accent);
  border:#fff solid 2px;
  color:#fff;
  width:100%;
  height:calc(60/16*1rem);
  border-radius: calc(35/16*1rem);
  font-weight: 700;
  font-size:calc(16/16*1rem);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.p-header__button-item a:hover{
  background-color: #fff;
}
.p-header__button-item a span{
  font-weight: 700;
  font-size:calc(16/16*1rem);
  position: relative;
  z-index:1;
}
.p-header__button-item a:hover span{
  color:var(--color-accent);
}
.p-header__button-item a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color:#fff;
  transform-origin: top left;
  transform: scale(0, 1);
  transition: transform 0.4s;
  content: "";
  border-radius: calc(40/16*1rem);
}
.p-header__button-item a:hover::before {
  transform: scale(1, 1);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-header{
    border-bottom: var(--color-accent) solid 4px;
    background-color: #fff;
  }
  .p-header__inner{
    position: relative;
    margin-inline:unset;
  }
  /* スクロール */
  .p-header.is-scroll-header{
    height: calc(80/16*1rem);
    transition: 0.3s;
  }
  #top .p-header{
    position: static;
  }
  #top .p-header.is-scroll-header-top{
    position:fixed;
  }
  /* メニュー */
  .p-header__menu-wrapper{
    position: initial;
  }
  .p-header__menu-contents{
    display: flex; 
    align-items:center; 
    justify-content: center;
    padding:0 var(--padding-inline);
    height:100%;
  }
  .p-header__menu {
    position: initial;
    display: block;
    width: auto;
    background: none;
    transition: 0.3s;
    height:100%;
    overflow:initial;
    position: absolute;
    padding:0;
    right:0;
    left:0;
    margin:auto;
  }
  .p-header.is-scroll-header .p-header__menu {
    height: calc(80/16*1rem);
  }
  .p-header__menu-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top:calc(30/16*1rem);
    margin-right:2.4em;
  }
  .p-header__menu-item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: inherit;
    margin:0;
    padding:0;
  }
  .p-header__menu-item:not(:last-child){
    margin-right:2.4em;
  }
  .p-header__menu-item a{
    font-size: calc(17/16*1rem);
    color: var(--color-accent);
    font-weight: 700;
    display: inline-block;
    padding-left:0;
    letter-spacing: normal;
    position: relative;
    text-align: center;
    line-height: 1.3;
  }
  .p-header__menu-item a::after{
    position: absolute;
    top:auto;
    bottom: -.3em;
    left: 0;
    display: block;
    width: 0;
    height: 2px;
    content: "";
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
    background-color: currentColor;
  }
  .p-header__menu-item a:hover::after, .p-header__menu-item a:focus-visible::after {
    width: 100%;
  }
  .p-header__menu-item-pickup a{
    animation: pickupColors 3s infinite;
    padding:.2em .5em;
  }
  @keyframes pickupColors {
    0% {
      background-color: var(--color-accent);
      color: #fff;
    }
    50% {
      background-color: #fff;
      color: var(--color-accent);
    }
    100% {
      background-color: var(--color-accent);
      color: #fff;
    }
  }
  .p-header__menu-item-logo{
    display: inline-block;
    margin-right:2.4em;
  }
  .p-header__menu-item-logo img{
    width:calc(200/16*1rem);
    min-width:calc(180/16*1rem);
    height:auto;
  }
  .p-menu__logo{
    display: none;
  }
  .p-header__privacy{
    display: none;
  }
  .p-header__button-list{
    display: none;
  }
  .p-header__contact{
    margin-bottom:0;
    width:auto;
    display: block;
  }
  .p-header__contact-button{
    min-width:calc(240/16*1rem);
    max-width:calc(360/16*1rem);
    height:calc(70/16*1rem);
    border-radius: calc(40/16*1rem);
    transition: 0.3s;
  }
  .p-header.is-scroll-header .p-header__contact-button{
    height: calc(50/16*1rem);
  }
  .p-header__contact-button span{
    background-size:calc(26/16*1rem) auto;
    padding-left:calc(40/16*1rem);
    font-size:calc(17/16*1rem);
  }
}
@media screen and (min-width:960px) and ( max-width:1430px) { 
  .p-header__menu-list {
    margin-right:3em;
  }
  .p-header__menu-item:not(:last-child){
    margin-right:3em;
  }
  .p-header__menu-item-logo{
    margin-right:3em;
  }
  .p-header__contact-button{
    width:calc(160/16*1rem);
    max-width:calc(160/16*1rem);
  }
  .p-header__contact-button span{
    background-size:calc(20/16*1rem) auto;
    padding-left:calc(27/16*1rem);
    font-size:calc(15/16*1rem);
  }
}
@media screen and (min-width:960px) and ( max-width:1330px) { 
  .p-header__menu-item a{
    font-size: calc(17/16*1rem);
  }
}
@media screen and (min-width:960px) and ( max-width:1300px) { 
  .p-header__menu-item a{
    font-size: calc(16/16*1rem);
  }
}
@media screen and (min-width:960px) and ( max-width:1270px) { 
  .p-header__menu-list {
    margin-right:2.5em;
  }
  .p-header__menu-item:not(:last-child){
    margin-right:2.5em;
  }
  .p-header__menu-item-logo{
    margin-right:2.5em;
  }
  .p-header__contact-button{
    min-width:calc(160/16*1rem);
    max-width:calc(160/16*1rem);
  }
}
@media screen and (min-width:960px) and ( max-width:1220px) { 
  .p-header__menu-list {
    margin-right:2em;
  }
  .p-header__menu-item:not(:last-child){
    margin-right:2em;
  }
  .p-header__menu-item-logo{
    margin-right:2em;
  }
}
@media screen and (min-width:960px) and ( max-width:1160px) { 
  .p-header__menu-item a{
    font-size: calc(15/16*1rem);
  }
}

/*------------------------------------------
 *  フッター
 *------------------------------------------*/
.p-footer {
  margin-top: calc(var(--space-xl)/16*1rem);
  background-color:var(--color-main);
  color: #fff;
  border-top:#BBB solid calc(5/16*1rem);
  clear:both;
  width:100%;
  overflow: hidden;
}
.p-footer__inner {
  padding-top: calc(40/16*1rem);
  padding-bottom:calc(20/16*1rem);
  text-align: left;
  width: 100%;
  max-width: calc((1260/16*1rem) + var(--padding-inline)*2);
  padding-inline: var(--padding-inline);
  display: flex;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding-top: calc(80/16*1rem);
    padding-bottom:calc(35/16*1rem);
    display: grid;
    grid-template-columns: calc(390/16*1rem) 1fr;
    justify-content: space-between;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1440px) {
  .p-footer__inner {
    min-width: calc((1100/16*1rem) + var(--padding-inline)*2);
  }
}
/* ページトップ */
#page-top {
  position:fixed;
  right:calc(10/16*1rem);
  bottom:calc(10/16*1rem);
  z-index:3;
}
#page-top a{
  display: flex;
  justify-content: center;
  align-items:center;
  border:var(--color-main) solid 2px;
  width:calc(60/16*1rem);
  height:calc(60/16*1rem);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  background:rgba(255,255,255,0.8) url("../img/common/pagetop-sp.webp") no-repeat 50% 50%/calc(22/16*1rem) auto;
}
#page-top a:hover{
  background-color:var(--color-main);
}
#page-top a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color:var(--color-main);
  transform-origin: bottom;
  transform: scale(1, 0);
  transition: transform 0.4s;
  content: "";
  border-radius: 50% 50%;
}
#page-top a:hover::before {
  transform: scale(1, 1);
}
#page-top a::after{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
#page-top a:hover::after{
  background:url("../img/common/pagetop-sp-on.webp") no-repeat 50% 50%/calc(22/16*1rem) auto;
}
/* PC */
@media screen and (min-width: 768px) {
  #page-top {
    right:calc(30/16*1rem);
    bottom:calc(30/16*1rem);
  }
  #page-top a{
    width:calc(100/16*1rem);
    height:calc(100/16*1rem);
    background-image:url("../img/common/pagetop-pc.webp");
    background-size:calc(60/16*1rem) auto;
  }
  #page-top a:hover::after{
    background-image:url("../img/common/pagetop-pc-on.webp");
    background-size:calc(60/16*1rem) auto;
  }
}
/* ページを戻る */
#page-back {
  position:fixed;
  left:calc(10/16*1rem);
  bottom:calc(10/16*1rem);
  z-index:3;
}
#page-back a{
  display: flex;
  justify-content: center;
  align-items:center;
  border:var(--color-main) solid 2px;
  width:calc(60/16*1rem);
  height:calc(60/16*1rem);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  background:rgba(255,255,255,0.8) url("../img/common/pageback-sp.webp") no-repeat 50% 50%/calc(23/16*1rem) auto;
}
#page-back a:hover{
  background-color:var(--color-main);
}
#page-back a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color:var(--color-main);
  transform-origin: bottom;
  transform: scale(1, 0);
  transition: transform 0.4s;
  content: "";
  border-radius: 50% 50%;
}
#page-back a:hover::before {
  transform: scale(1, 1);
}
#page-back a::after{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
#page-back a:hover::after{
  background:url("../img/common/pageback-sp-on.webp") no-repeat 50% 50%/calc(23/16*1rem) auto;
}
/* PC */
@media screen and (min-width: 768px) {
  #page-back {
    left:calc(30/16*1rem);
    bottom:calc(30/16*1rem);
  }
  #page-back a{
    width:calc(100/16*1rem);
    height:calc(100/16*1rem);
    background-image:url("../img/common/pageback-pc.webp");
    background-size:calc(62/16*1rem) auto;
  }
  #page-back a:hover::after{
    background-image:url("../img/common/pageback-pc-on.webp");
    background-size:calc(62/16*1rem) auto;
  }
}
/* インフォーメーション */
.p-footer__information {
  margin-top: calc(40/16*1rem);
  display: inline-block;
}
.p-footer__info{
  display: flex;
  align-items:flex-end;
  margin-bottom:calc(25/16*1rem);
}
.p-footer__logo{
  width:calc(240/16*1rem);
  margin-right:calc(35/16*1rem);
}
.p-footer__sns{
  display: flex;
  align-items:flex-end;
}
.p-footer__sns-item:not(:last-child) {
  margin-right:calc(10/16*1rem);
}
.p-footer__sns-item{
  width:calc(30/16*1rem);
  transition: 0.3s;
}
.p-footer__sns-item:hover{
   opacity: .7;
}
.p-footer__access{
  margin-bottom:calc(25/16*1rem);
}
.p-footer__access p{
  font-size:calc(16/16*1rem);
  font-weight: 500;
}
.p-footer__bnr{
  display: flex;
  align-items:flex-end;
  margin-bottom:calc(20/16*1rem);
}
.p-footer__bnr-item:not(:last-child) {
  margin-right:calc(30/16*1rem);
}
.p-footer__bnr-item img{
  height:calc(150/16*1rem);
}
.p-footer__per{
  margin-bottom:calc(40/16*1rem);
}
.p-footer__per p{
  font-size:calc(12/16*1rem);
}
.p-footer__copyright {
  font-size:calc(14/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-footer__information {
    margin-top:0;
    display:block;
  }
  .p-footer__info{
    margin-bottom:calc(25/16*1rem);
  }
  .p-footer__logo{
    width:calc(240/16*1rem);
    margin-right:calc(35/16*1rem);
  }
  .p-footer__sns-item{
    width:calc(30/16*1rem);
  }
  .p-footer__access{
    margin-bottom:calc(25/16*1rem);
  }
  .p-footer__access p{
    font-size:calc(16/16*1rem);
  }
  .p-footer__bnr{
    margin-bottom:calc(20/16*1rem);
  }
  .p-footer__bnr-item:not(:last-child) {
    margin-right:calc(30/16*1rem);
  }
  .p-footer__bnr-item img{
    height:calc(150/16*1rem);
  }
  .p-footer__per{
    margin-bottom:calc(50/16*1rem);
  }
  .p-footer__per p{
    font-size:calc(12/16*1rem);
  }
  .p-footer__copyright {
    font-size:calc(14/16*1rem);
  }
}
/* メニュー */
.p-footer__menu {
  display: none;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-footer__menu {
    display: grid;
    grid-template-columns: 1fr calc(240/16*1rem);
    gap: calc(40/16*1rem);
    justify-content: space-between;
  }
  .p-footer__menu-left{
    display: flex;
    flex-wrap: wrap;
    padding-top:calc(20/16*1rem);
  }
  .p-footer__menu-list:not(:last-child){
    padding-right:calc(85/16*1rem);
  }
  .p-footer__menu-item{
    margin-bottom:3em;
  }
  .p-footer__menu-item a{
    font-size:calc(16/16*1rem);
    font-weight: 600;
    color:#fff;
  }
  .p-footer__menu-item a:hover{
    opacity: 0.7;
  }
  .p-footer__menu-list-child{
    padding-top:.7em;
  }
  .p-footer__menu-child-item:not(:last-child){
    margin-bottom:.3em;
  }
  .p-footer__menu-child-item a{
    font-size:calc(14/16*1rem);
    font-weight: 600;
    position: relative;
    padding-left:1.3em;
  }
  .p-footer__menu-child-item a::before{
    content: "";
    position: absolute;
    top:0.35em;
    left:0;
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
  .p-footer__menu-right{
    position: relative;
    padding-bottom:calc(130/16*1rem);
  }
  .p-footer__contact{
    margin-bottom:calc(15/16*1rem);
  }
  .p-footer__contact-button{
    display: flex;
    justify-content: center;  
    align-items:center;
    background-color: #fff;
    border:var(--color-accent) solid 2px;
    width:100%;
    height:calc(70/16*1rem);
    border-radius: calc(40/16*1rem);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
  }
  .p-footer__contact-button:hover{
    background-color: var(--color-accent);
  }
  .p-footer__contact-button span{
    display: inline-block;
    font-weight: 700;
    color:var(--color-accent);
    background:url("../img/common/icon-mail-lightblue.webp") no-repeat 0 50%/calc(26/16*1rem) auto;
    padding-left:calc(40/16*1rem);
    font-size:calc(17/16*1rem);
    position: relative;
    z-index:1;
  }
  .p-footer__contact-button:hover span{
    color:#fff;
    background-image:url("../img/common/icon-mail-white.webp");
  }
  .p-footer__contact-button::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color:var(--color-accent);
    transform-origin: top left;
    transform: scale(0, 1);
    transition: transform 0.4s;
    content: "";
    border-radius: calc(40/16*1rem);
  }
  .p-footer__contact-button:hover::before {
    transform: scale(1, 1);
  }
  .p-footer__privacy{
    margin-bottom:calc(40/16*1rem);
    text-align: center;
    display: block;
  }
  .p-footer__privacy a{
    color:#fff;
    font-size:calc(16/16*1rem);
    font-weight: 500;
  }
  .p-footer__button-list{
    width:100%;
    position: absolute;
    left:0;
    bottom:calc(30/16*1rem);
  }
  .p-footer__button-item:not(:last-child) {
    margin-bottom:calc(20/16*1rem);
  }
  .p-footer__button-item a{
    display: flex;
    justify-content: center;  
    align-items:center;
    background-color: var(--color-accent);
    border:#fff solid 2px;
    color:#fff;
    width:100%;
    height:calc(65/16*1rem);
    border-radius: calc(35/16*1rem);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
  }
  .p-footer__button-item a:hover{
    background-color: #fff;
  }
  .p-footer__button-item a span{
    font-weight: 700;
    font-size:calc(16/16*1rem);
    position: relative;
    z-index:1;
  }
  .p-footer__button-item a:hover span{
    color:var(--color-accent);
  }
  .p-footer__button-item a::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color:#fff;
    transform-origin: top left;
    transform: scale(0, 1);
    transition: transform 0.4s;
    content: "";
    border-radius: calc(40/16*1rem);
  }
  .p-footer__button-item a:hover::before {
    transform: scale(1, 1);
  }
}

/*------------------------------------------
 *  TOPページ
 *------------------------------------------*/
/* PC */
@media screen and (min-width: 768px) {
  #top{
    min-width: 100%;
  }
  #top #wrapper .l-inner {
  width: 100%;
  max-width: 100%;
  max-width: calc(var(--l-inner)*1px + var(--padding-inline)*2);
  }
}

/*----------------- MV -----------------*/
.p-top-mv {
  background-color: #fff;
}
.p-top-mv__inner{
  padding-top:calc(70/16*1rem);
  position: relative;
}
.p-top-mv__logo{
  padding-top: calc(20/16*1rem);
  text-align: center;
  position: absolute;
  top:0;
  left:0;
  width:100%;
}
.p-top-mv__logo img{
  width:calc(180/16*1rem);
  height:auto;
}
.p-top-mv__visual{
  line-height: 1;
  position: relative;
}
.p-top-mv__visual video{
  aspect-ratio: 16 / 9;
  filter: drop-shadow(0px 0px rgba(0,0,0,0));
  outline: none;
  border: none;
}
.p-top-mv__catch{
  position: absolute;
  top:30vw;
  right:0;
  left:0;
  width:95vw;
  height:50vw;
  overflow: hidden;
  margin:auto;
  z-index:1;
}
.p-top-mv__catch img{
  width:100%;
  height:auto;
  transform-origin:center;
}
.p-top-mv__catch.mv-catch-anim img{
  animation: mvCatch 1.5s ease 0s alternate;
}
@keyframes mvCatch {
  0%{
    opacity: 0;
  }
  5% {
    transform: scale(0.5,0.5);
  }
  50% {
    transform: scale(1.3,1.3);
  }
  100% {
    transform: scale(1,1);
  }
}
/* SP only */
@media screen and (max-width: 767px) {
  .p-top-mv__visual{
    height:100vw;
    width:100%;
    overflow: hidden;
  }
  .p-top-mv__visual video{
    width:auto;
    height:100vw;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%; 
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-mv__inner{
    padding-top:0;
  }
  .p-top-mv__logo{
    display: none;
  }
  .p-top-mv__visual video{
    width:100%;
    height:auto;
  }
  .p-top-mv__catch{
    top:7.195vw;
    width:56.707vw;
    height:29.512vw;
  }
  .p-top-mv__catch img{
    width:100%;
    height:auto;
  }
}

/*----------------- Action guidelines -----------------*/
.p-top-action{
  background-color: #FFFBE6;
  margin:0;
  padding-top:calc(10/16*1rem);
  padding-bottom:calc(100/16*1rem);
}
.p-top-action__inner{
  position: relative;
  top:calc(-60/16*1rem);
  margin-bottom:calc(-60/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-action{
    padding-top:calc(300/16*1rem);
    padding-bottom:calc(290/16*1rem);
  }
  .p-top-action__inner{
    position:static;
    margin-bottom:0;
    overflow: visible;
  }
}
/* タイトル */
.p-top-action__ttl{
  background:url("../img/top/top-action-ttl-pc.webp") no-repeat 50% 0/calc(330/16*1rem) auto;
  display: flex;
  justify-content: center;
  align-items:center;
  color:#fff;
  height:calc(260/16*1rem);
  position: relative;
  z-index:1;
}
.p-top-action__ttl.u-pc-only{
  display: none;
}
.p-top-action__ttl-main{
  font-size:calc(34/16*1rem);
  text-align: center;
  line-height: 1.5;
  text-transform:capitalize; 
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-action__ttl.u-pc-only{
    background:url("../img/top/top-action-ttl-pc.webp") no-repeat 0 0/100% 100%;
    max-width:calc(600/16*1rem);
    max-height:calc(442/16*1rem);
    min-width:calc(300/16*1rem);
    min-height:calc(200/16*1rem);
    width:63.636vw;
    height:49.272vw;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items:center;
    top:calc(-180/16*1rem);
    left:auto;
    left:calc(-40/16*1rem);
    transition: 0.3s;
  }
  .p-top-action__ttl.u-sp-only{
    display: none;
  }
  .p-top-action__ttl-main{
    font-size:calc(60/16*1rem);
  }
}
/* 行動指針 */
.p-top-action__guidelines{
  padding:calc(85/16*1rem) calc(30/16*1rem) calc(160/16*1rem);
  background:#fff url("../img/top/top-action-img-sp.webp") no-repeat 20% 98%/calc(90/16*1rem) auto;
  box-shadow: 10px 10px rgba(0,0,0,0.1);
  margin-bottom:calc(10/16*1rem);
}
.p-top-action__guidelines-ttl{
  font-size:calc(40/16*1rem);
  text-align: center;
  margin-bottom:calc(40/16*1rem);
  font-weight: 700;
}
.p-top-action__guidelines-list{
  margin-bottom:calc(50/16*1rem);
}
.p-top-action__guidelines-list-item{
  font-size:calc(16/16*1rem);
  position: relative;
}
.p-top-action__guidelines-list-item::before{
  content:"一、";
  position: absolute;
  top:0;
  left:0;
  font-weight: 700;
}
.p-top-action__guidelines-list-item:not(:last-child) {
  margin-bottom:calc(10/16*1rem);
}
.p-top-action__guidelines-list-item span{
  display: block;
  font-weight: 700;
  padding-left:2em;
}
.p-top-action__guidelines-list-item strong{
  font-weight: 700;
  color:#3333CC;
}
.p-top-action__guidelines-data{
  text-align: right;
  font-size:calc(14/16*1rem);
  font-weight: 700;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-action__inner{
    padding-left:calc(400/16*1rem);
    background: url("../img/top/top-action-img-pc.webp") no-repeat 0 98%/calc(246/16*1rem) auto;
    position: relative;
  }
  .p-top-action__guidelines{
    padding:calc(95/16*1rem) calc(70/16*1rem) calc(80/16*1rem);
    background:#fff;
    box-shadow: 20px 20px rgba(0,0,0,0.1);
    margin-bottom:calc(20/16*1rem);
  }
  .p-top-action__guidelines-ttl{
    font-size:calc(50/16*1rem);
    margin-bottom:calc(60/16*1rem);
  }
  .p-top-action__guidelines-list{
    margin-bottom:calc(40/16*1rem);
  }
  .p-top-action__guidelines-list-item{
    font-size:calc(20/16*1rem);
  }
  .p-top-action__guidelines-list-item:not(:last-child) {
    margin-bottom:calc(20/16*1rem);
  }
  .p-top-action__guidelines-data{
    font-size:calc(18/16*1rem);
  }
}

/*----------------- Topics -----------------*/
.p-top-topics {
  background-color: #08E408;
  position: relative;
  margin:0;
  padding-top:calc(20/16*1rem);
  padding-bottom:calc(35/16*1rem);
}
.p-top-topics::before{
  content: "";
  display: block;
  width:100%;
  height:calc(54/16*1rem);
  background:url("../img/top/top-topics-bg01-sp.webp") no-repeat 50% 100%/100% 100%;
  position: absolute;
  left:0;
  bottom:100%;
}
.p-top-topics::after{
  content: "";
  display: block;
  width:100%;
  height:calc(43/16*1rem);
  background:url("../img/top/top-topics-bg02-sp.webp") no-repeat 50% 100%/100% 100%;
  position: absolute;
  left:0;
  top:100%;
  z-index:1;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-topics {
    padding-top:calc(20/16*1rem);
    padding-bottom:calc(10/16*1rem);
  }
  .p-top-topics::before{
    height:calc(254/16*1rem);
    background-image:url("../img/top/top-topics-bg01-pc.webp");
  }
  .p-top-topics::after{
    height:calc(206/16*1rem);
    background-image:url("../img/top/top-topics-bg02-pc.webp");
  }
}
/* タイトル */
.p-top-topics .c-sec-ttl{
  color:#fff;
}
.p-top-topics .c-sec-ttl__btn{
  border-color: #08E408;
  background-image: url("../img/common/icon-arrow-lightgreen.webp");
}
.p-top-topics .c-sec-ttl__btn:hover{
  background-color: #08E408;
}
.p-top-topics .c-sec-ttl__btn::before {
  background-color: #08E408;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-topics .c-sec-ttl{
    display: flex;
    align-items:center;
    text-align: left;
  }
  .p-top-topics .c-sec-ttl__main{
    margin-right:calc(40/16*1rem);
  }
  .p-top-topics .c-sec-ttl__sub{
    margin-top:0;
  }
  .p-top-topics .c-sec-ttl__btn{
    top:0;
    bottom:0;
    margin:auto;
  }
}
/* リスト */
.p-top-topics__list {
  margin-bottom:calc(40/16*1rem);
}
.p-top-topics__item:not(:last-child){
  margin-bottom:calc(50/16*1rem);
}
.p-top-topics__list a{
  display: block;
  color:#fff;
}
.p-top-topics__list-img{
  width:100%;
	height:60.533vw;
	overflow:hidden;
  border-radius: calc(15/16*1rem);
}
.p-top-topics__list-img-inner{
  width:100%;
	height:60.533vw;
	position:relative;
  transition: all .2s ease-in-out;
}
.p-top-topics__list-img img {
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: none;
	min-height:100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
  font-family: 'object-fit: cover; object-position: center center;';
}
.p-top-topics__list a:hover .p-top-topics__list-img-inner{
  transform: scale3d(1.1,1.1,1);
}
.p-top-topics__list-conts{
  padding-top:calc(13/16*1rem);
  line-height:1.7;
}
.p-top-topics__list-data{
  display: flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom:calc(10/16*1rem);  
}
.p-top-topics__list-date{
  font-size:calc(16/16*1rem);
  font-weight: 500;
}
.p-top-topics__list-category{
  display: flex;
  justify-content:flex-end;
}
.p-top-topics__list-category span{
  display: flex;
  justify-content: center;  
  align-items:center;
  border:#fff solid 1px;
  border-radius: 5px;
  font-size:calc(13/16*1rem);
  padding:0 1em;
}
.p-top-topics__list-category span:not(:last-child){
  margin-right:calc(10/16*1rem);
}
.p-top-topics__list-title{
  font-size:calc(16/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-topics__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: calc(65/16*1rem);
    margin-bottom:0;
  }
  .p-top-topics__item,
  .p-top-topics__item:not(:last-child){
    margin-bottom:0;
  }
  .p-top-topics__list-img{
    height:calc(213/16*1rem);
  }
  .p-top-topics__list-img-inner{
    height:calc(213/16*1rem);
  }
  .p-top-topics__list-img img{
    aspect-ratio: 3 / 2;
  }
  .p-top-topics__list-conts{
    padding:calc(10/16*1rem) calc(15/16*1rem) 0;
    line-height:1.6;
  }
  .p-top-topics__list-title{
    font-size:calc(16/16*1rem);
    margin-bottom:calc(5/16*1rem);
  }
  .p-top-topics__list-text{
    font-size:calc(14/16*1rem);
  }
}

/*----------------- Works -----------------*/
.p-top-works {
  background-color: #FFFBE6;
  position: relative;
  margin:0;
  padding-top:calc(100/16*1rem);
  padding-bottom:calc(40/16*1rem);
}
.p-top-works::after{
  content: "";
  display: block;
  width:100%;
  height:calc(44/16*1rem);
  background:url("../img/top/top-works-bg01-sp.webp") no-repeat 50% 0/100% 100%;
  position: absolute;
  left:0;
  top:100%;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-works {
    padding-top:calc(280/16*1rem);
    padding-bottom:calc(30/16*1rem);
  }
  .p-top-works::after{
    height:calc(238/16*1rem);
    background-image:url("../img/top/top-works-bg01-pc.webp");
  }
}
/* タイトル */
.p-top-works .c-sec-ttl{
  color:#0099FF;
}
.p-top-works .c-sec-ttl__btn{
  border-color: #0099FF;
  background-image: url("../img/common/icon-arrow-lightblue.webp");
}
.p-top-works .c-sec-ttl__btn:hover{
  background-color: #0099FF;
}
.p-top-works .c-sec-ttl__btn::before {
  background-color: #0099FF;
}
/* リスト */
.p-top-works__list {
  margin-bottom:calc(40/16*1rem);
}
.p-top-works__item:not(:last-child){
  margin-bottom:calc(50/16*1rem);
}
.p-top-works__list a{
  display: block;
}
.p-top-works__list-img{
  width:100%;
	height:112.8vw;
	overflow:hidden;
  border-radius: calc(15/16*1rem);
}
.p-top-works__list-img-inner{
  width:100%;
	height:112.8vw;
	position:relative;
  transition: all .2s ease-in-out;
}
.p-top-works__list-img img {
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: none;
	min-height:100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
  font-family: 'object-fit: cover; object-position: center center;';
}
.p-top-works__list a:hover .p-top-works__list-img-inner{
  transform: scale3d(1.1,1.1,1);
}
.p-top-works__list-title{
  padding-top:calc(13/16*1rem);
  line-height:1.4;
  font-size:calc(16/16*1rem);
  font-weight: 500;
  text-align: center;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-works__list {
    margin-bottom:calc(85/16*1rem);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: calc(40/16*1rem);
    margin-bottom:0;
  }
  .p-top-works__item,
  .p-top-works__item:not(:last-child){
    margin-bottom:0;
  }
  .p-top-works__list-img{
    height:calc(365/16*1rem);
  }
  .p-top-works__list-img-inner{
    height:calc(365/16*1rem);
  }
  .p-top-works__list-img img{
    aspect-ratio: 2 / 3;
  }
  .p-top-works__list-title{
    padding:calc(10/16*1rem) calc(15/16*1rem) 0;
    font-size:calc(16/16*1rem);
  }
}

/*----------------- Pickup Menu -----------------*/
.p-top-pickup {
  background:url("../img/common/bg-wood-sp.webp") repeat-x 50% 0/auto 100%;
  margin:0;
  padding-top:calc(50/16*1rem);
  padding-bottom:calc(100/16*1rem);
  margin-bottom: calc(var(--space-xl)/-16*1rem);
}
.p-top-pickup__inner{
  padding-top:calc(60/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-pickup {
    padding-top:calc(60/16*1rem);
    padding-bottom:calc(270/16*1rem);
    background-image:url("../img/common/bg-wood-pc.webp");
  }
  .p-top-pickup__inner{
    padding-top:calc(260/16*1rem);
  }
}
/* タイトル */
.p-top-pickup .c-sec-ttl{
  color:#fff;
}
.p-top-pickup .c-sec-ttl__main{
  font-size:calc(42/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-pickup .c-sec-ttl__main{
    font-size:calc(80/16*1rem);
  }
}
/* リスト */
.p-top-pickup__list {
  margin-bottom:calc(40/16*1rem);
  display: grid;
  grid-template-columns: calc((100% - (20/16*1rem)) / 2) calc((100% - (20/16*1rem)) / 2);
  gap: calc(20/16*1rem) calc(20/16*1rem);
}
.p-top-pickup__item a{
  display: block;
	overflow:hidden;
  border-radius: calc(15/16*1rem);
  width:100%;
	height:calc(272/16*1rem);
  background-image: url("../img/common/icon-arrow-white.webp");
  background-repeat: no-repeat;
  background-position: 90% 90%;
  background-size:calc(30/16*1rem) auto;
  padding:calc(40/16*1rem) calc(10/16*1rem);
}
.p-top-pickup__item:nth-child(1) a{
  background-color:#FF0000;
}
.p-top-pickup__item:nth-child(2) a{
  background-color:#FFD700;
}
.p-top-pickup__item:nth-child(3) a{
  background-color:#08E408;
}
.p-top-pickup__item:nth-child(4) a{
  background-color:#0099FF;
}
.p-top-pickup__item:nth-child(5) a{
  background-color:#CC00CC;
}
.p-top-pickup__list-title-main{
  line-height:1.4;
  font-size:calc(26/16*1rem);
  font-weight: 700;
  color:#fff;
  margin-bottom: calc(20/16*1rem);
}
.p-top-pickup__list-title-sub{
  font-size:calc(14/16*1rem);
  transform:rotate(-10deg);
  line-height: 1.8;
}
.p-top-pickup__item:nth-child(1) .p-top-pickup__list-title-sub{
  color:#EB99EB;
}
.p-top-pickup__item:nth-child(2) .p-top-pickup__list-title-sub{
  color:#FF8282;
}
.p-top-pickup__item:nth-child(3) .p-top-pickup__list-title-sub{
  color:#FFEB80;
}
.p-top-pickup__item:nth-child(4) .p-top-pickup__list-title-sub{
  color:#9CF49C;
}
.p-top-pickup__item:nth-child(5) .p-top-pickup__list-title-sub{
  color:#99D6FF;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-pickup__list {
    margin-bottom:0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: calc(25/16*1rem);
  }
  .p-top-pickup__item,
  .p-top-pickup__item:not(:last-child){
    margin-bottom:0;
  }
  .p-top-pickup__item a{
    height:calc(340/16*1rem);
    background-position: 90% 90%;
    background-size:calc(37/16*1rem) auto;
    padding:calc(60/16*1rem) calc(25/16*1rem);
  }
  .p-top-pickup__list-title-main{
    font-size:calc(27/16*1rem);
    margin-bottom: calc(35/16*1rem);
  }
  .p-top-pickup__list-title-sub{
    font-size:calc(14/16*1rem);
  }
}

/*------------------------------------------
 *  Topicsページ(一覧)
 *------------------------------------------*/
.p-sub-topics{
  padding-top:calc(30/16*1rem);
  margin-top:0;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-topics{
    padding-top:calc(80/16*1rem);
  }
}
/* ヘッダー */
.p-sub-topics__head{
  display: flex;
  flex-direction: column;
}
.p-sub-topics__title{
  order:2;
  text-align: center;
  font-weight: 700;
  font-size:calc(30/16*1rem);
  padding:calc(30/16*1rem) 0;
}
.p-sub-topics__search-wrap{
  order:1;
}
.p-sub-topics__search{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.p-sub-topics__search select{
  border:#999 solid 1px;
  padding:.15em calc(35/16*1rem) .15em .3em;
  width:100%;
}
.p-sub-topics__search .item-select{
  position: relative;
  display: inline-block;
  width:100%;
}
.p-sub-topics__search .item-select::after{
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #333;
  position: absolute;
  top:0;
  bottom:0;
  right:calc(10/16*1rem);
  margin:auto;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-topics__head{
    display: flex;
    justify-content: space-between; 
    align-items:center;
    flex-direction: row;
    margin-bottom:calc(60/16*1rem);
  }
  .p-sub-topics__title{
    order:1;
    text-align: left;
    font-size:calc(40/16*1rem);
    padding:0;
  }
  .p-sub-topics__search-wrap{
    order:2;
  }
}
/* リスト */
.p-sub-topics__list {
  margin-bottom:calc(40/16*1rem);
}
.p-sub-topics__item:not(:last-child){
  margin-bottom:calc(50/16*1rem);
}
.p-sub-topics__list a{
  display: block;
}
.p-sub-topics__list-img{
  width:100%;
	height:60.533vw;
	overflow:hidden;
  border-radius: calc(15/16*1rem);
}
.p-sub-topics__list-img-inner{
  width:100%;
	height:60.533vw;
	position:relative;
  transition: all .2s ease-in-out;
}
.p-sub-topics__list-img img {
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: none;
	min-height:100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
  font-family: 'object-fit: cover; object-position: center center;';
}
.p-sub-topics__list a:hover .p-sub-topics__list-img-inner{
  transform: scale3d(1.1,1.1,1);
}
.p-sub-topics__list-conts{
  padding-top:calc(13/16*1rem);
  line-height:1.7;
}
.p-sub-topics__list-data{
  display: flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom:calc(10/16*1rem);  
}
.p-sub-topics__list-date{
  font-size:calc(16/16*1rem);
  font-weight: 500;
}
.p-sub-topics__list-category{
  display: flex;
  justify-content:flex-end;
}
.p-sub-topics__list-category span{
  display: flex;
  justify-content: center;  
  align-items:center;
  border:#666 solid 1px;
  border-radius: 5px;
  font-size:calc(13/16*1rem);
  padding:0 1em;
}
.p-sub-topics__list-category span:not(:last-child){
  margin-right:calc(10/16*1rem);
}
.p-sub-topics__list-title{
  font-size:calc(16/16*1rem);
  font-weight: 600;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-topics__list {
    margin-bottom:calc(85/16*1rem);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: calc(45/16*1rem) calc(65/16*1rem);
  }
  .p-sub-topics__item,
  .p-sub-topics__item:not(:last-child){
    margin-bottom:0;
  }
  .p-sub-topics__list-img{
    height:calc(220/16*1rem);
  }
  .p-sub-topics__list-img-inner{
    height:calc(220/16*1rem);
  }
  .p-sub-topics__list-img img{
    aspect-ratio: 3/2;
  }
  .p-sub-topics__list-conts{
    padding:calc(10/16*1rem) calc(15/16*1rem) 0;
    line-height:1.6;
  }
  .p-sub-topics__list-title{
    font-size:calc(16/16*1rem);
    margin-bottom:calc(5/16*1rem);
  }
  .p-sub-topics__list-text{
    font-size:calc(14/16*1rem);
  }
}
/* ボタン */
.p-sub-topics__button .c-btn{
  margin-inline: auto;
  cursor: pointer;
}

/*------------------------------------------
 *  Topicsページ(詳細)
 *------------------------------------------*/
 .p-sub-topics-detail{
  padding-top:calc(30/16*1rem);
  margin-top:0;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-topics-detail{
    padding-top:calc(80/16*1rem);
  }
}
/* 内容 */
.p-sub-topics-detail__data{
  display: flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom:calc(15/16*1rem);
}
.p-sub-topics-detail__date{
  font-size:calc(16/16*1rem);
  font-weight: 500;
}
.p-sub-topics-detail__category{
  display: flex;
  justify-content:flex-end;
}
.p-sub-topics-detail__category span{
  display: flex;
  justify-content: center;  
  align-items:center;
  border:#666 solid 1px;
  border-radius: 5px;
  font-size:calc(13/16*1rem);
  padding:0 1em;
}
.p-sub-topics-detail__category span:not(:last-child){
  margin-right:calc(10/16*1rem);
}
.p-sub-topics-detail__title{
  font-size:calc(18/16*1rem);
  font-weight:700;
  margin-bottom:calc(25/16*1rem);
}
.p-sub-topics-detail__mv{
  margin-bottom:calc(20/16*1rem);
}
.p-sub-topics-detail__conts{
  padding-inline: calc(20/16*1rem);
  margin-bottom:calc(40/16*1rem);
}
.p-sub-topics-detail__conts p{
  margin-bottom:calc(20/16*1rem);
}
.p-sub-topics-detail__conts p a{
  text-decoration: underline;
}
.p-sub-topics-detail__conts iframe,
.p-sub-topics-detail__conts video{
  width:100%;
  height:50vw;
  margin-bottom:calc(20/16*1rem);
  margin-top:calc(20/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-topics-detail__post{
    max-width:calc(840/16*1rem);
    margin-inline: auto;
  }
  .p-sub-topics-detail__data{
    margin-bottom:calc(40/16*1rem);
  }
  .p-sub-topics-detail__date{
    font-size:calc(18/16*1rem);
  }
  .p-sub-topics-detail__category span{
    font-size:calc(14/16*1rem);
  }
  .p-sub-topics-detail__title{
    font-size:calc(30/16*1rem);
    margin-bottom:calc(60/16*1rem);
  }
  .p-sub-topics-detail__mv{
    margin-bottom:calc(60/16*1rem);
  }
  .p-sub-topics-detail__conts{
    margin-bottom:calc(40/16*1rem);
  }
  .p-sub-topics-detail__conts p{
    margin-bottom:calc(40/16*1rem);
  }
  .p-sub-topics-detail__conts iframe,
  .p-sub-topics-detail__conts video{
    height:calc(515/16*1rem);
    margin-bottom:calc(40/16*1rem);
    margin-top:calc(40/16*1rem);
  }
}
/* ボタン */
.p-sub-topics-detail__button a{
  margin-inline: auto;
}

/*------------------------------------------
 *  Topicsページ(サイドエリア)
 *------------------------------------------*/
/* サイド */
.l-side__title{
  border-bottom:var(--color-accent) solid 2px;
  margin-bottom:calc(20/16*1rem);
  padding:0 calc(10/16*1rem) calc(10/16*1rem);
  color:var(--color-accent);
}
.l-side__title span{
  display: block;
}
.l-side__title-main{
  font-size:calc(30/16*1rem);
  text-transform:capitalize;
}
.l-side__title-main.u-pc-only{
  display: none;
}
.l-side__title-sub{
  font-size:calc(16/16*1rem);
  font-weight: 600;
}
.l-side__category li{
  font-size:calc(16/16*1rem);
}
.l-side__category li:not(:last-child){
  margin-bottom:0.8em;
}
.l-side__category li a{
  display: block;
  position: relative;
  padding-left:1.3em;
  color:var(--color-accent);
  font-weight: 700;
}
.l-side__category li a::before{
  content: "";
  position: absolute;
  top:0.5em;
  left:0;
  width: 0;
  height: 0;
  border-left: 10px solid var(--color-accent);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.l-side__category li a:hover{
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .l-side__title{
    padding-bottom:calc(15/16*1rem);
    margin-bottom:calc(20/16*1rem);
  }
  .l-side__title-main{
    font-size:calc(32/16*1rem);
    text-transform:capitalize;
  }
  .l-side__title-main.u-pc-only{
    display: block;
  }
  .l-side__title-sub{
    font-size:calc(13/16*1rem);
  }
  .l-side__category li{
    font-size:calc(16/16*1rem);
  }
  .l-side__category li:not(:last-child){
    margin-bottom:calc(14/16*1rem);
  }
}

/*------------------------------------------
 *  Worksページ(マップ)
 *------------------------------------------*/
/* タイトル */
.p-sub-works-map__title{
  color:var(--color-accent);
  margin-bottom:calc(35/16*1rem);
  text-align: center;
  font-size:calc(30/16*1rem);
  line-height:1.4;
}
.p-sub-works-map__title span{
  font-weight: 700;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-works-map__title{
    margin-bottom:calc(85/16*1rem);
    font-size:calc(30/16*1rem);
  }
}
/* マップ */
.p-sub-works-map__system{
  margin-top:calc(35/16*1rem);
  width:calc(100% + (40/16*1rem));
  height:80vw;
  position: relative;
  left:calc(-20/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-works-map__system{
    margin-bottom:calc(85/16*1rem);
    width:100%;
    height:calc(855/16*1rem);
    left:0;
  }
}
/* 検索 */
.p-sub-works__search{
  display: flex;
  justify-content: center;
  align-items:center; 
}
.p-sub-works__search select{
  border:#999 solid 1px;
  padding:.15em calc(35/16*1rem) .15em .3em;
  width:100%;
  min-width:calc(200/16*1rem);
  font-size:calc(20/16*1rem);
}
.p-sub-works__search .item-select{
  position: relative;
  display: inline-block;
  width:100%;
}
.p-sub-works__search .item-select::after{
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #333;
  position: absolute;
  top:0;
  bottom:0;
  right:calc(10/16*1rem);
  margin:auto;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-works-map__search-title{
    display: flex;
    align-items:flex-end; 
    color:var(--color-accent);
    border-bottom:var(--color-accent) solid 2px;
    padding:0 calc(10/16*1rem) calc(15/16*1rem);    
    margin-bottom:calc(20/16*1rem);
  }
  .p-sub-works-map__search-title span{
    display: inline-block;
  }
  .p-sub-works-map__search-title-main{
    font-size:calc(32/16*1rem);
    text-transform:capitalize;
  }
  .p-sub-works-map__search-title-sub{
    font-size:calc(16/16*1rem);
    font-weight: 700;
  }
  .p-sub-works-map__search-title-sub::before{
    content: "／";
    margin:0 .5em;
  }
  .p-sub-works-map__search-category{
    display: flex;
    flex-wrap: wrap;
    margin-left:-1em; 
  }
  .p-sub-works-map__search-category li{
    font-size:calc(16/16*1rem);
    margin:0.4em 1em;
  }
  .p-sub-works-map__search-category li a{
    display: block;
    position: relative;
    padding-left:1.3em;
    color:var(--color-accent);
    font-weight: 700;
  }
  .p-sub-works-map__search-category li a:hover{
    opacity: 0.7;
  }
  .p-sub-works-map__search-category li a::before{
    content: "";
    position: absolute;
    top:0.5em;
    left:0;
    width: 0;
    height: 0;
    border-left: 10px solid var(--color-accent);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
}

/*------------------------------------------
 *  Worksページ(一覧)
 *------------------------------------------*/
 .p-sub-works{
  padding-top:calc(30/16*1rem);
  margin-top:0;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-works{
    padding-top:calc(80/16*1rem);
  }
}
/* ヘッダー */
.p-sub-works__title{
  font-weight: 700;
  text-align: center;
  font-size:calc(40/16*1rem);
  padding:0 0 calc(30/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-works__head{
    margin-bottom:calc(60/16*1rem);
  }
  .p-sub-works__title{
    text-align: left;
    font-size:calc(40/16*1rem);
    padding:0;
  }
}
/* リスト */
.p-sub-works__list {
  margin-bottom:calc(40/16*1rem);
}
.p-sub-works__item:not(:last-child){
  margin-bottom:calc(50/16*1rem);
}
.p-sub-works__list a{
  display: block;
}
.p-sub-works__list-img{
  width:100%;
	height:106.666vw;
	overflow:hidden;
  border-radius: calc(15/16*1rem);
  position: relative;
}
.p-sub-works__list-arrow .p-sub-works__list-img::after{
  content: "";
  width:calc(34/16*1rem);
  height:calc(34/16*1rem);
  background:rgba(255,255,255,0.8) url("../img/common/icon-arrow-lightblue.webp") no-repeat 50% 50%/calc(15/16*1rem) auto;
  display: block;
  border-radius: 50%;
  border:var(--color-accent) solid 1px;
  position: absolute;
  top:calc(100% - 45px);
  left:calc(100% - 45px);
  z-index:1;
}
.p-sub-works__list-img-inner{
  width:100%;
	height:106.666vw;
	position:relative;
  transition: all .2s ease-in-out;
}
.p-sub-works__list-img img {
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: none;
	min-height:100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
  font-family: 'object-fit: cover; object-position: center center;';
}
.p-sub-works__list a:hover .p-sub-works__list-img-inner{
  transform: scale3d(1.1,1.1,1);
}
.p-sub-works__list-title{
  padding-top:calc(13/16*1rem);
  font-size:calc(13/16*1rem);
  font-weight: 600;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-works__list {
    margin-bottom:calc(70/16*1rem);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: calc(50/16*1rem) calc(40/16*1rem);
  }
  .p-sub-works__item,
  .p-sub-works__item:not(:last-child){
    margin-bottom:0;
  }
  .p-sub-works__list-img{
    height:calc(250/16*1rem);
  }
  .p-sub-works__list-img-inner{
    height:calc(250/16*1rem);
  }
  .p-sub-works__list-title{
    padding-top:calc(10/16*1rem);
    font-size:calc(16/16*1rem);
  }
}
/* ボタン */
.p-sub-works__button .c-btn{
  margin-inline: auto;
  cursor: pointer;
}

/*------------------------------------------
 *  Worksページ(詳細)
 *------------------------------------------*/
 .p-sub-works-detail{
  padding-top:calc(30/16*1rem);
  margin-top:0;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-works-detail{
    padding-top:calc(80/16*1rem);
  }
}
/* 内容 */
.p-sub-works-detail__title{
  font-size:calc(20/16*1rem);
  font-weight:700;
  margin-bottom:calc(25/16*1rem);
}
.p-sub-works-detail__mv{
  margin-bottom:calc(40/16*1rem);
}
.p-sub-works-detail__conts{
  margin-bottom:calc(40/16*1rem);
  overflow: hidden;
}
.p-sub-works-detail__conts p{
  margin-bottom:calc(20/16*1rem);
}
.p-sub-works-detail__conts p a{
  text-decoration: underline;
}
.p-sub-works-detail__conts iframe{
  width:100%;
  height:50vw;
  margin-bottom:calc(40/16*1rem);
  margin-top:calc(40/16*1rem);
}
.p-sub-works-detail__data-list{
  background-color: #F3F9FC;
  padding:calc(35/16*1rem);
  margin-top:calc(40/16*1rem);
  margin-bottom:calc(40/16*1rem);
}
.p-sub-works-detail__data-item:not(:last-child){
  margin-bottom:calc(30/16*1rem);
}
.p-sub-works-detail__data-item dt{
  text-align: center;
  margin-bottom:calc(10/16*1rem);
  color:var(--color-accent);
  font-size:calc(18/16*1rem);
}
.p-sub-works-detail__data-item dt span{
  display: inline-block;
  font-weight: 700;
}
.p-sub-works-detail__data-item dt span::before{
  content: "－";
  margin-right:0.5em;
}
.p-sub-works-detail__data-item dt span::after{
  content: "－";
  margin-left:0.5em;
}
.p-sub-works-detail__data-item dd{
  font-size:calc(16/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-works-detail__title{
    font-size:calc(40/16*1rem);
    margin-bottom:calc(60/16*1rem);
  }
  .p-sub-works-detail__mv{
    margin-bottom:calc(60/16*1rem);
  }
  .p-sub-works-detail__conts{
    margin-bottom:calc(40/16*1rem);
  }
  .p-sub-works-detail__conts p{
    margin-bottom:calc(40/16*1rem);
  }
  .p-sub-works-detail__conts iframe{
    height:calc(515/16*1rem);
    margin-bottom:calc(40/16*1rem);
    margin-top:calc(40/16*1rem);
  }
  .p-sub-works-detail__head{
    display: grid;
    grid-template-columns: calc(540/16*1rem) 1fr;
    gap: calc(60/16*1rem);
    padding-bottom:calc(70/16*1rem);
    margin-bottom:calc(70/16*1rem);
    border-bottom:#D6E8F5 solid 4px;
  }
  .p-sub-works-detail__mv{
    width:calc(540/16*1rem);
    height:auto;
    margin-bottom:0;
  }
  .p-sub-works-detail__data-list{
    padding:calc(40/16*1rem);
    margin-top:calc(60/16*1rem);
    margin-bottom:0;
  }
  .p-sub-works-detail__data-item:not(:last-child){
    margin-bottom:calc(40/16*1rem);
  }
  .p-sub-works-detail__data-item dt{
    margin-bottom:calc(15/16*1rem);
    font-size:calc(18/16*1rem);
  }
  .p-sub-works-detail__data-item dd{
    font-size:calc(16/16*1rem);
  }  
}
/* ギャラリー */
.p-sub-works-detail__gallery-item.column1,
.p-sub-works-detail__gallery-item.column2,
.p-sub-works-detail__gallery-item.column3{
  margin-bottom: calc(30/16*1rem);
}
.p-sub-works-detail__gallery-box{
  background-color: #F3F9FC;
  padding:calc(35/16*1rem);
  margin-top:calc(40/16*1rem);
  width:100%;
}
.p-sub-works-detail__gallery-img{
  width:100%;
	position:relative;
  overflow: hidden;
}
/*
.p-sub-works-detail__gallery-item.column1 .p-sub-works-detail__gallery-img{
  height:64vw;
}
.p-sub-works-detail__gallery-item.column2 .p-sub-works-detail__gallery-img{
  height:64vw;
}
.p-sub-works-detail__gallery-item.column3 .p-sub-works-detail__gallery-img{
  height:128vw;
}
*/
.p-sub-works-detail__gallery-box .p-sub-works-detail__gallery-img{
  /*height:64vw;*/
  margin-bottom:calc(20/16*1rem);
  overflow:hidden;
}
.p-sub-works-detail__gallery-img img{
  width:100%;
  height:auto;
}
/*
.p-sub-works-detail__gallery-img img{
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  min-height:100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
  font-family: 'object-fit: cover; object-position: center center;';
}
*/
.p-sub-works-detail__gallery-txt{
  margin-top:calc(10/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-works-detail__gallery{
    display: flex;
    flex-wrap: wrap;
    margin-top:calc(60/16*1rem);
    width:calc(100% + (25/16*1rem));
  }
  .p-sub-works-detail__gallery-item.column1{
    width:calc(100% - (25/16*1rem));
  }
  .p-sub-works-detail__gallery-item.column2{
    width:calc(((100% - (25/16*1rem)) - (25/16*1rem)) / 2);
    margin-right:calc(25/16*1rem);
  }
  .p-sub-works-detail__gallery-item.column3{
    width:calc(((100% - (25/16*1rem)) - (50/16*1rem)) / 3);
    margin-right:calc(25/16*1rem);
  }
  .p-sub-works-detail__gallery-box{
    padding:calc(50/16*1rem);
    margin-top:calc(60/16*1rem);
    display: grid;
    grid-template-columns: calc(420/16*1rem) 1fr;
    gap: calc(25/16*1rem);
    width:100%;
  }
  /*
  .p-sub-works-detail__gallery-item.column1 .p-sub-works-detail__gallery-img{
    height:calc(785/16*1rem);
  }
  .p-sub-works-detail__gallery-item.column2 .p-sub-works-detail__gallery-img{
    height:calc(320/16*1rem);
  }
  .p-sub-works-detail__gallery-item.column3 .p-sub-works-detail__gallery-img{
    height:calc(600/16*1rem);
  }
  */
  .p-sub-works-detail__gallery-box .p-sub-works-detail__gallery-img{
    /*height:calc(300/16*1rem);*/
    margin-bottom:0;
  }
  .p-sub-works-detail__gallery-txt{
    margin-top:calc(15/16*1rem);
  }
}
/* ボタン */
.p-sub-works-detail__button a{
  margin-inline: auto;
}

/*------------------------------------------
 *  Staffページ
 *------------------------------------------*/
/* タイトル */
.p-sub-staff__title{
  color:var(--color-accent);
  margin-bottom:calc(50/16*1rem);
  text-align: center;
  font-size:calc(20/16*1rem);
  line-height:1.4;
  font-weight: 700;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-staff__title{
    margin-bottom:calc(85/16*1rem);
    font-size:calc(30/16*1rem);
  }
}
/* リスト */
.p-sub-staff__list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: calc(25/16*1rem) calc(20/16*1rem);
}
.p-sub-staff__item{
  width:100%;
  height:35vw;
	position:relative;
}
.p-sub-staff__item img{
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  min-height:100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
  font-family: 'object-fit: cover; object-position: center center;';
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-staff__list{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: calc(30/16*1rem);
  }
  .p-sub-staff__item{
    height:calc(220/16*1rem);
  }
}

/*------------------------------------------
 *  Partnerページ
 *------------------------------------------*/
/* タイトル */
.p-sub-partner__title{
  color:var(--color-accent);
  margin-bottom:calc(50/16*1rem);
  text-align: center;
  font-size:calc(20/16*1rem);
  line-height:1.4;
  font-weight: 700;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-partner__title{
    margin-bottom:calc(85/16*1rem);
    font-size:calc(30/16*1rem);
  }
}
/* ボックス */
.p-sub-partner__box-item{
  padding-bottom:calc(20/16*1rem);
}
.p-sub-partner__box-item:not(:last-child){
  margin-bottom:calc(20/16*1rem);
}
.p-sub-partner__list-wrap{
  padding-bottom:calc(30/16*1rem);
}
.p-sub-partner__list-item{
  margin-inline: calc(5/16*1rem);
  overflow: hidden;
}
.p-sub-partner__item-img{
  width:100%;
  height:26.915vw;
  position:relative;
  overflow:hidden;  
}
.p-sub-partner__item-img img { 
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  min-height:100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); 
  object-fit: cover;
  object-position: center center;
  font-family: 'object-fit: cover; object-position: center center;';
}
.p-sub-partner__box-title{
  margin-bottom:calc(50/16*1rem);
  font-size:calc(30/16*1rem);
  font-weight: 700;
}
.p-sub-partner__item-ttl-type{
  color: #333;
  font-size:calc(12/16*1rem);
  text-align: left;
  padding:0 calc(7/16*1rem);
  margin-top:calc(7/16*1rem);
}
.p-sub-partner__item-ttl-name{
  color: #333;
  font-size:calc(12/16*1rem);
  text-align: center;
  margin-top:calc(5/16*1rem);
}
.p-sub-partner__item-ttl-name span{
  display: inline-block;
  text-align: left;
  line-height:1.4;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-partner__box-item:not(:last-child){
    margin-bottom:calc(30/16*1rem);
  }
  .p-sub-partner__item-img{
    height:calc(130/16*1rem);
  }
  .p-sub-partner__box-title{
    margin-bottom:calc(30/16*1rem);
    font-size:calc(26/16*1rem);
  }
}
/* スライダー */
.p-sub-partner__list {
  display: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.p-sub-partner__list.slick-initialized {
  display: block;
  opacity: 1;
}
.p-sub-partner .slick-list{
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}
/* 矢印 */
.p-sub-partner .slick-prev,
.p-sub-partner .slick-next{
  font-size: 0;
  line-height: 0;
  position: absolute;
  top:13.5vw;
  display: block;
  width: 36px;
  height:36px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  z-index:1;
  }
.p-sub-partner .slick-prev:hover,
.p-sub-partner .slick-prev:focus,
.p-sub-partner .slick-next:hover,
.p-sub-partner .slick-next:focus{
    color: transparent;
    outline: none;
    background: transparent;
}
.p-sub-partner .slick-prev:hover:before,
.p-sub-partner .slick-prev:focus:before,
.p-sub-partner .slick-next:hover:before,
.p-sub-partner .slick-next:focus:before{
    opacity: 1;
}
.p-sub-partner .slick-prev.slick-disabled:before,
.p-sub-partner .slick-next.slick-disabled:before{
    opacity: .25;
}
.p-sub-partner .slick-prev:before,
.p-sub-partner .slick-next:before{
  line-height: 1;
  opacity: .75;
  content: "";
  width:36px;
  height:36px; 
  background-repeat:no-repeat;
  background-position: 0 0;
  background-size:100% auto;
  display: block;
}
.p-sub-partner .slick-prev:before{
background-image:url("../img/common/icon-slick-prev.webp");
}
.p-sub-partner .slick-next:before{
background-image:url("../img/common/icon-slick-next.webp");
}
.p-sub-partner .slick-prev{
    left: -18px;
}
[dir='rtl'] .slick-prev{
    right: -18px;
    left: auto;
}
.p-sub-partner .slick-prev:before{
  content: '';
}
[dir='rtl'] .slick-prev:before{
  content: '';
}
.p-sub-partner .slick-next{
    right: -18px;
}
[dir='rtl'] .slick-next{
    right: auto;
    left: -18px;
}
.p-sub-partner .slick-next:before{
  content: '';
}
[dir='rtl'] .slick-next:before{
  content: '';
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-partner .slick-prev,
  .p-sub-partner .slick-next{
    top:calc(65/16*1rem);
  }
}
/* ドット */
.p-sub-partner .slick-dots li{
  width: 10px;
  height: 10px;
  margin: 0 5px;
}
.p-sub-partner .slick-dots li button{
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px !important;
  height: 10px !important;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.p-sub-partner .slick-dots li button:before{
  line-height: 10px;
  width: 10px;
  height: 10px;
  content: "";
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border:var(--color-accent) solid 1px;
  opacity: 1;
}
.p-sub-partner .slick-dots li.slick-active button:before{
  background-color: var(--color-accent);
  opacity: 1;
}

/*------------------------------------------
 *  Recruitページ
 *------------------------------------------*/
 /* 社長メッセージ */
.p-sub-recruit__msg-conts{
  background:url("../img/recruit/greeting-img.webp") no-repeat 0 100%/calc(90/16*1rem) auto;
  padding-left:calc(120/16*1rem);
}
.p-sub-recruit__msg-txt{
  font-size:calc(14/16*1rem);
  line-height:2;
}
.p-sub-recruit__msg-txt p:not(:last-child){
  margin-bottom:1em;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-recruit__msg-conts{
    background-size:calc(120/16*1rem) auto;
    background-position:calc(60/16*1rem) 100%;
    padding-left:calc(280/16*1rem);
    padding-bottom:calc(40/16*1rem);
  }
  .p-sub-recruit__msg-txt{
    font-size:calc(16/16*1rem);
  }
  .p-sub-recruit__msg-txt p:not(:last-child){
    margin-bottom:1.5em;
  }
}
/* エントリー */
.p-sub-recruit__entry-conts{
  position: relative;
  padding:calc(35/16*1rem) 0 calc(35/16*1rem) calc(60/16*1rem);
}
.p-sub-recruit__entry-conts::before{
  content: "";
  position: absolute;
  top:0;
  left:0;
  border-radius: calc(25/16*1rem);
  display: block;
  width:calc(100% - (60/16*1rem));
  height:100%;
  background-color: #D6E8F5;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-recruit__entry-conts{
    padding:calc(75/16*1rem) 0;
    display: grid;
    grid-template-columns: calc(310/16*1rem) 1fr;
    gap: calc(50/16*1rem);
  }
  .p-sub-recruit__entry-conts::before{
    border-radius: calc(50/16*1rem);
    width:calc(100% - (160/16*1rem));
  }

}
/* エントリー（タイトル） */
.p-sub-recruit__entry-ttl{
  color:#fff;
  position: relative;
  z-index:1;
  margin-bottom:calc(30/16*1rem);
}
.p-sub-recruit__entry-ttl-main{
  margin-bottom:calc(13/16*1rem);
}
.p-sub-recruit__entry-ttl-main[lang="en"]{
  font-size:calc(40/16*1rem);
  font-weight: 400;
  text-transform:capitalize; 
}
.p-sub-recruit__entry-ttl-sub{
  font-size:calc(14/16*1rem);
  font-weight: 700; 
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-recruit__entry-ttl{
    margin-bottom:0;
    padding-left:calc(60/16*1rem);
  }
  .p-sub-recruit__entry-ttl-main{
    margin-bottom:calc(20/16*1rem);
  }
  .p-sub-recruit__entry-ttl-main[lang="en"]{
    font-size:calc(58/16*1rem);
  }
  .p-sub-recruit__entry-ttl-sub{
    font-size:calc(17/16*1rem);
  }

}
/* エントリー（リスト） */
.p-sub-recruit__entry-link{
  width:100%;
  position: relative;
  z-index:1;
}
.p-sub-recruit__entry-link-item:not(:last-child){
  margin-bottom:calc(20/16*1rem);
}
.p-sub-recruit__entry-link-item a{
  width:100%;
  height:calc(80/16*1rem);
  border-radius: calc(15/16*1rem);
  border:var(--color-accent) solid 3px;
  background-color: #fff;
  display: flex;
  align-items:center;
  padding-inline: calc(25/16*1rem);
  color:var(--color-accent);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.p-sub-recruit__entry-link-item a:hover{
  background-color: var(--color-accent);
}
.p-sub-recruit__entry-link-item a span{
  display: block;
  color:var(--color-accent);
  font-weight: 600;
  font-size:calc(18/16*1rem);
  position: relative;
  z-index:2;
  width:100%;
  background-position: 100% 50%;
  background-size:calc(25/16*1rem) auto;
  background-image:url("../img/common/icon-arrow-blue.webp");
  background-repeat: no-repeat;
}
.p-sub-recruit__entry-link-item a:hover span{
  color:#fff;
  background-image:url("../img/common/icon-arrow-white.webp");
}
.p-sub-recruit__entry-link-item a::before {
  position: absolute;
  top: 0;
  right:0;
  bottom:0;
  left: 0;
  background-color:var(--color-accent);
  transform-origin: top left;
  transform: scale(0, 1);
  transition: transform 0.4s;
  content: "";
  border-radius: calc(15/16*1rem);
  z-index:1;
}
.p-sub-recruit__entry-link-item a:hover::before {
  transform: scale(1, 1);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-recruit__entry-link-item:not(:last-child){
    margin-bottom:calc(35/16*1rem);
  }
  .p-sub-recruit__entry-link-item a{
    height:calc(140/16*1rem);
    border-radius: calc(30/16*1rem);
    padding-inline: calc(35/16*1rem);
  }
  .p-sub-recruit__entry-link-item a span{
    font-size:calc(24/16*1rem);
    background-size:calc(30/16*1rem) auto;
  }
}

/*------------------------------------------
 *  Invoiceページ
 *------------------------------------------*/
/* サイド タイトル */
/* SP */
@media screen and (max-width: 769px) {
  .p-sub-invoice .l-inner{
    padding-right:0;
    padding-left:0;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  #invoice .l-side__title-main,
  #safety .l-side__title-main{
    font-size:calc(30/16*1rem);
  }
}
/* サイド カテゴリー */
.p-sub-invoice__category{
  margin-left:-1em; 
}
.p-sub-invoice__category li{
  font-size:calc(16/16*1rem);
  margin:0.6em 1em;
  display: inline-block;
}
.p-sub-invoice__category li a{
  display: block;
  position: relative;
  padding-left:1.3em;
  color:var(--color-accent);
  font-weight: 700;
}
.p-sub-invoice__category li a::before{
  content: "";
  position: absolute;
  top:0.5em;
  left:0;
  width: 0;
  height: 0;
  border-left: 10px solid var(--color-accent);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-invoice__category{
    margin-left:-1em; 
  }
  .p-sub-invoice__category li{
    font-size:calc(16/16*1rem);
    display: block;
  }
}
/* タイトル */
.p-sub-invoice__title{
  color:var(--color-accent);
  margin-bottom:calc(50/16*1rem);
  text-align: center;
  font-size:calc(24/16*1rem);
  line-height:1.4;
  font-weight: 700;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-invoice__title{
    margin-bottom:calc(85/16*1rem);
    font-size:calc(40/16*1rem);
  }
}
/* ボックス */
.p-sub-invoice__box-item:not(:last-child){
  margin-bottom:calc(60/16*1rem);
}
.p-sub-invoice__box-item-title{
  font-weight: 600;
  font-size:calc(18/16*1rem);
  margin-bottom:calc(20/16*1rem);
}
.p-sub-invoice__box-item-list{
  width:100%;
  max-width:calc(480/16*1rem);
  margin-inline: auto;
  margin-bottom:calc(50/16*1rem);
}
.p-sub-invoice__box-item-list li:not(:last-child){
  margin-bottom:calc(20/16*1rem);
}
.p-sub-invoice__box-item-list li a{
  border:var(--color-accent) solid 2px;
  border-radius: calc(10/16*1rem);
  width:100%;
  height:calc(80/16*1rem);
  display: flex;
  align-items:center;
  font-weight: 600;
  color:var(--color-font-base);
  padding-inline: calc(25/16*1rem);
  text-align: left;
  line-height: 1.4;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.p-sub-invoice__box-item-list li a:hover{
  background-color: var(--color-accent);
}
.p-sub-invoice__box-item-list li a span{
  display: block;
  color:var(--color-font-base);
  position: relative;
  z-index:2;
}
.p-sub-invoice__box-item-mt{
  font-weight: 600;
  font-size:calc(16/16*1rem);
}
.p-sub-invoice__box-item-st{
  font-weight: 400;
  font-size:calc(12/16*1rem);
  margin-top: .5em;
}
.p-sub-invoice__box-item-list li a:hover span{
  color:#fff;
}
.p-sub-invoice__box-item-list li a::before {
  position: absolute;
  top: 0;
  right:0;
  bottom:0;
  left: 0;
  background-color:var(--color-accent);
  transform-origin: top left;
  transform: scale(0, 1);
  transition: transform 0.4s;
  content: "";
  border-radius: calc(15/16*1rem);
  z-index:1;
}
.p-sub-invoice__box-item-list li a:hover::before {
  transform: scale(1, 1);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-invoice__box-item:not(:last-child){
    margin-bottom:calc(80/16*1rem);
  }
  .p-sub-invoice__box-item-title{
    font-size:calc(26/16*1rem);
    margin-bottom:calc(35/16*1rem);
  }
  .p-sub-invoice__box-item-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
    max-width:100%;
    margin-bottom:calc(70/16*1rem);
  }
  .p-sub-invoice__box-item-list li:not(:last-child){
    margin-bottom:0;
  }
  .p-sub-invoice__box-item-list li a{
    border-radius: calc(10/16*1rem);
    width:100%;
    height:calc(100/16*1rem);
    padding-inline: calc(25/16*1rem);
  }
  .p-sub-invoice__box-item-mt{
    font-size:calc(18/16*1rem);
  }
  .p-sub-invoice__box-item-st{
    font-size:calc(12/16*1rem);
  }
}
/* ボックス */
.p-sub-invoice__note p{
  font-size:calc(14/16*1rem);
}
.p-sub-invoice__note p::before{
  content: "※";
  margin-right:.5em;
}
.p-sub-invoice__note p:not(:last-child){
  margin-bottom:1em;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-invoice__note p{
    font-size:calc(14/16*1rem);
  }
}

/*------------------------------------------
 *  Companyページ（共通）
 *------------------------------------------*/
/* サイド タイトル */
/* SP */
@media screen and (max-width: 769px) {
  .p-sub-company-column .l-inner{
    padding-right:0;
    padding-left:0;
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .p-sub-company-column .l-side__title-main{
    font-size:calc(30/16*1rem);
  }
}
/* サイド カテゴリー */
.p-sub-company__category{
  margin-left:-1em; 
}
.p-sub-company__category li{
  font-size:calc(16/16*1rem);
  margin:.6em 1em;
  display: inline-block;
}
.p-sub-company__category li a{
  display: block;
  position: relative;
  padding-left:1.3em;
  color:var(--color-accent);
  font-weight: 700;
}
.p-sub-company__category li a::before{
  content: "";
  position: absolute;
  top:0.5em;
  left:0;
  width: 0;
  height: 0;
  border-left: 10px solid var(--color-accent);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-company__category{
    margin-left:-1em; 
  }
  .p-sub-company__category li{
    font-size:calc(16/16*1rem);
    display: block;
  }
}
/* タイトル */
.p-sub-company__title{
  color:var(--color-accent);
  margin-bottom:calc(20/16*1rem);
  text-align: center;
  font-size:calc(24/16*1rem);
  line-height:1.4;
  font-weight: 700;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-company__title{
    margin-bottom:calc(40/16*1rem);
    font-size:calc(40/16*1rem);
  }
}
/* サブタイトル */
.p-sub-company__title-sub{
  font-size:calc(18/16*1rem);
  font-weight: 700;
  text-align: center;
  margin-bottom:calc(25/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-company__title-sub{
    font-size:calc(22/16*1rem);
    margin-bottom:calc(30/16*1rem);
  }
}
/* ボックス（イメージ） */
.p-sub-company__img-box{
  margin-bottom:calc(40/16*1rem);
}
.p-sub-company__img-box-img{
  text-align: center;
  margin-bottom:calc(20/16*1rem);
}
.p-sub-company__img-box-img img{
  width:80%;
  max-width:calc(200/16*1rem);
}
.p-sub-company__img-box-txt{
  font-size:calc(15/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-company__img-box{
    margin-bottom:calc(60/16*1rem);
    display: grid;
    grid-template-columns: calc(180/16*1rem) 1fr;
    gap: calc(30/16*1rem);
  }
  .p-sub-company__img-box-img{
    text-align: left;
    margin-bottom:0;
  }
  .p-sub-company__img-box-img img{
    width:calc(170/16*1rem);
    max-width:calc(170/16*1rem);
  }
  .p-sub-company__img-box-txt{
    font-size:calc(16/16*1rem);
  }
}

/*------------------------------------------
 *  Companyページ（社長挨拶・経営理念）
 *------------------------------------------*/
/* 社長挨拶 */
.p-sub__company-greeting-conts{
  max-width:calc(700/16*1rem);
  margin-inline:auto;
}
.p-sub__company-greeting-ttl{
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-style: normal;
  font-size:calc(20/16*1rem);
  text-align: center;
  margin-bottom:calc(20/16*1rem);
}
.p-sub__company-greeting-txt{
  font-size:calc(14/16*1rem);
  line-height: 1.7;;
}
.p-sub__company-greeting-txt p:not(:last-child) {
  margin-bottom:1.8em;
}
.p-sub__company-greeting-sign{
  text-align: right;
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-style: normal;
  font-size:calc(17/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub__company-greeting-ttl{
    font-size:calc(26/16*1rem);
    margin-bottom:calc(30/16*1rem);
  }
  .p-sub__company-greeting-txt{
    font-size:calc(16/16*1rem);
  }
  .p-sub__company-greeting-sign{
    font-size:calc(24/16*1rem);
  }
}
/* 経営理念 */
.p-sub__company-philosophy-list{
  background-color: #F3F9FC;
  padding:calc(30/16*1rem) calc(20/16*1rem);
}
.p-sub__company-philosophy-list-item:not(:last-child){
  margin-bottom:calc(25/16*1rem);
}
.p-sub__company-philosophy-list-item dt{
  text-align: center;
  font-weight: 700;
  font-size:calc(18/16*1rem);
  margin-bottom:calc(15/16*1rem);
}
.p-sub__company-philosophy-list-item dd{
  font-size:calc(14/16*1rem);
  line-height: 1.8;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub__company-philosophy-list{
    padding:calc(55/16*1rem) calc(40/16*1rem);
  }
  .p-sub__company-philosophy-list-item:not(:last-child){
    margin-bottom:calc(50/16*1rem);
  }
  .p-sub__company-philosophy-list-item dt{
    font-size:calc(26/16*1rem);
    margin-bottom:calc(25/16*1rem);
  }
  .p-sub__company-philosophy-list-item dd{
    font-size:calc(16/16*1rem);
    text-align: center;
  }
}

/*------------------------------------------
 *  Companyページ（会社概要）
 *------------------------------------------*/
/* リスト */
.p-sub__overview-tbl-item:not(:last-child){
  margin-bottom:calc(20/16*1rem);
}
.p-sub__overview-tbl-item dt{
  background-color: #F3F9FC;
  padding:calc(10/16*1rem) calc(15/16*1rem);
  font-weight: 500;
  font-size:calc(16/16*1rem);
}
.p-sub__overview-tbl-item dd{
  padding:calc(12/16*1rem) calc(15/16*1rem);
  font-size:calc(16/16*1rem);
}
.p-sub__overview-tbl-item p:not(:last-child){
  margin-bottom:1.8em;
}
.p-sub__overview-tbl-item p a{
  color:var(--color-accent);
  text-decoration: underline;
}
.p-sub__overview-tbl-item table th,
.p-sub__overview-tbl-item table td{
  display: block;
  width:100%;
  text-align: left;
}
.p-sub__overview-tbl-item table th{
  padding-top:1.6em;
}
.p-sub__overview-tbl-item table tr:not(:last-child) th{
  padding-top:0;
}
.p-sub__overview-tbl-bnr{
  display: flex;
  align-items:flex-end;
}
.p-sub__overview-tbl-bnr li:not(:last-child) {
  margin-right:calc(30/16*1rem);
}
.p-sub__overview-tbl-bnr li img{
  height:calc(150/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub__overview-tbl-item{
    display: grid;
    grid-template-columns: calc(200/16*1rem) 1fr;
    gap: calc(40/16*1rem);
  }
  .p-sub__overview-tbl-item:not(:last-child){
    margin-bottom:calc(10/16*1rem);
  }
  .p-sub__overview-tbl-item dt{
    background-color: #F3F9FC;
    padding:calc(15/16*1rem);
    font-size:calc(16/16*1rem);
  }
  .p-sub__overview-tbl-item dd{
    padding:calc(15/16*1rem);
    font-size:calc(16/16*1rem);
  }
  .p-sub__overview-tbl-item p:not(:last-child){
    margin-bottom:1.5em;
  }
  .p-sub__overview-tbl-item table th,
  .p-sub__overview-tbl-item table td{
    display: table-cell;
    width:auto;
    padding-right:1.3em;
  }
  .p-sub__overview-tbl-item table th{
    padding-top:1.3em;
  }
  .p-sub__overview-tbl-bnr li:not(:last-child) {
    margin-right:calc(30/16*1rem);
  }
  .p-sub__overview-tbl-bnr li img{
    height:calc(150/16*1rem);
  }
  .p-sub__overview-tbl-item-list{
    display: flex;
  }
  .p-sub__overview-tbl-item-list ul:not(:last-child){
    margin-right:calc(75/16*1rem);
  }
}

/*------------------------------------------
 *  Companyページ（沿革）
 *------------------------------------------*/
/* 沿革 */
.p-sub__history-list-item{
  display: grid;
  grid-template-columns: calc(70/16*1rem) 1fr;
  gap: calc(40/16*1rem);
  padding-bottom:calc(25/16*1rem);
}
.p-sub__history-list-item dt{
  position: relative;
  font-size:calc(15/16*1rem);
  display: flex;
  flex-direction: column; 
}
.p-sub__history-list-item dt::before{
  content: "";
  display: block;
  width:2px;
  height:calc(100% + (.5em + (25/16*1rem)));
  background-color: var(--color-accent);
  position: absolute;
  right:calc(-20/16*1rem);
  top:.5em;
}
.p-sub__history-list-item:last-child dt::before{
  display: none;
}
.p-sub__history-list-item dt::after{
  content: "";
  display: block;
  width:10px;
  height:10px;
  border-radius: 50%;
  background-color: var(--color-accent);
  position: absolute;
  right:calc(-24/16*1rem);
  top:.5em;
}
.p-sub__history-list-year{
  display: inline-block;
}
.p-sub__history-list-year::after{
  content: "年"; 
}
.p-sub__history-list-date{
  display: inline-block;
}
.p-sub__history-list-date::after{
  content: "月"; 
}
.p-sub__history-list-item dd{
  font-size:calc(15/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub__history-list-item{
    grid-template-columns: calc(120/16*1rem) 1fr;
    gap: calc(110/16*1rem);
    padding-bottom:calc(35/16*1rem);
  }
  .p-sub__history-list-item dt{
    font-size:calc(16/16*1rem);
    justify-content:flex-end;
    flex-direction:row;
  }
  .p-sub__history-list-year{
    width:6em;
  }
  .p-sub__history-list-date{
    width:4em;
    text-align: right;
  }
  .p-sub__history-list-item dt::before{
    height:calc(100% + (.5em + (35/16*1rem)));
    right:calc(-60/16*1rem);
  }
  .p-sub__history-list-item dt::after{
    width:14px;
    height:14px;
    right:calc(-66/16*1rem);
  }
  .p-sub__history-list-date{
    margin-left:1.5em;
  }
  .p-sub__history-list-item dd{
    font-size:calc(16/16*1rem);
  }
}

/*------------------------------------------
 *  Companyページ（主要取引先）
 *------------------------------------------*/
/* リスト */
.p-sub__mainclient-list{
  margin-bottom: 2em;
}
.p-sub__mainclient-list-item{
  font-size:calc(15/16*1rem);
  line-height:2;
}
.p-sub__mainclient-note{
  text-align: right;
  font-size:calc(15/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub__mainclient-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(100/16*1rem);
  }
  .p-sub__mainclient-list-item{
    font-size:calc(16/16*1rem);
  }
  .p-sub__mainclient-note{
    font-size:calc(16/16*1rem);
  }
}

/*------------------------------------------
 *  Companyページ（年度別売上高推移）
 *------------------------------------------*/

/*------------------------------------------
 *  Companyページ（SDGs）
 *------------------------------------------*/
/* ガイドライン */
.p-sub__sdgs-guideline-list{
  margin-bottom:calc(25/16*1rem);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: calc(15/16*1rem) calc(15/16*1rem);
}
.p-sub__sdgs-guideline-list a img{
  transition: 0.3s;
}
.p-sub__sdgs-guideline-list a:hover img{
  opacity: 0.7;
}
.p-sub__sdgs-guideline-info{
  text-align: right;
  font-size:calc(15/16*1rem);
}
.p-sub__sdgs-guideline-info a{
  text-decoration: underline;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub__sdgs-guideline-list{
    margin-bottom:calc(40/16*1rem);
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: calc(13/16*1rem) calc(13/16*1rem);
  }
  .p-sub__sdgs-guideline-info{
    font-size:calc(16/16*1rem);
  }
}

/*------------------------------------------
 *  Companyページ（ZEH-M）
 *------------------------------------------*/
/* ZEH-M 実施体制図 */
.p-sub__zeh-organization-img{
  margin-bottom:calc(30/16*1rem);
}
.p-sub__zeh-organization-tbl-wp{
  margin-bottom:calc(30/16*1rem); 
  width: 100%;
  overflow-x: scroll;  
}
.p-sub__zeh-organization-tbl{
  width:calc(820/16*1rem);
  min-width:calc(820/16*1rem);
  height:auto;
}
.p-sub__zeh-organization-info{
  text-align: right;
  font-size:calc(15/16*1rem);
}
.p-sub__zeh-organization-info a{
  text-decoration: underline;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub__zeh-organization-img{
    margin-bottom:calc(40/16*1rem);
  }
  .p-sub__zeh-organization-tbl-wp{
    margin-bottom:calc(40/16*1rem); 
  }
  .p-sub__zeh-organization-tbl{
    width:100%;
  }
  .p-sub__zeh-organization-info{
    font-size:calc(16/16*1rem);
  }
}

/*------------------------------------------
 *  お問い合わせページ
 *------------------------------------------*/
/* タイトル */
.p-sub-contact__ttl{
  font-size:calc(26/16*1rem);
  color:var(--color-accent);
  font-weight: 700;
  margin-bottom:calc(30/16*1rem);
  text-align: center;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-contact__ttl{
    font-size:calc(40/16*1rem);
    margin-bottom:calc(60/16*1rem);
  }
}
/* ボタン */
.p-sub-contact__btn{
  margin-top:calc(40/16*1rem);
}
.p-sub-contact__btn button{
  margin-inline: auto;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-contact__btn{
    margin-top:calc(60/16*1rem);
  }
}

/*------------------------------------------
 *  お問い合わせ確認ページ
 *------------------------------------------*/
/* タイトル */
.p-sub-confirm__ttl{
  font-size:calc(26/16*1rem);
  color:var(--color-accent);
  font-weight: 700;
  margin-bottom:calc(30/16*1rem);
  text-align: center;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-confirm__ttl{
    font-size:calc(40/16*1rem);
    margin-bottom:calc(60/16*1rem);
  }
}

/*------------------------------------------
 *  お問い合わせ完了ページ
 *------------------------------------------*/
 .p-sub-thanks {
  text-align: center;
}
.p-sub-thanks__ttl{
  font-size:calc(26/16*1rem);
  color:var(--color-accent);
  font-weight: 700;
  margin-bottom:calc(30/16*1rem);
}
.p-sub-thanks__txt{
  font-size:calc(16/16*1rem);
  margin-bottom:calc(30/16*1rem);
}
/* ボタン */
.p-sub-thanks__btn a{
  margin-inline: auto;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-thanks__ttl{
    font-size:calc(40/16*1rem);
    margin-bottom:calc(60/16*1rem);
  }
  .p-sub-thanks__txt{
    font-size:calc(16/16*1rem);
    margin-bottom:calc(60/16*1rem);
  }
}

/*------------------------------------------
 *  Privacyページ
 *------------------------------------------*/
.p-sub-privacy {
  font-size:calc(16/16*1rem);
}
/* グループ */
.p-sub-privacy__group {
  margin-top: 2.5em;
}
/* テキスト */
.p-sub-privacy__ttl{
  font-size:calc(16/16*1rem);
  margin-bottom:1.3em;
}
/* リスト（数字） */
.p-sub-privacy__list.c-list-num{
  margin-left:1.2em;
}
.p-sub-privacy__list.c-list-num li{
  list-style-type: decimal;
  list-style-position: outside;
}
/* リスト（かっこ数字） */
.p-sub-privacy__list.c-list-par{
  padding-left:1em;
}
.p-sub-privacy__list.c-list-num .p-sub-privacy__list.c-list-par{
  padding-left:0;
}
.p-sub-privacy__list.c-list-par li{
  clear:both;
  list-style-type:none;
  list-style-position: inside;
}
.p-sub-privacy__list.c-list-par li::before{
  float:left;
}
.p-sub-privacy__list.c-list-par li:nth-child(1)::before{
  content: "(1)";
}
.p-sub-privacy__list.c-list-par li:nth-child(2)::before{
  content: "(2)";
}
.p-sub-privacy__list.c-list-par li:nth-child(3)::before{
  content: "(3)";
}
.p-sub-privacy__list.c-list-par li:nth-child(4)::before{
  content: "(4)";
}
.p-sub-privacy__list.c-list-par li:nth-child(5)::before{
  content: "(5)";
}
.p-sub-privacy__list.c-list-par li:nth-child(6)::before{
  content: "(6)";
}
.p-sub-privacy__list.c-list-par li:nth-child(7)::before{
  content: "(7)";
}
.p-sub-privacy__list.c-list-par li:nth-child(8)::before{
  content: "(8)";
}
.p-sub-privacy__list.c-list-par li:nth-child(9)::before{
  content: "(9)";
}
.p-sub-privacy__list.c-list-par li span{
  display: block;
  padding-left:1.5em;
}
/* リスト（全角数字） */
.p-sub-privacy__list.c-list-par-full{
  padding-left:1.5em;
}
.p-sub-privacy__list.c-list-par-full .p-sub-privacy__list.c-list-par{
  padding-left:0;
}
.p-sub-privacy__list.c-list-par-full li{
  clear:both;
  list-style-type:none;
  list-style-position: inside;
}
.p-sub-privacy__list.c-list-par-full li::before{
  float:left;
}
.p-sub-privacy__list.c-list-par-full li:nth-child(1)::before{
  content: "１）";
}
.p-sub-privacy__list.c-list-par-full li:nth-child(2)::before{
  content: "２）";
}
.p-sub-privacy__list.c-list-par-full li:nth-child(3)::before{
  content: "３）";
}
.p-sub-privacy__list.c-list-par-full li:nth-child(4)::before{
  content: "４）";
}
.p-sub-privacy__list.c-list-par-full li:nth-child(5)::before{
  content: "５）";
}
.p-sub-privacy__list.c-list-par-full li:nth-child(6)::before{
  content: "６）";
}
.p-sub-privacy__list.c-list-par-full li:nth-child(7)::before{
  content: "７）";
}
.p-sub-privacy__list.c-list-par-full li:nth-child(8)::before{
  content: "８）";
}
.p-sub-privacy__list.c-list-par-full li:nth-child(9)::before{
  content: "９）";
}
.p-sub-privacy__list.c-list-par-full li span{
  display: block;
  padding-left:2em;
}

/*------------------------------------------
 *  404ページ
 *------------------------------------------*/
.p-sub-404 {
  text-align: center;
}
.p-sub-404__ttl{
  font-size:calc(20/16*1rem);
  color:var(--color-accent);
  font-weight: 700;
  margin-bottom:calc(30/16*1rem);
}
.p-sub-404__txt{
  font-size:calc(16/16*1rem);
  margin-bottom:calc(30/16*1rem);
}
/* ボタン */
.p-sub-404__btn a{
  margin-inline: auto;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-404__ttl{
    font-size:calc(28/16*1rem);
    margin-bottom:calc(60/16*1rem);
  }
  .p-sub-404__txt{
    font-size:calc(16/16*1rem);
    margin-bottom:calc(60/16*1rem);
  }
}

/*=================================================
 *  JavaScript用
 *================================================*/

/*=================================================
 *  googlemap用
 *================================================*/
/*  */
.map_popup {
	text-align:center;
}
.map_popup p a{
	font-weight:bold;
	text-decoration: none;
    color: #006699;
}
.map_popup img{
	width:100px;
}	
