@charset "UTF-8";
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -webkit-order: 9999;
      -ms-flex-order: 9999;
          order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper {
  padding-right: 12px;
}

.swiper-button-prev {
  cursor: pointer;
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url("/files/ltd/img/icon/next-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 5;
  top: 143px;
  left: 0px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}

.swiper-button-next {
  cursor: pointer;
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url("/files/ltd/img/icon/next-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 5;
  top: 143px;
  right: 0px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html {
  color: #333;
  background: #fff;
  word-break: break-all;
  visibility: visible;
  font-size: 62.5%;
}

body, * {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #fff;
  margin: 0;
  width: 100%;
  height: 100%;
}

#wrapper {
  min-width: 1280px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: bottom;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
a:hover {
  text-decoration: none;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
/* --------------------------------
common
----------------------------------- */

.swiper-button-disabled {
  display: none;
}

.swiper-hero {
  overflow: hidden;
}
.swiper-hero .swiper-button-next {
  right: -26px;
}
.swiper-hero .swiper-button-prev {
  left: -26px;
}
.swiper-hero .swiper-button-next,
.swiper-hero .swiper-button-prev {
  width: 60px;
  height: 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper-hero .swiper-button-next:hover,
.swiper-hero .swiper-button-prev:hover {
  cursor: pointer;
  opacity: 0.7;
}

/* --------------------------------
c-header
----------------------------------- */
.c-header {
  width: 100%;
  /* --------------------------------
  header foot nav
  ----------------------------------- */
}
.c-header .head {
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 80px;
  padding-left: 80px;
  border-bottom: 1px solid #ccc;
}
.c-header .head .header-logo {
  width: 148px;
  height: 56px;
}
.c-header .head .head-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header .head .head-item .head-item__right {
  margin-left: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-header .head .head-item .head-link .txt {
  font-weight: bold;
  color: #16a3bb;
  margin-left: 8px;
}
.c-header .head .head-item.sp {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header .head .head-item .head-link--nissay-only {
  font-weight: bold;
  color: #e96263;
  margin-left: 8px;
  position: relative;
  padding-right: 16px;
  font-size: 1.6rem;
}
.c-header .head .head-item .head-link--nissay-only::after {
  position: absolute;
  content: "";
  background-image: url(/files/ltd/img/icon/readMore-c-icon.svg?v=1679055372);
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
}
.c-header .foot {
  background-color: #eee;
  padding-left: 80px;
  padding-right: 150px;
  margin-right: auto;
  margin-left: auto;
  min-width: 100%;
  max-width: 1440px;
}
.c-header .foot .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-header .foot .list .item:hover::after {
  opacity: 0.5;
}
.c-header .foot .list .item:nth-child(n+2) {
  margin-left: 80px;
}
.c-header .foot .list .item.mega {
  position: relative;
  padding-right: 18px;
}
.c-header .foot .list .item.mega::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #2e2e2e transparent transparent transparent;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  right: 0;
}
.c-header .foot .list .item .link {
  cursor: pointer;
  color: #2e2e2e;
  line-height: 1.2;
  font-weight: bold;
  font-size: 1.7rem;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

/* --------------------------------
mega menu
----------------------------------- */
.mega-menu {
  position: absolute;
  background-color: #eee;
  width: 232px;
  top: 60px;
  left: -20px;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  display: none;
  z-index: 10;
}
.mega-menu.active {
  display: block;
  opacity: 1;
  pointer-events: visible;
}
.mega-menu .mega-item {
  line-height: 1;
}
.mega-menu .mega-item:first-child .mega-link {
  color: #000;
  font-size: 1.8rem;
  font-weight: 600;
}
.mega-menu .mega-item:nth-child(n+2) {
  position: relative;
  margin-top: 16px;
  margin-left: 18px;
}
.mega-menu .mega-item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #000;
  left: -18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 1px;
}
.mega-menu .mega-item:nth-child(n+2) .mega-link {
  color: #000;
  font-size: 1.6rem;
  font-weight: 300;
}

/* --------------------------------
h-menu
----------------------------------- */
.h-menu {
  margin-left: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.h-menu .h-menu-content {
  width: 24px;
  height: 24px;
  position: relative;
}
.h-menu .h-menu-content span {
  position: absolute;
  border-radius: 2px;
  background-color: #2e2e2e;
  width: 100%;
  height: 4px;
}
.h-menu .h-menu-content span:nth-child(1) {
  top: 0;
}
.h-menu .h-menu-content span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.h-menu .h-menu-content span:nth-child(3) {
  bottom: 0;
}

/* --------------------------------
g-nav
----------------------------------- */
body.active {
  position: fixed;
}
body.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: #000;
  opacity: 0.6;
}

.g-nav {
  position: absolute;
  z-index: 1000;
  height: 100vh;
  width: 78.3333vw;
  background-color: #fff;
  padding: 24px;
  top: 0;
  right: -100%;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.g-nav.active {
  right: 0;
}
.g-nav .gNav-icon {
  width: 22px;
  height: 22px;
  margin-left: auto;
}
.g-nav .gNav-icon img {
  width: 100%;
  height: 100%;
}
.g-nav .list {
  margin-top: 28px;
}
.g-nav .list .item {
  line-height: 1;
  position: relative;
}
.g-nav .list .item .link {
  color: #2e2e2e;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.g-nav .list .item:nth-child(n+2) {
  margin-top: 28px;
}
.g-nav .list .item:last-child {
  margin-top: 48px;
}
.g-nav .list .item.parent:after {
  position: absolute;
  content: "";
  background-image: url("/files/ltd/img/icon/readMore-b-icon.svg");
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  top: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0px;
}
.g-nav .list .child {
  display: none;
}
.g-nav .list .child .item {
  padding-left: 16px;
}
.g-nav .list .child .item:last-child {
  margin-top: 28px;
}

/* --------------------------------
search
----------------------------------- */
.h-search {
  position: absolute;
  z-index: 1000;
  top: 0;
  top: -200px;
  width: 100%;
  background-color: #fff;
  padding-top: 24px;
  padding-bottom: 40px;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
}
.h-search.active {
  top: 0;
}
.h-search .gNav-icon {
  width: 22px;
  height: 22px;
  margin-left: auto;
}
.h-search .gNav-icon img {
  width: 100%;
  height: 100%;
}
.h-search .search-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  height: 36px;
  width: 100%;
  margin-top: 24px;
}
.h-search .search-wrap .search-box {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 4px 0px 0px 4px;
  padding-left: 12px;
  padding-top: 11px;
  padding-bottom: 9px;
}
.h-search .search-wrap .search-box::-webkit-input-placeholder {
  color: #999;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.1428;
}
.h-search .search-wrap .search-box::-moz-placeholder {
  color: #999;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.1428;
}
.h-search .search-wrap .search-box:-ms-input-placeholder {
  color: #999;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.1428;
}
.h-search .search-wrap .search-box::-ms-input-placeholder {
  color: #999;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.1428;
}
.h-search .search-wrap .search-box::placeholder {
  color: #999;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.1428;
}
.h-search .search-wrap .search-btn {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 40px;
      -ms-flex: 0 1 40px;
          flex: 0 1 40px;
  width: 40px;
  height: 100%;
  background-color: #16a3bb;
  border-radius: 0px 4px 4px 0px;
}
.h-search .search-icon {
  width: 22px;
  height: 22px;
  margin-left: auto;
}
.h-search .search-icon img {
  width: 100%;
  height: 100%;
}

/* --------------------------------
c-footer
----------------------------------- */
.c-footer {
  position: relative;
  margin-top: 160px;
}
.c-footer .head {
  padding-top: 72px;
  padding-bottom: 60px;
  background-color: #555;
}
.c-footer .head .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-footer .head .row .column-item .linkItem {
  height: 20px;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}
.c-footer .head .row .column-item .linkItem:nth-child(n+2) {
  margin-top: 24px;
}
.c-footer .head .row .column-item .linkItem .link {
  color: #fff;
}
.c-footer .head .row .column-item:nth-child(1) .footer-banner {
  margin-top: 40px;
  width: 256px;
  height: 60px;
}
.c-footer .head .row .column-item:nth-child(4) .linkList.rt .linkItem:nth-child(n+2) {
  margin-top: 12px;
}
.c-footer .head .row .column-item .linkList.rt:nth-child(n+2) {
  margin-top: 40px;
}
.c-footer .head .row .column-item .linkList.rt .linkItem:nth-child(n+2) {
  position: relative;
  font-size: 1.6rem;
  padding-left: 24px;
  margin-top: 16px;
}
.c-footer .head .row .column-item .linkList.rt .linkItem:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  left: 0px;
}
.c-footer .head .notes {
  display: block;
  text-align: center;
  color: #ccc;
  font-weight: 400;
  font-size: 1.8rem;
  margin-top: 60px;
}
.c-footer .head .notes .bold {
  font-weight: 700;
}
.c-footer .foot {
  background-color: #333;
}
.c-footer .foot-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-footer .foot-inner .dtlWrap .txt {
  color: #999;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
}
.c-footer .foot-inner .dtlWrap .txt:nth-child(n+2) {
  margin-top: 12px;
}
.c-footer .foot-inner .company .wrap .headTxt {
  color: #ccc;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1;
}
.c-footer .foot-inner .company .wrap .footTxt {
  color: #ccc;
  font-weight: 300;
  font-size: 2.8rem;
  margin-top: 20px;
  line-height: 1;
}
.c-footer .foot-inner .company .footer-logo {
  width: 64px;
  height: 80px;
}
.c-footer a {
  color: inherit;
}

/* --------------------------------
c-pagetop
----------------------------------- */
.c-pageTop {
  cursor: pointer;
  position: fixed;
  width: 80px;
  height: 80px;
  background-color: #000;
  padding: 18px;
  opacity: 0.8;
  border-radius: 50%;
  right: 100px;
  bottom: 30px;
  z-index: 100;
}
.c-pageTop .pageTop {
  width: 44px;
  height: 44px;
}

.c-breadcrumb {
  padding-top: 24px;
  padding-bottom: 40px;
}

.breadcrumb-item {
  display: inline;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
}
.breadcrumb-item:nth-child(n+2) {
  position: relative;
}
.breadcrumb-item:nth-child(n+2)::before {
  content: "";
  display: inline-block;
  background-image: url("/files/ltd/img/icon/breadcrumb-icon.svg");
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 12px;
  margin-left: 12px;
}
.breadcrumb-item a {
  color: #16a3bb;
}
.breadcrumb-item.current {
  color: #333;
}
.breadcrumb-item .name {
  display: inline-block;
}

.search-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  height: 36px;
  width: 368px;
}
.search-wrap .search-box {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 4px 0px 0px 4px;
  padding-left: 12px;
  padding-top: 11px;
  padding-bottom: 9px;
}
.search-wrap .search-box::-webkit-input-placeholder {
  color: #999;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.1428;
}
.search-wrap .search-box::-moz-placeholder {
  color: #999;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.1428;
}
.search-wrap .search-box:-ms-input-placeholder {
  color: #999;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.1428;
}
.search-wrap .search-box::-ms-input-placeholder {
  color: #999;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.1428;
}
.search-wrap .search-box::placeholder {
  color: #999;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.1428;
}
.search-wrap .search-btn {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 40px;
      -ms-flex: 0 1 40px;
          flex: 0 1 40px;
  width: 40px;
  height: 100%;
  background-color: #16a3bb;
  border-radius: 0px 4px 4px 0px;
}

[class^=c-list] li {
  position: relative;
  padding-left: 24px;
  font-size: 18px;
  line-height: 1.66;
}

[class^=c-list] li::before {
  position: absolute;
  left: 0;
  content: "・";
}

.c-list--disc {
  padding-left: 1em;
}

.c-list--disc li {
  padding-left: 0;
  list-style: disc;
}

.c-list--disc li::before {
  content: none;
}

.c-list--number > li {
  counter-increment: cnt;
}

.c-list--number > li::before {
  content: counter(cnt) ".";
}

.c-list--number-brackets li {
  counter-increment: cnt;
}

.c-list--number-brackets li::before {
  content: "(" counter(cnt) ")";
}

.c-list--annotation li::before {
  content: "※";
}

.c-list--asterisk li {
  padding-left: 14px;
}

.c-list--asterisk li::before {
  content: "*";
}

.c-list--link li {
  position: relative;
  padding-left: 14px;
}

.c-list--link li::before {
  content: none;
}

.c-list__icon {
  position: absolute;
  top: 3px;
  left: 0;
  color: #17a4bb;
}

.c-docs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
}

.c-article-detail {
  font-size: 18px;
}
.c-article-detail-date {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 24px;
}
.c-article-detail h2 {
  font-size: 24px;
}
.c-article-detail img {
  margin-bottom: 24px;
}
.c-docsThumb a {
  display: block;
}

.c-docsText {
  font-size: 16px;
  line-height: 1.75;
}
.c-docsText h2 {
  margin: 0;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 16px;
}

.c-article-detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-article-detail__outer {
  max-width: 1280px;
}
.c-article-detail .p-article-body {
  margin-top: 0;
}

.p-newsDetail__author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-newsDetail__author__info__position {
  font-size: 18px;
}
.p-newsDetail__author__info__name {
  font-size: 24px;
  margin-top: 20px;
}
.p-newsDetail__author__info__description {
  font-size: 18px;
  margin-top: 20px;
}
.c-table th {
  border: solid 1px #ddd;
  background-color: #e4f4fe;
  padding: 30px;
  font-weight: bold;
  color: #16a3bb;
}
.c-table td {
  border: solid 1px #ddd;
  padding: 30px;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -35px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-bullet-inactive-color, #16a3bb);
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* --------------------------------
common
----------------------------------- */
.l-section {
  margin-top: 80px;
}
.l-section.mt {
  margin-top: 56px;
}

.llp-section.hp-mt {
  margin-top: 40px;
}
.llp-section .section-ttl {
  color: #333;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.333;
}
.llp-section .ttl-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 12px;
}

.c-page-ttl {
  font-weight: 300;
  line-height: 1;
  font-size: 3.2rem;
  margin-top: 0;
  font-weight: bold;
}

.c-item-ttl {
  font-weight: 300;
  line-height: 1;
  font-size: 1.8rem;
}
.c-lead {
  margin-top: 24px;
}
.c-lead .c-txt {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.67;
}
.c-manual {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-manual .txt {
  font-size: 1.6rem;
  font-weight: bold;
  color: #16a3bb;
  margin-left: 8px;
}

.c-btn {
  background-color: #16a3bb;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 408px;
  height: 60px;
  border-radius: 36px;
}
.c-btn--lage {
  width: inherit;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-right: 30px;
  padding-left: 30px;
}

.readMore {
  position: relative;
  text-align: right;
  display: block;
  color: #16a3bb;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 14px;
  padding-right: 16px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.readMore::after {
  position: absolute;
  content: "";
  background-image: url("/files/ltd/img/icon/readMore-icon.svg");
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0px;
}
.readMore.content {
  color: #000;
  margin-top: 0;
}
.readMore.content::after {
  background-image: url("/files/ltd/img/icon/readMore-b-icon.svg");
}

/* --------------------------------
util-slider
----------------------------------- */
.util-slider {
  position: relative;
}
.util-slider .article {
  width: 308px;
  line-height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: solid 1px #bbb;
  margin-bottom: 2px;
}
.util-slider .article-link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: inline-block;
  height: 100%;
  width: 100%;
}
.util-slider .article-link .thumbnail-wrap {
  aspect-ratio: 306/203;
}
.util-slider .article-link .thumbnail-wrap .thumbnail {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.util-slider .article-link .thumbnail-wrap .thumbnail--contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.util-slider .article-dtl {
  padding: 12px 10px 18px 10px;
  border-top: solid 1px #bbb;
}
.util-slider .article-dtl .date {
  color: #555;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
}
.util-slider .article-dtl .ttl {
  color: #000;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.555;
  letter-spacing: 0;
  margin-top: 4px;
}
/* --------------------------------
util-list
----------------------------------- */
.util-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -8px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.util-list.hp-mt {
  margin-top: 24px;
}
.util-list .article {
  position: relative;
  width: 308px;
  line-height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: solid 1px #bbb;
  margin: 8px;
}
.util-list .article:nth-child(3n) {
  margin-right: 0;
}
.util-list .article-link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: inline-block;
  height: 100%;
  width: 100%;
}
.util-list .article-link .thumbnail-wrap {
  aspect-ratio: 306/203;
}
.util-list .article-link .thumbnail-wrap .thumbnail {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.util-list .article-dtl {
  padding: 12px 11px 18px 11px;
  border-top: solid 1px #bbb;
}
.util-list .article-dtl .date {
  color: #555;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
}
.util-list .article-dtl .ttl {
  color: #000;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.555;
  letter-spacing: 0;
  margin-top: 4px;
  margin-bottom: 0;
}
/* --------------------------------
card-tag
----------------------------------- */
.new-tag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 70px;
  height: 70px;
}
.new-tag.large {
  width: 144px;
  height: 144px;
}
.new-tag img {
  width: 100%;
  height: 100%;
}

.rank-tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  color: #333;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  z-index: 10;
}
.rank-tag::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

/* --------------------------------
grid-list
----------------------------------- */
.card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.card-list .link {
  display: inline-block;
  overflow: hidden;
  border-radius: 12px;
  border: solid 1px #bbb;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.card-list .link .thumbnail-wrap {
  width: 100%;
  position: relative;
}
.card-list .link .thumbnail-wrap::before {
  position: absolute;
  padding-top: 66.34%;
}
.card-list .link .thumbnail-wrap.large::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  padding-top: 67.788%;
}
.card-list .link .thumbnail-wrap .thumbnail {
  width: 100%;
  height: 100%;
}
.card-list .m-card {
  position: relative;
  line-height: 0;
}
.card-list .m-card .link {
  width: 624px;
  height: 100%;
}
.card-list .m-card .article-dtl {
  padding: 12px 16px 40px 16px;
  border-top: solid 1px #bbb;
}
.card-list .m-card .article-dtl .date {
  color: #555;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
}
.card-list .m-card .article-dtl .ttl {
  color: #000;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.555;
  letter-spacing: 0;
  margin-top: 4px;
  margin-bottom: 0;
}
.card-list .m-card .article-dtl .summary {
  color: #000;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.555;
  letter-spacing: 0;
  margin-top: 4px;
  margin-bottom: 0;
}
.card-list .m-card .article-dtl.large .ttl {
  font-size: 2.2rem;
}
.card-list .m-card .article-dtl.large .summary {
  font-size: 2.2rem;
}
.card-list .s-card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: 16px;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  row-gap: 20px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.card-list .s-card {
  position: relative;
  line-height: 0;
}
.card-list .s-card .link {
  width: 308px;
  height: 330px;
}
.card-list .s-card .article-dtl {
  padding: 12px 10px 18px 10px;
  border-top: solid 1px #bbb;
}
.card-list .s-card .article-dtl .date {
  color: #555;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
}
.card-list .s-card .article-dtl .ttl {
  color: #000;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.555;
  letter-spacing: 0;
  margin-top: 4px;
}

/* --------------------------------
pagination
----------------------------------- */
.pagination-wrap {
  margin-top: 40px;
}

.c-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}
.c-pagination .item {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background-color: #fff;
}
.c-pagination .item.tp-lead {
  pointer-events: none;
}
.c-pagination .item.current {
  background-color: #16a3bb;
}
.c-pagination .item.current .page-link {
  font-weight: 700;
  color: #fff;
}
.c-pagination .item .page-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagination .item .page-next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagination .item .page-link {
  color: #16a3bb;
  font-size: 1.4rem;
  font-weight: 300;
}
.c-pagination .item .sym {
  color: #16a3bb;
  font-size: 1.4rem;
  font-weight: 300;
}

.pagenation-info {
  font-size: 18px;
}
/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
l-card
----------------------------------- */
.top-content {
  margin-top: 40px;
}

.l-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: solid 1px #bbb;
  border-radius: 12px;
  overflow: hidden;
}
.l-card .thumbnail-box .thumImg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.l-card .wrap .ttl {
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #2e2e2e;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: normal;
  letter-spacing: normal;
}
.l-card .wrap .txt {
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #2e2e2e;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: normal;
  margin-top: 6px;
}

/* --------------------------------
links
----------------------------------- */
.links .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.links .list .item:hover .banner-box {
  opacity: 0.5;
}
.links .list .banner-box {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: relative;
}
.links .list .banner-box::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  padding-top: 24.5%;
}
.links .list .banner-box.blank {
  position: relative;
}
.links .list .banner-box.blank::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background-image: url("/files/ltd/img/icon/link-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.links .list .banner-box .bannerImg {
  width: 100%;
  height: 100%;
}

/* --------------------------------
section
----------------------------------- */
.l-section.mt {
  margin-top: 55px;
}
.l-section .section-ttl {
  color: #333;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.333;
}
.l-section .ttl-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 12px;
}
.util-slider .swiper-hero .article {
  width: 100%;
}

.manual-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
.manual-box .imgWrap {
  width: 100%;
  height: 100%;
}
.manual-box .imgWrap img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.manual-box .dtlWrap .ttl {
  font-size: 2.4rem;
  font-weight: 300;
}
.manual-box .dtlWrap .lead {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 24px;
}
.manual-box .dtlWrap .foot {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 300;
  margin-top: 24px;
}
.manual-box .dtlWrap .btn-wrap {
  margin-top: 24px;
  text-align: right;
}
.manual-box .dtlWrap .btn-wrap.hp-mt {
  margin-top: 92px;
}

.btn-wrap.hp-tool {
  margin-top: 24px;
}

.tool-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}
.tool-box .imgWrap img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.tool-box .dtlWrap .ttl {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.tool-box .dtlWrap .txt {
  font-size: 1.6rem;
  font-weight: 300;
  margin-top: 12px;
}
.tool-box .dtlWrap .btn-wrap {
  margin-top: 136px;
  text-align: right;
}

.notes-wrap {
  background-color: #f6f6f6;
  margin-top: 40px;
}
.notes-wrap .ttl {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.notes-wrap .list {
  margin-top: 12px;
}
.notes-wrap .list .item {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 300;
  padding-left: 2em;
  text-indent: -2em;
}

.provisions-table {
  margin-top: 40px;
  border: 1px #999 solid;
  border-collapse: collapse;
  width: 100%;
}
.provisions-table thead {
  background-color: #dbebee;
  height: 44px;
}
.provisions-table th {
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  border: 1px #999 solid;
}
.provisions-table td {
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  border: 1px #999 solid;
  height: 36px;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
}
.provisions-table td:nth-of-type(1) {
  padding-left: 8px;
}
.provisions-table td:nth-of-type(2) {
  text-align: center;
}
.provisions-table td:nth-of-type(3) {
  padding-top: 6px;
  padding-bottom: 6px;
  text-align: center;
}
.provisions-table td .word {
  display: grid;
  place-items: center;
  font-weight: bold;
  color: #fff;
  background-color: #16a3bb;
  width: 110px;
  height: 24px;
  border-radius: 14px;
  margin-right: auto;
  margin-left: auto;
}

.adviser-box {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.adviser-box .imgWrap {
  width: 288px;
  height: 216px;
}
.adviser-box .imgWrap .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.adviser-box .dtlWrap .ttl {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
}
.adviser-box .dtlWrap .txt {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.75;
  margin-top: 24px;
}
.adviser-box .dtlWrap .link {
  color: #16a3bb;
  font-weight: 600;
}
.adviser-box .btn-wrap.hp-adviser {
  margin-top: 24px;
}

.simulation-box {
  margin-top: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.simulation-box .imgWrap {
  width: 288px;
  height: 216px;
}
.simulation-box .imgWrap .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.simulation-box.simulation-box--other .imgWrap {
  width: 200px;
  height: auto;
}
.simulation-box .dtlWrap .ttl {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  margin-top: 0;
}
.simulation-box .dtlWrap .txt {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.75;
  margin-top: 24px;
}
.simulation-box .dtlWrap .link {
  color: #16a3bb;
  font-weight: 600;
}
.simulation-box .btn-wrap.hp-simulation {
  margin-top: 24px;
}

.simulation-notes {
  background-color: #f6f6f6;
  padding: 24px;
  margin-top: 60px;
}
.simulation-notes .ttl {
  font-size: 1.8rem;
  font-weight: 600;
}
.simulation-notes .txt-wrap {
  margin-top: 12px;
}
.simulation-notes .txt {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 300;
  text-indent: -1em;
  padding-left: 1em;
}

/* --------------------------------
apply
----------------------------------- */
.howTo-box {
  margin-top: 40px;
}
.howTo-box .ttl {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
}
.howTo-box .flow-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.howTo-box .flow-list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.howTo-box .flow-list .item:nth-child(n+2)::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 16px;
  border-color: transparent transparent transparent #333;
}
.howTo-box .flow-list .item .txt {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.75;
  margin-left: 12px;
}
.howTo-box .flow-list .item .txt .bold {
  font-weight: 600;
}
.howTo-box .flow-list .item .iconImg {
  width: 40px;
  height: 40px;
}

.consultation-box {
  margin-top: 40px;
}
.consultation-box .ttl {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.33;
}
.consultation-box .type-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 24px;
}
.consultation-box .type-list .type-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 49.0625%;
      -ms-flex: 0 1 49.0625%;
          flex: 0 1 49.0625%;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.consultation-box .type-list .type-item .dtl-wrap .ttl {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
}
.consultation-box .type-list .type-item .dtl-wrap .txt {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.75;
  margin-top: 12px;
}
.consultation-box .type-list .type-item .dtl-wrap .txt .link {
  color: #16a3bb;
  font-weight: 600;
}
.consultation-box .type-list .type-item .typeImg {
  width: 108px;
  height: 108px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.example-wrap {
  margin-top: 40px;
}
.example-wrap .ttl {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
}
.example-wrap .txt {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.88;
  margin-top: 12px;
}

.application-box {
  margin-top: 40px;
}
.application-box.hp-mt {
  margin-top: 24px;
}
.application-box .ttl {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.33;
}
.application-box .c-notes {
  background-color: #f6f6f6;
  padding: 24px;
  margin-top: 24px;
}
.application-box .c-notes .ttl {
  font-size: 1.8rem;
  font-weight: 600;
}
.application-box .c-notes .txt-wrap {
  margin-top: 12px;
}
.application-box .c-notes .txt {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}
.application-box .form-wrap {
  margin-top: 24px;
}
.application-box .form-wrap .ttl {
  font-size: 1.8rem;
  font-weight: 600;
}
.application-box .form-wrap .required-tag {
  display: inline-block;
  color: #fff;
  vertical-align: middle;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1;
  margin-left: 8px;
  padding: 2px 4px;
  background-color: #e86262;
}
.application-box .form-wrap .input-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.application-box .form-wrap .input-row:nth-of-type(2) {
  margin-top: 12px;
}
.application-box .form-wrap .input-row:nth-of-type(3) {
  margin-top: 12px;
}
.application-box .form-wrap .input-row:nth-of-type(4) {
  margin-top: 12px;
}
.application-box .form-wrap .input-row:nth-of-type(5) {
  margin-top: 12px;
}
.application-box .form-wrap .input-row.terms {
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.application-box .form-wrap .input-row.buttons {
  margin-top: 12px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.application-box .form-wrap .input-row .select-box {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: solid 1px #000;
  background-color: #fff;
  padding: 8px 16px 8px 12px;
  border-radius: 4px;
  font-weight: 300;
  line-height: 1.38;
  font-size: 1.6rem;
  width: 328px;
}
.application-box .form-wrap .input-row .select-decWrap {
  width: 328px;
  position: relative;
}
.application-box .form-wrap .input-row .select-decWrap::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: url("/files/ltd/img/icon/select-icon.svg");
  top: 16px;
  right: 12px;
}
.application-box .form-wrap .input-row .input-text {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: solid 1px #ccc;
  background-color: #fff;
  font-weight: 300;
  line-height: 1.38;
  font-size: 1.6rem;
  border-radius: 4px;
  width: 708px;
  max-width: calc(100% - 290px);
  padding: 8px 16px 8px 12px;
}
.application-box .form-wrap .input-row .input-text::-webkit-input-placeholder {
  color: #999;
}
.application-box .form-wrap .input-row .input-text::-moz-placeholder {
  color: #999;
}
.application-box .form-wrap .input-row .input-text:-ms-input-placeholder {
  color: #999;
}
.application-box .form-wrap .input-row .input-text::-ms-input-placeholder {
  color: #999;
}
.application-box .form-wrap .input-row .input-text::placeholder {
  color: #999;
}
.application-box .form-wrap .input-row .input-textarea {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: solid 1px #ccc;
  background-color: #fff;
  font-weight: 300;
  line-height: 1.38;
  font-size: 1.6rem;
  border-radius: 4px;
  width: 1128px;
  max-width: calc(100% - 290px);
  height: 120px;
  padding: 8px 16px 8px 12px;
}
.application-box .form-wrap .input-row .input-textarea::-webkit-input-placeholder {
  color: #999;
}
.application-box .form-wrap .input-row .input-textarea::-moz-placeholder {
  color: #999;
}
.application-box .form-wrap .input-row .input-textarea:-ms-input-placeholder {
  color: #999;
}
.application-box .form-wrap .input-row .input-textarea::-ms-input-placeholder {
  color: #999;
}
.application-box .form-wrap .input-row .input-textarea::placeholder {
  color: #999;
}
.application-box .form-wrap .confirm-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.application-box .form-wrap .confirm-row:nth-of-type(3) {
  margin-top: 24px;
}
.application-box .form-wrap .confirm-row:nth-of-type(4) {
  margin-top: 24px;
}
.application-box .form-wrap .confirm-row:nth-of-type(5) {
  margin-top: 24px;
}
.application-box .form-wrap .confirm-row:nth-of-type(6) {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.application-box .form-wrap .apply-content {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 300;
}
.application-box .form-wrap .checkbox-label {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.application-box .form-wrap .checkbox-label .link {
  color: #16a3bb;
}
.application-box .form-wrap .input-file {
  display: none;
}
.application-box .form-wrap .file-label {
  color: #000;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  padding: 11px 24px;
  background-color: #fff;
  border: solid 1px #000;
  border-radius: 8px;
}
.application-box .form-wrap .input-checkbox {
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-image: url("/files/ltd/img/icon/checkbox-icon.svg");
}
.application-box .form-wrap .input-checkbox:checked {
  background-image: url("/files/ltd/img/icon/check-icon.svg");
}
.application-box .form-wrap .confirmation-btn {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  border-radius: 20px;
  background-color: #16a3bb;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0.5;
}
.application-box .form-wrap .confirmation-btn.active {
  opacity: 1;
}
.application-box .form-wrap .clear-btn {
  cursor: pointer;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1;
  color: #000;
  border-radius: 20px;
  border: solid 1px #000;
  background-color: #fff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.thanks-txt {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.67;
  margin-top: 24px;
}

.back-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.back-links .back-link {
  text-align: center;
  cursor: pointer;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
  color: #000;
  border-radius: 20px;
  border: solid 1px #000;
  background-color: #fff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 328px;
}

/* --------------------------------
supportCenter
----------------------------------- */
.supportcenter-box {
  background-color: #16a3bb;
  padding: 28px 12px 12px 12px;
  margin-top: 40px;
}
.supportcenter-box .ttl {
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.36;
}
.supportcenter-box .content {
  background-color: #fff;
  padding: 12px 32px;
  margin-top: 28px;
}
.supportcenter-box .content .txt {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.75;
}
.supportcenter-box .content .txt .hp-fz {
  font-size: 2rem;
}
.supportcenter-box .content .txt .hp-bold {
  font-size: 2rem;
  font-weight: 600;
}

.supportcenter-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
}
.supportcenter-wrap .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.supportcenter-wrap .flex-wrap:nth-of-type(1) .foot {
  margin-top: 24px;
}
.supportcenter-wrap .flex-wrap:nth-of-type(2) .foot {
  margin-top: 83px;
}
.supportcenter-wrap .flex-wrap .sym1 {
  width: 108px;
  height: 108px;
  margin-right: 12px;
}
.supportcenter-wrap .flex-wrap .sym2 {
  width: 86px;
  height: 86px;
  margin-right: 22px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 86px;
      -ms-flex: 1 0 86px;
          flex: 1 0 86px;
}
.supportcenter-wrap .flex-wrap .ttl {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.33;
}
.supportcenter-wrap .flex-wrap .head {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.88;
  margin-top: 12px;
}
.supportcenter-wrap .flex-wrap .foot .txt {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.88;
  padding-left: 1em;
  text-indent: -1em;
}
.supportcenter-wrap .flex-wrap .foot .txt .bold {
  font-weight: 600;
}

.fq-wrap {
  margin-top: 40px;
}
.fq-wrap .ttl {
  font-size: 1.8rem;
  font-weight: 600;
}
.fq-wrap .question-wrap {
  margin-top: 24px;
}
.fq-wrap .question-wrap .ttl {
  font-size: 1.8rem;
  font-weight: 600;
}
.fq-wrap .question-wrap .question-txt {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.75;
  margin-top: 12px;
}
.fq-wrap .question-wrap .answer-txt {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.88;
  margin-left: 48px;
  margin-top: 8px;
}

.supportcenter-paragraph {
  margin-top: 80px;
}
.supportcenter-paragraph.hp-mt {
  margin-top: 40px;
}
.supportcenter-paragraph .ttl {
  font-size: 1.8rem;
  font-weight: 600;
}
.supportcenter-paragraph .txt-wrap {
  margin-top: 12px;
}
.supportcenter-paragraph .txt-wrap .txt {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.88;
}

/* --------------------------------
lawyer
----------------------------------- */
.about-wrap {
  margin-top: 40px;
}
.about-wrap .ttl {
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1.33;
}
.about-wrap .paragraph {
  margin-top: 24px;
}
.about-wrap .paragraph .ttl {
  font-size: 1.8rem;
  line-height: 1.67;
  font-weight: 600;
}
.about-wrap .paragraph .txt-wrap .txt {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.88;
  padding-left: 1em;
  text-indent: -1em;
}
.about-wrap .paragraph .txt-wrap .txt .hp-txt {
  color: #8f1e1e;
}
.about-wrap .paragraph .txt-wrap .txt .link {
  color: #16a3bb;
  font-weight: 600;
}
.about-wrap .paragraph .example-wrap {
  margin-top: 12px;
}
.about-wrap .paragraph .example-wrap .txt {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.88;
  margin-left: 40px;
  margin-top: 0;
}
.about-wrap .flow-list {
  margin-top: 24px;
}
.about-wrap .flow-list .flow-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.about-wrap .flow-list .flow-item:nth-child(n+2) {
  margin-top: 24px;
}
.about-wrap .flow-list .flow-item .ttl {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.67;
}
.about-wrap .flow-list .flow-item .txt {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.88;
}
.about-wrap .flow-list .flow-item .txt .link {
  color: #16a3bb;
  font-weight: 600;
}
.about-wrap .flow-list .flow-item .step-icon {
  width: 108px;
  height: 108px;
}

.profile-wrap {
  margin-top: 60px;
}
.profile-wrap .ttl {
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1.33;
}

.lawyer-box {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.lawyer-box:nth-of-type(1) {
  margin-top: 24px;
}
.lawyer-box:nth-of-type(2) {
  margin-top: 40px;
}
.lawyer-box .imgWrap {
  width: 288px;
  height: 216px;
}
.lawyer-box .imgWrap .txt {
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 300;
  margin-top: 12px;
}
.lawyer-box .imgWrap .txt .link {
  color: #16a3bb;
  font-weight: 600;
}
.lawyer-box .imgWrap .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lawyer-box .dtlWrap .ttl {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
}
.lawyer-box .dtlWrap .txt {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.75;
  margin-top: 24px;
}
.lawyer-box .dtlWrap .txt .bold {
  font-weight: 600;
}
.lawyer-box .dtlWrap .link {
  color: #16a3bb;
  font-weight: 600;
}
.lawyer-box .btn-wrap.hp-simulation {
  margin-top: 24px;
}

.c-image-box {
  text-align: right;
}

.c-image-box img {
  width: 548px;
}

.p-faq-question {
  font-size: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-faq-answer {
  width: 100%;
  border-radius: 12px;
  background-color: #f2f7f9;
  padding: 16px;
  margin-top: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-faq-answer::before {
  width: 60px;
  height: 60px;
  content: "";
  background-image: url(/files/ltd/img/icon/answer2-icon.svg?v=1675652878);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 18px;
  margin-left: 12px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.p-faq-answer--sp {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.p-faq-answer--sp::before {
  width: 60px;
  height: 60px;
  content: "";
  background-image: url(/files/ltd/img/icon/answer2-icon.svg?v=1675652878);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 18px;
  margin-left: 12px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.p-faq-answer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-faq-answer__body {
  font-size: 24px;
}

.p-faq-respondent {
  font-size: 18px;
  font-weight: bold;
}

.p-precautions-for-use {
  width: 100%;
  background-color: #f6f6f6;
  padding: 24px;
  margin-top: 40px;
}
.p-precautions-for-use h3 {
  margin: 0;
  font-size: 16px;
}
.p-precautions-for-use p {
  font-size: 16px;
  line-height: 1.75;
}

.p-support__term {
  font-size: 18px;
  line-height: 2.2;
  max-width: 1280px;
  margin-bottom: 80px;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
}
.p-support__term h4 {
  margin: 0;
  font-weight: normal;
  line-height: 1;
}
.p-support__term h4 + p {
  margin-top: 4px;
}
.p-support__term p {
  margin: 10px 0 0;
  line-height: 1.66;
}

.p-support__recommended {
  font-size: 18px;
  line-height: 1.66;
  margin-bottom: 80px;
  margin-top: 30px;
}
.p-support__recommended h4 {
  font-weight: normal;
  margin: 0;
}
.p-support__recommended p {
  margin: 0;
  line-height: 1.66;
}
.p-support__recommended p + h4 {
  margin-top: 40px;
}

.p-movie__container {
  width: 100%;
}
.p-movie__container--bottom p {
  margin-top: 8px;
}
.p-movie__container-inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.p-movie__container-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.p-article-body {
  font-size: 18px;
  line-height: 1.66;
  margin: 24px 0;
}

.p-document-heading {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

.p-document__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-document__item {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.p-document__thumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-document__thumb img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.p-document__caption {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.375;
}

.p-document__download {
  margin-top: auto;
}

.p-document__download__link {
  background-color: #16a3bb;
  color: #fff;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 36px;
  margin-top: 12px;
}

.p-relation-content-heading {
  font-size: 20px;
  margin: 0;
}

.c-btn.hp-simulation {
  width: 480px;
  max-width: 100%;
}

.p-simulation-document-heading {
  font-size: 28px;
  font-weight: normal;
  margin: 40px 0 0 0;
}

.p-simulation-document__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 24px -20px 0;
}

.p-simulation-document__item {
  padding: 0 20px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-simulation-document__thumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-simulation-document__thumb img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.p-simulation-document__caption {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.375;
}

.p-simulation-document__download {
  margin-top: auto;
}

.p-simulation-document__download__link {
  background-color: #16a3bb;
  color: #fff;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 36px;
  margin-top: 24px;
}

.p-site-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-site-image-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 33%;
  margin: 0 10px;
  padding: 0;
}

.p-site-image-item figcaption {
  margin-top: auto;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.mr-85 {
  margin-right: 85px !important;
}

.ml-85 {
  margin-left: 85px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.mr-95 {
  margin-right: 95px !important;
}

.ml-95 {
  margin-left: 95px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.ma-center {
  margin: 0 auto;
}

.w-auto {
  width: auto;
}

.fc-nms {
  color: #16a3bb;
}

.ta-right {
  text-align: right;
}

.w-inherit {
  width: inherit;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-inline {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.justify-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.items-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.items-stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media only screen and (min-width: 769px) {
  .swiper {
    overflow: hidden;
  }
  .swiper {
    padding-right: 8px;
    padding-left: 0;
  }
  .swiper-button-prev {
    left: -10px;
  }
  a:hover {
    opacity: 0.5;
  }
  .sp {
    display: none !important;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }
  .c-inner {
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
  }
  .swiper {
    padding-left: 12px;
    margin: 0 -12px;
  }
  .swiper-button-prev {
    left: 0;
  }
  .swiper-inner {
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
  }
  .swiper-hero {
    padding-right: 12px;
    padding-left: 12px;
    margin: 0 -12px;
  }
  .c-header .head {
    max-width: 1440px;
    margin: 0 auto;
  }
  .c-footer {
    min-width: 100%;
    max-width: 1440px;
  }
  .c-footer .head .row .column-item {
    padding-bottom: 76px;
  }
  .c-footer .head .row .column-item:nth-child(1) {
    padding-right: 40px;
    border-right: 1px solid #979797;
  }
  .c-footer .head .row .column-item:nth-child(2) {
    margin-left: 40px;
  }
  .c-footer .head .row .column-item:nth-child(3) {
    margin-left: 24px;
  }
  .c-footer .head .row .column-item:nth-child(4) {
    margin-left: 24px;
  }
  .c-footer .foot-inner {
    max-width: 1440px;
    margin: 0 auto;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 80px;
    padding-left: 80px;
  }
  .c-footer .foot-inner .company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .c-footer .foot-inner .company .footer-logo {
    margin-left: 24px;
  }
  .c-docs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .c-docsThumb {
    width: 300px;
  }
  .c-docsThumb a {
    margin: 0 70px;
    width: 150px;
  }
  .c-article-detail {
    margin-top: 60px;
  }
  .c-article-detail__outer {
    margin: 0 auto;
  }
  .c-article-detail--col-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .c-article-detail-contents {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .c-article-detail-documents {
    max-width: 360px;
    width: 28.125vw;
    min-width: 270px;
    margin-left: 40px;
  }
  .p-newsDetail__author {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-newsDetail__author__thumb {
    width: 200px;
    margin-right: 24px;
  }
  .p-newsDetail__author__info {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .c-table {
    border: solid 1px #ddd;
  }
  .c-table td {
    width: 500px;
    max-width: 100%;
  }
  .c-btn.hp-right {
    margin-left: auto;
  }
  .l-card .thumbnail-box {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 753px;
        -ms-flex: 0 1 753px;
            flex: 0 1 753px;
    width: 753px;
    height: 398px;
    aspect-ratio: 753/398;
  }
  .l-card .wrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 527px;
        -ms-flex: 0 1 527px;
            flex: 0 1 527px;
    padding: 24px;
    aspect-ratio: 525/398;
  }
  .links .list {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 32px;
  }
  .links .list .item {
    -webkit-box-flex: calc(50% - 20px);
    -webkit-flex: calc(50% - 20px) 0 1;
        -ms-flex: calc(50% - 20px) 0 1;
            flex: calc(50% - 20px) 0 1;
  }
  .manual-box .imgWrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 22.5%;
        -ms-flex: 0 1 22.5%;
            flex: 0 1 22.5%;
  }
  .manual-box .dtlWrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 75.625%;
        -ms-flex: 0 1 75.625%;
            flex: 0 1 75.625%;
    margin-left: 24px;
  }
  .manual-box .dtlWrap .ttl {
    line-height: 1;
  }
  .manual-box .dtlWrap .lead {
    line-height: 1;
  }
  .tool-box .imgWrap {
    width: 100%;
    height: auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 24.0625%;
        -ms-flex: 0 1 24.0625%;
            flex: 0 1 24.0625%;
  }
  .tool-box .dtlWrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 74.0625%;
        -ms-flex: 0 1 74.0625%;
            flex: 0 1 74.0625%;
    margin-left: 24px;
  }
  .tool-box .dtlWrap .txt {
    line-height: 1.75;
  }
  .notes-wrap {
    padding: 24px;
  }
  .provisions-table th:nth-of-type(1) {
    width: 77.656%;
  }
  .provisions-table th:nth-of-type(2) {
    width: 12.5%;
  }
  .provisions-table th:nth-of-type(3) {
    width: 10%;
  }
  .adviser-box .dtlWrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 75.625%;
        -ms-flex: 0 1 75.625%;
            flex: 0 1 75.625%;
    margin-left: 24px;
  }
  .simulation-box .dtlWrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 75.625%;
        -ms-flex: 0 1 75.625%;
            flex: 0 1 75.625%;
    margin-left: 24px;
  }
  .consultation-box .type-list {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 40px;
  }
  .application-box .c-notes .flex-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    margin-top: 0;
  }
  .application-box .form-wrap .ttl.hp-mt {
    margin-top: 12px;
  }
  .back-links {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    margin-top: 80px;
  }
  .back-links .back-link {
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .back-links .back-link:hover {
    opacity: 0.5;
  }
  .supportcenter-wrap {
    -webkit-column-gap: 36px;
       -moz-column-gap: 36px;
            column-gap: 36px;
  }
  .lawyer-box .dtlWrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 75.625%;
        -ms-flex: 0 1 75.625%;
            flex: 0 1 75.625%;
    margin-left: 24px;
  }
  .p-faq-question {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-faq-answer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-faq-answer::before {
    display: block;
  }
  .p-faq-answer--sp {
    display: none;
  }
  .p-faq-answer--sp::before {
    display: none;
  }
  .p-faq-respondent--pc {
    display: block;
  }
  .p-support__term p + h4,
.p-support__term ol + h4,
.p-support__term ul + h4 {
    margin-top: 65px;
  }
  .p-movie__container {
    margin: 0 auto;
  }
  .p-movie__container--bottom {
    margin-bottom: 40px;
  }
  .p-document__thumb {
    height: 216px;
  }
  .p-document__download__link {
    font-size: 2rem;
  }
  .p-simulation-document__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-simulation-document__item {
    width: 25%;
    min-width: 300px;
  }
  .p-simulation-document__thumb {
    height: 216px;
  }
  .p-simulation-document__download__link {
    font-size: 2rem;
  }
  .p-site-image {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media only screen and (max-width: 768px) {
  .swiper-button-prev {
    width: 8.88vw;
    height: 8.88vw;
    left: -10px;
  }
  .swiper-button-next {
    width: 8.88vw;
    height: 8.88vw;
    right: 6.66vw;
  }
  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }

  .pc {
    display: none !important;
  }
  .c-inner {
    margin-right: 12px;
    margin-left: 12px;
  }
  .c-header .head {
    height: 56px;
    padding-right: 16px;
    padding-left: 12px;
  }
  .c-header .head .header-logo {
    width: 106px;
    height: 40px;
  }
  .c-header .foot .list .item .link {
    font-size: 1.8rem;
  }
  .c-footer .head {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 44px;
    padding-bottom: 60px;
  }
  .c-footer .head .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-footer .head .row .column-item:nth-child(n+2) {
    margin-top: 40px;
  }
  .c-footer .foot-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 24px;
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 60px;
  }
  .c-footer .foot-inner .company .wrap .headTxt {
    font-size: 1.6rem;
    line-height: 1.6875;
    margin-top: 40px;
  }
  .c-footer .foot-inner .company .wrap .footTxt {
    font-size: 2rem;
  }
  .c-footer .foot-inner .company .footer-logo {
    margin-top: 24px;
  }
  .c-pageTop {
    right: 22px;
  }
  .c-breadcrumb {
    padding-bottom: 24px;
  }
  .c-docs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-docsThumb {
    margin-bottom: 24px;
  }
  .c-docsThumb a {
    text-align: center;
    margin: 0 94px;
  }
  .c-article-detail {
    margin-top: 30px;
  }
  .c-article-detail__outer {
    margin: 0 12px;
  }
  .c-article-detail--col-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-article-detail-documents {
    margin-top: 40px;
  }
  .p-newsDetail__author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-newsDetail__author__thumb {
    margin: 0 auto;
  }
  .p-newsDetail__author__thumb__inner {
    width: 200px;
  }
  .p-newsDetail__author__info {
    margin-top: 24px;
  }
  .c-table tr {
    margin-bottom: 20px;
  }
  .c-table th {
    border-bottom: none;
    -moz-text-align-last: left;
         text-align-last: left;
  }
  .c-table,
.c-table thead,
.c-table tbody,
.c-table tr,
.c-table th,
.c-table td {
    width: 100%;
    display: block;
  }
  .l-section {
    margin-top: 40px;
  }
  .llp-section .section-ttl {
    font-size: 2rem;
    line-height: 1;
  }
  .c-page-ttl {
    line-height: 1.333;
    font-size: 2.4rem;
  }
  .c-lead {
    margin-top: 24px;
  }
  .c-btn.hp-right {
    margin-right: auto;
    margin-left: auto;
  }
  .c-btn {
    width: 93.3333vw;
  }
  .c-btn--lage {
    width: 100%;
    line-height: 1.3;
    padding: 20px 20px;
    display: block;
    height: auto;
    text-align: center;
  }
  .readMore {
    margin-top: 7px;
  }
  .readMore.content {
    font-size: 1.4rem;
    line-height: 1;
  }
  .util-slider {
    margin-left: 12px;
  }
  .util-slider .article {
    width: 85.5555vw;
  }
  .util-list .article {
    width: 100%;
    height: auto;
  }
  .pagination-wrap {
    margin-top: 24px;
  }
  .top-content {
    margin-top: 24px;
  }
  .l-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-card .thumbnail-box {
    width: 100%;
    height: 178px;
    aspect-ratio: 334/178;
  }
  .l-card .wrap {
    padding: 12px 12px 24px 12px;
  }
  .l-card .wrap .ttl {
    font-size: 1.8rem;
  }
  .l-card .wrap .txt {
    line-height: 1.71;
    margin-top: 4px;
  }
  .links .list {
    row-gap: 12px;
  }
  .links .list .banner-box {
    width: 100%;
  }
  .links .list .banner-box.blank::after {
    top: 9px;
    right: 9px;
    top: 2.5vw;
    right: 2.5vw;
    width: 4.7222vw;
    height: 4.7222vw;
  }
  .l-section .section-ttl {
    font-size: 2rem;
    line-height: 1;
  }
  .util-slider .swiper-hero {
    margin-bottom: 60px;
  }
  .manual-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .manual-box .imgWrap {
    margin: 0 auto;
  }
  .manual-box .dtlWrap {
    margin-top: 24px;
  }
  .manual-box .dtlWrap .ttl {
    line-height: 1.33;
  }
  .manual-box .dtlWrap .lead {
    margin-top: 14px;
    line-height: 1.56;
  }
  .manual-box .dtlWrap .btn-wrap.hp-mt {
    margin-top: 19px;
  }
  .btn-wrap.hp-tool .c-btn {
    font-size: 1.8rem;
  }
  .tool-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tool-box .imgWrap {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .tool-box .dtlWrap {
    margin-top: 12px;
  }
  .tool-box .dtlWrap .ttl {
    font-size: 1.8rem;
  }
  .tool-box .dtlWrap .txt {
    font-size: 1.4rem;
    margin-top: 12px;
    line-height: 1.71;
  }
  .notes-wrap {
    margin-top: 24px;
    padding: 24px 12px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .notes-wrap .list .item {
    padding-left: 1em;
    text-indent: -1em;
  }
  .provisions-table thead {
    height: 56px;
  }
  .provisions-table th {
    vertical-align: top;
    font-size: 1.6rem;
    line-height: 1.25;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .provisions-table th:nth-of-type(1) {
    width: 71.6666vw;
  }
  .provisions-table th:nth-of-type(2) {
    display: none;
  }
  .provisions-table th:nth-of-type(3) {
    width: 22.222vw;
    padding-right: 3.888vw;
    padding-left: 3.888vw;
  }
  .provisions-table td .type {
    font-size: 1.4rem;
    line-height: 1.71;
    font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: normal;
    margin-left: 16px;
  }
  .provisions-table td {
    vertical-align: top;
    font-size: 1.4rem;
    line-height: 1.71;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .provisions-table td:nth-of-type(2) {
    display: none;
  }
  .provisions-table td .word {
    width: 80%;
    height: 48px;
    border-radius: 24px;
    line-height: 1;
  }
  .adviser-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .adviser-box .imgWrap {
    width: 100%;
    height: auto;
  }
  .adviser-box .dtlWrap {
    margin-top: 24px;
  }
  .adviser-box .dtlWrap .txt {
    margin-top: 18px;
  }
  .simulation-box {
    margin-top: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .simulation-box .imgWrap {
    width: 100%;
    height: auto;
  }
  .simulation-box.simulation-box--other .imgWrap {
    width: 100%;
    height: auto;
  }
  .simulation-box .dtlWrap {
    margin-top: 24px;
  }
  .simulation-box .dtlWrap .ttl {
    line-height: 1.5;
  }
  .simulation-box .dtlWrap .txt {
    margin-top: 18px;
  }
  .simulation-box .btn-wrap.hp-simulation .hp-simulation {
    font-size: 1.8rem;
  }
  .simulation-notes {
    padding: 12px;
  }
  .howTo-box {
    margin-top: 24px;
  }
  .consultation-box .type-list {
    row-gap: 24px;
  }
  .consultation-box .type-list .type-item .typeImg {
    width: 22.222vw;
    height: 22.222vw;
  }
  .application-box .c-notes {
    padding: 12px;
  }
  .application-box .c-notes .flex-wrap {
    margin-top: 6px;
  }
  .application-box .c-notes .txt {
    text-indent: -1em;
    padding-left: 1em;
  }
  .back-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
    margin-top: 60px;
  }
  .back-links .back-link {
    text-align: center;
    width: min(328px, 91.1111vw);
    padding-top: 12px;
    padding-bottom: 12px;
    margin-right: auto;
    margin-left: auto;
  }
  .supportcenter-box {
    padding: 20px 12px 12px 12px;
  }
  .supportcenter-box .ttl {
    line-height: 1.55;
  }
  .supportcenter-box .content {
    margin-top: 16px;
    padding: 16px 12px;
  }
  .supportcenter-box .content .txt .hp-fz {
    line-height: 1.6;
  }
  .supportcenter-box .content .txt .hp-bold {
    line-height: 1.6;
  }
  .supportcenter-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
    margin-top: 40px;
  }
  .supportcenter-wrap .flex-wrap:nth-of-type(1) .foot {
    margin-top: 12px;
  }
  .supportcenter-wrap .flex-wrap:nth-of-type(2) .foot {
    margin-top: 12px;
  }
  .supportcenter-wrap .flex-wrap .sym1 {
    width: 80px;
    height: 80px;
    margin-right: 12px;
  }
  .supportcenter-wrap .flex-wrap .sym2 {
    width: 80px;
    height: 80px;
    margin-right: 12px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 86px;
        -ms-flex: 1 0 86px;
            flex: 1 0 86px;
  }
  .fq-wrap .question-wrap .answer-txt {
    margin-left: min(48px, 13.333vw);
  }
  .supportcenter-paragraph .txt-wrap .txt.hp-indent {
    padding-left: 1em;
    text-indent: -1em;
  }
  .about-wrap .paragraph .example-wrap .txt {
    margin-left: min(40px, 11.111vw);
  }
  .about-wrap .flow-list .flow-item .step-icon {
    width: 80px;
    height: 80px;
  }
  .profile-wrap {
    margin-top: 40px;
  }
  .lawyer-box {
    margin-top: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lawyer-box .imgWrap {
    width: 100%;
    height: auto;
  }
  .lawyer-box .dtlWrap {
    margin-top: 24px;
  }
  .lawyer-box .dtlWrap .ttl {
    line-height: 1.5;
  }
  .lawyer-box .dtlWrap .txt {
    margin-top: 18px;
  }
  .lawyer-box .btn-wrap.hp-simulation .hp-simulation {
    font-size: 1.8rem;
  }
  .c-image-box {
    text-align: center;
  }
  .c-image-box img {
    width: 100%;
  }
  .p-faq-question {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-faq-answer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-faq-answer::before {
    display: none;
  }
  .p-faq-answer--sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .p-faq-answer--sp::before {
    display: block;
  }
  .p-faq-answer__body {
    margin-top: 12px;
    padding-bottom: 20px;
  }
  .p-faq-respondent--pc {
    display: none;
  }
  .p-support__term {
    margin: 0 10px;
  }
  .p-support__term p + h4,
.p-support__term ol + h4,
.p-support__term ul + h4 {
    margin-top: 70px;
  }
  .p-movie__container--bottom {
    margin-bottom: 40px;
  }
  .p-document__item:not(:first-child) {
    margin-top: 40px;
  }
  .p-document__download__link {
    font-size: 20px;
  }
  .p-simulation-document__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-simulation-document__item {
    width: 100%;
  }
  .p-simulation-document__item:not(:first-child) {
    margin-top: 40px;
  }
  .p-simulation-document__thumb {
    padding: 0 26px;
  }
  .p-simulation-document__download__link {
    font-size: 20px;
  }
  .p-site-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-site-image-item {
    width: 100%;
  }
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
  main {
    padding-right: 6.25vw;
    padding-left: 6.25vw;
  }
  .c-header .foot .list .item:nth-child(n+2) {
    margin-left: 3.4vw;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  main {
    padding-right: 6.25vw;
    padding-left: 6.25vw;
  }
  .c-header .head {
    padding-right: 6.25vw;
    padding-left: 6.25vw;
  }
  .c-header .foot {
    padding-right: 6.25vw;
    padding-left: 6.25vw;
    min-width: 100%;
  }
  .card-list .m-card .link {
    width: 42.5vw;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  main {
    padding-right: 2vw;
    padding-left: 2vw;
  }
  .c-header .head {
    padding-right: 2vw;
    padding-left: 2vw;
  }
  .c-header .foot {
    padding-left: 0;
    padding-right: 0;
    min-width: 100%;
  }
  .card-list .m-card .link {
    width: 46.75vw;
  }
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
  #wrapper {
    min-width: 100%;
  }
  .c-header .head .header-logo {
    width: 11.562vw;
    height: 4.375vw;
  }
  .c-header .head .head-item .head-link--nissay-only {
    font-size: 1.25vw;
  }
  .c-header .foot {
    height: 64px;
  }
  .c-header .foot .list .item:nth-child(n+2) {
    margin-left: 3.4vw;
  }
  .c-header .foot .list .item .link {
    font-size: 1.406vw;
  }
  .c-footer {
    min-width: 100%;
    margin-top: 12.5vw;
  }
  .c-footer .head {
    padding-top: 5.625vw;
    padding-bottom: 4.687vw;
  }
  .c-footer .head .row .column-item {
    padding-bottom: 5.937vw;
  }
  .c-footer .head .row .column-item:nth-child(n+2) {
    margin-top: 3.125vw;
  }
  .c-footer .head .row .column-item .linkItem {
    font-size: 1.406vw;
  }
  .c-footer .head .row .column-item:nth-child(1) {
    padding-right: 3.125vw;
  }
  .c-footer .head .row .column-item:nth-child(1) .footer-banner {
    margin-top: 3.125vw;
    width: 20vw;
    height: 4.687vw;
  }
  .c-footer .head .row .column-item .linkList.rt .linkItem:nth-child(n+2) {
    font-size: 1.25vw;
  }
  .c-footer .head .notes {
    font-size: 1.406vw;
  }
  .c-footer .foot-inner {
    padding-top: 1.875vw;
    padding-bottom: 1.875vw;
    padding-right: 6.25vw;
    padding-left: 6.25vw;
  }
  .c-footer .foot-inner .dtlWrap .txt {
    font-size: 1.25vw;
  }
  .c-footer .foot-inner .company .wrap .headTxt {
    font-size: 1.406vw;
  }
  .c-footer .foot-inner .company .wrap .footTxt {
    font-size: 2.187vw;
  }
  .c-footer .foot-inner .company .footer-logo {
    width: 5vw;
    height: 6.25vw;
    margin-left: 1.875vw;
  }
  .l-section {
    margin-top: 6.25vw;
  }
  .l-section.mt {
    margin-top: 4.296vw;
  }
  .c-manual .txt {
    font-size: 1.25vw;
  }
  .readMore {
    font-size: 1.25vw;
  }
  .util-slider .article {
    width: calc(33.333% - 16px);
  }
  .util-slider .article-dtl .date {
    font-size: 1.25vw;
  }
  .util-list .article {
    width: calc(33.333% - 16px);
  }
  .util-list .article-dtl .date {
    font-size: 1.25vw;
  }
  .new-tag {
    width: 5.468vw;
    height: 5.468vw;
  }
  .new-tag.large {
    width: 11.25vw;
    height: 11.25vw;
  }
  .new-tag img {
    width: auto;
    height: auto;
  }
  .rank-tag {
    width: 4.687vw;
    height: 4.687vw;
    font-size: 2.5vw;
  }
  .card-list .m-card .article-dtl .date {
    font-size: 1.25vw;
  }
  .card-list .m-card .article-dtl.large .ttl {
    font-size: 1.71875vw;
  }
  .card-list .m-card .article-dtl.large .summary {
    font-size: 1.71875vw;
  }
  .card-list .s-card-list {
    margin-left: 4px;
    -webkit-column-gap: 3px;
       -moz-column-gap: 3px;
            column-gap: 3px;
    row-gap: 5px;
  }
  .card-list .s-card .link {
    height: 25.78vw;
  }
  .card-list .s-card .article-dtl .date {
    font-size: 1.25vw;
  }
  .card-list .s-card .article-dtl .ttl {
    height: 4.375vw;
    overflow: hidden;
  }
  .l-card .thumbnail-box {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 58.83vw;
        -ms-flex: 0 1 58.83vw;
            flex: 0 1 58.83vw;
    width: 58.83vw;
    height: 31.1vw;
  }
  .l-card .wrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 41.08vw;
        -ms-flex: 0 1 41.08vw;
            flex: 0 1 41.08vw;
    width: 41.08vw;
    max-height: 30.781vw;
    padding: 1.875vw;
  }
  .l-card .wrap .ttl {
    font-size: 1.875vw;
    max-height: 5.5625vw;
    overflow: hidden;
    margin-top: 1.484vw;
    margin-bottom: 1.484vw;
  }
  .l-card .wrap .txt {
    font-size: 1.25vw;
    max-height: 15.312vw;
    overflow: hidden;
  }
  .l-section .section-ttl {
    font-size: 1.875vw;
  }
}

@media only screen and (max-width: 359px) {
  .c-btn {
    width: 100%;
  }
  .simulation-box .btn-wrap.hp-simulation .hp-simulation {
    font-size: 1.6rem;
  }
  .lawyer-box .btn-wrap.hp-simulation .hp-simulation {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1280px) and (min-width: 1024px) and (max-width: 1280px) {
  .card-list .s-card .link {
    width: 20.935vw;
  }
}

@media screen and (min-width: 769px) and (max-width: 1280px) and (min-width: 769px) and (max-width: 1023px) {
  .card-list .s-card .link {
    width: 23.06vw;
  }
}

@media all and (-ms-high-contrast: none) {
  .util-slider .article {
    height: 356px;
  }
  .util-slider .article-link .thumbnail-wrap {
    width: 303px;
    height: 201px;
  }
  .card-list .link .thumbnail-wrap.large {
    width: 622px;
    height: 422px;
  }
  .card-list .link .thumbnail-wrap {
    width: 306px;
    position: relative;
  }
  .card-list .link .thumbnail-wrap::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    padding-top: 66.34%;
  }
  .card-list .s-card:nth-child(3),
.card-list .s-card:nth-child(4) {
    margin-top: 12px;
  }
  .util-list .article {
    margin-left: 8px;
    margin-bottom: 8px;
  }
}

@media screen and (-ms-high-contrast: none) and (min-width: 769px) and (max-width: 1280px) {
  .util-slider .article {
    height: 27.812vw;
  }
  .util-slider .article-link .thumbnail-wrap {
    width: 23.671vw;
    height: 15.703vw;
  }
  .card-list .link .thumbnail-wrap.large {
    width: 48.593vw;
    height: 32.968vw;
  }
  .card-list .link .thumbnail-wrap {
    width: 100%;
  }
  .card-list .s-card:nth-child(3),
.card-list .s-card:nth-child(4) {
    margin-top: 0.937vw;
  }
  .util-list .article {
    margin-left: 0.625vw;
    margin-bottom: 0.625vw;
  }
}

@media screen and (min-width: 901px) {
  .howTo-box .flow-list {
    margin-top: 16px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .howTo-box .flow-list .item {
    width: 33.333%;
  }
  .howTo-box .flow-list .item:nth-child(n+2)::before {
    margin-left: 28px;
    margin-right: 28px;
  }
  .howTo-box .flow-list .item .txt {
    width: 320px;
  }
  .application-box .form-wrap .ttl {
    width: 210px;
    white-space: nowrap;
    padding-left: 32px;
  }
  .application-box .form-wrap .input-row {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
  .application-box .form-wrap .input-row:nth-of-type(4) {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .application-box .form-wrap .input-row.terms {
    margin-top: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 30px 0 50px;
  }
  .application-box .form-wrap .input-row.buttons {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
  .application-box .form-wrap .confirm-row {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
  .application-box .form-wrap .confirm-row:nth-of-type(4) {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .application-box .form-wrap .confirm-row:nth-of-type(5) {
    margin-top: 40px;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
  .application-box .form-wrap .apply-content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 88.125%;
        -ms-flex: 0 1 88.125%;
            flex: 0 1 88.125%;
  }
  .application-box .form-wrap .confirmation-btn {
    padding: 12px 140px 12px;
  }
  .application-box .form-wrap .confirmation-btn:hover {
    opacity: 0.5;
  }
  .application-box .form-wrap .clear-btn {
    padding: 12px 140px 12px;
  }
  .application-box .form-wrap .clear-btn:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 900px) {
  .howTo-box .flow-list {
    margin-top: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .howTo-box .flow-list .item:nth-child(n+2) {
    position: relative;
    margin-top: 56px;
  }
  .howTo-box .flow-list .item:nth-child(n+2)::before {
    position: absolute;
    top: -36px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 16px 0 16px;
    border-color: #333 transparent transparent transparent;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .consultation-box .type-list .type-item {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  .application-box .form-wrap .ttl {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding-left: 0;
  }
  .application-box .form-wrap .input-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
  }
  .application-box .form-wrap .input-row:nth-of-type(5) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
  .application-box .form-wrap .input-row:nth-of-type(5) .ttl {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .application-box .form-wrap .input-row.terms {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 30px 0 50px;
  }
  .application-box .form-wrap .input-row.buttons {
    row-gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .application-box .form-wrap .input-row .select-box {
    width: 100%;
  }
  .application-box .form-wrap .input-row .select-decWrap {
    width: 91.111vw;
  }
  .application-box .form-wrap .input-row .input-text {
    width: 100%;
    max-width: 100%;
  }
  .application-box .form-wrap .input-row .input-textarea {
    width: 100%;
    max-width: 100%;
  }
  .application-box .form-wrap .confirm-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
  }
  .application-box .form-wrap .confirm-row:nth-of-type(2) {
    margin-top: 12px;
  }
  .application-box .form-wrap .confirm-row:nth-of-type(3) {
    margin-top: 12px;
  }
  .application-box .form-wrap .confirm-row:nth-of-type(4) {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
  .application-box .form-wrap .confirm-row:nth-of-type(6) {
    row-gap: 0;
    margin-top: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .application-box .form-wrap .confirmation-btn {
    text-align: center;
    width: min(328px, 91.1111vw);
    padding-top: 12px;
    padding-bottom: 12px;
    margin-right: auto;
    margin-left: auto;
  }
  .application-box .form-wrap .clear-btn {
    text-align: center;
    width: min(328px, 91.1111vw);
    padding-top: 12px;
    padding-bottom: 12px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 12px;
  }
  .supportcenter-wrap .flex-wrap:nth-of-type(1) {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 912px) {
  .p-simulation-document__item {
    width: 50%;
  }
}

.client-tag {
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 9;
  width: 60px;
  height: 60px;
  background-color: #ffc003;
  color: #494949;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.movie-book-button-list {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  max-width: 900px;
  margin: 40px auto;
}

.movie-book-title {
  line-height: 1;
  font-size: 3.2rem;
  margin-top: 0;
  font-weight: bold;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .movie-book-button-list {
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
  }

  .movie-book-title {
    margin-right: 12px;
    margin-left: 12px;
    line-height: 1.333;
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}

.c-category-description {
  font-size: 1.8rem;
}

.c-category-description.movie-book {
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .c-category-description {
    font-size: 1.6rem;
  }
  .c-category-description.movie-book {
    margin-top: 12px;
  }
}

.movie-book-button-item--maintenance {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.movie-book-button-item__text-maintenance {
  font-size: 16px;
  margin-top: 4px;
}

.movie-book-button-item__btn-warning {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}

.movie-book-button-item__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.movie-book-button-item--maintenance .movie-book-button-item__link {
  background-color: #868686;
  cursor: not-allowed;
}

/* FAQ */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 80px 0px;
    margin-top: 40px;
}

.faq-item {
    border-bottom: solid 1px #e9e9e9;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px 0px;
}

.faq-category-section {
    display: flex;
    flex-direction: column;
    gap: 30px 0px;
}

.faq-category-section-ttl {
    padding: 4px 0 8px 10px;
    font-size: 24px;
    font-weight: 700;
    border-left: solid 6px #16a3bb;
    border-bottom: solid 1px #16a3bb;
    width: 100%;
}

.faq-heading {
    font-size: 18px;
    border-bottom: solid 1px #f3f3f3;
    display: flex;
    flex-direction: row;
    gap: 0 20px;
    padding-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-heading:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.faq-heading::before {
    content: "Q";
    font-size: 24px;
    font-weight: bold;
    color: #16a3bb;
    position: relative;
    top: -5px;
}

.faq-heading::after {
    content: "";
    background-image: url(/files/ltd/img/icon/breadcrumb-icon.svg?v=1647409016);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(90deg);
    margin-left: auto;
    position: relative;
    top: 5px;
    flex: 0 0 auto;
}

.faq-description {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.75;
    display: flex;
    flex-direction: row;
    gap: 0 20px;
    padding-bottom: 40px;
    display: none;
    transition: 0.3s;
}

.faq-description::before {
    content: "A";
    font-size: 24px;
    font-weight: bold;
    color: #555;
    position: relative;
    top: -6px;
}

.faq-heading.is-active + .faq-description {
    display: flex;
    transition: 0.3s;
}

.faq-heading.is-active::after {
    transform: rotate(-90deg);
    transition: 0.3s;
}

.faq-description a {
    color: #16a3bb;
    text-decoration: underline;
}

.mega-menu--movie {
  width: 310px;
}

.p-faq-respondent {
  padding: 20px 0 0 20px;
}

.p-faq-answer__body a {
  text-decoration: underline;
  color: #16a3bb;
}

.answer-txt a {
  text-decoration: underline;
  color: #16a3bb;
}


.c-page-ttl.c-page-ttl-question {
  width: 100%;
  border-radius: 12px;
  padding: 16px 16px 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #ecfaff;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {
  .c-page-ttl.c-page-ttl-question {
    flex-flow: column;
  }
}

.c-page-ttl.c-page-ttl-question::before {
  width: 60px;
  height: 60px;
  content: "";
  background-image: url(/files/ltd/img/icon/question-icon.svg?v=1675652878);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 18px;
  margin-left: 12px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.c-page-ttl-question__inner {
  padding-top: 8px;
}