@charset "UTF-8";

body,
html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #231815;
  font-weight: 400;
  font-size: 1rem;
  /* ブラウザのルートフォントサイズを基準に */
}

body.modal-open {
  overflow-y: scroll !important;
  /* スクロールバーを常に表示（ガクつき防止） */
  width: 100% !important;
  top: 0 !important;
  /* GTranslateが付けるtop: 40pxを打ち消す */
}

body.js_humburgerOpen {
  overflow-y: scroll !important;
  /* スクロールバーを常に表示（ガクつき防止） */
  position: fixed !important;
  width: 100% !important;
  top: 0 !important;
  /* GTranslateが付けるtop: 40pxを打ち消す */
}

body.js_humburgerOpen {
  overflow: hidden; /* メニュー開いたらスクロール止める */
}

h1 {
  padding: 0;
  margin: 0;
  font-size: 0;
}

h2 {
  line-height: 1.4;
  margin: 0;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  text-transform: capitalize;
}

h5 {
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  h5 {
    font-size: 1rem;
  }
}

p {
  margin-top: 10px;
}

p.mgclr {
  margin: 0;
}

p.intro {
  font-size: 1.3rem;
  margin: 12px 0 0;
  line-height: 24px;
}

a {
  color: #2F60CB;
  text-decoration: underline;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

a:active,
a:focus,
a:hover {
  -ms-filter: "alpha(opacity=80)";
  /* IE 8,9 */
  -moz-opacity: 0.8;
  /* FF, Netscape */
  -khtml-opacity: 0.8;
  /* Safari 1.x */
  opacity: 0.8;
  zoom: 1;
  /*IE*/
  filter: alpha(opacity=80);
}

/* 通常用テキストリンクアイコン */
a[target=_blank].txt {
  padding-right: 20px;
  background: url(../images/link-icon.png) right center/15px auto no-repeat;
}

/* 背景用テキストリンクアイコン */
a[target=_blank].txtw {
  padding-right: 20px;
  background: url(../images/link-icon-w.png) right center/15px auto no-repeat;
}

/* ベースカラー用テキストリンクアイコン */
a[target=_blank].txtg {
  padding-right: 20px;
  background: url(../images/link-icon-g.png) right center/15px auto no-repeat;
}

ul {
  list-style: none;
  /* ドットを削除 */
  padding-left: 0;
  /* 左側の余白を削除 */
}

.mainView {
  width: 100%;
  height: 100%;
}

.container-10 {
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.a_line {
  text-decoration: underline;
}

/* アンカーリンク */
#news .news-ttl h2 span {
  top: -60px;
  display: block;
  position: relative;
}

#sec .all_area h2 span {
  top: -120px;
  display: block;
  position: relative;
}

#sec .column-contents_area h2 span {
  top: -50px;
  display: block;
  position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
  #news .news-ttl h2 span {
    top: 40px;
  }

  #sec .all_area h2 span {
    top: -30px;
    display: block;
    position: relative;
  }

  #sec .column-contents_area h2 span {
    top: 50px;
  }
}

@media (min-width: 992px) {
  #news .news-ttl h2 span {
    top: 50px;
  }

  #sec .all_area h2 span {
    top: -30px;
    display: block;
    position: relative;
  }

  #sec .column-contents_area h2 span {
    top: 50px;
  }
}

.clearfix::after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

ul,
ol {
  padding: 0;
}

.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.flex-wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  /* 均等 */
  align-items: center;
}

.flex-left {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
}

.flex-y-center {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-center {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.flex-left-rs {
  display: block;
}

@media (min-width: 992px) {
  .flex-left-rs {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
  }
}

.flex-end {
  display: flex;
  align-items: flex-end;
}

.head-container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}

.header-home,
.header-sec {
  height: 120px;
}

@media screen and (min-width: 768px) {

  .header-home,
  .header-sec {
    height: 5px;
  }

  .head-container {
    height: 76px;
  }
}

/* head-containerにシャドウ */
.on {
  background-color: rgba(255, 255, 255, 1) !important;
  border-bottom: none !important;
  -webkit-box-shadow: 0 3px 10px -5px rgba(0, 0, 0, .75);
  -moz-box-shadow: 0 3px 10px -5px rgba(0, 0, 0, .75);
  -ms-box-shadow: 0 3px 10px -5px rgba(0, 0, 0, .75);
  -o-box-shadow: 0 3px 10px -5px rgba(0, 0, 0, .75);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, .75);
}

/* Button Classes */
.btn {
  margin-bottom: 4px;
  font-size: 1em;
  font-weight: 400;
  border-radius: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 8px 30px;
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .btn-xs {
    font-size: 1em;
    padding: 8px 10px;
  }
}

.btn [class^="icon-"],
[class*=" icon-"] {
  top: 2px;
}

.btn.btn-md {
  padding: 8px 20px !important;
}

.btn.btn-lg {
  padding: 18px 36px !important;
}

.btn:active {
  box-shadow: none !important;
  outline: none !important;
}

.btn:hover {
  opacity: .8;
}

.btn:focus {
  outline: 1px solid #231815;
  outline-offset: 1px;
}

/* Button Classes */
.btn-st1 {
  background-color: #017a98;
  border-radius: 20px;
  padding: 5px 10px 8px;
  white-space: break-spaces;
  line-height: 1.2;
  font-size: 0.8rem;
  font-weight: 700;
}

@media (min-width: 992px) {
  .btn-st1 {
    font-size: 0.95rem;
    padding: 5px 15px 8px;
  }
}

.btn-st1,
.btn-st1 li a {
  position: relative;
  margin: -3px 0 0;
}

.btn-st1 .fa-angle-right {
  font-size: 1.3rem;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-st2 {
  width: 260px;
  background-color: #017a98;
  border-radius: 8px;
  padding: 10px 20px;
  white-space: break-spaces;
  line-height: 1.2;
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
}

@media (min-width: 992px) {
  .btn-st2 {
    font-size: 0.9rem;
  }
}

.btn-st2 .fa-angle-right {
  font-size: 1.3rem;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-st3 {
  width: 290px;
  background-color: #017a98;
  border-radius: 8px;
  padding: 10px 20px;
  white-space: break-spaces;
  line-height: 1.2;
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
}

.btn-st3 .fa-angle-down {
  font-size: 1.3rem;
  position: absolute;
  right: 10px;
  top: 55%;
  transform: translateY(-50%);
}

.btn-st3::after {
  background: url(../images/search-icon.png) 0 0 / contain no-repeat;
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  top: 11px;
  left: 10px;
}

/* ニュース一覧用 */
.btn-st-news {
  border-radius: 20px;
  padding: 5px 50px 8px;
  white-space: break-spaces;
  line-height: 1.2;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid #fff;
}

@media (min-width: 992px) {
  .btn-st-news {
    font-size: 0.95rem;
  }
}

.btn-st-news,
.btn-st-news li a {
  position: relative;
}

/* アコーディオンボタン */
.btn-st-acd {
  width: 100%;
  background-color: #017a98;
  border-radius: 10px;
  padding: 10px 20px;
  position: relative;
}

.btn-st-acd span.btn-h3 {
  line-height: 1.2;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0
}

@media (min-width: 992px) {
  .btn-st-acd {
    font-size: 0.9rem;
  }
}

/* アコーディオンボタン2/ホワイト */
.btn-st-acd2 {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  position: relative;
  border: 1px solid #0B4AB4;
}

.btn-st-acd2 span.btn-h3 {
  line-height: 1.2;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #0B4AB4;
}

@media (min-width: 992px) {
  .btn-st-acd2 {
    font-size: 0.9rem;
  }
}

/* アコーディオンボタン/tokyo用 */
.btn-st-tkyacd {
  width: 100%;
  background: linear-gradient(135deg, rgb(6, 103, 207), rgb(9, 71, 179));
  border-radius: 10px;
  padding: 10px 20px;
  position: relative;
}

.btn-st-tkyacd span.btn-h3 {
  line-height: 1.2;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0
}

@media (min-width: 992px) {
  .btn-st-tkyacd {
    font-size: 0.9rem;
  }
}

/* アコーディオンボタン疑似要素 */
.acd-title::before {
  content: "";
  position: absolute;
  top: 45%;
  right: 15px;
  width: 23px;
  height: 3px;
  transform: rotate(90deg);
  background-color: #fff;
  transition: all .3s ease-in-out;
  border-radius: 10px;
}

.acd-title.open::before {
  transform: rotate(180deg);
}

.acd-title::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 15px;
  width: 23px;
  height: 3px;
  background-color: #fff;
  transition: all .2s ease-in-out;
  border-radius: 10px;
}

.acd-title.open::after {
  opacity: 0;
}

/* アコーディオンボタン疑似要素2/ホワイト */
.acd-title2::before {
  content: "";
  position: absolute;
  top: 45%;
  right: 15px;
  width: 23px;
  height: 3px;
  transform: rotate(90deg);
  background-color: #0B4AB4;
  transition: all .3s ease-in-out;
  border-radius: 10px;
}

.acd-title2.open::before {
  transform: rotate(180deg);
}

.acd-title2::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 15px;
  width: 23px;
  height: 3px;
  background-color: #0B4AB4;
  transition: all .2s ease-in-out;
  border-radius: 10px;
}

.acd-title2.open::after {
  opacity: 0;
}

/* もっと情報を見るボタン */
.btn-desc-acd {
  width: 100%;
  border-radius: 10px;
  padding: 8px 40px 8px 20px;
  /* 疑似要素のスペースを確保 */
  position: relative;
  margin: 15px 0 0;
  background: #fff;
  border: 1px solid #017A98;
  text-align: center;
}

.btn-desc-acd span.btn-h3 {
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #017a98;
  margin-left: 10px;
  position: relative;
}

@media (min-width: 992px) {
  .btn-desc-acd {
    font-size: 0.9rem;
  }
}

/* ▼ 疑似要素アイコン（開閉） */
.desc-title .desc-acd {
  position: absolute;
  display: inline-block;
  top: 50%;
  padding-left: 30px;
}

.desc-title .desc-acd::before,
.desc-title .desc-acd::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 21px;
  height: 3px;
  background-color: #017a98;
  transition: all .2s ease-in-out;
  border-radius: 10px;
  transform: translateY(-50%);
}

.desc-title .desc-acd::before {
  transform: translateY(-50%) rotate(90deg);
}

.desc-title.open .desc-acd::before {
  transform: translateY(-50%) rotate(180deg);
}

.desc-title.open .desc-acd::after {
  opacity: 0;
}

/* 疑似テキストの装飾 */
.btn-desc-acd .btn-h3::after {
  display: inline-block;
  margin-right: 30px;
  /* アイコンとの間隔を確保 */
}

/* 検索オプションボタン */
.btn-srch-acd {
  width: 300px;
  background-color: #ebfffc;
  border-radius: 7px;
  padding: 5px 20px;
  position: relative;
  margin-bottom: 0;
  opacity: 1 !important;
}

.btn-srch-acd span.btn-h3 {
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #231815;
}

@media (min-width: 992px) {
  .btn-srch-acd {
    font-size: 0.9rem;
  }
}

/* 検索オプションボタンの疑似要素 */
.srch-title .srch-acd {
  position: relative;
}

.srch-title .srch-acd::before {
  content: "";
  position: absolute;
  top: 10px;
  right: -35px;
  width: 25px;
  height: 3px;
  transform: rotate(90deg);
  background-color: #017a98;
  transition: all .2s ease-in-out;
  border-radius: 10px;
}

.srch-title.open .srch-acd::before {
  transform: rotate(180deg);
}

.srch-title .srch-acd::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -35px;
  width: 25px;
  height: 3px;
  background-color: #017a98;
  transition: all .2s ease-in-out;
  border-radius: 10px;
}

.srch-title.open .srch-acd::after {
  opacity: 0;
}

/* 検索ボタン */
.search-btn {
  font-size: 1rem;
  font-weight: 700;
  width: 250px;
  background-color: #bebebe;
  border-radius: 10px;
  padding: 10px 20px;
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
}

@media (min-width: 992px) {
  .search-btn {
    width: 320px;
  }
}

.search-btn .fa-angle-right {
  font-size: 1.3rem;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.search-btn.enabled {
  background-color: #017a98;
  cursor: pointer;
}

/* ウェブサイトボタン */
.website-btn {
  font-size: 0.95rem;
  font-weight: 700;
  width: 250px;
  background-color: #017a98;
  border-radius: 20px;
  padding: 10px 20px;
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
}

.btn-link-icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/link-icon-w.png) 0 0 / contain no-repeat;
  content: '';
  margin: 0 5px;
  width: 13px;
  height: 13px;
}

/* ウェブサイトボタン/tokyo用 */
.website-tkybtn {
  font-size: 0.95rem;
  font-weight: 700;
  width: 250px;
  background: linear-gradient(135deg, rgb(6, 103, 207), rgb(9, 71, 179));
  border-radius: 20px;
  padding: 10px 20px;
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
}

/* 戻るボタン */
.back-btn {
  font-size: 1rem;
  font-weight: 700;
  width: 160px;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  color: #017a98;
  border: none;
  cursor: pointer;
  position: relative;
  border: 1px solid #017A98;
}

.back-icon {
  position: absolute;
  right: 15px;
  top: 53%;
  transform: translateY(-50%);
  background: url(../images/back-icon.png) 0 0 / contain no-repeat;
  content: '';
  margin: 0 5px;
  width: 13px;
  height: 13px;
}

/*  検索条件を変更する用ボタン */
.back-to-search-btn {
  width: 250px;
}

/* FAQ用アコーディオンボタン */
.btn-st-faq {
  width: 100%;
  background-color: initial;
  padding: 10px 0;
  position: relative;
  text-align: left;
  color: #231815;
}

.btn-st-faq span.btn-h3 {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0
}

@media (min-width: 992px) {
  .btn-st-faq span.btn-h3 {
    font-size: 1.1rem;
  }
}

.btn-st-faq span.qa {
  line-height: 1.2;
  font-weight: 700;
  margin-right: 5px;
  color: #017a98;
  font-size: 1.1rem;
}

.btn-st-faq.btn-outline {
  background: transparent;
  color: #5bc0de;
  border: 2px solid #5bc0de;
}

/* アコーディオンボタン疑似要素 */
.faq-title::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 17px;
  width: 15px;
  height: 15px;
  border-top: 3px solid #C6E7E2;
  border-left: 3px solid #C6E7E2;
  font-size: 1.3rem;
  pointer-events: none;
  transition: all .3s ease-in-out;
  transform: translateY(-50%) rotate(225deg);
}

.faq-title.open::before {
  transform: translateY(-50%) rotate(45deg);
  top: 23px;
}

/* category Button Classes */
.btn-cat {
  background-color: #fff;
  border-radius: 20px;
  padding: 7px;
  white-space: break-spaces;
  line-height: 1.1;
  font-size: 0.8rem;
}

/* Navigation */
#menu,
#menu-sec {
  padding: 0;
  transition: all 0.8s;
}

/* pc bar 切替 */
#menu.navbar-default {
  background: none;
  border: none;
  /* navbar全体の高さ */
  height: 96px;
  z-index: 100;
}

#menu-sec.navbar-default {
  background-color: rgba(255, 255, 255, 1);
  border-top: none;
  border-bottom: solid 1px rgba(255, 255, 255, 1);
  border-right: none;
  border-left: none;
}

#menu a.navbar-brand,
#menu-sec a.navbar-brand {
  font-size: 1.9rem;
  color: #fff;
  font-weight: 900;
}

/* language toggle switch */
.display1 {
  height: 51px;
  padding: 11px 0;
  background: linear-gradient(90deg, rgb(0, 126, 128), rgb(0, 126, 158));
}

.switch {
  margin: 0;
  /* flex-box 追加 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* pc設定無効化 */
  background: initial;
  width: initial;
  position: initial;
  padding: 0;
  border: initial;

  >.corner {
    display: none;
  }

  >.corner::before {
    display: none;
  }
}

@media (min-width: 992px) {
  .display1 {
    height: 40px;
    padding: 6px 0;
  }

  .switch {
    justify-content: flex-end;
  }
}

/* モバイルのnavbar全体の高さ */
.navbar-fixed-top {
  height: 100px;
}

/* 768px以上時のnavbarの固定解除 */
@media screen and (min-width: 768px) {
  .navbar-fixed-top {
    position: relative;
  }
}

/* バーガーメニューの余白調整 */
.navbar-nav {
  margin: 5px 0;
}

/* モバイルメニューとブレイクポイントの調整 */
#menu .nav li,
#menu-sec .nav li {
  border: solid 1px #ddd;
  margin: -1px 0 0;
}

#menu .nav li a:hover span::before,
#menu-sec .nav li a:hover span::before {
  display: none;
}

#menu .nav li.active,
#menu-sec .nav li.active {
  background-color: rgba(255, 255, 255, .5);
  padding: 20px 10px;
}

#menu .nav li a,
#menu-sec .nav li a {
  display: block;
  padding: 20px 10px;
  color: #222;
}

/* 右矢印アイコン */
.right-icon {
  position: absolute;
  right: 0;
  top: 53%;
  transform: translateY(-50%);
  background: url(../images/right-icon.png) 0 0 / contain no-repeat;
  margin: 0 5px;
  width: 13px;
  height: 13px;
  cursor: pointer;
}

/* 右矢印アイコン白 */
.right-icon-w {
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/right-icon-w.png) 0 0 / contain no-repeat;
  margin: 0 5px;
  width: 13px;
  height: 13px;
  cursor: pointer;
}

/* 右矢印アイコン黒 */
.right-icon-b {
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/right-icon-b.png) 0 0 / contain no-repeat;
  margin: 0 5px;
  width: 13px;
  height: 13px;
  cursor: pointer;
}

/* 下矢印アイコン */
.down-icon {
  position: absolute;
  right: 0;
  top: 53%;
  transform: translateY(-50%);
  background: url(../images/down-icon.png) 0 0 / contain no-repeat;
  margin: 0 5px;
  width: 13px;
  height: 13px;
  cursor: pointer;
}

/* 下矢印アイコン白 */
.down-icon-w {
  position: absolute;
  right: 5px;
  top: 58%;
  transform: translateY(-50%);
  background: url(../images/down-icon-w.png) 0 0 / contain no-repeat;
  margin: 0 5px;
  width: 13px;
  height: 13px;
  cursor: pointer;
}

/* display2 設定 */
.language img {
  margin: 3px 0 0 10px;
  width: 20px;
  height: 18px;
}

.language select {
  position: relative;
  border: none;
  outline: none;
  font-weight: bold;
  background: none;
  color: #fff;
  font-size: 0.9rem;
}

.language select:hover {
  outline: 1px solid #222;
  opacity: 0.8;
}

@media (min-width: 992px) {
  .btn-toggle.js-ruby-toggle {
    margin-left: 70px;
  }
}

.language select option {
  color: #222;
}

.navbar-button {
  float: right;
  padding-top: 5px;
}

/* 新バーガーメニューの設定 */
.mobile-menu {
  height: 45px;
}

@media (min-width: 992px) {
  .mobile-menu {
    margin-left: auto;
    height: 50px;
  }
}

.el_humburger {
  background: none;
  border: none;
  padding: 0;
  -webkit-appearance: none; /* iOS/Safariのデフォルトスタイルを無効化 */
  -moz-appearance: none;    /* Firefoxのデフォルトスタイルを無効化 */
  appearance: none;
  width: 40px;
  height: 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* padding-top: 0; は不要 */
  cursor: pointer;
  pointer-events: auto;
  color: #231815;
  text-align: center;
  margin: 10px 5px 0 0;
}
@media (min-width: 992px) {
  .el_humburger {
    margin: 14px 20px 0 0;
  }
}

@media screen and (max-width: 840px) {
  #factory .el_humburger {
    display: none;
  }
}

.el_humburger_wrapper {
  margin-bottom: 5px;
  width: 42px;
  display: inline-block;
}

@media screen and (max-width: 840px) {
  .el_humburger_wrapper {
    margin-bottom: 5px;
    width: 40px;
  }
}

.el_humburger_text {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
  display: none;
}

.el_humburger_text.el_humburger_text__close {
  display: none;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__close {
  display: block;
}

@media screen and (max-width: 840px) {
  .el_humburger_text {
    font-size: 0.65rem;
    padding-top: 2px;
  }
}

@media screen and (max-width: 840px) {
  .el_humburger_text svg path {
    -webkit-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    -o-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    fill: #000;
  }
}

@media screen and (max-width: 840px) {
  .js_humburgerOpen .el_humburger_text svg path {
    fill: #000;
  }
}

.el_humburger span.el_humburger_bar {
  display: block;
  width: 100%;
  margin: 0 auto 7.5px;
  height: 0.22em;
  border-radius: 10px;
  background: #000;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.el_humburger span.el_humburger_bar:last-child {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
  background: #000;
}

@media screen and (max-width: 840px) {
  .el_humburger span.el_humburger_bar {
    left: 0;
    top: 0;
    background: #000;
  }
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
  -webkit-transform: translateY(11px) rotate(-45deg);
  -ms-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
  opacity: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-11px) rotate(45deg);
  -ms-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_humburgerButton__close span.el_humburger_bar {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #000;
}

.el_humburgerButton__close span.el_humburger_bar.top {
  -webkit-transform: translateY(5px) rotate(-45deg);
  -ms-transform: translateY(5px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}

/* mobileメニュークラス */
.navi {
  position: fixed;
  top: 116px;
  right: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  width: 450px;
  z-index: 99;
  padding: 20px 20px 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  transform: translateZ(0) translateX(100%);
  overflow: auto;
}

.js_humburgerOpen .navi {
  transform: translateZ(0) translateX(0);
}

.navi .shadow-left {
  position: fixed;
  right: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  width: 450px;
  z-index: 3;
  padding-top: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
  transform: translateZ(0) translateX(100%);
  overflow: auto;
}

.js_humburgerOpen .navi {
  transform: translateZ(0) translateX(0);
}

@media screen and (max-width: 840px) {
  .js_humburgerOpen .navi {
    width: 320px;
    max-height: 100vh;
    /* ビューポートの高さに合わせる */
    overflow-y: auto;
    /* スクロールを有効にする */
  }
}

.navi_item {
  border-bottom: 1px solid #1C7D83;
  padding-bottom: 10px;
}

.navi_item li {
  line-height: 1.1;
  padding: 15px 10px 15px 0;
  position: relative;
}

.navi_item li,
.subnavi_item li {
  font-weight: 600;
}

.subnavi_item {
  margin-top: 10px;
}

.subnavi_item li {
  font-size: 1.15rem;
  line-height: 1.1;
  padding: 15px 10px 15px 0;
}

.navi_item li a,
.subnavi_item li a {
  color: #231815;
  display: block;
  text-decoration: none;
  font-size: 1.2rem;
}

.navi_item li .fa-angle-right {
  font-size: 1.3rem;
  color: #017a98;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* mainView シャドウクラス */
.mainView.overlay {
  position: relative;
}

.mainView.overlay::before {
  content: "";
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* シャドウの色と濃さ */
  pointer-events: none;
  /* 背景のクリック操作を妨げない */
}

/* headar mobile 切替 */
.display2 {
  display: block;
  padding: 0;
}

.mobile-logo {
  display: block;
  margin: 5px 0;
}

/* スクロールしない通常時 */
.mobile-logo img {
  height: 55px;
  display: block;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

/* スクロールされた時 */
.on .display2 .mobile-logo img {
  height: 40px;
}

.mobile-tokyologo {
  display: block;
  height: auto;
}

.mobile-tokyologo img {
  width: 70px;
  margin-top: 10px;
  margin-right: -24px;
}

@media (min-width: 992px) {
  .mobile-tokyologo {
    margin-right: 40px;
  }

  .mobile-tokyologo img {
    width: 80px;
    margin-top: 20px;
    margin-right: 0;
  }

  .mobile-logo img {
    height: 60px;
  }
}

/* language toggle switch */
.btn-toggle {
  margin: 0 13px 0 0;
  padding: 0;
  position: relative;
  top: 0;
  right: 0;
  border: none;
  height: 28px;
  width: 56px;
  border-radius: 1.5rem;
  color: #6b7381;
  background: #017A98;
  border: 3px solid #fff;
  opacity: 1 !important;
}

.example {
  margin: 4rem auto;
}

.example>.row {
  margin-top: 2rem;
  height: 5rem;
  vertical-align: middle;
  text-align: center;
  border: 1px solid rgba(189, 193, 200, 0.5);
}

.example>.row:first-of-type {
  border: none;
  height: auto;
  text-align: left;
}

.example h3 {
  font-weight: 400;
}

.example h3>small {
  font-weight: 200;
  font-size: .75em;
  color: #939aa5;
}

.example h6 {
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: 3.32px;
  text-transform: uppercase;
  color: #bdc1c8;
  margin: 0;
  line-height: 5rem;
}

#menu .btn-toggle:focus,
#menu .btn-toggle:focus.active,
#menu .btn-toggle.focus,
#menu .btn-toggle.focus.active {
  outline: none;
}

#menu .btn-toggle::before,
.btn-toggle::after {
  line-height: 1.5rem;
  width: 60px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  transition: opacity .25s;
}

#menu .btn-toggle::before {
  content: 'ふりがな';
  left: -4.2rem;
  font-size: 0.8rem;
}

#menu .btn-toggle::after {
  /* content: 'On'; */
  right: -4rem;
  opacity: .5;
}

#menu .btn-toggle>.handle {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 1.125rem;
  background: #fff;
  transition: left .25s;
}

#menu .btn-toggle.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

#menu .btn-toggle.active {
  transition: background-color .25s;
}

#menu .btn-toggle.active>.handle {
  left: 30px;
  transition: left .25s;
}

#menu .btn-toggle.active::before {
  opacity: .95;
}

#menu .btn-toggle.active::after {
  opacity: 1;
}

.btn-toggle.btn-sm::before,
.btn-toggle.btn-sm::after {
  line-height: -0.5rem;
  color: #fff;
  letter-spacing: .75px;
  left: 0.4125rem;
  width: 2.325rem;
}

.btn-toggle.btn-sm::before {
  text-align: right;
}

.btn-toggle.btn-sm::after {
  text-align: left;
  opacity: 0;
}

.btn-toggle.btn-sm.active::before {
  opacity: 0;
}

.btn-toggle.btn-sm.active::after {
  opacity: 1;
}

.btn-toggle.btn-xs::before,
.btn-toggle.btn-xs::after {
  display: none;
}

.btn-toggle::before,
.btn-toggle::after {
  color: #fff;
}

.btn-toggle.active {
  background-color: #008733;
}

.btn-toggle.btn-lg {
  margin: 0 5rem;
  padding: 0;
  position: relative;
  border: none;
  height: 2.5rem;
  width: 5rem;
  border-radius: 2.5rem;
}

.btn-toggle.btn-lg:focus,
.btn-toggle.btn-lg:focus.active,
.btn-toggle.btn-lg.focus,
.btn-toggle.btn-lg.focus.active {
  outline: none;
}

.btn-toggle.btn-lg::before,
.btn-toggle.btn-lg::after {
  line-height: 2.5rem;
  width: 5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity .25s;
}

.btn-toggle.btn-lg::before {
  content: 'Off';
  left: -5rem;
}

.btn-toggle.btn-lg::after {
  content: 'On';
  right: -5rem;
  opacity: .5;
}

.btn-toggle.btn-lg>.handle {
  position: absolute;
  top: 0.3125rem;
  left: 0.3125rem;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 1.875rem;
  background: #fff;
  transition: left .25s;
}

.btn-toggle.btn-lg.active {
  transition: background-color .25s;
}

.btn-toggle.btn-lg.active>.handle {
  left: 2.8125rem;
  transition: left .25s;
}

.btn-toggle.btn-lg.active::before {
  opacity: .5;
}

.btn-toggle.btn-lg.active::after {
  opacity: 1;
}

.btn-toggle.btn-lg.btn-sm::before,
.btn-toggle.btn-lg.btn-sm::after {
  line-height: 0.5rem;
  color: #fff;
  letter-spacing: .75px;
  left: 0.6875rem;
  width: 3.875rem;
}

.btn-toggle.btn-lg.btn-sm::before {
  text-align: right;
}

.btn-toggle.btn-lg.btn-sm::after {
  text-align: left;
  opacity: 0;
}

.btn-toggle.btn-lg.btn-sm.active::before {
  opacity: 0;
}

.btn-toggle.btn-lg.btn-sm.active::after {
  opacity: 1;
}

.btn-toggle.btn-lg.btn-xs::before,
.btn-toggle.btn-lg.btn-xs::after {
  display: none;
}

.btn-toggle.btn-sm {
  margin: 0 .5rem;
  padding: 0;
  position: relative;
  border: none;
  height: 1.5rem;
  width: 3rem;
  border-radius: 1.5rem;
}

.btn-toggle.btn-sm::focus,
.btn-toggle.btn-sm::focus.active,
.btn-toggle.btn-sm.focus,
.btn-toggle.btn-sm.focus.active {
  outline: none;
}

.btn-toggle.btn-sm::before,
.btn-toggle.btn-sm::after {
  line-height: 1.5rem;
  width: .5rem;
  text-align: center;
  font-weight: 600;
  font-size: .55rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity .25s;
}

.btn-toggle.btn-sm::before {
  content: 'Off';
  left: -0.5rem;
}

.btn-toggle.btn-sm::after {
  content: 'On';
  right: -0.5rem;
  opacity: .5;
}

.btn-toggle.btn-sm>.handle {
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 1.125rem;
  background: #fff;
  transition: left .25s;
}

.btn-toggle.btn-sm.active {
  transition: background-color .25s;
}

.btn-toggle.btn-sm.active>.handle {
  left: 1.6875rem;
  transition: left .25s;
}

.btn-toggle.btn-sm.active::before {
  opacity: .5;
}

.btn-toggle.btn-sm.active::after {
  opacity: 1;
}

.btn-toggle.btn-sm.btn-sm::before,
.btn-toggle.btn-sm.btn-sm::after {
  line-height: -0.5rem;
  color: #fff;
  letter-spacing: .75px;
  left: 0.4125rem;
  width: 2.325rem;
}

.btn-toggle.btn-sm.btn-sm::before {
  text-align: right;
}

.btn-toggle.btn-sm.btn-sm::after {
  text-align: left;
  opacity: 0;
}

.btn-toggle.btn-sm.btn-sm.active::before {
  opacity: 0;
}

.btn-toggle.btn-sm.btn-sm.active::after {
  opacity: 1;
}

.btn-toggle.btn-sm.btn-xs::before,
.btn-toggle.btn-sm.btn-xs::after {
  display: none;
}

.btn-toggle.btn-xs {
  margin: 0 0;
  padding: 0;
  position: relative;
  border: none;
  height: 1rem;
  width: 2rem;
  border-radius: 1rem;
}

.btn-toggle.btn-xs::focus,
.btn-toggle.btn-xs::focus.active,
.btn-toggle.btn-xs.focus,
.btn-toggle.btn-xs.focus.active {
  outline: none;
}

.btn-toggle.btn-xs::before,
.btn-toggle.btn-xs::after {
  line-height: 1rem;
  width: 0;
  text-align: center;
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity .25s;
}

.btn-toggle.btn-xs::before {
  content: 'Off';
  left: 0;
}

.btn-toggle.btn-xs::after {
  content: 'On';
  right: 0;
  opacity: .5;
}

.btn-toggle.btn-xs>.handle {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.75rem;
  background: #fff;
  transition: left .25s;
}

.btn-toggle.btn-xs.active {
  transition: background-color .25s;
}

.btn-toggle.btn-xs.active>.handle {
  left: 1.125rem;
  transition: left .25s;
}

.btn-toggle.btn-xs.active::before {
  opacity: .5;
}

.btn-toggle.btn-xs.active::after {
  opacity: 1;
}

.btn-toggle.btn-xs.btn-sm::before,
.btn-toggle.btn-xs.btn-sm::after {
  line-height: -1rem;
  color: #fff;
  letter-spacing: .75px;
  left: 0.275rem;
  width: 1.55rem;
}

.btn-toggle.btn-xs.btn-sm::before {
  text-align: right;
}

.btn-toggle.btn-xs.btn-sm::after {
  text-align: left;
  opacity: 0;
}

.btn-toggle.btn-xs.btn-sm.active::before {
  opacity: 0;
}

.btn-toggle.btn-xs.btn-sm.active::after {
  opacity: 1;
}

.btn-toggle.btn-xs.btn-xs::before,
.btn-toggle.btn-xs.btn-xs::after {
  display: none;
}

.btn-toggle.btn-secondary {
  color: #6b7381;
  background: #bdc1c8;
}

.btn-toggle.btn-secondary::before,
.btn-toggle.btn-secondary::after {
  color: #6b7381;
}

.btn-toggle.btn-secondary.active {
  background-color: #ff8300;
}

/* Common Style */
#notice,
#main,
#srch,
#about,
#relate,
#news,
#sec,
#sec-srch,
#sec-fs {
  position: relative;
  background-repeat: no-repeat;
}

#main,
#relate,
#column {
  padding: 20px 0;
}

#about {
  padding: 20px 15px 0 0;
}

#news {
  padding: 20px 0 20px 15px;
}

#button {
  padding: 0;
}

#sec,
#sec-srch {
  padding: 40px 0;
}

#sec-fs {
  padding: 40px 0 240px;
}

@media screen and (min-width: 992px) {
  #main {
    padding: 40px 0;
  }

  #srch {
    padding: 20px 0;
  }

  #relate {
    padding: 20px 0;
  }

  #about {
    padding: 40px 0;
  }

  #news {
    padding: 40px 0;
  }

  #column {
    padding: 40px 0;
  }

  #button {
    padding: 0;
  }
}

/* タイトル関連　*/
.main-ttl h1,
.main-ttl h2,
.main-ttl h3,
.main-ttl p.ttl {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #017a98;
  line-height: 1.4;
  margin: 0;
}

.tky-ttl h1 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0B4AB4;
  line-height: 1.4;
  margin: 0;
}

.news-ttl h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

.sub-ttl h1,
.sub-ttl h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #231815;
}

.column-ttl h1 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #017a98;
}

.common-ttl h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #017a98;
  text-align: center;
}

.sub-ttl h1 span,
.sub-ttl h2 span {
  font-size: 1.1rem;
}

@media (min-width: 992px) {

  .main-ttl h1,
  .tky-ttl h1,
  .main-ttl h2,
  .main-ttl h3,
  .sub-ttl h1,
  .news-ttl h1,
  .news-ttl h2,
  .main-ttl p.ttl,
  .sub-ttl h2 {
    font-size: 1.9rem;
  }

  .column-ttl h1 {
    font-size: 1.8rem;
  }

  .common-ttl h1 {
    font-size: 1.8rem;
  }

  .sub-ttl h1 span,
  .sub-ttl h2 span {
    font-size: 1.3rem;
  }
}

.relate-box {
  width: 100%;
  padding: 40px 0;
}

.column-box {
  width: 100%;
  padding: 40px 0;
}

#srch h4 {
  line-height: 1.5;
}

/* 重要なお知らせ */
.notice {
  display: block;
  padding: 0;
  max-width: 800px;
  margin: 15px auto;
}

.notice-box {
  padding: 10px;
  border: 1px solid #DF3232;
  background-color: #fff;
  border-radius: 5px;
}

.notice-box p {
  font-size: 0.75rem;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

.notice-box p a {
  color: #231815;
}

.notice-label-date {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.notice-label {
  width: 100px;
  max-height: 25px;
  padding: 1px 2px 0;
  background-color: #DF3232;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.notice-date {
  padding: 0;
  margin-left: 5px;
  color: #DF3232;
}

.notice-txt {
  padding: 0;
  margin-left: 5px;
  color: #231815;
}

.notice-date,
.notice-txt {
  margin-top: 1px;
}

/* home breadcrumbs */
.breadcrumbs {
  display: block;
}

.breadcrumbs ul {
  list-style: none;
}

.breadcrumbs ul li {
  display: inline;
}

.breadcrumbs ul li a {
  color: inherit;
  text-decoration: none;
  color: #231815;
  font-size: 0.75rem;
}

.breadcrumbs ul li+.breadcrumbs ul li::before {
  content: ">";
  margin: .5em;
}

/* secound breadcrumbs */
.sec-breadcrumbs {
  display: block;
}

.sec-breadcrumbs-bar {
  padding: 10px 0 0;
  font-size: 0.8rem;
  background-color: #ebfffc;
}

.sec-breadcrumbs-bar ul {
  list-style: none;
}

.sec-breadcrumbs-bar ul li {
  display: inline;
  font-size: 0.75rem;
}

.sec-breadcrumbs-bar ul li a {
  color: inherit;
  text-decoration: none;
  font-size: 0.75rem;
}

.sec-breadcrumbs-bar ul li a::after {
  background: url(../images/breadcrumbs-right.png) 0 0 / contain no-repeat;
  content: '';
  margin: 0 5px;
  width: 10px;
  height: 10px;
  display: inline-block;
}

a.fa.fa-angle-down {
  padding: 10px 15px;
  color: #fff;
  border: 1px solid #b4b4b4;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.5s;
}

a.fa.fa-angle-down:hover {
  background: rgba(255, 70, 0, .75);
  color: #fff;
  border: 1px solid #fff;
}

/* TOKYO多様な学びの場・居場所ナビ タイトル */
.main-logo {
  margin: 5px 0;
}

.main-logo img {
  display: block;
  width: 180px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.main-logo h1 {
  text-align: center;
  color: #000;
  font-size: 0.95rem;
  font-weight: 600;
}

@media screen and (min-width: 992px) {
  .main-logo img {
    width: 250px;
  }

  .main-logo h1 {
    font-size: 1.2rem;
  }
}

.main-logo h1 span.h1-left {
  display: inline-block;
  width: 15px;
  height: 2px;
  position: relative;
  top: -5px;
  left: -5px;
  background-color: #017a98;
}

.main-logo h1 span.h1-right {
  display: inline-block;
  width: 15px;
  height: 2px;
  position: relative;
  top: -5px;
  right: -5px;
  background-color: #017a98;
}

/* 不登校をさがす */
.btnbox-col3 {
  height: 100%;
  margin-bottom: 0;
  position: relative;
  padding: 10px;
  background-color: #fff;
  border-radius: 13px;
  border-bottom: none !important;
  -webkit-box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  -moz-box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  -ms-box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  -o-box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  display: flex;
  flex-direction: column;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.btnbox-col3 a {
  text-decoration: none;
}

.btnbox-col3 p.flex-end {
  color: #231815;
}

.btnbox-col3 p {
  font-size: 0.82rem;
  line-height: 1.2;
  margin-top: 0;
  justify-content: center;
  flex-grow: 1;
}

.btnbox-col3 p strong {
  margin-top: 10px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .btnbox-col3 p {
    font-size: 0.95rem;
  }
}

@media screen and (min-width: 992px) {
  .btnbox-col3 p {
    font-size: 1rem;
  }
}

.btnbox-col12 {
  color: #222;
  margin-bottom: 30px;
  position: relative;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  border-bottom: none !important;
  -webkit-box-shadow: 0 0 8px #ccc;
  -moz-box-shadow: 0 0 8px #ccc;
  -ms-box-shadow: 0 0 8px #ccc;
  -o-box-shadow: 0 0 8px #ccc;
  box-shadow: 0 0 8px #ccc;
}

/* お知らせ */
.news {
  display: block;
  margin-bottom: 30px;
}

.news-txtbox {
  width: 100%;
  padding: 40px 20px 40px 30px;
}

/* お知らせ スクロールバー */
.news::-webkit-scrollbar {
  width: 7px;
}

.news::-webkit-scrollbar-track {
  background-color: #d5eff9;
  border-radius: 8px;
}

.news::-webkit-scrollbar-thumb {
  background-color: #017a98;
  border-radius: 8px;
}

/* simplebar スクロールバー */
.news .simplebar-track.simplebar-vertical {
  background-color: #D5EFF9;
  border-radius: 8px;
}

.news-box {
  margin-right: 10px;
  border-bottom: 1px solid #fff;
}

.news-list {
  padding: 10px;
  border-top: 1px solid #fff;
}

.news-list p {
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

.news-label-date {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.news-label {
  width: auto;
  max-height: 25px;
  padding: 1px 10px 2px;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.news-label p {
  color: #017a98;
}

@media screen and (min-width: 767px) {
  .news-label {
    padding: 2px 7px 2px;
  }
}

.news-date {
  padding: 0;
  margin-left: 5px;
  color: #fff;
  margin-top: 1px;
}

.news-txt {
  padding: 0;
  margin-left: 5px;
  margin-top: 7px;
  color: #fff;
  text-align: left;
}

.news-txt a {
  color: #fff;
  text-decoration: none;
}

.news-txt a:hover {
  color: #fff;
  text-decoration: underline;
}

@media screen and (min-width: 992px) {
  .item-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
  }

  .news-label-date {
    width: 180px;
  }

  .news-date {
    margin-right: 10px;
  }

  .news-txt {
    margin: 0;
  }
}

.news-txt p {
  font-size: 0.9rem;
}

/* お知らせ一覧 */
.newslist {
  display: block;
  margin-bottom: 20px;
}

.newslist-txtbox {
  width: 100%;
  padding: 40px 20px 40px 30px;
}

.newslist-box {
  margin-right: 10px;
  border-bottom: 1px solid #fff;
}

.newslist-list {
  padding: 10px;
  border-top: 1px solid #E4EEEE;
}

.newslist-list:last-child {
  border-bottom: 1px solid #E4EEEE;
}

.newslist-list p {
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  color: #fff;
}

.newslist-label-date {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.newslist-label {
  width: auto;
  max-height: 25px;
  padding: 1px 10px 2px;
  background-color: #017a98;
  border-radius: 20px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (min-width: 767px) {
  .newslist-label {
    padding: 2px 7px 2px;
  }
}

.newslist-date {
  padding: 0;
  margin-left: 5px;
  margin-top: 1px;
}

.newslist-date p {
  color: #017a98;
}

.newslist-txt {
  padding: 0;
  margin-left: 5px;
  margin-top: 7px;
  text-align: left;
}

.newslist-txt a {
  text-decoration: none;
  color: #017a98;
}

.newslist-txt a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .newslist-item-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
  }

  .newslist-label-date {
    width: 180px;
  }

  .newslist-date {
    margin-right: 10px;
  }

  .newslist-txt {
    margin: 0;
  }
}

.newslist-txt p {
  font-size: 0.9rem;
  color: #017a98;
}

/* 不登校を知る（コラム） */
.column {
  display: block;
  height: 270px;
  overflow-y: scroll;
}

/* コラム用btnbox */
.column-btnbox {
  padding: 0;
  margin: 0;
  height: 100%;
  margin-bottom: 0;
}

.column-btnbox a {
  text-decoration: none;
}

/* 元の a:hover の下線を消す */
.column-btnbox a:hover {
  text-decoration: none;
  /* 全体の下線を無効化 */
}

/* res-txt 内のテキストだけ下線を出す */
.column-btnbox .column-res .res-txt p:hover {
  text-decoration: underline;
}

.column-res {
  height: 100%;
  margin-bottom: 0;
  position: relative;
  padding: 13px;
  background-color: #fff;
  border-radius: 10px;
  border-bottom: none !important;
  -webkit-box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  -moz-box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  -ms-box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  -o-box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  display: flex;
}

.column-res>div {
  width: 120px;
}

.column-res .res-img {
  position: relative;
  height: 120px;
  margin-right: 10px;
}

.column-res .res-img img {
  border-radius: 8px;
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.column-res .res-list {
  padding: 0;
  flex-grow: 1;
  /* テキスト部分の高さを調整 */
}

.column-res .res-list p {
  color: #231815;
}

.column-res .res-label {
  padding: 1px 10px 2px;
  background-color: #017a98;
  border-radius: 10px;
  text-align: center;
  height: 20px;
}

.column-res .res-label p {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.column-res .res-date {
  padding: 0;
  margin-left: 5px;
  margin-top: 2px;
}

.column-res .res-date p {
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.column-res .res-txt {
  padding: 0;
  margin-left: 5px;
  margin-top: 7px;
  text-align: left;
}

.column-res .res-txt p {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

.column-res .res-txt p a {
  color: #231815;
  text-decoration: none;
}

.column-res .res-txt p a:hover {
  color: #231815;
  text-decoration: underline;
}

@media screen and (min-width: 767px) {
  .column-res {
    flex-direction: column;
  }

  .column-res>div {
    width: auto;
  }

  .column-res .res-img {
    position: relative;
    width: 100%;
    padding-top: 62.5%;
    overflow: hidden;
  }

  .column-res .res-img img {
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .column-res .res-list {
    padding: 10px 0;
    flex-grow: 1;
    /* テキスト部分の高さを調整 */
  }

  .column-res .res-label {
    padding: 2px 10px 2px;
    height: 22px;
  }
}

/* よく読まれている記事 */
.column-box {
  margin-right: 10px;
  border-bottom: 1px solid #fff;
}

.column-img {
  position: relative;
  width: 100%;
  padding-top: 62.5%;
  overflow: hidden;
}

.column-img img {
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-list {
  padding: 10px 0;
  flex-grow: 1;
  /* テキスト部分の高さを調整 */
}

.column-list p {
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.column-label {
  width: auto;
  height: 20px;
  padding: 3px 7px 2px;
  background-color: #017a98;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.column-date {
  padding: 0;
  margin-left: 5px;
  margin-top: 3px;
}

.column-label,
.column-date {
  display: inline-block;
  vertical-align: middle;
}

.column-txt {
  padding: 0;
  margin-left: 5px;
  margin-top: 7px;
  text-align: left;
}

.column-txt p {
  font-size: 1rem;
  margin: 0;
}

.column-txt p a {
  color: #231815;
  text-decoration: none;
}

.column-txt p a:hover {
  color: #231815;
  text-decoration: underline;
}

/* Second content */
/* 区市町村ページ */
/*Tab*/
.all_area {
  margin: 30px 0;
}

.tab_area {
  overflow-x: auto;
  display: flex;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tab_area::-webkit-scrollbar {
  display: none;
}

.all_area div.content_area {
  /*Tabの内容を表示するエリアの装飾*/
  padding: 0;
}

/*Tabの装飾*/
.tab_area li {
  color: #017a98;
  margin: 3px;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  background-color: #fff;
}

.tab_area li a {
  padding: 0;
  display: inline-block;
}

.tab_area li img,
.tab_area li a img {
  width: 54px;
  height: 35px;
}

/*アクティブタブの装飾*/
.tab_area li.select {
  background: #ebfffc;
}

.tab_area li,
.tab_area li:link,
.tab_area li:visited {
  display: inline-block;
  /*アンカーリンク用*/
  display: block;
  transition: all .20s linear 0s;
  -o-transition: all .20s linear 0s;
  -ms-transition: all .20s linear 0s;
  -moz-transition: all .20s linear 0s;
  -webkit-transition: all .20s linear 0s;
}

.select_area {
  margin: 30px 5px 50px;
}

.select_area .cs-ttl h2 {
  margin: 10px 0;
}

.select_area .cs-ttl h2 img {
  display: inline-block;
  height: 25px;
}

.mun-menu-box {
  padding: 0;
  border-bottom: 1px solid #c6e7e2;
}

.mun-menu-list {
  position: relative;
  padding: 20px 0;
  margin-bottom: 0;
  border-top: 1px solid #c6e7e2;
}

.mun-menu-list li {
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.mun-menu-list li a {
  display: block;
  color: #017a98;
  font-weight: 600;
}

.mun-menu-list li .fa-angle-right {
  font-size: 1.3rem;
  color: #017a98;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.desc-box {
  padding: 0;
}

/* freeschool検索ページ */
.fs_area {
  margin: 20px 0;
}

.fs-select_area {
  margin: 0 5px 50px;
}

.fs-check-box {
  padding: 10px 0;
}

.fs-check-box p.ttl {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.fs-check-list {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #c6e7e2;
}

.fs-check-list.border-first {
  border-top: 1px solid #c6e7e2;
}

.fs-check-list p {
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

/* チェックボックス全体 */
.checkbox {
  width: fit-content;
  display: grid;
  grid-template-columns: auto 1fr;
  /* auto はアイコン、1fr はラベル文字列を想定 */
  gap: 10px;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}

/* チェックボックスのアイコン */
.checkbox_icon {
  position: relative;
  width: 27px;
  height: 27px;
  appearance: none;
  background: #fff;
  border: solid 3px #C9C9C9;
  border-radius: 6px;
  box-shadow: 0 0 0 0 transparent;

  /* アイコン：選択済みの見た目 */
  &:checked {
    background-color: #017a98;
    border-color: #017a98;
  }

  /* チェックマーク */
  &::before,
  &::after {
    content: "";
    position: absolute;
    background: #fff;
    border-radius: 3px;
  }

  &::before {
    width: 3px;
    height: 7px;
    top: 9px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  &::after {
    width: 3px;
    height: 11px;
    top: 6px;
    left: 11px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /* チェックマーク：選択済みの見た目 */
  &:checked::before {
    opacity: 1;
  }
}

/* モーダル画面 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  /* ← 初期表示 */
  /* display: flex;  */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  max-height: 550px;
  padding: 30px 20px;
  border-radius: 12px;
  position: relative;
}

.scroll-box {
  height: 350px;
  /* overflow-y: scroll; モーダル画面スクロールバー */
  background-color: #fff;
  border: 1px solid #eee;
  padding: 10px 15px;
  margin-bottom: 15px;
}

.scroll-box .simplebar-track.simplebar-vertical {
  background-color: #F8F8F8;
  border-radius: 8px;
}

.modal-content h3 {
  font-size: 1.4rem;
  margin: 0 0 15px;
  color: #017a98;
}

.modal-content p.modal-ttl {
  font-size: 1.4rem;
  margin: 0 0 15px;
  color: #017a98;
  font-weight: 600;
  line-height: 1.4;
}

.modal-content p {
  font-size: 0.8rem;
  margin-top: 0;
  padding-right: 10px;
}

.modal-content .scroll-box p {
  font-size: 0.75rem;
  margin: 5px 0;
  padding-right: 10px;
  line-height: 1.8;
}

@media screen and (min-width: 992px) {
  .modal-content {
    width: 70%;
  }
  .modal-content .scroll-box p {
    font-size: 0.85rem;
  }
}

/* リスト */
.modal-content .scroll-box li.dot {
  font-size: 0.9rem;
  position: relative;
  padding-left: 15px;
  margin: 0.5rem 0;
  font-weight: 400;
  line-height: 1.6;
}

.modal-content .scroll-box li.dot::before {
  content: "・";
  left: 0;
  position: absolute;
}

.modal-content .scroll-box li.ca {
  font-size: 0.9rem;
  position: relative;
  padding-left: 15px;
  margin: 0.5rem 0;
  font-weight: 400;
  line-height: 1.6;
}

.modal-content .scroll-box li.ca::before {
  content: "※";
  left: 0;
  position: absolute;
  font-size: 0.9rem;
  font-weight: 500;
}

/* 余白調整 */
.modal-content .scroll-box .mgnb {
  margin-bottom: 25px;
}

.simplebar-content {
  font-size: 0.8rem;
}

/* スクロールバーの色 */
.simplebar-scrollbar::before {
  background-color: #017a98;
}

.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.btnArea {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.check-btn {
  width: 250px;
  background-color: #bebebe;
  border-radius: 7px;
  padding: 10px 20px;
  line-height: 1.1;
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
  cursor: not-allowed;
  white-space: normal;
}

.check-btn .fa-angle-right {
  font-size: 1.3rem;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}

.check-btn.enabled {
  background-color: #017a98;
  cursor: pointer;
}

.check-btn:hover {
  color: #fff;
}

/* 検索オプション画面 */
.search-button {
  position: fixed;
  left: 0;
  bottom: 0;
  align-items: center;
  background-color: rgba(250, 250, 250, .75);
  min-height: 120px;
  max-height: 250px;
  width: 100%;
  padding: 10px 0;
  z-index: 10;
  -webkit-box-shadow: 0 13px 10px 10px rgba(0, 0, 0, .75);
  -moz-box-shadow: 0 13px 10px 10px rgba(0, 0, 0, .75);
  -ms-box-shadow: 0 13px 10px 10px rgba(0, 0, 0, .75);
  -o-box-shadow: 0 13px 10px 10px rgba(0, 0, 0, .75);
  box-shadow: 0 13px 10px 10px rgba(0, 0, 0, .75);
}

.srch-box {
  background-color: #ebfffc;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.srch-item-box {
  margin-top: 10px;
}

.srch-list {
  position: relative;
  display: inline-block;
  padding: 5px;
  margin-bottom: 0 !important;
}

/* 検索オプション その他の条件ボタン */
button.srch-op-btn {
  width: 100%;
  padding: 5px 12px;
  font-size: 0.85rem;
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid #017a98;
  color: #017a98;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  white-space: normal;
}

button.srch-op-btn.selected {
  background-color: #017a98;
  color: #fff;
}

/* 検索オプション クローズボタン疑似要素 */
.btn-wrap {
  position: relative;
}

.btn-wrap::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 55%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: url(../images/close-icon.png) center center / contain no-repeat;
  width: 13px;
  height: 13px;
}

/* 固定状態（初期状態） */
.search-button.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  /* 背景色で重なりを抑える */
  z-index: 30;
}

/* 固定解除状態（footerに近づいたとき） */
.search-button.absolute {
  position: absolute;
  top: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.search-box {
  position: relative;
}

/* freeschool検索結果ページ */
.conditions-box {
  margin: 5px 0;
  flex: 1;
}

.conditions-box p {
  font-size: 0.9rem;
  margin: 5px 0;
}

@media (min-width: 992px) {
  .conditions-box {
    margin: 10px 0;
  }

  .conditions-box p {
    margin: 0 10px 0 0;
  }
}

/* 検索結果のエリア、条件、件数表示 */
.conditions-box .fs-info-desc {
  display: flex;
  /* 横並び */
  flex-wrap: wrap;
  /* 必要に応じて折り返す */
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.fs-info-desc span.item-ttl {
  flex: 0 0 45px;
  /* 固定幅45px */
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 15px;
  text-align-last: justify;
}

.fs-info-desc span.item-contents {
  flex: 1 1 0;
  /* 残り幅を使う */
  min-width: 0;
  /* はみ出し防止に必須 */
  font-size: 0.9rem;
  word-break: break-word;
  /* 単語途中でも折り返す */
  overflow-wrap: break-word;
  /* 安全策 */
}

.fs-result-list {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid #c6e7e2;
}

.fs-result-list:first-of-type {
  border-top: 1px solid #c6e7e2;
}

.fs-result-list h2 {
  color: #017a98;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 600;
}

.fs-label {
  padding: 3px 7px 2px;
  border: 1px solid #017A98;
  border-radius: 3px;
  text-align: left;
  max-height: 30px;
  display: inline-block;
  margin-bottom: 10px;
}

.fs-label p {
  color: #017a98;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

.fs-result-desc {
  padding: 20px;
  background: #EBFFFC;
  margin-bottom: 15px;
  border-radius: 10px;
}

.fs-result-desc p {
  font-size: 0.85rem;
  line-height: 1.8;
  padding: 0;
  margin: 0;
}

/* 検索結果の所在地、受入対象、開所日時 */
.fs-result-desc .result-desc {
  display: flex;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.8;
}

.fs-result-desc dl {
  margin: 0;
}

.fs-result-desc dt, .fs-result-desc dd {
  font-size: 0.9rem;
  margin: 0.2rem 0 0 0;
}

/* ▼ すべての言語に適用される基本のスタイルを最初に定義 */
.fs-result-desc dt.item-place {
  flex: 0 0 80px;
  font-weight: 600;
  text-align: left;
  letter-spacing: normal;
  white-space: normal;
  word-break: break-word;
}

:lang(ja) .fs-result-desc dt.item-place {
  flex: 0 0 80px;
  width: 5ch;
  text-align: justify;
  letter-spacing: calc((5.7ch - 4ch) / 3);
  white-space: nowrap;
}

.fs-result-desc dt.item-ttl {
  flex: 0 0 80px;
  font-weight: 600;
  font-size: 0.9rem;
}

.fs-result-desc dd.item-contents {
    display: inline-block;
    width: calc(100% - 80px - 5px); 
    margin-left: 0;
}

/*Pagination*/
.pagination_area {
  margin-top: 30px;
}

/*paginationの装飾*/
.pagination_area li {
  color: #017a98;
  margin: 4px;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  display: table-cell;
  background-color: #fff;
}

.pagination_area li a {
  padding: 7px 15px;
  display: inline-block;
  border: 1px solid #017A98;
  border-radius: 5px;
  color: #017a98;
  text-decoration: none;
}

/*アクティブタブの装飾*/
.pagination_area li.select {
  background: #017A98;
  border-radius: 5px;
}

.pagination_area li.select span {
  padding: 7px 15px;
  display: inline-block;
  border: 1px solid #017A98;
  border-radius: 5px;
  color: #fff;
}

.pagination_area li,
.pagination_area li:link,
.pagination_area li:visited {
  display: inline-block;
  /*アンカーリンク用*/
  font-size: 1rem;
  transition: all .20s linear 0s;
  -o-transition: all .20s linear 0s;
  -ms-transition: all .20s linear 0s;
  -moz-transition: all .20s linear 0s;
  -webkit-transition: all .20s linear 0s;
}

/* 区市町村の相談・支援ページ */
.tk_area {
  margin: 20px 0;
}

.tk-support_area {
  margin: 0 5px 50px;
}

.tk-support-box {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #c6e7e2;
}

.tk-support-box h2 {
  color: #017a98;
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 600;
}

.tk-support-txt {
  padding: 5px 0;
  margin-bottom: 10px;
}

.tk-support-list {
  padding: 20px;
  background: #EBFFFC;
  margin-bottom: 15px;
  border-radius: 10px;
}

.tk-support-txt p,
.tk-support-list p {
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 992px) {

  .tk-support-txt p,
  .tk-support-list p {
    font-size: 0.95rem;
  }
}

/* 古い p タグのスタイルを ul/li に継承 */
.tk-support-list ul, .tk-support-list li,
.tky-support-list ul, .tky-support-list li {
  padding: 0;
  margin: 0;
}

/* カウンターを初期化する要素を指定 */
/* リストの初期化 */
.tk-support-list ul, .tky-support-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: num -1; /* ★ここでカウンターをリセット */
}

/* 丸数字カウンター定義 */
@counter-style circled-decimal {
  system: numeric;
  symbols: ① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩
           ⑪ ⑫ ⑬ ⑭ ⑮ ⑯ ⑰ ⑱ ⑲ ⑳;
  suffix: " ";
}

/* リスト項目 */
.tk-support-list li, .tky-support-list li {
  position: relative;
  padding-left: 1.1em; /* 番号ぶん余白 */
  font-size: 0.9rem;
  line-height: 1.7;
}

/* 擬似要素で番号を付与 */
.tk-support-list li::before, .tky-support-list li::before {
  counter-increment: num;
  content: counter(num, circled-decimal);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

/* PC表示時の調整 */
@media screen and (min-width: 992px) {
  .tk-support-list li, .tky-support-list li {
    font-size: 0.95rem;
  }
}

.tk-support-list .hr {
  height: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  border: 0;
  border-top: 1px solid #C6E7E2;
}

/* 東京都の支援ページ */
.tky_area {
  margin: 20px 0;
}

.tky-support_area {
  margin: 0 5px 50px;
}

.tky-support-box {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #BCD6FB;
}

.tky-support-box h2 {
  color: #0B4AB4;
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 600;
}

.tky-support-txt {
  padding: 5px 0;
  margin-bottom: 10px;
}

.tky-support-list {
  padding: 20px;
  background: #EFF3FF;
  margin-bottom: 15px;
  border-radius: 10px;
}

.tky-support-txt p,
.tky-support-list p {
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 992px) {

  .tky-support-txt p,
  .tky-support-list p {
    font-size: 0.95rem;
  }
}

.tky-support-list .hr {
  height: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  border: 0;
  border-top: 1px solid #BCD6FB;
}

/* 不登校を知る/コラム一覧ページ */
/* ランキング見出し */
.yarpp-thumbnails-horizontal>p {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 1em;
  color: #333;
}

/* ランキングリスト */
.yarpp-thumbnails-horizontal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

/* サムネイル画像部分 */
.yarpp-thumbnail-default img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}

/* タイトル部分 */
.yarpp-thumbnail-title p {
  display: block;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #231815;
}

.yarpp-thumbnail-title a {
  text-decoration: none;
  color: #231815;
}

.yarpp-thumbnail-title a:hover {
  text-decoration: underline;
}

.wpp-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* ランキングリストのULでカウンターリセット */
.yarpp-related ul {
  counter-reset: ranking-counter;
}

/* 各ランキング要素でカウントアップ */
.yarpp-thumbnail {
  position: relative;
  counter-increment: ranking-counter;
}

.yarpp-thumbnail::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 10px;
  color: #fff;
  font-weight: bold;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 2;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

/* 各順位ごとの記号 */
.yarpp-thumbnail:nth-child(1)::before {
  content: "1";
  background: #7c7659;
}

.yarpp-thumbnail:nth-child(2)::before {
  content: "2";
  background: #717777;
}

.yarpp-thumbnail:nth-child(3)::before {
  content: "3";
  background: #c44e50;
}

.yarpp-thumbnail:nth-child(4)::before {
  content: "4";
  background: #017A98;
}

/* コラム詳細ページ タグはWP上で使いまわし出来るようにする */
/* コラムラベルエリア */
.column-label_area {
  display: flex;
  justify-content: space-between;
  /* 均等 */
  align-items: center;
}

.column-label_area .column-label {
  width: auto;
  height: 30px;
  padding: 5px 20px 4px;
  background-color: #017a98;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.column-label_area .column-label p,
.column-label_area .column-date p {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

/* コラム編集エリア */
/* 見出し */
.column-edit h2 {
  border-left: 4px solid #C6E7E2;
  padding-left: 10px;
  font-size: 1.2rem;
  color: #017a98;
  margin-top: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.column-edit h2.toc {
  border-left: none;
  padding-left: 0;
  font-size: 1.2rem;
  color: #017a98;
  margin-top: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.column-edit h3 {
  font-size: 1.1rem;
}

.column-edit p {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0;
}

.column-edit p.sub {
  font-size: 1.1rem;
  padding-left: 5px;
}

@media screen and (min-width: 992px) {
  .column-edit p {
    font-size: 1rem;
  }

  .column-edit p.sub {
    font-size: 1.3rem;
  }
}

.column-edit span.sub-left {
  display: inline-block;
  width: 40px;
  height: 2px;
  position: relative;
  top: -5px;
  left: -5px;
  background-color: #ccc;
}

.column-edit p.toc {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #017a98;
}

/* アンダーライン */
.column-edit p span.und {
  font-size: 0.9rem;
  text-decoration: underline;
  /* 下線 */
  text-decoration-thickness: 7px;
  /* 線の太さ */
  text-decoration-color: #C6E7E2;
  /* 線の色 */
  text-underline-offset: -2.8px;
  /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none;
  /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

/* マーカー */
.column-edit mark {
  font-size: 0.9rem !important;
  background-color: #FFF28C !important;
  padding: 0 !important;
}

@media screen and (min-width: 992px) {
  .column-edit mark {
    font-size: 1rem !important;
  }
}

/* フォントカラー */
.column-edit p span.clr {
  font-weight: 700;
  color: #017a98;
}

/* リスト */
.column-edit .list li {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
}

.column-edit .list li.dot {
  position: relative;
  padding-left: 15px;
}

.column-edit .list li.dot::before {
  content: "・";
  left: 0;
  position: absolute;
}

@media screen and (min-width: 992px) {
  .column-edit .list li {
    font-size: 1rem;
  }
}

/* 目次リスト/番号用 */
.column-edit ol {
  counter-reset: number;
  /*数字をリセット*/
  list-style-type: none !important;
  /*数字を一旦消す*/
  padding: 15px 0;
  border-top: 1px solid #C6E7E2;
  border-bottom: 1px solid #C6E7E2;
  margin-bottom: 40px;
}

.column-edit ol li {
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
  padding: 5px 7px 5px 30px;
  font-weight: 700;
}

.column-edit ol li a {
  color: #231815;
  font-weight: 600;
  text-decoration: none;
}

.column-edit ol li::before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background: #017A98;
  color: #fff;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 26px;
  text-align: center;
  top: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* 通常の番号リスト */
.numbered {
  list-style: none;
  /* デフォルトのマーカーを消す */
  counter-reset: item;
  /* カウンター初期化 */
  padding-left: 0;
  margin: 0;
}

.numbered li {
  font-size: 0.9rem;
  counter-increment: item;
  /* 各 li でカウントを増やす */
  position: relative;
  padding-left: 15px;
  /* 前置数字分の余白を確保 */
  margin-bottom: .4em;
}

.numbered li::before {
  content: counter(item) ".\3000";
  /* ".\3000" の \3000 は全角スペース（「1.　」） */
  position: absolute;
  left: -17px;
  top: 0;
  width: 2em;
  text-align: right;
}

@media screen and (min-width: 992px) {
  .numbered li {
    font-size: 1rem;
  }
}

/* NOTE */
.column-edit .note {
  padding: 25px 20px 30px;
  background: #F8F8F8;
  margin: 50px 0;
  border-radius: 15px;
}

.column-edit .note .ttl {
  font-size: 1.3rem;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #017A98;
  display: -webkit-flex;
  display: flex;
}

.column-edit .note .ttl2 {
  font-size: 1.3rem;
  font-weight: 700;
  padding-bottom: 10px;
  display: -webkit-flex;
  display: flex;
}

.column-edit .note .ttl h3,
.column-edit .note .ttl2 h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
}

.column-edit .note .ttl img,
.column-edit .note .ttl2 img {
  margin-right: 5px;
  height: 30px;
  position: relative;
  top: -5px;
}

.column-edit .note .ttl2 {
  font-size: 1.3rem;
  font-weight: 700;
  padding-bottom: 10px;
}

.column-edit .note p.phot img {
  width: 150px;
  margin: 10px auto;
}

.column-edit .note .name strong {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8;
  display: block;
}

.column-edit .note .born strong {
  text-align: center;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 5px;
  display: block;
}

.column-edit .note .desc {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 5px;
}

@media screen and (min-width: 992px) {
  .column-edit ol li a {
    font-size: 1.1rem;
  }

  .column-edit .note p.phot img {
    width: 200px;
  }

  .column-edit .note p.name {
    font-size: 1.6rem;
  }

  .column-edit .note p.born {
    font-size: 1rem;
    text-align: center;
  }
}

.column-edit .note p.ann {
  font-weight: 700;
  padding: 20px 0 0;
  margin: 0;
  font-size: 1.1rem;
  color: #017a98;
}

.column-edit .note p.dot {
  position: relative;
  padding-left: 15px;
  line-height: 1.8;
}

.column-edit .note p.dot::before {
  content: "・";
  left: 0;
  position: absolute;
}

/* 余白調整 */
.column-edit p.mgn-t {
  margin-top: 20px;
}

.column-edit p.mgnb {
  margin-bottom: 25px;
}

/* 文献 */
.column-edit p.refe {
  font-size: 1rem;
  font-weight: 700;
}

/* 区切り線 */
.column-edit .hr {
  height: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #ddd;
}

.column-edit .note .hr {
  height: 0;
  margin-top: 20px;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #017A98;
}

/* urlアンダーライン */
.column-edit a {
  color: #2F60CB;
  text-decoration: underline;
}

/* images */
.column-edit img.img-responsive {
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 40px;
}

/* 共通エリア */
/* 見出し */
.common-edit h2 {
  border-left: 4px solid #C6E7E2;
  padding-left: 10px;
  font-size: 1.2rem;
  color: #017a98;
  margin-top: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.common-edit p {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}

.common-edit li {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}

.common-edit p.sub {
  font-size: 1.1rem;
  padding-left: 5px;
}

@media screen and (min-width: 992px) {
  .common-edit p, .common-edit li {
    font-size: 1rem;
  }
}

.common-edit span.sub-left {
  display: inline-block;
  width: 40px;
  height: 2px;
  position: relative;
  top: -5px;
  left: -5px;
  background-color: #ccc;
}

.common-edit p.toc {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #017a98;
}

/* プライバシーポリシーリスト */
/* 標準サイズ */
.privacy-list {
  margin: 0 auto;
  padding-left: 19px;
  list-style-position: outside;
  list-style-type: decimal;
  /* 1. 2. … */
  counter-reset: section;
}

/* 各 li */
.privacy-list li {
  margin: 10px 0 20px;
  line-height: 1.6;
}

.privacy-list>li {
  font-weight: 600;
}

/* 内側 */
.privacy-list li ol {
  margin: 0 auto;
  padding-left: 19px;
  list-style-position: outside;
  list-style-type: decimal;
  /* 1. 2. … */
  counter-reset: section;
}

/* 各 li */
.privacy-list li ol li {
  line-height: 1.6;
  font-weight: 400 !important;
  /* 通常の太さに戻す */
  margin: 3px 0;
}

/* スモールサイズ */
.privacy-list-s, .privacy-list-s li ol {
  margin: 0 auto;
  padding-left: 19px;
  list-style-position: outside;
  list-style-type: decimal;
  /* 1. 2. … */
  counter-reset: section;
}

.privacy-list-s li ul {
  margin: 0 auto;
  list-style: none;
  margin-bottom: 20px;
}

.privacy-list-s li ul li a {
  line-height: 1.6;
  font-weight: 400 !important;
  /* 通常の太さに戻す */
  margin: 3px 0;
}

/* 各 li */
.privacy-list-s li {
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 600;
}

.privacy-list-s li ol li {
  margin: 0.4rem 0 0 0;
  line-height: 1.6;
  font-weight: 400;
}

.privacy-list-s li ul li {
  margin: 0.4rem 0 0 0;
}

/* タイトル部分を強調しない（最初のテキストノード） */
.privacy-list-s li ol li::first-line {
  font-weight: 400;
  color: var(--accent);
}

/* スモールサイズ2 */
.privacy-list-s2 {
  margin: 0 auto;
  padding-left: 19px;
  list-style-position: outside;
  list-style-type: decimal;
  /* 1. 2. … */
  counter-reset: section;
}

/* 各 li */
.privacy-list-s2 li {
  line-height: 1.6;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 3px 0;
}

/* 段落 */
.privacy-list p {
  margin: 0.4rem 0 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 400;
}

.privacy-list-s p {
  margin: 0.4rem 0 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 400;
}

.common-edit .link-box {
  padding: 0 20px;
}

/* リスト */
.common-edit li.dot {
  font-size: 0.9rem;
  position: relative;
  padding-left: 15px;
  margin: 0.4rem 0 0 0;
  font-weight: 400;
}

.common-edit li.dot::before {
  content: "・";
  left: 0;
  position: absolute;
}

/* 余白調整 */
.common-edit .mgnt {
  margin-top: 20px;
}

.common-edit .mgnb {
  margin-bottom: 25px;
}

/* 区切り線 */
.common-edit .hr {
  height: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #ddd;
}

/* NOTE */
.common-edit .note {
  padding: 5px 20px 0;
  margin: 0;
}

.common-edit .note-s {
  padding: 10px 20px;
  margin: 0;
}

.common-edit .note .hr {
  height: 0;
  margin-top: 20px;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #017A98;
}

/* urlアンダーライン */
.common-edit a {
  color: #2F60CB;
  text-decoration: underline;
}

/* アクセシビリティ */
/* アイウエオ順リスト */
@counter-style aiueo {
  system: fixed;
  symbols: ア イ ウ エ オ カ キ ク ケ コ サ シ ス セ ソ
           タ チ ツ テ ト ナ ニ ヌ ネ ノ ハ ヒ フ ヘ ホ
           マ ミ ム メ モ ヤ ユ ヨ ラ リ ル レ ロ ワ ヰ ヱ ヲ ン;
  suffix: ". "; /* 番号の後にドットとスペース */
}

.common-edit .aiueo-list {
  list-style: none;
  counter-reset: aiueo;
  margin: 0.4em 0 0 0;
  padding-left: 20px;
}

.common-edit .aiueo-list li {
  counter-increment: aiueo;
  position: relative;
  margin: 0.4em 0 0 0;
  line-height: 1.6;
}

.common-edit .aiueo-list li::before {
  content: counter(aiueo, aiueo) ". "; /* ← ドットとスペースを手動で追加 */
  position: absolute;
  left: -20px;
}

/* 達成基準チェックリスト */
.common-edit table {
  width: 100%;
  line-height: 1.4;
}

.common-edit th,
.common-edit td {
  padding: 15px 10px;
  border: solid 1px #ccc;
  font-size: 87.5%;
}

.common-edit th {
  font-weight: bold;
  background-color: #eee;
}

.accessibility-table th,
.accessibility-table td {
  vertical-align: middle;
}

.accessibility-table th:nth-child(1),
.accessibility-table td:nth-child(1) {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  width: calc(4em + 15px);
}

.accessibility-table th:nth-child(2),
.accessibility-table td:nth-child(2) {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  width: calc(3em + 15px);
}

.accessibility-table th:nth-child(4),
.accessibility-table td:nth-child(4),
.accessibility-table th:nth-child(5),
.accessibility-table td:nth-child(5) {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  width: calc(2em + 15px);
}

/* サイトマップ */
.sitemap-box {
  padding: 40px 0;
}

/* リンク用リスト */
.sitemap-box p.dot-link {
  position: relative;
  padding-left: 19px;
  margin-bottom: 5px;
}

.sitemap-box p.dot-link::before {
  content: "・";
  left: 0;
  position: absolute;
  color: #017a98;
}

.sitemap-box p.dot-link a {
  position: relative;
  color: #2F60CB;
}

/* その他のエリア */
.contents_area {
  display: block;
}

/* よくあるご質問ページ */
.faq_area {
  margin: 20px 0;
}

.faq-support_area {
  margin: 0 5px 50px;
}

.faq-list {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #c6e7e2;
}

.faq-list:first-of-type {
  border-top: 1px solid #c6e7e2;
}

.faq-support-box {
  position: relative;
  padding: 20px 0;
}

.faq-support-box h3 {
  color: #017a98;
  margin: 0 0 15px;
}

.faq-support-txt {
  padding: 5px 0;
  margin-bottom: 10px;
}

.faq-support-list {
  padding: 20px;
  background: #EBFFFC;
  margin-bottom: 15px;
  border-radius: 10px;
}

.faq-support-txt p {
  line-height: 1.8;
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
}

.faq-support-txt p::before {
  content: "A.";
  top: -3px;
  left: 2px;
  position: absolute;
  font-size: 1.2rem;
  font-weight: 700;
  color: #017a98;
}

/* Footer */
#footer {
  background: linear-gradient(90deg, rgb(0, 126, 128), rgb(0, 126, 158));
  color: #fff;
  z-index: 1;
  margin-top: 100px;
}

#footer .overlay {
  padding: 40px 0 0;
}

@media screen and (min-width: 992px) {
  #footer .overlay {
    padding: 50px 0;
  }
}

.mainView.overlay::before {
  content: "";
  position: fixed;   /* 画面に固定 */
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.footer-flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}

.footer-box-flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: relative;
}

#footer .section-title img {
  width: 120px;
  margin: 0 10px 30px;
}

@media screen and (min-width: 992px) {
  #footer .section-title img {
    width: 150px;
    margin: 0;
  }
}

#footer .section-title {
  font-size: 1.3rem;
  font-weight: 400;
}

#footer .foot-box1 {
  margin: 0;
}

#footer .foot-box2 {
  margin: 0;
}

#footer .foot-box3 {
  margin: 20px 0;
}

#footer .foot-box1 li,
#footer .foot-box2 li,
#footer .foot-box3 li {
  display: block;
  margin: 0 10px 0 0;
}

#footer .foot-box3 li {
  padding: 5px 0;
}

@media screen and (min-width: 992px) {

  #footer .foot-box1 li,
  #footer .foot-box2 li,
  #footer .foot-box3 li {
    display: inline-block;
  }
}

#footer .foot-box1 li,
#footer .foot-box2 li {
  margin-bottom: 10px;
}

@media screen and (min-width: 992px) {
  #footer .foot-box3 {
    margin: 0;
  }

  #footer .foot-box2 li {
    margin-top: 10px;
  }

  #footer .foot-box1 li,
  #footer .foot-box2 li {
    margin-bottom: 0;
    margin-right: 30px;
  }

  #footer .foot-box3 li {
    margin: 15px 20px 0 0;
  }
}

#footer .foot-box1 li a,
#footer .foot-box2 li a {
  color: #fff;
  font-size: 0.9rem;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
  font-weight: 600;
}

#footer .foot-box3 li a {
  color: #fff;
  font-size: 0.8rem;
  text-decoration: underline;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#footer .foot-box1 li a:hover,
#footer .foot-box2 li a:hover {
  color: rgba(255, 255, 255, 0.8);
  outline: none;
  text-decoration: underline;
}

#footer .line-left {
  border-left: 3px solid #fff;
  padding-left: 10px;
}

.contact-home {
  background: #fff;
}

.contact-home .contact-box {
  padding: 5px 0;
}

.contact-home p {
  display: block;
  font-size: 0.8rem;
  color: #055469;
  padding: 3px 0;
  margin: 0;
  position: relative;
}

.contact-home p.contact-name-left {
  font-size: 0.85rem;
  padding: 5px 0 5px 10px;
}

.contact-home p.contact-name-right {
  padding: 5px 10px 5px 0;
}

.contact-home span.contact-tel {
  position: absolute;
  top: 5px;
  background: url(../images/contact-phone-icon.png) 0 0 / contain no-repeat;
  margin-left: -15px;
  width: 15px;
  height: 15px;
}

.contact-home span.contact-mail {
  position: absolute;
  top: 6px;
  background: url(../images/contact-mail-icon.png) 0 0 / contain no-repeat;
  margin-left: -18px;
  width: 15px;
  height: 15px;
}

.contact-home span.contact-text-pc {
  display: none;
}

@media screen and (min-width: 992px) {
  #footer .line-left {
    padding-left: 25px;
  }

  .contact-home p {
    display: inline-block;
    padding: 5px 10px;
  }

  .contact-home span.contact-tel {
    display: none;
  }

  .contact-home span.contact-mail {
    display: none;
  }

  .contact-home span.contact-text-pc {
    display: inline-block;
    padding: 0;
    margin: 0;
  }
}

.copyright {
  background: #055469;
}

.copyright p {
  font-size: 0.65rem;
  color: #fff;
  padding: 10px;
  margin: 0;
}

/* Pagetop */
.pagetop-box {
  position: relative;
}

.pagetop a,
.pagetop-up a {
  width: 50px;
  height: 50px;
  padding: 10px;
  display: table;
  background: #fff;
  color: #017a98;
  border: 1px solid #017A98;
  font-weight: bold;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 25px;
  transition: 0.5s;
  text-decoration: none;
  display: table-cell;
  vertical-align: middle;
  position: relative;
  -webkit-box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  -moz-box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  -ms-box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  -o-box-shadow: 0 0 10px rgba(43, 20, 0, .2);
  box-shadow: 0 0 10px rgba(43, 20, 0, .2);
}

.pagetop a:hover,
.pagetop-up a:hover {
  opacity: initial;
}

.pagetop.fixed {
  display: block;
  position: fixed;
  bottom: 50px;
  right: 15px;
  z-index: 20;
}

.pagetop-up.fixed {
  display: block;
  position: fixed;
  bottom: 140px;
  right: 15px;
  z-index: 20;
}

.pagetop.absolute,
.pagetop-up.absolute {
  position: absolute;
  width: 50px;
  bottom: 20px !important;
  right: 15px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  padding: 0;
  z-index: 20;
}

.arrow-up {
  position: absolute;
  top: 13px;
  left: 15px;
  background: url(../images/arrow-up.png) 0 0 / contain no-repeat;
  margin: 0;
  width: 19px;
  height: 25px;
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .pagetop-up.fixed {
    bottom: 135px;
  }

  .pagetop.absolute,
  .pagetop-up.absolute {
    bottom: 60px !important;
  }

  .pagetop-active {
    right: 80px;
  }

  .text-md-center {
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .text-sm-center {
    text-align: center;
  }
}

/* slick carousel */
.slider .slick-slide {
  width: 300px;
  height: auto;
  margin: 0 5px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider .slick-slide {
    width: 400px;
    height: auto;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
  }
}

@media (min-width: 992px) {
  .slider .slick-slide {
    width: 600px;
    height: auto;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
  }
}

.slider .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.slider .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 180px;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.slider .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #09000d;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}

.slider .slick-next {
  right: 0;
}

.slider .slick-prev {
  left: 0;
}

.slider .slick-next::before {
  left: 20px;
}

.slider .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}

.dots .slick-dots {
  text-align: center;
}

.dots .slick-dots li {
  display: inline-block;
}

.dots .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #C6E7E2;
  border-radius: 50%;
}

.dots .slick-dots .slick-active button {
  background: #017A98;
}

/* Tabs */
.tab-nav.row-center {
  margin: 0 auto;
  width: 100%;
}

.tab-item {
  display: none;
  padding: 1.25em 0;
}

.tab-item.tab-active {
  display: block;
}

.tab-content>.tab-label {
  display: none;
}

.tab-nav>.tab-label {
  float: left;
}

a.tab-label,
a.tab-label:link,
a.tab-label:visited,
a.tab-label:hover {
  background: none repeat scroll 0 0 #262626;
  color: #fff;
  padding: .625em 1.25em;
  transition: background .20s linear 0s;
  -o-transition: background .20s linear 0s;
  -ms-transition: background .20s linear 0s;
  -moz-transition: background .20s linear 0s;
  -webkit-transition: background .20s linear 0s;
}

a.tab-label:hover,
a.tab-label.active-btn {
  background: none repeat scroll 0 0 #999;
}

.tab-label.active-btn {
  cursor: default;
}

.tab-content {
  text-align: left;
}

.tab-content h4 {
  padding-bottom: 20px;
}

@media print,
screen and (max-width:768px) {
  .tab-nav>.tab-label {
    margin: .5px 0;
  }
}

.tab-item {
  padding: 1.25em 0;
}

.tab-nav {
  display: table;
}

.tab-nav>.tab-label {
  float: left;
}

a.tab-label,
a.tab-label:link,
a.tab-label:visited {
  background: #ddd none repeat scroll 0 0;
  color: #777;
  display: block;
  font-size: 1.2em;
  transition: all .20s linear 0s;
  -o-transition: all .20s linear 0s;
  -ms-transition: all .20s linear 0s;
  -moz-transition: all .20s linear 0s;
  -webkit-transition: all .20s linear 0s;
}

a.tab-label:hover {
  background: rgba(4, 141, 115, .5);
  color: #fff;
}

a.tab-label.active-btn {
  background: rgba(4, 141, 115, 1);
  color: #fff;
}

@media print,
screen and (max-width:768px) {

  a.tab-label,
  a.tab-label:link,
  a.tab-label:visited {
    font-size: 1em;
  }
}

/* Helper Classes */
span.red {
  color: red;
}

span.green {
  color: rgba(0, 176, 80, 1);
}

.text-box {
  margin-top: 10px;
  margin-bottom: 10px;
}

.text-box p {
  padding-top: 5px;
  padding-bottom: 5px;
}

.float-left {
  float: left;
}

/* flexbox対応のgridシステム */
.row-flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.col-xs-4f {
  width: 100%;
  -ms-flex: 0 0 33.33333333%;
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-6f {
  width: 100%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 0;
}

.col-xs-12f {
  width: 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 0;
}

@media (min-width: 767px) {
  .col-sm-6f {
    width: 100%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-3f {
    width: 100%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4f {
    width: 100%;
    -ms-flex: 0 0 33.33333333%;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
}

@media (min-width: 992px) {
  .col-md-3f {
    width: 100%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4f {
    width: 100%;
    -ms-flex: 0 0 33.33333333%;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
}

@media (min-width: 992px) {
  .col-md-offset-05 {
    margin-left: 5%;
  }
}

/* gridのgutter調整 */
.row-15 {
  margin-left: -7.5px;
  margin-right: -7.5px;

  >div {
    padding-right: 7.5px;
    padding-left: 7.5px;
  }
}

.row-0 {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 992px) {
  .row-15 {
    margin-left: -15px;
    margin-right: -15px;

    >div {
      padding-right: 7.5px;
      padding-left: 7.5px;
    }
  }
}

ul.wpp-list {
  margin-left: -7.5px;
  margin-right: -7.5px;

  >li {
    padding-right: 7.5px;
    padding-left: 7.5px;
  }
}

.col-xs-6f,
.col-xs-12f {
  margin-bottom: 15px;
}

/* トップページをcontainerを950px固定にする */
@media (min-width: 1200px) {
  .container {
    width: 950px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 950px;
  }
}

/* containerを800px固定にする */
.container-s {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 800px) {
  .container-s {
    width: 800px;
  }
}

/* containerを600px固定にする */
.container-c {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 800px) {
  .container-c {
    width: 600px;
  }
}

/* Helper Classes */
.clear {
  clear: both;
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
}

.spacer {
  clear: both;
  border: none;
  padding: 0;
  margin: 0;
}

.img-res-noblock {
  max-width: 100%;
  height: auto;
}

.imgbg {
  box-shadow: 0 0 5px #CCC;
  border: 5px solid #FFF;
  background: #FFF none repeat scroll 0 0;
  position: relative;
}

.imgsdw {
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .5);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .5);
  -ms-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .5);
  -o-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .5);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .5);
}

.text-lg {
  font-size: 1.2rem;
  margin: 0
}

.text-md {
  font-size: 1.1rem;
  margin: 0;
}

.text-sm {
  font-size: 0.9rem;
  margin: 0;
}

.text-md,
.text-sm {
  line-height: 1.6em
}

.text-xs {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.3em
}

.mgn-bottom {
  margin-bottom: .5em;
}

.spacer-xlg {
  height: 150px;
}

.spacer-lg {
  height: 100px;
}

.spacer-md {
  height: 80px;
}

.spacer-sm {
  height: 50px;
}

.spacer-xs {
  height: 30px;
}

.spacer-xxs {
  height: 20px;
}

.sm-br {
  display: none;
}

.bg-portal-box {
  padding: 10px 0 0;
  font-size: 0.8rem;
  background-color: #ebfffc;
}

.bg-about {
  width: 100%;
  padding: 40px 20px 40px 30px;
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
  background-color: rgb(235, 255, 252);
}

.bg-news {
  width: 100%;
  padding: 40px 20px 40px 30px;
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
  background: linear-gradient(90deg, rgb(0, 126, 128), rgb(0, 126, 158));
}

.bg-portal {
  width: 100%;
  padding: 20px 0;
  background-color: #ebfffc;
}

@media (min-width: 992px) {
  .bg-about {
    padding: 70px;
    border-radius: 32px;
    border-radius: 32px;
  }

  .bg-news {
    padding: 40px;
    border-radius: 32px;
    border-radius: 32px;
  }
}

.bold {
  font-weight: bold;
}

p.indent {
  padding-left: 1em;
}

p.indent-mft {
  padding-left: 2em;
  position: relative;
}

p.indent-txt {
  padding-left: 2.2em;
  position: relative;
}

.btn-center {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .btn-md-center {
    display: flex;
    justify-content: center;
  }

  .text-md-center {
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .text-sm-center {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .text-lg {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .text-md,
  .text-md2 {
    font-size: 1rem;
    line-height: 1.7;
  }

  .text-xs {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .clear-sm {
    clear: both;
    position: relative;
    border: none;
    padding: 0;
    margin: 0;
  }

  .spacer-xlg {
    height: 50px;
  }

  .spacer-lg {
    height: 40px;
  }

  .spacer-md {
    height: 30px;
  }

  .spacer-sm {
    height: 20px;
  }

  .spacer-xs,
  .spacer-xxs {
    height: 10px;
  }

  .text-xs-center {
    text-align: center;
  }

  .text-xs-left {
    text-align: left;
  }

  .sm-br {
    display: block;
  }

  h2 span {
    top: -90px;
  }

  .icon-sz2 {
    font-size: 1.5rem;
    padding-right: 2px;
    top: 5px;
  }

  .slant-blue::before {
    right: -250px;
  }

  .icon-mft {
    font-size: 1.5rem;
    top: 0;
  }
}

/* Helper Fontawesome */
.fa-m-right {
  margin-right: .2em;
}

.fa-m-left {
  margin-left: .2em;
}

.fa-l-left {
  margin-left: .5em;
}

.hide {
  display: none;
}

/* accordion */
.accordion-container .accordion-title,
.accordion-container .accordion-title-mrg {
  position: relative;
  padding: 0.625em 3em 0.625em 1em;
  margin: 0;
  color: #333;
  background-color: #eee;
  font-size: 1.1em;
  font-weight: normal;
  cursor: pointer;
  transition: all .20s linear 0s;
  -o-transition: all .20s linear 0s;
  -ms-transition: all .20s linear 0s;
  -moz-transition: all .20s linear 0s;
  -webkit-transition: all .20s linear 0s;
  user-select: none;
  /* CSS3 */
  -moz-user-select: none;
  /* Firefox */
  -webkit-user-select: none;
  /* Safari、Chromeなど */
  -ms-user-select: none;
  /* IE10かららしい */
}

.accordion-container .accordion-title-mrg {
  margin: 0 10px 0 0;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open {
  background-color: rgba(4, 141, 115, .3);
}

.accordion-container .accordion-title::before {
  content: "";
  position: absolute;
  top: 47%;
  right: 15px;
  width: 15px;
  height: 3px;
  /*縦線に*/
  transform: rotate(90deg);
  background-color: rgba(4, 141, 115, 1);
  transition: all .3s ease-in-out;
}

.accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 47%;
  right: 15px;
  /*横線*/
  width: 15px;
  height: 3px;
  background-color: rgba(4, 141, 115, 1);
  transition: all .2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
  transform: rotate(180deg);
}

.accordion-container .accordion-title.open::after {
  opacity: 0;
}

.accordion-content {
  padding: 0;
}

.accordion-content p {
  font-size: 1.1em;
  padding: 10px;
  margin: 0;
  border: 1px solid #ccc;
}

span.click {
  font-weight: 500;
  position: absolute;
  right: 40px;
  top: 9px;
}

span.click2 {
  font-weight: 500;
  position: absolute;
  right: 40px;
  top: 20px;
}

/* CSS for CodePen */
.accordion-container {
  width: 100%;
  margin: 0 auto;
}

.serviceArrow {
  display: inline-block;
  height: 40px;
  position: relative;
}

.serviceArrow::before {
  position: absolute;
  left: -35px;
  bottom: -30px;
  content: "";
  width: 0;
  height: 0;
  border: 35px solid transparent;
  border-top-color: transparent;
  border-top-style: solid;
  border-top-width: 35px;
  border-top: 28px solid #777;
}

/* クリアボタン */
.search-form-4 button.searchclear {
  width: 48px;
  height: 48px;
  margin: auto;
  font-size: 1.4rem;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}

.search-form-4 button.searchclear i {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #aaa;
}

/* Contact Form 7 カスタムCSS */
.cf7__list {
  display: block;
}

.cf7__list p.cf7__txt {
  font-weight: 600;
  margin-top: 20px;
}

.cf7__list p.cf7__confirm {
  background: #ebfffc;
  padding: 10px;
  border-radius: 10px;
}

.cf7__list label {
  display: block;
  margin-top: 20px;
}

.screen-reader-text {
  border: 0 !important;
  clip-path: inherit !important;
  height: auto !important;
  margin: auto !important;
  position: initial !important;
  width: auto !important;
}

.container-c ul.note {
  padding-top: 5px;
}

.container-c ul.note li {
  margin: 0;
  padding-bottom: 5px;
  font-size: 1rem;
}

.cf7 .comment li {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.required {
  color: #dc3232;
  font-weight: 700;
}

.cf7__list:nth-of-type(n + 2),
.cf7__list:nth-of-type(n + 1) {
  margin-top: 0;
}

.cf7__list {
  margin-bottom: 0;
  width: 100%;
}

/* 必須・任意 */
.cf7__required,
.cf7__optional {
  margin-right: 15px;
  padding: 6px 14px;
  color: #fff;
  font-size: 0.8rem;
  vertical-align: 1px;
}

.cf7__required {
  color: #dc3232;
}

.cf7__optional {
  background: #878D8E;
}

/* input・textarea */
.cf7__list input[type="text"],
.cf7__list input[type="tel"],
.cf7__list input[type="email"],
.cf7__list textarea {
  width: 100%;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #017A98;
  border-radius: 10px;
}

/* ドロップダウンメニュー */
.cf7__select {
  position: relative;
}

.cf7__select select {
  width: 100%;
  padding: 15px;
  background: #fff;
  border: 1px solid #017A98;
  color: #231815;
  border-radius: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}

.cf7__select::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 25px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #017A98;
  border-left: 2px solid #017A98;
  transform: translateY(-50%) rotate(-135deg);
  font-size: 1.3rem;
  pointer-events: none;
}

/* selectタグがエラーのとき、矢印を赤にする */
@supports(selector(:has(*))) {
  .cf7__select:has(select.wpcf7-not-valid)::after {
    border-top: 2px solid #DF3232;
    border-left: 2px solid #DF3232;
  }
}

/* 「確認画面ページへ遷移したときに .cf7__select::after の矢印を非表示にする」 */
body.is-confirm-page .cf7__select::after {
  display: none;
}

/* 「確認画面ページへ遷移したときに .cf7__select::after の矢印を非表示にする」 */
body.is-confirm-page {
  padding: 0;
  border-radius: 10px;
  word-break: break-all;
}

/* フォーカス時 */
.cf7__select select:focus,
.cf7__list textarea:focus {
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* チェックボックス・ラジオボタン */
.cf7__list .wpcf7-checkbox,
.cf7__list .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__list .wpcf7-list-item {
  display: block;
  margin: 0;
}

.cf7__list .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 18px;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__list .wpcf7-list-item label {
  cursor: pointer;
}

/* チェックボックス・ラジオボタン */
.cf7__list .wpcf7-checkbox input[type="checkbox"],
.cf7__list .wpcf7-radio input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cf7__list .wpcf7-checkbox input[type="checkbox"]:checked::before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
}

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list input[type="text"]::placeholder,
.cf7__list input[type="tel"]::placeholder,
.cf7__list input[type="email"]::placeholder,
.cf7__list textarea::placeholder {
  color: #a5a5a5;
}

/* Microsoft Edge */
.cf7__list input[type="text"]::-ms-input-placeholder,
.cf7__list input[type="tel"]::-ms-input-placeholder,
.cf7__list input[type="email"]::-ms-input-placeholder,
.cf7__list textarea::-ms-input-placeholder {
  color: #a5a5a5;
}

/* 送信ボタン */
.cf7__button {
  text-align: center;
  margin-top: 50px;
}

.cf7-flex-box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cf7__submit-wrap input[type="submit"],
.cf7__submit-wrap input[type="button"] {
  width: 180px;
  height: 50px;
  background-color: #017a98;
  color: #fff;
  transition: opacity .6s;
  border: none;
  border-radius: 10px;
}

.cf7__submit-wrap .wpcf7-submit {
  width: 180px;
  height: 50px;
  background-color: #017a98;
  color: #fff;
  transition: opacity .6s;
  border: none;
  border-radius: 10px;
  padding: 0 20px;
  line-height: 1.2;
}

.cf7__reset-wrap input[type="reset"] {
  width: 150px;
  height: 50px;
  background: #767676;
  color: #fff;
  transition: opacity .6s;
  border: none;
  border-radius: 10px;
}

.cf7__reset-wrap .wpcf7-reset {
  width: 170px;
  height: 50px;
  background: #767676;
  color: #fff;
  transition: opacity .6s;
  border: none;
  border-radius: 10px;
}

.cf7__previous-wrap input[type="button"] {
  width: 150px;
  height: 50px;
  background: #767676;
  color: #fff;
  transition: opacity .6s;
  border: none;
  border-radius: 10px;
}

.cf7__previous-wrap .wpcf7-previous {
  width: 150px;
  height: 50px;
  background: #767676;
  color: #fff;
  transition: opacity .6s;
  border: none;
  border-radius: 10px;
}

.cf7__reset-wrap .wpcf7-reset:hover,
.cf7__previous-wrap .wpcf7-previous:hover,
.cf7__submit-wrap .wpcf7-submit:hover {
  opacity: .8;
}

/* 送信ボタン矢印の疑似クラス付与 */
.cf7__submit-wrap,
.cf7__previous-wrap {
  position: relative;
  display: inline-block;
}

.cf7__submit-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(-50%) rotate(135deg);
  pointer-events: none;
}

.cf7__previous-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  pointer-events: none;
}

/* 必須項目エラー表示 */
.cf7__list .wpcf7-not-valid {
  border-color: #DF3232;
}

/* ajax-loader */
.wpcf7-spinner {
  margin: 0 auto !important;
  margin-top: 10px !important;
  display: block !important;
  position: absolute !important;
  top: 60px;
  right: 0;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .cf7__list {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
  }

  .cf7__list:nth-of-type(n + 2) {
    margin-top: 0;
  }

  .cf7__list .wpcf7-checkbox,
  .cf7__list .wpcf7-radio {
    padding: 15px 0 0;
  }
}

.wpcf7-not-valid-tip {
  margin-top: 5px !important;
  font-size: 0.9rem !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: none !important;
  text-align: center !important;
  color: #DF3232 !important;
}

/* ふりがな切替用 */
.js-ruby-toggle {
  display: none !important;
}

.js-ruby-toggle.language-checked {
  display: inline-block !important;
}

.js-ruby-toggle.hidden-by-language {
  display: none !important;
}

/* モバイル版用のふりがな隙間対策 */
@media only screen and (max-width: 1024px) {
  ruby {
    text-indent: 0px;
    /* インデントをリセット */
    display: ruby;
    /* rubyの表示に変更 */
  }

  rt {
    margin-bottom: 0;
    /* ふりがなの下マージンをリセット */
    display: ruby-text;
    /* ruby-textに変更 */
    text-align: start;
    /* ふりがなの位置調整 */
    text-indent: 0px;
    /* インデントをリセット */
    line-height: normal;
    /* 行間を通常に */
    text-emphasis: none;
    /* 強調を解除 */
    font-size: 0.56rem;
    /* ふりがなのサイズを調整 */
    transform: translateY(0.3rem);
    /* 少し下に移動 */
  }
}

/* iPad Proなどの大きいタブレット向け */
@media only screen and (max-width: 1366px) {
  ruby {
    text-indent: 0px;
    display: ruby;
  }

  rt {
    margin-bottom: 0;
    display: ruby-text;
    text-align: start;
    text-indent: 0px;
    line-height: normal;
    text-emphasis: none;
    font-size: 0.56rem;
    transform: translateY(0.3rem);
  }
}


/* モバイル端末向けのふりがなマージン調整 */
.mobile-device rt {
  margin-top: -10px;
  /* ふりがなの上マージンをリセット */
}

.mobile-device .navi_item p a ruby rt {
  margin-top: -15px;
  /* ふりがなの上マージンをリセット */
}

@media screen and (min-width: 768px) {
    /* PC向けのふりがなマージン調整 */
    .mobile-device rt {
    margin-top: 0;
  }

    .mobile-device .navi_item p a ruby rt {
    margin-top: 0;
  }
}