  @charset "UTF-8";
/* var */
:root {
  --blue: #00559C;
  --black: #414141;
  --gray: #434343;
  --orange: #F0532D;
  --green: #95BC4A;
  --red: #C94B4B;
  --yellow: #C3B129;
  --green2: #258835;
}

/* base */
* {
  box-sizing: border-box;
  position: relative;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

figure {
  margin: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s 0s ease;
  color: var(--black);
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
a.noref {
  pointer-events: none;
}

.pc-only {
  display: block !important;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
.sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
}
.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .inner {
    padding: 0 4vw;
  }
}
@media (max-width: 768px) {
  .inner {
    padding: 0 3.7rem;
  }
}
@media (max-width: 520px) {
  .inner {
    padding: 0 1.7rem;
  }
}
/* base end */
.main {
  /*
    overflow-x: hidden;
  */
}
@media (max-width: 768px) {
  .main {
    margin: 0;
    overflow-x: hidden;
  }
}
.main-lower {
  padding: 0;
}
@media (max-width: 768px) {
  .main-lower {
    padding: 0;
  }
}
@font-face {
  font-family: 'Barlow';
    src: url('/assets/font/Barlow-SemiBold.ttf') format('opentype');

}
.c-en {
  font-family: "Barlow", sans-serif;
}

.c-hira {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3";
}

.c-blue {
  color: var(--blue);
}

.body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.05rem;
}
.body::before {
  content: "";
  transition: 0.3s all;
}
.body.is-active::before {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}


.lower {
  padding: 0;
}
.lower .header {
  background: #fff;
}
.lower .header .header-nav__item a {
  text-shadow: none;
  color: inherit;
}
.lower .header .header-toggle span {
  border-color: var(--blue);
}
.lower-main {
  padding: 2rem 0 6rem;
}
.lower-main video {
  width: 100%;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header .inner {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 100%;
  min-height: 78px;
}
.header.is-scroll {
  background: #fff;
  position: sticky;
}
.lower .header {
  position: sticky;
}
.header.is-scroll .header-nav__item a {
  text-shadow: none;
  color: inherit;
}
.header.is-scroll .header-toggle span {
  border-color: var(--blue);
}
.header-logo-pc {
  display: block;
}
@media (max-width: 768px) {
  .header-logo-pc {
    display: none;
  }
}
.header-logo-sp {
  display: none;
}
@media (max-width: 768px) {
  .header-logo-sp {
    display: block;
  }
}
.header-toggle {
  transition: 0.3s all;
  z-index: 9999;
  display: none;
}
@media (max-width: 768px) {
  .header-toggle {
    display: block;
  }
}
.header-toggle.is-active {
  background: transparent;
}
.header-toggle:hover {
  cursor: pointer;
  opacity: 0.8;
}
.header-toggle div {
  position: relative;
  z-index: 10;
  width: 26px;
  height: 26px;
}
.header-toggle span {
  border-bottom: solid 2px var(--blue);
  display: block;
  -moz-transition: 0.35s ease-in-out;
  position: absolute;
  transition: 0.35s ease-in-out;
  -webkit-transition: 0.35s ease-in-out;
  width: 100%;
  border-radius: 10px;
}
.header-toggle span:nth-child(1) {
  top: 0;
}
.header-toggle span:nth-child(2) {
  top: 10px;
}
.header-toggle span:nth-child(3) {
  top: 20px;
  width: 70%;
  left: 8px;
}
.header-toggle.is-active span:nth-of-type(1) {
  transform: translateY(20px) rotate(-45deg);
  -webkit-transform: translateY(10px) rotate(-45deg);
  border-bottom: solid 2px var(--blue);
}
.header-toggle.is-active span:nth-of-type(2) {
  opacity: 0;
}
.header-toggle.is-active span:nth-of-type(3) {
  transform: translateY(-20px) rotate(45deg);
  -webkit-transform: translateY(-10px) rotate(45deg);
  border-bottom: solid 2px var(--blue);
  width: 100%;
  left: 0;
}
.header-nav {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.header-nav__list {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1000px) {
  .header-nav__list {
    display: none;
  }
}
.header-nav__item a {
  text-shadow: 0 0 6px #111;
  color: #fff;
}
.header-nav__wrap {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  height: 34px;
}
.header-nav__contact,
.header-nav__search,
.header-nav__en {
  height: 34px;
}
.header-nav__contact a {
  background: var(--orange) url("../img/common/icon_mail.svg") no-repeat 10px center;
  color: #fff;
  padding: 0 1rem 0 3rem;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;

  height: 100%;
}
@media (max-width: 768px) {
  .header-nav__contact a {
    font-size: 1.3rem;
  }
}
.header-nav__search--inner {
  background: var(--blue);
  color: #fff;
  padding: 0 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-nav__search--inner img {
  vertical-align: sub;
}
.header-nav__search--form {
  position: absolute;
  top: 36px;
  left: -230px;
  width: 300px;
  visibility: hidden;
  padding: 5px 25px 5px 0px;
  opacity: 0;
  transition: 0.3s all;
  background: rgba(255,255,255,.4);
}
@media (max-width: 768px) {
  .header-nav__search--form {
    padding: 5px 45px 5px 0px;
    left: -160px;
  }
  .gsib_a {
    padding: 0 10px !important;
  }

}
.header-nav__search--close {
  position: absolute;
  right: 9px;
  top : 30px;
  display: block;
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .header-nav__search--close {
     right: 20px;
  }
}
.header-nav__search--close::before, .header-nav__search--close::after { /* 共通設定 */
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 20px; /* 棒の高さ */
  background: var(--blue);
}
.header-nav__search {
  z-index: 9999;
}
.header-nav__search--close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
 
.header-nav__search--close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.header-nav__search--form form {
  display: flex;
  background: var(--blue);
  padding: 0.3rem 1rem;
}
.header-nav__search.is-active .header-nav__search--form {
  visibility: visible;
  opacity: 1;
}
.gsc-control-cse {
  background : none !important;
  border: none !important;
}
.header-nav__search--text {
  background: #fff;
  border: none;
  border-radius: 60px;
  width: 100%;
  font-size: 14px;
  text-indent: 30px;
  padding: 0.4rem;
}
.header-nav__search--submit {
  position: absolute;
  left: 6px;
  top: 4px;
  border: none;
  background: transparent url("../img/common/icon_search_b.svg") no-repeat 10px center;
  width: 30px;
  height: 20px;
  display: block;
  cursor: pointer;
  font-size: 0;
}
.header-nav__en a {
  background: #3C3C3C;
  color: #fff;
  padding: 0 0.9rem;
  border-radius: 5px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spmenu {
  background: #fff;
  width: 80%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  padding: 6rem 2rem 1rem;
  overflow-y: scroll;
  right: -100vw;
  transition: 0.6s all;
  display: none;
}
@media (max-width: 768px) {
  .spmenu {
    display: block;
  }
}
.spmenu.is-active {
  right: 0;
}
.spmenu .header-toggle {
  right: 2rem;
  top: 2rem;
  position: absolute;
}
.spmenu-wrap {
  border-top: 1px solid #D3D3D3;
}
.spmenu-wrap__item > a {
  display: block;
  border-bottom: 1px solid #D3D3D3;
  padding: 1rem;
}
.spmenu-wrap__item--has > a {
  background: transparent url("../img/common/icon_plus.svg") no-repeat 95% center;
}
.spmenu-wrap__item--has > a.is-active {
  background: transparent url("../img/common/icon_minus.svg") no-repeat 95% center;
  border-bottom: 1px solid var(--blue);
}
.spmenu-child {
  display: none;
}
.spmenu-child__item > a {
  display: block;
  border-bottom: 1px solid #D3D3D3;
  padding: 1rem;
  width: 95%;
  margin: 0 0 0 auto;
}

.breadcrumb {
  background: var(--blue);
  padding: 1rem 0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb__item a {
  background: transparent url("../img/common/icon_bread.svg") no-repeat right center;
  color: #fff;
  font-size: 1.3rem;
  padding: 0 1.5rem 0 1rem;
}
@media (max-width: 768px) {
  .breadcrumb__item a {
    font-size: 1.1rem;
  }
}
.breadcrumb__item span {
  padding: 0 1rem 0 1rem;
  color: #fff;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  .breadcrumb__item span {
    font-size: 1.1rem;
  }
}

.catop {
  padding: 3rem 2rem 0;
}
@media (max-width: 768px) {
  .catop {
    padding: 1rem 2rem 0;
  }
}
.catop::before {
  content: "";
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 100%);
  background: var(--blue);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -1px;
}
@media (max-width: 1000px) {
  .catop .inner {
    padding: 0;
  }
}
.catop-nav {
  padding-bottom: 8rem;
}
@media (max-width: 768px) {
  .catop-nav {
    padding-bottom: 4rem;
  }
}
.catop-list {
  padding-bottom: 8rem;
}
@media (max-width: 768px) {
  .catop-list {
    padding-bottom: 4rem;
  }
}
.catop-project {
  padding-bottom: 8rem;
}
@media (max-width: 768px) {
  .catop-project {
    padding-bottom: 12rem;
  }
}
.catop-company, .catop-kankyou, .catop-ir {
  padding-bottom: 16rem;
  margin-bottom: -13rem;
}
@media (max-width: 768px) {
  .catop-company, .catop-kankyou, .catop-ir {
    padding-bottom: 12rem;
    margin-bottom: -8rem;
  }
}
.catop-min {
  background: var(--blue);
  padding: 2rem 2.5rem;
}
.catop-min::before {
  display: none;
}
.catop-min__title {
  color: #fff;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .catop-min__title {
    text-align: center;
    font-size: 1.6rem;
  }
}
.catop__title {
  font-size: 3rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 0 0 0 4rem;
}
@media (max-width: 768px) {
  .catop__title {
    font-size: 2rem;
  }
}
.catop__title::before {
  content: "";
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  background: #fff;
  width: 36px;
  height: 34px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .catop__title::before {
    width: 27px;
    height: 25px;
  }
}
.catop__lead {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 768px) {
  .catop__lead {
    font-size: 1.4rem;
  }
}
.catop-first {
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .catop-first {
    padding-top: 2rem;
  }
}
.catop-first__lead {
  text-align: center;
}
.catop-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
@media (max-width: 768px) {
  .catop-nav__list {
    gap: 2rem;
  }
}
.catop-nav__item {
  width: calc(33.3333333333% - 2rem);
  max-width: 310px;
}
@media (max-width: 768px) {
  .catop-nav__item {
    width: calc(50% - 1rem);
  }
}
.catop-nav__item a {
  opacity: 1;
}

.catop-nav__item span {
  display: block;
}
.catop-nav__item span::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--blue);
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  transition: 0.3s all;
}
@media (hover: hover) {
.catop-nav__item span:hover {
  opacity: 1;
}

.catop-nav__item span:hover::before {
  opacity: 0.7;
}
}

.catop-nav__thum {
  margin-bottom: 1rem;
  display: block;
}
.catop-nav__thum img {
  border: 1px solid #C9C9C9;
}
.catop-nav__title {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0 0 0 2rem;
  margin-bottom: 1rem;
  background: transparent url("../img/common/icon_catop_arrow.svg") no-repeat left center;
}
@media (max-width: 768px) {
  .catop-nav__title {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .catop-nav__lead {
    display: none;
  }
}
.catop-list__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media (max-width: 768px) {
  .catop-list__wrap {
    gap: 2rem;
    flex-direction: column;
  }
}
.catop-list__title {
  color: #fff;
  z-index: 50;
  font-size: 2.4rem;
  font-weight: 600;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 80px;
}
@media (max-width: 768px) {
  .catop-list__title {
    font-size: 1.7rem;
    left: 50px;
  }
}
.catop-list__item {
  width: 50%;
  max-width: 480px;
  height: 290px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .catop-list__item {
    width: 100%;
    height: 150px;
  }
}
.catop-list__item a {
  z-index: 999;
  display: block;
  width: 100%;
  height: 100%;
}
.catop-list__item::before {
  content: "";
  clip-path: polygon(35% 0, 78% 22%, 29% 100%, 0 100%, 0 0);
  content: "";
  background: rgba(0, 75, 148, 0.7);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 100%;
  z-index: 50;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  .catop-list__item::before {
    width: 300px;
  }
}
@media (hover: hover) {
  .catop-list__item:hover::before {
    clip-path: polygon(100% 0, 100% 57%, 100% 100%, 0 100%, 0 0);
    width: 100%;
  }
}
.catop-list__item--doboku {
  background: transparent url("../img/project/top/img_project_top_01.jpg") no-repeat center center;
  background-size: cover;
}
.catop-list__item--kenchiku {
  background: transparent url("../img/project/top/img_project_top_02.jpg") no-repeat center center;
  background-size: cover;
}
.catop-list__item--kaigai {
  background: transparent url("../img/project/top/img_project_top_03.jpg") no-repeat center center;
  background-size: cover;
}
.catop-list__item--kenkyukaihatsu {
  background: transparent url("../img/project/top/img_project_top_04.jpg") no-repeat center center;
  background-size: cover;
}

.l-column-two {
  padding: 4rem 0 9rem;
}
@media (max-width: 768px) {
  .l-column-two {
    padding: 0 0 7rem;
  }
}
.l-column-two .inner {
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .l-column-two .inner {
    flex-direction: column;
    gap: 0;
  }
}

.l-main {
  max-width: 770px;
  width: 77%;
  flex: 1;
}
@media (max-width: 768px) {
  .l-main {
    width: 100%;
    max-width: 100%;
    padding-top: 2rem;
  }
}

.c-bb {
  border-bottom: 1px solid #ccc;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.c-set {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .c-set {
    margin-bottom: 3rem;
  }
}
.c-set:last-child {
  margin-bottom: 0;
}
.c-set-sub {
  margin-bottom: 3rem;
}

.c-text {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .c-text {
    margin-bottom: 1rem;
  }
}

.c-ar {
  text-align: right;
}

.c-tc {
  text-align: center;
}
.c-tc video {
  max-width: 100%;
}

.c-datelist li {
  border-bottom: 1px #ccc dashed;
  padding: 1rem 0;
  display: flex;
  gap: 2rem;
}
.c-datelist__data {
  width: 120px;
}
.c-datelist__title {
  flex: 1;
}
.c-datelist a {
  color: #00559C;
  text-decoration: underline;
}

.c-table {
  width: 100%;
  border-top: 1px solid #c3c3c3;
}
.c-table.c-mb20 {
  display: table;
}
@media (max-width: 768px) {
  .c-table {
   width: 1000px;
  }
  .c-table-100p {
   width: 100%;
  }
  .c-table-800 {
   width: 800px;
  }
  .c-table-500 {
   width: 100%;
  } 
  .c-table-600 {
   width: 100%;
  }
  .c-table-700 {
   width: 100%;
  }
}
@media (max-width: 520px) {
  .c-table-500 {
   width: 500px;
  } 
  .c-table-600 {
   width: 600px;
  }
  .c-table-700 {
   width: 700px;
  }
}


.c-table-single {
  border-left: 1px solid #c3c3c3;
}
@media (max-width: 768px) {
  .c-table-wrap {
    overflow: auto;    
  }
}
.c-table-100w {
  width: 100px;
}
.c-table-200w {
  width: 200px;
}
.c-table-caption {
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.c-table-flex {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.c-table-th {
  background: #ededed;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #c3c3c3;
  border-right: 1px solid #c3c3c3;
  padding: 1rem 1.5rem;
  font-weight: 600;
}

.c-table-th-7 {
  width: 7%;
  white-space: normal;
}
.c-table-th-10 {
  width: 10%;
  white-space: normal;
}
.c-table-th-15 {
  width: 15%;
  white-space: normal;
}
.c-table-th-20 {
  width: 20%;
  white-space: normal;
}
.c-table-th-25 {
  width: 25%;
  white-space: normal;
}
.c-table-th-30 {
  width: 30%;
  white-space: normal;
}
.c-table-th-40 {
  width: 40%;
  white-space: normal;
}
.c-table-th-50 {
  width: 50%;
  white-space: normal;
}
.c-table-th sup {
  top: -0.5rem;
}
.c-table-th-bg {
  background: #ddd;
}
.c-table-th-bg2 {
  background: #ccc;
}
.c-table-th-cap {
  border-bottom: none;
  border-top: 1px solid #c3c3c3;
  border-left: 1px solid #c3c3c3;
  text-align: center;
}
@media (max-width: 768px) {
  .c-table-th-cap {
    font-size: 1.4rem;
  }
  .c-table-sp100 .c-table-th-cap {
    border-bottom: 1px solid #c3c3c3;
    border-top : none;
    border-left: none;
  }
}
.c-table-th-caplink {
  font-size: 1.1rem;
  padding: 0 0 0 2rem;
}
.c-table-th2 {
  background: #ccc;
  border-right: 1px solid #9a9a9a;
  border-bottom: 1px solid #9a9a9a;
  vertical-align: middle;
  text-align: center;
  padding: 0.5rem 1.5rem;
}
.c-table-min {
  font-size: 0.9rem;
  padding: 0.3rem;
}
.c-table-tc {
  text-align: center;
}
.c-table-tc a {
  color: #00559C;
  text-decoration: underline;
}
.c-table-tr {
  text-align: right;
}
.c-table-td {
  padding: 1rem 1.5rem;
  vertical-align: top;
  border-bottom: 1px solid #c3c3c3;
  border-right: 1px solid #c3c3c3;
}

.c-table-td sup {
  top: -0.5rem;
}
.c-table-td a {
  color: #00559C;
  text-decoration: underline;
}
.c-table-bg {
  background: #f9f9f9;
}
.c-table-vm {
  vertical-align: middle;
}
.c-table-right {
  text-align: right;
}
.c-table-last {
  border-right: none;
}
.c-table-inner {
  display: flex;
}
.c-table-inner dt {
  width: 40%;
}
.c-table-inner dd {
  flex: 1;
}
.c-table-hint {
  position: absolute;
  top : 2rem;
  left : 50%;
  transform: translateX(-40%);
  z-index: 997;
  color: #fff;
  background: rgba(0,0,0,.7);
  width: 80%;
  padding: 1rem;
  font-size: 1.4rem;
  text-align: center;
  animation: scroll-hint-animation 2s  ease;
  opacity: 0;
  display: none;
}

@media (max-width: 768px) {
  .c-table-hint {
    display: block;
  }
  .c-table-700 + .c-table-hint,
  .c-table-100p + .c-table-hint{
    display: none;
  }
}
@media (max-width:520px) {
  .c-table-700 + .c-table-hint {
    display: block;
  }
}

@keyframes scroll-hint-animation {
  0% {
    transform: translateX(-50%);
    opacity: 1;
  }
  50% {
    transform: translateX(-40%);
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%);
    opacity: 0;
  }
}

.c-freedial {
  background: transparent url("../img/common/img_dial.gif") no-repeat left center;
  padding: 0 0 0 2rem;
}

.c-link {
  background: transparent url("../img/common/icon_link.svg") no-repeat right center;
  padding: 0 2rem 0 0;
}

.c-pdf {
  background: transparent url("../img/common/icon_pdf.svg") no-repeat right center;
  padding: 0 2rem 0 0;
}

.c-underline {
  color: #00559C;
  text-decoration: underline;
}

.c-btn {
  display: block;
  border: 1px solid var(--blue);
  width: 140px;
  margin: 0 auto;
  border-radius: 5px;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.2rem 0.5rem;
  background: transparent url("../img/common/icon_link_b.svg") no-repeat 96% center;
  transition: 0.1s all;
}
.c-btn span {
  background: transparent url("../img/top/icon_arrow_b.svg") no-repeat 10% center;
  padding: 0 0 0 3.5rem;
}
.c-btn:hover {
  background: var(--blue) url("../img/common/icon_link_w.svg") no-repeat 96% center;
  opacity: 1;
  color: #fff;
}
.c-btn:hover span {
  background: transparent url("../img/top/icon_arrow_w.svg") no-repeat 10% center;
  padding: 0 0 0 3.5rem;
}

.c-btn2 {
  display: block;
  border: 1px solid var(--blue);
  width: 140px;
  border-radius: 5px;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.2rem 0.5rem;
  transition: 0.1s all;
}
@media (max-width: 768px) {
  .c-btn2 {
    width: 90%;
    margin: 0 auto;
  }
}
.c-btn2 span {
  background: transparent url("../img/top/icon_arrow_b.svg") no-repeat 10% center;
  display: block;
  text-align: center;
  text-indent: 14px;
}
.c-btn2:hover {
  background: var(--blue);
  opacity: 1;
  color: #fff;
}
.c-btn2:hover span {
  background: transparent url("../img/top/icon_arrow_w.svg") no-repeat 10% center;
}
.c-btn2-wide {
  width: 200px;
}

.c-title {
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 1px solid #707070;
  padding: 0 0 0.5rem 2rem;
  margin-bottom: 2rem;
}
.c-title::before {
  content: "";
  width: 6px;
  height: 30px;
  display: block;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .c-title::before {
    height: 90%;
  }
}
.c-title-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.4rem;
  font-weight: 400;
}

.c-inline {
  display: inline;
}
.c-inline a {
  color: #00559C;
}

.c-sub {
  background: var(--blue);
  color: #fff;
  padding: 1.3rem 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .c-sub {
    font-size: 1.4rem;
    padding: 1.3rem;
  }
}
.c-sub a {
  display: block;
  color: #fff;
}

.c-submin {
  color: var(--orange);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.c-sub2 {
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: 1px solid #707070;
  padding: 1rem 0;
  margin-bottom: 2rem;
}
.c-sub2 a {
  color: #00559C;
  text-decoration: underline;
}

.c-sub3 {
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.c-sub4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.c-sub5 {
  font-size: 1.6rem;
  font-weight: 600;
  background: #4396DB;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.c-feature {
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .c-feature {
    padding: 0;
  }
}
.c-feature__item {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .c-feature__item {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
}
.c-feature__item:last-child {
  margin-bottom: 0;
}
.c-feature__label {
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 600;
}
.c-feature__text {
  flex: 1;
}

.c-detail .c-btn2 {
  margin-bottom: 1rem;
  width: 200px;
  text-align: center;
  transition: 0.1s all;
}
.c-detail .c-btn2 span {
  padding: 0;
  width: 100%;
  display: block;
}
.c-detail .c-list {
  padding: 1rem 0;
}

.c-btngroup {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.c-btngroup li {
  width: calc(33.3333333333% - 1.5rem);
}
@media (max-width: 768px) {
  .c-btngroup li {
    width: calc(50% - 1.5rem);
  }
}
.c-btngroup li a {
  display: block;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 1.1rem;
  text-align: center;
  padding: 1rem 0;
  border-radius: 5px;
  transition: 0.3s all;
}
.c-btngroup li a span {
  background: transparent url("../img/top/icon_arrow_b.svg") no-repeat left center;
  padding: 0 0 0 2rem;
}
@media (hover: hover) {
  .c-btngroup li a:hover {
    background: var(--blue) url("../img/saiyou/icon_link_w.svg") no-repeat 96% center;
    opacity: 1;
    color: var(--blue);
    color: #fff;
    border: 1px solid var(--blue);
  }
  .c-btngroup li a:hover span {
    background: transparent url("../img/top/icon_arrow_w.svg") no-repeat left center;
    padding: 0 0 0 2rem;
  }
}

.c-arlist-list {
  display: flex;
  gap: 5rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .c-arlist-list {
    flex-direction: column;
  }
}
.c-arlist-list__item::after {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 50% 50%);
  display: block;
  background: var(--blue);
  position: absolute;
  right: -4.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}
@media (max-width: 768px) {
  .c-arlist-list__item::after {
    right: auto;
    top: auto;
    left: 50%;
    bottom: -4rem;
    transform: translateX(-50%);
    clip-path: polygon(0 0, 50% 50%, 100% 0);
  }
  .c-arlist-list__image {
    text-align: center;
  }
}
.c-arlist-list__item:last-child::after {
  display: none;
}
.c-arlist-list__label {
  background: #ddd;
  text-align: center;
  font-weight: 600;
  padding: 0.5rem 0;
}
@media (max-width: 768px) {
  .c-arlist-list__label {
    margin-bottom: 1rem;
  }
}
.c-arlist-list__label--col {
  background: var(--orange);
  color: #fff;
}
@media (max-width: 768px) {
  .c-arlist-list__label--col {
    margin-bottom: 1rem;
  }
}
.c-arlist-list__lead {
  padding: 1rem 0;
}

.c-aco {
  margin-bottom: 2rem;
}
.c-aco.is-active {
  margin-bottom: 4rem;
}
.c-aco-last {
  margin-bottom: 6rem;
}
.c-aco-title {
  cursor: pointer;
  margin-bottom: 0;
}
.c-aco-title::after {
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  display: block;
  width: 12px;
  height: 10px;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}
.c-aco-title.is-active::after {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.c-aco-detail {
  padding-top: 2rem;
  display: none;
}
.c-aco-detail__text {
  margin-bottom: 2rem;
}
.c-aco-detail__text:last-child {
  margin-bottom: 0;
}
.c-aco-detail a {
  color: #00559C;
  text-decoration: underline;
}
.c-aco-nopad {
  padding: 0;
}

.c-min {
  font-size: 1.3rem;
}

.c-icon {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.c-icon .c-btn2 {
  margin-bottom: 1rem;
}
.c-icon .c-btn2 span {
  display: block;
  text-align: center;
  padding: 0;
}

@media (max-width: 768px) {
  .more .c-btn2 {
    width: 100%;
  }
}

.c-attention {
  background: #EFEFEF;
  text-align: center;
  padding: 2rem 0;
}

.c-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .c-wrap {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
.c-wrap-rev {
  flex-direction: row;
}
.c-wrap-start {
  justify-content: flex-start;
  flex-direction: row;
}
@media (max-width: 768px) {
  .c-wrap-start {
    flex-direction: column;
  }
  
}
.c-wrap-gap {
  gap: 3rem;
}
@media (max-width: 768px) {
  .c-wrap-gap {
    gap: 2rem;
  }
}
.c-wrap-gap2 {
  gap: 2rem;
}
@media (max-width: 768px) {
  .c-wrap-gap2 {
    gap: 1rem;
  }
}
.c-wrap-gap4 {
  gap: 4rem;
}
@media (max-width: 768px) {
  .c-wrap-gap4 {
    gap: 2rem;
  }
  .c-wrap-spfxdc {
    flex-direction: column;
  }
  .c-wrap-spflex {
    flex-direction: row;
  }
}
.c-wrap-detail {
  flex: 1;
  width: 100%;
}
.c-wrap-image {
  max-width: 240px;
  width: 100%;
}
@media (max-width: 768px) {
  .c-wrap-image {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 520px) {
  .c-wrap-image {
    max-width: 100%;
  }
}
.c-wrap-image img {
  width: 100%;
}

.c-wrap-image2 img {
  width: 100%;
}

.c-caption {
  font-weight: 600;
  padding: 0.5rem 0;
  display: block;
}

.c-list li {
  padding: 0 0 0 1.2rem;
  text-indent: -1.2rem;
  margin-bottom: 1rem;
}
.c-list li::before {
  content: "? ";
}
.c-list li:last-child {
  margin-bottom: 0;
}
.c-list-inline {
  display: flex;
  gap: 1rem 2rem;
  font-weight: 600;
  flex-wrap: wrap;
}

.c-list2 li {
  padding: 0 0 0 1.2rem;
  text-indent: -1.2rem;
  margin-bottom: 1rem;
}
.c-list2 li::before {
  content: "■";
}
.c-list2 li:last-child {
  margin-bottom: 0;
}

.c-list-normal li {
  margin-bottom: 1rem;
  padding: 0 0 0 1.2rem;
  text-indent: -1.2rem;
}
.c-list-normal li:last-child {
  margin-bottom: 0;
}

.c-numlist__item {
  counter-increment: cnt;
  padding: 0 0 0 1.7rem;
  text-indent: -1.7rem;
  margin-bottom: 1rem;
}
.c-numlist__item::before {
  content: counter(cnt) ". ";
}
.c-numlist__item:last-child {
  margin-bottom: 0;
}

.c-numlist2 {
  margin-bottom: 2rem;
}
.c-numlist2__item {
  counter-increment: cnt2;
  padding: 1rem 0 0 2.7rem;
  text-indent: -2.7rem;
}
.c-numlist2__item::before {
  content: "（" counter(cnt2) "） ";
}
.c-numlist2__item:last-child {
  margin-bottom: 0;
}

.c-numlist3 {
  margin-bottom: 2rem;
}
.c-numlist3__item {
  position: relative;
  padding: 1rem 0 0 4rem;
  text-indent: 0;
  margin-left: 2.9rem;;
}
  .c-numlist3__item span{
    position: absolute;
    left: 0;
  }
.c-numlist3__item:last-child {
  margin-bottom: 0;
}

.c-pdfset p {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.c-pdfset p .textBody {
  font-size: 1.1rem;
}

.c-bg {
  background: #F5F5F5;
  padding: 2rem;
}
.c-bg-title {
  border-bottom: 1px dotted #999;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.c-bg-detail {
  margin-bottom: 1rem;
  padding: 0 0 0 2rem;
}
.c-bg-detail:last-child {
  margin-bottom: 0;
}
.c-bg-detail dt {
  font-weight: 600;
}
.c-bg-detail dt::before {
  content: "?";
  position: absolute;
  left: -1.5rem;
  top: 0;
}
.c-bg-label {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.c-mb0 {
  margin-bottom: 0;
  display: block;
}

.c-mb5 {
  margin-bottom: 0.5rem;
  display: block;
}

.c-mb10 {
  margin-bottom: 1rem;
  display: block;
}
@media (max-width: 768px) {
  .c-mb10 {
    margin-bottom: 1rem;
  }
}

.c-mb20 {
  margin-bottom: 2rem;
  display: block;
}
@media (max-width: 768px) {
  .c-mb20 {
    margin-bottom: 1rem;
  }
}

.c-mb30 {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .c-mb30 {
    margin-bottom: 1.5rem;
  }
}

.c-mb80 {
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .c-mb80 {
    margin-bottom: 4rem;
  }
}

.c-tab {
  margin-bottom: 3rem;
}
.c-tab__list {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .c-tab__list {
    gap: 1rem;
  }
}
.c-tab__item {
  width: 50%;
  max-width: 240px;
}
.c-tab__item a {
  display: block;
  background: #7C7C7C;
  border-radius: 40px;
  text-align: center;
  color: #fff;
  padding: 1.5rem 0;
}
.c-tab__item.is-current a {
  background: var(--blue);
}

.c-bold {
  font-weight: 600;
}

.c-image img {
  width: 50%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .c-image {
    max-width: 400px;
    margin: 0 auto;
  }
  .c-image img {
    width: 100%;
  }
}
.c-image-full img {
  width: 100%;
}

.sidebar {
  max-width: 200px;
  width: 20%;
  z-index: 997;
}
@media (max-width: 768px) {
  .sidebar {
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .sidebar::before {
    content: "";
    background: var(--blue);
    height: 60px;
    width: 100%;
    display: block;
  }
  .sidebar__none {
    display: none;
  }
}
@media (max-width: 768px) {
  .sidebar__wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: var(--blue);
    border: 1px solid #fff;
    border-radius: 5px;
    overflow: hidden;
  }
}
.sidebar__head {
  background: var(--blue);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.sidebar__head a {
  color: #fff;
  padding: 1rem 1rem 1rem 2rem;
  display: block;
}
@media (max-width: 768px) {
  .sidebar__head {
    margin-bottom: 0;
    background: transparent url("../img/common/icon_sp_second_menu.svg") no-repeat 95% 20px;
  }
  .sidebar__head--spnone {
    display: none;
  }
}
@media (max-width: 768px) {
  .sidebar__head.is-active {
    background: transparent url("../img/common/icon_sp_second_menu_o.svg") no-repeat 95% 20px;
  }
}
@media (max-width: 768px) {
  .sidebar__head--single {
    background: none;
  }
}
.sidebar__head--03 {
  background: #2473B5;
}
.sidebar__head--04 {
  background: #4396DB;
}
.sidebar__head--05 {
  background: #73b7ef;
}
.sidebar__head--06 {
  background: #b3d9f8;
}
@media (max-width: 768px) {
  .sidebar__head--03,
  .sidebar__head--04,
  .sidebar__head--05,
  .sidebar__head--06 {
    background: var(--blue) url("../img/common/icon_sp_second_menu.svg") no-repeat 95% 20px;
  }
}
.sidebar__head--sp {
  display: none;
}
@media (max-width: 768px) {
  .sidebar__head--sp {
    display: inline;
  }
}
@media (max-width: 768px) {
  .sidebar__list {
    width: 90%;
    margin: 0 auto;
    display: none;
  }
}
@media (max-width: 768px) {
  .sidebar li {
    padding: 0;
  }
}
.sidebar li a {
  padding: 0.8rem 1rem 0.8rem 3rem;
  background: transparent url("../img/common/icon_catop_arrow.svg") no-repeat 1rem center;
  font-size: 1.2rem;
  display: block;
}
@media (max-width: 768px) {
  .sidebar li a {
    background: none;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 1rem 1.5rem;
    margin-bottom: 0;
  }
  .sidebar li a .c-link {
    background: transparent url("../img/common/icon_link_w.svg") no-repeat right center;
  }
}
@media (max-width: 768px) {
  .sidebar li:last-child {
    margin-bottom: 2rem;
  }
}
.sidebar li.is-current a {
  background: #464242 url("/assets/img/common/icon_catop_arrow_w.svg") no-repeat 1rem center;
  color: #fff;
}
@media (max-width: 768px) {
  .sidebar li.is-current a {
    background : transparent;
  }
}
.sidebar .sidebar__list--child a {
  padding: 0.4rem 0 0.4rem 5rem;
  background: transparent url("../img/common/icon_catop_arrow.svg") no-repeat 3rem center;
}

.contact {
  border: 1px solid var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 2rem;
}
.contact .c-sub {
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-tel {
  text-align: center;
}
.contact-tel__link {
  background: transparent url("../img/common/icon_tel.svg") no-repeat left center;
  color: var(--orange);
  font-size: 2.4rem;
  font-weight: 600;
  padding: 0 0 0 2rem;
}
@media (max-width: 768px) {
  .contact-tel__link {
    font-size: 1.4rem;
  }
}
.contact-time {
  text-align: center;
}

.c-contact {
  border: 1px solid var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 2rem;
}
.c-contact .c-sub {
  text-align: center;
  margin-bottom: 1.5rem;
}
.c-contact-tel {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .c-contact-tel {
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
  }
}
.c-contact-tel__link {
  background: transparent url("../img/common/icon_tel.svg") no-repeat left center;
  color: var(--orange);
  font-weight: 600;
  padding: 0 0 0 2rem;
}
@media (max-width: 768px) {
  .c-contact-tel__link {
    font-size: 1.4rem;
  }
}
.c-contact-time {
  text-align: center;
}
.c-contact .address {
  padding: 0 0 0 2rem;
}
@media (max-width: 768px) {
  .c-contact .address {
    padding: 0;
  }
}
.c-contact .c-btn2 {
  background: var(--orange);
  margin: 0 auto;
  color: #fff;
  border-color: var(--orange);
  max-width: 160px;
}
.c-contact .c-btn2 span {
  background: url("/assets/img/common/icon_catop_arrow_w.svg") no-repeat 1rem center;
}
.c-contact .c-btn2:hover {
  border-color: var(--gray);
  background: var(--gray);
  opacity: 1;
}

.second-head {
  display: flex;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .second-head {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
.second-head__detail {
  flex: 1;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
@media (max-width: 768px) {
  .second-head__detail {
    padding: 2rem 0 2rem;
  }
}
.second-head__inner {
  text-align: center;
  width: 80%;
}
.second-head__label {
  font-size: 2.4rem;
  font-weight: 600;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  .second-head__label {
    font-size: 2rem;
    padding-bottom: 0.5rem;
  }
}
.second-head__lead {
  padding-top: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .second-head__lead {
    padding-top: 1rem;
  }
}
.second-head__lead--big {
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .second-head__lead--big {
    font-size: 1.8rem;
  }
}
.second-head__thum {
  max-width: 450px;
  width: 60%;
}
@media (max-width: 768px) {
  .second-head__thum {
    width: 100%;
    max-width: 100%;
    height: 150px;
    overflow: hidden;
  }
  .second-head__thum img {
    object-fit : cover;
    width: 100%;
    height: 100%;
  }
}
.second-head__thum img {
  width: 100%;
  object-fit: cover;
}
.second-lead {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .second-lead {
    margin-bottom: 4rem;
  }
}
.second-cat {
  margin-bottom: 6rem;
}
.second-cat__list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .second-cat__list {
    gap: 1rem;
  }
}
.second-cat__item {
  width: calc(33.3333333333% - 1.4rem);
}
@media (max-width: 768px) {
  .second-cat__item {
    width: calc(50% - 0.5rem);
  }
}
.second-cat__item a {
  background: #F2F2F2;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
}
@media (max-width: 1000px) {
  .second-cat__item a {
    padding: 1rem;
  }
}
.second-cat__item a:hover {
  background: var(--blue);
  opacity: 1;
}
.second-cat__item a:hover .second-cat__label {
  color: #fff;
}
.second-cat__icon {
  width: 65px;
}
@media (max-width: 1000px) {
  .second-cat__icon {
    width: 47px;
  }
}
.second-cat__label {
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 600;
  flex: 1;
  text-align: center;
}
@media (max-width: 1000px) {
  .second-cat__label {
    font-size: 1.4rem;
  }
}
.second-main-kaigai {
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .second-main-kaigai {
    margin-bottom: 4rem;
  }
}
.second-main__label {
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .second-main__label {
    font-size: 2rem;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
  }
}
.second-main__list {
  display: flex;
  gap: 3rem 2.4rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .second-main__list {
    gap: 2rem;
  }
}
.second-main__item {
  width: calc(33.3333333333% - 1.6rem);
  max-width: 240px;
}
@media (max-width: 768px) {
  .second-main__item {
    width: calc(50% - 1rem);
    max-width: 100%;
  }
}

  .second-main__item a:hover {
    opacity: 1;
  }

.second-main__item span {
  display: block;
}
.second-main__item span::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--blue);
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  transition: 0.3s all;
}
@media (hover: hover) {
.second-main__item span:hover {
  opacity: 1;
}

.second-main__item span:hover::before {
  opacity: 0.7;
}
}
.second-main__thum {
  margin-bottom: 0.8rem;
  display: block;
  width: 100%;
}
.second-main__thum img {
  border: 1px solid #C9C9C9;
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.second-main__title {
  font-weight: 400;
  padding: 0 0 0 2rem;
  margin-bottom: 1rem;
  background: transparent url("../img/common/icon_catop_arrow.svg") no-repeat left center;
  max-width: 240px;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .second-main__title {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
  }
}

.bottom {
  background: #F5F5F5;
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .bottom {
    padding: 4rem 0;
  }
}
.bottom__label {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .bottom__label {
    font-size: 2rem;
  }
}
.bottom__list {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .bottom__list {
    flex-direction: column;
    gap: 1rem;
  }
}
.bottom__item {
  width: calc(33.3333333333% - 2rem);
}
@media (max-width: 768px) {
  .bottom__item {
    width: 100%;
  }
}
.bottom__thum {
  margin-bottom: 0.8rem;
  display: block;
}
.bottom__title {
  font-weight: 600;
  padding: 0 0 0 2rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  background: transparent url("../img/common/icon_catop_arrow.svg") no-repeat left center;
}
@media (max-width: 768px) {
  .bottom__title {
    font-size: 1.4rem;
  }
}

.footer {
  background: var(--blue);
  padding: 5rem 0 3rem;
}
.footer__wrap {
  display: flex;
  color: #fff;
  justify-content: space-between;
  padding-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer__wrap {
    flex-direction: column;
  }
}
.footer-head__logo {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.footer-head__address {
  font-size: 1.2rem;
}
@media (max-width: 1000px) {
  .footer-head__address {
    margin-bottom: 4rem;
  }
}
.footer__copy {
  font-size: 1rem;
  text-align: center;
  color: #fff;
}
.footer-nav__list {
  display: flex;
  border-right: 1px solid #fff;
  margin-bottom: 2rem;
  justify-content: flex-end;
}
@media (max-width: 1000px) {
  .footer-nav__list {
    justify-content: flex-start;
    border: none;
  }
}
.footer-nav__item {
  border-left: 1px solid #fff;
  padding: 1rem 2rem;
}
@media (max-width: 768px) {
  .footer-nav__item {
    padding: 1rem 4rem;
  }
}
@media (max-width: 520px) {
  .footer-nav__item {
    padding: 1rem 2rem;
  }
}
@media (max-width: 1000px) {
  .footer-nav__item:last-child {
    border-right: 1px solid #fff;
  }
}
.footer-nav__item a {
  color: #fff;
  font-size: 1.2rem;
}

.tekiyoukouji-wrap {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .tekiyoukouji-wrap {
    flex-direction: column;
  }
}
.tekiyoukouji-detail {
  flex: 1;
}
@media (max-width: 768px) {
  .tekiyoukouji .c-table {
    width: 100%;
  }
}
.tekiyoukouji .c-table-th {
  width: 50%;
}
.tekiyoukouji .c-table-td a,
.kouhou  .c-table-th a {
  color: #00559C;
  text-decoration: underline;
}

.c-cat {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .c-cat {
    /*
    flex-direction: column;
    gap: 3rem;
    */
  }
}
.c-cat__wrap {
  display: flex;
  gap: 2rem 2rem;
  width: calc(50% - 2rem);
}
@media (max-width: 768px) {
  .c-cat__wrap {
    flex-direction: column;
    /*
    width: 100%;
    */
  }
}
.c-cat__wrap .fig {
  max-width: 100px;
}
@media (max-width: 768px) {
  .c-cat__wrap .fig {
    width: 100%;
    max-width: 240px;
  }
}
.c-cat__wrap .fig1 {
  max-width: 100px;
}
.c-cat__wrap img {
  aspect-ratio: 1/1;
  width: 100%;
}
.c-cat__wrap .textBody {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;

}
.c-cat__wrap .textBody-wide {
  max-width: 100%;
}
.c-cat__wrap .c-text {
  flex-grow: 1;
  margin-bottom: 1rem;
}
.c-cat__wrap .title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.c-cat__wrap .catList {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.c-cat__wrap .catList li span {
  border: 1px solid #ccc;
  border-radius: 2px;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
}

.c-wrap3 {
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .c-wrap3 {
    flex-direction: column;
  }
}
.c-wrap3__item {
  width: calc(33.3333333333% - 2rem);
}
@media (max-width: 768px) {
  .c-wrap3__item {
    width: 100%;
  }
}
.c-wrap3 .c-btn2 {
  width: 100%;
  text-align: center;
  text-indent: -2rem;
}
.c-wrap3 .c-list li:before {
  content: "■";
}

.c-contact {
  border: 1px solid #707070;
}
.c-contact__title {
  background: var(--blue);
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .c-contact__title {
    font-size: 1.4rem;
  }
}
.c-contact__body {
  flex-direction: column;
  padding: 2rem 0;
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .c-contact__body {
    padding: 1rem 0;
    gap: 1rem;
  }
}
.c-contact__address {
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .c-contact__address {
    font-size: 1.8rem;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }
}
.c-contact__nav {
  display: flex;
  justify-content: center;
}
.c-contact__nav .c-btn2 {
  width: 160px;
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #fff;
}
.c-contact__nav .c-btn2 span {
  padding: 0 0 0 4rem;
  background: transparent url("../img/top/icon_arrow_w.svg") no-repeat 10% center;
}

@media (max-width: 768px) {
  .c-spimage {
    text-align: center;
  }
}



@media (prefers-color-scheme: dark) {
  @media (max-width: 768px) {
    .top-mv,
    .top-first,
    .header,
    .header.is-scroll {
      background: transparent url("../img/common/bg_white.jpg") repeat center center !important;
    }
  }
}

.c-max300 {
  max-width: 300px;
}

@media (max-width: 768px) {
  .c-max300 {
    max-width: 400px;
    margin: 0 auto;
  }
}