@charset "UTF-8";
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
p,
th,
td {
  padding: 0;
  margin: 0;
}

address,
caption,
th {
  font-style: normal;
}

table {
  font-size: inherit;
  border-spacing: 0;
  border-collapse: collapse;
}

caption,
th {
  text-align: left;
}

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

object,
embed {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

img {
  line-height: 0;
  vertical-align: bottom;
  border: 0;
}

li {
  list-style-type: none;
}

article,
footer,
header,
nav,
main,
section {
  display: block;
}

html {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}
*::before, *::after {
  box-sizing: inherit;
}

:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  text-decoration-skip: objects;
}

b,
strong {
  font-weight: 500;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  color: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  box-sizing: content-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}

input {
  overflow: visible;
  line-height: normal;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

body {
  background-color: #fff;
}

body.is-scrollFix {
  position: fixed;
  width: 100%;
}

a {
  color: #54b9bd;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/*
 * ページ内リンクで移動した際に、コンテンツが固定ヘッダーに隠れるのを防ぐ
 * IDを持つ要素をアンカーリンクのターゲットとみなし、ヘッダーの高さ分だけスクロール位置をずらす
 */
[id] {
  scroll-margin-top: 86px;
}

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

@font-face {
  font-family: "Helvetica Neue";
  font-weight: 100;
  src: local("Helvetica Neue Regular");
}
@font-face {
  font-family: "Helvetica Neue";
  font-weight: 200;
  src: local("Helvetica Neue Regular");
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.625;
  color: var(--color-text-primary);
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}
.l-header__logo {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
}
.l-header__logo a {
  line-height: 1.3;
  color: #333;
  text-decoration: none;
}
.l-header__logo span {
  display: block;
}
.l-header__logo .item-main {
  font-size: 22px;
}
.l-header__logo .item-sub {
  font-size: 18px;
}
.l-header__nav-area {
  display: flex;
  gap: 30px;
  align-items: center;
}
.l-header__menu-trigger {
  position: relative;
  z-index: 210;
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
}
.l-header__menu-trigger span {
  position: absolute;
  left: 50%;
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
  transform: translateX(-50%);
  transition: top 0.3s, transform 0.3s, opacity 0.3s;
}
.l-header__menu-trigger span:nth-child(1) {
  top: 12px;
}
.l-header__menu-trigger span:nth-child(2) {
  top: 19px;
}
.l-header__menu-trigger span:nth-child(3) {
  top: 26px;
}
.l-header__menu-trigger.is-open span {
  background-color: #333;
}
.l-header__menu-trigger.is-open span:nth-child(1) {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}
.l-header__menu-trigger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__menu-trigger.is-open span:nth-child(3) {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}

.l-footer {
  padding: 42px 0 52px;
  color: #fff;
  background-color: #fe7575;
}
.l-footer__body {
  display: flex;
  flex-flow: column wrap;
  gap: 40px 60px;
  align-items: stretch;
  justify-content: space-between;
}
.l-footer__site-name {
  padding-bottom: 22px;
  margin-bottom: 24px;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  border-bottom: 1px solid #fff;
}
.l-footer__site-name .item-main,
.l-footer__site-name .item-sub {
  display: block;
}
.l-footer__site-name .item-main {
  margin-top: 6px;
  font-size: 31px;
}
.l-footer__site-name .item-sub {
  font-size: 22px;
}
.l-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 24px 48px;
  margin-bottom: 40px;
}
.l-footer__address dt, .l-footer__tel dt {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
.l-footer__address dd, .l-footer__tel dd {
  font-size: 16px;
  line-height: 1.5;
}
.l-footer__logo img {
  max-width: 264px;
}
.l-footer__sitemap-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
.l-footer__copyright {
  padding-top: 20px;
  margin-top: 35px;
  line-height: 2;
}
.l-footer__copyright small {
  font-size: 15px;
}

.l-contents {
  padding-top: 86px;
}

.l-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.l-container {
  width: 100%;
  max-width: var(--width-content-max);
  padding-right: 17px;
  padding-left: 17px;
  margin-right: auto;
  margin-left: auto;
}

.l-section--primary {
  color: #fff;
  background-color: var(--color-primary);
}

.l-section--secondary {
  background-color: var(--color-secondary);
}

.l-section--gray-light {
  background-color: var(--color-bg-light);
}

.l-section--gray-dark {
  background-color: var(--color-bg-dark);
}

.l-section--pattern {
  background-image: url("../img/common/bg_pattern01.png");
  background-repeat: repeat;
  background-position: center center;
  background-size: auto;
}

.l-section__container {
  padding-top: 30px;
  margin-top: 65px;
}

.c-head--type01 {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 0; /* .p-feature__section-body h4 の margin-top を上書き */
  font-size: 18px;
  font-weight: 700;
  font-weight: bold;
  line-height: 1.5;
  color: #fe7575;
}
.c-head--type01::before {
  display: block;
  flex-shrink: 0;
  width: 4px;
  height: 1em;
  margin-top: 0.3em;
  content: "";
  background-color: #fe7575;
}

.c-head--type02 {
  font-family: "M PLUS 1", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.46;
  color: #fe7575;
  text-align: center;
}

.c-head--type03 {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.c-notes--type02 {
  padding-left: 1em;
  font-weight: 500;
  text-indent: -1em;
}

.c-notes--type03 {
  padding-left: 1em;
  text-indent: -1em;
}

.c-color--red01 {
  color: #e10000;
}

.c-columns {
  display: grid;
  --row-gap: 32px;
  --col-gap: 24px;
  gap: var(--row-gap) var(--col-gap);
}

.c-columns--1 {
  grid-template-columns: repeat(1, 1fr);
}

.c-columns--2 {
  grid-template-columns: repeat(2, 1fr);
}

.c-columns--3 {
  grid-template-columns: repeat(3, 1fr);
}

.c-columns--4 {
  grid-template-columns: repeat(4, 1fr);
}
.c-link--type01 {
  color: #54b9bd;
}

.c-link--type02 {
  width: 380px;
}
.c-link--type02 a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-weight: 500;
  color: #54b9bd;
  border: 1px solid #54b9bd;
}
.c-link--type02 a:link, .c-link--type02 a:visited, .c-link--type02 a:hover, .c-link--type02 a:active, .c-link--type02 a:focus {
  text-decoration: none;
}
.c-link--type02 a:hover {
  background-color: #f6f9f9;
}

.c-link--type03 {
  width: 380px;
  margin-right: auto;
  margin-left: auto;
}
.c-link--type03 a {
  transition: opacity 0.2s linear;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  background: linear-gradient(45deg, #dab5ec 0%, #5bbabf 100%);
  border-radius: 100vh;
}
.c-link--type03 a:hover, .c-link--type03 a:focus {
  opacity: 0.7;
}
.c-link--type03 a:link, .c-link--type03 a:visited, .c-link--type03 a:hover, .c-link--type03 a:active, .c-link--type03 a:focus {
  text-decoration: none;
}
.c-link--type03 a:hover {
  background-color: #f6f9f9;
}
.c-link--type03 a::after {
  display: none !important;
}

.c-linkList--type01 {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
  align-items: stretch;
  justify-content: flex-start;
}
.c-linkList--type01 .c-linkList__item {
  width: 100%;
  list-style: none;
}
.c-linkList--type01 a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: #54b9bd;
  border: 1px solid #54b9bd;
}
.c-linkList--type01 a:link, .c-linkList--type01 a:visited {
  text-decoration: none;
}
.c-linkList--type01 a:hover, .c-linkList--type01 a:active {
  text-decoration: underline;
}
.c-linkList--type01 a:hover {
  background-color: #f6f9f9;
}
.c-linkList--type01 a[href$=".pdf"]::after, .c-linkList--type01 a[href$=".ppt"]::after, .c-linkList--type01 a[href$=".pptx"]::after {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 20px;
  height: 22px;
  margin-left: 8px;
  content: url("../img/icn_ppt01.svg");
}
.c-linkList--type01 a[href$=".pdf"]::after {
  content: url("../img/icn_pdf01.svg");
}
.c-linkList--type01 a[href$=".xls"]::after, .c-linkList--type01 a[href$=".xlsx"]::after {
  content: url("../img/icn_excel01.svg");
}
.c-linkList--type01 a[href$=".ppt"]::after, .c-linkList--type01 a[href$=".pptx"]::after {
  content: url("../img/icn_ppt01.svg");
}
.c-linkList--type01 a span {
  display: inline-block;
  font-size: 16px;
}

.c-linkList--type02 .c-linkList__item {
  padding-left: 46px;
  margin-top: 5px;
  list-style-type: none;
  background-repeat: no-repeat;
  background-position: 0 4px;
  background-size: 26px auto;
}
.c-linkList--type02 .c-linkList__item:not(:first-child) {
  margin-top: 34px;
}
.c-linkList--type02 a {
  line-height: 1.25;
}
.c-linkList--type02 a:link, .c-linkList--type02 a:visited {
  text-decoration: underline;
}
.c-linkList--type02 a:hover, .c-linkList--type02 a:active, .c-linkList--type02 a:focus {
  text-decoration: none;
}
.c-linkList--type02 a[href$=".pdf"]::after, .c-linkList--type02 a[href$=".ppt"]::after, .c-linkList--type02 a[href$=".pptx"]::after {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 20px;
  height: 22px;
  margin-left: 8px;
  content: url("../img/icn_ppt01.png");
}
.c-linkList--type02 a[href$=".pdf"]::after {
  content: url("../img/icn_pdf01.png");
}
.c-linkList--type02 a[href$=".ppt"]::after, .c-linkList--type02 a[href$=".pptx"]::after {
  content: url("../img/icn_ppt01.png");
}

.c-linkWrap--type01 {
  text-align: center;
}

.c-link--sns01 {
  transition: opacity 0.2s linear;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
}
.c-link--sns01:hover, .c-link--sns01:focus {
  opacity: 0.7;
}
.c-link--sns01.c-link--line {
  background-image: url("../img/icn_line03.png");
}
.c-link--sns01.c-link--facebook {
  background-image: url("../img/icn_facebook03.png");
}
.c-link--sns01.c-link--instagram {
  background-image: url("../img/icn_instagram03.png");
}

table:not([class]) {
  width: 100%;
}
table:not([class]) th,
table:not([class]) td {
  padding: 5px 8px;
  border: 1px solid #54b9bd;
}
table:not([class]) th {
  font-weight: 500;
}

.c-table--type02, .c-table--type01 {
  width: 100%;
}
.c-table--type02 th, .c-table--type01 th,
.c-table--type02 td,
.c-table--type01 td {
  padding: 12px;
  vertical-align: middle;
  border: 1px solid #54b9bd;
}
.c-table--type02 th:first-child, .c-table--type01 th:first-child,
.c-table--type02 td:first-child,
.c-table--type01 td:first-child {
  border-left: 0;
}
.c-table--type02 th:last-child, .c-table--type01 th:last-child,
.c-table--type02 td:last-child,
.c-table--type01 td:last-child {
  border-right: 0;
}
.c-table--type02 th, .c-table--type01 th {
  font-weight: 500;
  color: #54b9bd;
  background-color: #f6f9f9;
}

.c-table--type01.w300 {
  width: 300px;
}
.c-table--type01 th {
  text-align: center;
}

.c-table--type02 th {
  text-align: left;
}

.c-table--type03 {
  width: 100%;
}
.c-table--type03 th,
.c-table--type03 td {
  padding: 12px;
  line-height: 1.5;
  vertical-align: middle;
  border: 1px solid #54b9bd;
}
.c-table--type03 th:first-child,
.c-table--type03 td:first-child {
  border-left: 0;
}
.c-table--type03 th:last-child,
.c-table--type03 td:last-child {
  border-right: 0;
}
.c-table--type03 th {
  font-weight: 500;
  color: #54b9bd;
  background-color: #f6f9f9;
}

.c-tableWrap--type01 {
  width: 100%;
  overflow-x: auto;
}
.c-tableWrap--type01 table {
  min-width: 700px;
}

.c-cell--fixed {
  table-layout: fixed;
}

.c-bg--type01 {
  background-color: #ffebeb;
}

.c-bg--type02 {
  background-color: #fffaeb;
}

.fnav__list {
  padding-left: 25px;
  font-size: 18px;
  list-style: none;
}
.fnav__item:not(:last-child) {
  margin-bottom: 8px;
}
.fnav__item > a {
  position: relative;
  display: inline-block;
  padding-left: 27px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  text-decoration: none;
}
.fnav__item > a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 17px;
  height: 17px;
  margin-top: -7px;
  content: "";
  background: url("../img/icn_listmark01.svg") no-repeat 0 0;
  background-size: 100% auto;
}
.fnav__sub-list {
  padding-left: 19px;
  margin-top: 6px;
  list-style: none;
}
.fnav__sub-item:not(:last-child) {
  margin-bottom: 14px;
}
.fnav__sub-item > a {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  color: #fff;
  text-decoration: none;
}
.fnav__sub-item > a::before {
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
  border-top: 3px solid transparent;
  border-right: 0;
  border-bottom: 3px solid transparent;
  border-left: 6px solid #fff;
}

.gnav {
  display: none;
}
.gnav__list {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}
.gnav__link {
  font-family: "M PLUS 1", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.gnav__link:hover {
  color: #54b9bd;
}

.c-button {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 28px 46px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 20px;
  transition: opacity 0.2s;
}
.c-button:hover {
  text-decoration: none;
  opacity: 0.8;
}
.c-button--primary {
  color: #fff;
  background-color: #fe7575;
}
.c-button--primary .c-button__icon-wrapper {
  display: inline-block;
  width: 32px;
  height: 32px;
  content: "";
  background: url("../img/icn_mail02.svg") no-repeat 50% 50%;
  background-size: 100% auto;
}

.pageTop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 200;
}
.pageTop__button {
  position: fixed;
  right: 17px;
  bottom: 17px;
  z-index: 3;
  visibility: hidden;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: 120%;
  white-space: nowrap;
  background-image: url("../img/btn_pagetop01.svg");
  background-size: 100% auto;
  opacity: 0;
  transition: visibility 0.4s linear, opacity 0.4s linear;
}
.pageTop__button.is-active {
  visibility: visible;
  opacity: 1;
}
.pageTop__button.is-active::before, .pageTop__button.is-active::after {
  transition: visibility 0.2s linear, opacity 0.2s linear;
}
.pageTop__button.is-active::after {
  visibility: hidden;
  opacity: 0;
}
.pageTop__button.is-active:hover::before {
  visibility: hidden;
  opacity: 0;
}
.pageTop__button.is-active:hover::after {
  visibility: visible;
  opacity: 1;
}
.pageTop__button.is-inactive {
  visibility: hidden;
  opacity: 0;
}

.oNav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  width: 0;
  height: 100vh;
}

.oNav-trigger {
  position: absolute;
  top: 14px;
  right: 17px;
  z-index: 201;
  width: 56px;
  height: 56px;
  transition: all 0.2s linear;
}
.oNav-trigger__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fe7575;
  background-color: transparent;
  border: 0;
}
.oNav-trigger__button.is-open::before {
  transform: translateY(12px) rotate(-45deg);
}
.oNav-trigger__button.is-open::after {
  opacity: 0;
}
.oNav-trigger__button.is-open .oNav-trigger__inner::before {
  transform: translateY(-12px) rotate(45deg);
}
.oNav-trigger__inner {
  width: 100%;
  height: 100%;
}
.oNav-trigger .oNav-trigger__button::before,
.oNav-trigger .oNav-trigger__button::after,
.oNav-trigger .oNav-trigger__inner::before {
  position: absolute;
  left: 8px;
  display: block;
  display: inline-block;
  width: 40px;
  height: 4px;
  content: "";
  background-color: #fe7575;
  border-radius: 100vh;
  transition: transform 0.2s linear;
}
.oNav-trigger .oNav-trigger__button::before {
  top: 2px;
}
.oNav-trigger .oNav-trigger__button::after {
  top: 14px;
}
.oNav-trigger .oNav-trigger__inner::before {
  top: 26px;
}
.oNav-trigger__label {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.oNav__wrap {
  position: fixed;
  top: 86px;
  right: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: calc(100vh - 86px);
  background-color: #fe7575;
  transform: translateX(100%);
  transition: transform 0.4s ease-out;
}
.is-open .oNav__wrap {
  transform: translateX(0);
}

.oNav__inner {
  height: calc(100% - 86px);
  padding: 0 16px;
  overflow: auto;
  overscroll-behavior-y: contain;
  scrollbar-width: thin;
}

.oNav__container--type01 {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
}
.oNav__container--type02 {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  background-color: #fff;
  border-radius: 15px;
}

.oNav__item--type02 {
  margin-top: 90px;
}

.oNav-menu {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
.oNav-menu--type01 .oNav-menu__item {
  border-bottom: 1px solid #fff;
}
.oNav-menu--type01 .oNav-menu__item a {
  display: block;
  padding-top: 32px;
  padding-bottom: 32px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}
.oNav-menu--type02 {
  margin-top: 40px;
}
.oNav-menu--type02 .oNav-menu__item {
  text-align: center;
}
.oNav-menu--type02 .oNav-menu__item a {
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 88px;
  margin-right: auto;
  margin-left: auto;
  font-size: 18px;
  color: #fe7575;
  text-decoration: none;
  background-color: #fff;
  border-radius: 28px;
}
.oNav-menu--type02 .oNav-menu__item a::before {
  display: inline-block;
  width: 26px;
  height: 22px;
  content: "";
  background: url("../img/icn_mail01.svg") no-repeat 50% 50%;
  background-size: 100% auto;
}

.p-mv {
  margin-bottom: 32px;
}

/* 基本的なレイアウト */
.p-feature.l-section {
  padding-top: 50px;
  padding-bottom: 48px;
}

.p-feature__inner {
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
}

/* セクションタイトル */
.p-feature__title {
  margin-bottom: 20px;
  font-size: 2em;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.p-feature__badges {
  display: flex;
  flex-flow: column wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 20px;
  font-family: "M PLUS 1", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #b3942e;
}

.p-feature__badge {
  position: relative;
  padding-left: 26px;
}
.p-feature__badge::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  display: block;
  width: 19px;
  height: 15px;
  content: "";
  background: url("../img/icn_check01.svg") no-repeat 0 0;
  background-size: 100% auto;
}

.p-feature__badge-icon {
  margin-right: 8px;
  font-size: 1.5em;
}

.p-feature__lead {
  margin-top: 31px;
  font-size: 16px;
  line-height: 2;
}

.p-feature__notice {
  margin-top: 32px;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  color: #2c2c2c;
}
.p-feature__notice span {
  background: linear-gradient(transparent 60%, #ff0 60%);
}

/* ケアの内容 */
.p-feature__section {
  position: relative;
  margin-top: 98px;
  background-color: #fff;
  border-radius: 10px;
}
.p-feature__section--care {
  margin-top: 94px;
}
.p-feature__section .c-head--type03 {
  margin-top: 25px;
}

.p-feature__section-wrap {
  padding: 56px 35px 48px;
}
.p-feature__section--care .p-feature__section-wrap {
  padding-top: 51px;
  padding-bottom: 66px;
}
.p-feature__section--usage .p-feature__section-wrap {
  padding-top: 60px;
}

.p-feature__section-head {
  position: relative;
}

.p-feature__section-title {
  position: absolute;
  top: -91px;
  right: 50%;
  min-width: 290px;
  padding: 18px;
  margin-right: auto;
  margin-left: auto;
  font-family: "M PLUS 1", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  background-color: #ffb2b2;
  border-radius: 100vh;
  transform: translateX(50%);
}
.p-feature__section--care .p-feature__section-title {
  top: -82px;
}

.p-feature__care-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.p-feature__care-item {
  width: 100%;
  font-family: "M PLUS 1", sans-serif;
}
.p-feature__care-head {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: center;
  min-height: 2.6em;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #fe7575;
  text-align: center;
}

.p-feature__care-image {
  margin-top: 24px;
}

.p-feature__care-text {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.3;
}

.p-feature__footnote {
  padding-left: 1em;
  margin-top: 72px;
  font-size: 16px;
  line-height: 2;
  text-indent: -1em;
}

/* ご利用について */
.p-feature__head {
  margin-top: 44px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
.p-feature__usage-title + .p-feature__head {
  margin-top: 35px;
}

.c-head--type01 + .p-feature__paragraph {
  margin-top: 3px;
}
.c-head--type03 + .p-feature__paragraph {
  margin-top: 3px;
}

.p-feature__usage-block .c-head--type01 + .p-feature__paragraph {
  margin-top: 21px;
}

.p-feature__paragraph-strong {
  margin-top: 24px;
}
.p-feature__paragraph-strong strong {
  font-weight: 700;
}

/* 訪問看護医療DX情報活用加算 */
.p-feature__mini-title {
  margin-top: 30px;
  font-size: 1.3em;
  font-weight: bold;
  color: #333;
}

.p-feature__section--usage .p-feature__section-body .c-head--type01 {
  margin-top: 48px;
}
.p-feature__section--usage .p-feature__section-body .p-feature__usage-block .c-head--type01 {
  margin-top: -4px;
}
.p-feature__section--usage .p-feature__usage-block + .p-feature__usage-block {
  margin-top: 40px;
}

.p-feature__section--dx .p-feature__section-body .c-head--type01 {
  margin-top: 0;
}
.p-feature__section--dx .p-feature__paragraph + .p-feature__paragraph {
  margin-top: 2em;
}
.p-feature__section--dx .p-feature__paragraph-strong + .c-head--type01 {
  margin-top: 20px;
}

.p-feature__section-body {
  line-height: 2;
}
.p-feature__section-body .c-head--type01 {
  margin-top: 50px;
}
.p-feature__content-block:not(:first-child) {
  margin-top: 1.5em;
}

.p-feature__content-title {
  margin-bottom: 0.5em;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.p-feature__list {
  padding-left: 1.2em;
  margin-top: 1em;
}
.p-feature__list li {
  list-style-type: disc;
}

.p-feature__usage-flows {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 24px;
}

.p-feature__flow-box-title {
  position: relative;
  padding: 10px 14px 11px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  background-color: #ffefb9;
}
.p-feature__flow-box-title::after {
  position: absolute;
  bottom: -10px;
  left: 24px;
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-color: #ffefb9 transparent transparent;
  border-style: solid;
  border-width: 10px 10px 0;
}

.p-feature__flow-list {
  width: 100%;
}

.p-feature__flow-item {
  position: relative;
  padding: 25px 16px 24px;
  background-color: #fffaeb;
}
.p-feature__flow-item + .p-feature__flow-item {
  margin-top: 58px;
}
.p-feature__flow-item::after {
  position: absolute;
  right: 50%;
  bottom: -40px;
  display: block;
  width: 24px;
  height: 26px;
  content: "";
  background: url("../img/icn_arrow01.svg") no-repeat 0 0;
  background-size: 100% auto;
  transform: translateX(50%);
}
.p-feature__flow-item:last-child::after {
  display: none;
}

.p-feature__flow-item-title {
  display: flex;
  flex-flow: row nowrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin-bottom: 16px;
  font-family: "M PLUS 1", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #fe7575;
}
.p-feature__flow-item-title span {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding-bottom: 2px;
  margin-top: 0.125em;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #ff7e79; /* ピンク系の丸背景 */
  border-radius: 50%;
}

.p-feature__flow-item-notes {
  margin-bottom: 16px;
}

.p-feature__flow-item-body {
  margin-top: 8px;
  font-size: 16px;
  line-height: 2;
}

.p-feature__flow-sub-list {
  padding-left: 0;
  text-indent: 0;
}
.p-feature__flow-sub-list li {
  position: relative;
  padding-left: 1em;
}
.p-feature__flow-sub-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.p-access.l-section {
  padding-top: 47px;
  padding-bottom: 48px;
}

.p-access__address,
.p-access__tel {
  margin-top: 32px;
  line-height: 2;
  color: #2c2c2c;
}
.p-access__address dt,
.p-access__tel dt {
  font-size: 20px;
  font-weight: 700;
}
.p-access__address dd,
.p-access__tel dd {
  margin-top: 8px;
}

.p-access__tel {
  margin-top: 41px;
}

.p-access__map {
  margin-top: 50px;
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 360/270;
}

.p-access__section {
  position: relative;
  padding: 56px 15px 40px;
  background-color: #fff;
  border-radius: 10px;
}
.p-access__section:not(:first-child) {
  margin-top: 80px;
}

.p-access__table th,
.p-access__table td {
  padding: 13px 16px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #383838;
}
.p-access__table th {
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  background-color: #c3c3c3;
}

.p-access__container--type01 {
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
  align-items: stretch;
  justify-content: center;
  margin-top: 42px;
}
.p-access__container--type01 .p-access__item {
  padding: 32px 29px;
  background-color: #fff2eb;
  border-radius: 16px;
}
.p-access__container--type01 .p-access__item--type01, .p-access__container--type01 .p-access__item--type02, .p-access__container--type01 .p-access__item--type03, .p-access__container--type01 .p-access__item--type04 {
  width: 100%;
}
.p-access__container--type01 .p-access__item--type04 {
  padding-right: 15px;
  padding-left: 15px;
}

.p-access__content {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.p-access__head {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  line-height: 1.5;
  text-align: center;
}

.p-access__icon {
  width: auto;
  height: 86px;
  margin-bottom: 10px;
}

.p-access__head-text {
  font-size: 20px;
  color: #2c2c2c;
}

.p-access__body {
  font-size: 16px;
  line-height: 2;
}

.p-access__bus-list {
  display: flex;
  flex-flow: row wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  font-size: 16px;
  line-height: 2;
}

.p-access__bus-group {
  width: 100%;
  padding: 16px 24px 14px;
  background-color: #fff;
  border-radius: 16px;
}

.p-access__bus-name {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.p-access__bus-stop {
  margin-top: 10px;
}

.p-access__bus-routes {
  padding-left: 24px;
}
.p-access__bus-routes li {
  list-style-type: disc;
}

.p-access__notes {
  list-style-type: none;
}

.p-access__note {
  padding-left: 1em;
  text-indent: -1em;
}

.p-recruit.l-section {
  padding-top: 49px;
  padding-bottom: 72px;
}

.p-recruit__section {
  position: relative;
}
.p-recruit__section-wrap {
  padding: 56px 15px 40px;
  margin-top: 65px;
  background-color: #fff;
  border-radius: 10px;
}
.p-recruit__section-wrap + .p-recruit__section-wrap {
  margin-top: 107px;
}

.p-recruit__section-head {
  position: relative;
}

.p-recruit__head {
  position: absolute;
  top: -85px;
  right: 50%;
  width: 290px;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-right: auto;
  margin-left: auto;
  font-family: "M PLUS 1", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  background-color: #ffb2b2;
  border-radius: 100vh;
  transform: translateX(50%);
}

.p-recruit__table {
  width: 100%;
}
.p-recruit__table th,
.p-recruit__table td {
  padding: 13px 16px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #383838;
}
.p-recruit__table th {
  width: 4em;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  background-color: #c3c3c3;
  border-right: 0;
}
.p-recruit__table td {
  border-left: 0;
}

.p-recruit__notes {
  margin-top: 60px;
}
.p-recruit__notes .item-text {
  font-weight: 700;
}
.p-recruit__notes .item-notes {
  padding-left: 1em;
  margin-top: 1em;
  text-indent: -1em;
}

.u-fll {
  float: left !important;
}

img.u-fll {
  margin: 0 10px 10px 0 !important;
}

.u-flr {
  float: right !important;
}

img.u-flr {
  margin: 0 0 10px 10px !important;
}

.u-clb {
  clear: both !important;
}

.u-tac {
  text-align: center !important;
}

.u-tar {
  text-align: right !important;
}

.u-tal {
  text-align: left !important;
}

.u-tacs {
  text-align: center !important;
}

.u-tars {
  text-align: right !important;
}

.u-bold,
.u-fwb {
  font-weight: bold !important;
}

.u-fwn {
  font-weight: normal !important;
}

.u-ti,
.u-ti p {
  text-indent: 1em !important;
}

.u-ttu {
  text-transform: uppercase !important;
}

.u-ttl {
  text-transform: lowercase !important;
}

.u-tdu {
  text-decoration: underline !important;
}

.u-whsnw {
  white-space: nowrap !important;
}

.u-whsn {
  white-space: normal !important;
}

.u-ti1em {
  text-indent: 1em !important;
}

.u-vam {
  vertical-align: middle !important;
}

.u-lh15 {
  line-height: 1.5 !important;
}

.u-lh2 {
  line-height: 2 !important;
}

.u-lh24 {
  line-height: 2.4 !important;
}

.u-tlf {
  table-layout: fixed !important;
}

.u-visually-hidden {
  visibility: hidden;
}

.u-fz10 {
  font-size: 10 !important;
}

.u-fz14 {
  font-size: 14 !important;
}

.u-fz15 {
  font-size: 15 !important;
}

.u-fz16 {
  font-size: 16 !important;
}

.u-fz20 {
  font-size: 20 !important;
}

.u-fz22 {
  font-size: 22 !important;
}

.u-fz24 {
  font-size: 24 !important;
}

.u-fz27 {
  font-size: 27 !important;
}

.u-fz30 {
  font-size: 30 !important;
}

.u-fz34 {
  font-size: 34 !important;
}

.u-fz35 {
  font-size: 35 !important;
}

.u-fz40 {
  font-size: 40 !important;
}

.u-fz56 {
  font-size: 56 !important;
}

.u-fz80 {
  font-size: 80 !important;
}

.u-b--type01 {
  font-weight: normal;
  color: #e10000;
}

.u-color--type01 {
  color: #54b9bd;
}

.u-br-sp {
  display: block;
}

.u-br-pc {
  display: none;
}

.u-m-none {
  margin: 0 !important;
}
.u-m-xs {
  margin: 8px !important;
}
.u-m-s {
  margin: 16px !important;
}
.u-m-m {
  margin: 24px !important;
}
.u-m-l {
  margin: 40px !important;
}
.u-m-xl {
  margin: 64px !important;
}
.u-m-2xl {
  margin: 80px !important;
}
.u-mt-none {
  margin-top: 0 !important;
}
.u-mt-xs {
  margin-top: 8px !important;
}
.u-mt-s {
  margin-top: 16px !important;
}
.u-mt-m {
  margin-top: 24px !important;
}
.u-mt-l {
  margin-top: 40px !important;
}
.u-mt-xl {
  margin-top: 64px !important;
}
.u-mt-2xl {
  margin-top: 80px !important;
}
.u-mr-none {
  margin-right: 0 !important;
}
.u-mr-xs {
  margin-right: 8px !important;
}
.u-mr-s {
  margin-right: 16px !important;
}
.u-mr-m {
  margin-right: 24px !important;
}
.u-mr-l {
  margin-right: 40px !important;
}
.u-mr-xl {
  margin-right: 64px !important;
}
.u-mr-2xl {
  margin-right: 80px !important;
}
.u-mb-none {
  margin-bottom: 0 !important;
}
.u-mb-xs {
  margin-bottom: 8px !important;
}
.u-mb-s {
  margin-bottom: 16px !important;
}
.u-mb-m {
  margin-bottom: 24px !important;
}
.u-mb-l {
  margin-bottom: 40px !important;
}
.u-mb-xl {
  margin-bottom: 64px !important;
}
.u-mb-2xl {
  margin-bottom: 80px !important;
}
.u-ml-none {
  margin-left: 0 !important;
}
.u-ml-xs {
  margin-left: 8px !important;
}
.u-ml-s {
  margin-left: 16px !important;
}
.u-ml-m {
  margin-left: 24px !important;
}
.u-ml-l {
  margin-left: 40px !important;
}
.u-ml-xl {
  margin-left: 64px !important;
}
.u-ml-2xl {
  margin-left: 80px !important;
}
.u-mx-none {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.u-mx-xs {
  margin-right: 8px !important;
  margin-left: 8px !important;
}
.u-mx-s {
  margin-right: 16px !important;
  margin-left: 16px !important;
}
.u-mx-m {
  margin-right: 24px !important;
  margin-left: 24px !important;
}
.u-mx-l {
  margin-right: 40px !important;
  margin-left: 40px !important;
}
.u-mx-xl {
  margin-right: 64px !important;
  margin-left: 64px !important;
}
.u-mx-2xl {
  margin-right: 80px !important;
  margin-left: 80px !important;
}
.u-my-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.u-my-xs {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}
.u-my-s {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}
.u-my-m {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}
.u-my-l {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.u-my-xl {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}
.u-my-2xl {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}
.u-p-none {
  padding: 0 !important;
}
.u-p-xs {
  padding: 8px !important;
}
.u-p-s {
  padding: 16px !important;
}
.u-p-m {
  padding: 24px !important;
}
.u-p-l {
  padding: 40px !important;
}
.u-p-xl {
  padding: 64px !important;
}
.u-p-2xl {
  padding: 80px !important;
}
.u-pt-none {
  padding-top: 0 !important;
}
.u-pt-xs {
  padding-top: 8px !important;
}
.u-pt-s {
  padding-top: 16px !important;
}
.u-pt-m {
  padding-top: 24px !important;
}
.u-pt-l {
  padding-top: 40px !important;
}
.u-pt-xl {
  padding-top: 64px !important;
}
.u-pt-2xl {
  padding-top: 80px !important;
}
.u-pr-none {
  padding-right: 0 !important;
}
.u-pr-xs {
  padding-right: 8px !important;
}
.u-pr-s {
  padding-right: 16px !important;
}
.u-pr-m {
  padding-right: 24px !important;
}
.u-pr-l {
  padding-right: 40px !important;
}
.u-pr-xl {
  padding-right: 64px !important;
}
.u-pr-2xl {
  padding-right: 80px !important;
}
.u-pb-none {
  padding-bottom: 0 !important;
}
.u-pb-xs {
  padding-bottom: 8px !important;
}
.u-pb-s {
  padding-bottom: 16px !important;
}
.u-pb-m {
  padding-bottom: 24px !important;
}
.u-pb-l {
  padding-bottom: 40px !important;
}
.u-pb-xl {
  padding-bottom: 64px !important;
}
.u-pb-2xl {
  padding-bottom: 80px !important;
}
.u-pl-none {
  padding-left: 0 !important;
}
.u-pl-xs {
  padding-left: 8px !important;
}
.u-pl-s {
  padding-left: 16px !important;
}
.u-pl-m {
  padding-left: 24px !important;
}
.u-pl-l {
  padding-left: 40px !important;
}
.u-pl-xl {
  padding-left: 64px !important;
}
.u-pl-2xl {
  padding-left: 80px !important;
}
.u-px-none {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.u-px-xs {
  padding-right: 8px !important;
  padding-left: 8px !important;
}
.u-px-s {
  padding-right: 16px !important;
  padding-left: 16px !important;
}
.u-px-m {
  padding-right: 24px !important;
  padding-left: 24px !important;
}
.u-px-l {
  padding-right: 40px !important;
  padding-left: 40px !important;
}
.u-px-xl {
  padding-right: 64px !important;
  padding-left: 64px !important;
}
.u-px-2xl {
  padding-right: 80px !important;
  padding-left: 80px !important;
}
.u-py-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.u-py-xs {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.u-py-s {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.u-py-m {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
.u-py-l {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.u-py-xl {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}
.u-py-2xl {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.u-ro {
  display: inline-block;
  transition: opacity 0.2s linear;
}
.u-ro:hover {
  opacity: 0.8;
}

.u-ro:hover img {
  opacity: 0.8;
}

.u-rot {
  display: inline-block;
  transition: opacity 0.2s linear;
}
.u-rot:hover, .u-rot:focus {
  opacity: 0.7;
}

.u-cf::before,
.u-cf::after {
  display: table;
  content: " ";
}

.u-cf::after {
  clear: both;
}

.u-cf {
  *zoom: 1;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

html.is-drawer-open {
  overflow: hidden;
}
html.is-drawer-open body {
  overflow: hidden;
}

:root {
  --color-primary: #54b9bd;
  --color-secondary: #f0f0f0;
  --color-text-primary: #333;
  --color-text-secondary: #8e8e8e;
  --color-link: #54b9bd;
  --color-line-primary: #54b9bd;
  --color-line-secondary: #c5c5c5;
  --color-point: #ecf7fb;
  --color-bg-light: #f4f9f9;
  --color-bg-dark: #f6f9f9;
  --color-strong-red: #e10000;
  --breakpoint-sm: 600px;
  --breakpoint-md: 960px;
  --breakpoint-lg: 1280px;
  --width-content-max: 1128px;
  --header-height-lg: 136px;
  --header-height-md: 86px;
  --gnav-height: 39px;
  --youtube-aspect-ratio: 56.25%;
  --shadow-light: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 5px 3px -3px rgba(0, 0, 0, 0.2) inset;
}

@media (min-width: 409px){
  .l-footer__sitemap {
    flex: 1;
  }
}

@media screen and (min-width: 458px){
  .l-footer__contact {
    flex-direction: row;
  }
}

@media screen and (min-width: 599px){
  .l-footer__contact {
    flex-direction: column;
  }
}

@media (min-width: 600px){
  body {
    font-size: 16px;
  }
  .l-header__menu-trigger {
    display: none;
  }
  .l-footer__body {
    flex-flow: row wrap;
    gap: 40px 32px;
  }
  .l-footer__copyright {
    text-align: center;
  }
  .l-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .c-columns {
    --row-gap: 40px;
    --col-gap: 40px;
  }
  .c-columns--1-col\@sm {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-columns--2-col\@sm {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-columns--3-col\@sm {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-columns--4-col\@sm {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-columns--5-col\@sm {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-columns--6-col\@sm {
    grid-template-columns: repeat(6, 1fr);
  }
  .c-linkList--type01 .c-linkList__item {
    width: calc(50% - 15px);
  }
  .c-linkList--type01 a {
    padding: 24px;
    font-size: 22px;
  }
  .c-linkList--type01 a span {
    font-size: 18px;
  }
  .c-table--type02 th, .c-table--type01 th,
  .c-table--type02 td,
  .c-table--type01 td {
    padding: 14px 15px;
  }
  .c-table--type03 th,
  .c-table--type03 td {
    padding: 15px;
  }
  .c-tableWrap--type01 {
    overflow-x: visible;
  }
  .p-feature__badges {
    align-items: center;
  }
  .p-feature__care-list {
    grid-template-columns: 1fr 1fr;
    gap: 35px 54px;
    align-items: start;
  }
  .p-feature__flow-box-title {
    padding: 10px 24px 11px;
    margin-bottom: 32px;
    font-size: 20px;
  }
  .p-feature__flow-list {
    margin-right: auto;
    margin-left: auto;
  }
  .p-feature__flow-item {
    padding: 32px 42px 56px;
  }
  .p-feature__flow-item + .p-feature__flow-item {
    margin-top: 66px;
  }
  .p-feature__flow-item::after {
    bottom: -51px;
    width: 28px;
    height: 32px;
  }
  .p-access.l-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .p-access__address,
  .p-access__tel {
    margin-top: 0;
  }
  .p-access__map {
    margin-top: 0;
  }
  .p-access__container--type02 {
    display: flex;
    flex-flow: column wrap;
    flex-flow: row wrap;
    gap: 42px;
    margin-top: 30px;
  }
  .p-access__container--type02 .p-access__item--type04 {
    flex: 1;
  }
  .p-access__container--type01 {
    gap: 24px;
    margin-top: 56px;
  }
  .p-access__container--type01 .p-access__item--type02, .p-access__container--type01 .p-access__item--type03 {
    width: calc(50% - 12px);
  }
  .p-access__content {
    gap: 16px;
  }
  .p-access__bus-group {
    width: calc(33.3333333333% - 21.3333333333px);
  }
  .p-recruit__notes {
    text-align: center;
  }
  .u-tacs {
    text-align: inherit !important;
  }
  .u-tars {
    text-align: inherit !important;
  }
  .u-br-sp {
    display: none;
  }
  .u-br-pc {
    display: block;
  }
}

@media screen and (min-width: 600px){
  .u-m-none-sm {
    margin: 0 !important;
  }
  .u-m-xs-sm {
    margin: 8px !important;
  }
  .u-m-s-sm {
    margin: 16px !important;
  }
  .u-m-m-sm {
    margin: 24px !important;
  }
  .u-m-l-sm {
    margin: 40px !important;
  }
  .u-m-xl-sm {
    margin: 64px !important;
  }
  .u-m-2xl-sm {
    margin: 80px !important;
  }
  .u-mt-none-sm {
    margin-top: 0 !important;
  }
  .u-mt-xs-sm {
    margin-top: 8px !important;
  }
  .u-mt-s-sm {
    margin-top: 16px !important;
  }
  .u-mt-m-sm {
    margin-top: 24px !important;
  }
  .u-mt-l-sm {
    margin-top: 40px !important;
  }
  .u-mt-xl-sm {
    margin-top: 64px !important;
  }
  .u-mt-2xl-sm {
    margin-top: 80px !important;
  }
  .u-mr-none-sm {
    margin-right: 0 !important;
  }
  .u-mr-xs-sm {
    margin-right: 8px !important;
  }
  .u-mr-s-sm {
    margin-right: 16px !important;
  }
  .u-mr-m-sm {
    margin-right: 24px !important;
  }
  .u-mr-l-sm {
    margin-right: 40px !important;
  }
  .u-mr-xl-sm {
    margin-right: 64px !important;
  }
  .u-mr-2xl-sm {
    margin-right: 80px !important;
  }
  .u-mb-none-sm {
    margin-bottom: 0 !important;
  }
  .u-mb-xs-sm {
    margin-bottom: 8px !important;
  }
  .u-mb-s-sm {
    margin-bottom: 16px !important;
  }
  .u-mb-m-sm {
    margin-bottom: 24px !important;
  }
  .u-mb-l-sm {
    margin-bottom: 40px !important;
  }
  .u-mb-xl-sm {
    margin-bottom: 64px !important;
  }
  .u-mb-2xl-sm {
    margin-bottom: 80px !important;
  }
  .u-ml-none-sm {
    margin-left: 0 !important;
  }
  .u-ml-xs-sm {
    margin-left: 8px !important;
  }
  .u-ml-s-sm {
    margin-left: 16px !important;
  }
  .u-ml-m-sm {
    margin-left: 24px !important;
  }
  .u-ml-l-sm {
    margin-left: 40px !important;
  }
  .u-ml-xl-sm {
    margin-left: 64px !important;
  }
  .u-ml-2xl-sm {
    margin-left: 80px !important;
  }
  .u-mx-none-sm {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .u-mx-xs-sm {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
  .u-mx-s-sm {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  .u-mx-m-sm {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  .u-mx-l-sm {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .u-mx-xl-sm {
    margin-right: 64px !important;
    margin-left: 64px !important;
  }
  .u-mx-2xl-sm {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  .u-my-none-sm {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .u-my-xs-sm {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .u-my-s-sm {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .u-my-m-sm {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .u-my-l-sm {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .u-my-xl-sm {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .u-my-2xl-sm {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .u-p-none-sm {
    padding: 0 !important;
  }
  .u-p-xs-sm {
    padding: 8px !important;
  }
  .u-p-s-sm {
    padding: 16px !important;
  }
  .u-p-m-sm {
    padding: 24px !important;
  }
  .u-p-l-sm {
    padding: 40px !important;
  }
  .u-p-xl-sm {
    padding: 64px !important;
  }
  .u-p-2xl-sm {
    padding: 80px !important;
  }
  .u-pt-none-sm {
    padding-top: 0 !important;
  }
  .u-pt-xs-sm {
    padding-top: 8px !important;
  }
  .u-pt-s-sm {
    padding-top: 16px !important;
  }
  .u-pt-m-sm {
    padding-top: 24px !important;
  }
  .u-pt-l-sm {
    padding-top: 40px !important;
  }
  .u-pt-xl-sm {
    padding-top: 64px !important;
  }
  .u-pt-2xl-sm {
    padding-top: 80px !important;
  }
  .u-pr-none-sm {
    padding-right: 0 !important;
  }
  .u-pr-xs-sm {
    padding-right: 8px !important;
  }
  .u-pr-s-sm {
    padding-right: 16px !important;
  }
  .u-pr-m-sm {
    padding-right: 24px !important;
  }
  .u-pr-l-sm {
    padding-right: 40px !important;
  }
  .u-pr-xl-sm {
    padding-right: 64px !important;
  }
  .u-pr-2xl-sm {
    padding-right: 80px !important;
  }
  .u-pb-none-sm {
    padding-bottom: 0 !important;
  }
  .u-pb-xs-sm {
    padding-bottom: 8px !important;
  }
  .u-pb-s-sm {
    padding-bottom: 16px !important;
  }
  .u-pb-m-sm {
    padding-bottom: 24px !important;
  }
  .u-pb-l-sm {
    padding-bottom: 40px !important;
  }
  .u-pb-xl-sm {
    padding-bottom: 64px !important;
  }
  .u-pb-2xl-sm {
    padding-bottom: 80px !important;
  }
  .u-pl-none-sm {
    padding-left: 0 !important;
  }
  .u-pl-xs-sm {
    padding-left: 8px !important;
  }
  .u-pl-s-sm {
    padding-left: 16px !important;
  }
  .u-pl-m-sm {
    padding-left: 24px !important;
  }
  .u-pl-l-sm {
    padding-left: 40px !important;
  }
  .u-pl-xl-sm {
    padding-left: 64px !important;
  }
  .u-pl-2xl-sm {
    padding-left: 80px !important;
  }
  .u-px-none-sm {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .u-px-xs-sm {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .u-px-s-sm {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .u-px-m-sm {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  .u-px-l-sm {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .u-px-xl-sm {
    padding-right: 64px !important;
    padding-left: 64px !important;
  }
  .u-px-2xl-sm {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .u-py-none-sm {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .u-py-xs-sm {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .u-py-s-sm {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .u-py-m-sm {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .u-py-l-sm {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .u-py-xl-sm {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-2xl-sm {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}

@media screen and (min-width: 716px){
  .p-feature__flow-item-notes {
    margin-bottom: 30px;
    text-align: center;
  }
  .p-feature__flow-item-wrap {
    display: flex;
    flex-flow: row wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 750px){
  .l-footer__contact {
    flex-direction: row;
  }
}

@media (min-width: 779px){
  .l-footer__sitemap {
    flex: none;
  }
}

@media screen and (min-width: 811px){
  .p-feature__flow-list {
    width: calc(100% - 72px);
  }
}

@media (min-width: 960px){
  [id] {
    scroll-margin-top: 136px;
  }
  .l-header__inner {
    height: 136px;
  }
  .l-header__logo a {
    display: flex;
    flex-flow: row wrap;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
  }
  .l-header__logo .item-main {
    font-size: 31px;
  }
  .l-header__logo .item-sub {
    font-size: 22px;
  }
  .l-footer {
    padding-top: 49px;
    padding-bottom: 40px;
  }
  .l-footer__body {
    gap: 40px 60px;
  }
  .l-footer__site-name {
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 18px;
    margin-bottom: 9px;
  }
  .l-footer__site-name .item-main {
    padding-right: 56px;
    margin-top: 0;
  }
  .l-footer__contact {
    margin-bottom: 24px;
  }
  .l-footer__sitemap-title {
    padding-top: 7px;
  }
  .l-footer__copyright {
    margin-top: 27px;
  }
  .l-contents {
    padding-top: 136px;
  }
  .l-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .l-container {
    padding-right: 24px;
    padding-left: 24px;
  }
  .c-head--type01 {
    line-height: 1;
  }
  .c-head--type01::before {
    margin-top: 0.1em;
  }
  .c-head--type02 {
    font-size: 40px;
  }
  .c-columns--1-col\@md {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-columns--2-col\@md {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-columns--3-col\@md {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-columns--4-col\@md {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-columns--5-col\@md {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-columns--6-col\@md {
    grid-template-columns: repeat(6, 1fr);
  }
  .c-linkList--type01 .c-linkList__item {
    width: 380px;
  }
  .c-table--type02 th, .c-table--type01 th,
  .c-table--type02 td,
  .c-table--type01 td {
    padding: 25px 21px;
  }
  .gnav {
    display: block;
  }
  .oNav {
    display: none;
  }
  .oNav-trigger {
    display: none;
  }
  .p-mv {
    margin-bottom: 40px;
  }
  .p-feature.l-section {
    padding-top: 80px;
    padding-bottom: 88px;
  }
  .p-feature__badges {
    flex-flow: row wrap;
    gap: 64px;
    margin-top: 44px;
    margin-bottom: 50px;
  }
  .p-feature__notice {
    text-align: center;
  }
  .p-feature__section {
    margin-top: 108px;
  }
  .p-feature__section-wrap {
    padding: 66px 72px 88px;
  }
  .p-feature__section--dx .p-feature__section-wrap {
    padding: 66px 72px 88px;
  }
  .p-feature__section--care .p-feature__section-wrap {
    padding-top: 75px;
  }
  .p-feature__section-title {
    top: -102px;
    min-width: 544px;
    padding-top: 19px;
    padding-bottom: 19px;
    font-size: 26px;
  }
  .p-feature__section--care .p-feature__section-title {
    top: -112px;
  }
  .p-feature__care-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .p-feature__footnote {
    margin-top: 80px;
    text-align: center;
  }
  .c-head--type01 + .p-feature__paragraph {
    margin-top: 24px;
  }
  .c-head--type03 + .p-feature__paragraph {
    margin-top: 8px;
  }
  .p-feature__usage-block .c-head--type01 + .p-feature__paragraph {
    margin-top: 24px;
  }
  .p-feature__section--usage .p-feature__section-body .p-feature__usage-block .c-head--type01 {
    margin-top: 42px;
  }
  .p-feature__section--usage .p-feature__usage-block + .p-feature__usage-block {
    margin-top: 60px;
  }
  .p-feature__section--dx .p-feature__paragraph-strong + .c-head--type01 {
    margin-top: 40px;
  }
  .p-feature__usage-block + .p-feature__usage-block .c-head--type01:first-child {
    margin-top: 67px;
  }
  .p-feature__usage-flows {
    gap: 72px;
    margin-top: 25px;
  }
  .p-feature__flow-item {
    padding: 32px 31px 56px;
  }
  .p-feature__flow-item-title {
    margin-bottom: 24px;
    line-height: 2;
  }
  .p-feature__flow-item-title span {
    margin-top: 0.45em;
  }
  .p-access.l-section {
    padding-bottom: 106px;
  }
  .p-access__address {
    margin-top: 0;
  }
  .p-access__container--type02 {
    margin-top: 40px;
  }
  .p-access__container--type01 {
    margin-top: 51px;
  }
  .p-access__container--type01 .p-access__item--type01, .p-access__container--type01 .p-access__item--type02, .p-access__container--type01 .p-access__item--type03 {
    width: calc(33.3333333333% - 16px);
  }
  .p-access__item--type03 .p-access__content {
    gap: 7px;
  }
  .p-access__bus-list {
    gap: 32px;
    line-height: 1.9;
  }
  .p-access__bus-stop {
    margin-top: 6px;
  }
  .p-recruit.l-section {
    padding-top: 80px;
    padding-bottom: 88px;
  }
  .p-recruit__section-wrap {
    padding: 107px 72px 72px;
  }
  .p-recruit__section-wrap {
    margin-top: 78px;
  }
  .p-recruit__head {
    width: 100%;
    max-width: 420px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .p-recruit__head {
    top: -140px;
    max-width: 544px;
  }
  .p-recruit__table th,
  .p-recruit__table td {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

@media screen and (min-width: 960px){
  .u-m-none-md {
    margin: 0 !important;
  }
  .u-m-xs-md {
    margin: 8px !important;
  }
  .u-m-s-md {
    margin: 16px !important;
  }
  .u-m-m-md {
    margin: 24px !important;
  }
  .u-m-l-md {
    margin: 40px !important;
  }
  .u-m-xl-md {
    margin: 64px !important;
  }
  .u-m-2xl-md {
    margin: 80px !important;
  }
  .u-mt-none-md {
    margin-top: 0 !important;
  }
  .u-mt-xs-md {
    margin-top: 8px !important;
  }
  .u-mt-s-md {
    margin-top: 16px !important;
  }
  .u-mt-m-md {
    margin-top: 24px !important;
  }
  .u-mt-l-md {
    margin-top: 40px !important;
  }
  .u-mt-xl-md {
    margin-top: 64px !important;
  }
  .u-mt-2xl-md {
    margin-top: 80px !important;
  }
  .u-mr-none-md {
    margin-right: 0 !important;
  }
  .u-mr-xs-md {
    margin-right: 8px !important;
  }
  .u-mr-s-md {
    margin-right: 16px !important;
  }
  .u-mr-m-md {
    margin-right: 24px !important;
  }
  .u-mr-l-md {
    margin-right: 40px !important;
  }
  .u-mr-xl-md {
    margin-right: 64px !important;
  }
  .u-mr-2xl-md {
    margin-right: 80px !important;
  }
  .u-mb-none-md {
    margin-bottom: 0 !important;
  }
  .u-mb-xs-md {
    margin-bottom: 8px !important;
  }
  .u-mb-s-md {
    margin-bottom: 16px !important;
  }
  .u-mb-m-md {
    margin-bottom: 24px !important;
  }
  .u-mb-l-md {
    margin-bottom: 40px !important;
  }
  .u-mb-xl-md {
    margin-bottom: 64px !important;
  }
  .u-mb-2xl-md {
    margin-bottom: 80px !important;
  }
  .u-ml-none-md {
    margin-left: 0 !important;
  }
  .u-ml-xs-md {
    margin-left: 8px !important;
  }
  .u-ml-s-md {
    margin-left: 16px !important;
  }
  .u-ml-m-md {
    margin-left: 24px !important;
  }
  .u-ml-l-md {
    margin-left: 40px !important;
  }
  .u-ml-xl-md {
    margin-left: 64px !important;
  }
  .u-ml-2xl-md {
    margin-left: 80px !important;
  }
  .u-mx-none-md {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .u-mx-xs-md {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
  .u-mx-s-md {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  .u-mx-m-md {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  .u-mx-l-md {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .u-mx-xl-md {
    margin-right: 64px !important;
    margin-left: 64px !important;
  }
  .u-mx-2xl-md {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  .u-my-none-md {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .u-my-xs-md {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .u-my-s-md {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .u-my-m-md {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .u-my-l-md {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .u-my-xl-md {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .u-my-2xl-md {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .u-p-none-md {
    padding: 0 !important;
  }
  .u-p-xs-md {
    padding: 8px !important;
  }
  .u-p-s-md {
    padding: 16px !important;
  }
  .u-p-m-md {
    padding: 24px !important;
  }
  .u-p-l-md {
    padding: 40px !important;
  }
  .u-p-xl-md {
    padding: 64px !important;
  }
  .u-p-2xl-md {
    padding: 80px !important;
  }
  .u-pt-none-md {
    padding-top: 0 !important;
  }
  .u-pt-xs-md {
    padding-top: 8px !important;
  }
  .u-pt-s-md {
    padding-top: 16px !important;
  }
  .u-pt-m-md {
    padding-top: 24px !important;
  }
  .u-pt-l-md {
    padding-top: 40px !important;
  }
  .u-pt-xl-md {
    padding-top: 64px !important;
  }
  .u-pt-2xl-md {
    padding-top: 80px !important;
  }
  .u-pr-none-md {
    padding-right: 0 !important;
  }
  .u-pr-xs-md {
    padding-right: 8px !important;
  }
  .u-pr-s-md {
    padding-right: 16px !important;
  }
  .u-pr-m-md {
    padding-right: 24px !important;
  }
  .u-pr-l-md {
    padding-right: 40px !important;
  }
  .u-pr-xl-md {
    padding-right: 64px !important;
  }
  .u-pr-2xl-md {
    padding-right: 80px !important;
  }
  .u-pb-none-md {
    padding-bottom: 0 !important;
  }
  .u-pb-xs-md {
    padding-bottom: 8px !important;
  }
  .u-pb-s-md {
    padding-bottom: 16px !important;
  }
  .u-pb-m-md {
    padding-bottom: 24px !important;
  }
  .u-pb-l-md {
    padding-bottom: 40px !important;
  }
  .u-pb-xl-md {
    padding-bottom: 64px !important;
  }
  .u-pb-2xl-md {
    padding-bottom: 80px !important;
  }
  .u-pl-none-md {
    padding-left: 0 !important;
  }
  .u-pl-xs-md {
    padding-left: 8px !important;
  }
  .u-pl-s-md {
    padding-left: 16px !important;
  }
  .u-pl-m-md {
    padding-left: 24px !important;
  }
  .u-pl-l-md {
    padding-left: 40px !important;
  }
  .u-pl-xl-md {
    padding-left: 64px !important;
  }
  .u-pl-2xl-md {
    padding-left: 80px !important;
  }
  .u-px-none-md {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .u-px-xs-md {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .u-px-s-md {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .u-px-m-md {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  .u-px-l-md {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .u-px-xl-md {
    padding-right: 64px !important;
    padding-left: 64px !important;
  }
  .u-px-2xl-md {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .u-py-none-md {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .u-py-xs-md {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .u-py-s-md {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .u-py-m-md {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .u-py-l-md {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .u-py-xl-md {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-2xl-md {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}

@media screen and (min-width: 1061px){
  .p-feature__flow-list {
    width: calc(100% - 156px);
  }
}

@media screen and (min-width: 1121px){
  .p-access__container--type01 .p-access__item--type04 {
    padding-right: 79px;
    padding-left: 79px;
  }
}

@media screen and (min-width: 1129px){
  .l-container {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 1200px){
  .p-feature__flow-list {
    width: 848px;
  }
}

@media (min-width: 1280px){
  .c-columns--1-col\@lg {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-columns--2-col\@lg {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-columns--3-col\@lg {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-columns--4-col\@lg {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-columns--5-col\@lg {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-columns--6-col\@lg {
    grid-template-columns: repeat(6, 1fr);
  }
  .pageTop__button {
    right: 24px;
    bottom: 24px;
    width: 80px;
    height: 80px;
  }
}

@media screen and (min-width: 1280px){
  .u-m-none-lg {
    margin: 0 !important;
  }
  .u-m-xs-lg {
    margin: 8px !important;
  }
  .u-m-s-lg {
    margin: 16px !important;
  }
  .u-m-m-lg {
    margin: 24px !important;
  }
  .u-m-l-lg {
    margin: 40px !important;
  }
  .u-m-xl-lg {
    margin: 64px !important;
  }
  .u-m-2xl-lg {
    margin: 80px !important;
  }
  .u-mt-none-lg {
    margin-top: 0 !important;
  }
  .u-mt-xs-lg {
    margin-top: 8px !important;
  }
  .u-mt-s-lg {
    margin-top: 16px !important;
  }
  .u-mt-m-lg {
    margin-top: 24px !important;
  }
  .u-mt-l-lg {
    margin-top: 40px !important;
  }
  .u-mt-xl-lg {
    margin-top: 64px !important;
  }
  .u-mt-2xl-lg {
    margin-top: 80px !important;
  }
  .u-mr-none-lg {
    margin-right: 0 !important;
  }
  .u-mr-xs-lg {
    margin-right: 8px !important;
  }
  .u-mr-s-lg {
    margin-right: 16px !important;
  }
  .u-mr-m-lg {
    margin-right: 24px !important;
  }
  .u-mr-l-lg {
    margin-right: 40px !important;
  }
  .u-mr-xl-lg {
    margin-right: 64px !important;
  }
  .u-mr-2xl-lg {
    margin-right: 80px !important;
  }
  .u-mb-none-lg {
    margin-bottom: 0 !important;
  }
  .u-mb-xs-lg {
    margin-bottom: 8px !important;
  }
  .u-mb-s-lg {
    margin-bottom: 16px !important;
  }
  .u-mb-m-lg {
    margin-bottom: 24px !important;
  }
  .u-mb-l-lg {
    margin-bottom: 40px !important;
  }
  .u-mb-xl-lg {
    margin-bottom: 64px !important;
  }
  .u-mb-2xl-lg {
    margin-bottom: 80px !important;
  }
  .u-ml-none-lg {
    margin-left: 0 !important;
  }
  .u-ml-xs-lg {
    margin-left: 8px !important;
  }
  .u-ml-s-lg {
    margin-left: 16px !important;
  }
  .u-ml-m-lg {
    margin-left: 24px !important;
  }
  .u-ml-l-lg {
    margin-left: 40px !important;
  }
  .u-ml-xl-lg {
    margin-left: 64px !important;
  }
  .u-ml-2xl-lg {
    margin-left: 80px !important;
  }
  .u-mx-none-lg {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .u-mx-xs-lg {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
  .u-mx-s-lg {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  .u-mx-m-lg {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  .u-mx-l-lg {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .u-mx-xl-lg {
    margin-right: 64px !important;
    margin-left: 64px !important;
  }
  .u-mx-2xl-lg {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  .u-my-none-lg {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .u-my-xs-lg {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .u-my-s-lg {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .u-my-m-lg {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .u-my-l-lg {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .u-my-xl-lg {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .u-my-2xl-lg {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .u-p-none-lg {
    padding: 0 !important;
  }
  .u-p-xs-lg {
    padding: 8px !important;
  }
  .u-p-s-lg {
    padding: 16px !important;
  }
  .u-p-m-lg {
    padding: 24px !important;
  }
  .u-p-l-lg {
    padding: 40px !important;
  }
  .u-p-xl-lg {
    padding: 64px !important;
  }
  .u-p-2xl-lg {
    padding: 80px !important;
  }
  .u-pt-none-lg {
    padding-top: 0 !important;
  }
  .u-pt-xs-lg {
    padding-top: 8px !important;
  }
  .u-pt-s-lg {
    padding-top: 16px !important;
  }
  .u-pt-m-lg {
    padding-top: 24px !important;
  }
  .u-pt-l-lg {
    padding-top: 40px !important;
  }
  .u-pt-xl-lg {
    padding-top: 64px !important;
  }
  .u-pt-2xl-lg {
    padding-top: 80px !important;
  }
  .u-pr-none-lg {
    padding-right: 0 !important;
  }
  .u-pr-xs-lg {
    padding-right: 8px !important;
  }
  .u-pr-s-lg {
    padding-right: 16px !important;
  }
  .u-pr-m-lg {
    padding-right: 24px !important;
  }
  .u-pr-l-lg {
    padding-right: 40px !important;
  }
  .u-pr-xl-lg {
    padding-right: 64px !important;
  }
  .u-pr-2xl-lg {
    padding-right: 80px !important;
  }
  .u-pb-none-lg {
    padding-bottom: 0 !important;
  }
  .u-pb-xs-lg {
    padding-bottom: 8px !important;
  }
  .u-pb-s-lg {
    padding-bottom: 16px !important;
  }
  .u-pb-m-lg {
    padding-bottom: 24px !important;
  }
  .u-pb-l-lg {
    padding-bottom: 40px !important;
  }
  .u-pb-xl-lg {
    padding-bottom: 64px !important;
  }
  .u-pb-2xl-lg {
    padding-bottom: 80px !important;
  }
  .u-pl-none-lg {
    padding-left: 0 !important;
  }
  .u-pl-xs-lg {
    padding-left: 8px !important;
  }
  .u-pl-s-lg {
    padding-left: 16px !important;
  }
  .u-pl-m-lg {
    padding-left: 24px !important;
  }
  .u-pl-l-lg {
    padding-left: 40px !important;
  }
  .u-pl-xl-lg {
    padding-left: 64px !important;
  }
  .u-pl-2xl-lg {
    padding-left: 80px !important;
  }
  .u-px-none-lg {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .u-px-xs-lg {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .u-px-s-lg {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .u-px-m-lg {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  .u-px-l-lg {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .u-px-xl-lg {
    padding-right: 64px !important;
    padding-left: 64px !important;
  }
  .u-px-2xl-lg {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .u-py-none-lg {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .u-py-xs-lg {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .u-py-s-lg {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .u-py-m-lg {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .u-py-l-lg {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .u-py-xl-lg {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-2xl-lg {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}

@media screen and (min-width: 1441px){
  .l-header__inner {
    max-width: 1440px;
  }
  .p-mv {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 599px){
  .c-linkList--type01 {
    gap: 20px;
  }
}

@media screen and (max-width: 374px){
  body {
    font-size: 14px !important;
  }
}

@media print{
  .l-header {
    position: absolute;
  }
  .gnav {
    display: block;
  }
  .pageTop {
    display: none;
  }
  .pageTop__button {
    display: none;
  }
  .oNav {
    display: none;
  }
  .oNav-trigger {
    display: none;
  }
  .oNav__wrap {
    display: none;
  }
  .p-feature__section-title {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    -webkit-region-break-inside: avoid;
  }
}
/*# sourceMappingURL=base.css.map */
