@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  vertical-align: baseline;
  box-sizing: border-box;
  font-weight: 500;
}

html {
  line-height: 1;
  scroll-behavior: smooth;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

a {
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary, picture {
  display: block;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

.oswald {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}

.roboto {
  font-family: 'Roboto', sans-serif;
}

* {
  color: #1A275A;
}

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

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
}

body {
  font-size: 15px;
  line-height: 2.25;
}

header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
header .header {
  display: grid;
  grid-template-columns: 156px 1fr;
  width: 100%;
  height: 98px;
  align-items: center;
  padding: 0 30px;
  position: relative;
}
@media screen and (max-width: 750px) {
  header .header {
    height: 54px;
    padding: 0 15px;
  }
}
header .header .site_logo {
  width: 157px;
  aspect-ratio: 157/38;
}
@media screen and (max-width: 750px) {
  header .header .site_logo {
    width: 104px;
  }
}
header .header nav {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 750px) {
  header .header nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #222;
    width: 100%;
    height: 100svh;
    overflow-y: auto;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 76px 28px;
    translate: 0 -115vh;
    transition: all .3s;
  }
}
header .header nav .navi_list {
  display: flex;
  width: fit-content;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 880px) {
  header .header nav .navi_list {
    gap: 24px;
  }
}
@media screen and (max-width: 750px) {
  header .header nav .navi_list {
    gap: 10px;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 750px) {
  header .header nav .navi_list .list {
    border-bottom: 1px solid #3B3B3B;
    padding-bottom: 10px;
    width: 100%;
  }
  header .header nav .navi_list .list:has(.btn_type) {
    border-bottom: none;
  }
}
header .header nav .navi_list .list .btn {
  font-size: 15px;
  position: relative;
}
@media screen and (max-width: 750px) {
  header .header nav .navi_list .list .btn {
    color: #FFF;
  }
}
header .header nav .navi_list .list .btn:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #1A275A;
  transition: width .3S;
}
header .header nav .navi_list .list .btn.btn_type {
  width: 157px;
  height: 40px;
  background: #1A275A;
  border: 1px solid #1A275A;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  color: #FFF;
}
header .header nav .navi_list .list .btn.btn_type:after {
  display: none;
}
@media screen and (max-width: 750px) {
  header .header nav .navi_list .list .btn.btn_type {
    width: 260px;
    margin-inline: auto;
    margin-top: 20px;
    background: #ffffff;
    color: #222222;
  }
}
@media (any-hover: hover) {
  header .header nav .navi_list .list .btn:hover.btn_type {
    background: #FFF;
    color: #1A275A;
  }
  header .header nav .navi_list .list .btn:hover:after {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  header .header nav .navi_list .list .in_navi.sp {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin-top: 20px;
    padding-left: 20px;
    padding-bottom: 17px;
  }
}
header .header nav .navi_list .list .in_navi.sp .in_list .btn {
  font-size: 14px;
}

.menu_btn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 5px;
  right: 5px;
  background: #222;
  z-index: 101;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 750px) {
  .menu_btn {
    display: block;
	position:fixed;
  }
}
.menu_btn .bar {
  width: 14px;
  height: 2px;
  background: #FFF;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.menu_btn .bar:nth-of-type(1) {
  top: 12px;
}
.menu_btn .bar:nth-of-type(2) {
  top: 19px;
}
.menu_btn .bar:nth-of-type(3) {
  bottom: 12px;
}

.text {
  font-size: 15px;
  line-height: 2.4;
  text-align: justify;
}
.text .bold {
  font-weight: 700;
}

.add_text {
  font-size: 13px;
}
.add_text:has(.icon) {
  display: grid;
  grid-template-columns: 16px auto;
}
.add_text.icon {
  font-size: 13px;
}

.js-line-trigger {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  overflow: hidden;
}

.line-svg {
  width: 100%;
  height: auto;
  display: block;
}

.hidden--item {
  width: 1px;
  height: 0;
  clip-path: 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
}

section .container {
  overflow: hidden;
}
section .container .contents {
  width: 100%;
  max-width: 1026px;
  margin-inline: auto;
}

.bottom_contents {
  max-width: 1260px;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .bottom_contents {
    padding: 0 15px;
  }
}
.bottom_contents .item_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 750px) {
  .bottom_contents .item_list {
    display: block;
  }
}
.bottom_contents .item_list .list:nth-of-type(1) .item {
  background: #1782C8;
}
.bottom_contents .item_list .list:nth-of-type(1) .item .item_icon img {
  width: 80px;
}
@media screen and (max-width: 750px) {
  .bottom_contents .item_list .list:nth-of-type(1) .item .item_icon img {
    width: 50px;
  }
}
.bottom_contents .item_list .list:nth-of-type(2) .item {
  background: #034083;
}
.bottom_contents .item_list .list:nth-of-type(2) .item .item_icon img {
  width: 92px;
}
@media screen and (max-width: 750px) {
  .bottom_contents .item_list .list:nth-of-type(2) .item .item_icon img {
    width: 50px;
  }
}
.bottom_contents .item_list .list:nth-of-type(3) .item .item_icon img {
  width: 96px;
}
@media screen and (max-width: 750px) {
  .bottom_contents .item_list .list:nth-of-type(3) .item .item_icon img {
    width: 50px;
  }
}
.bottom_contents .item_list .list .item {
  width: 100%;
  background: #1A275A;
  padding-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .bottom_contents .item_list .list .item {
    display: grid;
    grid-template-columns: 105px 1fr;
    padding: 30px 15px 60px;
    align-items: ce;
  }
}
@media screen and (max-width: 750px) {
  .bottom_contents .item_list .list .item .item_icon {
    display: flex;
    align-items: center;
  }
}
.bottom_contents .item_list .list .item .item_icon picture {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .bottom_contents .item_list .list .item .item_icon picture {
    height: auto;
  }
}
.bottom_contents .item_list .list .item .item_name {
  font-size: 25px;
  color: #FFF;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .bottom_contents .item_list .list .item .item_name {
    font-size: clamp(20px, 2.14286vw, 25px);
    text-align: left;
  }
}
.bottom_contents .item_list .list .item .text {
  color: #FFF;
  padding: 0 38px;
  margin-top: 26px;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .bottom_contents .item_list .list .item .text {
    grid-row: 2/3;
    grid-column: 1/3;
    padding: 0;
  }
}

footer {
  padding: 100px 30px 74px;
}
@media screen and (max-width: 750px) {
  footer {
    padding: 50px 15px 34px;
  }
}
footer .copyright {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 750px) {
  footer .copyright {
    margin-top: 48px;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .footer {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
.footer .footer_info .site_logo {
  width: 157px;
  aspect-ratio: 157/38;
  display: block;
}
@media screen and (max-width: 750px) {
  .footer .footer_info .site_logo {
    width: 118px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer_info .f_address {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
    margin-top: 20px;
  }
}
.footer .footer_info .f_address .f_text {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .footer .footer_info .f_address .f_text {
    font-size: 13px;
    text-align: center;
  }
}
.footer .footer_info .f_address .f_text:has(.icon_tel) {
  display: grid;
  grid-template-columns: 53px auto;
  gap: 17px;
}
.footer .footer_info .f_address .f_text:has(.icon_tel) .icon_tel {
  background: #F5F5F5;
  width: 53px;
  height: 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  translate: 0 5px;
}
@media screen and (max-width: 750px) {
  .footer .footer_info .f_address .f_text:has(.icon_tel) .icon_tel {
    translate: 0 0;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer_info .f_address .f_text:has(.icon_tel) {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer_info .f_address .f_text:has(.icon_tel) .tel_tti {
    font-weight: 700;
  }
}
.footer nav {
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 750px) {
  .footer nav {
    margin-top: 50px;
    gap: 43px;
  }
}
.footer nav .navi_list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer nav .navi_list .list {
  line-height: 1;
}
.footer nav .navi_list .list a {
  font-size: 14px;
  font-weight: 500;
}
.footer nav .navi_list .list a.btn {
  font-size: 15px;
  font-weight: 700;
}
.footer nav .navi_list .list .in_navi_list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .footer nav .navi_list .list .in_navi_list {
    margin-top: 20px;
  }
}
.footer nav .navi_list .list .in_navi_list .in_list {
  padding-left: 10px;
  line-height: 1;
}
.footer nav .navi_list .list .in_navi_list .in_list a {
  font-size: 14px;
  font-weight: 500;
}

.open header .header nav {
  translate: 0 0;
}
.open .menu_btn .bar:nth-of-type(1) {
  animation: menu01 .5s ease-in-out 0s forwards;
}
.open .menu_btn .bar:nth-of-type(2) {
  animation: menu02 .5s ease-in-out 0s forwards;
}
.open .menu_btn .bar:nth-of-type(3) {
  animation: menu03 .5s ease-in-out 0s forwards;
}

.this_open {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.this_open.start {
  animation: slide_ani .5s ease-in-out 0.2s forwards;
}

@keyframes slide_ani {
  0% {
    clip-path: polygon(87% 0, 100% 0, 100% 100%, 87% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes menu01 {
  0% {
    translate: 0 0;
    rotate: 0deg;
  }
  50% {
    translate: 0 7px;
    rotate: 0deg;
  }
  100% {
    translate: 0 7px;
    rotate: 45deg;
  }
}
@keyframes menu02 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  50.1% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes menu03 {
  0% {
    translate: 0 0;
    rotate: 0deg;
  }
  50% {
    translate: 0 -7px;
    rotate: 0deg;
  }
  100% {
    translate: 0 -7px;
    rotate: -45deg;
  }
}
.animated-line path {
  fill: none;
  stroke: #4df6df;
  /* 元の色に合わせる */
  stroke-width: 2px;
}

/*# sourceMappingURL=style.css.map */
