@charset "UTF-8";
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	Vars
----------------------------------------*/
/*----------------------------------------
	Reset
----------------------------------------*/
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

th, td {
  text-align: left;
  vertical-align: top;
}

img {
  border: none;
  vertical-align: top;
}

/*----------------------------------------
	Colors
----------------------------------------*/
/*----------------------------------------
	Mediaquery
----------------------------------------*/
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	Base
----------------------------------------*/
html {
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  html {
    font-size: 15px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.06em;
  background-color: #ffffff;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: opacity 0.4s ease;
}
a:link, a:visited {
  color: #000000;
}

a:hover {
  opacity: 0.7;
}

a[data-rel=external]:after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  background: transparent url("../image/icon-external.png") no-repeat scroll center center;
  background-size: contain;
  margin-right: 0.5em;
}

/*----------------------------------------
	Setting
----------------------------------------*/
/* font family */
/*----------------------------------------
	Layout
----------------------------------------*/
.l-limit {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-limit {
    box-sizing: border-box;
    min-width: 1000px;
    max-width: 1600px;
  }
}

.l-frame {
  width: 89.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-frame {
    width: 89.0625%;
  }
}

@media screen and (min-width: 769px) {
  .l-column {
    display: flex;
    justify-content: space-between;
  }
}
.l-column-both {
  display: flex;
  justify-content: space-between;
}
.l-column--wrap {
  flex-wrap: wrap;
}
.l-column--reverse {
  flex-direction: row-reverse;
}

.l-fullpage {
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .l-fullpage {
    height: 100dvh;
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: contain;
  }
}
@media screen and (min-width: 769px) {
  .l-fullpage {
    height: 100svh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
}

/*----------------------------------------
	Header
----------------------------------------*/
.l-header {
  z-index: 11;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 5.3333333333%;
  box-sizing: border-box;
  border-bottom: 2px solid #000000;
  background-color: #ffffff;
  transition: padding 0.22s ease 0s;
}
@media screen and (min-width: 769px) {
  .l-header {
    padding: 27px 1.875%;
  }
}
.l-headerLimit {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l-headerLimit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
  }
}
.l-headerLogo {
  width: 57px;
}
@media screen and (min-width: 769px) {
  .l-headerLogo {
    width: 78px;
  }
}
.l-headerButton {
  z-index: 11;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 44px;
  height: 44px;
}
@media screen and (min-width: 769px) {
  .l-headerButton {
    display: none;
  }
}
.l-headerButton span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 3px;
  border-radius: 10px;
  background-color: #000000;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
  transition: background-color 0.28s ease 0s;
}
.l-headerButton span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 10px;
  background-color: #000000;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.28s ease 0s;
}
.l-headerButton span::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 10px;
  background-color: #000000;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.28s ease 0s;
}
.l-headerGnav {
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  padding: 126px 0;
  box-sizing: border-box;
  background-color: #E8E8E8;
  overflow-y: scroll;
  transition: opacity 0.28s ease 0s;
}
@media screen and (min-width: 769px) {
  .l-headerGnav {
    opacity: 1;
    pointer-events: auto;
    display: flex;
    gap: 0 min(3.125vw, 40px);
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    overflow-y: visible;
  }
}

.l-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 57px 0;
}
@media screen and (min-width: 769px) {
  .l-navigation {
    flex-direction: row;
    gap: 0 min(1.484375vw, 19px);
  }
}
.l-navigation__item {
  width: 187px;
}
@media screen and (min-width: 769px) {
  .l-navigation__item {
    width: 108px;
  }
}
.l-navigation__item:not(.-icon) a, .l-navigation__item p {
  text-align: center;
  display: block;
  padding: 7px 0 10px;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #5B5B5B;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 769px) {
  .l-navigation__item:not(.-icon) a, .l-navigation__item p {
    padding: 3px 0 4px;
    font-size: 12px;
    letter-spacing: 0.1em;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  }
}
.l-navigation__item p {
  opacity: 0.5;
}
@media screen and (min-width: 769px) {
  .l-navigation__item.-text {
    display: none;
  }
}
.l-navigation__item.-line a {
  background-color: #06C755;
}
.l-navigation__item.-zoom a {
  background-color: #558CEC;
}
.l-navigation__item.-icon {
  width: 50px;
}
@media screen and (min-width: 769px) {
  .l-navigation__item.-icon {
    width: 25px;
  }
}
.l-navigation__item.-icon--note {
  width: 62px;
}
@media screen and (min-width: 769px) {
  .l-navigation__item.-icon--note {
    width: 25px;
  }
}

.l-social {
  display: flex;
  justify-content: center;
  gap: 0 45px;
  margin-top: 92px;
}
@media screen and (min-width: 769px) {
  .l-social {
    gap: 0 min(1.40625vw, 18px);
    margin-top: 0;
  }
}
.l-social__item {
  width: 54px;
}
@media screen and (min-width: 769px) {
  .l-social__item {
    width: 26px;
  }
}

.l-header.is-open .l-headerButton span {
  background-color: transparent;
  box-shadow: none;
}
.l-header.is-open .l-headerButton span::before {
  top: 0;
  transform: translateY(-50%) rotate(45deg);
}
.l-header.is-open .l-headerButton span::after {
  top: 0;
  transform: translateY(-50%) rotate(-45deg);
}
.l-header.is-open .l-headerGnav {
  opacity: 1;
  pointer-events: auto;
}

.l-header.is-fixed {
  padding: 10px 5.3333333333%;
}
@media screen and (min-width: 769px) {
  .l-header.is-fixed {
    padding: 12px 1.875%;
  }
}

/*----------------------------------------
	Footer
----------------------------------------*/
.l-footer {
  padding: 20px 0 10px;
  border-top: 2px solid #000000;
  background-color: #E7E7E7;
}
@media screen and (min-width: 769px) {
  .l-footer {
    padding: 20px 0;
  }
}
.l-footerLimit {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l-footerLimit {
    max-width: 1280px;
    margin: 0 auto;
  }
}
.l-footerWrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 769px) {
  .l-footerWrap {
    justify-content: flex-end;
    flex-direction: row;
    gap: 0 5%;
    width: 78.125%;
    margin: 0 auto;
  }
}
.l-footerLinks {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
@media screen and (min-width: 769px) {
  .l-footerLinks {
    gap: 0 20px;
  }
}
.l-footerLinks__item a {
  display: flex;
  align-items: center;
  gap: 0 6px;
}
.l-footerLinks__item a p {
  font-size: 10px;
}
@media screen and (min-width: 769px) {
  .l-footerLinks__item a p {
    width: -moz-max-content;
    width: max-content;
    font-size: 12px;
  }
}
.l-footerLinks__item a img {
  width: 24px;
}
.l-footerCopyright {
  text-align: center;
}
.l-footerCopyright small {
  display: inline-block;
  font-size: 9px;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .l-footerCopyright small {
    font-size: 10px;
  }
}

/*----------------------------------------
	Component
----------------------------------------*/
.c-h1 {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .c-h1 {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.c-button a {
  display: inline-block;
  padding: 5px 20px 6px;
  color: #ffffff;
  background-color: #5B5B5B;
  border: 1px solid #000000;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .c-button a {
    font-size: 14px;
  }
}
.c-button.-line a {
  background-color: #06C755;
}

.js-fade {
  opacity: 0;
  transform: translateY(10px);
}

.js-fade-bg {
  opacity: 0;
}

.js-fade-contents {
  opacity: 0;
  transform: translateY(10px);
}

/*----------------------------------------
	Utility
----------------------------------------*/
.u-hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .u-hidden-pc {
    display: none;
  }
}

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

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

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

.u-red {
  color: red;
}

.u-bg-red {
  background-color: red;
}

/* 
* 余白打ち消しクラス
*/
.u-noRadius {
  border-radius: 0 !important;
}

.u-noMargin {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-noMargin-top {
  margin-top: 0 !important;
}

.u-noMargin-bottom {
  margin-bottom: 0 !important;
}

.u-noPadding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-noPadding-top {
  padding-top: 0 !important;
}

.u-noPadding-bottom {
  padding-bottom: 0 !important;
}

/* 
* 余白
*/
.-padding-t {
  padding-top: 10px;
}
.-padding-t.-x2 {
  padding-top: 20px;
}
.-padding-t.-x4 {
  padding-top: 40px;
}
.-padding-t.-x6 {
  padding-top: 60px;
}
.-padding-t.-x8 {
  padding-top: 80px;
}
.-padding-t.-x10 {
  padding-top: 100px;
}

.-padding-b {
  padding-bottom: 10px;
}
.-padding-b.-x2 {
  padding-bottom: 20px;
}
.-padding-b.-x4 {
  padding-bottom: 40px;
}
.-padding-b.-x6 {
  padding-bottom: 60px;
}
.-padding-b.-x8 {
  padding-bottom: 80px;
}
.-padding-b.-x10 {
  padding-bottom: 100px;
}

.-margin-t {
  margin-top: 10px;
}
.-margin-t.-x2 {
  margin-top: 20px;
}
.-margin-t.-x4 {
  margin-top: 40px;
}
.-margin-t.-x6 {
  margin-top: 60px;
}
.-margin-t.-x8 {
  margin-top: 80px;
}
.-margin-t.-x10 {
  margin-top: 100px;
}

.-margin-b {
  margin-bottom: 10px;
}
.-margin-b.-x2 {
  margin-bottom: 20px;
}
.-margin-b.-x4 {
  margin-bottom: 40px;
}
.-margin-b.-x6 {
  margin-bottom: 60px;
}
.-margin-b.-x8 {
  margin-bottom: 80px;
}
.-margin-b.-x10 {
  margin-bottom: 100px;
}

/*----------------------------------------
	Page Home
----------------------------------------*/
.t-hero {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.t-fullpage {
  position: relative;
  height: 100dvh;
  min-height: 100dvh;
}
@media screen and (max-width: 768px) {
  .t-fullpage {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}
@media screen and (min-width: 769px) {
  .t-fullpage {
    min-height: 100svh;
  }
}
.t-fullpage.-last {
  height: auto;
  min-height: 100dvh;
}
@media screen and (min-width: 769px) {
  .t-fullpage.-last {
    min-height: initial;
  }
}
.t-fullpage__bottom {
  overflow: hidden;
}
.t-fullpage:nth-of-type(4) {
  background-color: #fff;
}
.t-fullpageLimit {
  position: relative;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .t-fullpageLimit {
    max-width: 1280px;
    margin: 0 auto;
  }
}
.t-fullpage__main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0 13px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .t-fullpage__main {
    gap: 0 48px;
  }
}
.t-fullpage__title {
  width: -moz-max-content;
  width: max-content;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 769px) {
  .t-fullpage__title {
    font-size: 24px;
  }
}
.t-fullpage__logo {
  width: 125px;
}
@media screen and (min-width: 769px) {
  .t-fullpage__logo {
    width: 170px;
  }
}
.t-fullpage__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(89.3333333333%, 380px);
  padding: 35px 4.2666666667%;
  background-color: #FAFAFA;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-fullpage__wrap {
    width: max(39.0625%, 500px);
    padding: 40px 30px;
  }
}
.t-fullpage__about {
  position: absolute;
  top: -24px;
  left: 4.776119403%;
  display: flex;
  align-items: center;
  font-size: 18px;
  letter-spacing: 0.05em;
  transform: translateX(-5px);
}
@media screen and (min-width: 769px) {
  .t-fullpage__about {
    top: -30px;
    left: 31px;
    font-size: 21px;
    transform: translateX(-4px);
    gap: 0 6px;
  }
}
.t-fullpage__about img {
  display: block;
  width: 74px;
  transform: translateX(5px);
}
@media screen and (min-width: 769px) {
  .t-fullpage__about img {
    width: 90px;
    transform: translateX(4px) translateY(2px);
  }
}
.t-fullpage__catch {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .t-fullpage__catch {
    font-size: 18px;
    line-height: 2.18;
  }
}
.t-fullpage__catch strong {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.t-fullpage__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  line-height: 2.75;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .t-fullpage__lead {
    font-size: 16px;
    line-height: 2.5;
  }
}
.t-fullpage__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: calc(50% - 20px);
  width: min(89.3333333333%, 380px);
}
@media screen and (min-width: 769px) {
  .t-fullpage__contents {
    top: calc(50% - 20px);
    width: 100%;
    padding: 0 10.15625%;
    box-sizing: border-box;
  }
}
.t-fullpage__contents__heading {
  margin-bottom: 34px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: min(4.8vw, 18px);
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) {
  .t-fullpage__contents__heading {
    margin-bottom: 30px;
    font-size: 32px;
    letter-spacing: 0.1em;
  }
}
.t-fullpage__contents__text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: min(3.2vw, 12px);
  line-height: 2.7;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .t-fullpage__contents__text {
    font-size: 19px;
    line-height: 40px;
    letter-spacing: 0.05em;
  }
}

.t-fullpage__title,
.t-fullpage__logo {
  opacity: 0;
}

.js-fade {
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .js-fade {
    opacity: 1;
    transform: none;
  }
}
.t-bottom-obj {
  z-index: 10;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  border-top: 2px solid #000000;
  background-color: #E7E7E7;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .t-bottom-obj {
    height: 64px;
  }
}
@media screen and (min-width: 769px) {
  .t-bottom-obj__inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
  }
}
.t-bottom-obj img {
  position: absolute;
  top: -152px;
  right: 0%;
  width: 150px;
}
@media screen and (min-width: 769px) {
  .t-bottom-obj img {
    top: -172px;
    right: 15.625%;
    width: 170px;
  }
}
.t-bottom-obj img.-last {
  opacity: 0;
  visibility: hidden;
}

.t-about {
  padding: 100px 5.3333333333% 0;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-about {
    width: 56.25%;
    margin: 0 auto;
    padding: 160px 0 0 0;
  }
}
.t-about__heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 52px;
  padding: 6px 20px;
  border-radius: 10px;
  border: 1px solid #2A3879;
  background-color: #ffffff;
  color: #2A3879;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .t-about__heading {
    margin: 0 auto 81px;
    padding: 7px 24px;
    font-size: 24px;
  }
}
.t-about__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 10px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: #FAFFFF;
  box-sizing: border-box;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 769px) {
  .t-about__item {
    gap: 44px;
    max-width: 680px;
    margin: 0 auto;
    padding: 15px 30px;
  }
}
.t-about__item + .t-about__item {
  margin-top: 53px;
}
.t-about__image {
  width: 84px;
}
@media screen and (min-width: 769px) {
  .t-about__image {
    width: 160px;
  }
}
.t-about__contents {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 769px) {
  .t-about__contents {
    gap: 14px;
  }
}
.t-about__contents__heading {
  color: #2A3879;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .t-about__contents__heading {
    font-size: 28px;
  }
}
.t-about__contents__text {
  color: #2A3879;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .t-about__contents__text {
    font-size: 15px;
    line-height: 1.7;
  }
}
.t-about__memo {
  margin-top: 25px;
  font-size: 12px;
  line-height: 35px;
  color: #2A3879;
}
@media screen and (min-width: 769px) {
  .t-about__memo {
    text-align: center;
    margin-top: 37px;
    font-size: 16px;
    line-height: 47px;
  }
}

.t-contents {
  margin-top: 92px;
  padding-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .t-contents {
    margin-top: 160px;
    padding-bottom: 100px;
  }
}
.t-contents + .t-contents {
  margin-top: 90px;
}
@media screen and (min-width: 769px) {
  .t-contents + .t-contents {
    margin-top: 160px;
  }
}
.t-contentsInner {
  position: relative;
  width: 89.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .t-contentsInner {
    width: 78.125%;
  }
}
.t-contentsInner__heading {
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #2D4566;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__heading {
    margin-bottom: 32px;
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: 0.1em;
  }
}
.t-contentsInner__lead {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #2D4566;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__lead {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.1em;
  }
}
.t-contentsInner__list {
  width: min(77.6119402985%, 260px);
  margin: 36px 0 40px;
  padding: 10px 20px;
  background-color: #F9FFFA;
  border: 1px solid #137200;
  border-radius: 10px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__list {
    width: min(36.2%, 362px);
    margin: 36px 0 60px;
    padding: 18px 30px;
  }
}
.t-contentsInner__list__item {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #2D4566;
  text-indent: -0.6em;
  padding-left: 0.8em;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__list__item {
    font-size: 16px;
  }
}
.t-contentsInner__list__item + .t-contentsInner__list__item {
  margin-top: 5px;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__list__item + .t-contentsInner__list__item {
    margin-top: 10px;
  }
}
.t-contentsInner__list__item::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #2D4566;
  border-radius: 50%;
  transform: translateY(-3px);
}
.t-contentsInner__text {
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 2.4;
  color: #2D4566;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__text {
    font-size: 18px;
    line-height: 46px;
  }
}
.t-contentsInner__text + .t-contentsInner__text {
  margin-top: 60px;
}
.t-contentsInner__text:has(+ .c-button) {
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__text:has(+ .c-button) {
    margin-bottom: 40px;
  }
}
.t-contentsInner__image {
  position: absolute;
  top: -6px;
  right: 0;
  width: 22.0895522388%;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__image {
    top: 74px;
    right: 10%;
    width: min(18.75vw, 240px);
  }
}
.t-contentsInner__wrap {
  margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__wrap {
    margin-top: 80px;
  }
}
.t-contentsInner__wrap .t-contentsInner__text {
  text-align: center;
  margin-bottom: 1rem;
}
.t-contentsInner__jicoo {
  margin: 10px 0 30px;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__jicoo {
    max-width: 860px;
    margin: 0 auto;
  }
}
.t-contentsInner__jicoo a {
  text-align: center;
  display: block;
  width: 100%;
  max-width: 295px;
  margin: 10px auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: #2A3879;
  color: #ffffff;
  box-sizing: border-box;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__jicoo a {
    max-width: 300px;
    margin: 20px 0 0 0;
    padding: 15px 20px;
    font-size: 15px;
  }
}
.t-contentsInner__table {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 0 10px;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__table {
    display: block;
    flex: 1;
    margin-top: 10px;
  }
}
.t-contentsInner__table__icon {
  width: 71px;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__table__icon {
    position: absolute;
    top: 64px;
    right: 19.2307692308%;
    width: 71px;
  }
}
.t-contentsInner__table table {
  z-index: 1;
  position: relative;
  width: calc(100% - 76px);
}
@media screen and (min-width: 769px) {
  .t-contentsInner__table table {
    width: 100%;
  }
}
.t-contentsInner__table tr {
  display: flex;
}
.t-contentsInner__table tr + tr {
  margin-top: 4px;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__table tr + tr {
    margin-top: 12px;
  }
}
.t-contentsInner__table tr th, .t-contentsInner__table tr td {
  font-size: 12px;
  line-height: 23px;
  letter-spacing: 0.05em;
  color: #2D4566;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__table tr th, .t-contentsInner__table tr td {
    font-size: 15px;
    line-height: 1.75;
  }
}
.t-contentsInner__table tr th {
  text-align: right;
  width: 68px;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__table tr th {
    width: 80px;
  }
}
.t-contentsInner__table tr td {
  flex: 1;
}
.t-contentsInner__table tr td span {
  display: block;
  font-size: 10px;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .t-contentsInner__table tr td span {
    display: inline-block;
    font-size: 9px;
    line-height: 12px;
  }
}

.t-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  width: 89.3333333333%;
  margin: 0 auto;
  padding: 120px 0 100px;
}
@media screen and (min-width: 769px) {
  .t-bottom {
    align-items: center;
    flex-direction: row;
    gap: 0 20%;
    width: 78.125%;
    padding: 145px 0 145px;
  }
}
.t-bottom__heading {
  margin-bottom: 44px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 40px;
  letter-spacing: 0;
  color: #2D4566;
}
@media screen and (min-width: 769px) {
  .t-bottom__heading {
    margin-bottom: 41px;
    font-size: 32px;
    line-height: 40px;
  }
}
.t-bottom__text {
  font-size: 13px;
  line-height: 38px;
  letter-spacing: 0;
  color: #2D4566;
}
@media screen and (min-width: 769px) {
  .t-bottom__text {
    font-size: 20px;
    line-height: 47px;
  }
}
.t-bottom__wrap {
  position: relative;
  width: min(71.6417910448%, 240px);
  margin: 36px 0 0;
  padding: 23px 20px 16px 20px;
  background-color: #F9FFFA;
  border: 1px solid #868686;
  border-radius: 30px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-bottom__wrap {
    width: min(36.2%, 362px);
    margin: 36px 0 0;
    padding: 35px 30px 30px;
  }
}
.t-bottom__wrap__heading {
  display: inline-block;
  position: absolute;
  top: -11px;
  left: 8px;
  width: -moz-max-content;
  width: max-content;
  padding: 3px 10px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 50px;
  color: #2D4566;
  background-color: #F9FFFA;
  border: 1px solid #868686;
}
@media screen and (min-width: 769px) {
  .t-bottom__wrap__heading {
    top: -14px;
    left: 10px;
    padding: 5px 16px 6px;
    font-size: 16px;
  }
}
.t-bottom__list__item {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #2D4566;
  text-indent: -0.2em;
  padding-left: 0.4em;
}
@media screen and (min-width: 769px) {
  .t-bottom__list__item {
    font-size: 16px;
    text-indent: -0.6em;
    padding-left: 0.8em;
  }
}
.t-bottom__list__item + .t-bottom__list__item {
  margin-top: 5px;
}
@media screen and (min-width: 769px) {
  .t-bottom__list__item + .t-bottom__list__item {
    margin-top: 10px;
  }
}
.t-bottom__list__item::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #2D4566;
  border-radius: 50%;
  transform: translate(-5px, -3px);
}
.t-bottom__image {
  width: 29.8507462687%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .t-bottom__image {
    width: 23.7%;
    margin: 0;
  }
}