@charset "utf-8";

/*============================================
  parts.css
  タグのスタイル変更、共通パーツ定義

  ToDo：パーツが増える場合はこのファイルで定義する
==============================================*/

/*============================================
  タグのスタイル変更
==============================================*/

h2 {
  font-family: 'Noto Sans JP',sans-serif;
}

/*-- h2 type-A --*/
h2.type-A {

}

h2.type-A span {
  position: relative;
}

h2.type-A span:before {
  content: '';
  width: 100%;
  height: 4px;
  border-radius: 2px;
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: -1;
}

/*-- h2 type-B --*/
h2.type-B {

}

h2.type-B span {
  position: relative;
}

h2.type-B span:before {
  content: '';
  width: 0;
  height: 0;
  border-radius: 2px;
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: -1;
}

/*-- h2 type-C --*/
h2.type-C {
  background: #fff;
  position: relative;
}

h2.type-C:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #000;
  background: linear-gradient( 90deg, rgba(255,255,255,0) 0%, rgba(153,153,154,1) 13%, rgba(153,153,154,1) 87%, rgba(255,255,255,0) 100%);
}

h2.type-C span {
  position: relative;
  background: #fff;
  padding: 0 0.7em;
}

h2.type-C span:before {
  content: none;
}

@media screen and (max-width: 414px) {
  h2.type-C span {
    display: inline-block;
  }
}

h3 {
  font-family: 'Noto Sans JP',sans-serif;
}

p {
  font-size: 14px;
  line-height: 1.6em;
  margin: 0;
  margin-bottom: 0.7em;
}

a {
  text-decoration: none;
}

hr {
  height: 1px;
  border: none;
}

ol {
  counter-reset:num;
  list-style-type: none;
  padding:0;
  margin:0;
}

ol li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}

ol li:before {
  position: absolute;
  counter-increment: num;
  content: counter(num);
  display: inline-block;
  background: transparent;
  border: 1px solid;
  font-family: 'Arial',sans-serif;
  font-weight: bold;
  font-size: 12px;
  border-radius: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  top: 8px;
}

/*============================================
  汎用ボックスパーツ
==============================================*/

/*-- 個別コンテンツボックス --*/
.box {
  width: 100%;
  margin-bottom: 60px;
}

/*-- box内を区切る場合に使用 レベル1 --*/
.box-inner-lv1 {
  margin-bottom: 30px;
}

.box-inner-lv1:after {
  display:block;
  content:'';
  clear:both;
}

/*-- box内を区切る場合に使用 レベル2（レベル1をさらに区切る場合に） --*/
.box-inner-lv2-A {
  width: 300px;
  margin: 0 auto;
}


/*============================================
  フレックスボックスパーツ
==============================================*/

/*-- フレックスボックスコンテナ --*/
.flex-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}

/*-- フレックスボックスコンテナ（逆順） --*/
.flex-box-row-reverse {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}

/*-- フレックスボックスアイテム 2列用 --*/
.flex-box-item-2col {
  width: 50%;
  padding-bottom: 20px;
}

.flex-box-item-2col-B {
  width: 48%;
}

/*-- フレックスボックスアイテム 
      Bパターン（旧C,Dパターン）2列用 --*/
.flex-box-item-2col.ptnB {
  width: 48%;
  padding-bottom: 20px;
}


/*-- フレックスボックスアイテム 3列用 --*/
.flex-box-item-3col {
  width: 280px;
  padding-bottom: 20px;
}

/*-- コンテナ・ブロック 画面幅 980px 未満 --*/
@media only screen and ( max-width : 980px ) {
  /*-- フレックスボックスアイテム 3列用 --*/
  .flex-box-item-3col {
    width: calc(100% / 3 - 10px);
    padding-bottom: 20px;
  }
}

/*============================================
  画像用ボックス
==============================================*/
/*-- 画像用ボックス --*/
.img-box-150px {
  width: 150px;
}

.img-box-280px {
  width: 280px;
}

.img-box-300px {
  width: 300px;
}

.img-box-50percent {
  width: 50%;
}

.img-box-100percent {
  width: 100%;
}

/*-- 画像用ボックス 画面幅 980px 未満 --*/
@media only screen and ( max-width : 980px ) {
  /*-- 画像用ボックス --*/
  .img-box-300px {
    width: 250px;
  }

  .img-box-50percent {
    width: 100%;
  }
}


/*============================================
  入力フォーム系パーツ
==============================================*/
/*-- セルの縦方向位置 --*/
.cell-vTop {
  vertical-align: top;
}

.cell-vMiddle {
  vertical-align: top;
}

/*-- 入力フォームのテーブル --*/
.input-form {

}

.input-form .required {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid;
  border-radius: 4px;
  padding: 2px 3px 2px 4px;
  margin-left: 5px;
}

.input-form table.form-table {
  width: 100%;
  border: 1px solid;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 4px;
  margin-bottom: 30px;
}

.input-form table.form-table > tbody > tr > th,
.input-form table.form-table > tbody > tr > td {
  padding: 14px 14px;
  border-bottom: 1px dotted;
}

.input-form table.form-table > tbody > tr > th {
  width: 24%;
  border-right: 1px solid;
  font-size: 16px;
  font-family: 'Noto Sans JP',sans-serif;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.2em;
}

.input-form table.form-table > tbody > tr:last-child > th,
.input-form table.form-table > tbody > tr:last-child > td {
  border-bottom: none;
}

.input-form table.form-table > tbody > tr:first-child th:first-child {
  border-radius: 3px 0 0 0;
}
.input-form table.form-table > tbody > tr:first-child td:last-child {
  border-radius: 0 3px 0 0;
}

.input-form table.form-table > tbody > tr:last-child th:first-child {
  border-radius: 0 0 0 3px;
}
.input-form table.form-table > tbody > tr:last-child td:last-child {
  border-radius: 0 0 3px 0;
}

.input-form table.form-table > tbody > tr > th > div {
  position: relative;
  padding-left: 10px;
}

.input-form table.form-table > tbody > tr > th > div:after {
  content: "";
  position: absolute;
  display: block;
  float: left;
  width: 4px;
  border-radius: 2px;
  height: 1.25em;
  margin-right: 5px;
  left: 0;
  top: 0px;
}

.input-form table.form-table table.hours_table {
  width: calc(100% - 20px);
}

/*-- 予約日時selectボックスエリア --*/
.reserv-date {
  margin-top: 16px;
}

.reserv-date-row {
  margin-bottom: 18px;
}

.reserv-date-row label.choice {
  display: inline-block;
  margin-right: 20px;
}

/*-- テキストボックス --*/
input[type="text"] {
  font-size: 14px;
  padding: 8px 8px 6px 8px;
  border: 1px solid;
  border-radius: 4px;
}

input[type="text"]:focus {
  border: 1px solid;
  outline: none;
}

/*-- テキストボックス（極小） --*/
.textBox-tiny {
  width: 48px;
}

/*-- テキストボックス（小） --*/
.textBox-small {
  width: 100px;
}

/*-- テキストボックス（中） --*/
.textBox-middle {
  width: 330px;
}

/*-- テキストボックス（大） --*/
.textBox-large {
  width: calc(100% - 18px);
}

/*-- テキストエリア --*/
textarea {
  padding: 8px 8px 6px 8px;
  border: 1px solid;
  border-radius: 4px;
  line-height: 1.6em;
}

textarea:focus {
  border: 1px solid;
  outline: none;
}

/*-- セレクトボックス --*/
.selectbox {
  display: inline-block;
  width: auto;
  position:relative;
}

.selectbox + label {
  margin-right: 10px;
}

select{
  -webkit-appearance:none;
  appearance:none;
  width: auto;
  padding: 10px 24px 10px 10px;
  box-sizing:border-box;
  font-size:1em;
  border: 1px solid;
  border-radius: 4px;
}

.selectbox::after{
  content:"";
  display:block;
  width: 6px;
  height: 6px;
  position:absolute;
  right: 9px;
  top: 40%;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform:rotate(45deg)translateY(-30%);
}

/*-- ラジオボタン --*/
.f-radio-label {
  margin-right: 1.5em;
}

/*-- 送信、OKボタン --*/
a.submit-btn,
input.submit-btn {
  display: block;
}

a.submit-btn-inline,
input.submit-btn-inline {
  display: inline-block;
}

a.submit-btn,
a.submit-btn-inline,
input.submit-btn,
input.submit-btn-inline
{
  width: 238px;
  font-size: 16px;
  font-family: 'Noto Sans JP',sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 4px;
  padding: 13px 0 16px 0;
  margin: 0 auto;
  border: none;
  cursor: pointer;
}

a.submit-btn:hover,
a.submit-btn-inline:hover,
input.submit-btn:hover,
input.submit-btn-inline:hover
{

}

a.submit-btn:active,
a.submit-btn-inline:active,
input.submit-btn:active,
input.submit-btn-inline:active
{
  transform: translate3d(0, 3px, 0);
  box-shadow: none;
}

/*-- 戻る、キャンセルボタン --*/
a.cancel-btn {
  display: block;
}

a.cancel-btn-inline {
  display: inline-block;
  margin-right: 40px;
}

a.cancel-btn,
a.cancel-btn-inline
{
  width: 77px;
  font-size: 16px;
  font-family: 'Noto Sans JP',sans-serif;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-align: center;
  border: 1px solid;
  border-radius: 4px;
  padding: 13px 0 16px 14px;
  position: relative;
  cursor: pointer;
}

a.cancel-btn:hover,
a.cancel-btn-inline:hover
{

}

a.cancel-btn:active,
a.cancel-btn-inline:active
{
  transform: translate3d(0, 3px, 0);
  box-shadow: none;
}

a.cancel-btn:before,
a.cancel-btn-inline:before
{
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 18px;
  top: 40%;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(135deg);
}

/*-- フォーム内注意テキスト --*/
.f-attension {

}

.f-attension-B {

}

/*-- 入力エラーテキスト --*/
.input-error {
  font-weight: bold;
  margin: 4px 0 0 9px;
}

/*-- 送信ボタン上方のエラー告知エリア --*/
.error-announce {
  width: 60%;
  padding: 20px 20px 10px 20px;
  margin: 0 auto 30px auto;
  border: 1px solid;
  border-radius: 4px;
}

.error-announce p {
  
}


/*============================================
  単発パーツ、その他
==============================================*/
/*-- SPサイズで非表示にするブロック等で使用 --*/
.sp-item {
  display: none;
}

/*-- SPサイズでは非表示にするアイテム --*/
.sp-none {
  display: block;
}

/*-- 整列 --*/
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/*-- 画像 左寄せ --*/
.left-img {
  float: left;
  margin: 0 30px 10px 0;
}

/*-- 画像 右寄せ --*/
.right-img {
  float: right;
  margin: 0 0 10px 30px;
}

/*-- フレックスアイテム内等で使う画像 --*/
.img-in-cell {
  margin-bottom: 10px;
}

/*-- フレックスアイテム内等で使うタイトル・見出し --*/
.title-in-cell {
  font-size: 18px;
  font-family: 'Noto Sans JP',sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

/*-- フレックスアイテム内等で使う本文 --*/
.textblock-in-cell {
  margin-bottom: 16px;
}

/*-- 区切り線 --*/
.line1 {
  height: 1px;
}

/*-- .line1 をインライン要素として使う --*/
.name-in-line-right{
  width: 360px;
  margin: 0 0 0 auto;
}

/*-- グラデーション区切り線 --*/
.grd-line1 {
  height: 1px;
}

.grd-line2 {
  height: 1px;
}

.grd-line3 {
  height: 1px;
}


/*-- リードコピーエリア--*/
.lead-copy {

}

.lead-copy h1 {
  font-size: 24px;
  font-family: 'Noto Sans JP',sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.6em;
  margin-bottom: 20px;
}

.lead-copy p {
  letter-spacing: 0.15em;
}

/*-- ボタン型リンク --*/
.link-button {
  display: block;
  width: 138px;
  border: 1px solid;
  border-radius: 18px;
  text-align: center;
  padding: 8px 0 6px 0;
  margin: 0 auto;
}

/*-- hタグを小さめサイズにする --*/
.little-hl {
    font-size: 18px;
}

/*-- 下マージンを変更する --*/
.mb-A {
  margin-bottom: 10px;
}

.mb-B {
  margin-bottom: 20px;
}

.mb-C {
  margin-bottom: 30px;
}

.mb-D {
  margin-bottom: 40px;
}

.mb-E {
  margin-bottom: 50px;
}

/*-- 右マージンを変更する --*/
.mr-A {
  margin-right: 10px;
}

.mr-B {
  margin-right: 20px;
}

.mr-C {
  margin-right: 30px;
}

.mr-D {
  margin-right: 40px;
}

.mr-E {
  margin-right: 50px;
}

@media ( max-width : 980px ) {
  .mr-D {
    margin-right: 15px;
  }
}

@media ( max-width : 767px ) {
  .mr-D {
    margin-right: 0px;
  }
}

/*-- 左マージンを変更する --*/
.ml-A {
  margin-left: 10px;
}

.ml-B {
  margin-left: 20px;
}

.ml-C {
  margin-left: 30px;
}

.ml-D {
  margin-left: 40px;
}

.ml-E {
  margin-left: 50px;
}


/*-- テキスト整列を変更 --*/
.txt-align-left {
  text-align: left;
}

.txt-align-right {
  text-align: right;
}

.txt-align-center {
  text-align: center;
}

/*-- hタグのスタイル変更 --*/
.hl-typeA {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 20px;
}

.hl-typeA2 {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 20px;
  letter-spacing: normal;
}

.hl-typeB {
  font-size: 21px;
  font-weight: 500;
}

.hl-typeC {
  font-size: 16px;
  font-weight: bolder;
  margin-bottom: 0;
}

.hl-typeC2 {
  font-size: 16px;
  font-weight: bolder;
  margin-bottom: 0.7em;
}

/*-- ページ内リンク --*/
.link-in-page-list {
  width: 100%;
  margin: 0 auto 50px auto;
}

.link-in-page-list ul {
  list-style: none;
  text-align: center;
}

.link-in-page-list ul li {
  display: inline-block;
  text-align: center;
  border-left: 1px solid;
  padding: 0 15px;
  margin-bottom: 0.6em;
}

.link-in-page-list ul li:last-child {
  border-right: 1px solid;
}

/*-- 注釈（頭に※がつく文章） --*/
.notes {
  font-size: 0.8em;
}

/*-- 汎用テーブル --*/
table.info-table {
  border: 1px solid;
  border-collapse: separate;
  border-spacing: 0px;
  border-radius: 4px;
}

.info-table-width-A {
  width: 30%;
}

.info-table-width-B {
  width: 50%;
}

.info-table-width-C {
  width: 60%;
}

.info-table-width-D {
  width: 75%;
}

.info-table-width-E {
  width: 80%;
}

.info-table-width-F {
  width: 90%;
}

.info-table-width-G {
  width: 100%;
}

table.info-table tr {

}

table.info-table th,
table.info-table td
{
  border-bottom: 1px solid;
  border-right: 1px solid;
  padding: 6px;
  vertical-align: middle;
  text-align: left;
  line-height: 1.6em;
  font-weight: normal;
}

table.info-table tr td:last-child {
  border-right: none;  
}

table.info-table tr:last-child th,
table.info-table tr:last-child td {
  border-bottom: none;  
}

.cell-nowrap {
  white-space: nowrap;
}

/*-- 汎用箇条書きリスト type-1 --*/
ul.bullets-list {
  margin-left: 1.5em;
}

ul.bullets-list > li {
  line-height: 1.6em;
}

ul.img-right-list {
  margin: 0px 0 10px 25em;
  display: block;
}

/*-- 汎用定義リスト type-1 --*/
dl.explan-list {

}

dl.explan-list > dt {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  padding-left: 10px;
  margin-bottom: 3px;
  display: inline;
}

dl.explan-list > dt:after {
  content: "";
  position: absolute;
  display: block;
  float: left;
  width: 4px;
  border-radius: 2px;
  height: 1.1em;
  margin-right: 5px;
  left: 0;
  top: 2px;
}

dl.explan-list > dd {
  line-height: 1.6em;
  margin: 0px 0 15px 10px;
}

/*-- 汎用定義リスト type-2 --*/
dl.explan-list2 {

}

dl.explan-list2 > dt {
  font-size: 14px;
  font-weight: bolder;
  line-height: 1.6em;
}

dl.explan-list2 > dt::before {
  content: "・";
}

dl.explan-list2 > dd {
  line-height: 1.6em;
  margin: 0px 0 15px 14px;
}

/*-- 左インデント --*/
.left-mb-1em {
  margin-left: 1em;
}

/*-- ぶら下がり li使うまでもない箇条書きの際に --*/
.hanging-text {
  margin-left: 1em;
  text-indent: -1em;
}

/*-- 汎用floatクリア --*/
/* ※floatのクリアは基本的にdivなどの:after擬似要素内で行うこと。*/
.clear {
  clear: both;
}

/*-- 本文アコーディオンエリア --*/
.accordion-area {
  display: inline-block;
  position: relative;
  height: 200px;
  overflow: hidden;
}

.show-more {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: bottom 0.2s;
}

.show-more-button {
  position: relative;
  width:150px;
  padding: 8px 0 7px 0;
  margin: 30px auto 0 auto;
  border-radius: 22px;
  letter-spacing: 0.2em;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.show-more-button:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  right: 20px;
  top: 40%;
  transform: rotate(45deg)translateY(-30%);
}

.show-more-button.active:after {
  transform: rotate(225deg)translateY(-30%);
}

/*-- 箇条書き --*/
.bullets {
  margin-left: 1em;
  text-indent: -1em;
}

/*-- 汎用ボタンリンク --*/
a.btnType-A {
  display: inline-block;
  width: 180px;
  padding: 10px 0;
  border-radius: 20px;
  font-size: 18px;
  font-family: 'Noto Sans JP',sans-serif;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-align: center;
}

a.btnType-A:hover {

}

.txt-box-650{
  width: 650px;
  margin: 0 auto;
}

/*-- コラムリスト --*/
.column-list-link {
  border-top: 1px solid;
  border-bottom: 1px solid #c0c1c1;
  list-style: none;
}

.column-list-link li {
  list-style-type: none;
  display: inline-block;
  width: 32%;
  padding: 17px 0;
  margin: 0 auto;
  text-align: center;
}

.column-list-link li:before {
  content: "> ";
  font-weight: 500;
}

/*-- 画面最上部の横棒パーツ --*/
.container-top-border {
  border-top: 4px solid;
}

/*-- 採用情報ページ下部の問合せ先ボタン --*/
.recruit-tell-button {
  display: block;
  padding: 10px 5px 8px 25px;
  margin: 0 auto;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: bottom 12px left 28px;
  width: 215px;
  font-size: 21px;
  font-weight: bold;
  border-radius: 25px;
  pointer-events: auto!important;
  box-shadow: 2px 2px 2px 1px rgb(194 191 191 / 70%);
  margin-bottom: 20px;
}

/*-- その他 画面幅 980px 未満 --*/
@media only screen and ( max-width : 980px ) {
  .accordion-area {
    width: 100%;
  }
  .lead-copy {

  }

  ul.img-right-list {
    margin: 0 0 10px 1.6em;
    display: block;
  }

  .txt-box-650{
    width: 100%;
    margin: 0 auto;
  }
}

/*============================================
  グローバルナビゲーション
==============================================*/
/*-- メイン画像下部に設置させる場合 --*/
.global-navi {
  width: 100%;
  margin: 0 auto 40px auto;
  padding-top: 10px;
}

.global-navi ul {
  width: 980px;
  margin: 0 auto 8px auto;
  list-style: none;
  text-align: center;
}

.global-navi ul li {
  display: inline-block;
  text-align: center;
  border-left: 1px solid;
  padding: 0 28px;
}

.global-navi ul li:last-child {
  border-right: 1px solid;
}

/*-- メイン画像上部に設置させる場合 --*/
#top + .global-navi {
  margin-bottom: 0;
}

#top + .global-navi ul li:first-child {
  border-left: none;
}

#top + .global-navi ul li:last-child {
  border-right: none;
}

/*-- 左or右サイド グローバルナビゲーション --*/
.global-navi-side {
  border: 1px solid;
  border-radius: 4px;
  padding: 0 10px;
  text-align: center;
}

.global-navi-side ul {
  list-style: none;
}

.global-navi-side ul li {
  
}

.global-navi-side ul li a {
  display: block;
  padding: 15px 20px 13px 20px;
}

/*-- グローバルナビゲーションの背景パーツ --*/
.global-navi-bk {
  padding-top: 7px;
}

/*-- Cパターン（旧Eパターン）グローバルナビゲーションエリア --*/
.logo-menu-area {
    width: 228px;
    padding: 0 10px 10px 10px;
    border-left: 1px solid;
    border-bottom: 1px solid;
    border-right: 1px solid;
    border-radius: 0 0 4px 4px;
}

.logo-menu-area ul {
  list-style: none;
}

.logo-menu-area ul li a {
  display: block;
  padding: 15px 20px 13px 20px;
}


@media only screen and ( max-width : 980px ) {
  .global-navi {
    width: 100%;
  }

  .global-navi ul {
    width: 100%;
    text-align: center;
  }
  
  .global-navi ul li {
    width: auto;
    padding: 0 14px;
  }

  .global-navi-side {
    border-radius: 4px;
    padding: 0 5px;
    text-align: center;
  }
}


/*============================================
  画面下部スティッキーエリア
==============================================*/
#lower-sticky-area {
  display: none;
}

.sticky-btns-area a {
  display: none;
}


/*============================================
  メイン画像の表示位置調整
==============================================*/
@media only screen and ( min-width : 1440px ) {
/*-- ウインドウサイズが大きくなると画像の上下が切れるため、
写真によってはメイン画像の表示位置を指定する。（上揃え／下揃え） --*/
  .slide-images.vTop {
    top: 0%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
  }
  .slide-images.vBtm {
    top: 100%;
    transform: translate(-50%, -100%);
    -webkit-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
  }

  .slide-images.vBtm.ptnC {
    top: 101%;
  }
}

@media only screen and ( max-width : 980px ) {
  .slide-images {
    height: 100%;
    width: auto;
  }
}

/*============================================
  汎用設定
==============================================*/
/*--- font-family ---*/
.ff-default {
  font-family: Meiryo,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','メイリオ',Verdana,Helvetica,sans-serif;
}

.ff-head {
  font-family: 'Noto Sans JP',sans-serif;
}

/*--- font-size ---*/
.fs-10px {
  font-size: 10px;
}

.fs-11px {
  font-size: 11px;
}

.fs-12px {
  font-size: 12px;
}

.fs-13px {
  font-size: 13px;
}

.fs-14px {
  font-size: 14px;
}

.fs-15px {
  font-size: 15px;
}

.fs-16px {
  font-size: 16px;
}

.fs-17px {
  font-size: 17px;
}

.fs-18px {
  font-size: 18px;
}

.fs-19px {
  font-size: 19px;
}

.fs-20px {
  font-size: 20px;
}

.fs-21px {
  font-size: 21px;
}

.fs-22px {
  font-size: 22px;
}

.fs-23px {
  font-size: 23px;
}

.fs-24px {
  font-size: 24px;
}

.fs-20em {
  font-size: 2.0em;
}

/*--- font-weight ---*/
.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-normal {
  font-weight: normal;
}

.fw-bold {
  font-weight: bold;
}

.fw-bolder {
  font-weight: bolder;
}

/*--- line-height ---*/
.lh-06em {
  line-height: 0.6em;
}

.lh-07em {
  line-height: 0.7em;
}

.lh-08em {
  line-height: 0.8em;
}

.lh-09em {
  line-height: 0.9em;
}

.lh-10em {
  line-height: 1.0em;
}

.lh-11em {
  line-height: 1.1em;
}

.lh-12em {
  line-height: 1.2em;
}

.lh-13em {
  line-height: 1.3em;
}

.lh-14em {
  line-height: 1.4em;
}

.lh-15em {
  line-height: 1.5em;
}

.lh-16em {
  line-height: 1.6em;
}

.lh-17em {
  line-height: 1.7em;
}

.lh-18em {
  line-height: 1.8em;
}

.lh-19em {
  line-height: 1.9em;
}

.lh-20em {
  line-height: 2.0em;
}

/*--- letter-spacing ---*/
.ls-0 {
  letter-spacing: 0;
}

.ls-015em {
  letter-spacing: 0.15em;
}

.ls-02em {
  letter-spacing: 0.2em;
}

/*--- margin-bottom ---*/
.mb-5px {
  margin-bottom: 5px;
}

.mb-10px {
  margin-bottom: 10px;
}

.mb-15px {
  margin-bottom: 15px;
}

.mb-20px {
  margin-bottom: 20px;
}

.mb-25px {
  margin-bottom: 25px;
}

.mb-30px {
  margin-bottom: 30px;
}

.mb-35px {
  margin-bottom: 35px;
}

.mb-40px {
  margin-bottom: 40px;
}

.mb-45px {
  margin-bottom: 45px;
}

.mb-50px {
  margin-bottom: 50px;
}

.mb-55px {
  margin-bottom: 55px;
}

.mb-60px {
  margin-bottom: 60px;
}

.mb-65px {
  margin-bottom: 65px;
}

.mb-70px {
  margin-bottom: 70px;
}

.mb-75px {
  margin-bottom: 75px;
}

.mb-80px {
  margin-bottom: 80px;
}

.mb-05em {
  margin-bottom: 0.5em;
}

.mb-06em {
  margin-bottom: 0.6em;
}

.mb-07em {
  margin-bottom: 0.7em;
}

.mb-08em {
  margin-bottom: 0.8em;
}

.mb-09em {
  margin-bottom: 0.9em;
}

.mb-10em {
  margin-bottom: 1.0em;
}

/*--- width ---*/
.w-auto {
  width: auto;
}
