@charset "UTF-8";

body,
div,
ul,
li,
form,
input,
button,
textarea,
p {
  margin: 0;
  padding: 0;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  color: #040000;
  font-weight: 400;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

a img {
  border-style: none;
}

img {
  vertical-align: bottom;
}

button {
  font-size: 1em;
  background-color: transparent;
  border: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

*:focus {
  outline: none;
}

button:hover {
  cursor: pointer;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-thumb {
  background: #A41E2E;
}

body::-webkit-scrollbar-track {
  background: #F1F8FF;
}

/*--------------------------------------------------------
サイト毎に変化のある定数
--------------------------------------------------------*/

.area_900 {
  width: 900px;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.area_1000 {
  width: 1000px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.area_1300 {
  width: 1300px;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}

.centerimg {
  margin-left: -450px;
}

.centerimg2 {
  margin-left: -400px;
}

.area_1800 {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.op0 {
  opacity: 0;
}

.t_center {
  text-align: center !important;
}

.m_auto {
  margin-left: auto;
  margin-right: auto;
}

.mt50p {
  margin-top: 50px;
}

.mt100p {
  margin-top: 100px;
}

.mt200p {
  margin-top: 200px;
}

.mb50p {
  margin-bottom: 50px;
}

.visible900 {
  display: none !important;
}

.visible1000 {
  display: none !important;
}

/* clearfix */
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/*重なりの優先度*/
.relative {
  position: relative;
}

.z1 {
  z-index: +1;
}

.z2 {
  z-index: +2;
}

.z3 {
  z-index: +3;
}

.z99 {
  z-index: +9999;
}

/*横幅*/

.w100 {
  width: 100%;
}

.w90 {
  width: 90%;
}

.w80 {
  width: 80%;
}

.w75 {
  width: 75%;
}

.w70 {
  width: 70%;
}

.w60 {
  width: 60%;
}

.w50 {
  width: 50%;
}

.inline_b {
  display: inline-block;
}

.justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

.pointer_evNone {
  pointer-events: none;
}

.pointer {
  cursor: pointer;
}

.flex {
  display: -webkit-box;
  /* Androidブラウザ用 */
  display: flex;
}

.flex-start {
  -webkit-box-pack: start;
  /* Androidブラウザ用 */
  justify-content: flex-start;
}

.flex-end {
  -webkit-box-pack: end;
  /* Androidブラウザ用 */
  justify-content: flex-end;
}

.flex-center {
  -webkit-box-pack: center;
  /* Androidブラウザ用 */
  justify-content: center;
}

.flex-space-between {
  -webkit-box-pack: justify;
  /* Androidブラウザ用 */
  justify-content: space-between;
}

.flex-space-evenly {
  -webkit-box-pack: justify;
  /* Androidブラウザ用 */
  justify-content: space-evenly;;
}

.flex-a-start {
  -webkit-box-align: start;
  /* Androidブラウザ用 */
  align-items: flex-start;
}

.flex-a-end {
  -webkit-box-align: end;
  /* Androidブラウザ用 */
  align-items: flex-end;
}

.flex-a-center {
  -webkit-box-align: center;
  /* Androidブラウザ用 */
  align-items: center;
}

.flex-a-baseline {
  -webkit-box-align: baseline;
  /* Androidブラウザ用 */
  align-items: baseline;
}

.flex-a-stretch {
  -webkit-box-align: stretch;
  /* Androidブラウザ用 */
  align-items: stretch;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

main,
article,
aside,
nav,
header,
footer,
img,
button,
picture,
picture source {
  display: block;
}

body {
  /*iphone用*/
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/*--------------------------------------------------------
定数 ※個別設定
--------------------------------------------------------*/

.red {
  color: #AD002D;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}


/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  background: #666;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  right: 30%;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  /*アニメーションの設定*/
  position: absolute;
}

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
  height: 2px;
  background: #fff;
  width: 62%;
  left: 10px;
}

.openbtn span:nth-of-type(1) {
  top: 13px;
}

.openbtn span:nth-of-type(2) {
  top: 19px;
  left: 11px;
  font-size: 0.6rem;
  text-transform: uppercase;
  color: #fff;
}

.openbtn span:nth-of-type(3) {
  top: 36px;
}

/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.openbtn.active {
  position: fixed;
  z-index: 9999;
  top: 25px;
  right: 2%;
}

.more {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more li {
  font-size: 40px;
  display: block;
  border: 0;
  text-align: center;
  padding: 1vh;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: white;
  text-align: center;
}

.none {
  display: none;
}

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
footer {
  color: #fff;
  background-color: #000;
  padding: 30px 10% 30px 0;
}

.copyright {
  font-size: 16px;
  padding: 10px 0;
  text-decoration: none;
  text-align: right;
}

@media screen and (max-width: 900px) {
  footer {
    padding: 30px 5% 30px 0;
  }

  .copyright {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .copyright {
    font-size: 13px;
  }
}

@media screen and (max-width: 450px) {
  .copyright {
    font-size: 12px;
  }
}

/*--------------------------------------------------------
各種レイアウト
--------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #000;
  z-index: 99;
}

header>div {
  max-width: 1300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.top_space {
  margin-top: 80px;
}

.navi_txt {
  font-size: 23px;
  color: #fff;
  font-family: 'Didact Gothic', sans-serif;
  display: inline-block;
}

header .flex {
  align-items: center;
  justify-content: space-evenly;
}

.fv_txt {
  position: absolute;
  top: 13%;
  left: 0%;
}

.news_txt {
  font-size: 20px;
  line-height: 2;
  margin-top: 60px;
  margin-left: 20px;
}

.didact {
  font-family: 'Didact Gothic', sans-serif;
}

.light {
  font-weight: 300;
}

.semi {
  font-weight: 600;
}


.black_area {
  background-color: #000;
  padding: 30px 0;
}

.black_area2 {
  background-color: #000;
  padding: 100px 0px;
}

@-webkit-keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }

  to {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}


@keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }

  to {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}


@-webkit-keyframes text-revealer {

  0%,
  50% {
    transform-origin: 0 50%;
  }

  60%,
  100% {
    transform-origin: 100% 50%;
  }


  60% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}


@keyframes text-revealer {

  0%,
  50% {
    transform-origin: 0 50%;
  }

  60%,
  100% {
    transform-origin: 100% 50%;
  }


  60% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}


.title,
.title2 {
  font-size: 60px;
  display: inline-block;
}

.reveal_a,
.reveal_a::after {
  -webkit-animation-delay: var(--animation-delay, 1.5s);
  animation-delay: var(--animation-delay, 1.5s);
  -webkit-animation-iteration-count: var(--iterations, 1);
  animation-iteration-count: var(--iterations, 1);
  -webkit-animation-duration: var(--duration, 800ms);
  animation-duration: var(--duration, 800ms);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reveal_a {
  --animation-delay: var(--delay, 1.5s);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  -webkit-animation-name: clip-text;
  animation-name: clip-text;
  white-space: nowrap;
  cursor: default
}

.reveal_b,
.reveal_b::after {
  -webkit-animation-delay: var(--animation-delay, 3s);
  animation-delay: var(--animation-delay, 3s);
  -webkit-animation-iteration-count: var(--iterations, 1);
  animation-iteration-count: var(--iterations, 1);
  -webkit-animation-duration: var(--duration, 800ms);
  animation-duration: var(--duration, 800ms);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reveal_b {
  --animation-delay: var(--delay, 3s);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  -webkit-animation-name: clip-text;
  animation-name: clip-text;
  white-space: nowrap;
  cursor: default
}

.reveal_c,
.reveal_c::after {
  -webkit-animation-delay: var(--animation-delay, 4.5s);
  animation-delay: var(--animation-delay, 4s);
  -webkit-animation-iteration-count: var(--iterations, 1);
  animation-iteration-count: var(--iterations, 1);
  -webkit-animation-duration: var(--duration, 800ms);
  animation-duration: var(--duration, 800ms);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reveal_c {
  --animation-delay: var(--delay, 4.5s);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  -webkit-animation-name: clip-text;
  animation-name: clip-text;
  white-space: nowrap;
  cursor: default
}

.reveal_d,
.reveal_d::after {
  -webkit-animation-delay: var(--animation-delay, 1s);
  animation-delay: var(--animation-delay, 1s);
  -webkit-animation-iteration-count: var(--iterations, 1);
  animation-iteration-count: var(--iterations, 1);
  -webkit-animation-duration: var(--duration, 800ms);
  animation-duration: var(--duration, 800ms);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reveal_d {
  --animation-delay: var(--delay, 1s);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  -webkit-animation-name: clip-text;
  animation-name: clip-text;
  white-space: nowrap;
  cursor: default
}

.reveal_a::after,
.reveal_b::after,
.reveal_b1::after,
.reveal_b2::after,
.reveal_c::after,
.reveal_d::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  -webkit-animation-name: text-revealer;
  animation-name: text-revealer;
}


.backline,
.backline.act::after {
  -webkit-animation-delay: var(--animation-delay, 2s);
  animation-delay: var(--animation-delay, 2s);
  -webkit-animation-iteration-count: var(--iterations, 1);
  animation-iteration-count: var(--iterations, 1);
  -webkit-animation-duration: var(--duration, 800ms);
  animation-duration: var(--duration, 800ms);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.backline.act {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  -webkit-animation-name: clip-text;
  animation-name: clip-text;
  white-space: nowrap;
  cursor: default
}

.backline.act::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  -webkit-animation-name: text-revealer;
  animation-name: text-revealer;
}

.title2.backline.act::after {
  background-color: #000;
}

.news {
  margin-bottom: 100px;
}

.pop_bt_area {
  text-align: right;
}

.pop_bt_txt {
  display: inline-block;
  color: #333;
  font-size: 20px;
  text-decoration: none;
  position: relative;
  transition: .3s;
  cursor: pointer;
}

.pop_bt_txt::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #333;
  transition: .3s;
}

.pop_bt_txt::before {
  position: absolute;
  bottom: 8px;
  right: -25px;
  content: '';
  width: 0;
  height: 1px;
  background-color: #333;
  transition: .3s;
  transform: rotate(44deg);
}

.pop_bt_txt:hover::after {
  width: 109%;
}

.pop_bt_txt:hover::before {
  width: 22px;
}

.sub_title {
  position: absolute;
  top: 25%;
  left: 2%;
  font-size: 55px;
  color: #fff;
}

.sub_title2 {
  position: absolute;
  top: 60%;
  left: 0%;
  font-size: 30px;
  color: #fff;
}

.border_l {
  border-left: 10px solid #A41E2E;
  position: absolute;
  top: 28%;
  left: 0%;
  height: 135px;
}

.view_txt {
  display: inline-block;
  font-size: 50px;
  color: #fff;
  text-decoration: none;
  position: absolute;
  top: 50%;
  left: 0%;
  transition: .3s;
  cursor: pointer;
}

.view_txt2 {
  display: inline-block;
  font-size: 50px;
  color: #fff;
  text-decoration: none;
  position: absolute;
  top: 58%;
  left: 0%;
  transition: .3s;
  cursor: pointer;
}

.view_txt3 {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: #fff;
  text-decoration: none;
  transition: .3s;
  cursor: pointer;
}

.view_txt::after,
.view_txt2::after,
.view_txt3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: .3s;
}

.view_txt::before,
.view_txt2::before {
  position: absolute;
  bottom: 14px;
  right: -41px;
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: .3s;
  transform: rotate(44deg);
}

.view_txt3::before {
  position: absolute;
  bottom: 9px;
  right: -35px;
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: .3s;
  transform: rotate(44deg);
}

.view_txt:hover::after,
.view_txt2:hover::after {
  width: 116%;
}

.view_txt3:hover::after {
  width: 128%;
}

.view_txt:hover::before,
.view_txt2:hover::before {
  width: 40px;
}

.view_txt3:hover::before {
  width: 25px;
}

.white_area {
  background-color: #fff;
  padding: 100px 0;
}

.service_area .title {
  color: #000;
}

.service_area .title::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  -webkit-animation-name: text-revealer;
  animation-name: text-revealer;
}

.sub_txt {
  color: #333;
  font-size: 18px;
}

.sub_txt2 {
  position: absolute;
  top: 50%;
  left: 0%;
  color: #fff;
  font-size: 18px;
}

.profile_area {
  margin-top: 100px;
  font-size: 18px;
  color: #fff;
}

.profile_area>div {
  width: 50%;
}

.profile_area.flex {
  justify-content: center;
}

.ac_txt {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #000;
  text-align: center;
}

.tltw_013 {
  margin-top: -5px;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(400px);
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(400px);
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(400px);
  transform: translateY(400px);
}

.fade.view {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  opacity: 1;
}

.animated2 {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fade2 {
  opacity: 0;
  -webkit-transform: translateY(400px);
  transform: translateY(400px);
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*--------------------------------------------------------
下層ページ用
--------------------------------------------------------*/

.un_fv_txt {
  position: absolute;
  top: 22%;
  left: 8%;
}

.un_title {
  font-size: 85px;
  margin-left: 15px;
}

.un_border_l {
  border-left: 10px solid #A41E2E;
  position: absolute;
  top: 24%;
  left: 0%;
  height: 75px;
}

.un_sub_title {
  font-size: 30px;
  color: #fff;
}

.un_hr {
  width: 245px;
  border: 2px solid #A41E2E;
  margin-top: 30px;
  margin-bottom: 0;
}

.un_txt {
  font-size: 16px;
  width: 85%;
  margin-top: 30px;
}

.back_smork {
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 50px;
  padding-bottom: 50px;
}

.concept_img2 {
  margin-left: auto;
}

.modoru {
  font-size: 18px;
  color: #A41E2E;
  border-bottom: 1px solid #A41E2E;
  display: inline;
}

.txt_area {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px;
  text-align: justify;
  width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -150px;
  position: relative;
  z-index: 2;
}

.tltw_ks04c {
  margin-top: -150px;
}

.un_txt2 {
  font-size: 18px;
}

.un_black_area {
  background-color: #000;
  padding: 30px 0;
}

.un_fv_txt2 {
  position: absolute;
  top: 30%;
  left: 8%;
}

.un_title2 {
  font-size: 50px;
  margin-left: 15px;
}

.un_border_l2 {
  border-left: 10px solid #A41E2E;
  position: absolute;
  top: 11%;
  left: 0%;
  height: 120px;
}

.un_txt3 {
  position: absolute;
  top: 50%;
  left: 8%;
  font-size: 16px;
  width: 85%;
  margin-top: 50px;
}

.un_sub_title2 {
  font-size: 29px;
  color: #fff;
}

.un_txt4 {
  font-size: 16px;
  width: 94%;
  margin-top: 30px;
  text-align: justify;
}

.bu_area {
  display: flex;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.bu_txt1 {
  font-size: 25px;
  display: flex;
  align-items: center;
}

.bu_txt1::after {
  background-color: #A41E2E;
  border-radius: 5px;
  content: "";
  flex-grow: 1;
  height: 1px;
  margin-left: 10px;
}

.bu_txt2 {
  font-size: 16px;
}

.bu_img img {
  width: 100%;
}

#under_page2 .un_black_area .flex>div:nth-of-type(1) {
  width: 60%;
}

#under_page2 .un_black_area .flex>div:nth-of-type(2) {
  width: 40%;
}

.white_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.un_border_l3 {
  border-left: 10px solid #A41E2E;
  height: 46.5px;
}

.white_box p:nth-of-type(2) {
  font-size: 25px;
  background-color: #fff;
  color: #000;
  padding: 0.5% 2%;
  width: 100%;
}

.white_box2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

.white_box2 .qa {
  font-size: 22px;
  background-color: #fff;
  color: #000;
  padding: 0.5% 2%;
  margin-left: auto;
  width: 100%;
}

.un_border_l4 {
  border-left: 10px solid #A41E2E;
  height: 42px;
  opacity: 0;
}

.un_sub_title3 {
  font-size: 30px;
    color: #fff;
}

.un_hr2 {
  width: 100%;
  border: 2px solid #A41E2E;
  margin-top: 30px;
}

.inline {
  display: inline-block;
}


.hissu {
  font-size: 14px;
  color: #A41E2E;
}

.un_txt5 {
  font-size: 18px;
  margin-top: 30px;
  text-align: justify;
}

.un_black_area2 {
  background-color: #000;
  padding: 30px 0 0 0;
}

#under_page3 footer {
  padding: 0 10% 30px 0;
  margin-top: -45px;
}
/*--------------------------------------------------------
アコーディオン部分
--------------------------------------------------------*/

.white_box2 dl {
  position: relative;
  cursor: pointer;
  margin: 0;
}

.white_box2 dd {
  margin-left: 0;
}

.c-faq__icon {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
}

.c-faq__icon>span {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.qa.open .c-faq__icon>span {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}


/*--------------------------------------------------------
フォーム 
--------------------------------------------------------*/
.f_title {
  width: 350px;
  font-size: 1.6em;
  color: #fff;
}

input::placeholder {
  color: #808080;
}

/* IE11 & IE10 */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #808080;
}

/* Edge */
input::-ms-input-placeholder {
  color: #808080;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  border: none;
  font-size: 1.3em;
  padding: 0.3em 0.6em;
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

.field {
  width: 60%;
}

button {
  background-color: transparent;
  border: none;
  backface-visibility: hidden;
  cursor: pointer;
  font-size: 1em;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
section:focus,
main:focus,
article:focus,
nav:focus,
header:focus,
footer:focus,
div:focus,
a:focus {
  outline: none;
}

button:hover {
  cursor: pointer;
}

.form input:focus {
  outline: none;
  /* フォーカス時のアウトラインを消す */
}

.err_msg {
  font-size: 1.2em;
  color: #A41E2E;
  margin-bottom: 20px;
  text-align: right;
  margin-left: auto;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
}

textarea {
  width: 100%;
  min-height: 7em;
  max-height: 15em;
  resize: vertical;
  padding: 0.3em 0.6em;
  font-size: 1.3em;
  font-family: 'Noto Sans JP', sans-serif;
}


/*News*/
.fa-greater-than:before {
  vertical-align: middle;
  font-size: 11px;
}

.pop_op_btn {
  font-size: 20px;
}

.news_list {
  display: flex;
  flex-wrap: wrap;
  color: #808080;
  font-size: 18px;
}

.news_list>div {
  width: 46%;
  padding-bottom: 5%;
}

.news_list>div:nth-child(2n) {
  margin-left: 8%;
}

.news_list:not(.full)>div:nth-child(n + 5) {
  display: none;
}

.news_list>div>div:last-child {
  white-space: pre-wrap;
}

.overlay_news {
  display: none;
  z-index: 99999;
  position: fixed;
  top: -10px;
  left: 0;
  right: 0;
  bottom: -10px;
  background-color: rgba(89, 87, 87, 0.8);
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.overlay_news .more_news {
  width: 90%;
  max-width: 1300px;
  box-shadow: 10px 10px 25px #000;
  -webkit-box-shadow: 10px 10px 25px #000;
  -moz-box-shadow: 10px 10px 25px #000;
  -o-box-shadow: 10px 10px 25px #000;
  -ms-box-shadow: 10px 10px 25px #000;
  -webkit-transition: margin 1s ease;
  -moz-transition: margin 1s ease;
  -ms-transition: margin 1s ease;
  -o-transition: margin 1s ease;
  transition: margin 1s ease;
  background-color: #fff;
  margin-top: 20%;
  margin-bottom: 10%;
  margin-left: auto;
  margin-right: auto;
}

.overlay_news .more_news::after {
  display: table;
  content: "";
  clear: both;
}

.overlay_news .more_news>p {
  line-height: 1.7;
}

#pop_news .pop_news_main {
  padding: 3%;
}

.pager_link.selected {
  color: #AD002D;
}

.close_btn {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: -40px;
  color: #fff;
}

.popup_pager {
  text-align: center;
}

.pager_link {
  font-size: 0.9rem;
  margin: 0 0.2rem;
}

.popup_pager>a {
  color: #808080;
  padding: 0.5%;
}

.popup_pager>a:nth-of-type(1) {
  border: none;
  color: #AD002D;
}

.popup_pager>a:nth-last-of-type(1) {
  border: none;
  color: #AD002D;
}

.arrow_pager_l {
  margin-right: 1%;
}

.arrow_pager_r {
  margin-left: 1%;
}

.fa-xmark:before {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  font-size: 30px;
}

/*リキャプチャ*/
.grecaptcha-badge {
  z-index: 9999 !important;
  bottom: 40px !important;
}