@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
/* ------------------------------
    mixin
------------------------------ */
/* ------------------------------
    reset
------------------------------ */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 6.4102564103px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.2820512821vw;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

a {
  color: #261d1d;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a {
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}

img, object, picture, svg {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* ------------------------------
    base
------------------------------ */
html, body {
  min-height: 100vh;
}

body {
  background: #fff;
  color: #261d1d;
  font-size: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
}

section {
  position: relative;
}

main {
  flex: 1 1 auto;
  padding-top: 60px;
}

.wrap {
  width: 90%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .wrap {
    width: 100%;
    padding: 0 5rem;
  }
}

p, th, td, dt, dd, li, input, button, textarea {
  font-size: 2.4rem;
  line-height: 1.8;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.bold, strong {
  font-weight: bold;
}

.en {
  font-family: "Plus Jakarta Sans", sans-serif;
}

@media screen and (min-width: 768px) {
  html {
    background: #e6e6e6 url("../img/bg_pc@2x.png") no-repeat center top/1800px auto;
    background-attachment: fixed;
  }
  body {
    width: 500px;
    margin: 0 auto;
  }
  .fade {
    transition: opacity 0.3s ease;
  }
  .fade:hover {
    opacity: 0.8;
    cursor: pointer;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  input, textarea, select, .select {
    font-size: max(1.6rem, 16px) !important;
  }
  .is-fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
/* ------------------------------
    header
------------------------------ */
#header,
#header .wrap,
#header .logo_wrap {
  width: 100%;
  height: 60px;
}
@media screen and (min-width: 768px) {
  #header,
  #header .wrap,
  #header .logo_wrap {
    width: 500px;
  }
}

#header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  #header {
    left: 50%;
    translate: -50% 0;
  }
}
#header .wrap {
  padding: 0;
  display: block;
  position: relative;
  min-width: inherit;
}
#header .logo_wrap {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  z-index: 999;
  padding: 0;
}
#header .logo_wrap .logo {
  padding-left: 15px;
}
#header .logo_wrap .logo img {
  width: 70px;
  height: auto;
}
#header .logo_wrap .career {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  font-size: 18px;
  font-weight: 500;
}
#header .menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 70px;
  height: 60px;
  z-index: 1000;
}
#header .menu-trigger .ico {
  width: 35px;
  height: 25px;
  position: relative;
}
#header .menu-trigger .ico span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #004abf;
}
#header .menu-trigger .ico span:nth-of-type(1) {
  top: 15%;
}
#header .menu-trigger .ico span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
#header .menu-trigger .ico span:nth-of-type(3) {
  bottom: 15%;
}
#header #header_nav {
  background: #f4f3f3;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  height: 100dvh;
  height: 100vh;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.3s, opacity 1s;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  #header #header_nav {
    width: 500px;
    left: 50%;
    translate: -50% 0;
  }
}
#header #header_nav .nav-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 60px;
}
#header #header_nav .nav-logo-wrap .nav-logo {
  width: 44rem;
  margin: 0 auto;
}
#header #header_nav .inner {
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 2rem 5rem 19rem;
}
@media screen and (min-width: 768px) {
  #header #header_nav .inner {
    padding: 2rem 5rem 10rem;
  }
}
#header #header_nav .inner .narrow_down {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #header #header_nav .inner .narrow_down {
    padding: 0;
  }
}
#header #header_nav .inner .bnr-wrap {
  margin-top: 5rem;
  padding: 0 4.5rem;
}
#header #header_nav .inner .btn_wrap {
  margin: 5rem 0 5rem;
}
#header #header_nav .inner .sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7rem;
}
#header #header_nav .inner .sns .item a {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header #header_nav .inner .sns .item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#header.is-open .menu-trigger .ico span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
}
#header.is-open .menu-trigger .ico span:nth-of-type(2) {
  opacity: 0;
}
#header.is-open .menu-trigger .ico span:nth-of-type(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(25deg);
}
#header.is-open #header_nav {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s, opacity 0s;
}

/* ------------------------------
    footer
------------------------------ */
#footer {
  padding: 8rem 0;
  text-align: center;
  background: #004abf;
}
#footer .logo img {
  width: 32.5rem;
}
#footer .sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7rem;
  margin: 5.6rem 0 8rem 0;
}
#footer .sns .item a {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .sns .item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#footer .copy {
  margin-top: 8rem;
  font-size: 2.1rem;
  font-weight: 600;
  color: #FFF;
}
#floating_nav + #footer {
  padding-bottom: 15rem;
}
#footer .btn {
  margin-top: 7rem;
}

#floating_nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 15rem;
  z-index: 900;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
#floating_nav.is-show {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  #floating_nav {
    width: 500px;
  }
}
#floating_nav .inner {
  padding: 2rem 2.7rem;
  width: 100%;
}
#floating_nav .inner .btn a {
  width: 100%;
  height: 9.6rem;
  font-size: 3.2rem;
  font-weight: 600;
  padding-right: 1em;
}

/* ------------------------------
    main
------------------------------ */
.btn_arrow {
  text-align: center;
}
.btn_arrow a, .btn_arrow p, .btn_arrow button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 58rem;
  height: 12rem;
  background: #ffe600;
  color: #261d1d;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .btn_arrow a, .btn_arrow p, .btn_arrow button {
    transition: background 0.3s ease;
  }
  .btn_arrow a:hover, .btn_arrow p:hover, .btn_arrow button:hover {
    opacity: 1;
    background: #f9dd00;
  }
}
.btn_arrow a::before, .btn_arrow p::before, .btn_arrow button::before {
  content: "";
  background: url("../img/ico_arrow.svg") no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  right: 2rem;
  top: 50%;
  translate: 0 -50%;
  width: 4rem;
  height: 4rem;
}
.btn_arrow a .en, .btn_arrow p .en, .btn_arrow button .en {
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: 600;
}
.btn_arrow a .ja, .btn_arrow p .ja, .btn_arrow button .ja {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 600;
}
.btn_arrow a .ja._big, .btn_arrow p .ja._big, .btn_arrow button .ja._big {
  font-size: 3rem;
}
.btn_arrow._blue a, .btn_arrow._blue p, .btn_arrow._blue button {
  background: #004abf;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .btn_arrow._blue a:hover, .btn_arrow._blue p:hover, .btn_arrow._blue button:hover {
    background: #003ba7;
  }
}
.btn_arrow._blue a::before, .btn_arrow._blue p::before, .btn_arrow._blue button::before {
  background-image: url("../img/ico_arrow_blue.svg");
}
.btn_arrow._white a, .btn_arrow._white p, .btn_arrow._white button {
  background: #FFF;
  color: #004abf;
}
.btn_arrow._blank a::before, .btn_arrow._blank p::before, .btn_arrow._blank button::before {
  background-image: url(../img/ico_blank.svg);
}

.btn_small {
  text-align: center;
}
.btn_small a, .btn_small p, .btn_small button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(0, 74, 191, 0.3);
  color: #004abf;
  font-size: 3rem;
  height: 8rem;
  padding: 0 3em;
  border-radius: 100px;
  position: relative;
  transition: border 0.3s ease;
}
@media screen and (min-width: 768px) {
  .btn_small a:hover, .btn_small p:hover, .btn_small button:hover {
    border-color: #004abf;
  }
}
.btn_small._back a::before, .btn_small._back p::before, .btn_small._back button::before {
  content: "";
  background: url("../img/ico_arrow_o.svg") no-repeat center/contain;
  position: absolute;
  left: 1em;
  top: 50%;
  translate: 0 -50%;
  width: 0.5em;
  height: 0.5em;
  scale: -1 1;
}

.ttl_sec {
  display: flex;
  align-items: center;
  gap: 0.5em 3rem;
  margin-bottom: 3rem;
}
.ttl_sec .en {
  color: #004abf;
  font-size: 10rem;
  line-height: 1;
  font-weight: 600;
}
.ttl_sec .en._black {
  color: #261d1d;
}
.ttl_sec .en._white {
  color: #fff;
}
.ttl_sec .ja {
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.ttl_sec .ja._orange {
  color: #004abf;
}
.ttl_sec .ja._white {
  color: #fff;
}
.ttl_sec._center {
  flex-direction: column;
}

#sec_fv {
  padding: 5rem 0 40rem 0;
  background: #004abf;
  box-sizing: border-box;
}
#sec_fv .wrap {
  position: relative;
}
#sec_fv .fukidashi01 {
  position: relative;
  width: 100%;
  z-index: 1;
}
#sec_fv .img {
  position: relative;
  margin-top: -4rem;
  width: 100%;
  z-index: 2;
}
#sec_fv .fukidashi02 {
  position: relative;
  left: -2.5rem;
  margin-top: -11.8rem;
  width: 79%;
  max-width: 54.8rem;
  z-index: 3;
}

#sec_respondent {
  position: relative;
  background: #f4f3f3;
  margin-bottom: -37rem;
}
#sec_respondent .ttl {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #004abf;
  margin-bottom: 2rem;
}
#sec_respondent .ttl .ico {
  position: relative;
}
#sec_respondent .ttl .ico:before {
  position: relative;
  top: 0.4rem;
  display: inline-block;
  margin-right: 1rem;
  content: "";
  background: url("../img/ico_fukidashi.svg") no-repeat center center;
  background-size: 100% auto;
  width: 3.8rem;
  height: 3.7rem;
}
#sec_respondent .white-box {
  position: relative;
  top: -37rem;
  background: #FFF;
  padding: 3.5rem 4.5rem;
  border-radius: 2rem;
  box-shadow: 0 0.2rem 1.2rem 0 rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
#sec_respondent .respondent-box .flex {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}
#sec_respondent .respondent-box .flex-img {
  width: 16rem;
}
#sec_respondent .respondent-box .flex-txt {
  width: calc(100% - 16rem);
  padding-left: 5rem;
}
#sec_respondent .respondent-box .flex-txt .position {
  color: #928d8d;
  font-size: 2.4rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 400;
}
#sec_respondent .respondent-box .flex-txt .name {
  font-size: 3.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 700;
}
#sec_respondent .respondent-box .text {
  font-size: 2.8rem;
  line-height: 1.75;
}
#sec_respondent .respondent-box:not(:last-of-type) {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #cccccc;
}

#sec_question {
  background: #f4f3f3;
  padding-top: 4.5rem;
  padding-bottom: 5rem;
  box-sizing: border-box;
}
#sec_question .wrap {
  margin-bottom: 10rem;
}
#sec_question .sec-head {
  position: relative;
  padding: 3.5rem 0;
  height: 26.2rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
  background: #004abf;
  box-sizing: border-box;
}
#sec_question .sec-head:before, #sec_question .sec-head:after {
  position: absolute;
  display: block;
  content: "";
}
#sec_question .sec-head:before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10rem);
  height: calc(100% - 10em);
  background: #1a5cc6;
  border-radius: 4rem;
  z-index: 1;
}
#sec_question .sec-head:after {
  left: 50%;
  bottom: -2rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #004abf transparent transparent transparent;
  border-width: 2.2rem 4rem 0px 4rem;
}
#sec_question .sec-head .title {
  position: relative;
  margin-top: 0.3rem;
  text-align: center;
  color: #a6c0e9;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 2.7rem;
  z-index: 2;
}
#sec_question .sec-head .cat-ttl {
  position: relative;
  text-align: center;
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 700;
  color: #FFF;
  z-index: 2;
  margin-bottom: .2em;
}
#sec_question .sec-head .number {
  position: relative;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 500;
  color: #FFF;
  z-index: 2;
}
#sec_question .post {
  position: relative;
  box-shadow: 0 0.2rem 1.2rem 0 rgba(0, 0, 0, 0.05);
}
#sec_question .post + .post {
  margin-top: 5rem;
}
#sec_question .post .post-q .post-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #6692d9;
  padding: 1.8rem 5rem 1.8rem 7.8rem;
  border-radius: 2rem 2rem 0 0;
}
#sec_question .post .post-q .post-head:before {
  position: absolute;
  left: -2.8rem;
  top: 1.8rem;
  display: block;
  content: "";
  background: url("../img/ico_q.svg") no-repeat center center;
  background-size: 100% auto;
  width: 8.8rem;
  height: 9.1rem;
}
#sec_question .post .post-q .img {
  width: 8.8rem;
}
#sec_question .post .post-q .post-cat span {
  font-size: 2.4rem;
  color: #004abf;
  font-weight: 600;
  background: #FFF;
  padding: 0.1rem 1rem;
  border-radius: 0.8rem;
  display: inline-block;
  margin-left: .5em;
}
#sec_question .post .post-q .pot-ttl {
  font-size: 3.2rem;
  line-height: 1.75;
  font-weight: 600;
  color: #004abf;
  padding: 3.2rem 5rem;
  background: #FFF;
  box-sizing: border-box;
}
#sec_question .post .post-a {
  position: relative;
  background: #FFF;
  padding: 0 5rem 8.5rem 5rem;
  border-radius: 0 0 2rem 2rem;
  box-sizing: border-box;
}
#sec_question .post .post-a:before {
  position: absolute;
  left: -2.8rem;
  top: 3.8rem;
  display: block;
  content: "";
  background: url("../img/ico_a.svg") no-repeat center center;
  background-size: 100% auto;
  width: 8.8rem;
  height: 9.1rem;
}
#sec_question .post .post-a .inner {
  padding-top: 3.5rem;
  border-top: 1px solid #cccccc;
  box-sizing: border-box;
}
#sec_question .post .post-a .img {
  float: left;
  width: 8.8rem;
  margin-left: 2.8rem;
  margin-right: 2rem;
  margin-bottom: 1rem;
}
#sec_question .post .post-a .reference-btn {
  margin: 3.5rem auto 4.5rem;
}
#sec_question .post .post-a .reference-btn .item .post-ratings {
  width: auto;
}

#sec_question .post .post-a .reference-btn .item .post-ratings img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline !important;
  opacity: 0;
} 
#sec_question .post .post-a .reference-btn .item .post-ratings .ico::before {
  content: '';
  width: 14px;
  height: 13px;
  display: inline-block;
  background-image: url(../img/ico_reference.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.1rem;
  margin-bottom: -2px;
}

#sec_question .post .post-a .reference-btn .item {
  width: 100%;
  max-width: 34rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.8rem;
  line-height: 1.75;
  color: #004abf;
  background: #f2f6fc;
  border-radius: 2rem;
  z-index: 4;
  position: relative;
}
#sec_question .post .post-a .reference-btn .item .ico {
  /* position: relative; */
  margin-right: 1.2rem;
  width: 2.8rem;
}
#sec_question .post .post-a .reference-btn .item .ico img {
  display: block;
}
#sec_question .post .post-a .reference-btn .item .num {
  margin-left: 0.5rem;
  font-size: 3rem;
  font-weight: 700;
}
#sec_question .post .post-a p {
  font-size: 2.8rem;
  line-height: 1.75;
}
#sec_question .post .post-a p + p {
  margin-top: 3.5rem;
}
#sec_question .post .post-a p a {
  color: #004abf;
  text-decoration: underline;
}
#sec_question .post .post-a p a[target=_blank] {
  position: relative;
}
#sec_question .post .post-a p a[target=_blank]:after {
  position: relative;
  top: 0.2rem;
  margin-left: 1rem;
  display: inline-block;
  content: "";
  background: url("../img/ico_external.svg") no-repeat center center;
  background-size: 100% 100%;
  width: 2.7rem;
  height: 2.7rem;
}
#sec_question .post .post-a strong {
  background: linear-gradient(transparent 60%, #ffe600 60%);
}
#sec_question .post .post-a .wp-block-image {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
#sec_question .post .post-a .wp-block-embed__wrapper {
  margin-top: 4rem;
  margin-bottom: 4rem;
  width: 100%;
  aspect-ratio: 16/9;
}
#sec_question .post .post-a .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
#sec_question .post .read_more {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 3;
  height: 20rem;
  padding-top: 5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 35%);
  cursor: pointer;
  border-radius: 0 0 2rem 2rem;
}
#sec_question .post .read_more p {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.7142857143;
  color: #004abf;
}
#sec_question .post .read_more .ico {
  position: relative;
  top: -0.5rem;
  display: inline-block;
  margin-right: 1.6rem;
  width: 1.37rem;
  height: 0.74rem;
}
#sec_question .post .read_more .ico:before, #sec_question .post .read_more .ico:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 1rem;
  border-radius: 9999px;
  background-color: #004abf;
  transform-origin: 50% calc(100% - 0.5px);
}
#sec_question .post .read_more .ico:before {
  transform: rotate(45deg);
}
#sec_question .post .read_more .ico:after {
  transform: rotate(-45deg);
}
#sec_question .post .read_more.is-open {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 70%);
  padding-top: 0;
  height: 15rem;
}
#sec_question .post .read_more.is-open .ico:before, #sec_question .post .read_more.is-open .ico:after {
  top: 0;
  bottom: auto;
  transform-origin: 50% 0.5px;
}

.narrow_down {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .narrow_down {
    width: 100%;
    padding: 0 5rem;
  }
}
.narrow_down-head {
  text-align: center;
  padding: 2.5rem 5rem;
  background: #336ecc;
  border-radius: 2rem 2rem 0 0;
  box-sizing: border-box;
}
.narrow_down-head .ico {
  position: relative;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.75;
  font-weight: 700;
  color: #FFF;
}
.narrow_down-head .ico:before {
  position: relative;
  top: 0.3rem;
  margin-right: 1rem;
  display: inline-block;
  content: "";
  background: url("../img/ico_search.svg") no-repeat center center;
  background-size: 100% 100%;
  width: 3rem;
  height: 3rem;
}
.narrow_down-inner {
  background: #FFF;
  padding: 3rem 5rem;
  border-radius: 0 0 2rem 2rem;
  box-sizing: border-box;
}
.narrow_down-inner .cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 1.4rem;
}
.narrow_down-inner .cat-list .cat-item a {
  display: block;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  color: #004abf;
  background: #f2f6fc;
  padding: 1.7rem 0.9rem;
  border-radius: 0.8rem;
  transition: 0.3s;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .narrow_down-inner .cat-list .cat-item a:hover {
    color: #FFF;
    background: #004abf;
    opacity: 1;
  }
}
.narrow_down-inner .cat-list .cat-item.current a {
  color: #FFF;
  background: #004abf;
}
.text_wrapper .text_inner {
  height: 27rem;
  overflow: hidden;
}
.text_wrapper .text_inner.is-open {
  height: auto;
}

.cta {
  margin-top: 5rem;
}
.cta .cta-img {
  position: relative;
}
.cta .cta-img .img {
  position: relative;
  z-index: 1;
}
.cta .cta-img .fukidashi {
  position: absolute;
  right: 5rem;
  top: 4.5rem;
  width: 40.3rem;
  height: 23.5rem;
  background: url("../img/cta_fukidashi_bg.png") no-repeat center center;
  background-size: 100% 100%;
  padding: 2.5rem 4.2rem 2.5rem 6.8rem;
  z-index: 2;
}
.cta .cta-img .fukidashi .txt01 {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 700;
  color: #ffe600;
  margin-bottom: 1rem;
}
.cta .cta-img .fukidashi .txt02 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  color: #FFF;
}
.cta .btn_wrap {
  position: relative;
  margin-top: -9.6rem;
  z-index: 2;
}
.cta .btn_wrap .btn {
  margin: 0;
}
.cta .btn_wrap .btn a {
  font-size: 3.2rem;
  font-weight: 700;
}
.cta + .post {
  margin-top: 5rem;
}

.btn_wrap.more-btn {
  margin-top: 5rem;
}
.btn_wrap.more-btn .btn {
  margin: 0;
}
.btn_wrap.more-btn .btn p {
  font-size: 3.2rem;
  font-weight: 700;
}
.btn_wrap.more-btn .btn + .js-acd-item {
  margin-top: 5rem;
  margin-left: -2.8rem;
  margin-right: -2.8rem;
  padding: 0 2.8rem;
}
.btn_wrap.more-btn .js-acd.is-open {
  display: none;
}

#sec-entry {
  padding-bottom: 7rem;
  box-sizing: border-box;
}
#sec-entry .entry-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: url("../img/bg-entry.png") no-repeat center bottom, #ffe600;
  background-size: 100% auto;
  height: 28.2rem;
  margin-bottom: 4.5rem;
  box-sizing: border-box;
}
#sec-entry .entry-head .en-ttl {
  display: block;
  text-align: center;
  font-size: 10rem;
  line-height: 1;
  font-weight: 700;
}
#sec-entry .entry-head .jp-ttl {
  display: block;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 700;
}
#sec-entry .inner {
  padding: 0 5rem;
  box-sizing: border-box;
}
#sec-entry .text {
  font-size: 3rem;
  line-height: 1.7666666667;
  font-weight: 600;
}

#header_nav .bnr-wrap,
#sec-entry .bnr-wrap {
  margin-top: 7.5rem;
  padding: 0 5rem;
  box-sizing: border-box;
}
#header_nav .bnr-wrap .bnr,
#sec-entry .bnr-wrap .bnr {
  display: block;
  transform: translate(-2rem, -2rem);
  box-shadow: 2rem 2rem 0 0 rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}
#header_nav .bnr-wrap .bnr:hover,
#sec-entry .bnr-wrap .bnr:hover {
  transform: translate(0, 0);
  box-shadow: none;
}
#header_nav .bnr-wrap .bnr + .bnr,
#sec-entry .bnr-wrap .bnr + .bnr {
  margin-top: 4rem;
}

#sec_contact {
  padding: 6rem 0;
  background: #ebf1fa;
  box-sizing: border-box;
}
#sec_contact .contact-ttl {
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
}
#sec_contact .contact-ttl:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  background: url("../img/ico_tel.svg") no-repeat center center;
  background-size: 100% auto;
  width: 16.1rem;
  height: 16.1rem;
  z-index: 1;
}
#sec_contact .contact-ttl .title {
  position: relative;
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 600;
  z-index: 2;
}
#sec_contact .tel {
  margin-bottom: 2.6rem;
  text-align: center;
  font-size: 7rem;
  line-height: 1.2;
  font-weight: 700;
  font-feature-settings: "palt";
  color: #004abf;
}
#sec_contact .tel .txt {
  font-size: 80%;
}
#sec_contact .tel .tel-link a {
  color: #004abf;
}
#sec_contact .tel-txt {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

/* ------------------------------
    スクロールアニメーション
------------------------------ */
*[data-scroll=fade-top] {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 0;
  transform: translateY(30px);
}

*[data-scroll=fade-bottom] {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 0;
  transform: translateY(-30px);
}

*[data-scroll=fade-top].scroll-show,
*[data-scroll=fade-bottom].scroll-show {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .tb-none {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  zoom: 1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden; /* 隙間対応 */
  font-size: 0.1em; /* 隙間対応 */
  line-height: 0; /* 隙間対応 */
}

/* ------------------------------
    animation
------------------------------ */
.fadeIn {
  opacity: 0;
}
.fadeIn.is-animeted {
  animation: fadeIn 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.delay1 {
  animation-delay: 0.3s !important;
}

.delay2 {
  animation-delay: 0.6s !important;
}

.delay3 {
  animation-delay: 0.9s !important;
}

.hidden-post {
    display: none;
}