@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%;
  border-radius: 2px;
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: -1;
}

/*-- h2 type-B --*/
h2.type-B {

}

h2.type-B span {
  display: block;
  position: relative;
}

h2.type-B span:before {
  content: '';
  width: 100%;
  height: 4px;
  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;
}

h4 {
  margin: 0;
  line-height: 1.4em;
  font-family: 'Noto Sans JP',sans-serif;
  font-weight: 500;
}

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: 400;
  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: 50px;
}

.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-center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  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 {
  display: flex;
  flex-direction: column;
  width: 48%;
  padding-bottom: 20px;
}


/*-- フレックスボックスアイテム 3列用 --*/
.flex-box-item-3col {
  display: flex;
  flex-direction: column;
  width: 280px;
  padding-bottom: 20px;
  margin: 0 10px;
}

/*-- コンテナ・ブロック 画面幅 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%;
  }
}

/*============================================
  記事用ボックス
==============================================*/
.article-box {
  margin-left: 1em;
 }

.article-box-08em {
  margin-left: 0.8em;
}

.article-box_B {
  margin-left: 1.6em;
}


/*============================================
  入力フォーム系パーツ
==============================================*/
/*-- セルの縦方向位置 --*/
.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 {
  padding-top: 5px;
}

.f-attension-B {

}

/*-- 入力エラーテキスト --*/
.input-error {
  font-weight: bold;
  margin: 4px 0 0 9px;
}

/*-- 送信ボタン上方のエラー告知エリア --*/
.error-announce {
  width: 60%;
  padding: 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;
}

.block-center {
  margin: 0 auto;
}

.float-left {
  float: left;
}

.float-right {
  float: 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;
}

/*-- ボタン型リンク（Flexbox内で使用する場合向け） --*/
.link-button-on-flexbox {
  display: block;
  width: 138px;
  border: 1px solid;
  border-radius: 18px;
  text-align: center;
  padding: 8px 0 6px 0;
  margin: 0 auto;
  margin-top: 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;
}


/*-------------- 汎用テーブル（横スクロール版） -----------------*/
.table-wrap {
  overflow-x: unset;
}

table.normal-table {
  width: 100%; /*コンテンツに応じて修正してください*/
  border-collapse: collapse;
  border: 2px solid;
}

table.normal-table th,
table.normal-table td {
  border: 1px solid;
  padding: 4px 8px;
  line-height: 1.6em;
}

.cell-wm-vertical {
  min-height: 12.6em;
}

th.vertical-rl span {
  writing-mode: vertical-rl;
}

.column-top{
  width: 40px;
  text-align: center;
  font-weight: bold;
}

.th-color{

}

.column-left{
  width: 30px;
  text-align: center;
  font-weight: bold;
}

.column-right{
  width: 500px;
}

.td-item{
  text-align: center;
}

.td-price{
  text-align: center;
}

.table-under-price{
  font-size: 17px;
  font-weight: 500;
}

.td-img{
  width: 100px;
  margin:auto;
}

.td-mbno{
  font-size: 14px;
  line-height: 1.6em;
  margin: 0;
}

.th-widthA,
.td-widthA{
  width: 50px;
}

.th-widthB,
.td-widthB{
  width: 150px;
}

.th-widthC,
.td-widthC{
  width: 120px;
}

.mb-none{
  margin-bottom: 0;
}


/*-- 汎用箇条書きリスト 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;
  padding-left: 6px;
}

.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;
}

/*-- 診療内容から料金表へのリンク --*/
.link_arrow a{
  padding-bottom: 1px;
  line-height: 2em;
}

.link_arrow a img{
  width: 20px;
  vertical-align: -1px;
}

/*-- その他 画面幅 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 18px;
}

.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;
  }
}

/*============================================
  Instagram
==============================================*/

.ig-profile-img {
  float: left;
  margin: 0 30px 10px 0;
}

.ig-profile {
  padding-top: 30px;
  margin-bottom: 30px;
  line-height: 170%;
  font-size: 18px;
}

a.ig-name {
  font-family: 'Noto Sans JP';
  padding-top: 30px;
  padding-bottom: 15px;
}

a.ig-username {
  font-family: 'メイリオ';
}

.over-lay {
  content: '';
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: 10;
}

.ig-flex-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ig-flex-box:last-of-type::after {
  width: calc(100% / 3 - 10px);
  display: block;
  content: '';
}

/*============================================
  汎用設定
==============================================*/
/*--- 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;
}

/*--- 見出し ---*/
h1.sec {
  display: inline-block;
  font-size: 20px !important;
  font-family: 'Noto Sans JP',sans-serif;
  font-weight: 500 !important;
  letter-spacing: 0.4em !important;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding: 0px 20px 0 30px !important;
  margin-right: 6px;
  border: none !important;
  border-radius: none !important;
}

h1.sec:before,
h1.sec:after {
  content: '';
  position: absolute;
  top: 52%;
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #4187ff;
}

h1.sec:before {
  left: 0;
}

h1.sec:after {
  right: 0;
}
 
h3.sentence_h3::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: -8px;
  right: -10px;
  z-index: -1;
}

h3.sentence_h3 {
  letter-spacing: 0.8px;
}

h4.sentence_h4 {
  letter-spacing: 0.8px;
}

h4.contrast_h4 {
  border-radius: 24px;
  padding: 3px 10px 1px 10px;
  margin-bottom: 15px !important;
}

h5.sentence_h5::before {
  position: absolute;
  top: -1px;
  bottom: 0px;
  left: -8px;
  right: -10px;
  width: 10px !important;
  height: 10px !important;
}

h5.contrast_h5 {
	padding: 1px 9px 2px 9px;
	position: relative;
  text-align:center;
  margin-bottom: 8px !important;
}

h5.contrast_h5::before, h5.contrast_h5::after {
	content: '';
	width: 4px;
	height: 70%;
	position: absolute;
}

h5.contrast_h5::before {
	top: 1px;
	left: 0;
}

h5.contrast_h5::after {
	top: 1px;
	right: 0;
}

h6.sentence_h6::before {
  position: absolute;
  top: -1px;
  bottom: 0px;
  left: -4px;
  right: -10px;
  width: 6px !important;
  height: 9px !important;
}

h6.contrast_h6 {
  padding: 1px 12px 0px 12px;
  margin-left: -12px;
	position: relative;
  text-align:center;
}

h6.contrast_h6::before, h6.contrast_h6::after {
	content: '';
	width: 10px;
	height: 16px;
	position: absolute;
}

h6.contrast_h6::before {
	top: 3px;
	left: 0;
}

h6.contrast_h6::after {
	top: 3px;
	right: 0;
}


/*-- 見出し 旧デザインとの互換用 START --*/
.hl-typeD,
.hl-typeD-right,
.hl-typeD-right-recruit {
  position: relative;
  padding-left: 0.6em;
  font-size: 18px;
}

.hl-typeD::before {
  position: absolute;
  content: '';
  width: 3px;
  height: 100%;
  left: 0;
}

.hl-typeD-right::before {
  position: absolute;
  content: '';
  width: 3px;
  height: 100%;
  left: 320px;
}


.hl-typeD3-2 {
  position: relative;
  padding-left: 0.6em;
  font-size: 18px;
  margin-top: 25px;
}

.hl-typeD3-2::before {
  position: absolute;
  content: '';
  width: 3px;
  height: 18px;
  left: 0;
  margin-top: 4px;
  border-radius: 30px;
}

.hl-typeD-n {
  font-size: 16px;
}

.hl-typeD2 {
  position: relative;
  padding-left: 0.6em;
  font-size: 16px;
}

.hl-typeD2:before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 4px;
  top: 40%;
  left: 0;
}
/*-- 見出し 旧デザインとの互換用 END --*/


.contrast {
  display: inline-block;
  padding: 1px 9px 0px 8px;
  margin-left: -13px;
	position: relative;
  text-align:center;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  margin-left: -7px;
  font-size: 14px;
}

.contrast::before, .contrast::after {
	content: '';
	width: 4px;
	height: 16px;
	position: absolute;
}

.contrast::before {
	top: 0;
	left: 0;
}

.contrast::after {
	top: 0;
	right: 0;
}

ul.bullets-list {
  padding: 0;
  margin-bottom: 15px !important;
}

ul.bullets-list li {
  position: relative;
  list-style-type: none!important;
  vertical-align: top;
  line-height: 22px;
  padding-left: 15px;
  margin-left: 2px;
  margin-bottom: 4px;
  font-size: 14px !important;
}

ul.bullets-list li:before {
  position: absolute;
  display:inline-block;
  vertical-align: middle;
  content:'';
  width: 8px;
  height: 2px;
  top: 9px;
  left: 0;
  border-radius: 2px;
}

ul.bullets-list2 {
  padding: 0;
}

ul.bullets-list2 li {
  position: relative;
  list-style-type: none!important;
  vertical-align: top;
  line-height: 1.6em;
  padding-left: 1.0em;
  margin-bottom: 0.3em;
}

ul.bullets-list2 li:before {
  position: absolute;
  display:inline-block;
  vertical-align: middle;
  content:'';
  width: 8px;
  height: 2px;
  top: 0.6em;
  left: 0;
  border-radius: 2px;
}

/*-- 箇条書きリスト（テーブル内用）--*/
ul.bullets-list3 {
  margin-left: 1.5em;
}

ul.bullets-list3 > li {
  line-height: 1.6em;
}

ul.bullets-list3 > li::marker {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 4px;
  top: 40%;
  left: 0;
}


ol li {
  padding: 8px 3px 6px 24px !important;
  font-size: 14px !important;
}

.title-in-cell {
  font-size: 16px;
}

.read_text {
  font-size: 15px !important;
  margin-top: 10px !important;
  margin-bottom: 15px !important;
  line-height: 1.4;
}

.bold_text {
  font-weight: bold;
  font-size: 15px !important;
  margin-top: 10px !important;
  margin-bottom: 15px !important;
  line-height: 1.4;
}

.contrast_text {

  font-size: 14px !important;
  margin-top: 10px !important;
  display: revert;
  line-height: 1.7;
}

.contrast_text_div {
  margin-bottom: 15px;
}

/* service 見出し */
.display_inline-block {
  display: inline-block;
}


.display_block {
  display: block;
}

.display_flex {
  display: flex;
}

.position_relative {
  position: relative;
}

/* border-bottom */
.bb-1px-solid {
  border-bottom: 1px solid;
}

/* padding-bottom */
.pb-2px {
  padding-bottom: 1px;
}

/* padding-top */
.pt-1px {
  padding-top: 1px;
}

/* padding-left */
.pl-5px {
  padding-left: 5px;
}

.pl-7px {
  padding-left: 7px;
}

.pl-8px {
  padding-left: 8px;
}

.pl-9px {
  padding-left: 9px;
}

/* margin-top */
.mt-8px {
  margin-top: 8px;
}

.mt-10px {
  margin-top: 10px;
}

/* margin-left */
.ml--7px {
  margin-left: -7px;
}

.ml--8px {
  margin-left: -8px;
}

.ml--9px {
  margin-left: -9px;
}

.ml--10px {
  margin-left: -10px;
}

.ml--11px {
  margin-left: -11px;
}

.ml--12px {
  margin-left: -12px;
}

/* margin-bottom */
.mb-8px {
  margin-bottom: 8px;
}


/*============================================
  料金表ページのパーツ
==============================================*/
.products-comment-cb {
  display: none;
}

.products-comment-toggle {
  display: inline-block;
  position: relative;
  font-size: 12px;
  letter-spacing: 0.2em;
  border-radius: 4px;
  padding: 2px 15px 0px 6px;
  line-height: 1.2em;
  cursor: pointer;
}

.products-comment-toggle::after {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  top: 5px;
  right: 6px;
  transform: rotate(45deg);
}

.products-comment {
  /* 閉じている状態 */
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  /* 閉じるアニメーション */
  transition:
    line-height .3s ease-out,
    opacity .1s linear,
    visibility .1s linear;
  margin-bottom: 0;
}

.products-comment-cb:checked+.products-comment-toggle::after {
  transform: rotate(135deg);
  top: 4px;
}

.products-comment-cb:checked+.products-comment-toggle+.products-comment {
  /* 開いている状態 */
  line-height: 1.5;
  opacity: 1;
  visibility: visible;
  /* 開くアニメーション */
  transition:
    line-height .3s ease-out,
    opacity .1s linear .1s,
    visibility .1s linear .1s;
}

.accordion-contents .accordion-section .box-inner-lv1 {
  width: calc(100% - 32px);
  margin: 0 auto 50px auto;
}

.label-border-radius {
  border-radius: 16px 16px;
}

.content-border {
  width: 100%;
}

.content-author {
  width: 100%;
}

.nav-detail-icon {
  display: flex;
  padding: 0 0;
  margin: 0 0;
  width: fit-content;
  text-decoration: none;
}

.nav-detail-triangle {
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid;
  margin: 0 0;
  padding: 0 0;
  transform: rotate(90deg);
  position: relative;
  left: -1px;
}

.nav-detail {
  display: flex;
  align-items: center;
  height: 27px;
  margin: 0 0;
  padding: 0 15px;
  text-wrap: nowrap;
}

.pb-A {
  padding-bottom: 10px;
  margin: 0 0;
}

.pb-B {
  padding-bottom: 20px;
  margin: 0 0;
}

.pb-C {
  padding-bottom: 30px;
  margin: 0 0;
}

.pb-D {
  padding-bottom: 40px;
  margin: 0 0;
}

.pb-E {
  padding-bottom: 50px;
  margin: 0 0;
}

.link-arrow-extra {
  border-left: solid 2px;
  padding-left: 8px;
}

.pl-15px {
  padding-left: 15px;
}

/*電子マネー欄のテキスト調整*/
.payment-table > tbody > tr > td > p {
  display: inline;
}