@charset "utf-8";

/* --- Base Settings --- */
:root {
  --colo-primary: #931D23;
  --color-green--deep: #0E3618;
  --color-green--light: #c7e3ce;
  --color-red: #B30000;
  --color-link: #1A2567;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000;
  width: 100%;
  color: var(--color-gray);
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

html,
body {
  width: 100%;
  /*'Ubuntu', sans-serif;*/
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li,
ol 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 */
.c-txt-link {
  text-decoration: underline;
  color: var(--color-link);
}

.c-txt-link:hover {
  text-decoration: none;
}

.c-txt-notes{
  display: flex;
}

.fc-primary {
  color: var(--colo-primary) !important;
}

.fc-red {
  color: var(--color-red) !important;
}

.fc-gray {
  color: var(--color-gray) !important;
}

.c-ttl-h2 {
  text-align: center;
  font-size: calc(30 / 16 * 1rem);
  font-weight: 700;
  margin: 0;
  color: var(--color-green--deep);
}

.c-ttl-h2::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 4px;
  margin-top: 20px;
  border-radius: 2px;
  background-color: var(--color-green--deep);
}

.c-ttl-h3 {
  font-size: calc(26 / 16 * 1rem);
  font-weight: 500;
  color: #000;
  padding-bottom: 10px;
  padding-left: 10px;
  border-bottom: 2px solid var(--color-green--deep);
}

.c-ttl-h4 {
  background: var(--color-green--deep);
  font-size: calc(20 / 16 * 1rem);
  font-weight: 500;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
}

.c-ttl-h5 {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 500;
  color: #000;
}

.c-ttl-h5--icon{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: calc(18 / 16 * 1rem);
  font-weight: 500;
  color: #000;
}
.c-ttl-h5--icon::before{
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--color-green--light);
}

@media (max-width: 991px) {
  .c-ttl-h2 {
    font-size: calc(24 / 16 * 1rem);
  }

  .c-ttl-h2::after {
    margin-top: 14px;
  }

  .c-ttl-h3 {
    font-size: calc(22 / 16 * 1rem);
  }

  .c-ttl-h5 {
    font-size: calc(17 / 16 * 1rem);
  }
}

/* background */
.bg-primary {
  background-color: var(--colo-primary) !important;
}

.bg-green--deep {
  background-color: var(--color-green--deep);
}

.bg-green--light {
  background-color: var(--color-green--light);
}

.c-bnr-1{
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  max-width: 480px;
  border-radius: 20px;
  padding: 12px 15px 15px;
  background-color: var(--colo-primary);
  border: 3px solid var(--colo-primary);
  color: #fff;
  transition: all linear 0.15s;
}

.c-bnr-1:hover{
  background-color: #fff;
  color: var(--colo-primary);
}

.c-bnr-1__txt{
  flex-grow: 1;
  font-size: calc(16 / 16 * 1rem);
  text-align: center;
  font-weight: 500;
}

.c-bnr-1__url{
  display: block;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .c-bnr-1{
    padding: 8px 10px 10px;
    gap: 10px;
  }
  .c-bnr-1__txt{
    text-align: left;
  }
  .c-bnr-1__url{
    overflow-wrap: anywhere;
  }
}


/* list */
/* c-list-info */
.c-list-info__item article {
  display: flex;
  padding: 15px 10px;
  align-items: baseline;
}

.c-list-info__date {
  flex: 0 0 120px;
  font-weight: 700;
}

.c-list-info__txt {
  flex: 1;
  line-height: 1.6;
}
.c-list-info__item article:not(:last-child) {
  border-bottom: 1px solid #E1E0E4;
}

@media (max-width: 991px) {
  .c-list-info__item article {
    flex-direction: column;
    gap: 5px;
  }
  .c-list-info__date {
    flex: 0 0 auto;
    font-size: 0.9rem;
  }
}

/* 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: 15px;
  counter-increment: my-counter;
  position: relative;
  padding-left: 1.8em;
  padding: 10px;
  margin-bottom: 0;
}

.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: calc(18 / 16 * 1rem);
  font-weight: bold;
}

@media (max-width: 991px) {
  .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.25em;
}

.c-list-anno-1__txt {
  flex-grow: 1;
  text-align: left;
}

@media (max-width: 991px) {
  .c-list-anno-1__item::before {
    padding-right: 0.2em;
  }
}


/* c-list-anno-2 */
.c-list-anno-2 {
  list-style: none;
}

.c-list-anno-2__item {
  display: flex;
  align-items: baseline;
}

.c-list-anno-2__item::before {
  content: "（※";
  padding-right: 0.25em;
}

.c-list-anno-2__txt::after {
  content: "）";
  padding-left: 0.25em;
}

.c-list-anno-2__txt {
  flex-grow: 1;
  text-align: left;
}

@media (max-width: 991px) {
  .c-list-anno-2__item::before {
    padding-right: 0.2em;
  }
}


/* 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;
}

/* c-list-link */
.c-list-link__item:not(:last-child) {
  margin-bottom: 13px;
  font-size: calc(16 / 16 * 1rem);
}

.c-list-link a {
  color: var(--color-link);
  display: flex;
}

.c-list-link a:hover {
  text-decoration: underline;
}

/* c-block */
.c-block-border {
  padding: 20px;
  border: 2px solid var(--color-green--deep);
  border-radius: 10px;
}

@media (max-width: 991px) {
  .c-block-border {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* c-table */
.c-table-1 {
  width: 100%;
  border-top: 1px solid #E1E0E4;
  border-left: 1px solid #E1E0E4;
  border-bottom: 1px solid #E1E0E4;
}

.c-table-1__tr {
  display: flex;
  align-items: stretch;
  margin-bottom: 0;
}

.c-table-1__tr:not(:last-child) {
  border-bottom: 1px solid #E1E0E4;
}

.c-table-1__td:nth-of-type(1) {
  width: 3em;
  flex-shrink: 0;
  padding: 10px;
  text-align: center;
  border-right: 1px solid #E1E0E4;
}

.c-table-1__td:nth-of-type(2) {
  display: flex;
  align-items: stretch;
  flex-grow: 1
}

.c-table-1__td-item {
  padding: 10px;
  margin: 0;
  border-right: 1px solid #E1E0E4;
}

.c-table-1__td-item:nth-of-type(1) {
  width: calc(100% - 290px);
}

.c-table-1__td-item:nth-of-type(2) {
  width: 290px;
  text-align: center;
}

@media (max-width: 991px) {
  .c-table-1__td:nth-of-type(1) {
    width: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-table-1__td:nth-of-type(2) {
    flex-direction: column;
  }
  .c-table-1__td-item:nth-of-type(1){
    width: 100%;
    padding-bottom: 0;
  }
  .c-table-1__td-item:nth-of-type(2){
    width: 100%;
    text-align: left;
  }
}



/* ============================================
　Header 
============================================　*/
.header {
  background-color: white !important;
  border-bottom: solid 1px #e5e5e5;
}

.header__inner {
  max-width: 1440px;
  height: 100px;
  margin: 0 auto;
}

.header .container {
  max-width: 100%;
  padding: 0;
}

.header-ttl {
  font-size: 1rem;
}

.navbar-brand {
  max-width: 280px;
}

.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);
}

.header-tel {
  width: 257px;
  margin-left: 20px;
  padding: 0.75rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--colo-primary);
  border: 2px solid var(--colo-primary);
  color: white;
  text-align: center;
  border-radius: 20px;
  line-height: 1;
  font-weight: 500;
  transition: all linear 0.15s;
}

.header-tel:hover {
  background-color: #fff;
  color: var(--colo-primary);
}

.header-tel__title {
  font-size: calc(16 / 16 * 1rem);
}

.header-tel__num {
  font-size: calc(24 / 16 * 1rem);
  margin-top: 7px;
  letter-spacing: 1.5px;
}

.navbar-toggler {
  width: 50px;
  height: 50px;
  padding: 10px 0px 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  color: #000;
}

.navbar-light .navbar-toggler-icon {
  background-image: none;
}

.navbar-toggler-icon {
  position: relative;
  width: 20px;
  height: 2px;
}

.menu-text {
  font-size: 0.5em;
  column-rule: #000;
}

.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 screen and (min-width:992px) and (max-width:1200px) {
  .navbar-collapse {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

  .header-tel {
    width: auto;
    flex-direction: row;
    gap: 10px;
    padding: 6px 10px;
  }

  .header-tel__num {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .header__inner {
    height: 70px;
  }

  .navbar-brand {
    max-width: 230px;
    margin-right: 0;
  }

  .navbar-collapse {
    position: fixed;
    width: 100vw;
    left: 0;
    top: 70px;
    background: #fff;
    padding-bottom: 30px;
  }

  .navbar-nav {
    align-items: center;
  }

  .header-tel {
    margin: 30px auto 0;
  }
}

@media (min-width: 992px) {
  .header-tel {
    pointer-events: none;
  }
}


/* ============================================
　Main Content 
============================================　*/
.main {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f5f7fa;
}

.section {
  background-color: #fff;
  max-width: 960px;
  margin: 100px auto 0;
  padding: 60px 40px;
  border-radius: 20px;
}

.section__inner {
  padding-left: 10px;
  padding-right: 10px;
}

.section__inner-2 {
  padding-left: 22px;
  padding-right: 10px;
}

@media (max-width: 991px) {
  .main {
    padding-top: 70px;
  }

  .section {
    margin-top: 40px;
    width: 93%;
    padding: 30px 15px;
  }

  .section__inner {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* -----------------------------------------
 cv 
----------------------------------------- */
.c-kv {
  max-width: 1440px;
  margin: 30px auto 0;
  background-color: var(--color-green--light);
  border-radius: 250px 20px 250px 20px;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.ttl-h1 {
  color: #000;
  font-weight: 700;
}

.ttl-h1-maintxt {
  font-size: calc(60 / 16 * 1rem);
}

.ttl-h1-subtxt {
  margin-top: 30px;
  font-size: calc(33 / 16 * 1rem);
}

.c-kv-bottom {
  max-width: 790px;
  margin-top: 62px;
}

.c-kv-subject {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color-green--deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 40px;
  color: #fff;
  width: 206px;
  height: 206px;
  border-radius: 50%;
}

.c-kv-subject__item:nth-of-type(1) {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
}

.c-kv-subject__item:nth-of-type(2) {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 500;
}

.c-kv-lead__item {
  display: inline-flex;
  font-size: calc(20 /16 * 1rem);
  line-height: 1.4;
  font-weight: 700;
  background-color: #fff;
  padding: 8px 15px 10px;
  border-right: 2px solid var(--color-green--deep);
  border-bottom: 2px solid var(--color-green--deep);
}

.c-kv-img {
  max-width: 507px;
  width: 90%;
}

@media (max-width: 991px) {
  .c-kv {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-radius: 90px 10px 90px 10px;
  }

  .ttl-h1-maintxt {
    font-size: clamp(28px, 9vw, 54px);
  }

  .ttl-h1-subtxt {
    margin-top: 20px;
    font-size: clamp(20px, 6.4vw, 30px);
  }

  .c-kv-bottom {
    margin-top: 20px;
  }

  .c-kv-subject {
    position: static;
    max-width: 480px;
    width: 90%;
    height: auto;
    border-radius: 10px;
    padding: 8px;
    gap: 3px;
    justify-content: center;
    margin: auto;
  }

  .c-kv-subject__item:nth-of-type(1) {
    font-size: 4.2vw;
  }

  .c-kv-subject__item:nth-of-type(2) {
    font-size: 4.2vw;
  }

  .c-kv-lead {
    margin-top: 20px;
    max-width: 90%;
    margin: 20px auto 0;
  }

  .c-kv-lead__item {
    font-size: calc(17 / 16 * 1rem);
  }

  .c-kv-img {
    width: 70%;
  }
}

/* -----------------------------------------
 flow 
----------------------------------------- */
.googlemap {
  width: 100%;
  height: 380px;
}

.googlemap iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .googlemap {
    height: 300px;
  }

}

/* -----------------------------------------
 contact 
----------------------------------------- */


.back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  background-color: var(--color-green--deep);
  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;
}

.back-to-top.is-stopped {
  bottom: 110px;
}

/* ============================================
　Footer
============================================　*/
.footer {
  color: #fff;
  background-color: var(--color-green--deep);
}

.footer-policy {
  font-size: .8rem;
  margin: 2rem;
}