@charset "UTF-8";
/*-----------------------------------------------------------------
///////////////////////////////////////////////////////////////////
【メモ】
● サイト内・ページ内リンクは、先頭に『link-』をつけてIDセレクタで設定しています。
● jQuery専用クラスは先頭に『js-』をつけています。
● フォントサイズ(em)のメモは、TAB/PCのフォントサイズを基準に計算しています。
● 共通のコンテンツ幅は、『共通・コンテンツ幅』で検索してください。

///////////////////////////////////////////////////////////////////
------------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Helvetica", "Arial", YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.25;
  color: #282828;
  background: #fefefe;
  -webkit-text-size-adjust: 100%; /*スマホ横画面で文字の拡大・収縮防止用*/
  -webkit-font-smoothing: antialiased; /* 文字の太さを整える。Safari環境用 */
}
@media (min-width: 640px) {
  body {
    font-size: 16px;
  }
}

img {
  width: 100%;
  vertical-align: top;
}

a {
  text-decoration: none;
  color: inherit;
}

/*-----------------------------
画面幅
-----------------------------*/
.Wrap {
  width: 100%;
  min-width: 320px;
  max-width: 1920px;
  margin: 0 auto;
}

/*-----------------------------
共通のボタン
-----------------------------*/
/* 角丸ボタン */
.Btn {
  display: inline-block;
  width: 100%;
  max-width: 240px;
  height: 40px;
  line-height: 1;
  position: relative;
  border-radius: 20px;
  color: #fefefe;
  background: #4e338b;
  font-size: 1.125em; /*18px*/
  font-weight: 600;
  word-break: break-all;
  letter-spacing: 0.05em;
}
.Btn__inner {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
@media (min-width: 640px) {
  .Btn:hover {
    border-top: 6px solid rgba(2, 2, 2, 0.3);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.Btn-foot {
  display: inline-block;
  width: 100%;
  max-width: 240px;
  height: 40px;
  line-height: 1;
  position: relative;
  border-radius: 20px;
  color: #e95377;
  background: #fefefe;
  font-size: 1.125em; /*18px*/
  font-weight: 600;
  word-break: break-all;
  letter-spacing: 0.05em;
}
.Btn-foot__inner {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
@media (min-width: 640px) {
  .Btn-foot:hover {
    border-top: 6px solid rgba(2, 2, 2, 0.3);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

/* 下線ボタン（more） */
.Line-btn {
  font-weight: 600;
  font-size: 1.125em; /*18px*/
  display: inline-block;
  color: #4e338b;
}
.Line-btn__inner {
  display: inline-block;
  padding-bottom: 0.2em;
  border-bottom: 1px solid;
  border-color: #e95377;
}
.Line-btn__icon::after {
  display: inline-block;
  content: "";
  border: 0.25em solid transparent;
  border-left-color: #e95377;
}

@media (min-width: 640px) {
  .Line-btn:hover {
    padding-left: 5em;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.Line-btn-small {
  font-weight: 600;
  font-size: 0.875em; /*14px*/
  display: inline-block;
  color: #4e338b;
}
.Line-btn-small__inner {
  display: inline-block;
  padding-bottom: 0.2em;
  border-bottom: 1px solid;
  border-color: #e95377;
}
.Line-btn-small__icon::after {
  display: inline-block;
  content: "";
  border: 0.25em solid transparent;
  border-left-color: #e95377;
}

/*-----------------------------
文字・微調整
-----------------------------*/
/* 改行 */
.Br {
  display: inline-block;
}

/* 行間あける */
.Space {
  display: block;
  margin-bottom: 0.5em;
}

/*-----------------------------
会社のロゴ
-----------------------------*/
.Logo {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5em; /*24px*/
  color: #4e338b;
  letter-spacing: 0;
}

/*--------------------------------------------------------
///////////////////////////////////////////////////////////
header

///////////////////////////////////////////////////////////
----------------------------------------------------------*/
/*--------------------------------------------------------
【メモ】
●画面固定
●高さ60px、pc版は80px

---------------------------------------------------------*/
/*::::::::::::::::::::::::::::::::::::::::::::
全体設定
::::::::::::::::::::::::::::::::::::::::::::::*/
.header {
  width: 100%;
  background: #fefefe;
  background-size: cover;
  z-index: 20;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header__inner {
  /* 共通・コンテンツ幅 */
  width: 95%;
  margin: 0 auto;
}
.header__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
}
@media (min-width: 960px) {
  .header__container {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    height: auto;
    min-height: 80px;
    padding: 24px 0;
  }
}
.header__top {
  display: none;
}
@media (min-width: 960px) {
  .header__top {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
  }
}
.header__left {
  /* Logo */
  width: 120px;
  position: relative;
  z-index: 99;
}
@media (min-width: 960px) {
  .header__left {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 960px) {
  .header__bottom {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 960px) {
  .header__item-sp-only {
    display: none;
  }
}
.header__item-pc-only {
  display: none;
}
@media (min-width: 960px) {
  .header__item-pc-only {
    display: block;
  }
}

/* ホーム画面用・カスタム */
#home .header {
  background: transparent;
}

/*::::::::::::::::::::::::::::::::::::::::::::
コンテンツの設定
::::::::::::::::::::::::::::::::::::::::::::::*/
/*-----------------------------
PCメニュー
-----------------------------*/
/* 共通 */
.pc-menu-sub, .pc-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.pc-menu-sub a:active, .pc-menu a:active {
  background: #e0f6ff;
}
@media (min-width: 960px) {
  .pc-menu-sub a:hover, .pc-menu a:hover {
    text-decoration: underline;
  }
}

/* メインメニュー */
.pc-menu {
  grid-gap: 48px;
}
.pc-menu__item {
  font-size: 1em; /*12px*/
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.pc-menu__item-inner {
  display: block;
  padding-left: 10px;
  color: #4e338b;
  position: relative;
}
.pc-menu__item-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: #e95377;
}

/* サブメニュー */
.pc-menu-sub {
  grid-gap: 32px;
  padding-bottom: 16px;
}
.pc-menu-sub__item {
  font-size: 0.875em; /*14px*/
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ホーム画面用・カスタム */
#home .pc-menu__item-inner {
  color: #fefefe;
}
#home .pc-menu__item-inner::before {
  border-left-color: #fefefe;
}

/*-----------------------------
ハンバーガーメニュー（SP・TAB版で表示）
-----------------------------*/
/*////////////////////////
【メモ】
● 親要素で表示・非表示設定をする

////////////////////////*/
/* チェックボックス（非表示） */
#hamBurger-check {
  display: none;
}

/*アイコン*/
#hamBurger-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 98;
  background: transparent; /* 四角の色 */
  cursor: pointer;
}
#hamBurger-btn span,
#hamBurger-btn span::before,
#hamBurger-btn span::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  position: absolute;
  background: #e95377; /* 横線の色 */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#hamBurger-btn span::before {
  bottom: 8px;
}
#hamBurger-btn span::after {
  top: 8px;
}

/*メニューを開いたときのアイコン*/
#hamBurger-check:checked ~ #hamBurger-btn span,
#hamBurger-check:checked ~ #hamBurger-btn span::before,
#hamBurger-check:checked ~ #hamBurger-btn span::after {
  background: #fefefe; /* 横線の色 */
}
#hamBurger-check:checked ~ #hamBurger-btn span {
  background: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#hamBurger-check:checked ~ #hamBurger-btn span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#hamBurger-check:checked ~ #hamBurger-btn span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*メニュー本文*/
#hamBurger-content {
  width: 100vw;
  min-width: 320px;
  max-height: calc(100vh - 56px); /* 『top』分マイナス。スクロール対策 */
  padding: 56px 0 0 0;
  position: fixed;
  top: 0;
  left: 2000px;
  color: #282828;
  background: url(../images/peak.jpg) no-repeat;
  background-size: cover;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: scroll;
  z-index: 97;
}

/*メニュー本文・メニューを閉じたとき*/
#hamBurger-check:checked ~ #hamBurger-content {
  left: 0;
}

/* ホーム画面用・カスタム */
#home #hamBurger-btn span,
#home #hamBurger-btn span::before,
#home #hamBurger-btn span::after {
  background: #fefefe; /* 横線の色 */
}

/*-----------------------------
SP版メニュー（header/footer 併用）
-----------------------------*/
/*////////////////////////////
【サンプル】
<div class="sp-menu">
    <ul class="sp-menu__list">
        <li class="sp-menu__item-wrap"> ---メイン--- </li>
    </ul>
    <ul class="sp-menu__list sp-menu__list--sizeM">
        <li> ---サブ・中--- </li>
    </ul>
    <ul class="sp-menu__list sp-menu__list--sizeS">
        <li> ---サブ・小--- </li>
    </ul>
    <ul class="sp-menu__list">
        <li class="sp-menu__contact-info"> --- お問い合わせ先 --- </li>
    </ul>
</div>

【サンプル・li a】
① アイコンあり
<a href="#" class="sp-menu__item-icon"> ---メイン／サブ・中--- </a>
②　アイコンなし
<a href="#" class="sp-menu__item"> ---サブ・小--- </a>

////////////////////////////*/
.sp-menu-wrap {
  /* 共通・コンテンツ幅 */
  width: 95%;
  margin: 0 auto;
}

.sp-menu {
  padding: 16px 0 32px;
}
.sp-menu__list {
  list-style: none;
  border-bottom: 1px rgba(255, 255, 255, 0.6) solid;
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-shadow: 0px 1px 13px rgba(0, 0, 0, 0.1);
}
.sp-menu__list--sizeM {
  font-size: 0.875em; /*14px*/
}
.sp-menu__list--sizeS {
  font-size: 0.75em; /*12px*/
}
.sp-menu__item-wrap {
  border-top: 1px rgba(255, 255, 255, 0.6) solid;
}
.sp-menu__item, .sp-menu__item-icon, .sp-menu__item-icon-foot {
  color: #fefefe;
  display: block;
  padding: 16px 0;
}
.sp-menu__item-icon, .sp-menu__item-icon-foot {
  position: relative;
}
.sp-menu__item-icon::after, .sp-menu__item-icon-foot::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: #fefefe;
}
.sp-menu__item-icon-foot::after {
  border-left-color: inherit;
}
.sp-menu__contact-info {
  margin: 16px 0 24px;
  color: #fefefe;
}
.sp-menu__contact-info .Btn {
  text-shadow: 0;
}

/*::::::::::::::::::::::::::::::::::::::::::::
JavaScriptの設定『jQuery』
::::::::::::::::::::::::::::::::::::::::::::::*/
/* headerを固定する */
#js-header.show {
  -webkit-box-shadow: 0px 0px 16px 0px rgba(2, 2, 2, 0.1);
          box-shadow: 0px 0px 16px 0px rgba(2, 2, 2, 0.1);
}
#js-header.hidden {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#home #js-header.show {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(70%, rgba(255, 111, 189, 0.5)));
  background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0), rgba(255, 111, 189, 0.5) 70%);
  background-image: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(255, 111, 189, 0.5) 70%);
  text-shadow: 0px 1px 13px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: none;
          box-shadow: none;
}
#home #js-header.hidden {
  background: transparent;
  text-shadow: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* ハンバーガーメニューのロゴ切り替え */
#js-logoOpen {
  display: none;
}

#js-logoClose {
  display: block;
}

#js-logoOpen.show,
#js-logoClose.show {
  display: block;
}
#js-logoOpen.hidden,
#js-logoClose.hidden {
  display: none;
}

/*-----------------------------------------------------------------
///////////////////////////////////////////////////////////////////
footer

///////////////////////////////////////////////////////////////////
------------------------------------------------------------------*/
/*::::::::::::::::::::::::::::::::::::::::::::
全体設定
::::::::::::::::::::::::::::::::::::::::::::::*/
.footer {
  overflow: hidden; /* 子・子孫要素の背景表示用 */
}
.footer__inner {
  /* 共通・コンテンツ幅 */
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .footer__inner {
    width: 98%; /*画面みっちり防止*/
    max-width: 1360px;
    padding-right: 80px;
    padding-left: 80px;
  }
}
.footer__mask {
  margin-top: 10px;
  color: #fefefe;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(253, 187, 203)), to(rgb(141, 139, 226)));
  background-image: -webkit-linear-gradient(left, rgb(253, 187, 203), rgb(141, 139, 226));
  background-image: linear-gradient(90deg, rgb(253, 187, 203), rgb(141, 139, 226));
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}
.footer__mask::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: inherit;
  z-index: -2;
}
@media (min-width: 640px) {
  .footer__mask {
    padding-top: 24px;
  }
}
.footer__sp-menu {
  display: block;
  line-height: 1.25;
  font-weight: 500;
  word-break: break-all;
  letter-spacing: 0.05em;
}
@media (min-width: 960px) {
  .footer__sp-menu {
    display: none;
  }
}
.footer__pc-menu {
  display: none;
  padding: 24px 0;
  line-height: 1.25;
  font-weight: 500;
  word-break: break-all;
  letter-spacing: 0.05em;
}
@media (min-width: 960px) {
  .footer__pc-menu {
    display: block;
  }
}
.footer__pc-menu-item {
  padding-top: 24px;
  border-top: 1px rgba(255, 255, 255, 0.6) solid;
  font-weight: 600;
  text-shadow: 0px 1px 13px rgba(0, 0, 0, 0.1);
}
.footer__copyright {
  padding: 24px 0;
}

/*::::::::::::::::::::::::::::::::::::::::::::
各パーツの設定
::::::::::::::::::::::::::::::::::::::::::::::*/
/*-----------------------------
コピーライト
-----------------------------*/
.copyright {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.copyright .copyright__main, .copyright .copyright__sub {
  display: block;
  width: 100%;
}
.copyright__sub {
  /* Logo */
  margin-bottom: 6px;
}
.copyright__main {
  font-size: 0.75em; /*12px*/
}

/*-----------------------------
お問い合わせ先（カードリスト）
-----------------------------*/
.icon-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  color: #fefefe;
  background: #4c445f;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 640px) {
  .icon-cards {
    border-radius: 10px;
  }
}
.icon-cards::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: inherit;
  z-index: -2;
}
@media (min-width: 640px) {
  .icon-cards::before {
    display: none;
  }
}
.icon-cards__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; /* 高さを合わせる */
  width: 100%;
  padding: 24px 8px 32px;
  border-top: 1px solid rgba(2, 2, 2, 0.3);
}
@media (min-width: 640px) {
  .icon-cards__card {
    width: 50%;
    padding: 32px 8px 48px;
    border: 0;
    border-left: 1px solid rgba(2, 2, 2, 0.3);
  }
}
.icon-cards__card:first-of-type {
  border: 0;
}
.icon-cards__card-inner {
  width: 100%;
  /* &--sample {
      &::before {
          background: url(../img/) no-repeat center;
          background-size: cover;
      }
  }*/
}
.icon-cards__card-inner::before {
  content: "";
  display: inline-block;
  width: 56px;
  height: 56px;
  border: 4px solid #fefefe;
  border-radius: 100%;
  background: url(../img/icon-tel.svg) no-repeat center;
  background-size: 70%;
}
.icon-cards__card-inner--pc::before {
  background: url(../img/icon-web.svg) no-repeat center;
  background-size: 70%;
}

/*-----------------------------
お問い合わせ先の詳細
-----------------------------*/
/* タイトル・番号・アドレスの入れ物(.contact-info__itemの組み合わせは自由) */
.contact-info {
  text-align: center;
}
.contact-info__item {
  /* 余白・大 */
  margin-top: 16px;
}
.contact-info__item2 {
  /* 余白・中 */
  margin-top: 10px;
}
.contact-info__item3 {
  /* 余白・小 */
  margin-top: 8px;
}

/* タイトル */
.contact-info-ttl {
  font-size: 1em; /*12px*/
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* 番号・アドレス */
.contact-info-text {
  display: block;
  font-weight: 700;
  line-height: 1;
  color: #fefefe;
}
.contact-info-text__tel-sp, .contact-info-text__tel-pc {
  display: block;
  font-size: 2em; /*32px*/
}
@media (min-width: 640px) {
  .contact-info-text__tel-sp, .contact-info-text__tel-pc {
    display: none;
  }
}
.contact-info-text__tel-pc {
  display: none;
}
@media (min-width: 640px) {
  .contact-info-text__tel-pc {
    display: block;
  }
}

/* 番号・アドレス（補足情報） */
.contact-info-supplement {
  display: block;
  font-size: 0.75em; /*12px*/
}

/*-----------------------------
footer用・PCメニュー（1列）
-----------------------------*/
.f-pc-menu-single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 32px;
  list-style: none;
}
.f-pc-menu-single__item {
  font-size: 0.875em; /*14px*/
}
.f-pc-menu-single__item a:active {
  background: #e0f6ff;
}
@media (min-width: 960px) {
  .f-pc-menu-single__item a:hover {
    text-decoration: underline;
  }
}

/*-----------------------------
SNS
-----------------------------*/
.sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.sns__ttl {
  font-size: 1.125em; /*18px*/
}
.sns__ttl::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.1em;
  margin-left: 8px;
  vertical-align: middle;
  background: rgba(2, 2, 2, 0.3);
}
.sns__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.sns__item {
  width: 24px;
  margin-left: 10px;
}

/*-----------------------------------------------------------------
///////////////////////////////////////////////////////////////////
main

///////////////////////////////////////////////////////////////////
------------------------------------------------------------------*/
/*::::::::::::::::::::::::::::::::::::::::::::
ホーム画面
::::::::::::::::::::::::::::::::::::::::::::::*/
/*-----------------------------
メインビジュアル
-----------------------------*/
.main-visual {
  width: 100%;
  height: 0;
  padding-top: max(calc(100% / 2), 600px); /* 2:1 */
  background: url(../images/peak.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
.main-visual__inner {
  width: 100%;
  line-height: 1.75;
  word-break: break-all;
  letter-spacing: 0.05em;
  color: #fefefe;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.main-visual__ttl {
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-family: "Amatic SC", cursive;
  font-weight: 700;
  letter-spacing: 0;
  font-size: clamp(36px, 6vw, 72px);
}
.main-visual__text {
  margin-top: 0.5em;
  font-size: clamp(14px, 1.5vw, 18px);
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
}

/*-----------------------------
背景・楕
-----------------------------*/
.home-inner {
  text-align: center;
  overflow: hidden;
  color: #fefefe;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(253, 187, 203)), to(rgb(141, 139, 226)));
  background-image: -webkit-linear-gradient(left, rgb(253, 187, 203), rgb(141, 139, 226));
  background-image: linear-gradient(90deg, rgb(253, 187, 203), rgb(141, 139, 226));
}
.home-inner__line, .home-inner__content {
  margin: 0 -300px;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 50% 30px;
  border-top-right-radius: 50% 30px;
  border-bottom-left-radius: 50% 30px;
  border-bottom-right-radius: 50% 30px;
}
.home-inner__line {
  /*　背景・楕円の線 */
  padding: 80px 300px;
  background: #4c445f;
}
.home-inner__content {
  /*　背景・楕円の内側 */
  padding: 0 300px;
  color: #282828;
  background: #fefefe;
}

/*-----------------------------
セクション間の余白
-----------------------------*/
.home-container {
  margin: 32px 0;
}
@media (min-width: 640px) {
  .home-container {
    margin: 48px 0;
  }
}
.home-container--home-inner {
  /* （.home__inner） */
  margin: 64px 0;
}
@media (min-width: 640px) {
  .home-container--home-inner {
    margin: 80px 0;
  }
}
.home-container--end {
  margin: 32px 0 64px;
}
@media (min-width: 640px) {
  .home-container--end {
    margin: 48px 0 80px;
  }
}
.home-container__inner {
  /* 共通・コンテンツ幅 */
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .home-container__inner {
    width: 98%; /*画面みっちり防止*/
    max-width: 1360px;
    padding-right: 80px;
    padding-left: 80px;
  }
}

/*-----------------------------
タイトル
-----------------------------*/
.home-ttl {
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-family: "Amatic SC", cursive;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 3.75em; /*60px*/
}
.home-ttl--home-inner {
  /* （.home__inner） */
  font-size: 72px;
}
.home-ttl__main {
  color: #e95377;
}
.home-ttl__m-even {
  color: #8c6ed2;
}
.home-ttl__sub {
  /* 装飾（読み仮名） */
  display: block;
  font-family: "Helvetica", "Arial", YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 300;
  font-size: min(0.333333333333333em, 16px);
  color: inherit;
  font-family: "Kiwi Maru", serif;
}
.home-ttl__line {
  /* 装飾（下・四角） */
  display: inline-block;
  margin-bottom: 0.375em;
  position: relative;
}
.home-ttl__line::after {
  content: "";
  display: block;
  width: 0.5em;
  border-bottom: 4px solid;
  position: absolute;
  left: 50%;
  bottom: -0.375em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*-----------------------------
タイトル下・コンテンツ
-----------------------------*/
/* .home-ttl用 */
.home-ttl-bottom {
  margin-top: 10px;
  border-top: 1px rgba(2, 2, 2, 0.3) solid;
  border-bottom: 1px rgba(2, 2, 2, 0.3) solid;
}
@media (min-width: 640px) {
  .home-ttl-bottom {
    margin-top: 16px;
  }
}

.home-ttl-bottom-btn-wrap {
  margin-top: 10px;
  text-align: right;
}
@media (min-width: 640px) {
  .home-ttl-bottom-btn-wrap {
    margin-top: 16px;
  }
}
.home-ttl-bottom-btn-wrap--pink {
  color: #e95377;
}

/* .home-ttl--home__inner用 */
.home-inner-btn-wrap, .home-inner-text {
  margin: 32px 0;
}
@media (min-width: 640px) {
  .home-inner-btn-wrap, .home-inner-text {
    margin: 48px 0;
  }
}

.home-inner-text {
  font-size: 1.125em; /*18px*/
  line-height: 1.75;
  word-break: break-all;
  letter-spacing: 0.05em;
}
.home-inner-text--catch {
  font-family: "Kiwi Maru", serif;
  font-size: 1.25em; /*20px*/
}

/* ボタンを包む用 */
.home-inner-btn-wrap {
  text-align: center;
}
.home-inner-btn-wrap--right {
  text-align: right;
}

/*-----------------------------
パネル
-----------------------------*/
/*////////////////////////
【１枚】
<div class="panel">
     <img src="./images/top-img1.jpg" alt="" class="panel__pc-only">
    <img src="./images/top-img1sp.jpg" alt="" class="panel__sp-only">
</div>

【２枚】
<ul class="home-inner-list">
    <li class="home-inner-list__item2 panel"> 
        <img src="./images/top-img2.jpg" alt="" class="panel__pc-only">
        <img src="./images/top-img2sp.jpg" alt="" class="panel__sp-only">
    </li>
    <li class="home-inner-list__item2 panel"> 
        <img src="./images/top-img2.jpg" alt="" class="panel__pc-only">
        <img src="./images/top-img2sp.jpg" alt="" class="panel__sp-only">
    </li>
 </ul>

【３枚】
<ul class="home-inner-list">
    <li class="home-inner-list__item3 panel">
        <img src="./images/top-img3.jpg" alt="">
    </li>
    <li class="home-inner-list__item3 panel">
        <img src="./images/top-img3.jpg" alt="">
    </li>
    <li class="home-inner-list__item3 panel">
        <img src="./images/top-img3.jpg" alt="">
    </li>
 </ul>

////////////////////////*/
.home-inner-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}
.home-inner-list__item, .home-inner-list__item2, .home-inner-list__item3 {
  width: 100%;
}
@media (min-width: 640px) {
  .home-inner-list__item2 {
    width: 50%;
  }
}
@media (min-width: 640px) {
  .home-inner-list__item3 {
    width: 33.3333333333%;
  }
}

.panel {
  /* circle-itemを包む用 */
}
.panel img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 640px) {
  .panel__sp-only {
    display: none;
  }
}
.panel__pc-only {
  display: none;
}
@media (min-width: 640px) {
  .panel__pc-only {
    display: block;
  }
}
.panel__circle-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 16px 0;
}
@media (min-width: 640px) {
  .panel__circle-item {
    display: none;
  }
}

/* 文字入りの正円 */
.circle-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 1.125em; /*18px*/
  line-height: 1.5;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.05);
}
.circle-item__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 200px;
  min-height: 200px;
  padding: 0.5em 0.5em 0.8em;
  position: relative;
  top: 0;
  left: 0;
  color: #fefefe;
  z-index: 1;
}
.circle-item__inner::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 100%;
  background: -webkit-linear-gradient(45deg, rgb(143, 91, 255) 0%, rgb(200, 215, 253) 75%, rgb(143, 230, 243) 100%);
  background: linear-gradient(45deg, rgb(143, 91, 255) 0%, rgb(200, 215, 253) 75%, rgb(143, 230, 243) 100%);
  z-index: -1;
}
.circle-item__inner--sky::before {
  background: #41a8d9;
}
.circle-item__inner--green::before {
  background: #358c68;
}
.circle-item__inner--red::before {
  background-image: -webkit-linear-gradient(45deg, rgb(232, 92, 140) 0%, rgb(255, 216, 236) 75%, rgb(255, 247, 224) 100%);
  background-image: linear-gradient(45deg, rgb(232, 92, 140) 0%, rgb(255, 216, 236) 75%, rgb(255, 247, 224) 100%);
}
.circle-item-M {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.circle-item-M__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 240px;
  min-height: 240px;
  padding: 0.5em 0.5em 0.8em;
  position: relative;
  top: 0;
  left: 0;
  color: #fefefe;
  z-index: 1;
}
.circle-item-M__inner::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 100%;
  background: #4e338b;
  z-index: -1;
}

/* 文字入りの正円を並べる(●×●×●×●) */
.circle-list {
  display: none;
}
@media (min-width: 640px) {
  .circle-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    list-style: none;
  }
}
@media (min-width: 960px) {
  .circle-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.circle-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 960px) {
  .circle-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.circle-list__item::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 16px;
  background: url(../img/peke.png) no-repeat center;
  background-size: cover;
}
.circle-list__item:last-of-type::after {
  display: none;
}

/*-----------------------------
ニュース 
-----------------------------*/
@media (min-width: 960px) {
  .news {
    padding: 32px 0;
  }
}
.news__unit {
  padding: 16px 0;
  border-bottom: 1px rgba(2, 2, 2, 0.3) solid;
}
@media (min-width: 960px) {
  .news__unit {
    padding: 0;
    border-bottom: 0;
    margin-bottom: 16px;
  }
}
.news__unit:last-of-type {
  border-bottom: 0;
}
@media (min-width: 960px) {
  .news__unit:last-of-type {
    margin-bottom: 0;
  }
}
.news__deta {
  margin-bottom: 0.5em;
  font-size: 0.875em; /*14px*/
  font-weight: 700;
  color: #4e338b;
}
.news__text {
  line-height: 1.75;
  word-break: break-all;
  letter-spacing: 0.03em;
}
.news a {
  text-decoration: underline;
}

/*-----------------------------
地図・インフォ
-----------------------------*/
.info {
  padding: 24px 0;
}
.info__map {
  margin-bottom: 16px;
  border: 1px solid rgba(2, 2, 2, 0.3);
}
@media (min-width: 640px) {
  .info__map {
    width: 61.804697157%;
  }
}
.info__map-inner {
  width: 100%;
  padding-top: 61.804697157%;
  position: relative;
}
.info__map-inner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.info__text {
  margin-bottom: 1em;
}
.info__icon-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.info__icon {
  height: 1.25em;
  /* 装飾（左に四角） */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.info__icon::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 1em;
  margin-right: 0.4em;
  background: #e95377;
}
.info__icon-bottom {
  margin: 0.5em 0 0 1em;
  line-height: 1.5;
}

/*-----------------------------
ページトップ（パンくずリスト）
-----------------------------*/
.main-page-outer {
  border-top: 1px rgba(2, 2, 2, 0.3) solid;
}
@media (min-width: 960px) {
  .main-page-outer {
    border-bottom: 1px rgba(2, 2, 2, 0.3) solid;
  }
}
.main-page-outer__inner {
  display: none;
}
@media (min-width: 960px) {
  .main-page-outer__inner {
    display: block;
    /* 共通・コンテンツ幅 */
    width: 95%;
    margin: 0 auto;
  }
}
@media (min-width: 960px) and (min-width: 960px) {
  .main-page-outer__inner {
    width: 98%; /*画面みっちり防止*/
    max-width: 1360px;
    padding-right: 80px;
    padding-left: 80px;
  }
}

/*-----------------------------
ページ内容
-----------------------------*/
.main-page {
  /* 共通・コンテンツ幅 */
  width: 95%;
  margin: 0 auto;
  min-height: 35vh;
}
@media (min-width: 960px) {
  .main-page {
    width: 98%; /*画面みっちり防止*/
    max-width: 1360px;
    padding-right: 80px;
    padding-left: 80px;
  }
}
.main-page__top {
  /* トップタイトル */
  padding: 32px 0 16px;
  border-bottom: 1px rgba(2, 2, 2, 0.3) solid;
}
.main-page__bottom {
  /* トップタイトルの下 */
  margin: 0 0 80px;
}

/*-----------------------------
タイトル（共通）
-----------------------------*/
.main-page-card__ttl, .main-page-ttl2, .main-page-ttl, .main-page-top-ttl {
  display: block;
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/*-----------------------------
テキスト（共通）
-----------------------------*/
.main-page-ttl2-bottom, .main-page-ttl-bottom {
  display: block;
  line-height: 1.75;
  word-break: break-all;
  letter-spacing: 0.05em;
}

/*-----------------------------
トップタイトル
-----------------------------*/
.main-page-top-ttl {
  font-size: 1.5em; /*24px*/
}
.main-page-top-ttl__inner {
  /* 装飾（左に四角） */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-page-top-ttl__inner::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 1em;
  margin-right: 0.4em;
  background: #e95377;
}

/*-----------------------------
タイトル（大）
-----------------------------*/
/*////////////////////////
【サンプル】
① 改行なし
<h3 class="main-page-ttl">
<span class="main-page-ttl__inner">サンプルタイトル（大）</span>
</h3>
<p class="main-page-ttl-bottom">
サンプルテキスト
</p>

② 改行あり
<h3 class="main-page-ttl">
<span class="main-page-ttl__inner">サンプルタイトル（大）</span>
</h3>
<div class="main-page-ttl-bottom">
<p class="main-page-ttl-bottom__item">
サンプルテキスト
</p>
<p class="main-page-ttl-bottom__item">
サンプルテキスト
</p>
</div>

////////////////////////*/
.main-page-ttl {
  margin-top: 24px;
  font-size: 1.375em; /*22px*/
  /* 装飾（下線） */
  padding-bottom: 10px;
  border-bottom: 3px solid #e95377;
  -webkit-border-image: -webkit-gradient(linear, left top, right top, from(rgb(253, 187, 203)), to(rgb(141, 139, 226)));
  -webkit-border-image: -webkit-linear-gradient(left, rgb(253, 187, 203), rgb(141, 139, 226));
       -o-border-image: linear-gradient(90deg, rgb(253, 187, 203), rgb(141, 139, 226));
          border-image: -webkit-gradient(linear, left top, right top, from(rgb(253, 187, 203)), to(rgb(141, 139, 226)));
          border-image: linear-gradient(90deg, rgb(253, 187, 203), rgb(141, 139, 226));
  border-image-slice: 1;
}
@media (min-width: 640px) {
  .main-page-ttl {
    margin-top: 32px;
  }
}

/*-----------------------------
タイトル（大）のテキスト・写真・コンテンツ
-----------------------------*/
.main-page-ttl-bottom {
  margin-top: 32px;
}
@media (min-width: 640px) {
  .main-page-ttl-bottom {
    margin-top: 48px;
  }
}
.main-page-ttl-bottom__item {
  margin-top: 16px;
}
@media (min-width: 640px) {
  .main-page-ttl-bottom__item {
    margin-top: 24px;
  }
}

/*-----------------------------
タイトル（中）
-----------------------------*/
/*////////////////////////
【サンプル】
① 改行なし
<h4 class="main-page-ttl2">
<span class="main-page-ttl2__inner">サンプルタイトル（中）</span>
</h4>
<p class="main-page-ttl2-bottom">
サンプルテキスト
</p>

② 改行あり
<h4 class="main-page-ttl2">
<span class="main-page-ttl2__inner">サンプルタイトル（中）</span>
</h4>
<div class="main-page-ttl2-bottom">
<p class="main-page-ttl2-bottom__item">
サンプルテキスト
</p>
<p class="main-page-ttl2-bottom__item">
サンプルテキスト
</p>
</div>

////////////////////////*/
.main-page-ttl2 {
  margin-top: 32px;
  font-size: 1.125em; /*18px*/
}
@media (min-width: 640px) {
  .main-page-ttl2 {
    margin-top: 48px;
  }
}
.main-page-ttl2__inner {
  /* 装飾（下線＋四角）） */
  display: block;
  padding-bottom: 16px;
  position: relative;
  top: 0;
  left: 0;
}
.main-page-ttl2__inner::before, .main-page-ttl2__inner::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-page-ttl2__inner::before {
  width: 100%;
  bottom: 1px;
  border-bottom: 1px rgba(2, 2, 2, 0.3) solid;
}
.main-page-ttl2__inner::after {
  width: 48px;
  height: 3px;
  background: #e95377;
}

/*-----------------------------
タイトル（中）のテキスト・写真・コンテンツ
-----------------------------*/
.main-page-ttl2-bottom {
  margin-top: 24px;
}
@media (min-width: 640px) {
  .main-page-ttl2-bottom {
    margin-top: 32px;
  }
}
.main-page-ttl2-bottom__item {
  margin-top: 16px;
}
@media (min-width: 640px) {
  .main-page-ttl2-bottom__item {
    margin-top: 24px;
  }
}

/*-----------------------------
横並びコンテナ
-----------------------------*/
/*////////////////////////
【サンプル】
<div class="main-page-container">
<div class="main-page-container__text"> テキスト </div>
<div class="main-page-container__img"> 写真 </div>
</div>

<div class="main-page-container">
<div class="main-page-container__img"> 写真 </div>
<div class="main-page-container__text"> テキスト </div>
</div>
////////////////////////*/
.main-page-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-page-container__text, .main-page-container__img {
  width: 100%;
}
@media (min-width: 640px) {
  .main-page-container__text {
    width: 50%;
  }
}
@media (min-width: 640px) {
  .main-page-container__img {
    width: calc(50% - 48px);
  }
}
.main-page-container__img img {
  border: 1px solid rgba(2, 2, 2, 0.3);
}

/*-----------------------------
カード（横並びコンテナ内）
-----------------------------*/
/*////////////////////////
【サンプル】
<div class="main-page-container">
    <div class="main-page-card">
        <dt class="main-page-card__ttl"><span class="main-page-card__ttl-inner"> タイトル（用語） </span></dt>
        <dd class="main-page-card__text"> テキスト（説明） </dd>
        <dd class="main-page-card__text"> テキスト（説明） </dd>
    </div>
</div>

////////////////////////*/
.main-page-card {
  width: 100%;
}
@media (min-width: 640px) {
  .main-page-card {
    width: calc((100% - 48px) / 2);
  }
}
.main-page-card__ttl {
  margin-top: 32px;
  font-size: 1.125em; /*18px*/
}
@media (min-width: 640px) {
  .main-page-card__ttl {
    margin-top: 48px;
  }
}
.main-page-card__ttl-inner {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(2, 2, 2, 0.3);
  /* 装飾（左に四角） */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-page-card__ttl-inner::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 1em;
  margin-right: 0.4em;
  background: #e95377;
}
.main-page-card__text {
  margin-top: 8px;
  line-height: 1.75;
  word-break: break-all;
  letter-spacing: 0.03em;
}
.main-page-card__text:first-of-type {
  margin-top: 24px;
}
@media (min-width: 640px) {
  .main-page-card__text:first-of-type {
    margin-top: 32px;
  }
}

/*-----------------------------
ページ外リンク
-----------------------------*/
/*////////////////////////
【サンプル】
<a href="" class="main-page-external-link"> サンプルテキスト </a>

////////////////////////*/
.main-page-external-link:active {
  background: #e0f6ff;
}
@media (min-width: 960px) {
  .main-page-external-link:hover {
    text-decoration: underline;
  }
}
.main-page-external-link::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  margin-left: 0.5em;
  vertical-align: middle;
  background: url(../img/baseline_open_in_new_black_48dp.png) no-repeat center;
  background-size: cover;
}

/*-----------------------------
パンくずリスト
-----------------------------*/
.breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 24px;
  padding: 16px 0;
  list-style: none;
}
.breadcrumb__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 24px;
  font-size: 0.875em; /*14px*/
}
.breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.breadcrumb__item:first-of-type {
  margin-left: 0;
}
.breadcrumb__item:first-of-type::before {
  display: none;
}
.breadcrumb__item a:active {
  background: #e0f6ff;
}
@media (min-width: 960px) {
  .breadcrumb__item a:hover {
    text-decoration: underline;
  }
}