@charset "UTF-8";

/* Base / reset */
a,
body,
dd,
dl,
dt,
h1,
h2,
h3,
h4,
li,
p,
span,
table,
td,
th,
tr,
ul {
  margin: 0;
  padding: 0;
  color: #333;
  text-decoration: none;
  list-style: none;
  line-height: 1;
  outline: 0;
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  background-color: unset;
  border: none;
  outline: 0;
  -webkit-appearance: none;
}

input,
textarea {
  box-sizing: border-box;
}

article,
div,
figure,
picture,
section {
  box-sizing: border-box;
  margin: 0;
  display: block;
  padding: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.grecaptcha-text {
  margin-top: 3rem;
  text-align: center;
}

.container {
  overflow: hidden;
}

body,
html {
  font-size: 62.5%;
  letter-spacing: 0;
  color: #333;
  background-color: #f5f5f5;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Verdana, sans-serif;
}

.roboto-bold {
  font-family: Roboto, sans-serif;
  font-weight: 700;
}

a {
  transition: 0.2s;
}

a:hover {
  opacity: 0.7;
}

.f-bold {
  font-weight: 700;
}

.f-ttl-middle {
  font-size: 2rem;
}

.h2-font {
  font-feature-settings: "palt";
}

.blue {
  color: #1b4299;
}

.red {
  color: #c62e37;
}

.f-set {
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}

.bg-white {
  background-color: #fff;
}

.bg-blue {
  background: #4285f4;
}

.white {
  color: #f7f9fc;
}

img {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-c {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

.t-center {
  text-align: center;
}

.wsn {
  white-space: nowrap;
}

.jc-around {
  justify-content: space-around;
}

.jc-between {
  justify-content: space-between;
}

.jc-evenly {
  justify-content: space-evenly;
}

.jc-center {
  justify-content: center;
}

.jc-end {
  justify-content: flex-end;
}

.jc-start {
  justify-content: flex-start;
}

.jc-unset {
  justify-content: unset;
}

.ai-center {
  align-items: center;
}

.ai-end {
  align-items: flex-end;
}

.ai-start {
  align-items: flex-start;
}

.ai-unset {
  align-items: unset;
}

/* Responsive utilities */
@media (max-width: 1024px) {
  .tb__Gohtic {
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .tb__flex {
    display: flex;
  }
  .tb__flow-column {
    flex-flow: column;
  }
  .tb__flow-wrap {
    flex-flow: wrap;
  }
  .tb__order-1 {
    order: 1;
  }
  .tb__jc-around {
    justify-content: space-around;
  }
  .tb__jc-between {
    justify-content: space-between;
  }
  .tb__jc-evenly {
    justify-content: space-evenly;
  }
  .tb__jc-center {
    justify-content: center;
  }
  .tb__jc-end {
    justify-content: flex-end;
  }
  .tb__jc-start {
    justify-content: flex-start;
  }
  .tb__jc-unset {
    justify-content: unset;
  }
  .tb__ai-center {
    align-items: center;
  }
  .tb__ai-end {
    align-items: flex-end;
  }
  .tb__ai-start {
    align-items: flex-start;
  }
  .tb__ai-unset {
    align-items: unset;
  }
}

@media (max-width: 767px) {
  .sp__flex {
    display: flex;
  }
  .sp__flow-column {
    flex-flow: column;
  }
  .sp__flow-wrap {
    flex-flow: wrap;
  }
  .sp__order-1 {
    order: 1;
  }
  .sp__jc-around {
    justify-content: space-around;
  }
  .sp__jc-between {
    justify-content: space-between;
  }
  .sp__jc-center {
    justify-content: center;
  }
  .sp__jc-end {
    justify-content: flex-end;
  }
  .sp__jc-start {
    justify-content: flex-start;
  }
  .sp__jc-unset {
    justify-content: unset;
  }
  .sp__ai-center {
    align-items: center;
  }
  .sp__ai-end {
    align-items: flex-end;
  }
  .sp__ai-start {
    align-items: flex-start;
  }
  .sp__ai-unset {
    align-items: unset;
  }
}

/* Layout helpers */
.inner {
  margin: 0 auto;
  width: auto;
  max-width: 1080px;
  padding: 0;
}

.pc__none,
br.pc__none {
  display: none;
}

.sp__none {
  display: block;
}

.tb__block {
  display: none;
}

.tb__none {
  display: block;
}

@media (max-width: 1024px) {
  .tb__block {
    display: block;
  }
  .tb__none {
    display: none;
  }
  .inner {
    padding: 0 2rem;
  }
}

@media (max-width: 767px) {
  .pc__none {
    display: block;
  }
  .sp__none {
    display: none;
  }
  br.pc__none {
    display: block !important;
  }
}

/* Motion */
.js-focus {
  opacity: 0;
}

.focus-in {
  -webkit-animation: 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both focus-in;
  animation: 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both focus-in;
}

@-webkit-keyframes focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

.js-u-fade {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1),
    transform 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}

.js-fade {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1),
    transform 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}

.js-fade.fade-on {
  opacity: 1;
}

.js-change {
  transition:
    opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1),
    transform 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}

.js-r-fade {
  transform: translateX(60px);
  opacity: 0;
  transition:
    opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1),
    transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

.js-l-fade {
  transform: translateX(-60px);
  opacity: 0;
  transition:
    opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1),
    transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

.fade-in {
  opacity: 1;
  transform: translate(0);
}

.js-spin {
  transform: rotateY(-450deg);
  transition-duration: 0.8s;
  will-change: transform;
  opacity: 0;
}

.js-spin.spin {
  transform: rotateY(0);
  opacity: 1;
}

.js-m-txt {
  overflow: auto;
}

.js-m-txt .maskElem-y {
  transform: translateY(120%);
  display: block;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.js-m-txt .maskElem-x {
  transform: translateX(-120%);
  display: block;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

@-webkit-keyframes mask {
  100% {
    transform: translate(0);
  }
}

@keyframes mask {
  100% {
    transform: translate(0);
  }
}

.mask.animated .maskElement-x,
.mask.animated .maskElement-y {
  -webkit-animation: cubic-bezier(0.86, 0, 0.07, 1) forwards mask;
  animation: cubic-bezier(0.86, 0, 0.07, 1) forwards mask;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  overflow: hidden;
}

.js-m-img {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 1.5s cubic-bezier(0.86, 0, 0.07, 1) 0.5s;
  transition-property:
    clip-path,
    -webkit-clip-path;
}

.js-m-img.center {
  -webkit-clip-path: inset(0 100% 100% 0);
  clip-path: inset(0 100% 100% 0);
}

.js-m-img.animated {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.fade-in-1 {
  -webkit-animation: 1s 1s infinite fade-in1;
  animation: 1s 1s infinite fade-in1;
}

@-webkit-keyframes fade-in1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Shared content */
.tag {
  display: block;
  border: 1px solid #1b4299;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1b4299;
  padding: 0.3rem 0;
  text-align: center;
  width: 75px;
}

.date {
  color: #b2b2b2;
}

.page-txt {
  font-size: 1.6rem;
  font-weight: 400;
}

.c-contact {
  height: 100%;
  padding-bottom: 16rem;
}

.c-contact__inner {
  max-width: 75vw;
}

.c-contact__ttl {
  font-size: 3.4rem;
  font-weight: 700;
  background-color: #1b4299;
  color: #fff;
  width: 100%;
  padding: 2.3rem 0;
}

.c-contact__txt {
  font-size: 1.6rem;
  margin: 3rem 0 4rem;
}

.none {
  display: none;
}

.js-btn {
  position: fixed;
}

.js-btn.open {
  display: block;
}

.breadcrumb {
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
  margin-right: 2rem;
}

@media (max-width: 767px) {
  .tag {
    padding: 0.5rem 0;
  }
  .c-contact__ttl {
    font-size: 1.8rem;
  }
  .breadcrumb {
    line-height: 24px;
  }
}

/* Header */
.noTop .headerBox #global_nav .hlink {
  color: #333;
}

.noTop .headerBox #global_nav .change {
  border-color: #1b4299;
  border-radius: 100px;
  padding: 1.5rem 3rem;
}

.noTop .headerBox #global_nav .change a {
  color: #1b4299;
}

.noTop .leftBox {
  max-width: 227px;
  width: 100%;
}

.noTop .leftBox .open-ham {
  display: block;
}

header {
  width: 100%;
}

header.hide {
  transform: translateY(-100%);
}

header .close {
  display: none;
}

.headerBox {
  margin-top: 3rem;
  position: absolute;
  z-index: 99999999;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 0 2.1428571429vw;
}

.headerBox .menu-ham {
  display: none;
}

.leftBox__logo {
  max-width: 227px;
  width: 100%;
}

.leftBox__logo a {
  display: block;
  width: 100%;
}

.leftBox .open-ham {
  display: none;
}

@media (max-width: 1024px) {
  .headerBox {
    justify-content: flex-start;
    gap: 3rem;
  }
  .headerBox.open .open-ham {
    display: block;
    transition: 0.5s;
  }
  .headerBox.open .close-ham {
    display: none;
    transition: 0.5s;
  }
  .headerBox.open .change {
    border-color: #1b4299;
    transition: 0.8s;
  }
  .headerBox.open .change a {
    color: #1b4299;
  }
  .headerBox .change {
    border: 1px solid #fff;
    border-radius: 100px;
    padding: 1rem 1.5rem;
    width: 30%;
    position: relative;
  }
  .headerBox .change a {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    display: block;
  }
  .noTop .leftBox {
    max-width: 168px;
  }
  .noTop .headerBox #global_nav .change {
    padding: 1rem 1.5rem;
  }
  .noTop .headerBox .hlink {
    color: #333;
  }
  .noTop .headerBox .change {
    border-color: #1b4299;
  }
  .noTop .headerBox .change a {
    color: #1b4299;
  }
  .leftBox {
    width: 40%;
    position: relative;
    z-index: 1;
  }
  .leftBox__logo {
    max-width: 100%;
    width: 100%;
  }
}

#global_nav ul {
  display: flex;
  align-items: center;
}

#global_nav ul li {
  font-size: 1.4rem;
  padding: 1.2rem 1.5rem;
}

#global_nav ul li a {
  font-weight: 700;
  color: #fff;
}

#global_nav ul li:last-of-type {
  position: relative;
}

#global_nav ul li:nth-child(3) {
  margin-right: 15px;
}

#global_nav ul .change {
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 1.5rem 3rem;
}

@media screen and (max-width: 1024px) {
  .gnavi {
    position: fixed;
    top: 3.5rem;
    right: 2rem;
    width: 2.8rem;
    height: 2.8rem;
    z-index: 3;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.4s;
  }
  .gnavi nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    padding-top: 3rem;
    background: #f4f4f5;
    box-sizing: border-box;
    z-index: 10;
    width: 100%;
  }
  .gnavi .global__flex {
    padding: 0 2.1428571429vw;
    align-items: center;
    gap: 3rem;
  }
  .gnavi .global__flex .header-logo {
    width: 40%;
  }
  .gnavi .jsHumb {
    width: 100%;
    position: absolute;
    height: 0.2rem;
    background: #fff;
    border-radius: 10px;
    transition: 0.4s;
    z-index: 300;
  }
  .gnavi .jsHumb.menu-ham {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    background: 0 0;
    border-radius: 0;
    color: #fff;
  }
  .gnavi .jsHumb:nth-of-type(1) {
    top: 2%;
  }
  .gnavi .jsHumb:nth-of-type(2) {
    top: 25%;
    width: 1.8rem;
    margin-right: auto;
  }
  .gnavi .jsHumb:nth-of-type(3) {
    top: 60%;
    height: auto;
  }
  .gnavi.open .jsHumb {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    top: 20%;
    background-color: #333;
  }
  .gnavi.open .jsHumb:nth-of-type(2) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    width: 100%;
  }
  .gnavi.open .jsHumb:nth-of-type(3) {
    color: #333;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    background-color: inherit;
    top: 75%;
  }
  .gnavi .nav__cta {
    margin-top: 6rem;
  }
  .gnavi .nav__cta p {
    font-size: 1.4rem;
  }
  .gnavi .nav__cta.pc__none {
    display: block;
  }
  .gnavi .nav__cta--box {
    max-width: 700px;
    width: 80%;
  }
  .gnavi .nav__cta--box.cta__img {
    margin: 1rem auto 2rem;
  }
  .gnavi .nav__cta--box:not(:first-of-type) {
    max-width: 300px;
    border: 1px solid #c62e37;
    border-radius: 100px;
    margin: 0 auto;
    position: relative;
  }
  .gnavi .nav__cta--box:not(:first-of-type)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 18px;
    height: 21px;
    background-image: url(../img/arrow-right-red.png);
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .gnavi .nav__cta--box:not(:first-of-type) a {
    font-size: 1.8rem;
    color: #c62e37;
    display: block;
    text-align: center;
    padding: 1.6rem 0;
  }
  .gnavi .nav__cta--box:last-of-type {
    margin-top: 2rem;
  }
  .noTop .gnavi .jsHumb {
    background: #333;
  }
  .noTop .gnavi .jsHumb.menu-ham {
    color: #333;
    background: 0 0;
  }
  .menu.js-color-on .jsHumb {
    background-color: #333;
  }
  .menu.js-color-on .jsHumb.menu-ham {
    color: #333;
    background-color: unset;
  }
  #global_nav ul {
    display: block;
  }
  #global_nav ul li {
    margin-top: 5.5rem;
    margin-left: 2rem;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    display: block;
    position: relative;
    padding-bottom: 0;
    padding-top: 0;
  }
  #global_nav ul li:not(:first-child) {
    margin-top: 3.2rem;
  }
  #global_nav ul li:nth-child(1),
  #global_nav ul li:nth-child(2),
  #global_nav ul li:nth-child(3),
  #global_nav ul li:nth-child(4) {
    padding-right: 4rem;
  }
  #global_nav ul li:nth-child(1)::after,
  #global_nav ul li:nth-child(2)::after,
  #global_nav ul li:nth-child(3)::after,
  #global_nav ul li:nth-child(4)::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 18px;
    height: 25px;
    background-image: url(../img/cta-arrow-right.png);
    background-repeat: no-repeat;
    background-size: 100%;
  }
  #global_nav ul li .hlink {
    font-size: 1.6rem;
    color: #333;
    font-weight: 400;
  }
  #global_nav ul li:last-of-type {
    background-color: transparent;
    overflow: unset;
    display: none;
  }
}

/* Footer */
.footer {
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 2rem;
}

.footer__fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999999;
  width: 100%;
}

.footer__lists {
  gap: 0.1rem;
  background-color: #fff;
}

.footer__list {
  max-width: 100%;
  width: 25%;
}

.footer__list a {
  padding: 1.8rem 0;
  display: block;
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  height: 100%;
}

.footer__list a.pc__none {
  display: none;
}

.footer__list a.sp__none {
  display: block;
}

.footer__list:nth-child(1) {
  background-color: #1b4299;
  position: relative;
}

.footer__list:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 8.6px;
  background-image: url(../img/footer-arrow.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 17.4px;
  height: 17.4px;
}

.footer__list:nth-child(2),
.footer__list:nth-child(3) {
  background-color: #c62e37;
}

.footer__list:nth-child(4) {
  background-color: #333;
}

.footer__list:nth-child(4) a {
  font-size: 1.2rem;
}

.footer__cta {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  gap: 0.1rem;
}

.footer__links {
  width: calc(33.3333333333% - 1px);
  position: relative;
  padding: 2.5rem 0;
}

.footer__links:first-of-type {
  background-color: #1b4299;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.footer__links:nth-child(2) {
  background-color: #c62e37;
}

.footer__links:last-of-type,
.footer__links:nth-child(3) {
  background-color: #c62e37;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.footer__box {
  font-size: 2.7rem;
  position: relative;
  padding-right: 3rem;
}

.footer .arrow-right {
  display: block;
  position: absolute;
  width: 31px;
  height: 43px;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  background-image: url(../img/arrow-right-white.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.footer .arrow-right-footer {
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background-image: url(../img/recult-arrow-right.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.footer__contents {
  height: 100%;
  padding: 6.5rem 0 2.6rem;
  justify-content: space-between;
}

.footer__contBox {
  width: 30%;
}

.footer__content {
  width: 65%;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.footer__imgBox {
  max-width: 313px;
  width: 100%;
}

.footer__comLink a {
  display: block;
  width: 100%;
  max-width: 150px;
  padding: 1rem 0;
  color: #1b4299;
  border: 1px solid #1b4299;
  border-radius: 100px;
  font-weight: 500;
  font-size: 1.2rem;
}

.footer__comLink a.pc__none {
  display: none;
}

.footer__comLink a.sp__none {
  display: block;
}

.footer__menuBox {
  gap: 2.6rem 5rem;
  max-width: 350px;
  width: 100%;
  flex-wrap: wrap;
  display: flex;
}

.footer__menuBox a {
  font-size: 1.4rem;
}

.footer__menu {
  flex-grow: 1;
}

.footer__kai-bnr a {
  display: block;
}

.footer__kai-bnr img {
  display: block;
  height: auto;
}

.footer__kai-bnr.sp__none {
  margin-top: 4rem;
}

.footer__kai-bnr.sp__none img {
  width: 180px;
}

.footer__menu:first-of-type {
  max-width: 101px;
}

.footer__comLink {
  margin-top: 4rem;
}

.footer__ctaBox {
  height: 50px;
  margin-top: 4rem;
  display: flex;
  gap: 0 2rem;
}

.footer__ctaBox--imgBox {
  max-width: 180px;
  display: block;
}

.footer__ctaBox--txt {
  padding: 1.5rem 0;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  color: #c62e37;
  border: 1px solid #c62e37;
  max-width: 180px;
  width: 100%;
  border-radius: 100px;
}

.footer__ctaBox--txt:last-of-type {
  text-align: left;
  padding-left: 2rem;
}

.footer__ctaBox--txt .arrow-right {
  display: block;
  position: absolute;
  width: 18px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background-image: url(../img/arrow-right-red.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.footer__ctaBox--second {
  max-width: 220px;
}

@media (max-width: 1024px) {
  .footer__box {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .footer small {
    display: block;
    text-align: center;
  }
  .footer__fixed {
    max-width: 100%;
  }
  .footer__list {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer__list:nth-child(1)::after {
    bottom: 1px;
    right: 0.6px;
    width: 10px;
    height: 10px;
  }
  .footer__list a {
    line-height: 18px;
    margin: calc((-18px + 1.2rem) / 2) 0;
    padding: 1rem 0;
  }
  .footer__list a.pc__none {
    display: block;
  }
  .footer__list a.sp__none {
    display: none;
  }
  .footer__list .tel-img {
    max-width: 16px;
    margin: 0 auto;
  }
  .footer__list .tel-txt {
    font-size: 1.2rem;
  }
  .footer__content {
    display: none;
  }
  .footer__contBox {
    width: 100%;
  }
  .footer__ctaBox {
    display: none;
  }
  .footer__cta {
    width: 90%;
    top: -7%;
  }
  .footer__links {
    padding: 0.8rem 0;
  }
  .footer__box {
    font-size: 1.4rem;
    line-height: 18px;
  }
  .footer .arrow-right {
    width: 16px;
    height: 22px;
    background-size: 100% 100%;
    right: 10px;
  }
  .footer__imgBox {
    width: 61.3333333333vw;
    margin: 0 auto;
  }
  .footer__menuBox.sp__none {
    display: none;
  }
  .footer__comLink {
    margin-top: 3rem;
  }
  .footer__kai-bnr.pc__none {
    margin-top: 3rem;
    width: fit-content;
    margin-inline: auto;
  }
  .footer__kai-bnr.pc__none img {
    width: 179px;
  }
  .footer__contents {
    align-items: center;
    justify-content: center;
    padding: 7.5rem 0 6.6rem;
  }
  .footer__comLink a {
    max-width: 110px;
    margin: 0 auto;
  }
  .footer__comLink a.pc__none {
    display: block;
  }
  .footer__comLink a.sp__none {
    display: none;
  }
  .footer .sp-footer__txt {
    padding-right: 1.5rem;
  }
  .footer .arrow-right-footer {
    width: 19px;
    height: 19px;
    right: 6px;
  }
}

.top-arrow {
  position: absolute;
  right: 10px;
  bottom: 20%;
}

.top-arrow a {
  height: 100%;
  width: 100%;
}

.top-arrow .yazirusi {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #1b4299;
}

.top-arrow .line01 {
  width: 11px;
  height: 11px;
  border-left: 1px solid #1b4299;
  border-bottom: 1px solid #1b4299;
  transform: rotate(135deg);
  margin: 0 auto;
  position: absolute;
  top: 45%;
  left: 37%;
}

/* Shared section elements */
section {
  font-size: 1.4rem;
}

section h3 {
  font-weight: 700;
}

section h4 {
  margin: 3rem 0 6.5rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 80px;
}

section h4 span {
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

section .ttl-circle {
  display: inline-block;
  margin-right: 1rem;
  width: 12px;
  height: 12px;
  border: 2px solid #1b4299;
  border-radius: 100%;
}

section .linkBox {
  position: relative;
  padding: 1.5rem 0;
  max-width: 270px;
  border: 1px solid #1b4299;
  border-radius: 100px;
  width: 100%;
}

section .linkBox a {
  display: block;
  text-align: center;
  color: #1b4299;
}

section .linkBox .arrow-right {
  display: block;
  position: absolute;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

@media (max-width: 767px) {
  .top-arrow {
    right: 20px;
    bottom: 25%;
  }
  section h4 {
    margin: 2.8rem 0;
    line-height: 44px;
    font-size: 2.4rem;
  }
  section .linkBox {
    margin: 2rem auto;
    padding: 2rem 0;
    max-width: 240px;
  }
}
