@charset "utf-8";

/* --- Base Settings --- */
:root {
  --colo-primary: #006600;
  --color-red: #B30000;
  --color-gray: #4D4D4D;
  --color-blue: #001866;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  background-color: #f2f2f2;
  color: var(--color-gray);
}

html,
body {
  width: 100%;
  font-family: 'Lato', sans-serif;
  /*'Ubuntu', sans-serif;*/
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  margin-bottom: .3rem;
}

a {
  color: var(--color-blue);
}

a:hover {
  text-decoration: none;
  color: var(--color-blue);
}

img {
  width: 100%;
  max-width: 100%;
}

/* --- module --- */
/* text */
.fc-red {
  color: var(--color-red) !important;
}

.fc-gray {
  color: var(--color-gray) !important;
}

.emphasized {
  font-weight: bold;
  font-size: 1.5rem;
}

/* btn */
.c-btn {
  border-radius: 4px;
  min-width: 200px;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
}

.c-btn--green-outline {
  background-color: #fff;
  color: var(--colo-primary);
  border: 2px solid var(--colo-primary);
}

.c-btn--green-outline:hover {
  background-color: var(--colo-primary);
  color: #fff;
}

.c-btn__icon--down{
  transform: rotate(90deg);
}

.area-content {
  background: white;
  padding: 40px;
  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
}

@media(min-width:992px) {
  .npc {
    display: none !important;
  }
}

@media(max-width:991px) {
  .nsp {
    display: none !important;
  }

  .area-content {
    background: white;
    padding: 2rem 1rem;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
  }
}

/* list */
/* c-list-circle-numbers */
.c-list-circle-numbers {
  list-style: none;
  counter-reset: my-counter;
  padding-left: 0;
}

.c-list-circle-numbers__item {
  display: flex;
  align-items: center;
  gap: 20px;
  counter-increment: my-counter;
  position: relative;
  padding-left: 1.8em;
  padding: 0.7rem 1.8rem;
}

.c-list-circle-numbers__item:not(:last-child) {
  border-bottom: 1px solid #E1E0E4;
}

.c-list-circle-numbers p {
  margin-bottom: 0;
}

@counter-style maru-num {
  system: alphabetic;
  symbols: ① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩ ⑪ ⑫ ⑬ ⑭ ⑮ ⑯ ⑰ ⑱ ⑲ ⑳;
  suffix: " ";
}

.c-list-circle-numbers__item::before {
  content: counter(my-counter, maru-num);
  font-size: 1.44rem;
  font-weight: bold;
}

@media (max-width: 992px) {
  .c-list-circle-numbers__item {
    padding-left: 0;
    padding-right: 0;
    gap: 10px;
  }

  .c-list-circle-numbers__item::before {
    font-size: 1.2rem;
  }
}

/* c-list-num-1 */
.c-list-num-1 {
  list-style: none;
  counter-reset: my-count;
}

.c-list-num-1__item {
  display: flex;
  align-items: baseline;
  counter-increment: num-1;
}

.c-list-num-1__item::before {
  content: "(" counter(num-1) ")";
  padding-right: 0.5em;
}

/* c-list-anno-num-1 */
.c-list-anno-num-1 {
  list-style: none;
  counter-reset: anno-num-1;
}

.c-list-anno-num-1__item {
  display: flex;
  align-items: baseline;
  counter-increment: anno-num-1;
}

.c-list-anno-num-1__item::before {
  content: "※" counter(anno-num-1);
  padding-right: 0.5em;
}

/* c-list-anno1 */
.c-list-anno-1 {
  list-style: none;
}

.c-list-anno-1__item {
  display: flex;
  align-items: baseline;
}

.c-list-anno-1__item::before {
  content: "※";
  padding-right: 0.5em;
}

.c-list-anno-1__txt{
  flex-grow: 1;
  text-align: left;
}

/* c-list-1 */
.c-list-1 {
  list-style: none;
}

.c-list-1__item {
  display: flex;
  align-items: baseline;
}

.c-list-1__item::before {
  content: "・";
  padding-right: 0.2em;
}

.c-list-1__txt{
  flex-grow: 1;
  text-align: left;
}



/* ============================================
　Header 
============================================　*/
.header {
  background-color: white !important;
  border-bottom: solid 1px #e5e5e5;
}

.header__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.header-ttl {
  font-size: 1rem;
}

.header-logo__img {
  max-width: 52px;
}

.nav-item {
  margin-bottom: 0;
}

.nav-link {
  transition: all linear 0.3s;
  border-bottom: 3px solid #fff;
}

.nav-link:hover {
  border-color: var(--colo-primary);
}

.menu-to-app-btn {
  background-color: var(--colo-primary);
  color: white;
  border: 3px solid #fff;
  text-align: center;
  margin-left: .5rem;
  border-radius: 10px;
  font-weight: bold;
  font-size: .85rem;
  border-radius: 10px;
}

.menu-to-app-btn:hover {
  background-color: #fff;
  color: var(--colo-primary);
  border-color: var(--colo-primary);
}

.navbar-toggler {
  width: 50px;
  height: 50px;
  padding: 10px 0px 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.navbar-light .navbar-toggler-icon {
  background-image: none;
}

.navbar-toggler-icon {
  position: relative;
  width: 20px;
  height: 2px;
}

.menu-text {
  font-size: 0.5em;
}

.navbar-toggler.collapsed .navbar-toggler-icon {
  background-color: #000;
}

.navbar-toggler.collapsed .navbar-toggler-icon::before {
  transform: rotate(0deg);
  top: -5px;
}

.navbar-toggler.collapsed .navbar-toggler-icon::after {
  transform: rotate(0deg);
  bottom: -5px;
}

.navbar-toggler-icon::before {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  left: 0;
  top: 0;
  background-color: #000;
  transform: rotate(45deg);
}

.navbar-toggler-icon::after {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #000;
  transform: rotate(-45deg);
}

.navbar-toggler.collapsed .menu-text--open {
  display: inline;
}

.navbar-toggler .menu-text--open {
  display: none;
}

.navbar-toggler.collapsed .menu-text--close {
  display: none;
}

.navbar-toggler .menu-text--close {
  display: inline;
}

@media (max-width: 991px) {
  .header-ttl {
    font-size: 0.8rem
  }
}


/* ============================================
　Main Content 
============================================　*/
.main {
  padding-top: 85px;
}

/* -----------------------------------------
 home 
----------------------------------------- */
.home {
  background-color: #FFFFCC;
  color: #333;
  min-height: 390px;
  padding: 0;
}

.c-kv__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.c-kv__img-wrap {
  width: 300px;
}

.ttl-h1 {
  flex-grow: 1;
  font-weight: bold;
  text-align: center;
  color: #000;
}

.ttl-h1-sitename {
  font-size: 2rem;
  line-height: 1.6;
}

.ttl-h1-date {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2rem;
}

@media (max-width: 991px) {
  .c-kv__inner {
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .ttl-h1-sitename {
    font-size: clamp(1rem, 6vw, 2rem);
  }
}

/* -----------------------------------------
 contact 
----------------------------------------- */
.contact-ttl {
  font-size: 1.2rem;
  color: var(--color-gray);
}

.contact-num {
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-gray);
}

.contact-num:hover {
  color: var(--color-gray);
  border-bottom: 2px solid var(--color-gray);
}

@media (max-width: 768px) {
  .call {
    font-size: 2rem;
  }

  .contact-num {
    font-size: clamp(1rem, 11vw, 3rem);
  }
}

/* -----------------------------------------
 infomation
----------------------------------------- */
.list-news__item {
  padding: 20px 0;
  margin-bottom: 0;
}

.list-news__item:not(:last-child) {
  border-bottom: 1px solid #CCC;
}

.list-news__item article {
  display: flex;
  gap: 2rem;
  align-items: baseline;
}

.list-news__item time {
  font-size: 0.8rem;
}

.list-news__ttl {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 0;
}

.list-news__item a {
  color: var(--color-blue);
  transition: all linear 0.3s
}

.list-news__item a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .list-news__item article {
    flex-direction: column;
    gap: 0.25rem;
  }

  .list-news__item {
    padding: 15px 0;
  }
}

/* -----------------------------------------
 summary 
----------------------------------------- */
.to-summary-btn {
  padding: 2rem;
  font-weight: bold;
  border: solid 3px red;
  border-radius: 5px;
  text-align: center;
  color: red;
}

.to-summary-btn a {
  color: red !important;
}

.to-summary-btn a:hover {
  color: red !important;
}

/* -----------------------------------------
 howto 
----------------------------------------- */
.address {
  padding: 1.5rem;
  border: solid 1px #616368;
}

.to-qa {
  text-align: center;
}

.to-qa p {
  padding: 2rem 0 0;
  font-weight: bold;
}

.to-qa-btn {
  color: var(--color-blue);
  background-color: #fff;
  border: 3px solid var(--color-blue);
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 10px;
  padding: 1.8rem 1rem;
  width: 100%;
  max-width: 380px;
}

.to-qa-btn:hover {
  color: #fff;
  background-color: var(--color-blue);
}

@media(max-width:991px) {
  .to-qa-btn {
    padding: 2rem !important;
  }

  .address {
    padding: 1rem 0.5rem;
  }
}



.indent {
  margin-left: 1em;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: -0.7em;
}

.indent1 {
  margin-left: 1em;
}

.indent-area {
  padding-left: 1rem;
  text-indent: 1em;
}

.indent1 li {
  margin-left: 1em;
}

.indent2 {
  margin-left: 2em;
}

.indent3 {
  margin-left: 3em;
}

.indent4 {
  margin-left: 4em;
}

.indent7 {
  margin-left: 7em;
}

.indent4-area {
  padding-left: 7rem;
  text-indent: -3rem;
}

.btn-notice {
  text-align: center;
  color: var(--color-red);
  font-weight: bold;
  margin-bottom: -1rem;
}


.lb-nav a.lb-next {
  display: none !important;
}

.lb-nav a.lb-prev {
  display: none !important;
}

.lb-data .lb-number {
  display: none !important;
}

#application .notice .redb a {
  color: red !important;
}

#application .notice .redb a:hover {
  color: red !important;
}

/*▼20230720追加▼*/
.bk-g {
  padding: 1.5rem;
  background-color: #f2f2f2;
  margin-bottom: 5%;
}

.ind {
  padding-left: 2rem;
  text-indent: -2.65rem;
}

.ind-top {
  margin-top: -1rem !important;
}


/*--table--*/
table.top-t {
  width: 100%;
  text-align: center;
}

.kyufugaku {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bk-b {
  background-color: #CFE3FF;
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
}

.bk-y {
  padding: 1rem;
  border: 1px solid #000;
}

.bk-yy {
  background-color: #FFFFCC;
  padding: 1rem;
  border-radius: 10px;
  margin-left: 5px;
}

.schedule {
  padding: 1rem;
  background-color: #FFFFCC;
}

.schedule-txt {
  margin: 1rem;
}

table.top-t {
  width: 100%;
}

table.top-t th,
table.top-t td.st {
  background-color: rgb(51, 102, 153);
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
}

.top-t-fst,
.top-t-fst2 {
  border-top: 1px solid rgba(51, 102, 153, 0.6);
  background-color: rgb(51, 102, 153);
  color: #FFF;
  font-weight: bold;
}

.top-t-fst2 {
  border-left: 1px solid #FFF;
}

.top-t-fst3 {
  background-color: #FFFFCC;
  color: #333;
  border-right: 1px #FFF solid;
  border-left: none !important;
}

table.top-t td {
  padding: 10px 1rem;
  border-left: 1px solid rgba(51, 102, 153, 0.6);
  border-bottom: 1px solid rgba(51, 102, 153, 0.6);
  border-right: 1px solid rgba(51, 102, 153, 0.6);
}

.top-t a:hover {
  color: #336699 !important;
  opacity: 0.8;
}

.top-n {
  border-right: none;
}

.t-tr {
  border-top: 1px solid rgba(51, 102, 153, 0.6);
  border-right: 1px solid rgba(51, 102, 153, 0.6);
  border-left: 1px solid rgba(51, 102, 153, 0.6);
}

.ad {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5%;
}

.ad li {
  width: 48%;
  margin: 5% 1% 0;
}

.ad li img {
  width: 100%;
}

.p-left {
  padding-left: 2rem;
}

.movie {
  display: flex;
}

.movie li {
  width: 48%;
  margin: 0 1.25%;
}

video {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .sp-left {
    text-align: left !important;
  }

  .p-left {
    display: none;
  }

  .scroll {
    overflow: auto;
    white-space: nowrap !important;
  }

  .kyufugaku {
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
  }
}

.to-app {
  padding: 2rem 1.5rem;
  background-color: #f2f2f2;
  text-align: center;
}

.to-app-btn {
  color: #fff;
  background-color: var(--colo-primary);
  border: 3px solid var(--colo-primary);
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 10px;
  padding: 1.8rem 1rem;
  width: 100%;
  max-width: 380px;
}

.to-app-btn:hover {
  background-color: #fff;
  color: var(--colo-primary);
}

.to-app-btn--blue {
  color: #fff;
  background-color: var(--color-blue);
  border: 3px solid var(--color-blue);
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 10px;
  padding: 1.8rem 1rem;
  width: 100%;
  max-width: 380px;
}

.to-app-btn--blue:hover {
  background-color: #fff;
  color: var(--color-blue);
}

@media(max-width:991px) {
  .to-app{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .to-app-btn {
    padding: 1rem;
    font-size: 1rem;
  }
}

.back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  background-color: var(--colo-primary);
  outline: none;
  color: #fff;
  height: 50px;
  z-index: 1050;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
  color: #fff;
}

/* ============================================
　faq
============================================　*/
.accordion-body {
  padding-top: 0;
}
.accordion-button{
  border: none;
}


/* ============================================
　Footer
============================================　*/
.footer {
  color: #fff;
  background-color: var(--colo-primary);
  margin-top: 1rem;
}

.footer-policy {
  font-size: .8rem;
  margin: 2rem;
}