@charset "UTF-8";
/*------------------------------------------------------

    BASE

------------------------------------------------------*/
body {
  color: #fff;
  width: 100%;
  font-size: 1rem;
  line-height: 1.6;
  word-wrap: break-word;
  font-family: system-ui, -apple-system, "system-ui", "ヒラギノ角ゴ W3", sans-serif;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
}

h4 {
  font-size: 1.12em;
}

h5 {
  font-size: 0.83em;
}

h6 {
  font-size: 0.75em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.4;
}

img {
  vertical-align: bottom;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.w100 {
  width: 100%;
  height: auto;
}

/* PC FIRST */
.d-pc {
  display: inline-block;
}

.d-sp {
  display: none;
}

.container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/*------------------------------------------------------

    ANIME

------------------------------------------------------*/
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2s ease 0.3s, transform 2s ease 0.3s;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#hero h2 {
  transform: translateY(0px);
  transition: opacity 1s ease 1s, transform 1s ease;
}
#hero a {
  transform: translateY(0px);
  transition: opacity 1s ease 2s, transform 1s ease;
}

/*------------------------------------------------------

    HEADER

------------------------------------------------------*/
header {
  background-color: #000;
  color: #fff;
  z-index: 100;
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .inner h1 a img {
  width: 175px;
}
header .inner nav ul {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
header .inner nav ul li a {
  display: block;
  color: #fff;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 700;
}

/*------------------------------------------------------

    NAVBAR

------------------------------------------------------*/
nav#navbar {
  background-color: #000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease;
  transform: translateY(-100%);
  z-index: 200;
}
nav#navbar.visible {
  transform: translateY(0);
}
nav#navbar ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}
nav#navbar ul li a {
  display: block;
  color: #fff;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 700;
}

/*------------------------------------------------------

    HERO

------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
}
#hero .img-frame {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 0 auto;
}
#hero .img-frame .img-01, #hero .img-frame .img-02, #hero .img-frame .img-03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
#hero .img-frame .img-01 {
  background-image: url("images/slide1.png");
  animation: slide-animation-01 18s infinite;
}
#hero .img-frame .img-02 {
  background-image: url("images/slide2.png");
  animation: slide-animation-02 18s infinite;
}
#hero .img-frame .img-03 {
  background-image: url("images/slide3.png");
  animation: slide-animation-03 18s infinite;
}
#hero .hero__txt {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#hero .hero__txt h2 {
  font-size: 80px;
  line-height: 100px;
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.75) 7px 7px 10px;
}
#hero a {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #017ba2;
  color: #fff;
  width: 480px;
  text-align: center;
  font-size: 20px;
  line-height: 68px;
  border-radius: 4px;
}

@keyframes slide-animation-01 {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*------------------------------------------------------

    SECTION

------------------------------------------------------*/
section {
  padding: 85px 0;
}
section.bg-gray {
  background-color: #000;
}
section .section__title {
  text-align: center;
  padding-bottom: 50px;
}
section .section__title h3 {
  font-size: 20px;
  color: #017ba3;
  margin-bottom: 15px;
}
section .section__title p {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 25px;
}
section .section__title p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
  width: 30px;
  height: 3px;
  background-color: #037ba2;
}
section .section__contents h4 {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 30px;
}
section .section__contents p {
  color: #fff;
  line-height: 28.8px;
}
section .section__contents p strong {
  font-weight: 400;
  background: linear-gradient(transparent 60%, rgba(252, 185, 0, 0.5019607843) 60%);
}

#who .bridgepoint__title h6 {
  color: #017ba3 ;
  font-size: 20px;
  line-height: 1.6; 
  margin: 5px 0 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

#who .bridgepoint__title h6 br + span {
  color: #fff ;
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6; 
  padding-top: 10px;
}

.h7-style {
  color: #fff ;
  font-size: 20px;
  line-height: 1.6; 
  margin: 5px 0 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.h8-style {
  color: #fff ;
  font-size: 20px;
  line-height: 1.6 ; 
  margin: 0 0 5px;
  padding-bottom: 0;
}

.bridgepoint__contents p:not(.h8-style) {
  margin: 0 0 20px; /* セットの下だけスペース */
  line-height: 1.7;
}


/* スマホ用調整（画面幅768px以下） */
@media screen and (max-width: 768px) {
section {
    padding: 45px 0;
  }
}


/*------------------------------------------------------

    CV

------------------------------------------------------*/
.cv {
  text-align: center;
}
.cv p {
  margin-bottom: 30px;
}
.cv a {
  display: block;
  background-color: #017ba2;
  color: #fff;
  width: 480px;
  text-align: center;
  font-size: 20px;
  line-height: 68px;
  border-radius: 4px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 900;
}

/*------------------------------------------------------

    WHO

------------------------------------------------------*/
#who h4 {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
#who .flag {
  display: flex;
  justify-content: space-between;
}
#who .flag .flag-item {
  width: 25%;
  text-align: center;
}
#who .flag .flag-item h5 {
  font-size: 16px;
  font-weight: 900;
}
#who .flag .flag-item img {
  margin: 0 auto;
}
#who .bridgepoint {
  margin-top: 120px;
  display: flex;
  justify-content: space-between;
}
#who .bridgepoint__title {
  width: 30%;
}

#who .bridgepoint__contents {
  width: 66%;
}
#who .bridgepoint__contents p {
  line-height: 28.8px;
}

/* スマホ用調整（画面幅768px以下） */
@media screen and (max-width: 768px) {
#who .bridgepoint {
  margin-top: 2px;
  }
}

/*------------------------------------------------------

    SERVICE

------------------------------------------------------*/
#service .cos {
  display: flex;
}
#service .cos__title {
  width: 30%;
}
#service .cos__title h4 {
  font-size: 20px;
  color: #3155a6;
  margin-bottom: 15px;
}
#service .cos__title p {
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
}
#service .cos__contents {
  width: 70%;
}
#service .cos__contents--img {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}
#service .cos__contents--img img {
  width: 50%;
}
#service .cv {
  margin-top: 100px;
}

/*------------------------------------------------------

    STRONG

------------------------------------------------------*/
#strong {
  padding: 0;
  margin: 0;
  overflow: hidden; /* はみ出し防止 */
}

#strong img {
  width: 100%;
  height: 400px; /* ←ここで縦の高さを固定 */
  object-fit: cover; /* トリミングしてバランスよく表示 */
  display: block;
}

/* スマホ用調整（画面幅768px以下） */
@media screen and (max-width: 768px) {
  #strong img {
    height: 160px;
  }
}

/*------------------------------------------------------

    EVIDENCE

------------------------------------------------------*/
#evidence .section__contents p {
  margin-bottom: 30px;
}
#evidence .section__contents p.center {
  text-align: center;
}

/*------------------------------------------------------

    REASON

------------------------------------------------------*/
#reason .reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
#reason .reasons--item {
  width: 33.3333333333%;
  text-align: center;
}
#reason .reasons--item img {
  width: 150px;
  height: auto;
  margin: 0 auto;
}
#reason .reasons--item p {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}
#reason h4 {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

/*------------------------------------------------------

    FLOW

------------------------------------------------------*/
#flow .flows {
  display: flex;
  justify-content: space-between;
}
#flow .flows--item {
  position: relative;
  text-align: center;
  width: 25%;
}
#flow .flows--item::after {
  content: "";
  position: absolute;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  right: 0;
  top: 50%;
  width: 24px;
  height: 28px;
  background-color: #ccc;
}
#flow .flows--item:last-child::after {
  display: none;
}
#flow .flows--item p {
  font-size: 1.3rem;
  font-weight: 700;
}
#flow .flows--item p.number {
  position: relative;
  color: #3155a6;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left;
}
#flow .flows--item p.number::after {
  background: #3155a6;
  content: "";
  display: block;
  height: 1px;
  left: 1rem;
  position: absolute;
  top: 1rem;
  transform: rotate(-60deg);
  width: 5rem;
}
#flow .flows--item img {
  width: 155px;
  height: auto;
  margin: 1.5rem auto;
}

/*------------------------------------------------------

    ABOUT

------------------------------------------------------*/
#about {
  background-color: #000;
  color: #fff;
}
#about h4 {
  position: relative;
  margin-bottom: 40px;
}
#about h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  background-color: #037ba2;
  width: 30px;
  height: 3px;
}
#about .about__lists {
  display: flex;
  justify-content: space-between;
}
#about .about__lists--item {
  width: 25%;
}
#about .about__lists--item h5 {
  font-size: 16px;
}
#about .about__lists--item p {
  color: #969696;
  font-size: 16px;
}
#about a {
  text-decoration: underline;
  text-align: center;
  color: #fff;
  display: block;
  margin-top: 60px;
}

/*------------------------------------------------------

    PAGE
    - PRIVACY POLCY
    - CONTACT FORM

------------------------------------------------------*/
#privacy .container,
#contact-form .container {
  width: 900px;
  line-height: 2;
}
#privacy .container h2,
#contact-form .container h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 85px;
}
#privacy .container h3,
#contact-form .container h3 {
  font-size: 16px;
  margin-top: 40px;
}
#privacy .container ul,
#contact-form .container ul {
  margin: 30px 0 30px 5px;
}
#privacy .container ul li,
#contact-form .container ul li {
  list-style: disc;
  list-style-position: inside;
}
#privacy .container ol,
#contact-form .container ol {
  margin: 30px 0 0 0;
  padding: 0;
}

#contact-form .container {
  width: 720px;
}
#contact-form .container form .form-item {
  margin-bottom: 30px;
}
#contact-form .container form .form-item label {
  display: block;
}
#contact-form .container form .form-item label span {
  color: #f00;
}
#contact-form .container form .form-item input[type=text],
#contact-form .container form .form-item textarea {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  width: 50%;
}
#contact-form .container form .form-item textarea {
  width: 100%;
}
#contact-form .container form .form-item input::-moz-placeholder {
  color: #999;
}
#contact-form .container form .form-item input::placeholder {
  color: #999;
}
#contact-form .container form .btn {
  display: flex;
  justify-content: center;
  gap: 15px;
}
#contact-form .container form .btn input {
  width: 50%;
  padding: 10px;
  background-color: #3155a6;
  border: 1px solid #3155a6;
  border-radius: 5px;
  color: #fff;
}
#contact-form .container form .btn input[type=reset] {
  background-color: #777;
  border: 1px solid #777;
}

/*------------------------------------------------------

    FOOTER

------------------------------------------------------*/
footer {
  background-color: #333;
  border-top: 1px solid #eee;
  text-align: center;
  padding: 21px 0;
}

p#copyright {
  font-size: 14px;
  color: #fff;
}

/*------------------------------------------------------

    PAGE TOP LINK

------------------------------------------------------*/
#page-top-link {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 0;
  background-color: #3155a6;
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#page-top-link.show {
  display: block;
  opacity: 1;
}
#page-top-link a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#page-top-link a img {
  width: 25px;
  height: auto;
}

/*------------------------------------------------------

    RESPO / PC FIRST

------------------------------------------------------*/
@media (max-width: 960px) {
  .d-sp {
    display: none;
  }
  .d-pc {
    display: inline-block;
  }
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
	
　  #reason .reasons {
    flex-direction: column;
    gap: 30px; /* 縦の間隔調整 */
  }

  #reason .reasons--item {
    width: 100% !important; /* 幅をフルにして縦に1つずつ */
  }
  /* HEADER */
  header {
    position: fixed;
    width: 100%;
    padding: 20px 0;
  }
  header .inner h1 a img {
    width: 88px;
  }
  header .inner nav {
    display: none;
  }
  nav#navbar {
    background-color: #3155a6;
    color: #fff;
    position: fixed;
    top: 0;
    left: -100%; /* 初期状態ではページ外に配置 */
    width: 65%;
    height: 100vh;
    transition: left 0.3s ease; /* トランジションを追加 */
    z-index: 200;
    padding: 20px 0;
  }
  nav#navbar.visible {
    left: 0; /* スライドインする位置に移動 */
  }
  nav#navbar ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  nav#navbar ul li a {
    display: block;
    color: #fff;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 500;
  }
  .menu-toggle {
    cursor: pointer;
    z-index: 999;
    position: fixed;
    top: 15px;
    right: 20px;
    display: block;
    /* ハンバーガーアイコンからクローズアイコンに変更 */
  }
  .menu-toggle span.bar {
    display: block;
    width: 24px;
    height: 1px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.4s;
  }
  .menu-toggle p {
    font-family: Arial Narrow, Verdana, sans-serif;
    font-size: 10px;
  }
  .menu-toggle.open span.bar:nth-child(1) {
    transform: rotate(-45deg) translate(-1px, 2px);
  }
  .menu-toggle.open span.bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span.bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  /* HERO */
  #hero .hero__txt {
    top: 40%;
  }
  #hero .hero__txt h2 {
    font-size: 7.7vw;
    line-height: 1.5;
  }
  #hero a {
    bottom: 35%;
    width: 65%;
    font-size: 4.5vw;
  }
  /* SECTION */
  section .section__title h3 {
    font-size: 4vw;
  }
  section .section__title p {
    font-size: 6vw;
  }
  section .section__contents h4 {
    font-size: 4.5vw;
  }
  /* CV */
  .cv {
    text-align: center;
  }
  .cv p {
    margin-bottom: 30px;
  }
  .cv a {
    display: block;
    background-color: #017ba2;
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 68px;
    border-radius: 4px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 900;
  }
  /* WHO */
  #who h4 {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
  }
  #who .flag {
    flex-direction: column;
  }
  #who .flag .flag-item {
    width: 100%;
  }
  #who .flag .flag-item h5 {
    margin-bottom: 15px;
  }
  #who .flag .flag-item img {
    margin: 0 auto;
  }
  #who .bridgepoint {
    flex-direction: column;
  }
  #who .bridgepoint__title {
    width: 100%;
    padding-bottom: 40px;
  }
  #who .bridgepoint__title h6 {
    font-size: 4.5vw;
  }
  .h7-style {
    font-size: 4.5vw;
  }
  .h8-style {
    font-size: 4.0vw;
  }
  #who .bridgepoint__contents {
    width: 100%;
  }
  #who .bridgepoint__contents p {
    line-height: 28.8px;
  }
  /* SERVICE */
  #service .cos {
    flex-direction: column;
  }
  #service .cos__title {
    width: 100%;
    padding-bottom: 40px;
  }
  #service .cos__title h4 {
    margin-bottom: 10px;
  }
  #service .cos__title p {
    font-size: 7vw;
    line-height: 1.2;
    font-weight: 700;
  }
  #service .cos__contents {
    width: 100%;
  }
  /* STRONG */
  #strong .inner {
    flex-direction: column;
  }
  #strong .inner .strong__img {
    width: 100%;
  }
  #strong .inner .strong__img::after {
    display: none;
  }
  #strong .inner .strong__txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }
  #strong .inner .strong__txt--item p {
    font-size: 4vw;
  }
  #strong .inner .strong__txt--item p img {
    width: 8%;
  }
  #strong .inner .strong__txt--item small {
    font-size: 3vw;
  }
  /* REASON */
  #reason .reasons--item {
    width: 50%;
  }
  #reason .reasons--item img {
    width: 45%;
  }
  #reason .reasons--item p {
    font-size: 3.2vw;
  }
　#reason h4 {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
  /* FLOW */
  #flow .flows {
    flex-wrap: wrap;
    gap: 80px 0;
  }
  #flow .flows--item {
    width: 50%;
  }
  #flow .flows--item::after {
    content: "";
    position: absolute;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
            clip-path: polygon(0 0, 0% 100%, 100% 50%);
    right: 0;
    top: 50%;
    width: 24px;
    height: 28px;
    background-color: #ccc;
  }
  #flow .flows--item:nth-child(2)::after {
    display: none;
  }
  #flow .flows--item p {
    font-size: 3.2vw;
  }
  #flow .flows--item p.number {
    font-size: 7vw;
  }
  #flow .flows--item p.number::after {
    width: 4rem;
  }
  #flow .flows--item img {
    width: 45%;
  }
  /* ABOUT */
  #about .about__lists {
    flex-direction: column;
  }
  #about .about__lists--item {
    width: 100%;
  }
  #about .about__lists--item h5 {
    font-size: 16px;
  }
  #about .about__lists--item p {
    color: #969696;
    font-size: 16px;
  }
  #about a {
    text-decoration: underline;
    text-align: center;
    color: #fff;
    display: block;
    margin-top: 60px;
  }
  /* FOOTER */
  p#copyright {
    font-size: 3vw;
  }
  /*
      PAGE
  - PRIVACY POLCY
  - CONTACT FORM
  */
  #privacy .container,
  #contact-form .container {
    width: 100%;
  }
  #privacy .container h2,
  #contact-form .container h2 {
    font-size: 26px;
    margin: 20px 0 40px;
  }
  #contact-form .container {
    width: 100%;
  }
  #contact-form .container form .form-item input[type=text],
  #contact-form .container form .form-item textarea {
    width: 100%;
  }
  @media (max-width: 960px) {
  #who .bridgepoint__title h6 {
    font-size: 4vw;
  }

  #who .bridgepoint__title h6 br + span {
    font-size: 6vw;
  }
    .h7-style {
    font-size: 4vw;
  }
   .h8-style {
    font-size: 3vw;
  }
	  
@media (max-width: 768px) {
  .bridgepoint__contents p {
    font-size: 4.2vw;
    line-height: 1.8;
  }

  .h8-style {
    font-size: 4.5vw;
    font-weight: 700;
  }
  .bridgepoint__contents p strong {
    font-size: 4.5vw;
    display: block; /* 強調タイトルを独立させる */
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .bridgepoint__title .h7-style {
    font-size: 6vw;
  }
}
}/*# sourceMappingURL=style.css.map */