@charset "UTF-8";
:root {
  --radius: 40px;
}

@media screen and (max-width: 600px) {
  :root {
    --radius: 30px;
  }
}
/*++++++++++++++++++++++++++++++ reset ++++++++++++++++++++++++++++++*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, address, em {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
}

div, blockquote, p, pre, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  border: 0;
}

table, caption, th, td {
  font-style: normal;
  font-weight: normal;
  padding: 0;
  margin: 0;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
}

form, fieldset, input, button, select, optgroup, option, textarea, label, legend {
  margin: 0;
  padding: 0;
}

span, em, strong, dfn, code, samp, kbd, var, cite, abbr, acronym, q, br, ins, del, a, img, object, figure {
  margin: 0;
  padding: 0;
  border: 0;
}

i, address {
  font-style: normal;
}

ul, dl, ol, li {
  list-style-position: outside;
  list-style-type: none;
}

em {
  font-weight: bold;
}

img {
  vertical-align: top;
}

a {
  outline: none;
  text-decoration: none;
}

a img {
  border: none;
}

input[type=text],
input[type=button],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

/*++++++++++++++++++++++++++++++ 基本設定 ++++++++++++++++++++++++++++++*/
html {
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  color: #1A1A1A;
  font-size: 100%;
}

body {
  min-width: 100%;
  line-height: 1.6;
  overflow-x: hidden;
  color: #1A1A1A;
}

body,
input,
textarea,
select,
button {
  font-size: 16px;
  background-color: #ffffff;
}

a,
a:hover {
  text-decoration: none;
}

.isPC a {
  transition: all 0.3s ease;
}

a:hover {
  cursor: pointer;
}

img:not([class]) {
  width: 100%;
  height: auto;
}

img[src*=".svg"] {
  width: 100%;
  height: auto;
}

em {
  font-style: normal;
}

table {
  width: 100%;
  border-collapse: collapse;
}

@media screen and (max-width: 1360px) {
  html.isFixed,
  html.isFixed body {
    overflow: hidden;
  }
}
@media screen and (max-width: 1360px) {
  html.isFixed header::before {
    opacity: 1;
    visibility: visible;
  }
}
html header::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1010;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

a[href^="tel:"] {
  text-decoration: none;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    cursor: default;
  }
}

.c-arrLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  padding: 17px 55px;
  border: 4px solid #1A1A1A;
  position: relative;
  border-radius: 100vmax;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  background-color: #0058C6;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
}
@media screen and (max-width: 834px) {
  .c-arrLink {
    border-width: 3px;
  }
}
.c-arrLink .text {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
}
.c-arrLink::before, .c-arrLink::after {
  content: "";
  position: absolute;
  transition-property: all 0.8s linear 15ms;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
  background-color: #ffffff;
}
.c-arrLink::before {
  display: block;
  width: var(--line-w);
  height: 4px;
  border-radius: 100vmax;
  margin: auto;
  top: 0;
  bottom: 0;
  left: calc(100% - var(--side-w) - var(--mark-w));
}
@media screen and (max-width: 600px) {
  .c-arrLink::before {
    height: 3px;
    left: calc(100% - var(--side-w) - var(--mark-w) + 10px);
  }
}
.c-arrLink::after {
  display: inline-block;
  width: var(--arr-w);
  height: auto;
  aspect-ratio: 16/28;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% - var(--side-w) - var(--arr-w));
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("/assets/img/common/arr-r.svg");
          mask-image: url("/assets/img/common/arr-r.svg");
}
.isPC .c-arrLink:hover {
  cursor: pointer;
  background-color: #1A1A1A;
  color: #ffffff;
}
.isPC .c-arrLink:hover::before, .isPC .c-arrLink:hover::after {
  background-color: #ffffff;
}
.isPC .c-arrLink:hover::before {
  width: calc(var(--line-w) + 10px);
}
.isPC .c-arrLink:hover::after {
  transform: translate(10px, -50%);
}

body,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1rem, 0.966rem + 0.13vw, 1.125rem);
}

h1, h2, h3, h4, h5, h6, address, em {
  font-weight: 700;
}

a {
  color: #1A1A1A;
}

:root {
  --header: 96px;
  --cont-mi-l: 50px;
}

@media screen and (max-width: 1360px) {
  :root {
    --header: 80px;
    --cont-mi-l: 30px;
  }
}
@media screen and (max-width: 1060px) {
  :root {
    --header: 61px;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --cont-mi-l: 20px;
  }
}
@media screen and (max-width: 414px) {
  :root {
    --cont-mi-l: 16px;
  }
}
:root {
  --line-w: 22px;
  --mark-w: 34px;
  --arr-w: 16px;
  --side-w: 17px;
}

@media screen and (max-width: 600px) {
  :root {
    --line-w: 16px;
    --mark-w: 34px;
    --arr-w: 11px;
    --side-w: 12px;
  }
}
html header::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1010;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  background-color: #0058C6;
  height: calc(100vh - var(--header));
  top: var(--header);
}

.l-header {
  width: 100%;
  height: var(--header);
  display: flex;
  align-items: flex-start;
  align-items: stretch;
  max-width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1020;
  background-color: #ffffff;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  border-bottom: 6px solid #FFFF00;
}
@media screen and (max-width: 1060px) {
  .l-header {
    padding-right: 54px;
  }
}
.l-header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  width: 172px;
  height: 100%;
}
@media screen and (max-width: 1360px) {
  .l-header__logo {
    width: 130px;
  }
}
@media screen and (max-width: 600px) {
  .l-header__logo {
    width: 105px;
  }
}
.l-header__logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #0058C6;
  padding: 20px;
}
@media screen and (max-width: 1360px) {
  .l-header__logo a {
    padding: 16px;
  }
}
@media screen and (max-width: 1060px) {
  .l-header__logo a {
    padding: 13px;
  }
}
.l-header__logo img {
  display: block;
  height: auto;
  aspect-ratio: 132/55;
}
.l-header__catch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
  font-weight: 700;
  padding: 10px 16px;
  z-index: 1100;
}
@media screen and (max-width: 1060px) {
  .l-header__catch {
    padding: 10px 5px;
  }
}
.l-header__catch img {
  max-width: 226px;
  aspect-ratio: 452/130;
}
@media screen and (max-width: 1360px) {
  .l-header__catch img {
    max-width: 160px;
  }
}
@media screen and (max-width: 1060px) {
  .l-header__catch img {
    max-width: 145px;
  }
}
@media screen and (max-width: 600px) {
  .l-header__catch img {
    width: 130px;
  }
}
.l-header .chuden-g {
  display: flex;
  width: 128px;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  background-color: #F3F3F3;
  z-index: 1100;
}
@media screen and (max-width: 1060px) {
  .l-header .chuden-g {
    margin-left: auto;
  }
}
@media screen and (max-width: 414px) {
  .l-header .chuden-g {
    width: 69px;
    padding: 6px;
  }
}
.l-header .chuden-g span {
  display: flex;
}
.l-header .chuden-g img {
  max-width: 95px;
  aspect-ratio: 408/80;
}
.l-header__menu {
  margin-left: auto;
  line-height: 1.5;
  position: relative;
  z-index: 1121;
}
@media screen and (max-width: 1060px) {
  .l-header__menu {
    display: block;
    width: 100%;
    height: calc(var(--dvh, 1dvh) * 100);
    padding: var(--header) 0 0;
    margin-left: 0;
    position: fixed;
    top: 0;
    left: 0;
    left: -100%;
    transform: translateX(100%);
    transform: translateX(0);
    transition-timing-function: ease-out;
    transition-duration: 0.4s;
    z-index: 1021;
  }
  .l-header__menu.open {
    transform: translateX(100%);
    transition-timing-function: ease-out;
    transition-duration: 0.4s;
  }
}
.l-header__nav {
  display: flex;
  height: 100%;
}
@media screen and (max-width: 1060px) {
  .l-header__nav {
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
  }
  .open .l-header__nav {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
  }
}
.l-header__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 39px;
}
@media screen and (max-width: 1360px) {
  .l-header__list {
    gap: 26px;
  }
}
@media screen and (max-width: 1060px) {
  .open .l-header__list {
    gap: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 75px;
    width: 100%;
    backface-visibility: hidden;
  }
}
.l-header__item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 5px 0;
}
@media screen and (max-width: 1060px) {
  .open .l-header__item {
    width: 100%;
    flex-wrap: wrap;
    position: relative;
    backface-visibility: hidden;
  }
}
.l-header__link {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 19px;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
  z-index: 1290;
  color: #1A1A1A;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
}
@media screen and (max-width: 1360px) {
  .l-header__link {
    font-size: 18px;
  }
}
@media screen and (max-width: 1060px) {
  .l-header__link {
    flex: 1 0 0;
    justify-content: center;
    padding: 17px 0;
    font-size: 19px;
    z-index: 11;
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 15ms;
    color: #ffffff;
  }
}
.l-header .contact--btn {
  margin-left: -8px;
}
@media screen and (max-width: 1060px) {
  .open .l-header .contact--btn {
    margin: 20px auto 0 !important;
    border: none;
    max-width: 300px;
    border-radius: 0;
  }
}
.l-header .l-menuBtn {
  display: none;
  position: relative;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  position: fixed;
  right: 11px;
  top: 17px;
  z-index: 1022;
}
@media screen and (max-width: 1060px) {
  .l-header .l-menuBtn {
    display: block;
  }
}
.l-header .l-menuBtn--box, .l-header .l-menuBtn--box span {
  display: inline-block;
  transition: all 0.4s;
}
.l-header .l-menuBtn--box {
  width: 100%;
  height: 100%;
}
.l-header .l-menuBtn--box > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1A1A1A;
}
.l-header .l-menuBtn--box > span:nth-of-type(1) {
  top: 0;
}
.l-header .l-menuBtn--box > span:nth-of-type(2) {
  top: 9px;
}
.l-header .l-menuBtn--box > span:nth-of-type(3) {
  bottom: 0;
}
.l-header .l-menuBtn--box > span:nth-of-type(4) {
  display: none;
  top: 0;
  opacity: 0;
  transform: translateY(9.5px) rotate(-45deg);
}
.l-header .l-menuBtn--box > span:nth-of-type(5) {
  display: none;
  bottom: 0;
  opacity: 0;
  transform: translateY(-9.5px) rotate(45deg);
}
.isFixed .l-header .l-menuBtn--box span:nth-of-type(1) {
  display: none;
}
.isFixed .l-header .l-menuBtn--box span:nth-of-type(2) {
  display: none;
}
.isFixed .l-header .l-menuBtn--box span:nth-of-type(3) {
  display: none;
}
.isFixed .l-header .l-menuBtn--box span:nth-of-type(4) {
  display: block;
  opacity: 1;
}
.isFixed .l-header .l-menuBtn--box span:nth-of-type(5) {
  display: block;
  opacity: 1;
}

.l-footer {
  border-top: 4px solid #FFFF00;
  background-color: #0058C6;
  color: #ffffff;
  text-align: center;
}
.p-front .l-footer {
  margin-top: 100px;
}
@media screen and (max-width: 600px) {
  .l-footer {
    margin-top: 100px;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  max-width: 484px;
  padding: 68px 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .l-footer__inner {
    width: calc(100% - 20px);
    padding: 42px 0 17px;
  }
}
.l-footer a {
  color: #ffffff;
}
.l-footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}
@media screen and (max-width: 600px) {
  .l-footer__list {
    gap: 45px;
    margin-top: 42px;
  }
}
.l-footer__item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 4px 0;
  font-size: clamp(0.938rem, 0.817rem + 0.47vw, 1.375rem);
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .l-footer__item {
    padding: 3px 0;
  }
}
.l-footer__item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  width: 2px;
  height: 100%;
  background-color: #ffffff;
}
.l-footer__item:first-of-type::before {
  content: none;
}
.l-footer .contact--btn {
  margin: 50px auto 70px;
  align-self: center;
}
@media screen and (max-width: 600px) {
  .l-footer .contact--btn {
    margin: 40px 43px 60px;
    align-self: normal;
  }
}
.l-footer .contact--btn a {
  color: #1A1A1A;
}
@media screen and (max-width: 600px) {
  .l-footer .contact--btn__link {
    max-width: none;
    width: 100%;
    padding: 9px 46px 9px 31px;
  }
}
.l-footer .contact--btn__link .text {
  font-size: clamp(0.875rem, 0.806rem + 0.27vw, 1.125rem);
}
.l-footer .copyright {
  margin: 0 auto;
  font-size: clamp(0.75rem, 0.716rem + 0.13vw, 0.875rem);
  font-weight: 600;
}
:root {
  --leading-trim: calc((1em - 1lh) / 2);
  --gap: 40px;
  --contact-gap: calc(170 / 1160 * 100%);
}
@media screen and (max-width: 1360px) {
  :root {
    --gap: 30px;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --gap: 16px;
  }
}
@media screen and (max-width: 1360px) {
  :root {
    --contact-gap: 10%;
  }
}

body {
  max-width: 1920px;
}

.wrapper {
  padding-top: var(--header);
  width: 100%;
  height: auto;
}

.main {
  position: relative;
}

.c-area {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1060px) {
  .c-area {
    margin-right: 30px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .c-area {
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 414px) {
  .c-area {
    margin-right: 10px;
    margin-left: 10px;
  }
}

.bluebox {
  margin: 55px auto 200px;
}
@media screen and (max-width: 834px) {
  .bluebox {
    margin-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  .bluebox {
    margin-top: 5px;
    margin: 5px auto 130px;
  }
}
.p-front .bluebox {
  margin: 200px auto 185px;
}
@media screen and (max-width: 600px) {
  .p-front .bluebox {
    margin: 150px auto;
  }
}
.bluebox__inner {
  background-color: #E1F0FE;
  border-radius: var(--radius);
}
.p-front .bluebox__inner {
  padding-top: 46px;
  padding-bottom: 58px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .p-front .bluebox__inner {
    padding-top: 50px;
    padding-bottom: 38px;
  }
}

.hd--01 {
  padding-top: 50px;
  padding-bottom: 45px;
  background: linear-gradient(to right, #377ef4 0%, #479e94 100%);
  color: #ffffff;
}
@media screen and (max-width: 600px) {
  .hd--01 {
    padding-top: 70px;
    padding-bottom: 68px;
  }
}
.hd--01__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 388px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .hd--01__inner {
    max-width: 263px;
  }
}
.hd--01__jp {
  display: inline-block;
  padding-bottom: 6px;
  font-size: clamp(2.125rem, 1.85rem + 1.06vw, 3.125rem);
  font-weight: 800;
  position: relative;
}
@media screen and (max-width: 600px) {
  .hd--01__jp {
    line-height: 1.4411764706;
  }
}
.hd--01__jp::before, .hd--01__jp::after {
  content: "";
  display: inline-block;
  background-color: #FFFF00;
  position: absolute;
  bottom: 0;
}
.hd--01__jp::before {
  width: calc(100% - 36px);
  height: 5px;
  left: 0;
  border-radius: 100vmax;
}
@media screen and (max-width: 600px) {
  .hd--01__jp::before {
    width: calc(100% - 26px);
    height: 4px;
  }
}
.hd--01__jp::after {
  width: 40px;
  height: auto;
  aspect-ratio: 66/126;
  right: 0;
  bottom: 0;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("/assets/img/common/mark.svg");
          mask-image: url("/assets/img/common/mark.svg");
}
@media screen and (max-width: 600px) {
  .hd--01__jp::after {
    width: 29px;
  }
}
@media screen and (max-width: 600px) {
  .hd--01__jp {
    padding-bottom: 11px;
  }
}
.hd--01__jp::before {
  width: 100%;
}
.hd--01__jp::after {
  right: -35px;
}
@media screen and (max-width: 600px) {
  .hd--01__jp::after {
    right: -26px;
  }
}
.hd--01__en {
  display: block;
  margin-top: 12px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.313rem, 1.123rem + 0.73vw, 2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
@media screen and (max-width: 600px) {
  .hd--01__en {
    margin-top: 7px;
  }
}

.hd--02 {
  letter-spacing: 0.05em;
}
.hd--02__jp {
  display: inline-block;
  padding-bottom: 6px;
  font-size: clamp(2.125rem, 1.85rem + 1.06vw, 3.125rem);
  font-weight: 800;
  position: relative;
  padding-right: 72px;
}
@media screen and (max-width: 600px) {
  .hd--02__jp {
    line-height: 1.4411764706;
  }
}
.hd--02__jp::before, .hd--02__jp::after {
  content: "";
  display: inline-block;
  background-color: #FFFF00;
  position: absolute;
  bottom: 0;
}
.hd--02__jp::before {
  width: calc(100% - 36px);
  height: 5px;
  left: 0;
  border-radius: 100vmax;
}
@media screen and (max-width: 600px) {
  .hd--02__jp::before {
    width: calc(100% - 26px);
    height: 4px;
  }
}
.hd--02__jp::after {
  width: 40px;
  height: auto;
  aspect-ratio: 66/126;
  right: 0;
  bottom: 0;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("/assets/img/common/mark.svg");
          mask-image: url("/assets/img/common/mark.svg");
}
@media screen and (max-width: 600px) {
  .hd--02__jp::after {
    width: 29px;
  }
}
@media screen and (max-width: 600px) {
  .hd--02__jp {
    padding-right: 60px;
  }
}
.hd--02__en {
  display: block;
  margin-top: 12px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.313rem, 1.123rem + 0.73vw, 2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .hd--02__en {
    margin-top: 7px;
  }
}
@media screen and (max-width: 600px) {
  .hd--02__en {
    margin-top: 14px;
  }
}

.breadcrumb {
  padding: 10px;
  font-size: clamp(0.813rem, 0.778rem + 0.13vw, 0.938rem);
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .breadcrumb {
    padding: 20px 15px;
  }
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li:not(:first-of-type) {
  position: relative;
  padding-left: 2em;
  display: inline;
}
.breadcrumb ul li:not(:first-of-type)::before, .breadcrumb ul li:not(:first-of-type)::after {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0.7em;
  width: 8.4px;
  height: 1px;
  border-radius: 100vmax;
  transform-origin: calc(100% - 0.5px) 50%;
  background-color: #1A1A1A;
}
.breadcrumb ul li:not(:first-of-type)::before {
  transform: rotate(47.75deg);
}
.breadcrumb ul li:not(:first-of-type)::after {
  transform: rotate(-47.75deg);
}

.back {
  display: flex;
  justify-self: center;
  width: 100%;
}
.back .c-arrLink {
  margin: auto;
}
@media screen and (max-width: 600px) {
  .back .c-arrLink {
    max-width: 270px;
    padding: 6px 55px;
  }
}
.back .c-arrLink::before {
  left: auto;
  right: calc(100% - var(--side-w) - var(--mark-w));
}
@media screen and (max-width: 600px) {
  .back .c-arrLink::before {
    right: calc(100% - var(--side-w) - var(--mark-w) + 10px);
  }
}
.back .c-arrLink::after {
  left: auto;
  right: calc(100% - var(--side-w) - var(--arr-w));
  transform: scale(-1, 1) translateY(-50%);
}
.isPC .back .c-arrLink:hover::after {
  transform: scale(-1, 1) translate(10px, -50%);
}

.contact--btn {
  padding: 0;
  transform: none;
  position: relative;
}
.contact--btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  padding: 17px 55px;
  border: 4px solid #1A1A1A;
  position: relative;
  border-radius: 100vmax;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  color: #1A1A1A;
  background-color: #FFFF00;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
  width: 212px;
  padding: 13px 46px 13px 31px;
  box-shadow: none;
  letter-spacing: 0em;
}
@media screen and (max-width: 834px) {
  .contact--btn__link {
    border-width: 3px;
  }
}
.contact--btn__link .text {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
}
.contact--btn__link::before, .contact--btn__link::after {
  content: "";
  position: absolute;
  transition-property: all 0.8s linear 15ms;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
  background-color: #1A1A1A;
}
.contact--btn__link::before {
  display: block;
  width: var(--line-w);
  height: 4px;
  border-radius: 100vmax;
  margin: auto;
  top: 0;
  bottom: 0;
  left: calc(100% - var(--side-w) - var(--mark-w));
}
@media screen and (max-width: 600px) {
  .contact--btn__link::before {
    height: 3px;
    left: calc(100% - var(--side-w) - var(--mark-w) + 10px);
  }
}
.contact--btn__link::after {
  display: inline-block;
  width: var(--arr-w);
  height: auto;
  aspect-ratio: 16/28;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% - var(--side-w) - var(--arr-w));
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("/assets/img/common/arr-r.svg");
          mask-image: url("/assets/img/common/arr-r.svg");
}
.isPC .contact--btn__link:hover {
  cursor: pointer;
  background-color: #1A1A1A;
  color: #FFFF00;
}
.isPC .contact--btn__link:hover::before, .isPC .contact--btn__link:hover::after {
  background-color: #FFFF00;
}
.isPC .contact--btn__link:hover::before {
  width: calc(var(--line-w) + 10px);
}
.isPC .contact--btn__link:hover::after {
  transform: translate(10px, -50%);
}
@media screen and (max-width: 1360px) {
  .contact--btn__link {
    width: 190px;
    padding: 12px 36px 12px 21px;
  }
}
@media screen and (max-width: 600px) {
  .contact--btn__link {
    padding: 15px 46px 15px 31px;
  }
}
.contact--btn__link .text {
  font-size: clamp(1rem, 0.966rem + 0.13vw, 1.125rem);
}
.contact--btn__link::before {
  width: 18px;
  height: 3px;
  left: calc(100% - 14px - 28px);
}
.contact--btn__link::after {
  width: 12px;
  left: calc(100% - 12px - 14px);
}

.nf {
  max-width: 900px;
}
.nf .bluebox__inner {
  padding: 100px 50px 70px;
  margin-bottom: 103px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .nf .bluebox__inner {
    padding: 55px 20px 70px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 63px;
    border-radius: 37px;
  }
}
.nf__head {
  font-size: 90px;
  font-weight: 800;
  line-height: 1;
  position: relative;
  display: inline-block;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .nf__head {
    font-size: 65px;
  }
}
.nf__head::before, .nf__head::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: auto;
  aspect-ratio: 66/126;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("/assets/img/common/mark.svg");
          mask-image: url("/assets/img/common/mark.svg");
  background-color: #FFFF00;
}
@media screen and (max-width: 600px) {
  .nf__head::before, .nf__head::after {
    width: 29px;
  }
}
.nf__head::before {
  transform: scale(-1, 1);
  margin-right: 42px;
}
@media screen and (max-width: 600px) {
  .nf__head::before {
    margin-right: 37px;
  }
}
.nf__head::after {
  margin-left: 42px;
}
@media screen and (max-width: 600px) {
  .nf__head::after {
    margin-left: 37px;
  }
}
.nf__ttl {
  margin-top: 80px;
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .nf__ttl {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 20px;
  }
}
.nf__ttl .br {
  display: inline;
}
@media screen and (max-width: 600px) {
  .nf__ttl .br {
    display: block;
  }
}
.nf__txt {
  font-size: 18px;
  line-height: 2.2777777778;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .nf__txt {
    font-size: 16px;
    line-height: 2.3125;
    text-align: left;
  }
}
.nf__txt .br {
  display: block;
}

.c-page-top {
  position: sticky;
  right: 0;
  bottom: 80px;
  width: 100%;
  height: 1px;
  z-index: 10;
}
.p-front .c-page-top {
  bottom: 180px;
}
.c-page-top__link {
  overflow: hidden;
  display: block;
  position: absolute;
  right: 60px;
  bottom: -40px;
  width: 80px;
  height: 80px;
  background-color: #0058C6;
  border: 4px solid #FFFF00;
  border-radius: 40px;
  text-indent: -200px;
}
.p-front .c-page-top__link {
  bottom: -140px;
}
.c-page-top__link::before {
  position: absolute;
  left: calc(50% - 11px);
  top: 23px;
  display: block;
  content: "";
  width: 23px;
  height: 12px;
  background: url(/assets/img/common/arrow_pagetop.svg) no-repeat;
  background-size: 100%;
  transition: 0.4s transform;
}
.c-page-top__link::after {
  position: absolute;
  left: calc(50% - 1px);
  bottom: 22px;
  display: block;
  content: "";
  width: 3px;
  height: 17px;
  background: #fff;
  transition: 0.4s height;
  border-radius: 2px;
}
.c-page-top__link:hover::before {
  transform: translateY(-5px);
}
.c-page-top__link:hover::after {
  height: 23px;
}
@media (max-width: 600px) {
  .c-page-top {
    bottom: 220px;
  }
  .c-page-top__link {
    bottom: -130px;
    right: 10vw;
    width: 60px;
    height: 60px;
  }
  .c-page-top__link::before {
    top: 12px;
  }
  .c-page-top__link::after {
    bottom: 13px;
  }
}

.p-front {
  background-size: 17.65625vw auto;
}
@media screen and (max-width: 600px) {
  .p-front {
    background-position: 60px 40px;
    background-size: 24.71875vw auto;
  }
}
.p-front--top {
  display: flex;
  flex-direction: column-reverse;
}
.p-front__mv {
  color: #ffffff;
  background: linear-gradient(to right, #377ef4 0%, #479e94 100%);
}
.p-front__mv--top, .p-front__mv--btm {
  display: flex;
}
.p-front__mv--top .p-front__mv--left,
.p-front__mv--top .p-front__mv--right, .p-front__mv--btm .p-front__mv--left,
.p-front__mv--btm .p-front__mv--right {
  align-items: center;
  justify-content: center;
  position: relative;
  width: 39.8958333333%;
}
@media screen and (max-width: 1060px) {
  .p-front__mv--top .p-front__mv--left,
  .p-front__mv--top .p-front__mv--right, .p-front__mv--btm .p-front__mv--left,
  .p-front__mv--btm .p-front__mv--right {
    width: 100%;
  }
}
@media screen and (max-width: 1060px) {
  .p-front__mv--top .p-front__mv--left br,
  .p-front__mv--top .p-front__mv--right br, .p-front__mv--btm .p-front__mv--left br,
  .p-front__mv--btm .p-front__mv--right br {
    display: none;
  }
}
@media screen and (max-width: 834px) {
  .p-front__mv--top .p-front__mv--left br,
  .p-front__mv--top .p-front__mv--right br, .p-front__mv--btm .p-front__mv--left br,
  .p-front__mv--btm .p-front__mv--right br {
    display: block;
  }
}
.p-front__mv--top .center--img, .p-front__mv--btm .center--img {
  width: 20.2083333333%;
}
@media screen and (max-width: 1060px) {
  .p-front__mv--top {
    padding-top: 60px;
  }
}
.p-front__mv--top .center--img {
  align-self: flex-end;
}
.p-front__mv--top .p-front__mv--left,
.p-front__mv--top .p-front__mv--right {
  padding: 10px;
}
@media screen and (max-width: 1060px) {
  .p-front__mv--top .p-front__mv--left,
  .p-front__mv--top .p-front__mv--right {
    padding: 40px 10px;
  }
}
@media screen and (max-width: 600px) {
  .p-front__mv--top .p-front__mv--left,
  .p-front__mv--top .p-front__mv--right {
    padding: 15px 10px;
  }
}
@media screen and (max-width: 1060px) {
  .p-front__mv--top {
    flex-direction: column;
  }
}
.p-front__mv .sp-img {
  display: none;
  content-visibility: hidden;
}
@media screen and (max-width: 1060px) {
  .p-front__mv .sp-img {
    display: block;
    content-visibility: visible;
  }
}
@media screen and (max-width: 1060px) {
  .p-front__mv .pc-img {
    display: none !important;
    content-visibility: hidden;
  }
}
.p-front__mv__text {
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.16);
}
.p-front__mv__text .fs-L {
  font-size: 2.9375rem;
  margin-left: 0.075em;
  margin-right: 0.075em;
}
@media screen and (max-width: 1600px) {
  .p-front__mv__text .fs-L {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1230px) {
  .p-front__mv__text .fs-L {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 1060px) {
  .p-front__mv__text .fs-L {
    font-size: 1.5rem;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 600px) {
  .p-front__mv__text .fs-L {
    font-size: 1.5rem;
  }
}
.p-front__mv__text .fs-S {
  margin: 0 0.125em;
  font-size: 2.4375rem;
}
@media screen and (max-width: 1600px) {
  .p-front__mv__text .fs-S {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1230px) {
  .p-front__mv__text .fs-S {
    font-size: 1.5rem;
    margin: 0 0.05em;
  }
}
@media screen and (max-width: 1060px) {
  .p-front__mv__text .fs-S {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-front__mv__text .fs-S {
    font-size: 1.25rem;
  }
}
.p-front__mv--mdl p {
  display: flex;
  flex-wrap: nowrap;
}
.p-front__mv--mdl p img {
  width: auto;
  width: 20.2083333333%;
}
.p-front__mv--mdl p img:first-of-type, .p-front__mv--mdl p img:last-of-type {
  width: 19.6875%;
}
.p-front__mv .p-front__mv--left,
.p-front__mv .p-front__mv--right {
  display: flex;
  position: relative;
}
.p-front__mv--btm {
  position: relative;
}
@media screen and (max-width: 600px) {
  .p-front__mv--btm {
    display: block;
    margin-top: -5px;
  }
}
.p-front__mv--btm .p-front__mv__illust--sp {
  position: relative;
  display: none;
  content-visibility: hidden;
}
@media screen and (max-width: 600px) {
  .p-front__mv--btm .p-front__mv__illust--sp {
    display: block;
    content-visibility: visible;
    width: 100%;
  }
}
.p-front__mv--btm .p-front__mv--left {
  justify-content: flex-end;
  padding-right: 30px;
}
.p-front__mv--btm .p-front__mv--right {
  justify-content: flex-start;
  padding-left: 30px;
}
.p-front__mv--btm .scroll {
  width: 64px;
  height: 88px;
  position: absolute;
  left: 50%;
  bottom: -2px;
  bottom: -3px;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .p-front__mv--btm .scroll {
    width: 50px;
    height: 65px;
  }
}
.p-front__mv__illust {
  max-width: 500px;
  width: 26.0416666667vw;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 1060px) {
  .p-front__mv__illust {
    position: relative;
    width: calc((100vw - 100px) / 2);
  }
}
@media screen and (max-width: 600px) {
  .p-front__mv__illust {
    display: none;
  }
}
.p-front .fixbnr {
  width: 243px;
  height: 168px;
  position: fixed;
  left: 0;
  bottom: 70px;
  z-index: 10;
  font-feature-settings: "palt";
}
@media screen and (max-width: 414px) {
  .p-front .fixbnr {
    width: calc(100vw - 36px);
    height: 72px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
}
.p-front .fixbnr__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-left: 9.0534979424%;
  padding-bottom: 13px;
  border: 8px solid #FFFF00;
  border-left: none;
  line-height: 1;
  font-weight: 800;
  border-radius: 0 20px 20px 0;
  color: #ffffff;
  background: linear-gradient(to right, #377ef4 0%, #479e94 100%);
}
@media screen and (max-width: 414px) {
  .p-front .fixbnr__link {
    flex-direction: row;
    gap: 15px;
    align-items: center;
    border-radius: 25px 25px 0 0;
    border: 5px solid #FFFF00;
    border-bottom: none;
    padding: 0;
  }
}
.p-front .fixbnr__link .txt1 {
  font-size: 20px;
  letter-spacing: 0.125em;
}
@media screen and (max-width: 414px) {
  .p-front .fixbnr__link .txt1 {
    font-size: 15px;
  }
}
.p-front .fixbnr__link .txt23 {
  display: flex;
  align-items: center;
  margin-top: 27px;
}
@media screen and (max-width: 414px) {
  .p-front .fixbnr__link .txt23 {
    margin-top: 1px;
  }
}
.p-front .fixbnr__link .txt2 {
  display: flex;
  align-items: center;
  margin-right: 8px;
  font-size: 35px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 414px) {
  .p-front .fixbnr__link .txt2 {
    font-size: 22px;
  }
}
.p-front .fixbnr__link .txt3 {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-size: 32px;
  letter-spacing: 0.1em;
  position: relative;
  color: #1A1A1A;
}
@media screen and (max-width: 414px) {
  .p-front .fixbnr__link .txt3 {
    font-size: 22px;
  }
}
.p-front .fixbnr__link .txt3::after {
  content: "";
  display: block;
  width: calc(100% + 7px);
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100vmax;
  background-color: #FFFF00;
}
@media screen and (max-width: 414px) {
  .p-front .fixbnr__link .txt3::after {
    width: calc(100% + 5px);
  }
}
.p-front .fixbnr__link .txt3--inner {
  position: relative;
  z-index: 1;
}
.p-front__reform {
  padding-top: 27px;
  position: relative;
  padding-bottom: 102px;
  background: linear-gradient(to right, #377ef4 0%, #479e94 100%);
}
@media screen and (max-width: 600px) {
  .p-front__reform {
    padding-bottom: 47px;
  }
}
.p-front__reform .reform--img {
  width: 100%;
  position: relative;
  text-align: center;
}
.p-front__reform .reform--img::before, .p-front__reform .reform--img::after {
  content: "";
  display: block;
  width: calc(100vw - 1200px);
  height: 10px;
  position: absolute;
  background-color: #FFFF00;
}
.p-front__reform .reform--img::before {
  left: 0;
  transform: translateX(-50%);
  top: 120px;
}
.p-front__reform .reform--img::after {
  right: 0;
  transform: translateX(50%);
  top: 216px;
}
.p-front__reform .reform--img picture {
  width: 100%;
  max-width: 1920px;
  max-width: 1200px;
}
.p-front__reform .reform--img picture img,
.p-front__reform .reform--img picture source {
  max-width: 1200px;
}
.p-front__reform .contact--btn {
  display: flex;
  justify-self: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
}
.p-front__reform .contact--btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  padding: 17px 55px;
  border: 4px solid #1A1A1A;
  position: relative;
  border-radius: 100vmax;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  color: #1A1A1A;
  background-color: #FFFF00;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
  margin: auto;
  max-width: 440px;
  padding: 32px 55px;
  border-width: 6px;
  --side-w: 30px;
}
@media screen and (max-width: 834px) {
  .p-front__reform .contact--btn__link {
    border-width: 3px;
  }
}
.p-front__reform .contact--btn__link .text {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
}
.p-front__reform .contact--btn__link::before, .p-front__reform .contact--btn__link::after {
  content: "";
  position: absolute;
  transition-property: all 0.8s linear 15ms;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
  background-color: #1A1A1A;
}
.p-front__reform .contact--btn__link::before {
  display: block;
  width: var(--line-w);
  height: 4px;
  border-radius: 100vmax;
  margin: auto;
  top: 0;
  bottom: 0;
  left: calc(100% - var(--side-w) - var(--mark-w));
}
@media screen and (max-width: 600px) {
  .p-front__reform .contact--btn__link::before {
    height: 3px;
    left: calc(100% - var(--side-w) - var(--mark-w) + 10px);
  }
}
.p-front__reform .contact--btn__link::after {
  display: inline-block;
  width: var(--arr-w);
  height: auto;
  aspect-ratio: 16/28;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% - var(--side-w) - var(--arr-w));
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("/assets/img/common/arr-r.svg");
          mask-image: url("/assets/img/common/arr-r.svg");
}
.isPC .p-front__reform .contact--btn__link:hover {
  cursor: pointer;
  background-color: #1A1A1A;
  color: #FFFF00;
}
.isPC .p-front__reform .contact--btn__link:hover::before, .isPC .p-front__reform .contact--btn__link:hover::after {
  background-color: #FFFF00;
}
.isPC .p-front__reform .contact--btn__link:hover::before {
  width: calc(var(--line-w) + 10px);
}
.isPC .p-front__reform .contact--btn__link:hover::after {
  transform: translate(10px, -50%);
}
@media screen and (max-width: 600px) {
  .p-front__reform .contact--btn__link {
    --side-w: 12px;
  }
}
@media screen and (max-width: 834px) {
  .p-front__reform .contact--btn__link {
    padding: 26px 55px;
  }
}
@media screen and (max-width: 600px) {
  .p-front__reform .contact--btn__link {
    width: auto;
    max-width: none;
    padding: 18px 50px;
    margin: 0 auto;
  }
}
.p-front__reform .contact--btn__link .text {
  font-size: clamp(1.125rem, 1.022rem + 0.4vw, 1.5rem);
  font-weight: 900;
}
.p-front .bluebox .hd--02__jp, .p-front .bluebox .hd--02__en {
  padding-left: 80px;
}
@media screen and (max-width: 1060px) {
  .p-front .bluebox .hd--02__jp, .p-front .bluebox .hd--02__en {
    padding-left: 45px;
  }
}
@media screen and (max-width: 600px) {
  .p-front .bluebox .hd--02__jp, .p-front .bluebox .hd--02__en {
    padding-left: 15px;
  }
}
.p-front .bluebox .more {
  display: flex;
  justify-self: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
}
@media screen and (max-width: 600px) {
  .p-front .bluebox .more {
    max-width: 270px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
}
.p-front .bluebox .more .c-arrLink {
  margin: auto;
}
@media screen and (max-width: 600px) {
  .p-front .bluebox .more .c-arrLink {
    padding: 7px 55px;
  }
}
.p-front .policy {
  margin-bottom: 120px;
}
@media screen and (max-width: 600px) {
  .p-front .policy {
    margin-bottom: 100px;
  }
}
.p-front .policy__top {
  width: calc(100vw - (100vw - 1170px) / 2);
  margin-right: auto;
  display: grid;
  -moz-column-gap: 37px;
       column-gap: 37px;
  grid-template-columns: 1fr 484px;
}
@media screen and (max-width: 1230px) {
  .p-front .policy__top {
    display: block;
    width: calc(100vw - 60px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .p-front .policy__top {
    width: calc(100vw - 40px);
  }
}
.p-front .policy__top .hd--02__jp,
.p-front .policy__top .hd--02__en,
.p-front .policy__top .policy__top__text {
  padding-left: calc((100vw - 1170px) / 2);
}
@media screen and (max-width: 1230px) {
  .p-front .policy__top .hd--02__jp,
  .p-front .policy__top .hd--02__en,
  .p-front .policy__top .policy__top__text {
    padding-left: 0;
  }
}
.p-front .policy__top .hd--02 {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 1230px) {
  .p-front .policy__top .hd--02 .hd--02__jp::before {
    width: calc(100% - 36px);
    left: -30px;
  }
}
@media screen and (max-width: 600px) {
  .p-front .policy__top .hd--02 .hd--02__jp::before {
    left: -20px;
  }
}
@media screen and (max-width: 600px) {
  .p-front .policy__top .hd--02 .hd--02__jp::after {
    right: 30px;
  }
}
.p-front .policy__top__text {
  grid-column: 1/2;
  grid-row: 2/3;
}
.p-front .policy__top__text h3 {
  margin: 50px 0;
  font-size: clamp(1.5rem, 1.397rem + 0.4vw, 1.875rem);
  font-weight: 700;
  color: #0058C6;
}
@media screen and (max-width: 600px) {
  .p-front .policy__top__text h3 {
    margin: 50px 0 30px;
  }
}
.p-front .policy__top__text p {
  margin: var(--leading-trim) 0;
  font-size: clamp(1rem, 0.966rem + 0.13vw, 1.125rem);
  line-height: 2.2777777778;
}
.p-front .policy__top__img {
  grid-column: 2/3;
  grid-row: 1/3;
  align-content: flex-end;
}
@media screen and (max-width: 1230px) {
  .p-front .policy__top__img {
    max-width: 480px;
    margin: 40px auto 0;
  }
}
.p-front .policy .anc {
  margin-bottom: 110px;
}
.p-front .policy__sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 80px;
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec {
    flex-wrap: wrap;
    margin-top: 50px;
  }
}
@media screen and (max-width: 600px) {
  .p-front .policy__sec {
    gap: 30px;
    margin-top: 40px;
  }
}
.p-front .policy__sec__ttl {
  flex: 1;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec__ttl {
    flex: auto;
    width: 100%;
  }
}
.p-front .policy__sec__ttl::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #FFFF00;
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec__ttl::before {
    content: none;
  }
}
.p-front .policy__sec__hd {
  font-size: clamp(1.625rem, 1.384rem + 0.93vw, 2.5rem);
  font-weight: 900;
  position: relative;
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec__hd {
    width: auto;
    padding-top: 30px;
  }
  .p-front .policy__sec__hd br {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .p-front .policy__sec__hd {
    padding-bottom: 5px;
    padding-top: 20px;
  }
}
.p-front .policy__sec__hd::before {
  content: none;
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec__hd::before {
    content: "";
    display: inline-block;
    width: calc(100% + 5px);
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #FFFF00;
  }
}
.p-front .policy__sec__hd::after {
  content: "";
  display: inline-block;
  width: 46px;
  height: auto;
  aspect-ratio: 92/176;
  position: absolute;
  bottom: 0;
  background: url(/assets/img/front/policy__sec__hd.webp) no-repeat 0 0;
  background-size: contain;
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec__hd::after {
    width: 34px;
  }
}
@media screen and (max-width: 600px) {
  .p-front .policy__sec__hd::after {
    width: 30px;
  }
}
.p-front .policy__sec__contents {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 71.1458333333%;
  padding: 60px;
  background-color: #E1F0FE;
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec__contents {
    width: 100%;
    padding: 45px;
    gap: 40px;
  }
}
@media screen and (max-width: 834px) {
  .p-front .policy__sec__contents {
    flex-wrap: wrap;
    flex-direction: column-reverse !important;
    padding: 30px;
    width: calc(100% - 25px);
  }
}
@media screen and (max-width: 600px) {
  .p-front .policy__sec__contents {
    gap: 30px;
  }
}
.p-front .policy__sec__txt {
  flex: 1;
}
.p-front .policy__sec__txt h4 {
  margin-bottom: 30px;
  font-size: clamp(1.375rem, 1.272rem + 0.4vw, 1.75rem);
  line-height: 1.4285714286;
}
@media screen and (max-width: 600px) {
  .p-front .policy__sec__txt h4 {
    margin-bottom: 20px;
  }
}
.p-front .policy__sec__txt p {
  font-size: clamp(1rem, 0.966rem + 0.13vw, 1.125rem);
  line-height: 2.2777777778;
}
.p-front .policy__sec__img {
  width: 382px;
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec__img {
    width: 300px;
  }
}
@media screen and (max-width: 600px) {
  .p-front .policy__sec__img {
    width: 100%;
  }
}
.p-front .policy__sec:nth-child(odd) .policy__sec__ttl {
  justify-content: flex-end;
}
.p-front .policy__sec:nth-child(odd) .policy__sec__hd {
  margin-left: auto;
  padding-left: 60px;
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec:nth-child(odd) .policy__sec__hd {
    padding-left: 70px;
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (max-width: 600px) {
  .p-front .policy__sec:nth-child(odd) .policy__sec__hd {
    padding-left: 60px;
  }
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec:nth-child(odd) .policy__sec__hd::before {
    left: -5px;
  }
}
.p-front .policy__sec:nth-child(odd) .policy__sec__hd::after {
  left: 0;
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec:nth-child(odd) .policy__sec__hd::after {
    left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .p-front .policy__sec:nth-child(odd) .policy__sec__hd::after {
    left: 20px;
  }
}
.p-front .policy__sec:nth-child(odd) .policy__sec__contents {
  padding-right: calc((100vw - 1290px) / 2);
  border-radius: 40px 0 0 40px;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec:nth-child(odd) .policy__sec__contents {
    margin-left: 25px;
    padding-right: 30px;
  }
}
.p-front .policy__sec:nth-child(even) {
  flex-direction: row-reverse;
}
.p-front .policy__sec:nth-child(even) .policy__sec__hd {
  padding-right: 60px;
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec:nth-child(even) .policy__sec__hd {
    padding-right: 70px;
    margin-left: auto;
  }
}
.p-front .policy__sec:nth-child(even) .policy__sec__hd::after {
  right: 0;
  transform: scale(-1, 1);
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec:nth-child(even) .policy__sec__hd::after {
    right: 30px;
  }
}
@media screen and (max-width: 600px) {
  .p-front .policy__sec:nth-child(even) .policy__sec__hd::after {
    right: 20px;
  }
}
.p-front .policy__sec:nth-child(even) .policy__sec__contents {
  padding-left: calc((100vw - 1290px) / 2);
  border-radius: 0 40px 40px 0;
}
@media screen and (max-width: 1360px) {
  .p-front .policy__sec:nth-child(even) .policy__sec__contents {
    padding-left: 30px;
    margin-right: 25px;
  }
}
.p-front .anshin {
  padding: 80px 0 87px;
  background: linear-gradient(to right, rgba(55, 126, 244, 0.5) 0%, rgba(71, 158, 148, 0.5) 100%);
}
@media screen and (max-width: 600px) {
  .p-front .anshin {
    padding: 57px 0 62px;
  }
}
.p-front .anshin__hd {
  text-align: center;
  color: #ffffff;
  font-size: clamp(1.563rem, 1.133rem + 1.66vw, 3.125rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}
.p-front .anshin__hd span {
  display: inline-block;
}
.p-front .anshin__hd span + span {
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .p-front .anshin__hd span + span {
    margin-top: 15px;
  }
}
.p-front .anshin__hd .en {
  width: 120px;
  aspect-ratio: 120/100;
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  .p-front .anshin__hd .en {
    width: 66px;
    margin-right: 5px;
  }
}
.p-front .anshin__hd .en img {
  width: 100%;
  aspect-ratio: 120/100;
  vertical-align: bottom;
}
.p-front .anshin__hd .br {
  display: block;
}
.p-front .anshin__list {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  position: relative;
  --anshin-btwn: 23px;
  --anshin-top: 0;
}
@media screen and (max-width: 1060px) {
  .p-front .anshin__list {
    --anshin-btwn: 16px;
    --anshin-top: 25%;
  }
}
@media screen and (max-width: 600px) {
  .p-front .anshin__list {
    --anshin-top: 55%;
    --anshin-btwn: 0;
    --anshin-btwn-v: 42px;
    margin-top: 5px;
  }
}
.p-front .anshin__list::before, .p-front .anshin__list::after {
  content: "";
  width: calc(100% - 1920px);
  height: 5px;
  background-color: #FFFF00;
  position: absolute;
  top: 121px;
}
.p-front .anshin__list::before {
  left: 0;
}
.p-front .anshin__list::after {
  right: 0;
}
@media screen and (max-width: 600px) {
  .p-front .anshin__list {
    flex-direction: column;
  }
  .p-front .anshin__list::before {
    content: "";
    display: block;
    width: 4px;
    height: var(--anshin-btwn-v);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% + var(--anshin-btwn-v) / 2));
  }
  .p-front .anshin__list::after {
    content: none;
  }
}
.p-front .anshin__item {
  flex: 1;
  padding-top: 62px;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1060px) {
  .p-front .anshin__item {
    background-size: 170% auto;
  }
}
@media screen and (max-width: 834px) {
  .p-front .anshin__item {
    background-size: 185% auto;
  }
}
@media screen and (max-width: 600px) {
  .p-front .anshin__item {
    padding-top: var(--anshin-btwn-v);
    background-size: auto 50%;
  }
}
.p-front .anshin__item:first-of-type {
  align-content: flex-end;
  background-image: url(/assets/img/front/anshin_bg-01.webp);
  background-position: right var(--anshin-top);
  padding-right: var(--anshin-btwn);
}
@media screen and (max-width: 600px) {
  .p-front .anshin__item:first-of-type {
    background-image: url(/assets/img/front/anshin_bg-01-sp.webp);
    background-position: right calc(225px + (100vw - 225px) / 2) top var(--anshin-top);
  }
}
.p-front .anshin__item:first-of-type .anshin__link {
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .p-front .anshin__item:first-of-type .anshin__link {
    margin: 0 auto;
  }
}
.p-front .anshin__item:first-of-type .anshin__link::after {
  -webkit-mask-image: url("/assets/img/front/anshin_img-1.svg");
          mask-image: url("/assets/img/front/anshin_img-1.svg");
}
.p-front .anshin__item:last-of-type {
  padding-left: var(--anshin-btwn);
  background-image: url(/assets/img/front/anshin_bg-02.webp);
  background-position: left var(--anshin-top);
}
@media screen and (max-width: 600px) {
  .p-front .anshin__item:last-of-type {
    background-image: url(/assets/img/front/anshin_bg-02-sp.webp);
    background-position: left calc(225px + (100vw - 225px) / 2) top var(--anshin-top);
  }
}
@media screen and (max-width: 600px) {
  .p-front .anshin__item:last-of-type .anshin__link {
    margin: 0 auto;
  }
}
.p-front .anshin__item:last-of-type .anshin__link::after {
  -webkit-mask-image: url("/assets/img/front/anshin_img-2.svg");
          mask-image: url("/assets/img/front/anshin_img-2.svg");
}
.p-front .anshin__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 144px;
  border: 6px solid #FFFF00;
  border-radius: 20px;
  font-size: clamp(1rem, 0.794rem + 0.8vw, 1.75rem);
  font-weight: 700;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
}
@media screen and (max-width: 1060px) {
  .p-front .anshin__link {
    width: 29.2452830189vw;
    height: 120px;
  }
}
@media screen and (max-width: 834px) {
  .p-front .anshin__link {
    width: 37.7358490566vw;
  }
}
@media screen and (max-width: 600px) {
  .p-front .anshin__link {
    width: 225px;
    height: 76px;
    border-width: 3px;
  }
}
.p-front .anshin__link::after {
  content: "";
  display: block;
  width: auto;
  height: 69.4444444444%;
  aspect-ratio: 1/1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: rgba(255, 255, 0, 0.5);
}
@media screen and (max-width: 600px) {
  .p-front .anshin__link::after {
    height: 45px;
    margin-top: -3px;
  }
}
.isPC .p-front .anshin__link:hover {
  background-color: #FFFF00;
}
.isPC .p-front .anshin__link:hover::after {
  background-color: #ffffff;
}
.isPC .p-front .anshin__link:hover .btn {
  color: #ffffff;
  background-color: #0058C6;
}
.p-front .anshin__txt {
  position: relative;
  z-index: 1;
}
.p-front .anshin .btn {
  padding: 0 12px;
  margin: 7px auto 0;
  border: 4px solid #0058C6;
  border-radius: 100vmax;
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: clamp(0.813rem, 0.778rem + 0.13vw, 0.938rem);
  font-weight: 700;
  background-color: #ffffff;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
}
@media screen and (max-width: 600px) {
  .p-front .anshin .btn {
    padding: 1px 12px;
    margin-top: 2px;
  }
}
.p-front .service {
  padding: 100px 0 150px;
}
@media screen and (max-width: 1060px) {
  .p-front .service {
    padding: 80px 0 125px;
  }
}
@media screen and (max-width: 600px) {
  .p-front .service {
    padding: 60px 0 100px;
  }
}
.p-front .service__hd {
  display: flex;
  justify-content: center;
  font-size: clamp(1.375rem, 1.031rem + 1.33vw, 2.625rem);
  font-weight: 900;
  line-height: 1.4523809524;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .p-front .service__hd {
    line-height: 1.4545454545;
  }
}
.p-front .service__hd__inner {
  position: relative;
}
.p-front .service__hd__inner::before, .p-front .service__hd__inner::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 46px;
  background-color: #FFFF00;
  border-radius: 100vmax;
}
@media screen and (max-width: 600px) {
  .p-front .service__hd__inner::before, .p-front .service__hd__inner::after {
    position: absolute;
    height: 50px;
    width: 5px;
    bottom: 0;
  }
}
.p-front .service__hd__inner::before {
  transform: rotate(-30deg);
  margin-right: 15px;
  transform-origin: right bottom;
}
@media screen and (max-width: 600px) {
  .p-front .service__hd__inner::before {
    left: 0;
  }
}
.p-front .service__hd__inner::after {
  transform: rotate(30deg);
  margin-left: 15px;
  transform-origin: left bottom;
}
@media screen and (max-width: 600px) {
  .p-front .service__hd__inner::after {
    right: 0;
  }
}
.p-front .service__hd__inner br {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-front .service__hd__inner br {
    display: block;
  }
}
.p-front .service__list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 72px;
}
@media screen and (max-width: 1060px) {
  .p-front .service__list {
    gap: 30px;
    margin: 50px auto 0;
    width: calc(100vw - 60px);
  }
}
@media screen and (max-width: 600px) {
  .p-front .service__list {
    flex-wrap: wrap;
    width: 100%;
    max-width: 300px;
    margin-top: 40px;
  }
}
.p-front .service__item {
  flex: 1;
  display: flex;
  justify-content: center;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background-size: auto 66.7820069204%;
  background-repeat: no-repeat;
  background-position: center center;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
  aspect-ratio: 480/290;
}
@media screen and (max-width: 600px) {
  .p-front .service__item {
    aspect-ratio: 300/180;
    border-radius: 15px;
  }
}
@media screen and (max-width: 600px) {
  .p-front .service__item {
    flex: auto;
    width: 100%;
  }
}
.p-front .service__item:first-of-type {
  background-image: url(/assets/img/front/service_bg-01.webp);
  background-color: #377EF4;
}
.isPC .p-front .service__item:first-of-type:hover {
  background-color: rgba(55, 126, 244, 0.5);
}
.p-front .service__item:last-of-type {
  background-image: url(/assets/img/front/service_bg-02.webp);
  background-color: #479E94;
}
.isPC .p-front .service__item:last-of-type:hover {
  background-color: rgba(71, 158, 148, 0.5);
}
.isPC .p-front .service__item:hover .service__view::after {
  transform: translateX(10px);
}
.p-front .service__link {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10.5263157895% 30px 8.7719298246%;
  font-weight: 900;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 834px) {
  .p-front .service__link {
    padding: 13% 30px;
  }
}
.p-front .service__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 2.9047619048em;
  margin-bottom: 4%;
  font-size: clamp(1.5rem, 1.191rem + 1.2vw, 2.625rem);
  line-height: 1.4523809524;
}
@media screen and (max-width: 834px) {
  .p-front .service__ttl {
    margin-bottom: 7%;
    line-height: 1.4583333333;
  }
}
.p-front .service__view {
  align-content: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.188rem, 1.033rem + 0.6vw, 1.75rem);
  line-height: 1;
  position: relative;
}
.p-front .service__view::before {
  position: absolute;
  top: calc(50% - 14.5px);
  right: 0;
  content: "";
  display: inline-block;
  width: 36px;
  height: auto;
  aspect-ratio: 36/29;
  -webkit-mask-image: url(/assets/img/common/arrow_border.svg);
          mask-image: url(/assets/img/common/arrow_border.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #ffffff;
}
@media screen and (max-width: 834px) {
  .p-front .service__view::before {
    top: calc(50% - 12px);
    width: 30px;
  }
}
@media screen and (max-width: 600px) {
  .p-front .service__view::before {
    top: calc(50% - 9.5px);
    width: 24px;
  }
}
.p-front .service__view::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: auto;
  aspect-ratio: 36/29;
  -webkit-mask-image: url(/assets/img/common/arr.svg);
          mask-image: url(/assets/img/common/arr.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #ffffff;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
}
@media screen and (max-width: 834px) {
  .p-front .service__view::after {
    width: 30px;
  }
}
@media screen and (max-width: 600px) {
  .p-front .service__view::after {
    width: 24px;
  }
}
.p-front .service__view .arr {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 13px;
}

.anc {
  max-width: 1130px;
  margin: 100px auto 80px;
}
@media screen and (max-width: 1230px) {
  .anc {
    max-width: 780px;
    margin: 70px auto 40px;
  }
}
@media screen and (max-width: 600px) {
  .anc {
    margin: 60px 10px 30px;
  }
}
.anc__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 1230px) {
  .anc__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 70px 30px;
    padding: 0 30px;
    justify-items: center;
  }
}
@media screen and (max-width: 600px) {
  .anc__list {
    gap: 50px 10px;
    padding: 0 10px;
  }
}
.anc__item {
  display: flex;
  flex: 0 0 calc((100% - 60px) / 5); /* 3つ並ぶ幅を指定（gapを調整） */
  flex: 1;
  box-sizing: border-box;
}
@media screen and (max-width: 1230px) {
  .anc__item {
    flex: auto;
    width: 100%;
  }
  .anc__item:nth-child(1) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
  .anc__item:nth-child(2) {
    grid-column-start: 4;
    grid-column-end: 6;
  }
  .anc__item:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .anc__item:nth-child(4) {
    grid-column-start: 3;
    grid-column-end: 5;
  }
  .anc__item:nth-child(5) {
    grid-column-start: 5;
    grid-column-end: 7;
  }
  .anc__item:nth-child(n+3) {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.anc__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: clamp(0.938rem, 0.748rem + 0.73vw, 1.625rem);
  border: 4px solid #1A1A1A;
  background-color: #E1F0FE;
  border-radius: 22px;
  text-align: center;
  line-height: 1.4230769231;
  min-height: calc(2.8461538462em + 32px);
  padding: 16px 10px;
  position: relative;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 600px) {
  .anc__link {
    padding: 10px;
    border-width: 3px;
    border-radius: 20px;
  }
}
.anc__link::before, .anc__link::after {
  content: "";
  position: absolute;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
}
.anc__link::before {
  display: block;
  width: 4px;
  height: 37px;
  border-radius: 2px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 100%;
  background-color: #1A1A1A;
}
@media screen and (max-width: 600px) {
  .anc__link::before {
    width: 3px;
    height: 20px;
  }
}
.anc__link::after {
  display: inline-block;
  width: 16px;
  height: auto;
  aspect-ratio: 16/28;
  top: calc(100% + 36px);
  transform: translateY(-50%) rotate(90deg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("/assets/img/common/arr-r.svg");
          mask-image: url("/assets/img/common/arr-r.svg");
  background-color: #1A1A1A;
}
@media screen and (max-width: 600px) {
  .anc__link::after {
    width: 12px;
    top: calc(100% + 21px);
  }
}
.isPC .anc__link:hover {
  background-color: #0058C6;
  color: #ffffff;
}
.isPC .anc__link:hover::before {
  height: 47px;
}
.isPC .anc__link:hover::after {
  top: calc(100% + 46px);
}

.news__list {
  display: block;
  margin: 0 80px;
  padding: 30px 0;
}
@media screen and (max-width: 1060px) {
  .news__list {
    margin: 0 45px;
  }
}
@media screen and (max-width: 600px) {
  .news__list {
    padding: 25px 0 15px;
    margin: 0 15px;
  }
}
.p-front .news__list {
  margin-top: 49px;
  margin-bottom: 26px;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .p-front .news__list {
    margin-top: 39px;
  }
}
.news__item:not(:first-of-type) {
  border-top: 2px solid #ffffff;
}
.news__empty {
  padding-block: 36px;
  text-align: center;
}
.news__link {
  display: flex;
  align-items: flex-start;
  padding: 29px 0;
}
@media screen and (max-width: 600px) {
  .news__link {
    padding: 15px 0;
  }
}
.p-front .news__link {
  padding: 21px 0;
}
@media screen and (max-width: 600px) {
  .p-front .news__link {
    flex-wrap: wrap;
    padding: 19px 0 17px;
  }
}
@media screen and (max-width: 600px) {
  .news__link {
    flex-wrap: wrap;
  }
}
.news__cat {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 114px;
  padding: 4px;
  border: 3px solid #0058C6;
  background-color: #ffffff;
  font-size: 13px;
  color: #0058C6;
  font-weight: 700;
  border-radius: 4px;
}
.news__date {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  color: #1A1A1A;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
  font-weight: 700;
  margin: 9px 30px 0 17px;
}
.news__title {
  font-size: 17px;
  line-height: 2.2941176471;
  color: #1A1A1A;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
  margin-top: -3px;
  font-weight: 600;
  flex: 1;
}
@media screen and (max-width: 600px) {
  .news__title {
    flex: auto;
    width: 100%;
    line-height: 1.7647058824;
    margin-top: 8px;
  }
}
.newscat {
  max-width: 700px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 834px) {
  .newscat {
    padding: 0 15px;
    margin-bottom: 50px;
  }
}
.newscat ul {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 834px) {
  .newscat ul {
    flex-wrap: wrap;
    gap: 18px;
  }
}
.newscat ul li {
  flex: 1;
}
@media screen and (max-width: 834px) {
  .newscat ul li {
    flex: auto;
    width: calc(50% - 10px);
  }
}
.newscat ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border: 3px solid #0058C6;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  color: #0058C6;
}
@media screen and (max-width: 600px) {
  .newscat ul li a {
    padding: 5px;
  }
}
.newscat ul li.current a, .isPC .newscat ul li a:hover {
  background-color: #0058C6;
  color: #ffffff;
}
.news__entry {
  margin: 55px auto 200px;
}
@media screen and (max-width: 834px) {
  .news__entry {
    margin-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  .news__entry {
    margin: 5px 5px 130px;
  }
}
.news__entry__head {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 30px;
  margin-top: 54px;
  margin-bottom: 56px;
  border-bottom: 4px solid #DBDBDB;
}
@media screen and (max-width: 600px) {
  .news__entry__head {
    padding-bottom: 18px;
    margin-top: 20px;
    margin-bottom: 28px;
  }
}
.news__entry__title {
  order: 1;
  width: 100%;
  margin-top: 20px;
  font-size: clamp(1.188rem, 1.033rem + 0.6vw, 1.75rem);
  line-height: 1.4285714286;
}
@media screen and (max-width: 600px) {
  .news__entry__title {
    font-size: 24px;
  }
}
.news__entry__date {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.news__entry__cat {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 114px;
  height: 35px;
  margin-right: 20px;
  border: 3px solid #0058C6;
  font-size: 13px;
  border-radius: 4px;
  color: #0058C6;
}
.news__entry__body {
  margin-bottom: 100px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .news__entry__body {
    margin-bottom: 80px;
  }
}
.news__entry__body > * {
  margin: 35px 0;
}
@media screen and (max-width: 600px) {
  .news__entry__body > * {
    margin: 34px 0;
  }
}
.news__entry__body h1, .news__entry__body h2, .news__entry__body h3, .news__entry__body h4, .news__entry__body h5 {
  margin: 30px 0;
}
@media screen and (max-width: 600px) {
  .news__entry__body h1, .news__entry__body h2, .news__entry__body h3, .news__entry__body h4, .news__entry__body h5 {
    margin: 18px 0;
  }
}
.news__entry__body h1 + *,
.news__entry__body h2 + *,
.news__entry__body h3 + *,
.news__entry__body h4 + *,
.news__entry__body h5 + * {
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .news__entry__body h1 + *,
  .news__entry__body h2 + *,
  .news__entry__body h3 + *,
  .news__entry__body h4 + *,
  .news__entry__body h5 + * {
    margin-top: 18px;
  }
}
.news__entry__body h1,
.news__entry__body h2 {
  padding: 4px 16px 8px;
  font-size: 32px;
  color: #ffffff;
  background-color: #0058C6;
}
@media screen and (max-width: 600px) {
  .news__entry__body h1,
  .news__entry__body h2 {
    padding: 1px 10px 3px;
    font-size: 24px;
  }
}
.news__entry__body h3 {
  font-size: 24px;
  padding-bottom: 4px;
  border-bottom: 3px solid #E1F0FE;
}
@media screen and (max-width: 600px) {
  .news__entry__body h3 {
    padding-bottom: 3px;
    font-size: 22px;
  }
}
.news__entry__body h4 {
  padding-left: 23px;
  font-size: 20px;
  position: relative;
}
.news__entry__body h4::before {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  background-color: #E1F0FE;
  position: absolute;
  left: 0;
  top: 0.35em;
}
.news__entry__body h5 {
  font-size: 18px;
}
.news__entry__body p,
.news__entry__body ul li,
.news__entry__body ol li {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
.news__entry__body a {
  text-decoration: underline;
}
.isPC .news__entry__body a:hover {
  text-decoration: none;
}
.news__entry__body img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.news__entry__body p img {
  margin: calc(var(--leading-trim) + 25px) 0 calc(var(--leading-trim) + 45px);
}
@media screen and (max-width: 600px) {
  .news__entry__body p img {
    margin: calc(var(--leading-trim) + 10px) 0 calc(var(--leading-trim) + 25px);
  }
}
.news__entry__body ul li,
.news__entry__body ol li {
  padding-left: 1.5em;
  position: relative;
}
.news__entry__body ul li::before,
.news__entry__body ol li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
}
.news__entry__body ul li::before {
  width: 1.125rem;
  aspect-ratio: 1/1;
  top: 0.5em;
  border-radius: var(--radius);
  background-color: #1A1A1A;
}
.news__entry__body ol {
  counter-reset: ol_li;
}
.news__entry__body ol li::before {
  counter-increment: ol_li;
  content: counter(ol_li) ".";
  font-weight: 700;
  top: 0;
}
@media screen and (max-width: 600px) {
  .news__entry__body .scroll__table {
    overflow-x: scroll;
    padding-bottom: 10px;
  }
  .news__entry__body .scroll__table::-webkit-scrollbar {
    height: 10px;
  }
  .news__entry__body .scroll__table::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 100px;
    border: 1px solid #707070;
  }
  .news__entry__body .scroll__table::-webkit-scrollbar-thumb {
    background: #707070;
    border-radius: 100px;
  }
}
.news__entry__body .scroll__table table {
  min-width: 600px;
  white-space: nowrap;
}
.news__entry__body table {
  border-collapse: separate !important;
  border-spacing: 3px !important;
  border: none !important;
}
.news__entry__body table tbody th,
.news__entry__body table tbody td {
  padding: 22px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .news__entry__body table tbody th,
  .news__entry__body table tbody td {
    padding: 12px 10px;
    font-size: 16px;
  }
}
.news__entry__body table tbody th {
  border: none;
  color: #ffffff;
  background-color: #0058C6;
}
.news__entry__body table tbody td {
  border: 1px solid #969696;
}

.pagination {
  display: grid;
  justify-content: space-between;
  width: 100%;
  max-width: 522px;
  margin: 72px auto 0;
}
@media screen and (max-width: 600px) {
  .pagination {
    max-width: 320px;
    margin-top: 70px;
  }
}
.pagination__link {
  font-size: 24px;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 600px) {
  .pagination__link {
    font-size: 16px;
  }
}
.pagination__link::before, .pagination__link::after {
  content: "";
  position: absolute;
  transition-property: all 0.8s linear 15ms;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 15ms;
  background-color: #1A1A1A;
}
.pagination__link::before {
  display: block;
  width: var(--line-w);
  height: 4px;
  border-radius: 100vmax;
  margin: auto;
  top: 0.5em;
}
@media screen and (max-width: 600px) {
  .pagination__link::before {
    height: 3px;
    width: calc(var(--line-w) - 2px);
  }
}
.pagination__link::after {
  display: inline-block;
  width: var(--arr-w);
  height: auto;
  top: 0;
  aspect-ratio: 16/28;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("/assets/img/common/arr-r.svg");
          mask-image: url("/assets/img/common/arr-r.svg");
}
.isPC .pagination__link:hover {
  cursor: pointer;
}
.isPC .pagination__link:hover::before {
  width: calc(var(--line-w) + 10px);
}
.pagination__link--next {
  grid-column: 1/2;
  margin-right: auto;
  padding-left: 54px;
}
@media screen and (max-width: 600px) {
  .pagination__link--next {
    padding-left: 32px;
  }
}
.pagination__link--next::before {
  right: calc(100% - 34px);
  transform-origin: center right;
}
@media screen and (max-width: 600px) {
  .pagination__link--next::before {
    right: calc(100% - 22px);
  }
}
.pagination__link--next::after {
  left: 0;
  transform: scale(-1, 1);
}
.isPC .pagination__link--next:hover::after {
  transform: translateX(-10px) scale(-1, 1);
}
.pagination__link--prev {
  grid-column: 2/3;
  margin-left: auto;
  padding-right: 54px;
}
@media screen and (max-width: 600px) {
  .pagination__link--prev {
    padding-right: 32px;
  }
}
.pagination__link--prev::before {
  left: calc(100% - 34px);
  transform-origin: center left;
}
@media screen and (max-width: 600px) {
  .pagination__link--prev::before {
    left: calc(100% - 22px);
  }
}
.pagination__link--prev::after {
  right: 0;
}
.isPC .pagination__link--prev:hover::after {
  transform: translateX(10px);
}
.pagination__text::after {
  content: "";
  width: 100%;
  display: inline-block;
  background-color: #FFFF00;
  height: 6px;
}
@media screen and (max-width: 600px) {
  .pagination__text::after {
    margin-bottom: 2px;
  }
}
.pagination + .back {
  margin-top: 67px;
}
@media screen and (max-width: 600px) {
  .pagination + .back {
    margin-top: 54px;
  }
}

.contactbox {
  margin-top: 60px;
  margin-bottom: 205px;
}
@media screen and (max-width: 600px) {
  .contactbox {
    margin-top: 30px;
    margin-bottom: 110px;
  }
}
.contactbox iframe {
  width: 100%;
  height: auto;
}

.thanksbox {
  max-width: 900px;
  padding: 80px 40px;
  margin: 96px auto 98px;
  border-radius: var(--radius);
  text-align: center;
  background-color: #E1F0FE;
}
@media screen and (max-width: 930px) {
  .thanksbox {
    margin: 60px 10px;
  }
}
@media screen and (max-width: 600px) {
  .thanksbox {
    padding: 40px 20px;
    margin: 45px 10px 60px;
    border-radius: 35px;
  }
}
.thanksbox__inner {
  background-color: #E1F0FE;
  border-radius: var(--radius);
}
.thanksbox__hd {
  font-size: 30px;
  font-size: clamp(1.375rem, 1.237rem + 0.53vw, 1.875rem);
  line-height: 1.4285714286;
}
@media screen and (max-width: 600px) {
  .thanksbox__hd {
    font-weight: 600;
    line-height: 1.4545454545;
  }
}
.thanksbox__hd br {
  display: none;
}
@media screen and (max-width: 600px) {
  .thanksbox__hd br {
    display: block;
  }
}
.thanksbox__txt {
  margin: 55px auto 50px;
  font-size: 18px;
  font-size: clamp(1rem, 0.966rem + 0.13vw, 1.125rem);
  font-weight: 400;
  line-height: 2.2777777778;
}
@media screen and (max-width: 600px) {
  .thanksbox__txt {
    margin: 25px auto 30px;
    text-align: left;
  }
}
.thanksbox__txt02 {
  margin-top: 60px;
  font-weight: 400;
  font-size: clamp(1.375rem, 1.341rem + 0.16vw, 1.5rem);
}
.thanksbox__tel {
  margin-top: 25px;
  font-size: 28px;
  font-size: clamp(1.375rem, 1.272rem + 0.4vw, 1.75rem);
  line-height: 1.4285714286;
}
.thanksbox__tel a {
  font-size: 45px;
  font-size: clamp(1.875rem, 1.617rem + 1.18vw, 2.813rem);
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .thanksbox__tel {
    font-weight: 600;
    line-height: 1.4545454545;
  }
}
.thanksbox__txt03 {
  margin-top: 26px;
  font-weight: 400;
  font-size: clamp(1.375rem, 1.306rem + 0.31vw, 1.625rem);
}
@media (min-width: 501px) {
  .thanksbox__txt03 br {
    display: none;
  }
}
.thanksbox__txt04 {
  margin-top: 8px;
  font-weight: 400;
  font-size: clamp(1rem, 0.931rem + 0.31vw, 1.25rem);
}
.thanksbox__number {
  font-size: 45px;
  font-size: clamp(1.875rem, 1.617rem + 1.18vw, 2.813rem);
  line-height: 1;
}

:root {
  --color-base: 26, 26, 26;
  --color-main: 0, 88, 198;
  --color-sub: 255, 255, 0;
  --color-bg01: 225, 240, 254;
  --color-bright: 255, 255, 255;
  --color-gray: 237, 237, 237;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-jost: "Jost", sans-serif;
  --width-header: 260px;
  --width-header-negative: -260px;
  --width-content: 1320px;
  --padding-content: 80px;
  --padding-content-negative: -80px;
}

.c-form-header-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 780px;
  margin-inline: auto;
  font-size: 2.8rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.c-form-header-flow::before,
.c-form-header-flow::after {
  display: block;
  content: "";
  width: 6.7039106145%;
  height: 4px;
  background: rgb(var(--color-gray), 1);
}

.c-form-header-flow__01,
.c-form-header-flow__02,
.c-form-header-flow__03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.5195530726%;
  height: 84px;
  background: rgb(var(--color-gray), 1);
  border-radius: 20px;
  color: rgb(var(--color-base), 1);
  color: #fff;
}

.c-form-header-flow__01 {
  order: 1;
}

.c-form-header-flow::before {
  order: 2;
}

.c-form-header-flow__02 {
  order: 3;
}

.c-form-header-flow::after {
  order: 4;
}

.c-form-header-flow__03 {
  order: 5;
}

.form-page-3 .c-form-header-flow__03 {
  background: rgb(var(--color-sub), 1);
  color: rgb(var(--color-base), 1);
}

.c-form-header-flow #confirmation-container::before,
.c-form-header-flow #confirmation-container__01 {
  background: var(--color-gray);
}

.form-page-3 .c-form-header-flow::after {
  background: rgb(var(--color-sub), 1);
}

@media (max-width: 767px) {
  .c-form-header-flow {
    font-size: max(3.6505867014vw, 0.875rem);
  }
  .c-form-header-flow__01,
  .c-form-header-flow__02,
  .c-form-header-flow__03 {
    height: max(10.9517601043vw, 37px);
    border-radius: max(2.6075619296vw, 10px);
  }
}