@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
main * {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}

main a {
  transition: opacity 0.3s ease-out;
}
main a:hover {
  opacity: 0.7;
}
main img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
}

.sp-on {
  display: none;
}

.sp-off {
  display: block;
}

.pagetop {
  padding: 0 7px;
  font-size: 87.5%;
  text-align: right;
}

.banner a img,
.hover a img {
  background: none !important;
}

.banner a:hover img,
.hover a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
  background: none !important;
}

noscript {
  margin: 0 auto;
  text-align: center;
}

noscript p {
  font-size: 1em !important;
}

span.arr {
  display: inline;
  line-height: 1.5;
  font-size: inherit;
  margin: 0;
  padding: 0 0 0 10px;
  background: transparent url("../images/arr_gray.gif") no-repeat scroll 0px 0.2em;
}

a[href$=".pdf"] {
  padding: 5px 28px 5px 0px;
  margin-top: 10px;
  background: transparent url(../images/pdf.png) no-repeat center right;
}

a[href$=".xls"], a[href$=".xlsx"] {
  padding: 5px 25px 5px 0px;
  margin-top: 10px;
  background: transparent url(../images/excel.png) no-repeat center right;
}

a[href$=".doc"], a[href$=".docx"] {
  padding: 5px 25px 5px 0px;
  margin-top: 10px;
  background: transparent url(../images/doc.png) no-repeat center right;
}

a[href$=".ppt"] {
  padding: 5px 25px 5px 0px;
  margin-top: 10px;
  background: transparent url(../images/ppt.png) no-repeat center right;
}

#footer {
  width: 100%;
  margin: 40px 0 1px 0;
  background: #4D4948;
}

#footer-inner {
  width: 980px;
  margin: 0 auto;
}

#footer ul {
  float: left;
  margin-right: 10px;
}

#footer ul li {
  float: left;
  line-height: 105px;
  padding: 0 12px;
  margin: 0 5.5px;
  background: url(../images/foot-arrow.gif) no-repeat center left;
}

#footer img {
  float: left;
  padding-top: 29px;
  margin: 0 10px;
}

#footer ul li a {
  color: #FFF;
  font-size: 81.25%;
}

@media screen and (max-width: 767px) {
  .sp-on {
    display: block;
  }

  .sp-off {
    display: none;
  }
}
/*-----------------------------------------
リニューアル
-------------------------------------------*/
@media (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .inner--sp20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .inner--sp40 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 768px) {
  .inner-1200 {
    width: 1200px;
    max-width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
  }
}

#main-contents {
  position: relative;
}
@media (max-width: 767px) {
  #main-contents {
    padding-top: 50px;
  }
}
@media (min-width: 768px) {
  #main-contents {
    padding-top: 100px;
  }
}
#main-contents .btn--arrow-white {
  width: 100%;
  height: 50px;
  border: solid 1px white;
  color: white;
  background: url(../images/icon/ico-arrow.svg) no-repeat right 20px center;
  border-radius: 10px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  #main-contents .btn--arrow-white {
    width: min((240 / 1366) * 100vw, 240px);
  }
}
#main-contents .btn--arrow-white span {
  position: relative;
}
#main-contents .btn--arrow-white:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 100%;
  background: white;
  transition: width 150ms ease-in-out;
}
#main-contents .btn--arrow-white:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url(../images/icon/ico-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
#main-contents .btn--arrow-white:hover {
  color: black;
  opacity: 1;
}
#main-contents .btn--arrow-white:hover:before {
  width: 110%;
}
#main-contents .btn--arrow-white:hover:after {
  background: url(../images/icon/ico-arrow-black.svg) no-repeat;
  background-size: contain;
}

.site-nav {
  background: #DC000B;
  z-index: 100;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .site-nav {
    height: 50px;
  }
  .site-nav.fix .site-nav__content__list {
    height: calc(100dvh - 50px);
  }
}
@media (min-width: 768px) {
  .site-nav {
    width: 100%;
    height: 100px;
  }
}
.site-nav.fix {
  position: fixed;
}
.site-nav .site-nav__content {
  height: 100%;
}
@media (max-width: 767px) {
  .site-nav .site-nav__content {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .site-nav .site-nav__content {
    width: 1590px;
    max-width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 44fr 115fr;
  }
}
@media (min-width: 768px) and (max-width: 1500px) {
  .site-nav .site-nav__content {
    grid-template-columns: 34fr 115fr;
  }
}
.site-nav .site-nav__content__logo a {
  display: block;
}
.site-nav .site-nav__content__logo a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .site-nav .site-nav__content__logo {
    width: 102px;
  }
}
@media (min-width: 768px) {
  .site-nav .site-nav__content__logo {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav .site-nav__content__logo a {
    width: 45%;
  }
}
@media (min-width: 768px) {
  .site-nav .site-nav__content__right {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6.0377358491%;
  }
}
@media (max-width: 767px) {
  .site-nav .site-nav__content__list {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    z-index: 100;
    width: 100%;
    background: #DC000B;
    border-top: solid 1px white;
    height: calc(100dvh - 100px);
  }
  .site-nav .site-nav__content__list--show {
    width: 24px;
    height: 24px;
    background: url(../images/icon/ico-menu.svg) no-repeat center center;
    background-size: contain;
  }
  .site-nav .site-nav__content__list--show:hover {
    opacity: 1;
  }
  .site-nav .site-nav__content__list--show.on {
    background: url(../images/icon/ico-close.svg) no-repeat center center;
    background-size: contain;
  }
  .site-nav .site-nav__content__list > li:not(:last-child) {
    border-bottom: solid 1px white;
  }
  .site-nav .site-nav__content__list > li > a {
    height: 90px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 0.625rem;
  }
  .site-nav .site-nav__content__list > li > a:after {
    content: "";
    display: block;
    width: 12px;
    height: 22px;
    background: url(../images/icon/ico-arrow.svg) no-repeat right center;
    background-size: contain;
  }
  .site-nav .site-nav__content__list__child {
    padding: 0 25px 25px;
  }
  .site-nav .site-nav__content__list__child li:not(:last-child) {
    margin-bottom: 16px;
  }
  .site-nav .site-nav__content__list__child a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    width: fit-content;
  }
  .site-nav .site-nav__content__list__child a:before {
    content: "";
    display: block;
    width: 8px;
    height: 10px;
    background: url(../images/icon/ico-arrow-bold.svg) no-repeat center center;
    background-size: contain;
    margin-right: 8px;
  }
}
@media (min-width: 768px) {
  .site-nav .site-nav__content__list {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    text-align: center;
    font-size: 0.875rem;
    gap: min((67 / 1366) * 100vw, 67px);
  }
}
@media (min-width: 768px) and (max-width: 1365px) {
  .site-nav .site-nav__content__list {
    font-size: 1.0248901903vw;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-nav .site-nav__content__list {
    gap: 2.6041666667vw;
  }
}
@media (min-width: 768px) {
  .site-nav .site-nav__content__list .have-child {
    position: relative;
  }
}
@media (min-width: 768px) {
  .site-nav .site-nav__content__list > li > a {
    height: 100px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    /*
    					&:hover
    					{
    						color: #FDD000;
    						opacity: 1;
    					}	
    */
  }
}
@media (min-width: 768px) {
  .site-nav .site-nav__content__list__child {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    background: #930100;
    width: 100%;
    text-align: left;
    padding: 25px;
    font-weight: bold;
    min-width: 240px;
  }
  .site-nav .site-nav__content__list__child li:not(:last-child) {
    margin-bottom: 24px;
  }
  .site-nav .site-nav__content__list__child a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    width: fit-content;
    /*
    						&:hover
    						{
    							color: #FDD000;
    							opacity: 1;
    							&:before
    							{
    								background: url(../images/icon/ico-arrow-bold-yellow.svg) no-repeat center center;
    								background-size: contain;
    							}
    						}
    */
  }
  .site-nav .site-nav__content__list__child a:before {
    content: "";
    display: block;
    width: 8px;
    height: 10px;
    background: url(../images/icon/ico-arrow-bold.svg) no-repeat center center;
    background-size: contain;
    margin-right: 8px;
  }
  .site-nav .site-nav__content__list__child--contact {
    right: max(-96px, (50 / 1366) * 100vw * (-1));
    left: auto;
  }
}
@media (min-width: 768px) and (max-width: 1365px) {
  .site-nav .site-nav__content__list__child--contact {
    transform: translate(0%, 100%);
  }
}
@media (min-width: 768px) {
  .site-nav .site-nav__content__list .have-child:hover .site-nav__content__list__child {
    display: block;
  }
}
.site-nav .site-nav__content__list a {
  color: white;
  text-decoration: none;
}
.site-nav .site-nav__content__list__span__en {
  font-weight: bold;
  font-size: 1.1875rem;
}
@media (min-width: 768px) {
  .site-nav .site-nav__content__list__span__en {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) and (max-width: 1365px) {
  .site-nav .site-nav__content__list__span__en {
    font-size: 1.4641288433vw;
  }
}

.site-bottom-nav {
  background: #DC000B;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
.site-bottom-nav__list {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  gap: 67px;
  text-align: center;
  font-size: min((14 / 1024) * 100vw, (14 / 16) * 1rem);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-bottom-nav__list {
    gap: 6.54296875vw;
  }
}
.site-bottom-nav__list a {
  color: white;
  text-decoration: none;
}
.site-bottom-nav__list__span__en {
  font-size: min((20 / 1024) * 100vw, (20 / 16) * 1rem);
  font-weight: bold;
  margin-bottom: 7px;
}

.falcons-section {
  background: #E60001;
  position: relative;
  padding: 60px 0 75px;
  color: white;
  text-align: center;
}
@media (min-width: 768px) {
  .falcons-section {
    padding: 110px 0;
  }
}
.falcons-section:before {
  content: "";
  display: block;
  background: url(../images/txt-logo-red.svg) no-repeat top 54px center;
  background-size: contain;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .falcons-section:before {
    background: url(../images/txt-logo-red.svg) no-repeat center center;
    background-size: contain;
  }
}
.falcons-section__content {
  position: relative;
}
.falcons-section__ttl {
  font-size: 1.75rem;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .falcons-section__ttl {
    font-size: 2.125rem;
  }
}
.falcons-section__txt {
  line-height: 2;
  font-size: 1rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .falcons-section__txt {
    font-size: 1.25rem;
  }
}

.section__ttl {
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section__ttl {
    font-size: 2.375rem;
    margin-left: 50px;
  }
}
.section__ttl:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  transform: translateX(-100%);
}
@media (max-width: 767px) {
  .section__ttl:before {
    width: 22px;
    left: -8px;
    border-bottom: solid 3px #E60100;
  }
}
@media (min-width: 768px) {
  .section__ttl:before {
    width: 12px;
    left: -10px;
    border-bottom: solid 4px #E60100;
  }
}
.section__ttl--center {
  text-align: center;
}
.section__ttl--center:before {
  content: none;
}
.section__ttl--center:after {
  content: "";
  display: block;
  border-bottom: solid 3px #E60100;
  margin: auto;
  margin-top: 18px;
  width: 70px;
}
@media (min-width: 768px) {
  .section__ttl--center:after {
    width: 80px;
    margin-top: 28px;
    border-bottom: solid 4px #E60100;
  }
}
.section__ttl small {
  font-weight: normal;
  font-size: 0.8125rem;
  line-height: 1;
  margin-top: 3px;
}
@media (min-width: 768px) {
  .section__ttl small {
    font-size: 1rem;
  }
}
.section__txt {
  line-height: 2.375;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section__txt {
    font-size: 0.875rem;
  }
}
.section .section__more {
  width: 100%;
  height: 50px;
  border: solid 1px #000000;
  border-radius: 10px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .section .section__more {
    width: 240px;
  }
}
.section .section__more--white {
  color: white;
  border-color: white;
  position: relative;
  overflow: hidden;
}
.section .section__more--white span {
  position: relative;
}
.section .section__more--white:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 100%;
  background: white;
  transition: width 150ms ease-in-out;
}
.section .section__more--white:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url(../images/icon/ico-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.section .section__more--white:hover {
  color: black;
  opacity: 1;
}
.section .section__more--white:hover:before {
  width: 110%;
}
.section .section__more--white:hover:after {
  background: url(../images/icon/ico-arrow-black.svg) no-repeat;
  background-size: contain;
}

.gray-section {
  background: #E2E2E2;
  padding: 40px 0 80px;
}
@media (min-width: 768px) {
  .gray-section {
    padding: 100px 0;
  }
}

.pagetop {
  position: relative;
  top: -10px;
}
@media (min-width: 768px) {
  .pagetop {
    top: -28px;
  }
}
.pagetop a {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 10;
}
@media (min-width: 768px) {
  .pagetop a {
    right: 28px;
  }
}

.pagetop a.fix {
  position: fixed;
  right: 10px;
}
@media (min-width: 768px) {
  .pagetop a.fix {
    right: 28px;
  }
}

@media screen and (min-width: 768px) {
  .pcbr {
    display: block;
  }

  .spbr {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pcbr {
    display: none;
  }

  .spbr {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .tabpcbr {
    display: block;
  }

  .tabspbr {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .tabpcbr {
    display: none;
  }

  .tabspbr {
    display: block;
  }
}
