@charset "UTF-8";
/* Break point
---------------------------------------------------------- */
/* Font
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  -webkit-padding-start: initial;
          padding-inline-start: initial;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

mark {
  background: none;
}

input,
button,
textarea,
select {
  /* デフォルトスタイルをリセット */
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  font-family: inherit;
  font-size: inherit;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  border: none;
  outline: none;
}

input[type=submit],
input[type=button] {
  /* デフォルトスタイルをリセット */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label {
  /* iOSでのlabelとinput,select,textareaの関連付け */
  cursor: pointer;
}

/* スピンボタン非表示 chrome,safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=month]::-webkit-outer-spin-button,
input[type=month]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=week]::-webkit-outer-spin-button,
input[type=week]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button {
  display: none;
}

/* スピンボタン非表示(firefox) */
input[type=number],
input[type=month],
input[type=datetime-local],
input[type=week],
input[type=time],
input[type=date] {
  -moz-appearance: textfield;
}

/* クリアボタン非表示 */
input[type=date]::-webkit-clear-button,
input[type=month]::-webkit-clear-button,
input[type=datetime-local]::-webkit-clear-button,
input[type=time]::-webkit-clear-button,
input[type=week]::-webkit-clear-button {
  -webkit-appearance: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
li {
  list-style: none;
}

a > * {
  vertical-align: top;
}

table {
  border-collapse: collapse;
}

/* Mixin
---------------------------------------------------------- */
/* Animation
---------------------------------------------------------- */
.a-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.a-fadeIn.-start {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ==========================================================================//
//
//　変数
//
// ========================================================================== */
:root {
  /* Color
  ---------------------------------------------------------- */
  --color-main: #40A2E3;
  --color-sub: #FFF6E9;
  --color-sub2: #BBE2EC;
  --color-sub3: #0D9276;
  --color-font: #0D0D0D;
  --color-red: #EE1D20;
  /* font
  ---------------------------------------------------------- */
  --font-zenkaku: "Zen Kaku Gothic New", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --font-l: 300;
  --font-r: 400;
  --font-m: 500;
  --font-b: 700;
  --font-bl: 900;
  --lhS: 1.2;
  --lhM: 1.5;
  --lhL: 1.8;
  --lhLL: 2.3;
  /* width
  ---------------------------------------------------------- */
  --maxWidth: 1400px;
  --sidePadding: 20px;
  --marginTop: 20px;
}
@media screen and (min-width: 768px) {
  :root {
    --sidePadding: 40px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --marginTop: 30px;
  }
}

/**
 * Makes elements visually invisible but still accessible to screen-readers.
 *
 * This Css has been carefully tested to ensure screen-readers can read and
 * activate (in case of links and buttons) the elements with this class. Please
 * use caution when changing anything, even seemingly safe ones. For example
 * changing width from 1 to 0 would prevent TalkBack from activating (clicking)
 * buttons despite TalkBack reading them just fine. This is because
 * element needs to have a defined size and be on viewport otherwise TalkBack
 * does not allow activation of buttons.
 */
.visually-hidden {
  position: fixed !important;
  /* keep it on viewport */
  top: 0px !important;
  left: 0px !important;
  /* give it non-zero size, VoiceOver on Safari requires at least 2 pixels
     before allowing buttons to be activated. */
  width: 4px !important;
  height: 4px !important;
  /* visually hide it with overflow and opacity */
  opacity: 0 !important;
  overflow: hidden !important;
  /* remove any margin or padding */
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  /* ensure no other style sets display to none */
  display: block !important;
  visibility: visible !important;
}

.pc-only {
  display: none;
}
@media screen and (min-width: 960px) {
  .pc-only {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  .sp-only {
    display: none;
  }
}

.c-taC {
  text-align: center;
}

.c-taR {
  text-align: right;
}

.c-taL {
  text-align: left;
}

.c-colorBox {
  padding: 20px;
}

.c-of-hidden {
  overflow: hidden;
}

.c-note {
  padding-left: 1.2em;
  position: relative;
}
.c-note mark {
  color: inherit;
  position: absolute;
  top: 0;
  left: 0;
}

.c-fwN {
  font-weight: 400;
}

.c-fwM {
  font-weight: var(--font-m);
}

.c-fwB {
  font-weight: var(--font-b);
}

.c-fsSS {
  font-size: 0.8em;
}

.c-fsS {
  font-size: 0.9em;
}

.c-fsM {
  font-size: 1.2em;
}

.c-fsL {
  font-size: 1.4em;
}

.c-fc-red {
  color: var(--color-red);
}

.c-ttl-1 {
  margin-top: var(--marginTop);
}
.c-ttl-1 > span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: var(--font-b);
}
@media screen and (min-width: 768px) {
  .c-ttl-1 > span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.c-ttl-1 > span::before {
  content: "";
  display: inline-block;
  margin-top: 0.3em;
  width: 17px;
  aspect-ratio: 1/1;
  background: var(--color-main);
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .c-ttl-1 > span::before {
    width: 20px;
  }
}
.c-ttl-1 > span.-sub {
  margin-left: 27px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: var(--font-m);
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .c-ttl-1 > span.-sub {
    font-weight: var(--font-b);
  }
}
.c-ttl-1 > span.-sub::before {
  content: none;
}
.c-ttl-1 > span.-sub span {
  display: inline-block;
}

.c-ttl-2 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (min-width: 768px) {
  .c-ttl-2 {
    gap: 15px;
  }
}
.c-ttl-2 .-num {
  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;
  width: 22px;
  aspect-ratio: 1/1;
  background: var(--color-main);
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: var(--font-roboto);
  font-weight: var(--font-b);
  margin-top: 0.2em;
}
@media screen and (min-width: 768px) {
  .c-ttl-2 .-num {
    width: 27px;
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: 0;
  }
}
.c-ttl-2 .-ttl {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: var(--font-b);
}
@media screen and (min-width: 768px) {
  .c-ttl-2 .-ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.c-ttl-3 {
  margin-top: var(--marginTop);
}
.c-ttl-3 > span {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-m);
}
@media screen and (min-width: 768px) {
  .c-ttl-3 > span {
    font-size: 18px;
    font-size: 1.125rem;
    grid-template-columns: 20px 1fr;
  }
}
.c-ttl-3 > span::before {
  content: "";
  display: inline-block;
  margin-top: 0.3em;
  width: 13px;
  aspect-ratio: 1/1;
  background: var(--color-sub2);
  border-radius: 3px;
  justify-self: anchor-center;
}
@media screen and (min-width: 768px) {
  .c-ttl-3 > span::before {
    width: 15px;
  }
}

.c-link-1 {
  text-decoration: underline;
  text-underline-position: from-font;
  color: var(--color-main);
}
@media screen and (min-width: 960px) {
  .c-link-1:hover {
    text-decoration: none;
  }
}

.c-flex {
  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;
  gap: 10px 20px;
}
.c-flex > * {
  margin-top: 0 !important;
}
.c-flex + * {
  margin-top: var(--marginTop);
}
@media screen and (min-width: 768px) {
  .c-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -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;
  }
}
.c-flex.-sp {
  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-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;
  gap: 10px 20px;
}

.c-grid {
  margin-top: 20px !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.c-grid > * {
  margin-top: 0 !important;
}
.c-grid + * {
  margin-top: var(--marginTop);
}
.c-grid > .-txt > *:first-child {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .c-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 50px;
  }
}
@media screen and (min-width: 960px) {
  .c-grid {
    margin-top: 40px !important;
  }
}

.c-list-1 + * {
  margin-top: var(--marginTop);
}
.c-list-1 > li > ul, .c-list-1 ol {
  margin-top: 10px !important;
  margin-bottom: 15px !important;
}
.c-list-1 > li {
  padding-left: 1.2em;
  position: relative;
}
.c-list-1 > li + li {
  margin-top: 10px;
}
.c-list-1 > li mark {
  color: inherit;
  position: absolute;
  top: 0;
  left: 0;
}
.c-list-1.-em2 > li {
  padding-left: 2.2em;
}
.c-list-1.-em3 > li {
  padding-left: 3.2em;
}
.c-list-1.-em4 > li {
  padding-left: 4.2em;
}

.c-list-2 + * {
  margin-top: var(--marginTop);
}
.c-list-2 li {
  padding-left: 15px;
  position: relative;
}
.c-list-2 li + li {
  margin-top: 10px;
}
.c-list-2 li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--color-main);
  border-radius: 9999px;
  position: absolute;
  top: calc(0.5em + 2.5px);
  left: 5px;
}

@media screen and (min-width: 768px) {
  .c-dlBox {
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 40px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.c-dlBox + * {
  margin-top: var(--marginTop);
}
.c-dlBox + .c-dlBox {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-dlBox + .c-dlBox {
    margin-top: 0;
    border-top: 1px solid #D9D9D9;
  }
}
.c-dlBox dt {
  padding: 10px;
  background: var(--color-sub);
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-dlBox dt {
    font-weight: 400;
    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;
    padding: 20px;
  }
}
@media screen and (min-width: 960px) {
  .c-dlBox dt {
    padding: 20px 30px;
  }
}
.c-dlBox dd {
  padding: 10px 0;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-dlBox dd {
    padding: 20px 20px 20px 0;
  }
}
@media screen and (min-width: 960px) {
  .c-dlBox dd {
    padding: 20px 30px 20px 0;
  }
}

.c-imgAndTxt + * {
  margin-top: var(--marginTop);
}
.c-imgAndTxt .-img {
  float: left;
  width: 100%;
  margin-bottom: var(--marginTop);
}
@media screen and (min-width: 768px) {
  .c-imgAndTxt .-img {
    width: 50%;
    margin-right: 40px;
  }
}
.c-imgAndTxt .-img img {
  margin: auto;
}
.c-imgAndTxt .-txt > * + * {
  margin-top: var(--marginTop);
}
.c-imgAndTxt::after {
  content: "";
  display: block;
  clear: both;
}
.c-imgAndTxt.-right .-img {
  float: right;
  margin-left: 40px;
}

.c-table table {
  text-align: center;
}
.c-table table caption {
  margin-bottom: 10px;
}
.c-table table th, .c-table table td {
  padding: 10px;
}
.c-table table th {
  font-weight: var(--font-m);
}
.c-table table tr {
  border: 2px solid var(--color-sub2);
  border-top: none;
}
.c-table table tr + tr {
  border-top: 2px solid var(--color-sub2);
}
.c-table table thead th {
  background: var(--color-sub2);
}
.c-table table thead th + th {
  border-left: 2px solid #fff;
}
.c-table table tbody td + td {
  border-left: 2px solid var(--color-sub2);
}

.c-btn-1 a {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background: var(--color-main);
  color: #fff;
  font-weight: var(--font-m);
  text-align: center;
  border-radius: 10px;
  padding: 15px 20px;
  min-width: 250px;
}
@media screen and (min-width: 768px) {
  .c-btn-1 a {
    padding: 20px;
    border-radius: 15px;
  }
}
@media screen and (min-width: 960px) {
  .c-btn-1 a {
    overflow: hidden;
    position: relative;
    background: #1183CE;
    z-index: 1;
  }
  .c-btn-1 a > * {
    position: relative;
    z-index: 3;
  }
  .c-btn-1 a::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--color-main);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: height 0.15s ease-out;
    transition: height 0.15s ease-out;
    z-index: 1;
  }
  .c-btn-1 a:hover::after {
    height: 0;
  }
}
.c-btn-1 a .c-icon-svg {
  width: 15px;
  height: 15px;
}

.c-tile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  --size: 15px;
  --radius: 3px;
}
.c-tile span {
  display: inline-block;
  width: var(--size);
  height: var(--size);
  background: var(--color-sub3);
  border-radius: var(--radius);
}
.c-tile::before, .c-tile::after {
  content: "";
  display: inline-block;
  height: var(--size);
  width: var(--size);
  background: var(--color-sub2);
  border-radius: var(--radius);
}

html {
  font-family: "noto sans jp", sans-serif;
  color: var(--color-font);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: var(--font-r);
  letter-spacing: 0.36px;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    font-size: 1rem;
  }
}

svg {
  width: 100%;
  height: 100%;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

a.c-telLink {
  color: var(--color-font);
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  a.c-telLink {
    pointer-events: none;
    cursor: default;
  }
}

button {
  cursor: pointer;
}

sup {
  vertical-align: top;
}

.l-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (min-width: 960px) {
  .l-header {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.l-header__inner {
  display: inline-block;
  background: #EFFAFD;
  padding: 15px 70px 15px 25px;
  border-radius: 0 0 0 35px;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 15px 80px 15px 30px;
  }
}
@media screen and (min-width: 960px) {
  .l-header__inner {
    padding: 30px 50px;
    border-radius: 0 0 0 50px;
  }
}
.l-header .-logo img {
  max-width: 198px;
}
@media screen and (min-width: 768px) {
  .l-header .-logo img {
    max-width: 318px;
  }
}

@media screen and (min-width: 960px) {
  .l-nav__btn {
    display: none;
  }
}
.l-nav__btn button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: var(--color-main);
  color: #fff;
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .l-nav__btn button {
    top: 10px;
    right: 10px;
  }
}
.l-nav__btn button span {
  font-family: var(--font-roboto);
  font-size: 12px;
  font-size: 0.75rem;
  position: absolute;
  bottom: 8px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.l-nav__btn button span::before, .l-nav__btn button span::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: -8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-nav__btn button span::after {
  top: -18px;
}
.l-nav__btn.-active button {
  background: #fff;
  color: var(--color-main);
}
.l-nav__btn.-active button span::before, .l-nav__btn.-active button span::after {
  background: var(--color-main);
}

.l-nav {
  background: var(--color-main);
  border-radius: 0 0 0 30px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 888;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-nav.-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 960px) {
  .l-nav {
    position: relative;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    background: none;
    -webkit-transition: none;
    transition: none;
    padding: 60px 0;
    max-height: calc(100vh - 120px);
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }
  .l-nav::after {
    content: "";
    width: 5px;
    height: calc(100% - 60px);
    background: #E1F1F5;
    border-radius: 3px;
    position: absolute;
    top: 60px;
    right: 0;
  }
}
.l-nav__list {
  padding: 60px 30px 40px;
}
@media screen and (min-width: 960px) {
  .l-nav__list {
    padding: 40px 65px 40px 40px;
  }
}
.l-nav__list li {
  display: grid;
  grid-template-columns: 17px auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .l-nav__list li {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 960px) {
  .l-nav__list li {
    color: var(--color-font);
  }
}
.l-nav__list li::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  justify-self: center;
}
@media screen and (min-width: 960px) {
  .l-nav__list li::before {
    background: var(--color-sub2);
  }
}
.l-nav__list li.-current::before {
  background: #fff;
  width: 17px;
  border-radius: 5px;
}
@media screen and (min-width: 960px) {
  .l-nav__list li.-current::before {
    background: var(--color-main);
  }
}
.l-nav__list li + li {
  margin-top: 40px;
}
.l-nav__list li p {
  font-weight: var(--font-b);
}
.l-nav__list li a {
  text-decoration: underline;
  text-underline-position: from-font;
}
@media screen and (min-width: 960px) and (min-width: 960px) {
  .l-nav__list li a:hover {
    text-decoration: none;
  }
}

.l-footer {
  margin-top: 90px;
  background: #E1F1F5;
  padding: 60px var(--sidePadding) 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: 100px;
    padding: 80px var(--sidePadding) 0;
  }
}
.l-footer::after {
  content: "";
  display: inline-block;
  width: 150px;
  aspect-ratio: 1/0.49;
  background: url(/images/img-footer-city.svg) no-repeat top center/cover;
  position: absolute;
  bottom: 100%;
  right: 16px;
}
@media screen and (min-width: 768px) {
  .l-footer::after {
    width: 300px;
    right: 40px;
  }
}
@media screen and (min-width: 1450px) {
  .l-footer::after {
    left: calc(50% + 417px);
    right: auto;
  }
}
@media screen and (min-width: 1300px) {
  .l-footer__inner {
    display: grid;
    grid-template-columns: 67% 1fr;
    grid-template-areas: "office banner" "office banner" "copy copy";
    gap: 0 40px;
    max-width: var(--maxWidth);
    margin: 0 auto;
  }
}
@media screen and (min-width: 1300px) {
  .l-footer__office {
    grid-area: office;
  }
}
@media screen and (min-width: 960px) {
  .l-footer__office {
    padding: 0 calc(30% + 20px) 0 0;
    position: relative;
  }
}
@media screen and (min-width: 960px) {
  .l-footer__office::after {
    content: "";
    display: inline-block;
    width: 30%;
    height: 100%;
    background: url(/images/img-footer-photo.jpg) no-repeat center center/cover;
    border-radius: 30px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.l-footer__office__detail {
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-footer__office__detail {
    padding: 10px 0 10px 0;
  }
}
.l-footer__office .c-tile {
  --size: 10px;
  --radius: 3px;
  gap: 2px;
}
.l-footer__office .-office {
  margin-top: 15px;
  text-align: center;
  font-weight: var(--font-b);
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 960px) {
  .l-footer__office .-office {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__office .-office br {
    display: none;
  }
}
.l-footer__office .-address {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .l-footer__office .-address {
    margin-top: 25px;
  }
}
.l-footer__office .-address span {
  display: inline-block;
}
.l-footer__office__contact {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .l-footer__office__contact {
    margin-top: 40px;
  }
}
.l-footer__office__contact li {
  display: grid;
  grid-template-columns: 55px 1fr;
  background: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .l-footer__office__contact li {
    grid-template-columns: 100px 1fr;
    border-radius: 30px;
  }
}
@media screen and (min-width: 960px) {
  .l-footer__office__contact li {
    grid-template-columns: 100px 1fr;
  }
}
.l-footer__office__contact li + li {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .l-footer__office__contact li + li {
    margin-top: 0;
  }
}
.l-footer__office__contact li .-icon {
  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;
  background: var(--color-sub3);
  color: #fff;
  border-radius: 10px 0 0 10px;
}
@media screen and (min-width: 768px) {
  .l-footer__office__contact li .-icon {
    border-radius: 30px 0 0 30px;
  }
}
.l-footer__office__contact li .-icon .c-icon-svg {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 960px) {
  .l-footer__office__contact li .-icon .c-icon-svg {
    width: 30px;
    height: 30px;
  }
}
.l-footer__office__contact li .-contentBox {
  padding: 20px;
  color: var(--color-sub3);
}
@media screen and (min-width: 768px) {
  .l-footer__office__contact li .-contentBox {
    padding: 40px 20px;
    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-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer__office__contact li .-contentBox .c-telLink {
  color: var(--color-sub3);
  font-size: clamp(1.625rem, -2.375rem + 20vw, 1.75rem);
  font-weight: var(--font-b);
  font-family: var(--font-roboto);
}
@media screen and (min-width: 768px) {
  .l-footer__office__contact li .-contentBox .c-telLink {
    font-size: 32px;
    font-size: 2rem;
  }
}
.l-footer__office__contact li .-contentBox .-time {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .l-footer__office__contact li .-contentBox .-time {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-footer__office__contact li .-contentBox .-mailLink {
  font-size: clamp(0.875rem, -3.125rem + 20vw, 1rem);
  text-decoration: underline;
  text-underline-position: from-font;
  font-weight: var(--font-m);
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .l-footer__office__contact li .-contentBox .-mailLink {
    font-size: clamp(1.063rem, -0.756rem + 3.79vw, 1.375rem);
  }
}
@media screen and (min-width: 960px) {
  .l-footer__office__contact li .-contentBox .-mailLink:hover {
    text-decoration: none;
  }
}
.l-footer__office .-note {
  margin-top: 10px;
  font-weight: var(--font-b);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__office .-note {
    margin-top: 20px;
  }
}
.l-footer__banner {
  margin-top: 40px;
}
@media screen and (min-width: 1300px) {
  .l-footer__banner {
    grid-area: banner;
    margin-top: 0;
  }
  .l-footer__banner ul {
    height: 100%;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
}
.l-footer__banner ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -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;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .l-footer__banner ul {
    border-radius: 30px;
    padding: 40px 20px;
    gap: 40px;
  }
}
.l-footer__banner ul li a {
  display: block;
  max-width: 250px;
}
@media screen and (min-width: 768px) {
  .l-footer__banner ul li a {
    max-width: 300px;
  }
}
@media screen and (min-width: 960px) {
  .l-footer__banner ul li a:hover {
    opacity: 0.7;
  }
}
.l-footer__copy {
  margin-top: 40px;
  padding: 10px;
  background: #fff;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    border-radius: 30px 30px 0 0;
  }
}
@media screen and (min-width: 1300px) {
  .l-footer__copy {
    grid-area: copy;
  }
}
.l-footer__copy .-copy {
  font-size: 9px;
  font-size: 0.5625rem;
  color: #234D69;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__copy .-copy {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

.l-ttl {
  margin-top: 20px;
  padding: 0 var(--sidePadding);
}
@media screen and (min-width: 960px) {
  .l-ttl {
    margin-top: 0;
    padding-top: 20px;
  }
}
.l-ttl .-siteTtl a {
  display: inline-block;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .l-ttl .-siteTtl a:hover {
    opacity: 0.7;
  }
}
.l-ttl .-siteTtl .-sub {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: var(--font-r);
}
@media screen and (min-width: 768px) {
  .l-ttl .-siteTtl .-sub {
    font-size: 16px;
    font-size: 1rem;
  }
}
.l-ttl .-siteTtl .c-tile {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-ttl .-siteTtl .c-tile {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    --size: 9px;
    --radiuse: 2px;
    gap: 3px;
    margin-left: 5px;
    margin-top: 0.2em;
  }
}
.l-ttl .-siteTtl .-main {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  font-weight: var(--font-m);
  line-height: var(--lhS);
}
@media screen and (min-width: 768px) {
  .l-ttl .-siteTtl .-main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.l-ttl .-pageTtl {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .l-ttl .-pageTtl {
    margin-top: 100px;
  }
}
@media screen and (min-width: 768px) {
  .l-ttl .-pageTtl .c-tile {
    --size: 15px;
    gap: 7px;
  }
}
.l-ttl .-pageTtl .-ttl {
  display: block;
  margin-top: 5px;
  font-family: var(--font-zenkaku);
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: var(--font-m);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-ttl .-pageTtl .-ttl {
    font-size: 32px;
    font-size: 2rem;
    margin-top: 18px;
  }
}
.l-ttl__img {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 50% auto 1fr;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .l-ttl__img {
    margin-top: 70px;
    grid-template-columns: 51% auto 1fr;
    grid-template-rows: 120px;
    gap: 10px;
  }
}
@media screen and (min-width: 960px) {
  .l-ttl__img {
    gap: 20px;
    max-width: var(--maxWidth);
    margin-right: auto;
    margin-left: auto;
  }
}
.l-ttl__img span {
  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;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .l-ttl__img span {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
@media screen and (min-width: 960px) {
  .l-ttl__img span {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
.l-ttl__img span::before, .l-ttl__img span::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .l-ttl__img span::before, .l-ttl__img span::after {
    width: 55px;
    height: 55px;
  }
}
@media screen and (min-width: 960px) {
  .l-ttl__img span::before, .l-ttl__img span::after {
    width: 120px;
    height: 120px;
    border-radius: 30px;
  }
}
.l-ttl__img span::before {
  background: var(--color-main);
}
.l-ttl__img span::after {
  background: var(--color-sub3);
}
.l-ttl__img figure {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-ttl__img figure {
    border-radius: 30px;
  }
}
.l-ttl__img figure img {
  width: 100%;
  height: 100%;
  max-height: 85px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .l-ttl__img figure img {
    max-height: 120px;
  }
}
.l-ttl.js-scroll {
  --ttlTime: 0.7s;
}
.l-ttl.js-scroll .-pageTtl .-ttl {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0.1s;
  transition: all 0.5s ease-out 0.1s;
}
.l-ttl.js-scroll .l-ttl__img figure::after, .l-ttl.js-scroll .l-ttl__img figure::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-main);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: height 0.4s ease-out var(--ttlTime);
  transition: height 0.4s ease-out var(--ttlTime);
  z-index: 2;
}
.l-ttl.js-scroll .l-ttl__img figure::after {
  background: var(--color-sub3);
  -webkit-transition-delay: calc(0.55s + var(--ttlTime));
          transition-delay: calc(0.55s + var(--ttlTime));
  z-index: 1;
}
.l-ttl.js-scroll .l-ttl__img figure:last-child::before {
  background: var(--color-sub3);
  -webkit-transition-delay: calc(0.2s + var(--ttlTime));
          transition-delay: calc(0.2s + var(--ttlTime));
}
.l-ttl.js-scroll .l-ttl__img figure:last-child::after {
  background: var(--color-main);
  -webkit-transition-delay: calc(0.8s + var(--ttlTime));
          transition-delay: calc(0.8s + var(--ttlTime));
}
.l-ttl.js-scroll.-start .-pageTtl .-ttl {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.l-ttl.js-scroll.-start .l-ttl__img figure::before, .l-ttl.js-scroll.-start .l-ttl__img figure::after {
  height: 0;
}
.l-ttl.-top {
  margin-top: 50px;
}
@media screen and (min-width: 960px) {
  .l-ttl.-top {
    margin-top: 150px;
  }
}
@media screen and (min-width: 768px) {
  .l-ttl.-top .l-ttl__inner {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}
.l-ttl.-top .-siteTtl .c-tile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  --size: 10px;
  --radius: 2px;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (min-width: 768px) {
  .l-ttl.-top .-siteTtl .c-tile {
    --size: 15px;
    --radius: 2px;
    gap: 7px;
  }
}
.l-ttl.-top .-siteTtl .-sub {
  display: block;
  margin-top: 15px;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .l-ttl.-top .-siteTtl .-sub {
    font-size: 28px;
    font-size: 1.75rem;
    margin-top: 25px;
  }
}
.l-ttl.-top .-siteTtl .-main {
  display: block;
  margin-top: 10px;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: var(--font-zenkaku);
}
@media screen and (min-width: 768px) {
  .l-ttl.-top .-siteTtl .-main {
    font-size: 41px;
    font-size: 2.5625rem;
    line-height: var(--lhM);
  }
}
.l-ttl.-top .-siteTtl .-main .-small {
  font-size: 21px;
  font-size: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .l-ttl.-top .-siteTtl .-main .-small {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.l-ttl.-top .-siteTtl .-main .-dot {
  margin: 0 -5px;
}
@media screen and (min-width: 768px) {
  .l-ttl.-top .-siteTtl .-main .-dot {
    margin: 0 -8px;
  }
}
@media screen and (min-width: 960px) {
  .l-ttl.-top .-siteTtl .-main br {
    display: none;
  }
}
.l-ttl.-top .l-ttl__img {
  margin-top: 30px;
  grid-template-areas: "photo1 photo1" "tile photo2";
  grid-template-columns: auto 1fr;
  grid-template-rows: 123px;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .l-ttl.-top .l-ttl__img {
    margin-top: 60px;
    grid-template-areas: "photo1 tile photo2";
    grid-template-columns: 50% auto 1fr;
    grid-template-rows: 294px;
    gap: 20px;
  }
}
@media screen and (min-width: 960px) {
  .l-ttl.-top .l-ttl__img {
    grid-template-columns: 55% auto 1fr;
    grid-template-rows: 345px;
  }
}
.l-ttl.-top .l-ttl__img figure:first-child {
  grid-area: photo1;
}
.l-ttl.-top .l-ttl__img figure:last-child {
  grid-area: photo2;
}
.l-ttl.-top .l-ttl__img figure img {
  max-height: 123px;
}
@media screen and (min-width: 768px) {
  .l-ttl.-top .l-ttl__img figure img {
    max-height: 294px;
    border-radius: 30px;
  }
}
@media screen and (min-width: 960px) {
  .l-ttl.-top .l-ttl__img figure img {
    max-height: 345px;
  }
}
.l-ttl.-top .l-ttl__img figure:last-child img {
  border-radius: 10px;
}
@media screen and (min-width: 960px) {
  .l-ttl.-top .l-ttl__img figure:last-child img {
    border-radius: 30px;
  }
}
.l-ttl.-top .l-ttl__img span {
  grid-area: tile;
  gap: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 960px) {
  .l-ttl.-top .l-ttl__img span {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-ttl.-top .l-ttl__img span::before, .l-ttl.-top .l-ttl__img span::after {
  width: 57px;
  height: 57px;
}
@media screen and (min-width: 768px) {
  .l-ttl.-top .l-ttl__img span::before, .l-ttl.-top .l-ttl__img span::after {
    width: 137px;
    height: 137px;
    border-radius: 30px;
  }
}
@media screen and (min-width: 960px) {
  .l-ttl.-top .l-ttl__img span::before, .l-ttl.-top .l-ttl__img span::after {
    width: 162px;
    height: 162px;
  }
}
.l-ttl.-top.js-scroll {
  --ttlTime: 1.3s;
}
.l-ttl.-top.js-scroll .-siteTtl .-sub {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0.1s;
  transition: all 0.5s ease-out 0.1s;
}
.l-ttl.-top.js-scroll .-siteTtl .-main {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.6s ease-out 0.5s;
  transition: all 0.6s ease-out 0.5s;
}
.l-ttl.-top.js-scroll.-start .-siteTtl .-sub {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.l-ttl.-top.js-scroll.-start .-siteTtl .-main {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.l-main-outer {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .l-main-outer {
    margin-top: 40px;
    padding: 0 var(--sidePadding);
    display: grid;
    grid-template-columns: auto 1fr;
    max-width: calc(var(--maxWidth) + 2 * var(--sidePadding));
    margin-right: auto;
    margin-left: auto;
  }
}

.l-contents {
  padding: 0 var(--sidePadding);
}
@media screen and (min-width: 960px) {
  .l-contents {
    padding: 0 0 0 60px;
  }
}
.l-contents section {
  margin-top: 60px;
}
.l-contents section > * + * {
  margin-top: var(--marginTop);
}
.l-contents section .c-ttl-1, .l-contents section .c-ttl-2 {
  margin-top: 50px;
}
@media screen and (min-width: 960px) {
  .l-contents section > *:not(.c-ttl-1, .c-ttl-2) {
    margin-left: 32px;
  }
}
.l-contents section p + p {
  margin-top: 10px;
}
.l-contents section p {
  line-height: var(--lhL);
}
.l-contents .l-news__box dl {
  display: grid;
  grid-template-rows: 1fr;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .l-contents .l-news__box dl {
    grid-template-columns: auto 1fr;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.l-contents .l-news__box dl + dl {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .l-contents .l-news__box dl + dl {
    margin-top: 25px;
  }
}
.l-contents .l-news__box dl dt {
  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: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 10px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: var(--font-m);
  color: #656565;
}
@media screen and (min-width: 768px) {
  .l-contents .l-news__box dl dt {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 0.3em;
  }
}
.l-contents .l-news__box dl dt .c-tile {
  --size: 7px;
  --radius: 2px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .l-contents .l-news__box dl dt .c-tile {
    --size: 10px;
  }
  .l-contents .l-news__box dl dt .c-tile::before, .l-contents .l-news__box dl dt .c-tile::after {
    content: none;
  }
}
.l-contents .l-news__box dl dt .c-tile span {
  background: var(--color-sub2);
}
.l-contents .l-news__box dl dd a {
  text-decoration: underline;
  text-underline-position: from-font;
}
@media screen and (min-width: 960px) {
  .l-contents .l-news__box dl dd a:hover {
    text-decoration: none;
  }
}
.l-contents .l-about {
  background: var(--color-sub);
  border-radius: 10px;
  padding: 30px 20px 60px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-contents .l-about {
    padding: 50px var(--sidePadding) 60px;
    border-radius: 30px;
  }
}
@media screen and (min-width: 960px) {
  .l-contents .l-about {
    padding: 50px 60px 60px 30px;
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}
.l-contents .l-about > * {
  position: relative;
  z-index: 1;
}
.l-contents .l-about::after {
  content: "";
  display: inline-block;
  width: 222px;
  aspect-ratio: 1/0.312;
  background: url(/images/img-bottom-city.svg) no-repeat top center/cover;
  position: absolute;
  bottom: 0;
  right: 15px;
}
@media screen and (min-width: 768px) {
  .l-contents .l-about::after {
    width: 330px;
    right: 60px;
  }
}
@media screen and (min-width: 960px) {
  .l-contents .l-about::after {
    right: 115px;
  }
}
@media screen and (min-width: 768px) {
  .l-contents .l-about__ttl {
    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;
    gap: 5px 10px;
  }
}
.l-contents .l-about__ttl .-sub {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: var(--font-m);
  padding: 1px 5px 3px;
  background: var(--color-sub3);
  color: #fff;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .l-contents .l-about__ttl .-sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-contents .l-about__ttl .-main {
  display: block;
  margin-top: 5px;
  color: var(--color-sub3);
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: var(--font-b);
}
@media screen and (min-width: 768px) {
  .l-contents .l-about__ttl .-main {
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-entry-modelDlBox {
    display: grid;
    grid-template-columns: 190px 1fr;
    grid-template-rows: 140px;
    gap: 40px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-entry-modelDlBox.-green dt {
  background: #A1D7CB;
}
.p-entry-modelDlBox dt {
  font-weight: var(--font-m);
  background: #CBEBF3;
  text-align: center;
  border-radius: 5px;
  padding: 2px 5px;
}
@media screen and (min-width: 768px) {
  .p-entry-modelDlBox dt {
    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;
    padding: 0;
    height: 100%;
    border-radius: 10px;
  }
}
.p-entry-modelDlBox dd {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-entry-modelDlBox dd {
    margin-top: 0;
  }
}

.p-summary__dlBox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}

.mt0 {
  margin-top: 0;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}