@charset "UTF-8";

/* ====== 共通 ====== */

header .navbar-brand {
  width: 35%;
}

header .navbar-brand .logo {
  width: 100%;
}

body {
  width: 100%;
  height: 100%;
}

body,
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1200px;
}

/* ====== header ====== */
header {
  background-color: #2B616D;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ====== footer ====== */
footer {
  margin-top: auto;
  background-color: #2B616D;
}

.footer-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* ====== TOP&FOOTER ====== */
.topfooter {
  background-color: #2B616D;
}

/* ====== BackGround ====== */
.bodyback {
  background-image: linear-gradient(#e6fff5, #d6fff7, #f4fcfc);
}

/* ====== TOTOP ====== */
/* ページトップ */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 80%;
}

#page-top a {
  background: #2B616D;
  text-decoration: none;
  color: #fff;
  width: 100px;
  padding: 25px 0;
  text-align: center;
  display: block;
  border-radius: 10px;
}

#page-top a:hover {
  text-decoration: none;
  background: #999;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled).active {
  color: #6c757d !important;
}

/* ====== TOP IMAGE ====== */

header.top-page {
  height: 70vh;
  overflow: hidden;
  padding-right: 0;
  padding-left: 0;
}

/* ====== TOPPAGE SECTION ====== */

.ttl-bdr {
  font-size: 2.5rem;
  line-height: 1.5;
  position: relative;
  margin-bottom: 50px;
}

.ttl-bdr::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 5px solid #75D889;
  width: 12%;
  margin: 0 auto -15px;
}

#sec2 {
  background-color: #36D1DC2F;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50px 3px;
}

#sec3 {
  /*background-color: rgba(229, 0, 15, 0.7);*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}


/* ====== パンくずリスト ====== */
nav {
  background-color: #c9bfbf65;
}

.nav-inner {
  padding: 10px 10px 0 10px;
}

.breadcrumb ol {
  list-style-type: none;
  margin: 0;
  padding: 0 0 0 10%;
}

.breadcrumb li {
  display: inline;
  font-size: 20px;
}

.breadcrumb li::after {
  content: "/";
  color: #999;
}

.breadcrumb li:last-child::after {
  content: none;
}

.breadcrumb a {
  text-decoration: none;
  color: #2B616D;
}

/* ====== terms ====== */
.article-font {
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.article-font ol {
  padding-left: 2.6rem;
  font-size: 0.9rem;
}

.list-header {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.list-article {
  padding-left: 0.8rem;
  font-size: 1.0rem;
  font-weight: bold;
}

.list-sentence {
  padding-left: 1.2rem;
  font-size: 0.9rem;
}

th {
  background: #DCDCDC !important;
  text-align: center;
}

td {
  font-size: 0.9rem;
}

.ol-katakana {
  list-style-type: none;
  counter-reset: katakana;
  text-indent: -2.2em;
  padding-left: 1.0em;
}

.ol-katakana li::before {
  content: "(" counter(katakana, katakana) ") ";
  counter-increment: katakana;
}

.ol-number {
  list-style-type: none;
  counter-reset: item;
  text-indent: -2.2em;
}

.ol-number li::before {
  counter-increment: item;
  content: "(" counter(item) ") ";
  margin-right: 5px;
}

.table-bordered {
  border: 1px solid #dee2e6 !important;
}


/* ====== アコーディオン ===== */
.accordion {
  max-width: 100%;
  margin-bottom: 7px;
  border-top: 1px solid #d0d0d0;
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #333333;
  font-weight: 500;
  cursor: pointer;
}

.accordion summary:hover {
  color: #75D889;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #333333b3;
  border-right: 3px solid #333333b3;
  content: '';
  transition: transform .3s;
}

.accordion[open] summary::after {
  transform: rotate(225deg);
}

.accordion p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  color: #333333;
  transition: transform .5s, opacity .5s;
}

.accordion[open] p {
  transform: none;
  opacity: 1;
}

.accordion ul {
  margin-top: -20px;
  padding-left: 60px;
}

.accordion ol {
  padding-left: 70px;
}


 .text-indent {
   text-indent: 1em;
 }

 /*キッセイロゴのスタイル*/
.kissei_logo {
  max-width: 120px;
  width: 100%;
  height: auto;
}

/* =============================================
メディアクエリ
============================================= */

/* 大デバイス（デスクトップ, 1200px 未満）
==============================================*/
@media screen and (max-width: 1199.98px) {
  .herounit h1 {
    margin-top: 10rem;
  }
}

/* END */
/* 中デバイス（タブレット, 992px 未満）
==============================================*/
@media screen and (max-width: 991.98px) {
  .container {
    max-width: 740px;
  }
}

/* END */
/* 小デバイス（横向きモバイル, 768px 未満）
==============================================*/
@media screen and (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
  }

  #sec3 {
    background-image: none;
  }

  header .navbar-brand {
    width: 55%;
  }

  header .navbar-brand .logo {
    width: 100%;
  }

  header .navbar-nav {
    border-top: 1px solid #fff;
  }

  .footer-logo {
    width: 100%;
  }

}

/* 極小デバイス（縦向きモバイル, 576px 未満）
==============================================*/
@media screen and (max-width: 575.98px) {
  .display-3 {
    line-height: 0.8em;
  }

  .display-4 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .btn-flat-sm-display {
    font-size: 14px;
    font-weight: 600;
    width: 140px;
    height: 90px;
  }

  .span-sm-display {
    width: 200px;
    font-size: 14px;
  }
}

/* END */

@media (min-width: 576px) {

  /*フラットで動きの大きいボタン*/
  a.btn-flat-over-sm {
    font-size: 18px;
    font-weight: 700;
    width: 260px;
    height: 100px;
  }

  a.btn-flat-over-sm span {
    width: 300px;
    /* 固定幅 */
    font-size: 18px;
  }

  img.img-over-sm {
    max-width: 80%;
  }

}

ul,
ol {
  padding-left: 20px;
  padding-right: 20px;
}

.download {
  text-align: center;
  font-size: 1.8rem;
}

.device {
  font-size: 1.5rem;
}

/* 操作説明用 ボタン関係 CSS
/*aタグ ボックスサイズ算出をborer-boxに */
a,
a:before,
a:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a.btn-flat {
  line-height: 1.5;
  position: relative;
  display: inline-flex;
  padding: 1rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  white-space: normal;
  margin: 0.3rem;
  overflow: hidden;
  /*padding: 1.5rem 6rem;*/
  color: #fff;
  border-radius: 10px;
  background: #172b1b;
  align-items: center;
  /* 垂直方向の中央揃え */
  justify-content: center;
  /* 水平方向の中央揃え */
}

a.btn-flat-apppage {
  height: 80px;
}

a.btn-flat span {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  text-align: center;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 100px;
  height: 100px;

  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-80%) translateY(-25px);
  transform: translateX(-80%) translateY(-25px);

  border-radius: 80%;
  background: #75D889;
}

a.btn-flat:hover:before {
  width: 400px;
  height: 400px;

  -webkit-transform: translateX(-1%) translateY(-175px);

  transform: translateX(-1%) translateY(-175px);
}

/*シンプルな二重線のボタン*/
.simple-double-border {
  background-color: #75D889;
  border: double 6px #2B616D;
  color: #2B616D;
  border-radius: 10px;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1em;
}

.simple-double-border:hover {
  color: #ffffff;
  background-color: #2B616D;
}

p.body {
  font-size: 15px;
}

p.eye-catch {
  font-size: 18px;
  font-weight:bold;
  color: #2B616D;
  margin-bottom: 0;
}

p.ios-install-text {
  position: relative;
  top: 8px;
}

p.ios-install-text_apppage {
  position: relative;
  top: -3px;
}

/*QRコードの画像*/
img.qr-code {
  max-width: 15rem;
  aspect-ratio: auto;
  margin-top: auto;
}

/*一枚絵の画像*/
img.single-page-image {
  max-width: 100%;
  aspect-ratio: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

/*アプリ説明用の画像*/
img.appexplain-page-image {
  max-width: 100%;
  aspect-ratio: auto;
  text-align: center;
}

/*矢印アイコン用の画像*/
img.arrow-image {
  width: 32px;
  height: 32px;
  margin-top: 5px;
  margin-bottom: 5px;
}

/*Appのインストールバッジ*/
/*iOS*/
img.app_install_iOS {
  height: 75px;
  width: auto;
  margin-top: 0px;
  margin-bottom: 2px;
  position: relative;
  top: -7px; 
}

/*iOS-操作説明*/
img.app_install_iOS_howto {
  height: 75px;
  width: auto;
}

img.app_install_google {
  height: 95px;
  width: auto;
  margin-top: 0px;
  margin-bottom: 2px;
}

/*iOSバッジ周りの余白*/
.padding_around_iOS_badge {
  padding-top: 8px;
  padding-bottom: 12px;
}

/*文字と画像の縦の余白を縮める*/
.narrow_space_vertical_text_img {
  position: relative;
  top: 10px;
}

/*margin top - 1rem*/
.margin-top-1rem {
  margin-top: 1rem;
}

/*divide-line*/
.divide-line {
  border: 2px solid #ccc;
  margin-top: 10px;
  margin-bottom: 10px;
  height: 0;
}

.divide-line-subhead {
  border-top: 1px solid #ccc;
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 100%;
}

/*小見出し テキスト*/
.sub-header {
  margin-top: 10px;
  margin-bottom: 15px;
  text-decoration: underline;
  color: #2B616D;
}

/*アラート テキスト*/
.alert-container {
  display: flex;
  align-items: center;
  /* アイコンとテキストを縦方向で中央揃え */
  gap: 10px;
  /* アイコンとテキストの間のスペース */
  margin-bottom: 10px;
  /*margin-left: 34px;*/
}

.alert-icon {
  width: 24px;
  height: 24px;
  color: gold;
}

.alert-title {
  font-weight: bold;
  color: red;
  /* 注意書き用の赤色 */
}

.alert-message {
  margin-left: 34px;
  /* アイコンの位置に合わせてインデント */
}

.row-continuous {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* アプリ使用方法 - 極小デバイス（縦向きモバイル, 576px 未満）
==============================================*/
@media screen and (max-width: 575.98px) {
  .btn-flat-sm-display {
    font-size: 14px;
    font-weight: 600;
    width: 140px;
    height: 90px;
  }

  .span-sm-display {
    width: 200px;
    font-size: 14px;
  }

  .btn-flat-sm-apppage {
    font-size: 18px;
    font-weight: 600;
    width: 300px;
    height: 80px;
  }
}

/* END */
/* アプリ使用方法 - smデバイス以上（縦向きモバイル, 576px 以上）
==============================================*/
@media (min-width: 576px) {

  /*フラットで動きの大きいボタン*/
  a.btn-flat-over-sm {
    font-size: 18px;
    font-weight: 700;
    width: 260px;
    height: 100px;
  }

  a.btn-flat-over-sm span {
    width: 300px;
    /* 固定幅 */
    font-size: 18px;
  }

  a.btn-flat-apppage span {
    width: 350px;
    /* 固定幅 */
    font-size: 20px;
  }

  img.img-over-sm {
    max-width: 75%;
  }
}
/* END */
/* アプリ使用方法 - lgデバイス以上（縦向きモバイル, 992px 以上）*/
@media (min-width: 768px) {
  img.img-over-sm {
    max-width: 65%;
  }

  img.single-img-over-md {
    max-width: 80%;
  }
}
/* END */
/* アプリ使用方法 - lgデバイス以上（縦向きモバイル, 992px 以上）*/
@media (min-width: 992px) {
  img.img-over-sm {
    max-width: 55%;
  }
}
/* END */

/* 操作説明誘導ボタン - mdデバイス以上（縦向きモバイル, 768px 以上）*/
@media (min-width: 768px) {
  .container {
    justify-content: space-between; /* 左右に寄せる */
  }
  .box-left {
    margin-left: auto; /* 要素Aを右寄せ */
  }
  .box-right {
    margin-right: auto; /* 要素Cを左寄せ */
  }
}
/* END */

/*スマホサイズのみ改行を入れる*/
.sp {
  display: none;
  }
  @media not all and (min-width: 568px){
  .sp {
  display: block;
  }
  }

/* フッターのフォント定義 */
.font-footer {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* フッターのリンクにホバー時の下線表示 */
footer .footer-container a[href] {
  text-decoration: none !important;
  transition: text-decoration 0.3s ease;
}

footer .footer-container a[href]:hover {
  text-decoration: underline !important;
}