@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/earlyaccess/notosansjp.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
/**********
可変サイズ
**********/
body {
  color: #333 !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 16px !important;
  overflow-x: hidden;
  position: relative;
}
@media (min-width: 1200px) {
  body {
    font-size: 18px !important;
  }
}

a {
  word-wrap: break-word;
  text-decoration: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
a:focus {
  border: 0;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul,
p {
  margin-bottom: 0;
}

/* flex均等配置 */
.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

/* 見出しスタイル */
.contact-content .contact-content-inner h2 {
  font-family: "Lora", serif;
  font-size: clamp(2.625rem, 2.196rem + 2.14vw, 5.625rem);
  font-weight: 400;
  white-space: nowrap;
  margin-bottom: 0;
}
.contact-content .contact-content-inner h2 span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: clamp(0.938rem, 0.875rem + 0.31vw, 1.375rem);
  padding-left: 10px;
}
@media (min-width: 768px) {
  .contact-content .contact-content-inner h2 span {
    padding-left: 25px;
  }
}

/* 丸矢印 */
.linkmark-yellow div, .linkmark-green div, .linkmark-gray div {
  height: clamp(1.563rem, 1.339rem + 1.12vw, 3.125rem);
  width: clamp(1.563rem, 1.339rem + 1.12vw, 3.125rem);
  border-radius: 50%;
  background: #EFEFEF;
  background-repeat: no-repeat;
  background-position: center;
}

.side-50 {
  padding-left: clamp(0.625rem, 0.268rem + 1.79vw, 3.125rem);
  padding-right: clamp(0.625rem, 0.268rem + 1.79vw, 3.125rem);
}

/* 長丸ボタン */
.inyellow-btn, .ingray-btn, .ingreen-btn {
  padding: 8px 20px;
  border-radius: 100vh;
}

/**********
global nav
**********/
/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
@media (min-width: 1200px) {
  #g-nav.panelactive {
    top: 50px;
  }
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #EFEFEF;
  /*丸のスタート位置と形状*/
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  right: -50px;
  top: -50px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  -webkit-transform: scale(50);
  -ms-transform: scale(50);
  transform: scale(50);
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none;
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  #g-nav-list {
    padding-bottom: 5rem;
  }
}
#g-nav-list > ul div > li {
  border-bottom: 1px solid #757575;
}
#g-nav-list > ul div > li ul {
  margin-left: 1rem;
}
#g-nav-list > ul div > li ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
#g-nav-list > ul div > li ul li a:hover {
  color: #01AA57;
}
#g-nav-list > ul div > li ul li a::before {
  content: "\f63b";
  font-family: bootstrap-icons;
  font-weight: 400;
  font-size: 1rem;
  margin-right: 3px;
}
#g-nav-list > ul div > li p {
  font-size: 1rem;
  padding: 10px;
  color: #757575;
}

#g-nav.panelactive #g-nav-list {
  display: block;
}

/*ナビゲーション*/
#g-nav > ul {
  opacity: 0;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive > ul {
  opacity: 1;
}

#g-nav.panelactive > ul li {
  -webkit-animation-name: gnaviAnime;
  animation-name: gnaviAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  text-align: start;
  list-style: none;
}

#g-nav li a,
#g-nav li .pop_btn {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  white-space: nowrap;
  letter-spacing: 0.1em;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
#g-nav li a:hover,
#g-nav li .pop_btn:hover {
  color: #01AA57;
}
#g-nav li a small,
#g-nav li .pop_btn small {
  display: inline-block;
  width: 150px;
  font-size: 0.5em;
  text-align: left;
  padding-left: 0.85em;
}
@media (min-width: 768px) {
  #g-nav li a small,
#g-nav li .pop_btn small {
    width: 210px;
  }
}

#g-nav .current a:hover,
#g-nav .current .pop_btn:hover {
  opacity: 1;
}
#g-nav .current a span,
#g-nav .current a small,
#g-nav .current .pop_btn span,
#g-nav .current .pop_btn small {
  color: #707070;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: absolute;
  top: 24px;
  right: 5px;
  z-index: 9999;
  cursor: pointer;
  width: 70px;
  height: 55px;
}
@media (min-width: 768px) {
  .openbtn1 {
    top: 39px;
    right: 10px;
  }
}
@media (min-width: 992px) {
  .openbtn1 {
    top: 41px;
  }
}
.openbtn1 div {
  position: absolute;
  left: 14px;
  height: 2px;
  top: 32px;
  font-size: 0.85rem;
  font-weight: bold;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #333;
  width: 50px;
}

.openbtn1 span:nth-of-type(1) {
  top: 12px;
}

.openbtn1 span:nth-of-type(2) {
  top: 20px;
}

.openbtn1 span:nth-of-type(3) {
  top: 28px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 13px;
  left: 20px;
  -webkit-transform: translateY(3px) rotate(-45deg);
  -ms-transform: translateY(3px) rotate(-45deg);
  transform: translateY(3px) rotate(-45deg);
  width: 42px;
  background-color: #333;
}

.openbtn1.active span:nth-of-type(2) {
  top: 22px;
  left: 20px;
  -webkit-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
  width: 42px;
  background-color: #333;
}

.openbtn1.active span:nth-of-type(3) {
  display: none;
}

.openbtn1.active div {
  color: #333;
}

/*========= レイアウトのためのCSS ===============*/
small {
  color: #fff;
}

.opacity {
  display: none;
}

.opacity1 {
  display: block;
}

.contact-content {
  margin-top: 80px;
  position: relative;
}
.contact-content .contact-content-inner {
  background: #EFEFEF;
  margin-right: 0;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .contact-content .contact-content-inner {
    margin-right: 16%;
    padding-left: 16%;
    padding-right: 0;
  }
}
.contact-content .contact-content-inner .add {
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .contact-content .contact-content-inner .add {
    margin-bottom: 0;
  }
}
.contact-content .contact-content-inner hr {
  background: #83d8fa;
  height: 3px;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.9);
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.9);
}
@media (min-width: 992px) {
  .contact-content .contact-content-inner {
    padding-right: 15px;
  }
}
.contact-content p {
  margin-bottom: 0;
}
.contact-content .pagetop {
  position: absolute;
  right: 15px;
  padding: 0;
}
.contact-content .pagetop a {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.contact-content .pagetop a img {
  width: 40px;
  height: 120px;
}
.contact-content .pagetop a:hover {
  opacity: 0.6;
}

/* ===== トラメディページナビ ===== */
.toramedi-nav button,
.toramedi_ft button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.toramedi-header {
  border-bottom: 2px solid #17DBFF;
}

.toramedi-nav .nav-pc {
  display: none;
}
@media (min-width: 992px) {
  .toramedi-nav .nav-pc {
    display: block;
  }
  .toramedi-nav .nav-pc li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .toramedi-nav .nav-pc li:not(:last-child):after {
    content: "\f287";
    font-family: bootstrap-icons;
    font-weight: 400;
    font-size: 0.6rem;
    color: #c4c4c4;
    margin: 0 15px;
  }
}
@media (min-width: 992px) {
  .toramedi-nav .nav-blc {
    display: none;
  }
}
.toramedi-nav .nav-pc a,
.toramedi-nav .nav-pc .pop_btn,
.toramedi-nav .nav-blc #g-nav li a,
.toramedi-nav .nav-blc #g-nav li .pop_btn {
  color: #333;
  white-space: nowrap;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  font-weight: bold;
}
.toramedi-nav .nav-pc a:hover,
.toramedi-nav .nav-pc .pop_btn:hover,
.toramedi-nav .nav-blc #g-nav li a:hover,
.toramedi-nav .nav-blc #g-nav li .pop_btn:hover {
  opacity: 0.6;
}
.toramedi-nav .nav-pc a span,
.toramedi-nav .nav-pc .pop_btn span,
.toramedi-nav .nav-blc #g-nav li a span,
.toramedi-nav .nav-blc #g-nav li .pop_btn span {
  color: #109AB3;
}
.toramedi-nav .nav-pc .pop_btn,
.toramedi-nav .nav-blc #g-nav li .pop_btn {
  display: inline-block;
}
.toramedi-nav .nav-pc li:nth-child(3) a span,
.toramedi-nav .nav-blc #g-nav li:nth-child(3) a span {
  color: #008BD5;
}
.toramedi-nav .nav-pc li:nth-child(4) a span,
.toramedi-nav .nav-blc #g-nav li:nth-child(4) a span {
  color: #E64290;
}
.toramedi-nav .nav-pc li:nth-child(5) a span,
.toramedi-nav .nav-blc #g-nav li:nth-child(5) a span {
  color: #F29600;
}
.toramedi-nav .nav-pc li:nth-child(6) a span,
.toramedi-nav .nav-blc #g-nav li:nth-child(6) a span {
  color: #1EAA39;
}

/**********
トラメディとはのモーダルウィンドウレイアウト
**********/
.toramedi-modal .modal-content {
  position: relative;
  -webkit-box-shadow: 3px 3px 8px #333;
  box-shadow: 3px 3px 8px #333;
  background: #109AB3;
  color: #fff;
}
.toramedi-modal .modal-content .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.toramedi-modal .modal-content h1 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.toramedi-modal .modal-content .modal-body p {
  font-weight: 400;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .toramedi-modal .modal-content .modal-body p {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .toramedi-modal .modal-content .modal-body p {
    font-size: 1.25rem;
  }
}

/**********
お知らせリストスタイル
**********/
.info-blc {
  margin-top: clamp(2.5rem, 1.75rem + 3.75vw, 6.25rem);
  margin-bottom: clamp(3.75rem, 3.25rem + 2.5vw, 6.25rem);
}
.info-blc .hd-text {
  margin-bottom: 15px;
}
@media (min-width: 1400px) {
  .info-blc .hd-text {
    margin-bottom: 25px;
  }
}
.info-blc .hd-text h2 {
  font-size: clamp(2.5rem, 2.375rem + 0.63vw, 3.125rem);
  margin-bottom: 0;
}
.info-blc .hd-text p {
  color: #01AA57;
  font-weight: bold;
}

.info-list {
  /* scrollbar */
}
.info-list li {
  border-bottom: 1px solid #333;
}
.info-list li a {
  color: #333;
  padding: 30px 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.info-list li a:hover {
  color: #01AA57;
}
.info-list li a .list-blc {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .info-list li a .list-blc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.info-list li a .list-blc .important-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.info-list li a .list-blc .article {
  width: 100%;
}
.info-list li:nth-of-type(1) {
  border-top: 1px solid #333;
}
.info-list .list-scroll-wrap ul li:nth-of-type(1) {
  border-top: 0;
}
.info-list .list-mark-blc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .info-list .list-mark-blc {
    margin-left: 1rem;
  }
}
.info-list .list-icon {
  color: #015E31;
  margin-right: 10px;
}
.info-list .list-day {
  font-weight: bold;
  font-size: 0.85em;
  margin-bottom: 0.5rem;
}
.info-list .list-title {
  text-align: justify;
}
.info-list .list-mark {
  white-space: nowrap;
  color: #757575;
  font-size: 0.85rem;
  padding: 1px 5px;
  border: 1px solid #757575;
  border-radius: 9999px;
  margin-top: 0.5rem;
}
.info-list .important-mark {
  color: #dc3545;
  border: 1px solid #dc3545;
  margin-right: 8px;
}
.info-list .scroll-area {
  background-color: #ffffff;
  height: 462px;
  padding: 0 30px 45px 0;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (min-width: 992px) {
  .info-list .scroll-area {
    height: 493px;
  }
}
.info-list .scroll__inner::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
.info-list .simplebar-scrollbar::before {
  background: #015E31;
  border-radius: 0;
  width: 9px;
  margin-left: 1px;
  margin-top: 1px;
}
.info-list .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.info-list .simplebar-track {
  background: #EFEFEF;
  width: 15px !important;
}

/**********
header
**********/
header {
  max-width: 100vw;
  border-bottom: 1px solid #EFEFEF;
}

hgroup {
  height: 20px;
}
@media (min-width: 768px) {
  hgroup {
    height: 35px;
  }
}
hgroup > p {
  font-size: 12px;
}
@media (min-width: 768px) {
  hgroup > p {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  hgroup > p {
    font-size: 1.25rem;
  }
}

hgroup,
.h-nav {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 992px) {
  hgroup,
.h-nav {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.h-nav {
  background-color: #fff;
  height: 60px;
}
@media (min-width: 768px) {
  .h-nav {
    height: 65px;
  }
}
@media (min-width: 992px) {
  .h-nav {
    height: 70px;
  }
}
.h-nav .h-nav-left {
  width: 100%;
  margin-right: 80px;
}
.h-nav .h-nav-left img {
  width: 170px;
}
@media (min-width: 992px) {
  .h-nav .h-nav-left img {
    width: 250px;
  }
}
@media (min-width: 1400px) {
  .h-nav .h-nav-left img {
    width: 280px;
  }
}

/* ===== トラメディページ ロゴ ===== */
.toramedi-nav .h-nav-left img {
  width: 170px;
}
@media (min-width: 992px) {
  .toramedi-nav .h-nav-left img {
    width: 205px;
  }
}
@media (min-width: 1400px) {
  .toramedi-nav .h-nav-left img {
    width: 210px;
  }
}
.toramedi-nav .h-nav-left p {
  font-size: 0.55rem;
  text-align: center;
  color: #333;
}
@media (min-width: 992px) {
  .toramedi-nav .h-nav-left p {
    font-size: 0.7rem;
  }
}

/* 一般向けページ */
.visitor-line {
  background-color: #01AA57;
}

/* 総合ページ */
.total-line {
  background-color: #a5a5a5;
}
.total-line .serch-form {
  margin-right: 0;
}

.total-page .h-nav-left {
  margin-right: 0;
}

.text-color {
  font-weight: bold;
}

/* 会員向けページ */
.member-line {
  background-color: #ffc926;
}
.member-line .text-color {
  color: #333;
}

/* トラメディ */
.toramedi-line {
  background-color: #17DBFF;
}
.toramedi-line .text-color {
  color: #333;
}

/**********
総合ページへボタン
**********/
.inwhit-btn a > div {
  background-color: #fff;
  padding: 2px 18px;
  border-radius: 100vh;
  border: 1px solid #333;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.inwhit-btn a > div div {
  color: #333;
  font-size: 15px;
  white-space: nowrap;
}
.inwhit-btn a:hover > div {
  background-color: #757575;
  border: 1px solid #757575;
}
.inwhit-btn a:hover > div div {
  color: #fff;
}

/**********
SNSアイコン
**********/
.sns-blc-hd li {
  margin-right: 0.8rem;
}
.sns-blc-hd li:last-child {
  margin-right: 0;
}
@media (min-width: 768px) {
  .sns-blc-hd li:last-child {
    margin-right: 1rem;
  }
}
.sns-blc-hd li a {
  color: #333;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.sns-blc-hd li a:hover {
  opacity: 0.6;
}
.sns-blc-hd li a svg g {
  height: 25px;
}
@media (min-width: 1200px) {
  .sns-blc-hd li a svg g {
    height: 35px;
  }
}

.sns-blc-ft {
  padding-top: 1rem;
}
.sns-blc-ft li {
  margin-right: 8px;
}
.sns-blc-ft li:last-child {
  margin-right: 0;
}
.sns-blc-ft li a {
  color: #333;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.sns-blc-ft li a:hover {
  opacity: 0.6;
}
.sns-blc-ft li a svg {
  width: 28px;
  height: 28px;
}
@media (min-width: 1200px) {
  .sns-blc-ft li a svg {
    width: 32px;
    height: 32px;
  }
}

.visitor-line .sns-blc-hd a,
.total-line .sns-blc-hd a {
  color: #fff;
}

/**********
サイト内検索
**********/
.serch-form {
  position: relative;
}
@media (min-width: 768px) {
  .serch-form {
    margin-right: 1rem;
  }
}
.serch-form input[type=text] {
  font-size: 15px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 18px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 100vh;
  width: 250px;
}
.serch-form input[type=text]:focus {
  outline: 0;
}
@media (min-width: 768px) {
  .serch-form input[type=text] {
    height: 27px;
  }
}
.serch-form button[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  height: 40px;
  width: 35px;
  border: none;
  font-size: 0.8rem;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0 100vh 100vh 0;
  background-color: transparent;
}
@media (min-width: 768px) {
  .serch-form button[type=submit] {
    height: 27px;
  }
}

/**********
入会案内・お問い合わせ・ログアウトボタン
**********/
.ingreen-btn {
  background-color: #015E31;
  border: 1px solid #015E31;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.ingreen-btn a {
  color: #fff;
}
.ingreen-btn:hover {
  color: #015E31;
  background-color: #fff;
  border: 1px solid #015E31;
}
.ingreen-btn:hover a {
  color: #015E31;
}

.ingray-btn {
  background-color: #a5a5a5;
  border: 1px solid #a5a5a5;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.ingray-btn a {
  color: #fff;
}
.ingray-btn:hover {
  color: #a5a5a5;
  background-color: #fff;
  border: 1px solid #a5a5a5;
}
.ingray-btn:hover a {
  color: #a5a5a5;
}

.inyellow-btn {
  background-color: #B38D1B;
  border: 1px solid #B38D1B;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.inyellow-btn a {
  color: #fff;
}
.inyellow-btn:hover {
  color: #B38D1B;
  background-color: #fff;
  border: 1px solid #B38D1B;
}
.inyellow-btn:hover a {
  color: #B38D1B;
}

/**********
ヘッダー画像エリア
**********/
main {
  overflow: hidden;
}

.hd-img-blc {
  height: 160px;
  min-height: 150px;
  border-bottom-right-radius: 2000px 300px;
  border-bottom-left-radius: 2000px 300px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  margin-left: -200px;
  margin-right: -200px;
  padding-left: 200px;
  padding-right: 200px;
}
@media (min-width: 768px) {
  .hd-img-blc {
    height: 330px;
  }
}
@media (min-width: 992px) {
  .hd-img-blc {
    height: 390px;
  }
}
@media (min-width: 1200px) {
  .hd-img-blc {
    height: 500px;
  }
}
@media (min-width: 1400px) {
  .hd-img-blc {
    height: clamp(31.25rem, 7.5rem + 31.64vw, 58.125rem);
  }
}

.topmrg {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .topmrg {
    margin-top: 95px;
  }
}
@media (min-width: 992px) {
  .topmrg {
    margin-top: 100px;
  }
}

.topmrg-hd {
  margin-top: 0;
}
@media (min-width: 768px) {
  .topmrg-hd {
    margin-top: 95px;
  }
}
@media (min-width: 992px) {
  .topmrg-hd {
    margin-top: 100px;
  }
}

.hd-img-visit {
  background: url("../images/hdimg-v.jpg") no-repeat border-box center center/contain;
}

.hd-img-total {
  background: url("../images/hdimg.jpg") no-repeat border-box center center/contain;
}

.hd-img-member {
  background: url("../images/hdimg-m.jpg") no-repeat border-box center center/contain;
}

.hd-down-blc {
  background: #fff;
  height: 65px;
  border-top: 1px solid #757575;
}
@media (min-width: 768px) {
  .hd-down-blc {
    border-top: none;
  }
}
.hd-down-blc .serch-form input {
  width: 180px;
}
.hd-down-blc .join-btn div {
  white-space: nowrap;
}

.arch {
  position: relative;
  height: 100%;
}
@media (min-width: 768px) {
  .arch {
    margin-top: 0;
  }
}
.arch .hd-txt-blc {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.arch .hd-txt-blc .hd-txt {
  font-size: clamp(3rem, 2.8rem + 1vw, 4rem);
  font-family: "Lato", serif;
  font-weight: 700;
  font-style: normal;
}
.arch .slider-hd-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
}
@media (min-width: 768px) {
  .arch .slider-hd-wrap {
    width: 75%;
  }
}
.arch .slider-hd-wrap .slide-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.arch .slider-hd-wrap .slide-item-wrap img {
  border: 1px solid #333;
  border-radius: 20px;
}

.visitor .hd-txt-blc,
.member .hd-txt-blc {
  color: #015E31;
}

.total .hd-txt-blc {
  color: #fff;
}
.total .hd-txt-blc .hd-txt {
  font-size: clamp(1.5rem, 1rem + 2.5vw, 4rem);
  white-space: nowrap;
}

/**********
footer
**********/
main {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  main {
    margin-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  main {
    margin-bottom: 100px;
  }
}

/**********
トップへ戻るボタン
**********/
body {
  position: relative;
}
body #topbtn-pc:hover {
  opacity: 1;
}
body .chara1 {
  z-index: 100;
  display: none;
}
@media (min-width: 1200px) {
  body .chara1 {
    display: block;
  }
}
body .chara1 img {
  width: 63px;
}

footer {
  position: relative;
}
footer .chara2 {
  position: absolute;
  left: 15px;
  top: -70px;
  width: 63px;
}
footer .totop {
  background: #EFEFEF;
  padding: 8px 15px;
}
footer .totop a div .chara1-mob {
  width: 54px;
}
footer .totop a div p {
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
@media (min-width: 768px) {
  footer .totop a div p {
    font-size: 1.467rem;
  }
}
footer .totop a div p i {
  padding-left: 0.5rem;
  -webkit-text-stroke: 1px;
}
footer .totop a div .chara2-mob {
  width: 50px;
}
footer .totop a div:hover p {
  color: #01AA57;
}
footer .banner-blc {
  /* footer-swiper */
  position: relative;
  background: #BFE9D5;
  height: 150px;
}
@media (min-width: 768px) {
  footer .banner-blc {
    height: 180px;
  }
}
@media (min-width: 1200px) {
  footer .banner-blc {
    border-radius: 30px 30px 0 0;
    height: 200px;
  }
}
footer .banner-blc .slider-ft-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
}
footer .footer-nav-blc {
  background: #EFEFEF;
  padding-bottom: 1rem;
}
footer .footer-nav-blc .g-nav-list a {
  color: #333;
}
footer .footer-nav-blc .g-nav-list ul div > li {
  border-bottom: 1px solid #757575;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 992px) {
  footer .footer-nav-blc .g-nav-list ul div > li {
    padding-top: 40px;
    padding-bottom: 3px;
  }
}
footer .footer-nav-blc .g-nav-list ul div > li > a:hover {
  color: #01AA57;
}
footer .footer-nav-blc .g-nav-list ul div > li > a, footer .footer-nav-blc .g-nav-list ul div > li > p {
  display: block;
  font-size: clamp(1rem, 0.982rem + 0.09vw, 1.125rem);
}
footer .footer-nav-blc .g-nav-list ul div > li ul {
  margin-left: 1rem;
}
footer .footer-nav-blc .g-nav-list ul div > li ul a {
  font-size: clamp(0.875rem, 0.857rem + 0.09vw, 1rem);
}
footer .footer-nav-blc .g-nav-list .nest-nav-blc {
  margin-left: 1rem;
}
footer .footer-nav-blc .g-nav-list .nest-nav-blc li {
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
footer .footer-nav-blc .g-nav-list .nest-nav-blc li a {
  font-size: clamp(0.875rem, 0.857rem + 0.09vw, 1rem);
}
footer .footer-nav-blc .g-nav-list .nest-nav-blc li a::before {
  content: "\f63b";
  font-family: bootstrap-icons;
  font-weight: 400;
  font-size: 1rem;
  margin-right: 3px;
}
footer .footer-nav-blc .g-nav-list .nest-nav-blc li a:hover {
  color: #01AA57;
}
footer .footer-comp .logo-add img {
  width: 170px;
}
@media (min-width: 992px) {
  footer .footer-comp .logo-add img {
    width: 220px;
  }
}
footer .footer-comp .logo-add div p {
  font-size: 12px;
}
@media (min-width: 992px) {
  footer .footer-comp .logo-add div p {
    font-size: 16px;
  }
}
footer .footer-comp .add-blc {
  padding: 15px 0;
  width: 100%;
}
footer .footer-comp .add-blc .footer-link-blc {
  padding-top: 1rem;
}
footer .footer-comp .add-blc .footer-link-blc a {
  padding-bottom: 10px;
}
footer .footer-bar {
  height: 35px;
}
@media (min-width: 992px) {
  footer .footer-bar {
    height: 50px;
  }
}
footer .footer-bar .copy-txt {
  font-size: 11px;
}
@media (min-width: 992px) {
  footer .footer-bar .copy-txt {
    font-size: 14px;
  }
}
footer .footer-link-blc a {
  font-size: 12px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
footer .footer-link-blc a:hover {
  opacity: 0.6;
}
@media (min-width: 992px) {
  footer .footer-link-blc a {
    font-size: 16px;
  }
  footer .footer-link-blc a:first-child {
    padding-right: 1rem;
  }
}

.visitor_ft .footer-bar {
  background: #01AA57;
}
.visitor_ft .footer-bar .copy-txt {
  color: #fff;
}
.visitor_ft .footer-link-blc a {
  color: #333;
  -webkit-text-decoration: underline solid #333;
  text-decoration: underline solid #333;
}
@media (min-width: 992px) {
  .visitor_ft .footer-link-blc a {
    color: #fff;
    -webkit-text-decoration: underline solid #fff;
    text-decoration: underline solid #fff;
  }
}

.total_ft .footer-bar {
  background: #a5a5a5;
}
.total_ft .footer-bar .copy-txt {
  color: #fff;
}
.total_ft .footer-link-blc a {
  color: #333;
  -webkit-text-decoration: underline solid #333;
  text-decoration: underline solid #333;
}
@media (min-width: 992px) {
  .total_ft .footer-link-blc a {
    color: #fff;
    -webkit-text-decoration: underline solid #fff;
    text-decoration: underline solid #fff;
  }
}

.member_ft .banner-blc {
  background: #ffe392;
}
.member_ft .footer-bar {
  background: #ffc926;
}
.member_ft .footer-bar .copy-txt {
  color: #333;
}
.member_ft .footer-link-blc a {
  color: #333;
  -webkit-text-decoration: underline solid #333;
  text-decoration: underline solid #333;
}

.toramedi_ft .totop {
  background: none;
  border-top: 1px solid #17DBFF;
}
.toramedi_ft .footer-bar {
  background: #17DBFF;
}
.toramedi_ft .footer-bar .copy-txt {
  color: #333;
}
.toramedi_ft .footer-link-blc a {
  color: #333;
  -webkit-text-decoration: underline solid #333;
  text-decoration: underline solid #333;
}
@media (min-width: 992px) {
  .toramedi_ft .footer-link-blc a {
    color: #333;
    -webkit-text-decoration: underline solid #333;
    text-decoration: underline solid #333;
  }
}
.toramedi_ft .banner-blc {
  border-radius: 0;
  height: auto;
  border-top: 2px solid #17DBFF;
  border-bottom: 2px solid #17DBFF;
  background: none;
}
.toramedi_ft .banner-blc .breadcrumbs li {
  font-size: 12px;
}
.toramedi_ft .banner-blc .breadcrumbs li a {
  display: inline !important;
}
.toramedi_ft .footer-nav-blc {
  padding-top: 20px;
  background: none;
}
.toramedi_ft .footer-nav-blc .footer-nav-left {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .toramedi_ft .footer-nav-blc .footer-nav-left {
    margin-bottom: 0;
  }
}
.toramedi_ft .footer-nav-blc .footer-nav-left img {
  width: 170px;
}
@media (min-width: 992px) {
  .toramedi_ft .footer-nav-blc .footer-nav-left img {
    width: 220px;
  }
}
.toramedi_ft .footer-nav-blc .footer-comp .add-blc {
  padding: 0;
}
.toramedi_ft .footer-nav-blc .footer-nav {
  margin-top: 20px;
}
.toramedi_ft .footer-nav-blc .footer-nav ul li {
  padding-top: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid #c4c4c4;
}
.toramedi_ft .footer-nav-blc .footer-nav ul li a,
.toramedi_ft .footer-nav-blc .footer-nav ul li .pop_btn {
  font-weight: bold;
  display: inline-block;
  height: 100%;
}
.toramedi_ft .footer-nav-blc .footer-nav ul li a span,
.toramedi_ft .footer-nav-blc .footer-nav ul li .pop_btn span {
  color: #109AB3;
}
@media (min-width: 768px) {
  .toramedi_ft .footer-nav-blc .footer-nav ul li {
    border-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .toramedi_ft .footer-nav-blc .footer-nav ul li a,
.toramedi_ft .footer-nav-blc .footer-nav ul li .pop_btn {
    color: #333;
    white-space: nowrap;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    font-weight: bold;
  }
  .toramedi_ft .footer-nav-blc .footer-nav ul li a:hover,
.toramedi_ft .footer-nav-blc .footer-nav ul li .pop_btn:hover {
    opacity: 0.6;
  }
}
.toramedi_ft .footer-nav-blc .footer-nav ul li:nth-child(3) a span {
  color: #008BD5;
}
.toramedi_ft .footer-nav-blc .footer-nav ul li:nth-child(4) a span {
  color: #E64290;
}
.toramedi_ft .footer-nav-blc .footer-nav ul li:nth-child(5) a span {
  color: #F29600;
}
.toramedi_ft .footer-nav-blc .footer-nav ul li:nth-child(6) a span {
  color: #1EAA39;
}
.toramedi_ft .footer-nav-blc .footer-nav ul li:first-child {
  border-top: 1px solid #c4c4c4;
}
@media (min-width: 768px) {
  .toramedi_ft .footer-nav-blc .footer-nav ul li:first-child {
    border-top: 0;
  }
}
@media (min-width: 768px) {
  .toramedi_ft .footer-nav-blc .footer-nav ul li:not(:last-child):after {
    content: "\f287";
    font-family: bootstrap-icons;
    font-weight: 400;
    font-size: 0.6rem;
    color: #c4c4c4;
    margin: 0 15px;
  }
}

/**********
アコーディオンメニュー
**********/
.accordion {
  border-bottom: 1px solid #757575;
  padding-top: 18px;
  padding-bottom: 18px;
}

p.accordion_title {
  padding-bottom: 3px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
p.accordion_title:hover a {
  color: #01AA57;
}

.accordion_title {
  position: relative;
  border: none;
  display: block;
  list-style: none;
  cursor: pointer;
  font-size: clamp(1rem, 0.982rem + 0.09vw, 1.125rem);
}
.accordion_title:focus {
  border: none;
}
@media (min-width: 992px) {
  .accordion_title {
    cursor: default;
    border-bottom: 1px solid #757575;
    color: #757575;
  }
}

summary.accordion_title::-webkit-details-marker {
  display: none;
}

.accordion_title:after {
  content: "\f64d";
  font-family: bootstrap-icons;
  font-weight: 400;
  font-size: 1rem;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 20px;
  line-height: 1;
  padding: 0;
  pointer-events: none;
}
@media (min-width: 992px) {
  .accordion_title:after {
    content: "";
  }
}

.accordion::details-content {
  opacity: 0;
  block-size: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: display, opacity, block-size, padding;
  -o-transition-property: display, opacity, block-size, padding;
  transition-property: display, opacity, block-size, padding;
  transition-behavior: allow-discrete;
  line-height: 1.6em;
}

.accordion[open]::details-content {
  opacity: 1;
  block-size: auto;
  block-size: calc-size(auto, size);
}

.accordion[open] .accordion_title:after {
  content: "\f63b";
  font-family: bootstrap-icons;
  font-weight: 400;
  font-size: 1rem;
}

/* もっとみるボタン */
.morewrap {
  width: 100%;
}

@media (min-width: 992px) {
  .add {
    content: "";
    display: block;
    width: 23%;
    margin: 8px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (min-width: 768px) {
  .add {
    content: "";
    display: block;
    width: 30%;
    margin: 11px;
  }
}
@media (min-width: 992px) {
  .add {
    width: 23%;
    margin: 8px;
  }
}
@media (min-width: 1200px) {
  .add {
    width: 23%;
    margin: 11px;
  }
}

.morelink {
  color: #fff;
  display: block;
  text-align: center;
  width: 170px;
  border: 1px solid #109AB3;
  background-color: #109AB3;
  border-radius: 9999px;
  padding: 8px 15px;
  margin-bottom: 0;
  margin-top: 3rem;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.morelink:hover {
  cursor: pointer;
  background-color: #fff;
  color: #109AB3;
  border: 1px solid #109AB3;
}

/* 見出しスタイル */
/**********
リンク丸矢印
**********/
.linkmark-gray {
  height: 40%;
}
.linkmark-gray div {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%23333" fill-rule="evenodd" d="M2 8a.75.75 0 0 1 .75-.75h8.69L8.22 4.03a.75.75 0 0 1 1.06-1.06l4.5 4.5a.75.75 0 0 1 0 1.06l-4.5 4.5a.75.75 0 0 1-1.06-1.06l3.22-3.22H2.75A.75.75 0 0 1 2 8" clip-rule="evenodd"/></svg>');
  background-color: #EFEFEF;
  border: 1px solid #333;
}

.linkmark-green {
  height: 40%;
}
.linkmark-green div {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%23fff" fill-rule="evenodd" d="M2 8a.75.75 0 0 1 .75-.75h8.69L8.22 4.03a.75.75 0 0 1 1.06-1.06l4.5 4.5a.75.75 0 0 1 0 1.06l-4.5 4.5a.75.75 0 0 1-1.06-1.06l3.22-3.22H2.75A.75.75 0 0 1 2 8" clip-rule="evenodd"/></svg>');
  background-color: #015E31;
}

.linkmark-yellow {
  height: 40%;
}
.linkmark-yellow div {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%23333" fill-rule="evenodd" d="M2 8a.75.75 0 0 1 .75-.75h8.69L8.22 4.03a.75.75 0 0 1 1.06-1.06l4.5 4.5a.75.75 0 0 1 0 1.06l-4.5 4.5a.75.75 0 0 1-1.06-1.06l3.22-3.22H2.75A.75.75 0 0 1 2 8" clip-rule="evenodd"/></svg>');
  background-color: #ffc926;
  border: 1px solid #333;
}

/**********
リンクボタン
**********/
.link-btn {
  background-color: #fff;
  display: inline-block;
  padding: 5px 13px;
  border-radius: 9999px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #333;
  z-index: 30;
}
.link-btn:hover {
  background-color: #a5a5a5;
}
.link-btn:hover a {
  color: #fff;
}
.link-btn:hover a .linkmark-gray div {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%23333" fill-rule="evenodd" d="M2 8a.75.75 0 0 1 .75-.75h8.69L8.22 4.03a.75.75 0 0 1 1.06-1.06l4.5 4.5a.75.75 0 0 1 0 1.06l-4.5 4.5a.75.75 0 0 1-1.06-1.06l3.22-3.22H2.75A.75.75 0 0 1 2 8" clip-rule="evenodd"/></svg>');
  background-color: #fff;
}
.link-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
}
.link-btn a p {
  padding-right: 20px;
}

.tra-txt .link-btn:hover {
  background-color: #01AA57;
}

/**********
会員向けページコンテンツリンクボタン
**********/
.content-btn {
  background-color: #fff;
  display: inline-block;
  padding: 5px 13px;
  border-radius: 10px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #333;
  z-index: 30;
}
.content-btn:hover {
  background-color: #757575;
}
.content-btn:hover a {
  color: #333;
}
.content-btn:hover a .linkmark-yellow div {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%23333" fill-rule="evenodd" d="M2 8a.75.75 0 0 1 .75-.75h8.69L8.22 4.03a.75.75 0 0 1 1.06-1.06l4.5 4.5a.75.75 0 0 1 0 1.06l-4.5 4.5a.75.75 0 0 1-1.06-1.06l3.22-3.22H2.75A.75.75 0 0 1 2 8" clip-rule="evenodd"/></svg>');
  background-color: #ffc926;
}
.content-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  color: #333;
}
.content-btn a p {
  padding-right: 20px;
}

/**********
TOPページトラメディ―リンクボタン色
**********/
.tramedy-blc .link-btn {
  border: 1px solid #015E31;
}
.tramedy-blc .link-btn:hover {
  background-color: #015E31;
}
.tramedy-blc .link-btn:hover a {
  color: #fff;
}
.tramedy-blc .link-btn:hover a .linkmark-green div {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%23015E31" fill-rule="evenodd" d="M2 8a.75.75 0 0 1 .75-.75h8.69L8.22 4.03a.75.75 0 0 1 1.06-1.06l4.5 4.5a.75.75 0 0 1 0 1.06l-4.5 4.5a.75.75 0 0 1-1.06-1.06l3.22-3.22H2.75A.75.75 0 0 1 2 8" clip-rule="evenodd"/></svg>');
  background-color: #fff;
}

/**********
一般向けページTOPのコンテンツブロック
**********/
.content-list-blc {
  max-width: 1545px;
  padding-left: clamp(0.625rem, -0.179rem + 4.02vw, 6.25rem);
  padding-right: clamp(0.625rem, -0.179rem + 4.02vw, 6.25rem);
  padding-top: clamp(2.5rem, 2.143rem + 1.79vw, 5rem);
}
.content-list-blc .blc {
  width: 46%;
  margin-right: 4%;
  margin-bottom: 4%;
  height: clamp(5rem, 3.713rem + 6.44vw, 11.438rem);
  border: solid 1px #015E31;
  border-radius: 15px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
@media (min-width: 992px) {
  .content-list-blc .blc {
    width: 19%;
    margin-right: 1%;
  }
}
.content-list-blc .blc:hover {
  background-color: #BFE9D5;
  -webkit-box-shadow: 4px 4px 6px #757575;
  box-shadow: 4px 4px 6px #757575;
}
.content-list-blc .blc a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.content-list-blc .blc a > div {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.content-list-blc .blc .content-name,
.content-list-blc .blc .linkmark-green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.content-list-blc .blc .content-name {
  color: #333;
  text-align: center;
  height: 60%;
  line-height: 1.1;
  font-size: 13px;
}
@media (min-width: 768px) {
  .content-list-blc .blc .content-name {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .content-list-blc .blc .content-name {
    font-size: 18px;
  }
}

/**********
総合ページ・会員ページコンテンツブロック共通レイアウト
**********/
.total .content-list-blc-tm,
.member .content-list-blc-tm {
  padding-top: clamp(2.5rem, 1.964rem + 2.68vw, 6.25rem);
}
.total .content-list-blc-tm .item-wrap a:hover .item-layout .content-icon,
.member .content-list-blc-tm .item-wrap a:hover .item-layout .content-icon {
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .total .content-list-blc-tm .item-wrap a:hover .item-layout,
.member .content-list-blc-tm .item-wrap a:hover .item-layout {
    -webkit-box-shadow: 5px 5px 8px #757575;
    box-shadow: 5px 5px 8px #757575;
  }
}
.total .content-list-blc-tm .item-wrap .item-layout,
.member .content-list-blc-tm .item-wrap .item-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #333;
  border-radius: 15px;
  position: relative;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  height: 100%;
}
@media (min-width: 768px) {
  .total .content-list-blc-tm .item-wrap .item-layout,
.member .content-list-blc-tm .item-wrap .item-layout {
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 9999px;
    height: 80px;
  }
}
.total .content-list-blc-tm .item-wrap .item-layout .content-icon,
.member .content-list-blc-tm .item-wrap .item-layout .content-icon {
  position: absolute;
  top: -14.5px;
  width: 38px;
  height: 38px;
  border: 1px solid #333;
  padding: 0.38rem;
  border-radius: 9999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  -webkit-box-shadow: 2px 2px 4px #757575;
  box-shadow: 2px 2px 4px #757575;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
@media (min-width: 768px) {
  .total .content-list-blc-tm .item-wrap .item-layout .content-icon,
.member .content-list-blc-tm .item-wrap .item-layout .content-icon {
    position: static;
    width: 60px;
    height: 60px;
    margin-left: 10px;
  }
}
@media (min-width: 992px) {
  .total .content-list-blc-tm .item-wrap .item-layout .content-icon,
.member .content-list-blc-tm .item-wrap .item-layout .content-icon {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.total .content-list-blc-tm .item-wrap .item-layout .content-icon img,
.member .content-list-blc-tm .item-wrap .item-layout .content-icon img {
  height: 100%;
}
@media (min-width: 768px) {
  .total .content-list-blc-tm .item-wrap .item-layout .content-icon img,
.member .content-list-blc-tm .item-wrap .item-layout .content-icon img {
    padding: 3px;
  }
}
.total .content-list-blc-tm .item-wrap .item-layout .content-name,
.member .content-list-blc-tm .item-wrap .item-layout .content-name {
  color: #333;
  padding-top: 30px;
  font-size: 14px;
  padding-bottom: 5px;
  white-space: nowrap;
  line-height: 1.25;
  font-weight: bold;
}
@media (min-width: 768px) {
  .total .content-list-blc-tm .item-wrap .item-layout .content-name,
.member .content-list-blc-tm .item-wrap .item-layout .content-name {
    padding: 0;
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .total .content-list-blc-tm .item-wrap .item-layout .content-name,
.member .content-list-blc-tm .item-wrap .item-layout .content-name {
    font-size: 18px;
    line-height: 1.3;
  }
}
@media (min-width: 1400px) {
  .total .content-list-blc-tm .item-wrap .item-layout .content-name,
.member .content-list-blc-tm .item-wrap .item-layout .content-name {
    font-size: clamp(1.25rem, 0.948rem + 0.34vw, 1.5rem);
  }
}
.total .content-list-blc-tm .item-wrap .item-layout i,
.member .content-list-blc-tm .item-wrap .item-layout i {
  padding-bottom: 5px;
  color: #333;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .total .content-list-blc-tm .item-wrap .item-layout i,
.member .content-list-blc-tm .item-wrap .item-layout i {
    padding: 0;
  }
}
.total .content-list-blc-tm .item-wrap .item-layout .item-mark,
.member .content-list-blc-tm .item-wrap .item-layout .item-mark {
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .total .content-list-blc-tm .item-wrap .item-layout .item-mark,
.member .content-list-blc-tm .item-wrap .item-layout .item-mark {
    padding: 0;
  }
}

/**********
総合ページコンテンツブロック
**********/
.total .content-list-blc-tm > div .item-out-wrap:nth-child(1) {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .total .content-list-blc-tm > div .item-out-wrap:nth-child(1) {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media (min-width: 1200px) {
  .total .content-list-blc-tm > div .item-out-wrap:nth-child(1) {
    padding-left: 150px;
    padding-right: 150px;
  }
}
@media (min-width: 1400px) {
  .total .content-list-blc-tm > div .item-out-wrap:nth-child(1) {
    padding-left: 250px;
    padding-right: 250px;
  }
}
.total .content-list-blc-tm > div .item-out-wrap:nth-child(1) .item-wrap:nth-child(1) .item-layout {
  background-color: #8ac75a;
}
.total .content-list-blc-tm > div .item-out-wrap:nth-child(1) .item-wrap:nth-child(2) .item-layout {
  background-color: #ffc926;
}
.total .content-list-blc-tm > div .item-out-wrap:nth-child(1) .item-wrap:nth-child(3) .item-layout {
  background-color: #17dbff;
}
@media (min-width: 992px) {
  .total .content-list-blc-tm > div .item-out-wrap:nth-child(2) {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media (min-width: 1400px) {
  .total .content-list-blc-tm > div .item-out-wrap:nth-child(2) {
    padding-left: 130px;
    padding-right: 130px;
  }
}
.total .content-list-blc-tm > div .item-out-wrap:nth-child(2) .item-wrap:nth-child(1) .content-name {
  padding-bottom: 22px;
}
@media (min-width: 768px) {
  .total .content-list-blc-tm > div .item-out-wrap:nth-child(2) .item-wrap:nth-child(1) .content-name {
    padding-bottom: 0;
  }
}
.total .content-list-blc-tm > div .item-layout {
  background-color: #c4c4c4;
}

/**********
会員向けページ
**********/
.member .item-layout {
  background-color: #ffe392;
}

/**********
会員向けページコンテンツメニューブロック
**********/
.member .content-menu {
  margin-top: 80px;
  background-color: #ffe392;
}
.member .content-menu > div {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1200px) {
  .member .content-menu .item-out-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .member .content-menu .item-wrap {
    width: 18.666667%;
  }
}
.member .content-menu .item-wrap a {
  width: 100%;
  height: 100%;
}
.member .content-menu .item-wrap a:hover .content-item {
  -webkit-box-shadow: 2px 2px 4px #757575;
  box-shadow: 2px 2px 4px #757575;
}
.member .content-menu .item-wrap .content-item {
  background: #fff;
  padding: 1rem 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #333;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
@media (min-width: 768px) {
  .member .content-menu .item-wrap .content-item {
    padding: 1rem;
  }
}
.member .content-menu .item-wrap .content-item p {
  white-space: nowrap;
  color: #333;
}

/**********
TOPページのトラメディ―スタイル
**********/
.tramedei-blc {
  margin-top: 80px;
  background-color: #BFE9D5;
  margin-right: 15px;
  margin-top: clamp(5rem, 1.78rem + 6.7vw, 12.5rem);
  position: relative;
  height: 464px;
  border-radius: 0 20px 20px 0;
}
@media (min-width: 768px) {
  .tramedei-blc {
    margin-right: 6.9%;
    height: 500px;
  }
}
@media (min-width: 992px) {
  .tramedei-blc {
    height: 420px;
  }
}
@media (min-width: 1200px) {
  .tramedei-blc {
    margin-right: 15.42%;
    border-radius: 0 30px 30px 0;
  }
}
@media (min-width: 1400px) {
  .tramedei-blc {
    height: 500px;
  }
}
.tramedei-blc .tra-txt {
  position: absolute;
  top: -25px;
  margin-left: 15px;
}
@media (min-width: 768px) {
  .tramedei-blc .tra-txt {
    margin-left: 3.65%;
  }
}
@media (min-width: 1200px) {
  .tramedei-blc .tra-txt {
    top: 25px;
    height: 70%;
  }
}
@media (min-width: 1400px) {
  .tramedei-blc .tra-txt {
    margin-left: 15.42%;
  }
}
.tramedei-blc .tra-txt h2 {
  font-size: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
  color: #015E31;
  font-weight: 700;
  margin-bottom: 1rem;
}
.tramedei-blc .tra-txt > p {
  font-size: clamp(1.125rem, 1.05rem + 0.38vw, 1.5rem);
  margin-bottom: 1rem;
}
.tramedei-blc .slider-tra-wrap {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .tramedei-blc .slider-tra-wrap {
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    right: 30px;
  }
}
@media (min-width: 1200px) {
  .tramedei-blc .slider-tra-wrap {
    top: -50px;
    right: -130px;
  }
}
@media (min-width: 1400px) {
  .tramedei-blc .slider-tra-wrap {
    right: -119px;
  }
}

/**********
ページネーション、各ページの色
**********/
.swiper-button-next,
.swiper-button-prev {
  color: #015E31;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 2rem;
}

.swiper-button-next {
  right: -50px;
}

.swiper-button-prev {
  left: -50px;
}

.swiper-pagination-bullet-active {
  background: #01AA57;
}

/**********
ヘッダーバナーレイアウト
**********/
.slider-hd-wrap {
  padding-bottom: 30px;
  overflow: hidden;
  border-radius: 20px;
}
.slider-hd-wrap .swiper-hd {
  overflow: visible;
}
.slider-hd-wrap .swiper-horizontal > .swiper-pagination-bullets,
.slider-hd-wrap .swiper-pagination-bullets.swiper-pagination-horizontal,
.slider-hd-wrap .swiper-pagination-custom,
.slider-hd-wrap .swiper-pagination-fraction {
  bottom: -30px;
}
.slider-hd-wrap .swiper-pagination-bullet {
  border-radius: 0;
  width: 50px;
}

/**********
トラメディ―レイアウト
**********/
.slider-tra-wrap {
  padding-bottom: 30px;
  overflow: hidden;
  width: 90%;
}
@media (min-width: 768px) {
  .slider-tra-wrap {
    width: 450px;
  }
}
@media (min-width: 1200px) {
  .slider-tra-wrap {
    width: 650px;
  }
}
@media (min-width: 1400px) {
  .slider-tra-wrap {
    width: 750px;
  }
}
.slider-tra-wrap .swiper-tra {
  overflow: visible;
  aspect-ratio: 5/3;
}
.slider-tra-wrap .swiper-tra img {
  border-radius: 20px;
  border: 1px solid #333;
  width: 100%;
  aspect-ratio: 5/3;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .slider-tra-wrap .swiper-tra img {
    border-radius: 30px;
  }
}
.slider-tra-wrap .swiper-horizontal > .swiper-pagination-bullets,
.slider-tra-wrap .swiper-pagination-bullets.swiper-pagination-horizontal,
.slider-tra-wrap .swiper-pagination-custom,
.slider-tra-wrap .swiper-pagination-fraction {
  bottom: -30px;
}
.slider-tra-wrap .swiper-pagination-bullet {
  border-radius: 0;
  width: 50px;
}

/**********
フッターバナーレイアウト
**********/
.slider-ft-wrap {
  padding-bottom: 30px;
  overflow: hidden;
}
.slider-ft-wrap .swiper-ft {
  overflow: visible;
}
.slider-ft-wrap .swiper-horizontal > .swiper-pagination-bullets,
.slider-ft-wrap .swiper-pagination-bullets.swiper-pagination-horizontal,
.slider-ft-wrap .swiper-pagination-custom,
.slider-ft-wrap .swiper-pagination-fraction {
  bottom: -30px;
}
.slider-ft-wrap .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
}
.slider-ft-wrap .swiper-slide img {
  width: 100%;
}
.slider-ft-wrap .swiper-pagination-bullet-active {
  background: #01AA57;
}

/* ===== カテゴリー別カラー ===== */
.text_blue {
  color: #008BD5;
}

.text_pink {
  color: #E64290;
}

.text_orange {
  color: #F29600;
}

.text_green {
  color: #1EAA39;
}

.bg_blue {
  background: #008BD5;
}

.bg_pink {
  background: #E64290;
}

.bg_orange {
  background: #F29600;
}

.bg_green {
  background: #1EAA39;
}

/* ===== トグルメニュー内レイアウト ===== */
@media (min-width: 768px) {
  .toramedi-header #g-nav-list ul li {
    text-align: center;
  }
}
.toramedi-header #g-nav-list ul li a, .toramedi-header #g-nav-list ul li .pop_btn {
  font-size: 1.25rem;
}

/* ===== header部分余白 ===== */
.top-cards {
  margin-top: 80px;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .top-cards {
    margin-top: 90px;
  }
}
@media (min-width: 992px) {
  .top-cards {
    margin-top: 100px;
  }
}

/* ===== itemスタイル ===== */
.cards-wrap .item {
  background-color: #EFEFEF;
  border-radius: 3px;
  border: 1px solid #c4c4c4;
}
.cards-wrap .item a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .cards-wrap .item a .img {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .cards-wrap .item a .img::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #17DBFF;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .cards-wrap .item a .txt .title {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .cards-wrap .item a:hover .img::before {
    opacity: 0.6;
  }
  .cards-wrap .item a:hover .title {
    color: #109AB3;
  }
}
.cards-wrap .item .img {
  aspect-ratio: 2/1;
  position: relative;
}
.cards-wrap .item .img .cate {
  position: absolute;
  bottom: 0px;
  right: 0;
  height: 20px;
  width: 80px;
  font-size: 10px;
  background-color: #EFEFEF;
  text-align: center;
  line-height: 2;
  border-radius: 10px 0 0 0;
  font-weight: bold;
}
@media (min-width: 768px) {
  .cards-wrap .item .img .cate {
    font-size: 11px;
  }
}
@media (min-width: 992px) {
  .cards-wrap .item .img .cate {
    width: 90px;
    height: 22px;
    font-size: 12px;
    line-height: 1.8;
  }
}
@media (min-width: 1400px) {
  .cards-wrap .item .img .cate {
    font-size: 13px;
    width: 100px;
    height: 25px;
  }
}
.cards-wrap .item img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cards-wrap .item .txt {
  padding: 8px;
}
@media (min-width: 992px) {
  .cards-wrap .item .txt {
    padding: 10px;
  }
}
@media (min-width: 1200px) {
  .cards-wrap .item .txt {
    padding: 15px;
  }
}
.cards-wrap .item .txt .title {
  font-size: 10px;
  color: #333;
  margin-bottom: 0;
  height: 35px;
  text-align: justify;
}
@media (min-width: 768px) {
  .cards-wrap .item .txt .title {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .cards-wrap .item .txt .title {
    font-size: 13px;
  }
}
@media (min-width: 1400px) {
  .cards-wrap .item .txt .title {
    font-size: 16px;
    height: 50px;
  }
}
.cards-wrap .item .txt .date {
  font-size: 10px;
  color: #c4c4c4;
  text-align: end;
}
@media (min-width: 768px) {
  .cards-wrap .item .txt .date {
    font-size: 11px;
  }
}
@media (min-width: 992px) {
  .cards-wrap .item .txt .date {
    font-size: 13px;
  }
}
@media (min-width: 1400px) {
  .cards-wrap .item .txt .date {
    display: inline;
  }
}
.cards-wrap .item .txt .kyew {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
@media (min-width: 1400px) {
  .cards-wrap .item .txt .kyew {
    display: inline;
    float: right;
  }
}
.cards-wrap .item .txt .kyew span {
  font-size: 8px;
  color: #fff;
  padding: 2px 4px;
}
@media (min-width: 768px) {
  .cards-wrap .item .txt .kyew span {
    font-size: 10px;
  }
}
@media (min-width: 992px) {
  .cards-wrap .item .txt .kyew span {
    font-size: 11px;
  }
}

/* トラッくん・みどりちゃんが教える☆トラック豆ちしき */
.tora_intro {
  background-color: #D4EBF2;
}
.tora_intro h3 {
  color: #0070C0;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .tora_intro h3 {
    padding-top: 4rem;
  }
}
.tora_intro section {
  padding: 1rem;
}
@media (min-width: 768px) {
  .tora_intro section {
    padding: 2rem;
  }
}
.tora_intro section img {
  padding: 0.5rem 0;
}
@media (min-width: 992px) {
  .tora_intro section img {
    padding: 1.5rem;
  }
}

/* ゲームひろば */
.tora_hiroba {
  background-color: #FFF2CC;
}

/**********
下層ページヘッダー
**********/
.lwr .topmrg {
  border-bottom: 2px solid #EFEFEF;
}
.lwr .hd-blc {
  padding-top: 6rem;
  margin-bottom: 6rem;
}
.lwr .hd-blc h1 {
  font-weight: 700;
}
.lwr .hd-blc p {
  color: #01AA57;
}
.lwr .breadcrumbs {
  font-size: 12px;
  padding-bottom: 2rem;
}
@media (min-width: 1200px) {
  .lwr .breadcrumbs {
    font-size: 14px;
  }
}
.lwr .breadcrumbs li {
  padding: 0 0.5rem;
  color: #757575;
}
.lwr .breadcrumbs li a {
  color: #01AA57;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.lwr .breadcrumbs li a:hover {
  opacity: 0.6;
}
.lwr .lwr-content-body {
  margin-top: 3rem;
  /* newsもっとみるボタン */
}
.lwr .lwr-content-body > div > div {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .lwr .lwr-content-body > div > div {
    margin-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .lwr .lwr-content-body > div > div {
    margin-bottom: 110px;
  }
}
.lwr .lwr-content-body > div h2 {
  color: #01AA57;
  font-weight: 700;
}
@media (min-width: 992px) {
  .lwr .lwr-content-body > div h2 {
    padding-bottom: 1rem;
  }
}
.lwr .lwr-content-body > div h3 {
  margin-top: 2rem;
}
.lwr .lwr-content-body > div p {
  text-align: justify;
  margin-bottom: 0.825rem;
}
.lwr .lwr-content-body > div > dl > div {
  padding-bottom: 2rem;
}
.lwr .lwr-content-body > div > dl > div dt {
  background-color: #EFEFEF;
  padding: 0.5rem;
}
.lwr .lwr-content-body > div > dl > div dd {
  padding: 0.5rem;
  margin-bottom: 0;
}
.lwr .lwr-content-body > div a {
  text-decoration: underline;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  color: #015E31;
}
.lwr .lwr-content-body > div a:hover {
  color: #01AA57;
}
.lwr .lwr-content-body > div .bi-file-earmark-pdf {
  padding-left: 0.5rem;
  color: #dc3545;
}
.lwr .lwr-content-body > div .bi-file-earmark-word {
  color: #1553b4;
}
.lwr .lwr-content-body > div .bi-file-earmark-excel {
  color: #0b7f41;
}
.lwr .lwr-content-body > div table {
  width: 100%;
}
.lwr .lwr-content-body > div table tr th,
.lwr .lwr-content-body > div table tr td {
  border: 1px solid #c4c4c4;
}
.lwr .lwr-content-body > div table tr th {
  padding: 9px 12px;
  background: #BFE9D5;
  text-align: center;
}
.lwr .lwr-content-body > div table tr td {
  padding: 0.5rem;
}
.lwr .lwr-content-body > div table tr .center {
  text-align: center;
}
.lwr .lwr-content-body > div table p {
  margin-bottom: 0;
}
.lwr .lwr-content-body > div .th-nowrap tbody tr th {
  white-space: nowrap;
}
.lwr .lwr-content-body > div ol li,
.lwr .lwr-content-body > div ul li {
  padding-bottom: 1rem;
}
.lwr .lwr-content-body > div ol li::marker {
  font-size: 1.5rem;
  font-weight: bold;
}
.lwr .lwr-content-body > div .ad-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.lwr .lwr-content-body > div .ad-img img {
  width: 100%;
}
@media (min-width: 992px) {
  .lwr .lwr-content-body > div .ad-img img {
    width: 75%;
  }
}
.lwr .lwr-content-body > div .scmap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.lwr .lwr-content-body > div .cf li:after {
  content: "\f1c5";
  font-family: bootstrap-icons;
  font-weight: 400;
  font-size: 1rem;
  margin-left: 5px;
}
@media (min-width: 768px) {
  .lwr .lwr-content-body > div .cf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lwr .lwr-content-body > div .cf li {
    width: 50%;
  }
  .lwr .lwr-content-body > div .cf li a {
    white-space: nowrap;
  }
}
@media (min-width: 992px) {
  .lwr .lwr-content-body > div .cf li {
    width: 33.333%;
  }
}
@media (min-width: 992px) {
  .lwr .lwr-content-body > div .cf.col2 li {
    width: 50%;
  }
}
.lwr .lwr-content-body > div .info-list ul li {
  padding-bottom: 0;
  border-bottom: 1px solid #c4c4c4;
}
.lwr .lwr-content-body > div .info-list ul li:first-child {
  border-top: 1px solid #c4c4c4;
}
.lwr .lwr-content-body > div .info-list ul li a {
  text-decoration: none;
  color: #333;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.lwr .lwr-content-body > div .info-list ul li a:hover {
  color: #01AA57;
}
.lwr .lwr-content-body > div .info-list ul li a .list-blc {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media (min-width: 768px) {
  .lwr .lwr-content-body > div .info-list ul li a .list-blc {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.lwr .lwr-content-body > div .pdf-info {
  background: #EFEFEF;
  padding: 1rem;
}
@media (min-width: 768px) {
  .lwr .lwr-content-body > div .pdf-info {
    border-radius: 10px;
  }
}
.lwr .lwr-content-body > div .pdf-info .bi-file-earmark-pdf {
  font-size: 3rem;
  margin-left: 0;
  margin-right: 1rem;
}
.lwr .lwr-content-body > div .list-gr-cus a {
  padding: 1rem;
  text-decoration: none;
  background: #EFEFEF;
  color: #333;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.lwr .lwr-content-body > div .list-gr-cus a:hover {
  color: #fff;
  opacity: 1;
  background: #01AA57;
}
.lwr .lwr-content-body > div .img-items img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lwr .lwr-content-body > div .magazine {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .lwr .lwr-content-body > div .magazine {
    margin-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .lwr .lwr-content-body > div .magazine {
    margin-bottom: 110px;
  }
}
.lwr .lwr-content-body .link-btn:hover a {
  color: #fff;
}
.lwr .lwr-content-body .link-btn a {
  text-decoration: none;
}
.lwr .lwr-content-body .t-mg {
  padding-top: 80px;
  margin-top: -80px;
}
@media (min-width: 768px) {
  .lwr .lwr-content-body .t-mg {
    padding-top: 100px;
    margin-top: -100px;
  }
}
@media (min-width: 992px) {
  .lwr .lwr-content-body .t-mg {
    padding-top: 110px;
    margin-top: -110px;
  }
}
.lwr .lwr-content-body .y-btn {
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  background: #BFE9D5;
  border-radius: 5px;
  display: inline-block;
  margin: 0.2rem;
  -webkit-transition: 0.4;
  -o-transition: 0.4;
  transition: 0.4;
}
.lwr .lwr-content-body .y-btn:hover {
  background: #015E31;
  color: #fff;
}
.lwr .lwr-content-body .inr-nav a {
  font-size: 0.78em;
  text-align: center;
  text-decoration: none;
  color: #333;
}
.lwr .lwr-content-body .inr-nav-title {
  color: #01AA57;
}
.lwr .lwr-content-body .list-group-item {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.lwr .lwr-content-body .list-group-item:hover {
  background: #BFE9D5;
}
.lwr .lwr-content-body .list-group-item.active {
  color: #fff;
  background: #01AA57;
  border-color: #01AA57;
}
.lwr .lwr-content-body .ini {
  list-style-type: initial;
}
.lwr .lwr-content-body .tjh a {
  font-size: 1.25rem;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}
.lwr .lwr-content-body .tjh a img {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #c4c4c4;
}
.lwr .lwr-content-body .tjh a:hover img {
  -webkit-filter: brightness(1.15);
  filter: brightness(1.15);
}
.lwr .lwr-content-body .first-tjh-item {
  position: relative;
}
.lwr .lwr-content-body .first-tjh-item::after {
  position: absolute;
  content: "";
  background: url(../images/new.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: -50px;
  right: -25px;
  width: 60px;
  height: 60px;
  z-index: 10;
  -webkit-animation: poyopoyo 2s ease-out infinite;
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
.lwr .lwr-content-body iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
@media (min-width: 992px) {
  .lwr .lwr-content-body iframe {
    width: 70%;
  }
}
.lwr .lwr-content-body .newsmorelink {
  color: #fff;
  display: block;
  text-align: center;
  width: 170px;
  height: 36px;
  border: 1px solid #01AA57;
  background-color: #01AA57;
  border-radius: 3px;
  padding-top: 3px;
  margin-bottom: 5rem;
  margin-top: 3rem;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.lwr .lwr-content-body .newsmorelink:hover {
  cursor: pointer;
  background-color: #fff;
  color: #01AA57;
  border: 1px solid #01AA57;
}
.lwr .lwr-content-body .award .item {
  width: 220px;
  text-align: center;
  margin: 0.5rem;
  padding: 0;
}
.lwr .lwr-content-body .award .item a {
  background: #BFE9D5;
  text-decoration: none;
  color: #333;
  display: inline-block;
  height: 100%;
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
}
.lwr .lwr-content-body .award .item .nolink {
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.lwr .lwr-content-body .award .item .link {
  background: #015E31;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.lwr .lwr-content-body .award .item .link:hover {
  background: #01AA57;
}
.lwr .lwr-content-body .award .iwrap {
  width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.lwr .lwr-content-body .award .iwrap i.bi {
  font-size: 3rem;
  color: #01AA57;
  font-weight: bold;
}
.lwr .lwr-content-body .link-btn.mail-btn {
  text-decoration: none;
  background: #01AA57;
  color: #fff;
  font-size: 1.85rem;
}
.lwr .lwr-content-body .link-btn.mail-btn:hover {
  background: #fff;
  color: #333;
}

.anim-box.poyopoyo {
  -webkit-animation: poyopoyo 2s ease-out infinite;
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@-webkit-keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@media (min-width: 768px) {
  .h-adr,
.conf-blc {
    width: 90%;
  }
}
@media (min-width: 992px) {
  .h-adr,
.conf-blc {
    width: 60%;
  }
}

.requ {
  color: #dc3545;
  border: 1px solid #dc3545;
  border-radius: 3px;
  padding: 2px 6px;
}

.error {
  color: #dc3545;
}

.btn-lay {
  border: none;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 8px 10px;
  background: #01AA57;
  color: #fff;
  border-radius: 3px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.btn-lay:hover {
  opacity: 0.6;
  cursor: pointer;
}
@media (min-width: 768px) {
  .btn-lay {
    padding: 6px 13px;
  }
}

.reset {
  background-color: #dee2e6;
  border: 1px solid #adb5bd;
  color: #333;
}

.return {
  background-color: #dee2e6;
  color: #333;
}

.selectday .app-check label {
  display: inline-block;
  color: #333;
  cursor: pointer;
  position: relative;
}
.selectday .app-check label span {
  display: inline-block;
  position: relative;
  background-color: transparent;
  color: transparent;
  width: 25px;
  height: 25px;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  border: 1px solid #adb5bd;
  border-radius: 3px;
  vertical-align: -6px;
  margin-right: 10px;
  -webkit-transition: background-color 150ms 200ms, -webkit-transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
  transition: background-color 150ms 200ms, -webkit-transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
  -o-transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
  transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
  transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89), -webkit-transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
}
.selectday .app-check label span:before {
  content: "";
  width: 0px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 11px;
  left: 7px;
  -webkit-transition: width 150ms ease 100ms;
  -o-transition: width 150ms ease 100ms;
  transition: width 150ms ease 100ms;
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}
.selectday .app-check label span:after {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  -webkit-transform: rotate(305deg);
  -ms-transform: rotate(305deg);
  transform: rotate(305deg);
  top: 15px;
  left: 9px;
  -webkit-transition: width 150ms ease 100ms;
  -o-transition: width 150ms ease 100ms;
  transition: width 150ms ease 100ms;
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}
.selectday .app-check label:hover span:before {
  width: 5px;
  -webkit-transition: width 150ms ease 100ms;
  -o-transition: width 150ms ease 100ms;
  transition: width 150ms ease 100ms;
}
.selectday .app-check label:hover span:after {
  width: 10px;
  -webkit-transition: width 150ms ease 100ms;
  -o-transition: width 150ms ease 100ms;
  transition: width 150ms ease 100ms;
}
.selectday .app-check input[type=checkbox] {
  display: none;
}
.selectday .app-check input[type=checkbox]:checked + label span {
  background-color: #c4c4c4;
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}
.selectday .app-check input[type=checkbox]:checked + label span:after {
  width: 10px;
  background: #01AA57;
  -webkit-transition: width 150ms ease 100ms;
  -o-transition: width 150ms ease 100ms;
  transition: width 150ms ease 100ms;
}
.selectday .app-check input[type=checkbox]:checked + label span:before {
  width: 5px;
  background: #01AA57;
  -webkit-transition: width 150ms ease 100ms;
  -o-transition: width 150ms ease 100ms;
  transition: width 150ms ease 100ms;
}
.selectday .app-check input[type=checkbox]:checked + label:hover span {
  background-color: #c4c4c4;
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}
.selectday .app-check input[type=checkbox]:checked + label:hover span:after {
  width: 10px;
  background: #01AA57;
  -webkit-transition: width 150ms ease 100ms;
  -o-transition: width 150ms ease 100ms;
  transition: width 150ms ease 100ms;
}
.selectday .app-check input[type=checkbox]:checked + label:hover span:before {
  width: 5px;
  background: #01AA57;
  -webkit-transition: width 150ms ease 100ms;
  -o-transition: width 150ms ease 100ms;
  transition: width 150ms ease 100ms;
}

.selectlocation .app-radio dd label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}
.selectlocation .app-radio dd label::before,
.selectlocation .app-radio dd label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}
.selectlocation .app-radio dd label::before {
  background-color: #fff;
  border: 1px solid #adb5bd;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 5px;
}
.selectlocation .app-radio dd label::after {
  background-color: #01AA57;
  border-radius: 50%;
  opacity: 0;
  width: 14px;
  height: 14px;
  left: 8px;
}
.selectlocation .app-radio dd input:checked + label::after {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
}
.selectlocation .app-radio dd .visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.msy_wrap .item-sizer,
.msy_wrap .item {
  width: 46.5%;
}
@media (min-width: 768px) {
  .msy_wrap .item-sizer,
.msy_wrap .item {
    width: 31.2%;
  }
}
@media (min-width: 992px) {
  .msy_wrap .item-sizer,
.msy_wrap .item {
    width: 23%;
  }
}
.msy_wrap .item {
  height: auto;
  float: left;
  margin-bottom: 15px;
}
@media (min-width: 1400px) {
  .msy_wrap .item {
    margin-bottom: 25px;
  }
}
.msy_wrap .grid-item--width2 {
  width: 100%;
}
@media (min-width: 768px) {
  .msy_wrap .grid-item--width2 {
    width: 65%;
  }
}
@media (min-width: 992px) {
  .msy_wrap .grid-item--width2 {
    width: 47.7%;
  }
}
.msy_wrap .grid-item--width2 a .txt .title {
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .msy_wrap .grid-item--width2 a .txt .title {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .msy_wrap .grid-item--width2 a .txt .title {
    font-size: 1.25rem;
  }
}

.formce {
  /* DVD目録ページネーション */
  /* 諸用紙注文 */
}
.formce h2 {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .formce h2 {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .formce h2 {
    margin-top: 80px;
  }
}
.formce blockquote {
  background-color: #EFEFEF;
  margin-top: 40px;
  padding: 1rem;
  border-radius: 10px;
}
.formce .paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.formce .paging li {
  padding-bottom: 0 !important;
}
.formce .paging .page-link,
.formce .paging .page-current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 45px;
  height: 45px;
  background: #fff;
  border: solid 2px #333;
  font-size: 14px;
  color: #333;
  font-weight: bold;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
  text-decoration: none;
}
.formce .paging .page-current {
  background: #333;
  color: #fff;
}
.formce .paging .page-link:not(.page-current):hover {
  background: #333;
  color: #fff;
}
.formce .errors {
  color: #dc3545;
}
