@charset "UTF-8";
/* --------------------------------------------------------------------------------
  共通要素要CSS
-------------------------------------------------------------------------------- */
/* ver6.0のテンプレに関する部分
----------------------------------------*/
.accessibilityNav {
  zoom: 1;
}
.accessibilityNav:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

#accessibilityNav {
  display: none;
}

/* 下層メインビジュアル
----------------------------------------*/
.keyVisual {
  position: relative;
  z-index: 1;
}
.keyVisual:after {
  content: "";
  display: block;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .keyVisual:after {
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .keyVisual:after {
    height: calc(40 / 375 * 100vw);
  }
}
.keyVisual__ttl {
  align-items: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  position: absolute;
  text-align: center;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) {
  .keyVisual__ttl {
    gap: 16px;
    bottom: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .keyVisual__ttl {
    bottom: calc(64 / 375 * 100vw);
    gap: calc(16 / 375 * 100vw);
  }
}
.keyVisual__ttl .en {
  font-family: "Cinzel", serif;
  line-height: 1.5;
  text-align: center;
  display: block;
  text-box: trim-both cap alphabetic;
}
@media only screen and (min-width: 768px) {
  .keyVisual__ttl .en {
    letter-spacing: 0.4em;
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .keyVisual__ttl .en {
    font-size: calc(34 / 375 * 100vw);
    letter-spacing: 0.2em;
  }
}
.keyVisual__ttl .jp {
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  text-box: trim-both text;
}
@media only screen and (min-width: 768px) {
  .keyVisual__ttl .jp {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .keyVisual__ttl .jp {
    font-size: calc(12 / 375 * 100vw);
  }
}
.keyVisual__image {
  position: relative;
  z-index: 1;
}
.keyVisual__image:before {
  background: linear-gradient(180deg, rgba(33, 42, 35, 0) 0%, #212A23 100%);
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .keyVisual__image:before {
    height: calc(247 / 1440 * 100vw);
  }
}
@media only screen and (max-width: 767px) {
  .keyVisual__image:before {
    height: calc(173 / 375 * 100vw);
  }
}
.keyVisual__image .photo__pic, .keyVisual__image .photo__image {
  width: 100%;
}
.keyVisual__image .photo .cap {
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .keyVisual__image .photo .cap .sp {
    display: inline-block;
  }
}

/* コンテンツ幅定義スタイル
---------------------------------------- */
.wrap {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  max-width: 1000px;
}
@media only screen and (max-width: 767px) {
  .wrap {
    width: 100%;
    padding: 0 calc(16 / 375 * 100vw);
    box-sizing: border-box;
  }
}

/* caption付きphotoに必要なスタイル
---------------------------------------- */
.photo {
  position: relative;
}
.photo__pic {
  display: block;
}
.photo--full {
  width: 100%;
}
.photo--full .photo__pic,
.photo--full .photo__image {
  max-width: initial;
  width: 100%;
}

.parallaxPhoto {
  overflow: hidden;
  position: relative;
}

/* キャプション
---------------------------------------- */
.cap {
  color: #999999;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-box: trim-both text;
  font-family: "Noto Sans JP", sans-serif;
}
.cap a {
  color: #fff;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .cap {
    line-height: 1.45;
    font-size: 10px;
  }
}
.photo .cap {
  position: absolute;
}
.photo .cap--halfInRight {
  right: calc(50% + 8px);
  bottom: 5px;
}
.photo .cap--halfOutRight {
  right: 50%;
  top: 100%;
  padding-top: 7px;
}
.photo .cap--inRight {
  right: 8px;
  bottom: 5px;
  text-align: right;
}
.photo .cap--inRight[data-color=label] {
  bottom: 0;
  right: 0;
}
.photo .cap--outRight {
  right: 0px;
  top: 100%;
  text-align: right;
  padding-top: 7px;
}
@media only screen and (max-width: 767px) {
  .photo .cap--outRight {
    right: 8px;
  }
  .wrap .photo .cap--outRight {
    right: 0;
  }
}
.photo .cap--inLeft {
  left: 8px;
  bottom: 5px;
}
.photo .cap--inLeft[data-color=label] {
  bottom: 0;
  left: 0;
}
.photo .cap--outLeft {
  left: 0px;
  top: 100%;
  padding-top: 7px;
}
@media only screen and (max-width: 767px) {
  .photo .cap--outLeft {
    left: 8px;
  }
}

/* 見出しパーツ
---------------------------------------- */
.headingLv1 {
  color: #000000; /* 文字色変更不可 */
  font-family: "Cinzel", serif;
  font-size: 2.625rem; /* サイズ変更不可 */
  line-height: 0.7;
}
@media only screen and (max-width: 767px) {
  .headingLv1 {
    font-size: 2rem;
  }
}
.headingLv1 .jp {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 0.4em; /* サイズ変更不可 */
  line-height: 1;
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .headingLv1 .jp {
    padding-top: calc(50 / 750 * 100vw);
  }
}
.headingLv1 + .headingLv2 {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .headingLv1 + .headingLv2 {
    margin-top: calc(60 / 750 * 100vw);
  }
}
.headingLv1 + .txt {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .headingLv1 + .txt {
    margin-top: calc(50 / 750 * 100vw);
  }
}

.headingLv2 {
  font-size: 20px;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .headingLv2 {
    line-height: 2;
  }
}
.headingLv2 + .txt {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .headingLv2 + .txt {
    margin-top: 6.6666666667vw;
  }
}

.headingLv3 {
  color: #000000;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-box: trim-both text;
}
@media only screen and (min-width: 768px) {
  .headingLv3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .headingLv3 {
    font-size: calc(22 / 375 * 100vw);
  }
}
@media only screen and (min-width: 768px) {
  .headingLv3 sup {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .headingLv3 sup {
    font-size: calc(12 / 375 * 100vw);
  }
}
@media only screen and (min-width: 768px) {
  .headingLv3 + .lead {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .headingLv3 + .lead {
    margin-top: calc(60 / 375 * 100vw);
  }
}
@media only screen and (min-width: 768px) {
  .headingLv3 + .txt {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .headingLv3 + .txt {
    margin-top: calc(40 / 375 * 100vw);
  }
}

.headingLv4 {
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #222222;
  text-box: trim-both text;
}
@media only screen and (min-width: 768px) {
  .headingLv4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .headingLv4 {
    font-size: calc(18 / 375 * 100vw);
  }
}

.headingLv5 {
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-box: trim-both text;
}
@media only screen and (min-width: 768px) {
  .headingLv5 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .headingLv5 {
    font-size: calc(22 / 375 * 100vw);
  }
}
.headingLv5:has(.icon) {
  display: flex;
  gap: 10px;
}
@media only screen and (min-width: 768px) {
  .headingLv5:has(.icon) {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .headingLv5:has(.icon) {
    align-items: center;
  }
}
.headingLv5:has(.icon) .icon {
  display: block;
  width: 45px;
  height: auto;
}
.headingLv5:has(.icon) .t {
  flex: 1;
}
@media only screen and (min-width: 768px) {
  .headingLv5 + .txt {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .headingLv5 + .txt {
    margin-top: calc(32 / 375 * 100vw);
  }
}
.headingLv5--green {
  color: #367B28;
}
.headingLv5--red {
  color: #933229;
}
.headingLv5--purple {
  color: #A6347B;
}

.enTtl {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Cinzel", serif;
  color: #7A6A44;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media only screen and (min-width: 768px) {
  .enTtl {
    font-size: 24px;
    gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .enTtl {
    font-size: calc(24 / 375 * 100vw);
    gap: calc(16 / 375 * 100vw);
  }
}
.enTtl:before, .enTtl:after {
  content: "";
  display: block;
  width: 1px;
  background-color: rgba(122, 106, 68, 0.5);
  height: 30px;
}
.enTtl__inner {
  display: block;
  text-box: trim-both cap alphabetic;
}

.pageTtl {
  position: relative;
  z-index: 1;
  color: #222222;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .pageTtl {
    padding-top: 80px;
  }
  .pageTtl:before {
    content: "";
    display: block;
    width: 1px;
    background-color: rgba(34, 34, 34, 0.5);
    height: 40px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.pageTtl .jp {
  display: block;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-box: trim-both text;
}
@media only screen and (min-width: 768px) {
  .pageTtl .jp {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .pageTtl .jp {
    font-size: calc(12 / 375 * 100vw);
  }
}
.pageTtl .en {
  font-family: "Cinzel", serif;
  display: block;
  line-height: 1.5;
  text-box: trim-both cap alphabetic;
}
@media only screen and (min-width: 768px) {
  .pageTtl .en {
    letter-spacing: 0.4em;
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .pageTtl .en {
    letter-spacing: 0.05em;
    font-size: calc(32 / 375 * 100vw);
  }
}
@media only screen and (min-width: 768px) {
  .pageTtl .en + .jp {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .pageTtl .en + .jp {
    margin-top: calc(24 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .headingUnit {
    padding: 0 calc(24 / 375 * 100vw);
  }
}

/* テキスト
---------------------------------------- */
.txt {
  letter-spacing: 0.05em;
  color: #000000;
  text-box: trim-both text;
}
@media only screen and (min-width: 768px) {
  .txt {
    line-height: 1.6;
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .txt {
    line-height: 1.8;
    font-size: calc(14 / 375 * 100vw);
  }
}
.txt--intro {
  line-height: 1.8;
}
@media only screen and (min-width: 768px) {
  .txt--intro {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .txt--intro {
    font-size: calc(16 / 375 * 100vw);
  }
}
.txt--small {
  line-height: 1.8;
  color: #222222;
}
@media only screen and (min-width: 768px) {
  .txt--small {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .txt--small {
    font-size: calc(13 / 375 * 100vw);
  }
}

.lead {
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 2.6;
  text-box: trim-both text;
}
@media only screen and (min-width: 768px) {
  .lead {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .lead {
    font-size: calc(14 / 375 * 100vw);
  }
}
@media only screen and (min-width: 768px) {
  .lead sup {
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .lead sup {
    font-size: calc(10 / 375 * 100vw);
  }
}

/* カード
---------------------------------------- */
.primaryCard__head {
  position: relative;
  z-index: 1;
}
.primaryCard__desc {
  color: #222222;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .primaryCard__desc {
    gap: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .primaryCard__desc {
    gap: calc(24 / 375 * 100vw);
  }
}
@media only screen and (min-width: 768px) {
  .primaryCard__head + .primaryCard__desc {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .primaryCard__head + .primaryCard__desc {
    margin-top: calc(24 / 375 * 100vw);
  }
}
.primaryCard__heading {
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-box: trim-both text;
}
@media only screen and (min-width: 768px) {
  .primaryCard__heading {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .primaryCard__heading {
    font-size: calc(14 / 375 * 100vw);
  }
}
@media only screen and (min-width: 768px) {
  .primaryCard__heading .small {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .primaryCard__heading .small {
    font-size: calc(12 / 375 * 100vw);
  }
}
.primaryCard__txt {
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-box: trim-both text;
}
@media only screen and (min-width: 768px) {
  .primaryCard__txt {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .primaryCard__txt {
    font-size: calc(12 / 375 * 100vw);
  }
}

.spotCard__head {
  position: relative;
  z-index: 1;
}
.spotCard__desc {
  color: #222222;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .spotCard__desc {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .spotCard__desc {
    gap: calc(24 / 375 * 100vw);
  }
}
@media only screen and (min-width: 768px) {
  .spotCard__head + .spotCard__desc {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .spotCard__head + .spotCard__desc {
    margin-top: calc(24 / 375 * 100vw);
  }
}
.spotCard__heading {
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-box: trim-both text;
}
@media only screen and (min-width: 768px) {
  .spotCard__heading {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .spotCard__heading {
    font-size: calc(15 / 375 * 100vw);
  }
}
.spotCard__heading .cap {
  display: block;
}
.spotCard__txt {
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-box: trim-both text;
}
@media only screen and (min-width: 768px) {
  .spotCard__txt {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .spotCard__txt {
    font-size: calc(12 / 375 * 100vw);
  }
}

/* ラベル
---------------------------------------- */
.categoryLabel {
  background: linear-gradient(90deg, #a789be 0%, #b6b5ba 100%);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  position: relative;
  z-index: 1;
}
.categoryLabel::before, .categoryLabel::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #009DB2;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
  z-index: 2;
}
.categoryLabel::before {
  left: 0;
  top: 0;
}
.categoryLabel::after {
  bottom: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  right: 0;
}
.categoryLabel__inner {
  background-color: rgba(64, 87, 138, 0.5);
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding: 10px 12px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.categoryLabel__inner:not(:has(.large)) {
  text-box: trim-both text;
}
@media only screen and (min-width: 768px) {
  .categoryLabel__inner {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .categoryLabel__inner {
    font-size: calc(13 / 375 * 100vw);
  }
}
.categoryLabel__inner .large {
  display: inline-block;
  text-box: trim-both text;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .categoryLabel__inner .large {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .categoryLabel__inner .large {
    font-size: calc(30 / 375 * 100vw);
  }
}
.categoryLabel--simple:before, .categoryLabel--simple:after {
  content: none;
}

/* 汎用リスト
---------------------------------------- */
.usableList__inner {
  display: flex;
  flex-wrap: wrap;
}
.usableList__inner + .cap {
  margin-top: 10px;
  text-align: right;
}

/* 白ボックス
---------------------------------------- */
.relatedBox {
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .relatedBox {
    margin-left: -64px;
    margin-right: -64px;
    padding: 64px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1088px) {
  .relatedBox {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .relatedBox {
    padding: calc(80 / 375 * 100vw) calc(24 / 375 * 100vw);
  }
}

/* 共通ボタン
---------------------------------------- */
.generalBtn {
  background-color: #393939;
  border: 1px solid #393939;
  color: #fff;
  display: block;
  line-height: 1;
  padding: 20px 0;
  position: relative;
  text-align: center;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) {
  .generalBtn:hover {
    background-color: #ffffff;
    color: #393939;
  }
}
@media only screen and (max-width: 767px) {
  .generalBtn {
    font-size: 3.7333333333vw;
    padding: 4vw 0;
  }
}

/* フッター コンタクトエリアのスタイリングはここで上書き
----------------------------------------*/
.contactArea {
  background: linear-gradient(297deg, #434F63 -0.73%, #565656 100%);
  color: #ffffff;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .contactArea {
    padding: 96px 0;
  }
}
@media only screen and (max-width: 767px) {
  .contactArea {
    padding: calc(64 / 375 * 100vw) 0;
  }
}
.contactArea .msn-h2__inner {
  font-weight: normal;
  font-family: "Cinzel", serif;
}
.contactArea .msn-h2__inner .jp {
  font-family: "Shippori Mincho", serif;
}

/* 本物件の詳細エリア（下層誘導リンク）のスタイリングはここで上書き
---------------------------------------- */
.contentNav {
  background-color: #f8f8f8;
  padding: 180px 0 130px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .contentNav {
    padding: calc(120 / 750 * 100vw) calc(40 / 750 * 100vw) calc(100 / 750 * 100vw);
  }
}
.contentNav .msn-h2__inner {
  border-bottom: 1px solid #C5CDC3;
  letter-spacing: 0.05em;
}
.contentNav .msn-h2__inner .jp {
  font-family: "Shippori Mincho", serif;
}
@media only screen and (min-width: 768px) {
  .contentNav .msn-h2__inner {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .contentNav .msn-h2__inner {
    padding-bottom: calc(32 / 375 * 100vw);
  }
}
.contentNav .msn-h2__title {
  font-weight: normal;
  display: block;
  font-family: "Cinzel", serif;
  line-height: 1.5;
  text-box: trim-both cap alphabetic;
}
.contentNav .msn-h2__cap {
  display: block;
}

/*  
contentNavに表示されるコンテンツメニューは下記スタイルで背景画像を変更できます。
画像は必ず変更が必要、文字色やサイズは変更不可です（タイトルが長く崩れるなどどうしようもない場合のみfont-sizeの調整等可能）。
----------------------------------------*/
.msn-contentnav__background:after {
  bottom: 5px;
  color: #ffffff;
  font-size: 12px;
  left: 5px;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.7), 0 0 3px rgba(0, 0, 0, 0.7), 0 0 3px rgba(0, 0, 0, 0.7), 0 0 3px rgba(0, 0, 0, 0.7), 0 0 3px rgba(0, 0, 0, 0.7);
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .msn-contentnav__background:after {
    font-size: 10px;
  }
}

.content-menu-design {
  background-image: url("../img/img-content-nav-item-01.jpg");
}
.content-menu-design:after {
  content: "image photo";
}

.content-menu-location {
  background-image: url("../img/img-content-nav-item-02.jpg");
}
.content-menu-location:after {
  content: "秋葉原ダイビル\a（徒歩17分／約1,350m）";
  white-space: pre;
}

.content-menu-access {
  background-image: url("../img/img-content-nav-item-03.jpg");
}
.content-menu-access:after {
  content: "image photo";
}

.content-menu-plan {
  background-image: url("../img/img-content-nav-item-04.jpg");
}
.content-menu-plan:after {
  content: "image photo";
}

.content-menu-equipment {
  background-image: url("../img/img-content-nav-item-05.jpg");
}
.content-menu-equipment:after {
  content: "image photo";
}

.content-menu-map {
  background-image: url("../img/img-content-nav-item-06.jpg");
}
.content-menu-map:after {
  content: "航空写真";
}

.content-menu-outline {
  background-image: url("../img/img-content-nav-item-07.jpg");
}
.content-menu-outline:after {
  content: "image photo";
}

.content-menu-orderSystem {
  background-image: url("../img/img-content-nav-item-08.jpg");
}
.content-menu-orderSystem:after {
  content: "image photo";
}

.content-menu-sustainable {
  background-image: url("../img/img-content-nav-item-09.jpg");
}
.content-menu-sustainable:after {
  content: "image photo";
}

/* フッター ナビゲーション（暫定残し。不要なタイミングで削除）
---------------------------------------- */
.btmSnav {
  border-bottom: 1px solid #d4d4d4;
  padding: 23px 0 22px;
}
@media only screen and (max-width: 767px) {
  .btmSnav {
    display: none;
  }
}
.btmSnav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btmSnav__item {
  border-right: 1px solid #666;
  line-height: 1;
  padding: 0 14px;
}
.btmSnav__item:last-child {
  border-right: none;
}
.btmSnav__link {
  color: #333;
  font-size: 12px;
  line-height: 1;
}
.btmSnav__link.is-off {
  opacity: 0.5;
  pointer-events: none;
}

/* フッター キャプション
背景色の変更は不可。文字色の変更は可能です。
----------------------------------------*/
.btmCap {
  background-color: #f2f2f2;
  padding: 40px 0;
}
/* 予告広告
---------------------------------------- */
.noticeAd {
  background-color: #f2f2f2;
  padding-top: 20px;
  padding-bottom: 40px;
}
.noticeAd .noticeTtl {
  border: 1px solid #c1c1c1;
  color: #999999;
  display: inline-block;
  letter-spacing: normal;
  line-height: 1;
  margin-bottom: 12px;
  padding: 5px;
}

/* お詫びと訂正
---------------------------------------- */
.apologizeCont {
  background-color: #f2f2f2; /* 背景色変更不可 */
  color: #000000; /* 文字色変更不可 */
  font-size: 12px;
  padding: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .apologizeCont {
    text-align: left;
    padding: 5.3333333333vw;
  }
}
.apologizeCont__ttl {
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .apologizeCont__ttl {
    font-size: 4.2666666667vw;
  }
}
.apologizeCont__ttl + .apologizeCont__txt {
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .apologizeCont__ttl + .apologizeCont__txt {
    margin-top: 4vw;
  }
}
.apologizeCont__detail {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .apologizeCont__detail {
    font-size: 3.4666666667vw;
    margin-top: 2.6666666667vw;
  }
}
.apologizeCont + .noticeAd {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .apologizeCont + .noticeAd {
    margin-top: 3.3333333333vw;
  }
}

.zoomFigure {
  margin: 0 auto;
  position: relative;
}
.zoomFigure__controller {
  display: flex;
  flex-direction: column;
  gap: 1px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
}
.zoomFigure__btn {
  cursor: pointer;
  display: block;
  height: 40px;
  width: 40px;
}
.zoomFigure__btn .line {
  height: 2px;
  width: calc(18 / 40 * 100%);
}
.zoomFigure__cap {
  text-align: right;
}
@media only screen and (min-width: 768px) {
  .zoomFigure__cap {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .zoomFigure__cap {
    margin-top: calc(10 / 375 * 100vw);
  }
}
.zoomFigure__inner .photo__image {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .zoomFigure[data-mode=pc] {
    overflow: hidden;
  }
  .zoomFigure[data-mode=pc] .zoomFigure__inner {
    height: 100%;
    overflow: scroll;
  }
  .zoomFigure[data-mode=pc] .zoomFigure__inner::-webkit-scrollbar {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .zoomFigure[data-mode=pc] .zoomFigure__controller {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .zoomFigure[data-mode=sp] {
    overflow: hidden;
  }
  .zoomFigure[data-mode=sp] .zoomFigure__inner {
    height: 100%;
    overflow: scroll;
  }
  .zoomFigure[data-mode=sp] .zoomFigure__inner::-webkit-scrollbar {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .zoomFigure[data-mode=sp] .zoomFigure__controller {
    display: none;
  }
}
.zoomFigure[data-mode=""] {
  overflow: hidden;
}
.zoomFigure[data-mode=""] .zoomFigure__inner {
  height: 100%;
  overflow: scroll;
}
.zoomFigure[data-mode=""] .zoomFigure__inner::-webkit-scrollbar {
  display: none;
}
.zoomFigure--border .zoomFigure__inner {
  border: 1px solid #999999;
}

.swipeFigure {
  position: relative;
}
.swipeFigure__inner {
  height: 100%;
  overflow: scroll;
}
.swipeFigure__inner::-webkit-scrollbar {
  display: none;
}
.swipeFigure__inner[data-mode=""] .photo,
.swipeFigure__inner[data-mode=""] .photo__image {
  height: 100%;
  max-width: unset;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .swipeFigure__inner[data-mode=pc] .photo,
  .swipeFigure__inner[data-mode=pc] .photo__image {
    height: 100%;
    max-width: unset;
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .swipeFigure__inner[data-mode=pc] + .figurePlot {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .swipeFigure__inner[data-mode=sp] + .figurePlot {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .swipeFigure__inner[data-mode=sp] .photo,
  .swipeFigure__inner[data-mode=sp] .photo__image {
    height: 100%;
    max-width: unset;
    width: auto;
  }
}
.swipeFigure__capIn, .swipeFigure__capOut {
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  position: absolute;
  z-index: 1;
}
.swipeFigure__capIn {
  bottom: 5px;
  right: 5px;
}
.swipeFigure__capOut {
  padding: 2px 5px 0 0;
  right: 0;
  top: 100%;
}
.swipeFigure .figurePlot {
  background-color: rgba(34, 34, 34, 0.5);
  border-radius: 50%;
}
.swipeFigure .figurePlot .svgIcon {
  display: block;
}
@media only screen and (max-width: 767px) {
  .swipeFigure .figurePlot .svgIcon {
    height: auto;
    width: 20px;
  }
}

.bgLayer {
  position: relative;
  z-index: 1;
}
.bgLayer__headBg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
}
.bgLayer__headBg .photo {
  width: 100%;
  height: 100%;
}
.bgLayer__headBg .photo__pic, .bgLayer__headBg .photo__image {
  width: 100%;
  height: 100%;
}
.bgLayer__headBg .photo__image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
@media only screen and (max-width: 767px) {
  .bgLayer__headBg .photo .cap--inRight {
    bottom: auto;
    top: 5px;
  }
}
.bgLayer--pattern01 {
  background: no-repeat top center/cover;
}
@media only screen and (min-width: 768px) {
  .bgLayer--pattern01 {
    background-image: url("../img/pc/bg-01@1.5x.png");
  }
}
@media only screen and (max-width: 767px) {
  .bgLayer--pattern01 {
    background-image: url("../img/sp/bg-01.png");
  }
}
.bgLayer--pattern02 {
  background: no-repeat top center/cover;
}
@media only screen and (min-width: 768px) {
  .bgLayer--pattern02 {
    background-image: url("../img/pc/bg-02@1.5x.png");
  }
}
@media only screen and (max-width: 767px) {
  .bgLayer--pattern02 {
    background-image: url("../img/sp/bg-02.png");
  }
}
.bgLayer--default {
  background-color: #f2f2f2;
}
.bgLayer--blue {
  background-color: #EAF6FA;
}
.bgLayer--green {
  background-color: #DFE1D8;
}
.bgLayer--red {
  background-color: #FFEDE6;
}
.bgLayer--purple {
  background-color: #EEEAF5;
}
.bgLayer--gradient01 {
  background: linear-gradient(157deg, #D4E5EB 0%, #E9E7E5 20%, #E9E7E5 80%, #EEE0E6 100%);
}

/* flexbBox
---------------------------------------- */
/*.wrapで囲われている条件でのフレックスボックスのスタイルを定義できる。 */
.layoutCol {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* ・2カラム */
}
.layoutCol--two > .layoutCol__item {
  width: 464px;
}
.layoutCol--two > .layoutCol__item:nth-child(n+3) {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .layoutCol--two > .layoutCol__item {
    width: 100%;
  }
  .layoutCol--two > .layoutCol__item:not(:first-child) {
    margin-top: 40px;
  }
}
.layoutCol {
  /* ・2カラムで右側のボックスが大きい場合 */
}
@media only screen and (min-width: 768px) {
  .layoutCol--twoRightLarge > .layoutCol__item:nth-child(odd) {
    width: 300px;
  }
  .layoutCol--twoRightLarge > .layoutCol__item:nth-child(even) {
    width: 630px;
  }
}
@media only screen and (max-width: 767px) {
  .layoutCol--twoRightLarge > .layoutCol__item {
    width: 100%;
  }
  .layoutCol--twoRightLarge > .layoutCol__item:not(:first-child) {
    margin-top: 40px;
  }
}
.layoutCol {
  /* ・2カラムで左側のボックスが大きい場合 */
}
@media only screen and (min-width: 768px) {
  .layoutCol--twoLeftLarge > .layoutCol__item:nth-child(odd) {
    width: 630px;
  }
  .layoutCol--twoLeftLarge > .layoutCol__item:nth-child(even) {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .layoutCol--twoLeftLarge > .layoutCol__item {
    width: 100%;
  }
  .layoutCol--twoLeftLarge > .layoutCol__item:not(:first-child) {
    margin-top: 40px;
  }
}
.layoutCol {
  /* ・3カラム(SP時1カラム) */
}
@media only screen and (max-width: 767px) {
  .layoutCol--oneThird {
    flex-direction: column;
  }
}
.layoutCol--oneThird > .layoutCol__item {
  width: 300px;
}
@media only screen and (min-width: 768px) {
  .layoutCol--oneThird > .layoutCol__item:nth-child(n+4) {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .layoutCol--oneThird > .layoutCol__item {
    width: 100%;
  }
  .layoutCol--oneThird > .layoutCol__item:not(:first-child) {
    margin-top: 40px;
  }
}
.layoutCol {
  /* ・3カラム(SP時2カラム) */
}
.layoutCol--twoThird > .layoutCol__item {
  width: 300px;
}
@media only screen and (min-width: 768px) {
  .layoutCol--twoThird > .layoutCol__item:nth-child(n+4) {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .layoutCol--twoThird > .layoutCol__item {
    width: 48.5%;
  }
  .layoutCol--twoThird > .layoutCol__item:nth-child(n+3) {
    margin-top: 40px;
  }
}
.layoutCol {
  /* ・4カラム */
}
.layoutCol--four > .layoutCol__item {
  width: 224px;
}
@media only screen and (min-width: 768px) {
  .layoutCol--four > .layoutCol__item:nth-child(n+5) {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .layoutCol--four > .layoutCol__item {
    width: 48.5%;
  }
  .layoutCol--four > .layoutCol__item:nth-child(n+3) {
    margin-top: 40px;
  }
}
.layoutCol {
  /* ・5カラム */
}
.layoutCol--five > .layoutCol__item {
  width: 175px;
}
@media only screen and (min-width: 768px) {
  .layoutCol--five > .layoutCol__item:nth-child(n+6) {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .layoutCol--five > .layoutCol__item {
    width: 48.5%;
  }
  .layoutCol--five > .layoutCol__item:nth-child(n+3) {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .layoutCol--rev {
    flex-direction: row-reverse !important;
  }
}
@media only screen and (min-width: 768px) {
  .layoutCol--cen {
    align-items: center;
  }
}

/* CVパーツ
---------------------------------------- */
.smallCvLink {
  position: relative;
  width: 100%;
  display: block;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 20px 0 20px;
  font-size: 16px;
  transition: 0.3s;
  background-color: #999999;
  border: 1px solid #999999;
}
@media only screen and (min-width: 768px) {
  .smallCvLink:hover {
    background-color: #ffffff;
    color: #999999;
  }
}
@media only screen and (max-width: 767px) {
  .smallCvLink {
    padding: 4.8vw 0 5.3333333333vw;
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}

/* --------------------------------------------------------------------------------
utility
-------------------------------------------------------------------------------- */
/* pc / sp表示
---------------------------------------- */
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}
/* data-color
---------------------------------------- */
[data-color=shadow] {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.7), 0 0 3px rgba(0, 0, 0, 0.7), 0 0 3px rgba(0, 0, 0, 0.7), 0 0 3px rgba(0, 0, 0, 0.7), 0 0 3px rgba(0, 0, 0, 0.7);
}

[data-color=white] {
  color: #fff;
}

[data-color=black] {
  color: #000;
}

[data-color=dark] {
  color: #333;
}

[data-color=label] {
  background-color: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  padding: 3px 5px;
}

/* text-align
---------------------------------------- */
[data-align=center] {
  text-align: center;
}

@media print, screen and (min-width: 769px) {
  [data-align=pc-center] {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  [data-align=pc-center] {
    text-align: left;
  }
}
@media print, screen and (min-width: 769px) {
  [data-align=sp-center] {
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  [data-align=sp-center] {
    text-align: center;
  }
}
[data-align=right] {
  text-align: right;
}

/*  helper margin top
---------------------------------------- */
@media only screen and (max-width: 767px) {
  .spMt5 {
    margin-top: 5px;
    margin-top: calc(5 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt10 {
    margin-top: 10px;
    margin-top: calc(10 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt15 {
    margin-top: 15px;
    margin-top: calc(15 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt20 {
    margin-top: 20px;
    margin-top: calc(20 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt25 {
    margin-top: 25px;
    margin-top: calc(25 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt30 {
    margin-top: 30px;
    margin-top: calc(30 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt35 {
    margin-top: 35px;
    margin-top: calc(35 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt40 {
    margin-top: 40px;
    margin-top: calc(40 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt45 {
    margin-top: 45px;
    margin-top: calc(45 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt50 {
    margin-top: 50px;
    margin-top: calc(50 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt55 {
    margin-top: 55px;
    margin-top: calc(55 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt60 {
    margin-top: 60px;
    margin-top: calc(60 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt65 {
    margin-top: 65px;
    margin-top: calc(65 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt70 {
    margin-top: 70px;
    margin-top: calc(70 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt75 {
    margin-top: 75px;
    margin-top: calc(75 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt80 {
    margin-top: 80px;
    margin-top: calc(80 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt85 {
    margin-top: 85px;
    margin-top: calc(85 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt90 {
    margin-top: 90px;
    margin-top: calc(90 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt95 {
    margin-top: 95px;
    margin-top: calc(95 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt100 {
    margin-top: 100px;
    margin-top: calc(100 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt105 {
    margin-top: 105px;
    margin-top: calc(105 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt110 {
    margin-top: 110px;
    margin-top: calc(110 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt115 {
    margin-top: 115px;
    margin-top: calc(115 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt120 {
    margin-top: 120px;
    margin-top: calc(120 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt125 {
    margin-top: 125px;
    margin-top: calc(125 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt130 {
    margin-top: 130px;
    margin-top: calc(130 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt135 {
    margin-top: 135px;
    margin-top: calc(135 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt140 {
    margin-top: 140px;
    margin-top: calc(140 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt145 {
    margin-top: 145px;
    margin-top: calc(145 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt150 {
    margin-top: 150px;
    margin-top: calc(150 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt155 {
    margin-top: 155px;
    margin-top: calc(155 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt160 {
    margin-top: 160px;
    margin-top: calc(160 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt165 {
    margin-top: 165px;
    margin-top: calc(165 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt170 {
    margin-top: 170px;
    margin-top: calc(170 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt175 {
    margin-top: 175px;
    margin-top: calc(175 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt180 {
    margin-top: 180px;
    margin-top: calc(180 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt185 {
    margin-top: 185px;
    margin-top: calc(185 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt190 {
    margin-top: 190px;
    margin-top: calc(190 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt195 {
    margin-top: 195px;
    margin-top: calc(195 / 375 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .spMt200 {
    margin-top: 200px;
    margin-top: calc(200 / 375 * 100vw);
  }
}

@media only screen and (min-width: 768px) {
  .pcMt5 {
    margin-top: 5px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt10 {
    margin-top: 10px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt15 {
    margin-top: 15px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt20 {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt25 {
    margin-top: 25px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt30 {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt35 {
    margin-top: 35px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt40 {
    margin-top: 40px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt45 {
    margin-top: 45px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt50 {
    margin-top: 50px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt55 {
    margin-top: 55px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt60 {
    margin-top: 60px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt65 {
    margin-top: 65px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt70 {
    margin-top: 70px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt75 {
    margin-top: 75px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt80 {
    margin-top: 80px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt85 {
    margin-top: 85px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt90 {
    margin-top: 90px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt95 {
    margin-top: 95px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt100 {
    margin-top: 100px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt105 {
    margin-top: 105px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt110 {
    margin-top: 110px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt115 {
    margin-top: 115px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt120 {
    margin-top: 120px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt125 {
    margin-top: 125px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt130 {
    margin-top: 130px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt135 {
    margin-top: 135px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt140 {
    margin-top: 140px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt145 {
    margin-top: 145px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt150 {
    margin-top: 150px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt155 {
    margin-top: 155px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt160 {
    margin-top: 160px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt165 {
    margin-top: 165px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt170 {
    margin-top: 170px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt175 {
    margin-top: 175px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt180 {
    margin-top: 180px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt185 {
    margin-top: 185px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt190 {
    margin-top: 190px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt195 {
    margin-top: 195px;
  }
}

@media only screen and (min-width: 768px) {
  .pcMt200 {
    margin-top: 200px;
  }
}

/*  既存パーツ調整
---------------------------------------- */
@media only screen and (min-width: 768px) {
  #sec-ekichika {
    padding-top: 6.25rem;
  }
}

@media only screen and (max-width: 767px) {
  #sec-compact {
    padding-top: 5rem;
  }
}