@charset "UTF-8";
/* ========== Font ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #444444;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

/* ========== 共通 ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.8;
}

blockquote,
dd,
div,
dl,
dt,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
pre,
span,
td,
th,
ul {
  max-height: 999999px;
}

ol,
ul,
li {
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  list-style: none;
  background: transparent;
  border: 0;
  outline: 0;
}

p,
div,
li,
span {
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

.wrapper {
  position: relative;
}

header {
  position: fixed;
  top: 0;
  z-index: 10000;
  box-sizing: border-box;
  width: 100%;
  height: 97px;
  background-color: white;
}
header > div {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  border-bottom: 2px solid black;
  height: 97px;
  box-sizing: border-box;
}
header > div h1 {
  padding: 0 45px;
}
@media screen and (max-width: 800px) {
  header > div h1 {
    padding: 0 20px;
  }
}
header > div .header-line {
  width: 2px;
  height: 97px;
  background-color: black;
}
header > div .header-txt {
  padding: 0 45px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  header > div .header-txt {
    padding: 0 20px;
    font-size: 15px;
  }
}

main {
  z-index: 100;
  margin-top: 97px;
}
main section {
  box-sizing: border-box;
  width: 100%;
}
main section .mv-area {
  width: 100%;
  display: grid;
  grid-template-columns: 11.5625% 33.3333333333% 14.0625% 38.0729166667% auto;
  grid-template-rows: 200px auto auto 80px;
}
@media screen and (max-width: 800px) {
  main section .mv-area {
    height: auto;
    max-height: auto;
    grid-template-columns: 70% 30%;
    grid-template-rows: auto;
  }
}
main section .mv-area .bk-color {
  grid-column: 1/4;
  grid-row: 1/4;
  background-color: #edf3f7;
}
@media screen and (max-width: 800px) {
  main section .mv-area .bk-color {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
main section .mv-area .bk-slider-area {
  grid-column: 3/5;
  grid-row: 3/5;
  position: relative;
  display: flex;
}
@media screen and (max-width: 800px) {
  main section .mv-area .bk-slider-area {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
main section .mv-area .bk-slider-area .swiper {
  width: 100%;
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper {
  position: relative;
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a {
  display: block;
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a > div {
  display: grid;
  width: 100%;
  grid-template-columns: 100%;
  grid-template-rows: auto;
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a > div .swaiper-company-bk {
  grid-column: 1/2;
  grid-row: 2/3;
  background-color: white;
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a > div .swaiper-company-bk .bk-image-item {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  aspect-ratio: 1000/667;
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a > div .swiper-company-txtarea {
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  justify-content: end;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 40px 20px 40px;
  z-index: 15;
}
@media screen and (max-width: 800px) {
  main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a > div .swiper-company-txtarea {
    padding: 0 5% 20px 5%;
  }
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a > div .swiper-company-txtarea .swaiper-company-title {
  font-size: 48px;
  font-weight: bold;
  color: white;
  line-height: 1.2;
  z-index: 15;
}
@media screen and (max-width: 800px) {
  main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a > div .swiper-company-txtarea .swaiper-company-title {
    font-size: 26px;
  }
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a > div .swiper-company-txtarea .swaiper-company-txt {
  font-size: 26px;
  font-weight: bold;
  color: white;
  padding-top: 20px;
}
@media screen and (max-width: 800px) {
  main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a > div .swiper-company-txtarea .swaiper-company-txt {
    font-size: 18px;
    padding-top: 10px;
  }
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a .company-bk01 {
  background-image: url(../../images/main_1.jpg);
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a .company-bk02 {
  background-image: url(../../images/main_2.jpg);
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a .company-bk03 {
  background-image: url(../../images/main_3.jpg);
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a .company-bk04 {
  background-image: url(../../images/main_4.jpg);
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a .company-bk05 {
  background-image: url(../../images/main_5.jpg);
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a .company-bk06 {
  background-image: url(../../images/main_6.jpg);
}
main section .mv-area .bk-slider-area .swiper .swiper-wrapper .swiper-slide .swiper-item > a:hover > div .swaiper-company-bk .bk-image-item {
  opacity: 0.8;
}
main section .mv-area .bk-slider-area .index-swiper-under {
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
main section .mv-area .bk-slider-area .index-swiper-under .swiper-pagination {
  position: relative;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  bottom: 0 !important;
}
main section .mv-area .bk-slider-area .index-swiper-under .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: white;
  border: 1px solid #285ba4;
  margin: 0 6px !important;
  opacity: 1;
}
main section .mv-area .bk-slider-area .index-swiper-under .swiper-pagination-bullet-active {
  background-color: #285ba4;
  border: 2px solid #285ba4;
  opacity: 1;
}
main section .mv-area .mv-title-area {
  grid-column: 2/5;
  grid-row: 1/4;
  padding-top: 80px;
  z-index: 10;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  main section .mv-area .mv-title-area {
    grid-column: 1/3;
    grid-row: 1/2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 60px;
  }
}
main section .mv-area .mv-title-area .mv-title {
  max-width: 1171px;
  width: 90%;
  background-image: url(../../images/title.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1171/187;
}
main section .mv-area .mv-title-area .mv-txt {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.9;
  padding-top: 100px;
  padding-right: 63.0208333333%;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  main section .mv-area .mv-title-area .mv-txt {
    font-size: 16px;
    padding: 50px 5%;
  }
}
main section .nav-area {
  max-width: 1300px;
  width: 90%;
  margin: 120px auto 100px auto;
}
@media screen and (max-width: 800px) {
  main section .nav-area {
    margin: 100px auto;
  }
}
main section .nav-area ul.nav-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  main section .nav-area ul.nav-link {
    flex-direction: column;
  }
}
main section .nav-area ul.nav-link > li {
  width: calc((100% - 30px) / 3);
}
@media screen and (max-width: 800px) {
  main section .nav-area ul.nav-link > li {
    width: 100%;
    margin-bottom: 20px;
  }
}
main section .nav-area ul.nav-link > li > a .nav-item-box {
  width: 100%;
  height: 100%;
  border: 2px solid black;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
main section .nav-area ul.nav-link > li > a .nav-item-box .nav-txt {
  font-size: 16px;
  font-weight: bold;
  color: black;
  text-align: center;
  background-color: white;
  padding: 10px 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
@media screen and (max-width: 800px) {
  main section .nav-area ul.nav-link > li > a .nav-item-box .nav-txt {
    font-size: 14px;
  }
}
main section .nav-area ul.nav-link > li > a .nav-item-box .nav-arrow {
  border-top: 2px solid black;
  background-color: #eef3f7;
  padding: 2px 10px;
  box-sizing: border-box;
}
main section .nav-area ul.nav-link > li > a .nav-item-box .nav-arrow > p {
  font-size: 13px;
  color: black;
  text-align: center;
  transform: rotate(180deg);
}
main section .nav-area ul.nav-link > li > a:hover .nav-item-box {
  border: 2px solid #285ba4;
}
main section .nav-area ul.nav-link > li > a:hover .nav-txt {
  color: #285ba4;
}
main section .nav-area ul.nav-link > li > a:hover .nav-arrow {
  border-top: 2px solid #285ba4;
}
main section .nav-area ul.nav-link > li > a:hover .nav-arrow > p {
  color: #285ba4;
}
@media screen and (max-width: 800px) {
  main section .nav-area ul.nav-link > li:last-child {
    margin-bottom: 0;
  }
}
main section .main-contents {
  width: 93.75%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  main section .main-contents {
    width: 90%;
  }
}
main section .main-contents .contents-title {
  width: 100%;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  padding: 20px 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 800px) {
  main section .main-contents .contents-title {
    margin-bottom: 25px;
  }
}
main section .main-contents .contents-title h2.title {
  font-size: 26px;
  text-align: center;
}
main section .main-contents .contents-box {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  padding-top: 50px;
}
@media screen and (max-width: 800px) {
  main section .main-contents .contents-box {
    width: 90%;
    padding-top: 25px;
  }
}
main section .main-contents .contents-box h3.box-title {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 800px) {
  main section .main-contents .contents-box h3.box-title {
    font-size: 28px;
  }
}
main section .main-contents .contents-box .box-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 60px 0;
}
@media screen and (max-width: 800px) {
  main section .main-contents .contents-box .box-item {
    flex-direction: column;
    margin: 60px 0 20px 0;
  }
}
main section .main-contents .contents-box .box-item > div {
  width: 45%;
}
@media screen and (max-width: 800px) {
  main section .main-contents .contents-box .box-item > div {
    width: 100%;
  }
}
main section .main-contents .contents-box .box-item .photo-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 600/446;
}
@media screen and (max-width: 800px) {
  main section .main-contents .contents-box .box-item .txt-area {
    margin-top: 60px;
  }
}
main section .main-contents .contents-box .box-item .txt-area > div {
  border-top: 2px solid black;
  padding: 20px 0;
}
main section .main-contents .contents-box .box-item .txt-area > div .company-name {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 7px;
}
main section .main-contents .contents-box .box-item .txt-area > div .txt-bold {
  font-size: 14px;
  font-weight: bold;
}
main section .main-contents .contents-box .box-item .txt-area > div .rec-title {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 5px;
}
main section .main-contents .contents-box .box-item .txt-area > div .txt-normal {
  font-size: 14px;
}
main section .main-contents .contents-box .box-item .item-bk01 {
  background-image: url(../../images/p_1.jpg);
}
main section .main-contents .contents-box .box-item .item-bk02 {
  background-image: url(../../images/p_2.jpg);
}
main section .main-contents .contents-box .box-item .item-bk03 {
  background-image: url(../../images/p_3.jpg);
}
main section .main-contents .contents-box .box-item .item-bk04 {
  background-image: url(../../images/p_4.jpg);
}
main section .main-contents .contents-box .box-item .item-bk05 {
  background-image: url(../../images/p_5.jpg);
}
main section .main-contents .contents-box .box-item .item-bk06 {
  background-image: url(../../images/p_6.jpg);
}
main section .main-contents .box-link-area {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto 80px auto;
}
@media screen and (max-width: 800px) {
  main section .main-contents .box-link-area {
    width: 90%;
    margin: 0 auto 40px auto;
  }
}
main section .main-contents .box-link-area > a .box-link-btn-item {
  position: relative;
  width: 100%;
  border: 2px solid black;
  padding: 15px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
  color: black;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  main section .main-contents .box-link-area > a .box-link-btn-item {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  main section .main-contents .box-link-area > a .box-link-btn-item {
    font-size: 12px;
  }
}
@media screen and (max-width: 800px) {
  main section .main-contents .box-link-area > a .box-link-btn-item {
    font-size: 16px;
  }
}
main section .main-contents .box-link-area > a .box-link-btn-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 18px;
  background-image: url(../../images/link-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  main section .main-contents .box-link-area > a .box-link-btn-item::after {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 800px) {
  main section .main-contents .box-link-area > a .box-link-btn-item::after {
    width: 18px;
    height: 18px;
  }
}
main section .main-contents .box-link-area > a:hover .box-link-btn-item {
  border: 2px solid #285ba4;
  color: #285ba4;
}
main section .main-contents .box-link-area > a:hover .box-link-btn-item::after {
  background-image: url(../../images/link-icon-on.png);
}
main section .main-contents .step-area {
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
}
main section .main-contents .step-area .step-bk {
  grid-column: 1/2;
  grid-row: 1/2;
  background-image: url(../../images/bg_pc.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 800px) {
  main section .main-contents .step-area .step-bk {
    background-image: url(../../images/bg_sp.png);
    background-position: center center;
  }
}
main section .main-contents .step-area .step-contents {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  justify-content: center;
  align-items: center;
}
main section .main-contents .step-area .step-contents .step-contents-inner {
  max-width: 1300px;
  width: 90%;
  padding: 60px 0;
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 2px solid white;
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-title .title-icon {
  width: 58px;
  background-image: url(../../images/step-title-icon.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 58/67;
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-title .title-txt {
  font-size: 26px;
  font-weight: bold;
  color: white;
  padding: 0 70px 0 30px;
}
@media screen and (max-width: 800px) {
  main section .main-contents .step-area .step-contents .step-contents-inner .step-title .title-txt {
    padding: 0 20px 0 30px;
  }
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-txt {
  font-size: 30px;
  font-weight: bold;
  color: white;
  margin: 40px 0 90px 0;
}
@media screen and (max-width: 800px) {
  main section .main-contents .step-area .step-contents .step-contents-inner .step-txt {
    font-size: 26px;
  }
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart {
  width: 100%;
  display: grid;
  grid-template-columns: calc((100% - 120px) / 4) 40px calc((100% - 120px) / 4) 40px calc((100% - 150px) / 4) 40px calc((100% - 120px) / 4);
  grid-template-rows: 1fr;
}
@media screen and (max-width: 800px) {
  main section .main-contents .step-area .step-contents .step-contents-inner .step-chart {
    grid-template-columns: 100%;
    grid-row: auto 50px auto 50px auto 50px auto;
  }
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart > div:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart > div:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  main section .main-contents .step-area .step-contents .step-contents-inner .step-chart > div:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart > div:nth-child(3) {
  grid-column: 3/4;
  grid-row: 1/2;
}
@media screen and (max-width: 800px) {
  main section .main-contents .step-area .step-contents .step-contents-inner .step-chart > div:nth-child(3) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart > div:nth-child(4) {
  grid-column: 4/5;
  grid-row: 1/2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  main section .main-contents .step-area .step-contents .step-contents-inner .step-chart > div:nth-child(4) {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart > div:nth-child(5) {
  grid-column: 5/6;
  grid-row: 1/2;
}
@media screen and (max-width: 800px) {
  main section .main-contents .step-area .step-contents .step-contents-inner .step-chart > div:nth-child(5) {
    grid-column: 1/2;
    grid-row: 5/6;
  }
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart > div:nth-child(6) {
  grid-column: 6/7;
  grid-row: 1/2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  main section .main-contents .step-area .step-contents .step-contents-inner .step-chart > div:nth-child(6) {
    grid-column: 1/2;
    grid-row: 6/7;
  }
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart > div:nth-child(7) {
  grid-column: 7/8;
  grid-row: 1/2;
}
@media screen and (max-width: 800px) {
  main section .main-contents .step-area .step-contents .step-contents-inner .step-chart > div:nth-child(7) {
    grid-column: 1/2;
    grid-row: 7/8;
  }
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-box {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-box .step-img {
  max-width: 90px;
  width: 100%;
  padding: 0 5px;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 98/35;
  box-sizing: border-box;
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-box .step-icon {
  width: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  margin: 20px 0;
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-box .step-txtarea {
  font-size: 14px;
  font-weight: bold;
  text-align: justify;
  line-height: 1.4;
  padding: 0 20px 40px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-box .step-txtarea {
    font-size: 18px;
  }
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-box .step-img01 {
  background-image: url(../../images/step1.png);
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-box .step-img02 {
  background-image: url(../../images/step2.png);
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-box .step-img03 {
  background-image: url(../../images/step3.png);
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-box .step-img04 {
  background-image: url(../../images/step4.png);
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-box .step-icon01 {
  background-image: url(../../images/step-icon1.png);
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-box .step-icon02 {
  background-image: url(../../images/step-icon2.png);
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-box .step-icon03 {
  background-image: url(../../images/step-icon3.png);
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-box .step-icon04 {
  background-image: url(../../images/step-icon4.png);
}
main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-arrow {
  font-size: 18px;
  color: white;
  transform: rotate(90deg);
}
@media screen and (max-width: 800px) {
  main section .main-contents .step-area .step-contents .step-contents-inner .step-chart .step-arrow {
    transform: rotate(180deg);
    padding: 20px 0;
  }
}
main section .link-btn-area {
  width: 72.9166666667%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  main section .link-btn-area {
    width: 90%;
  }
}
main section .link-btn-area .link-title {
  font-size: 34px;
  text-align: center;
  margin: 60px 0;
}
main section .link-btn-area ul.link-btn-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  main section .link-btn-area ul.link-btn-box {
    flex-direction: column;
  }
}
main section .link-btn-area ul.link-btn-box > li {
  width: calc((100% - 30px) / 3);
}
@media screen and (max-width: 800px) {
  main section .link-btn-area ul.link-btn-box > li {
    width: 100%;
    margin-bottom: 20px;
  }
}
main section .link-btn-area ul.link-btn-box > li > a .btn-item {
  position: relative;
  width: 100%;
  border: 2px solid black;
  padding: 15px;
  box-sizing: border-box;
  font-size: 16px;
  color: black;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  main section .link-btn-area ul.link-btn-box > li > a .btn-item {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  main section .link-btn-area ul.link-btn-box > li > a .btn-item {
    font-size: 12px;
  }
}
@media screen and (max-width: 800px) {
  main section .link-btn-area ul.link-btn-box > li > a .btn-item {
    font-size: 16px;
  }
}
main section .link-btn-area ul.link-btn-box > li > a .btn-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 18px;
  background-image: url(../../images/link-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  main section .link-btn-area ul.link-btn-box > li > a .btn-item::after {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 800px) {
  main section .link-btn-area ul.link-btn-box > li > a .btn-item::after {
    width: 18px;
    height: 18px;
  }
}
main section .link-btn-area ul.link-btn-box > li > a:hover .btn-item {
  border: 2px solid #285ba4;
  color: #285ba4;
}
main section .link-btn-area ul.link-btn-box > li > a:hover .btn-item::after {
  background-image: url(../../images/link-icon-on.png);
}
@media screen and (max-width: 800px) {
  main section .link-btn-area ul.link-btn-box > li:last-child {
    margin-bottom: 0;
  }
}

footer {
  width: 100%;
  padding: 100px 0 10px 0;
}
footer address {
  font-size: 12px;
  text-align: center;
  font-style: normal;
}

.pc-only {
  display: block;
}
@media screen and (max-width: 800px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 800px) {
  .sp-only {
    display: block;
  }
}