@charset "UTF-8";
/* Break point
---------------------------------------------------------- */
/* Font
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&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;
  background: none;
  padding: 0;
}

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;
}

button {
  text-align: left;
}

/* 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);
}

@-webkit-keyframes arrowAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes arrowAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes arrowAnime2 {
  0% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(10px);
            transform: scaleX(var(--arrow-scale)) translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(-10px);
            transform: scaleX(var(--arrow-scale)) translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
}
@keyframes arrowAnime2 {
  0% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(10px);
            transform: scaleX(var(--arrow-scale)) translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(-10px);
            transform: scaleX(var(--arrow-scale)) translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
}
/* ==========================================================================//
//
//　変数
//
// ========================================================================== */
:root {
  /* Color
  ---------------------------------------------------------- */
  --color-main: #111987;
  --color-sub: #D1D3ED;
  --color-sub2: #767BB9;
  --color-sub3: #EFF5EA;
  --color-sub4: #E4EDF9;
  --color-sub5: #BFDBFF;
  --color-line: #D9D9D9;
  --color-font: #272727;
  --color-fontsub: #989898;
  --color-link: #111987;
  --color-red: #EB3939;
  --color-switching:#20BA87;
  --color-noise:#997BC4;
  --label-color-new: #0066C6;
  --label-color-new2: #C6E4FF;
  --label-color-recommend: #4EBCE4;
  --label-color-recommend2: #C4F2FF;
  --label-color-deprecated: #FFA550;
  --label-color-deprecated2: #FFD7B2;
  --label-color-discontinued: #EB3939;
  --label-color-discontinued2: #FFD7C2;
  --label-color-massProduced: #6FC56F;
  --label-color-massProduced2: #D5FDBE;
  --label-color-endOfLife: #989898;
  --label-color-endOfLife2: #D9D9D9;
  /* font
  ---------------------------------------------------------- */
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Figtree", sans-serif;
  --font-no: "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: 1240px;
  --maxWidth2: 1040px;
  --sidePadding: 20px;
  --marginTop: 20px;
  --header: 50px;
  --arrow-scale: 1;
}
@media screen and (min-width: 768px) {
  :root {
    --sidePadding: 40px;
  }
}
@media screen and (min-width: 960px) {
  :root {
    --sidePadding: 80px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --marginTop: 40px;
  }
}
@media screen and (min-width: 960px) {
  :root {
    --header: 90px;
  }
}

/**
 * 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;
  }
}

sup.-under {
  vertical-align: bottom;
}

.c-inline-block {
  display: inline-block;
}

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

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

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

.c-colorBox {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .c-colorBox {
    padding: 30px;
  }
}

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

.c-note {
  padding-left: 1.2em;
  position: relative;
}
.c-note.-em2 {
  padding-left: 2.2em;
}
.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 !important;
}

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

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

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

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

.c-pageTop {
  --topBtn-bottom: 10px;
  display: none;
  position: fixed;
  bottom: var(--topBtn-bottom);
  right: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 666;
}
@media screen and (min-width: 960px) {
  .c-pageTop {
    display: block;
  }
}
@media screen and (min-width: 1300px) {
  .c-pageTop {
    right: 50px;
  }
}
.c-pageTop a {
  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: 50px;
  aspect-ratio: 1/1;
  background: var(--color-sub);
  color: var(--color-main);
  border-radius: 9999px;
}
.c-pageTop a .c-icon-svg {
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (min-width: 960px) {
  .c-pageTop a:hover {
    background: var(--color-main);
    color: #fff;
  }
}
.c-pageTop.-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-ttl-1 {
  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;
  justify-items: flex-start;
  gap: 5px;
}
.c-ttl-1 span {
  display: inline-block;
}
.c-ttl-1 .-en {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-ttl-1 .-en {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-ttl-1 .-main {
  display: inline-block;
  font-weight: var(--font-b);
  font-size: 24px;
  font-size: 1.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-ttl-1 .-main {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.c-ttl-1 .-main span {
  --secondDelay: 0.5s;
}
.c-ttl-1.-start p span {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-ttl-1.-start p span::before, .c-ttl-1.-start p span::after {
  width: 0;
}

.c-link-1 {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 5px;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: var(--font-m);
  line-height: var(--lhL);
}
.c-link-1 > .c-icon-svg {
  margin-bottom: 0.2em;
  width: 16px;
  height: 16px;
  background: var(--color-main);
  color: #fff;
  border-radius: 9999px;
  padding: 4.5px 0 4.5px 2px;
}
.c-link-1 span .c-icon-svg {
  width: 13px;
  height: 13px;
  margin-left: 0.2em;
}
@media screen and (min-width: 960px) {
  .c-link-1:hover > .c-icon-svg use {
    -webkit-animation: arrowAnime 0.7s forwards;
            animation: arrowAnime 0.7s forwards;
  }
}
.c-link-1.-white {
  color: #fff;
}
.c-link-1.-white .c-icon-svg {
  color: var(--color-main);
  background: #fff;
}
.c-link-1.-under .c-icon-svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-link-2 {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 5px;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: var(--font-m);
  text-decoration: underline;
}
.c-link-2 .c-icon-svg {
  margin-bottom: 0.2em;
  width: 15px;
  height: 15px;
}

.c-link-3 {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 5px;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: var(--font-m);
  text-decoration: underline;
}
.c-link-3 .c-icon-svg {
  margin-bottom: 0.3em;
  width: 18px;
  height: 18px;
  color: var(--color-sub2);
}

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

.c-linkList-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .c-linkList-1 {
    gap: 25px 40px;
  }
}
.c-linkList-1.-col1 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-iconLink-1 a {
  display: grid;
  grid-template-rows: auto auto;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  justify-items: center;
  gap: 20px;
  padding: 20px 20px;
  height: 100%;
  background: #E2EEFF;
  color: var(--color-main);
  border: 1px solid var(--color-main);
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .c-iconLink-1 a {
    -webkit-box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.25);
    padding: 20px 10px;
    gap: 30px;
  }
}
@media screen and (min-width: 960px) {
  .c-iconLink-1 a {
    padding: 40px 20px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}
.c-iconLink-1 a > .c-icon-svg {
  width: 75px;
  aspect-ratio: 1/0.8;
}
@media screen and (min-width: 768px) {
  .c-iconLink-1 a > .c-icon-svg {
    width: 90px;
  }
}
.c-iconLink-1 a .-ttl {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 5px;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: var(--font-m);
  line-height: var(--lhS);
}
.c-iconLink-1 a .-ttl > .c-icon-svg {
  margin-bottom: 0.2em;
  width: 16px;
  height: 16px;
  background: var(--color-main);
  color: #fff;
  border-radius: 9999px;
  padding: 4.5px 0 4.5px 2px;
}
@media screen and (min-width: 960px) {
  .c-iconLink-1 a:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translate(4px, 4px);
            transform: translate(4px, 4px);
  }
  .c-iconLink-1 a:hover .-ttl > .c-icon-svg use {
    -webkit-animation: arrowAnime 0.7s forwards;
            animation: arrowAnime 0.7s forwards;
  }
}
.c-iconLink-1__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-iconLink-1__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

.c-iconList-1 {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-top: 2px solid var(--color-sub2);
  border-bottom: 2px solid var(--color-sub2);
  background: var(--color-sub4);
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-iconList-1 {
    grid-template-columns: auto 1fr;
    padding: 0;
    gap: 0;
    justify-items: start;
  }
}
.c-iconList-1 + .c-iconList-1 {
  margin-top: 0;
  border-top: none;
}
.c-iconList-1 > .c-icon-svg {
  color: var(--color-main);
  width: 75px;
  aspect-ratio: 1/0.8;
}
@media screen and (min-width: 768px) {
  .c-iconList-1 > .c-icon-svg {
    width: 90px;
    margin: 0 40px;
  }
}
.c-iconList-1__contents {
  width: 100%;
  padding: 15px 10px 30px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .c-iconList-1__contents {
    padding: 40px;
  }
}
.c-iconList-1__ttl {
  padding: 0 10px 10px;
  border-bottom: 2px solid var(--color-sub);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: var(--font-m);
}
@media screen and (min-width: 768px) {
  .c-iconList-1__ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-iconList-1__ttl + * {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-iconList-1__ttl + * {
    margin-top: 30px;
  }
}

.c-txtBox-1 {
  border: 1px solid var(--color-line);
}
.c-txtBox-1__ttl {
  padding: 20px;
  background: var(--color-sub2);
  color: #fff;
  font-weight: var(--font-b);
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-txtBox-1__ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-txtBox-1__txt {
  padding: 20px;
}

.c-tips-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media screen and (min-width: 960px) {
  .c-tips-1 {
    grid-template-columns: auto 1fr;
    gap: 40px;
  }
}
.c-tips-1__ttl {
  display: inline-block;
  padding: 5px 10px;
  background: var(--color-sub4);
  border-radius: 5px;
  color: var(--color-main);
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-b);
  position: relative;
}
@media screen and (min-width: 960px) {
  .c-tips-1__ttl {
    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: 100px;
    aspect-ratio: 1/1;
    border-radius: 9999px;
  }
}
.c-tips-1__ttl::after {
  content: "";
  display: block;
  width: 10px;
  height: 8px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--color-sub4);
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .c-tips-1__ttl::after {
    width: 16px;
    height: 20px;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0% 100%);
            clip-path: polygon(0 0, 100% 50%, 0% 100%);
    top: 50px;
    left: calc(100% - 5px);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (min-width: 960px) {
  .c-tips-1__txt {
    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;
  }
}

.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: 20px 50px;
  }
  .c-grid.-auto {
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (min-width: 960px) {
  .c-grid {
    margin-top: 40px !important;
  }
}
@media screen and (min-width: 768px) {
  .c-grid.-col3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
  }
  .c-grid.-col3.-auto {
    grid-template-columns: repeat(3, auto);
  }
}
@media screen and (min-width: 768px) {
  .c-grid.-col4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
  }
  .c-grid.-col4.-auto {
    grid-template-columns: repeat(4, auto);
  }
}

.c-align-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-align-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-align-stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.c-justify-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-justify-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-justify-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-list-1 + * {
  margin-top: var(--marginTop);
}
.c-list-1 > li > ul {
  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 + 1.5px);
  left: 5px;
}

.c-tab-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .c-tab-1 {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 960px) {
  .c-tab-1 {
    grid-template-columns: repeat(auto-fill, minmax(0, auto));
    position: relative;
  }
  .c-tab-1::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background: var(--color-sub);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.c-tab-1 li {
  text-align: center;
  line-height: var(--lhM);
  position: relative;
}
.c-tab-1 li p, .c-tab-1 li a, .c-tab-1 li button {
  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: 100%;
  height: 100%;
  text-align: center;
  padding: 5px 10px;
  font-weight: var(--font-m);
  border-left: 1px solid var(--color-sub);
  border-bottom: 1px solid var(--color-sub);
  color: var(--color-font);
  line-height: var(--lhM);
}
@media screen and (min-width: 960px) {
  .c-tab-1 li p, .c-tab-1 li a, .c-tab-1 li button {
    padding: 10px 20px;
    border: none;
  }
  .c-tab-1 li p:hover, .c-tab-1 li a:hover, .c-tab-1 li button:hover {
    background: var(--color-sub);
  }
}
.c-tab-1 li p.-current, .c-tab-1 li a.-current, .c-tab-1 li button.-current {
  background: var(--color-main);
  color: #fff;
  font-weight: var(--font-b);
}
.c-tab-1 li:first-child a, .c-tab-1 li:first-child button, .c-tab-1 li:nth-child(2) a, .c-tab-1 li:nth-child(2) button {
  border-top: 1px solid var(--color-sub);
}
@media screen and (min-width: 960px) {
  .c-tab-1 li:first-child a, .c-tab-1 li:first-child button, .c-tab-1 li:nth-child(2) a, .c-tab-1 li:nth-child(2) button {
    border-top: none;
  }
}
@media screen and (min-width: 768px) {
  .c-tab-1 li:nth-child(3) a, .c-tab-1 li:nth-child(3) button {
    border-top: 1px solid var(--color-sub);
  }
}
@media screen and (min-width: 768px) and (min-width: 960px) {
  .c-tab-1 li:nth-child(3) a, .c-tab-1 li:nth-child(3) button {
    border-top: none;
  }
}
.c-tab-1 li:nth-child(even) a, .c-tab-1 li:nth-child(even) button, .c-tab-1 li:last-child a, .c-tab-1 li:last-child button {
  border-right: 1px solid var(--color-sub);
}
@media screen and (min-width: 768px) {
  .c-tab-1 li:nth-child(even) a, .c-tab-1 li:nth-child(even) button, .c-tab-1 li:last-child a, .c-tab-1 li:last-child button {
    border-right: none;
  }
}
@media screen and (min-width: 768px) {
  .c-tab-1 li:nth-child(3n) a, .c-tab-1 li:nth-child(3n) button, .c-tab-1 li:last-child a, .c-tab-1 li:last-child button {
    border-right: 1px solid var(--color-sub);
  }
}
@media screen and (min-width: 768px) and (min-width: 960px) {
  .c-tab-1 li:nth-child(3n) a, .c-tab-1 li:nth-child(3n) button, .c-tab-1 li:last-child a, .c-tab-1 li:last-child button {
    border-right: none;
  }
}

.c-tabContent-1 {
  margin-top: var(--marginTop);
}
.c-tabContent-1 > * + * {
  margin-top: var(--marginTop);
}

.js-tabContent {
  display: none;
}

.c-dlBox {
  --dtWidth: 20%;
  border-top: 1px solid var(--color-sub2);
}
@media screen and (min-width: 768px) {
  .c-dlBox {
    border-bottom: 1px solid var(--color-sub2);
    display: grid;
    grid-template-columns: var(--dtWidth) 1fr;
    gap: 40px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.c-dlBox + .c-dlBox {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-dlBox + .c-dlBox {
    border-top: none;
    margin-top: 0;
  }
}
.c-dlBox dt {
  padding: 10px;
  background: var(--color-sub4);
  font-weight: var(--font-m);
}
@media screen and (min-width: 768px) {
  .c-dlBox 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;
    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 {
    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;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 20px 20px 0;
  }
}
@media screen and (min-width: 960px) {
  .c-dlBox dd {
    padding: 20px 30px 20px 0;
  }
}

.c-table-1 {
  border-collapse: collapse;
  border-spacing: 0;
}
.c-table-1.-scroll {
  overflow: auto;
}
.c-table-1.-scroll table {
  min-width: 500px;
}
.c-table-1.-width100 table {
  width: 100%;
}
.c-table-1 table {
  border: 1px solid var(--color-sub);
}
.c-table-1 thead tr + tr {
  border-top: 1px solid #fff;
}
.c-table-1 thead tr th {
  background: var(--color-main);
  color: #fff;
}
.c-table-1 thead tr th:not(:last-child) {
  border-right: 1px solid #fff;
}
.c-table-1 tbody tr:not(:first-child) td {
  border-top: 1px solid var(--color-sub);
}
.c-table-1 tbody tr:not(:first-child) th {
  border-top: 1px solid #fff;
}
.c-table-1 th, .c-table-1 td {
  padding: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-table-1 th, .c-table-1 td {
    padding: 15px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-table-1 th {
  background: var(--color-sub);
  font-weight: var(--font-m);
}
.c-table-1 th:not(:last-child) {
  border-right: 1px solid #fff;
}
.c-table-1 td {
  background: #fff;
}
.c-table-1 td:not(:last-child) {
  border-right: 1px solid var(--color-sub);
}
.c-table-1 td.-blue {
  background: var(--color-sub4);
}
.c-table-1 .-bt-main {
  border-top: 1px solid var(--color-sub) !important;
}
.c-table-1 .-bl-main {
  border-left: 1px solid var(--color-sub) !important;
}
.c-table-1 .-br-main {
  border-right: 1px solid var(--color-sub) !important;
}
.c-table-1 .-bb-main {
  border-bottom: 1px solid var(--color-sub) !important;
}
.c-table-1 .-bt-sub {
  border-top: 1px solid #fff !important;
}
.c-table-1 .-bl-sub {
  border-left: 1px solid #fff !important;
}
.c-table-1 .-br-sub {
  border-right: 1px solid #fff !important;
}
.c-table-1 .-bb-sub {
  border-bottom: 1px solid #fff !important;
}
.c-table-1.-tableSmall th, .c-table-1.-tableSmall td {
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .c-table-1.-tableSmall th, .c-table-1.-tableSmall td {
    padding: 5px;
  }
}

table.c-table-border tbody tr:nth-child(even) {
  background: #F6F6F6;
}
table.c-table-border tbody tr:nth-child(even) td {
  background: none;
}

.c-table-2 {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-table-2 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-table-2.-scroll {
  overflow: auto;
}
.c-table-2.-scroll table {
  width: 100%;
  min-width: 800px;
}
.c-table-2.-width100 table {
  width: 100%;
}
.c-table-2 th {
  padding: 5px;
  font-weight: var(--font-r);
}
@media screen and (min-width: 768px) {
  .c-table-2 th {
    padding: 10px 5px;
  }
}
.c-table-2 td {
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .c-table-2 td {
    padding: 15px 10px;
  }
}
.c-table-2 td a:not([class]) {
  color: var(--color-main);
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .c-table-2 td a:not([class]):hover {
    text-decoration: none;
  }
}
.c-table-2 td .c-icon-svg.-rent {
  width: 18px;
  height: 18px;
}
.c-table-2 td.-cooling .-ico {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-table-2 td.-cooling .-ico:not(:only-child):not(:last-child) {
  margin-right: 20px;
}
.c-table-2 td.-cooling .-ico .c-icon-svg {
  width: 23px;
  height: 23px;
  color: #4B4B4B;
}
.c-table-2 tr {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.c-table-2 tr th, .c-table-2 tr td {
  text-align: center;
}
.c-table-2 tr th:not(:first-child), .c-table-2 tr td:not(:first-child) {
  border-left: 1px solid var(--color-line);
}
.c-table-2 thead tr th {
  background: #FAFAFA;
}
.c-table-2 tbody tr:nth-child(even) {
  background: #E4EDF9;
}

.c-table-3 {
  border-collapse: collapse;
  border-spacing: 0;
}
.c-table-3.-scroll {
  overflow: auto;
}
.c-table-3.-scroll table {
  min-width: 800px;
}
.c-table-3 table {
  border: 1px solid var(--color-sub);
  text-align: center;
}
@media screen and (min-width: 960px) {
  .c-table-3 table {
    width: 100%;
  }
}
.c-table-3 thead tr + tr {
  border-top: 1px solid #fff;
}
.c-table-3 thead tr th {
  background: var(--color-main);
  color: #fff;
}
.c-table-3 thead tr th:not(:first-child) {
  border-right: 1px solid #fff;
}
.c-table-3 tbody tr:not(:first-child) td {
  border-top: 1px solid var(--color-sub);
}
.c-table-3 tbody tr:not(:first-child) th {
  border-top: 1px solid #fff;
}
.c-table-3 tbody tr:nth-child(even) {
  background: #F2F2FA;
}
.c-table-3 th, .c-table-3 td {
  padding: 10px;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-table-3 th, .c-table-3 td {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-table-3 th {
  background: var(--color-sub);
  font-weight: var(--font-m);
  border-left: 1px solid #fff;
}
.c-table-3 td {
  border-left: 1px solid var(--color-sub);
}
.c-table-3 .-bt-main {
  border-top: 1px solid var(--color-sub);
}
.c-table-3 .-bl-main {
  border-left: 1px solid var(--color-sub);
}
.c-table-3 .-br-main {
  border-right: 1px solid var(--color-sub);
}
.c-table-3 .-bb-main {
  border-bottom: 1px solid var(--color-sub);
}
.c-table-3 .-bt-sub {
  border-top: 1px solid #fff;
}
.c-table-3 .-bl-sub {
  border-left: 1px solid #fff;
}
.c-table-3 .-br-sub {
  border-right: 1px solid #fff;
}
.c-table-3 .-bb-sub {
  border-bottom: 1px solid #fff;
}

.c-img-1.c-taL img {
  margin-left: 0;
  margin-right: auto;
}
.c-img-1.c-taR img {
  margin-left: auto;
  margin-right: 0;
}
.c-img-1 img {
  margin: 0 auto;
  max-width: 100%;
  width: auto;
  height: auto;
}
.c-img-1 figcaption {
  text-align: center;
  font-size: 11px;
  font-size: 0.6875rem;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-img-1 figcaption {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

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

.c-movie {
  aspect-ratio: 16/9;
}
.c-movie iframe {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.c-movie a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.c-movie a .c-icon-svg {
  width: 13px;
  height: 13px;
  color: var(--color-main);
  position: absolute;
  top: 50%;
  left: calc(50% + 2px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-movie a::before {
  content: "";
  width: 40px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 9999px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 960px) {
  .c-movie a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .c-movie a:hover {
    opacity: 0.7;
  }
}
.c-movie img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-btn-1 {
  text-align: center;
}
.c-btn-1 a, .c-btn-1 button {
  display: inline-grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  min-width: 160px;
  padding: 15px 20px;
  background: var(--color-main);
  color: #fff;
  border-radius: 9999px;
  font-weight: var(--font-b);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-btn-1 a, .c-btn-1 button {
    min-width: 200px;
  }
}
.c-btn-1 a > .c-icon-svg, .c-btn-1 button > .c-icon-svg {
  width: 11px;
  height: 11px;
}
@media screen and (min-width: 960px) {
  .c-btn-1 a:hover > .c-icon-svg, .c-btn-1 button:hover > .c-icon-svg {
    -webkit-animation: arrowAnime2 0.7s forwards;
            animation: arrowAnime2 0.7s forwards;
  }
}
.c-btn-1 a span .c-icon-svg, .c-btn-1 button span .c-icon-svg {
  width: 17px;
  height: 17px;
  margin-right: 5px;
  vertical-align: text-top;
}
.c-btn-1.-white a, .c-btn-1.-white button {
  background: #fff;
  color: var(--color-main);
}
.c-btn-1.-prev a .c-icon-svg, .c-btn-1.-prev button .c-icon-svg {
  --arrow-scale: -1;
  -webkit-transform: scaleX(var(--arrow-scale));
          transform: scaleX(var(--arrow-scale));
}
.c-btn-1.-disabled a, .c-btn-1.-disabled button {
  background: #D7D7D7;
  color: #929292;
  cursor: not-allowed;
  pointer-events: none;
}
.c-btn-1.-disabled a .c-icon-svg, .c-btn-1.-disabled button .c-icon-svg {
  fill: #929292;
}

.c-btn-2 a, .c-btn-2 button {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 10px;
  -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: 15px 20px;
  background: var(--color-sub4);
  border: 1px solid var(--color-main);
}
.c-btn-2 a .c-icon-svg, .c-btn-2 button .c-icon-svg {
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 960px) {
  .c-btn-2 a:hover, .c-btn-2 button:hover {
    background: var(--color-main);
    color: #fff;
  }
}

.c-initialBtn {
  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;
  aspect-ratio: 1/1;
  width: 50px;
  border: 1px solid var(--color-line);
  color: var(--color-main);
  font-size: 18px;
  font-size: 1.125rem;
  font-family: var(--font-en);
  font-weight: var(--font-m);
}
@media screen and (min-width: 768px) {
  .c-initialBtn {
    width: 60px;
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 960px) {
  .c-initialBtn:hover {
    background: var(--color-sub4);
    border-color: var(--color-main);
  }
}
.c-initialBtn__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.js-modal-contents {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.js-modal-contents.-active {
  opacity: 1;
  visibility: visible;
}

.modaal-wrapper {
  z-index: 99999;
}

.modaal-overlay {
  z-index: 9999;
}

.modaal-close:hover::before, .modaal-close:hover::after {
  background: var(--color-main);
}

.modaal-video-wrap {
  margin: auto 0;
}
@media screen and (min-width: 768px) {
  .modaal-video-wrap {
    margin: auto 50px;
  }
}

.c-select-1 {
  display: inline-block;
  position: relative;
}
.c-select-1::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(/assets/img/ico-arrow-blue.svg) no-repeat center center/cover;
  position: absolute;
  top: calc(50% - 0.4em);
  right: 15px;
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
  pointer-events: none;
}
.c-select-1 select {
  min-width: 200px;
  border: 1px solid var(--color-fontsub);
  padding: 15px 30px 15px 15px;
  background: #fff;
  border-radius: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.c-select-1 select:focus {
  border-color: var(--color-main);
}
.c-select-1:has(select:focus)::after {
  -webkit-transform: rotate(90deg) translateY(-50%) scaleX(-1);
          transform: rotate(90deg) translateY(-50%) scaleX(-1);
}

.c-radio input[type=radio] {
  display: none;
}
.c-radio label {
  padding-left: 1.5em;
  position: relative;
}
.c-radio label::before, .c-radio label::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-radio label::before {
  width: 1em;
  outline: 1px solid var(--color-main);
  background: #fff;
  left: 0;
}
.c-radio label::after {
  width: 0.6em;
  background: var(--color-main);
  opacity: 0;
  left: 0.2em;
}
.c-radio label:has(input[type=radio]:checked)::after {
  opacity: 1;
}

.c-breadcrumb {
  padding: 10px var(--sidePadding);
}
.c-breadcrumb__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px;
  -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;
  font-size: 11px;
  font-size: 0.6875rem;
  color: var(--color-main);
  max-width: var(--maxWidth2);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__list {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.c-breadcrumb__list li + li {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-breadcrumb__list li + li::before {
  content: "";
  display: inline-block;
  width: 5px;
  aspect-ratio: 1/1;
  border-top: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  vertical-align: middle;
  margin: 0 3px 3px 0;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__list li + li::before {
    width: 6px;
    margin: 0 3px 0 0;
  }
}
.c-breadcrumb__list li a {
  color: #787878;
}
@media screen and (min-width: 960px) {
  .c-breadcrumb__list li a:hover {
    text-decoration: underline;
  }
}

.c-pagination {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  -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;
}
@media screen and (min-width: 768px) {
  .c-pagination {
    grid-template-columns: auto auto auto;
    gap: 20px;
  }
}
.c-pagination__btn {
  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: 20px;
  height: 20px;
  color: var(--color-fontsub);
}
.c-pagination__btn .c-icon-svg {
  width: 12px;
  height: 12px;
}
.c-pagination__btn a {
  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: 100%;
  height: 100%;
  color: var(--color-main);
}
@media screen and (min-width: 960px) {
  .c-pagination__btn a:hover {
    color: var(--color-sub2);
  }
}
.c-pagination__btn.-prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.c-pagination__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.c-pagination__list li {
  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: 35px;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 9999px;
}
.c-pagination__list li.-current {
  background: #fff;
  color: var(--color-main);
  border: 1px solid var(--color-line);
}
.c-pagination__list li a {
  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: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  font-weight: var(--font-m);
  color: var(--color-font);
}
@media screen and (min-width: 960px) {
  .c-pagination__list li a:hover {
    background: #fff;
  }
}

.c-news__item {
  padding: 15px 0;
  line-height: var(--lhL);
}
.c-news__item + .c-news__item {
  border-top: 1px solid var(--color-line);
}
.c-news__item .-ttl {
  font-weight: var(--font-m);
}
.c-news__item a:not(.-sub a) {
  display: block;
  padding-right: 20px;
  color: var(--color-font);
  position: relative;
}
.c-news__item a:not(.-sub a)::after {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  background: url(/assets/img/ico-arrow-blue.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-news__item a:not(.-sub a)[href$=".pdf"] .-ttl {
  padding-left: 25px;
  position: relative;
}
.c-news__item a:not(.-sub a)[href$=".pdf"] .-ttl::before {
  content: "";
  display: inline-block;
  background: url(/assets/img/ico-pdf.svg) no-repeat center center/cover;
  width: 20px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .c-news__item a:not(.-sub a) {
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
  }
  .c-news__item a:not(.-sub a):hover {
    opacity: 0.6;
  }
  .c-news__item a:not(.-sub a):hover::after {
    -webkit-animation: newsArrowAnime 0.7s forwards;
            animation: newsArrowAnime 0.7s forwards;
  }
  @-webkit-keyframes newsArrowAnime {
    0% {
      right: 0;
      opacity: 1;
    }
    50% {
      right: -10px;
      opacity: 0;
    }
    51% {
      right: 10px;
      opacity: 0;
    }
    100% {
      right: 0;
      opacity: 1;
    }
  }
  @keyframes newsArrowAnime {
    0% {
      right: 0;
      opacity: 1;
    }
    50% {
      right: -10px;
      opacity: 0;
    }
    51% {
      right: 10px;
      opacity: 0;
    }
    100% {
      right: 0;
      opacity: 1;
    }
  }
}
.c-news__item .-detail .-data {
  color: #787878;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-news__item .-detail .-data {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-news__item .-detail .-category {
  margin-left: 10px;
  padding: 3px 5px;
  font-size: 10px;
  font-size: 0.625rem;
  background: var(--color-sub2);
  color: #fff;
  font-weight: var(--font-b);
}
@media screen and (min-width: 768px) {
  .c-news__item .-detail .-category {
    font-size: 12px;
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}
.c-news__item .-ttl {
  margin-top: 5px;
}
.c-news__item .-sub {
  margin-top: 10px;
  font-size: 0.9em;
}
.c-news__item .-sub a {
  text-decoration: underline;
  font-weight: var(--font-m);
}
@media screen and (min-width: 960px) {
  .c-news__item .-sub a:hover {
    text-decoration: none;
  }
}

.c-faq__link + .c-faq__link {
  border-top: 1px solid var(--color-line);
  margin-top: 0;
}
.c-faq__link a {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .c-faq__link a {
    padding: 20px 0 20px 15px;
  }
}
.c-faq__link a .c-icon-svg {
  width: 12px;
  height: 12px;
}
.c-faq__link a .-txt {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .c-faq__link a .-txt {
    gap: 10px 30px;
  }
}
.c-faq__link a .-txt::before {
  content: "Q";
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  aspect-ratio: 1/1;
  font-family: var(--font-en);
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: var(--font-b);
  color: var(--color-main);
  background: var(--color-sub);
  border-radius: 9999px;
  grid-row: 1/3;
}
@media screen and (min-width: 768px) {
  .c-faq__link a .-txt::before {
    width: 50px;
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.c-faq__link a .-txt > span {
  color: var(--color-font);
  font-weight: var(--font-m);
}
.c-faq__link a .-tagList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px 10px;
}
.c-faq__link a .-tagList li {
  padding: 2px 3px 0px;
  background: #eee;
  color: var(--color-main);
  border-radius: 3px;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-faq__link a .-tagList li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 960px) {
  .c-faq__link a:hover > .c-icon-svg {
    -webkit-animation: arrowAnime2 0.7s forwards;
            animation: arrowAnime2 0.7s forwards;
  }
}
@media screen and (min-width: 960px) {
  .c-faq__link a {
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
  }
  .c-faq__link a:hover {
    opacity: 0.6;
  }
}
.c-faq__content__q, .c-faq__content__a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .c-faq__content__q, .c-faq__content__a {
    gap: 10px 30px;
    padding: 30px 0 30px 15px;
  }
}
.c-faq__content__q::before, .c-faq__content__a::before {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  aspect-ratio: 1/1;
  font-size: 17px;
  font-size: 1.0625rem;
  font-family: var(--font-en);
  font-weight: var(--font-b);
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .c-faq__content__q::before, .c-faq__content__a::before {
    width: 50px;
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.c-faq__content__q {
  font-weight: var(--font-b);
}
.c-faq__content__q::before {
  content: "Q";
  background: var(--color-sub);
  color: var(--color-main);
}
.c-faq__content__a {
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  border-top: 1px solid var(--color-line);
}
.c-faq__content__a > * + * {
  margin-top: var(--marginTop);
}
.c-faq__content__a::before {
  content: "A";
  background: #FFCECE;
  color: #EB3939;
}
.c-faq__toggle + .c-faq__toggle {
  border-top: 1px solid var(--color-line);
  margin-top: 0;
}
.c-faq__toggle__q, .c-faq__toggle__a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 15px 0 15px 10px;
}
@media screen and (min-width: 768px) {
  .c-faq__toggle__q, .c-faq__toggle__a {
    gap: 10px 30px;
    padding: 30px 0 30px 15px;
  }
}
.c-faq__toggle__q::before, .c-faq__toggle__a::before {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  aspect-ratio: 1/1;
  font-size: 17px;
  font-size: 1.0625rem;
  font-family: var(--font-en);
  font-weight: var(--font-b);
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .c-faq__toggle__q::before, .c-faq__toggle__a::before {
    width: 50px;
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.c-faq__toggle__q {
  width: 100%;
  color: var(--color-font);
  grid-template-columns: auto 1fr auto;
}
.c-faq__toggle__q .c-icon-svg {
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: var(--color-main);
}
.c-faq__toggle__q::before {
  content: "Q";
  background: var(--color-sub);
  color: var(--color-main);
}
.c-faq__toggle__q.-active .c-icon-svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (min-width: 960px) {
  .c-faq__toggle__q {
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
  }
  .c-faq__toggle__q:hover {
    opacity: 0.6;
  }
}
.c-faq__toggle__a {
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  background: #F6F6F6;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .c-faq__toggle__a {
    padding-right: 20px;
  }
}
.c-faq__toggle__a > * + * {
  margin-top: var(--marginTop);
}
.c-faq__toggle__a::before {
  content: "A";
  background: #FFCECE;
  color: #EB3939;
}
.c-faq__feedback {
  text-align: center;
  background: var(--color-sub5);
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .c-faq__feedback {
    display: grid;
    grid-template-columns: auto auto;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    padding: 40px;
  }
}
.c-faq__feedback__ttl {
  display: inline-block;
  text-align: center;
  padding: 3px 5px 2px;
  background: var(--color-main);
  color: #fff;
  font-weight: var(--font-b);
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .c-faq__feedback__ttl {
    padding: 3px 8px 2px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-faq__feedback__txt {
  margin-top: 10px;
  font-weight: var(--font-b);
  font-size: 16px;
  font-size: 1rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-faq__feedback__txt {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-faq__feedback__btns {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-faq__feedback__btns {
    margin-top: 0;
  }
}
@media screen and (min-width: 960px) {
  .c-faq__feedback__btns form {
    display: grid;
    grid-template-columns: repeat(2, 248px);
    gap: 30px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-faq__feedback__btns button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  -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;
  width: 100%;
  max-width: 240px;
  background: #fff;
  color: var(--color-main);
  padding: 10px 20px;
  font-weight: var(--font-b);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-faq__feedback__btns button {
    padding: 20px 30px;
    gap: 20px;
    max-width: 250px;
  }
}
@media screen and (min-width: 960px) {
  .c-faq__feedback__btns button {
    max-width: none;
  }
  .c-faq__feedback__btns button:hover {
    background: var(--color-main);
    color: #fff;
  }
}
.c-faq__feedback__btns button .c-icon-svg {
  width: 30px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .c-faq__feedback__btns button .c-icon-svg {
    width: 40px;
  }
}
.c-faq__feedback__btns button + button {
  margin-top: 10px;
}
@media screen and (min-width: 960px) {
  .c-faq__feedback__btns button + button {
    margin-top: 0;
  }
}
.c-faq__feedback.-after {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-faq__feedback.-after {
    display: block;
    text-align: center;
  }
}
.c-faq__feedback.-after .c-faq__feedback__txt2 {
  text-align: left;
}
.c-faq__feedback.-after .c-faq__feedback__txtForm {
  margin-top: 20px;
}
.c-faq__feedback.-after .c-faq__feedback__txtForm textarea {
  padding: 15px;
  width: 100%;
  min-height: 120px;
  border-radius: 5px;
  border: 1px solid var(--color-fontsub);
  background: #fff;
}
.c-faq__feedback.-after .c-faq__feedback__txtForm textarea:focus {
  border-color: var(--color-main);
}
.c-faq__feedback.-after .c-faq__feedback__txtForm .c-btn-1 {
  margin-top: 15px;
}
.c-faq__feedback.-after .-note {
  margin-top: 20px;
  color: var(--color-main);
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  .c-faq__feedback.-after .-note {
    display: inline-block;
    text-align: left;
  }
}

.c-contact-1 {
  padding: 25px 20px;
  background: #F3F3F3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-contact-1 {
    padding: 50px;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .c-contact-1__inner {
    display: grid;
    grid-template-columns: 1fr 50%;
    gap: 0 20px;
  }
}
@media screen and (min-width: 960px) {
  .c-contact-1__inner {
    grid-template-columns: 1fr minmax(400px, auto);
  }
}
.c-contact-1__ttl {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  gap: 5px;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .c-contact-1__ttl {
    grid-row: 1/900;
  }
}
.c-contact-1__ttl .-en {
  font-family: var(--font-en);
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-contact-1__ttl .-en {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-contact-1__ttl .-main {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: var(--font-b);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-contact-1__ttl .-main {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
.c-contact-1__box {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .c-contact-1__box {
    padding: 0;
    max-width: 550px;
  }
}
.c-contact-1__box + .c-contact-1__box {
  border-top: 2px solid var(--color-line);
}
@media screen and (min-width: 768px) {
  .c-contact-1__box + .c-contact-1__box {
    padding-top: 25px;
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  .c-contact-1__box .c-btn-1 {
    text-align: left;
  }
}
@media screen and (min-width: 960px) {
  .c-contact-1__box .c-btn-1 a {
    padding: 15px 35px 15px 40px;
    min-width: 360px;
  }
}
.c-contact-1__itemTtl {
  display: grid;
  grid-template-columns: auto auto;
  -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: 5px;
}
@media screen and (min-width: 768px) {
  .c-contact-1__itemTtl {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px;
  }
}
.c-contact-1__itemTtl .c-icon-svg {
  width: 18px;
  aspect-ratio: 1/1;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .c-contact-1__itemTtl .c-icon-svg {
    width: 25px;
  }
}
.c-contact-1__itemTtl span {
  font-weight: var(--font-b);
}
.c-contact-1__itemTtl + * {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .c-contact-1__itemTtl + * {
    margin-top: 10px;
  }
}
.c-contact-1__tel {
  font-family: var(--font-en);
  font-size: 31px;
  font-size: 1.9375rem;
  font-weight: var(--font-b);
  color: var(--color-main);
  text-decoration: none !important;
}
@media screen and (min-width: 768px) {
  .c-contact-1__tel {
    display: inline-block;
    font-size: 34px;
    font-size: 2.125rem;
    color: var(--color-main) !important;
    margin-right: 20px;
  }
}
.c-contact-1__tel__subTxt {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: var(--lhM) !important;
}
@media screen and (min-width: 768px) {
  .c-contact-1__tel__subTxt {
    font-size: 14px;
    font-size: 0.875rem;
    display: inline-block;
  }
}

.c-flow-1__item {
  border-radius: 10px;
  border: 1px solid var(--color-fontsub);
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .c-flow-1__item {
    padding-bottom: 40px;
  }
}
.c-flow-1__item > *:not(.c-flow-1__ttl) {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .c-flow-1__item > *:not(.c-flow-1__ttl) {
    padding: 0 30px;
  }
}
.c-flow-1__item + .c-flow-1__item {
  margin-top: 50px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-flow-1__item + .c-flow-1__item {
    margin-top: 55px;
  }
}
.c-flow-1__item + .c-flow-1__item::before {
  content: "";
  display: block;
  width: 40px;
  height: 22px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--color-main);
  position: absolute;
  top: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-flow-1__item + .c-flow-1__item::before {
    top: -39px;
  }
}
.c-flow-1__imgAndTxt {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  -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;
}
@media screen and (min-width: 768px) {
  .c-flow-1__imgAndTxt {
    grid-template-columns: 30% 1fr;
  }
}
.c-flow-1__ttl {
  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;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background: var(--color-sub4);
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-main);
  font-weight: var(--font-b);
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .c-flow-1__ttl {
    font-size: 20px;
    font-size: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding: 20px 30px;
    margin-bottom: 40px;
  }
}
.c-flow-1__txt > * + * {
  margin-top: var(--marginTop);
}

.c-checkbox-1 {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
.c-checkbox-1 input[type=checkbox] {
  display: none;
}
.c-checkbox-1 input[type=checkbox]:checked + label::after {
  content: "";
}
.c-checkbox-1 label {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 8px;
  position: relative;
}
.c-checkbox-1 label::before {
  content: "";
  display: inline-block;
  width: 18px;
  aspect-ratio: 1/1;
  border: 1px solid var(--color-line);
  background: #fff;
}
.c-checkbox-1 label::after {
  display: block;
  width: 7px;
  height: 10px;
  border-right: 3px solid var(--color-main);
  border-bottom: 3px solid var(--color-main);
  position: absolute;
  top: 8px;
  left: 6px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.c-checkbox-1__number {
  display: none;
}
@media screen and (min-width: 960px) {
  .c-checkbox-1__number {
    display: inline-block;
    margin-left: 10px;
    color: var(--color-fontsub);
  }
}

.c-form-1 {
  display: block;
  position: relative;
  max-width: 350px;
}
.c-form-1 input {
  width: 100%;
  padding: 10px 60px 10px 10px;
  min-height: 50px;
  border: 1px solid var(--color-line);
  border-radius: 3px;
  background: #fff;
}
@media screen and (min-width: 960px) {
  .c-form-1 input {
    height: 100%;
    min-height: 35px;
    padding-right: 40px;
  }
}
.c-form-1 input::-webkit-input-placeholder {
  color: #787878;
  font-weight: var(--font-l);
}
.c-form-1 input::-moz-placeholder {
  color: #787878;
  font-weight: var(--font-l);
}
.c-form-1 input:-ms-input-placeholder {
  color: #787878;
  font-weight: var(--font-l);
}
.c-form-1 input::-ms-input-placeholder {
  color: #787878;
  font-weight: var(--font-l);
}
.c-form-1 input::placeholder {
  color: #787878;
  font-weight: var(--font-l);
}
.c-form-1 input:focus {
  border-color: var(--color-main);
}
.c-form-1.-noBtn input {
  padding: 10px;
}
@media screen and (min-width: 960px) {
  .c-form-1.-noBtn input {
    padding: 10px;
  }
}
.c-form-1__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 100%;
  background: var(--color-main);
  border-radius: 0 3px 3px 0;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 960px) {
  .c-form-1__btn {
    width: auto;
    padding: 5px 10px;
    background: none;
    color: var(--color-main);
  }
  .c-form-1__btn:hover {
    opacity: 0.7;
  }
}
.c-form-1__btn .c-icon-svg {
  width: 17px;
  height: 17px;
}
.c-form-1__outer {
  background: var(--color-sub5);
  padding: 20px 15px;
}
@media screen and (min-width: 768px) {
  .c-form-1__outer {
    padding: 40px 20px;
  }
}
.c-form-1__outer .-spTxt {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .c-form-1__outer .-spTxt {
    display: none;
  }
}
.c-form-1__outer .c-form-1 {
  max-width: 800px;
  margin: 0 auto;
}
.c-form-1__outer .c-form-1 input {
  border-color: var(--color-fontsub);
}
.c-form-1.-text {
  max-width: none;
  width: 100%;
}
.c-form-1.-text textarea {
  display: block;
  width: 100%;
  padding: 10px;
  min-height: 80px;
  border: 1px solid var(--color-line);
  border-radius: 3px;
  background: #fff;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .c-form-1.-text textarea {
    min-height: 120px;
  }
}
.c-form-1.-text textarea:focus {
  border-color: var(--color-main);
}

.c-status-1 {
  display: inline-grid;
  grid-template-columns: auto auto;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 3px;
}
.c-status-1::before {
  content: "";
  display: inline-block;
  width: 11px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  margin-top: 0.3em;
}
.c-status-1.-new::before {
  background: var(--label-color-new);
}
.c-status-1.-recommended::before {
  background: var(--label-color-recommend);
}
.c-status-1.-deprecated::before {
  background: var(--label-color-deprecated);
}
.c-status-1.-discontinued::before {
  background: var(--label-color-discontinued);
}
.c-status-1.-massProduced::before {
  background: var(--label-color-massProduced);
}
.c-status-1.-endOfLife::before {
  background: var(--label-color-endOfLife);
}
.c-status-1__outer {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-floatingBtn {
  position: fixed;
  right: 0;
  bottom: 90px;
  z-index: 555;
}
@media screen and (min-width: 960px) {
  .c-floatingBtn {
    display: grid;
    grid-template-columns: auto;
    justify-items: end;
    bottom: auto;
    top: 30vh;
  }
}
.c-floatingBtn a {
  display: grid;
  grid-template-columns: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-sub);
  color: var(--color-main);
  padding: 10px;
  border: 1px solid #fff;
  border-right: none;
  border-radius: 5px 0 0 5px;
}
@media screen and (min-width: 960px) {
  .c-floatingBtn a {
    gap: 10px;
    padding: 20px 15px;
    border-radius: 10px 0 0 10px;
    -webkit-transition: padding-right 0.2s;
    transition: padding-right 0.2s;
  }
  .c-floatingBtn a:hover {
    padding-right: 25px;
  }
}
.c-floatingBtn a + a {
  margin-top: 5px;
}
@media screen and (min-width: 960px) {
  .c-floatingBtn a + a {
    margin-top: 10px;
  }
}
.c-floatingBtn a .c-icon-svg {
  width: 15px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 960px) {
  .c-floatingBtn a .c-icon-svg {
    width: 18px;
  }
}
.c-floatingBtn a span {
  display: none;
}
@media screen and (min-width: 960px) {
  .c-floatingBtn a span {
    display: block;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    line-height: 1;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

html {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: var(--color-font);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header);
}

body {
  min-height: calc(100vh - var(--header));
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: var(--font-r);
  letter-spacing: 0.36px;
  position: relative;
}
@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;
  color: var(--color-link);
}

.l-cookie-bnr {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-cookie-bnr {
    max-width: 400px;
  }
}
.l-cookie-bnr__inner {
  background: #F6F6F6;
  padding: 30px 10px 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-cookie-bnr__inner {
    padding: 30px 20px;
  }
}
.l-cookie-bnr__txt {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .l-cookie-bnr__txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-cookie-bnr__btn.-close {
  display: block;
  width: 10px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 10px;
  right: 10px;
}
@media screen and (min-width: 960px) {
  .l-cookie-bnr__btn.-close {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    -webkit-transition: none;
    transition: none;
  }
  .l-cookie-bnr__btn.-close:hover {
    opacity: 0.7;
  }
}
.l-cookie-bnr__btn.-close::before, .l-cookie-bnr__btn.-close::after {
  content: "";
  display: block;
  height: 1px;
  width: 10px;
  background: var(--color-font);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
}
.l-cookie-bnr__btn.-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.l-cookie-bnr__btn.-primary {
  display: block;
  min-width: 160px;
  margin: 10px auto 0;
  padding: 10px 20px;
  background: var(--color-main);
  color: #fff;
  font-weight: var(--font-b);
  text-align: center;
  border-radius: 5px;
}
@media screen and (min-width: 960px) {
  .l-cookie-bnr__btn.-primary {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    -webkit-transition: none;
    transition: none;
  }
  .l-cookie-bnr__btn.-primary:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .l-cookie-bnr__btn.-primary {
    margin-top: 20px;
  }
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.l-header + * {
  margin-top: var(--header);
}
.l-header__inner {
  display: grid;
  grid-template-columns: 1fr 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;
  height: var(--header);
  background: #fff;
  padding: 0 calc(var(--header) + 10px) 0 10px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-header__inner {
    grid-template-columns: auto 1fr auto auto;
    grid-template-areas: "logo nav search lang";
    gap: 20px;
    padding: 0 40px 0;
    -webkit-box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.15);
    z-index: 1;
  }
}
@media screen and (min-width: 960px) {
  .l-header__logo {
    grid-area: logo;
  }
}
.l-header__logo a {
  display: block;
  width: 58px;
  aspect-ratio: 1/0.314;
  background: url(/assets/img/logo_blue.svg) no-repeat center center/cover;
}
@media screen and (min-width: 960px) {
  .l-header__logo a {
    width: 140px;
  }
}
@media screen and (min-width: 960px) {
  .l-header__logo a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}
.l-header__search {
  display: none;
}
@media screen and (min-width: 960px) {
  .l-header__search {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .l-header__search:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 960px) {
  .l-header__search {
    display: block;
    grid-area: search;
    vertical-align: top;
  }
  .l-header__search .c-icon-svg {
    width: 17px;
    height: 17px;
  }
}
.l-header__lang {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 5px 0;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 960px) {
  .l-header__lang {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .l-header__lang:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 960px) {
  .l-header__lang {
    grid-area: lang;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4px;
    padding: 0;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: var(--font-m);
  }
}
.l-header__lang .c-icon-svg {
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 960px) {
  .l-header__lang span {
    padding-top: 2px;
  }
}
.l-header .l-nav {
  position: fixed;
  top: var(--header);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header));
  background: #fff;
  padding: 0 var(--sidePadding);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: -1;
  overflow: auto;
}
.l-header .l-nav__btn {
  width: var(--header);
  aspect-ratio: 1/1;
  background: var(--color-main);
  position: fixed;
  top: 0;
  right: 0;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__btn {
    display: none;
  }
}
.l-header .l-nav__btn span {
  width: 24px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: calc(50% - 12px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header .l-nav__btn span::before, .l-header .l-nav__btn span::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header .l-nav__btn span::before {
  top: -8px;
}
.l-header .l-nav__btn span::after {
  top: 8px;
}
.l-header .l-nav__btn.-active span {
  background: var(--color-main);
}
.l-header .l-nav__btn.-active span::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
}
.l-header .l-nav__btn.-active span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav {
    grid-area: nav;
    top: auto;
    width: auto;
    height: auto;
    padding: 0 20px;
    background: none;
    position: static;
    -webkit-transform: none;
            transform: none;
    z-index: 1;
    overflow: visible;
  }
}
.l-header .l-nav.-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-header .l-nav__search {
  margin: 10px 0 5px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__search {
    display: none;
    width: 100%;
    margin: 0;
    padding: 40px var(--sidePadding);
    position: fixed;
    top: var(--header);
    left: 0;
    background: rgba(0, 0, 0, 0.8);
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__search__inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
}
.l-header .l-nav__search input {
  width: 100%;
  border: 1px solid var(--color-fontsub);
  border-radius: 5px;
  padding: 15px 45px 15px 15px;
  background: #fff;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__search input {
    padding-right: 50px;
  }
}
.l-header .l-nav__search input::-webkit-input-placeholder {
  color: #787878;
}
.l-header .l-nav__search input::-moz-placeholder {
  color: #787878;
}
.l-header .l-nav__search input:-ms-input-placeholder {
  color: #787878;
}
.l-header .l-nav__search input::-ms-input-placeholder {
  color: #787878;
}
.l-header .l-nav__search input::placeholder {
  color: #787878;
}
.l-header .l-nav__search__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__search__btn {
    right: 15px;
  }
}
.l-header .l-nav__search__btn .c-icon-svg {
  width: 20px;
  height: 20px;
}
.l-header .l-nav__list {
  padding-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list {
    padding-bottom: 0;
    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: end;
    -webkit-justify-content: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px 30px;
  }
}
.l-header .l-nav__list__item + li {
  border-top: 1px solid var(--color-line);
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__item + li {
    border-top: none;
  }
}
.l-header .l-nav__list__item__btn, .l-header .l-nav__list__item__link {
  display: block;
  width: 100%;
  padding: 20px 0;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: var(--font-b);
  color: var(--color-main);
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__item__btn, .l-header .l-nav__list__item__link {
    width: auto;
    padding: 0;
    font-size: clamp(0.813rem, -0.711rem + 2.38vw, 1rem);
    font-weight: var(--font-r);
    color: var(--color-font);
  }
}
.l-header .l-nav__list__item__btn::before, .l-header .l-nav__list__item__btn::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--color-main);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__item__btn::before, .l-header .l-nav__list__item__btn::after {
    content: none;
  }
}
.l-header .l-nav__list__item__btn::after {
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
  right: 1px;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__item__btn::after {
    content: "";
    width: 0;
    top: calc(100% + 5px);
    right: 0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: width 0.2s ease;
    transition: width 0.2s ease;
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__item__btn:hover {
    color: var(--color-main);
    font-weight: var(--font-b);
  }
}
.l-header .l-nav__list__item__btn.-active::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__item__btn.-active {
    color: var(--color-main);
    font-weight: var(--font-b);
  }
  .l-header .l-nav__list__item__btn.-active::after {
    width: 100%;
    right: auto;
    left: 0;
  }
}
.l-header .l-nav__list__item__link {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__item__link {
    gap: 5px;
  }
  .l-header .l-nav__list__item__link:hover {
    font-weight: var(--font-b);
    color: var(--color-main);
  }
}
.l-header .l-nav__list__item__link .c-icon-svg {
  width: 15px;
  height: 15px;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__item__link .c-icon-svg {
    color: var(--color-main);
  }
}
.l-header .l-nav__list__sub {
  display: none;
  padding: 20px 0 20px 20px;
  border-top: 1px solid var(--color-line);
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub {
    width: 100%;
    max-height: calc(100vh - var(--header));
    background: #fff;
    padding: 40px var(--sidePadding) 80px;
    -webkit-box-shadow: 2px 6px 10px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 2px 6px 10px 0 rgba(0, 0, 0, 0.25);
    overflow: auto;
    position: fixed;
    top: var(--header);
    left: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__inner {
    max-width: var(--maxWidth);
    margin: 0 auto;
    position: relative;
  }
}
.l-header .l-nav__list__sub__close {
  display: none;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__close {
    display: block;
    width: 25px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 960px) and (min-width: 960px) {
  .l-header .l-nav__list__sub__close {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .l-header .l-nav__list__sub__close:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__close::before, .l-header .l-nav__list__sub__close::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--color-main);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-header .l-nav__list__sub__close::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.l-header .l-nav__list__sub__ttl {
  font-weight: var(--font-b);
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-font);
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__ttl {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 30px;
    font-size: 1.875rem;
    color: var(--color-main);
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__ttl:hover > .c-icon-svg use {
    -webkit-animation: arrowAnime 0.7s forwards;
            animation: arrowAnime 0.7s forwards;
  }
}
.l-header .l-nav__list__sub__ttl .c-icon-svg {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  background: var(--color-main);
  color: #fff;
  border-radius: 9999px;
  padding: 4.5px 0 4.5px 2px;
  margin-left: 10px;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__ttl .c-icon-svg {
    width: 30px;
    height: 30px;
    padding: 8px 3px 8px 6px;
    margin: 0 0 3px 15px;
  }
}
.l-header .l-nav__list__sub__list {
  margin-top: 20px;
  --leftWidth: 200px;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list {
    margin-top: 40px;
    position: relative;
    position: relative;
  }
  .l-header .l-nav__list__sub__list::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    background: var(--color-line);
    position: absolute;
    top: 0;
    left: var(--leftWidth);
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list.-product {
    min-height: 250px;
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list.-product .l-nav__list__sub__list__item[data-target=support] .-subCategoryList__outer {
    grid-template-columns: repeat(3, 1fr);
  }
  .l-header .l-nav__list__sub__list.-product .l-nav__list__sub__list__item[data-target=support] .-subCategoryList__outer .-subCategoryList:first-child {
    grid-row: 1/3;
  }
}
@media screen and (min-width: 1200px) {
  .l-header .l-nav__list__sub__list.-product .l-nav__list__sub__list__item[data-target=support] .-subCategoryList__outer {
    grid-template-columns: repeat(4, 1fr);
  }
}
.l-header .l-nav__list__sub__list.-product .-subCategoryList__outer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list.-product .-subCategoryList__outer {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px 10px;
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list.-ir {
    min-height: 350px;
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list.-sustaina {
    --leftWidth: 320px;
  }
}
.l-header .l-nav__list__sub__list.-sustaina .l-nav__list__sub__list__item.-imgList .-imgList__list {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 20px 20px;
}
@media screen and (min-width: 1200px) {
  .l-header .l-nav__list__sub__list.-sustaina .l-nav__list__sub__list__item.-imgList .-imgList__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 30px;
  }
}
.l-header .l-nav__list__sub__list.-sustaina .-subCategoryList__outer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list.-sustaina .-subCategoryList__outer {
    width: calc(100% - var(--leftWidth));
    grid-template-columns: repeat(4, auto);
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px 10px;
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list.-contact {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "one one one" "two three four";
    gap: 40px;
    min-height: 300px;
    --leftWidth: 320px;
  }
}
@media screen and (min-width: 960px) and (min-width: 960px) {
  .l-header .l-nav__list__sub__list.-contact .l-nav__list__sub__list__item[data-target=product] .-subCategoryList__outer {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-header .l-nav__list__sub__list.-contact .l-nav__list__sub__list__item[data-target=product] .-subCategoryList__outer .-subCategoryList:nth-child(2) {
    grid-row: 2;
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .l-header .l-nav__list__sub__list.-contact .l-nav__list__sub__list__item[data-target=product] .-subCategoryList__outer .-subCategoryList:nth-child(2) .-subCategoryTtl {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 960px) and (min-width: 1200px) {
  .l-header .l-nav__list__sub__list.-contact .l-nav__list__sub__list__item[data-target=product] .-subCategoryList__outer {
    grid-template-columns: repeat(4, 1fr);
  }
  .l-header .l-nav__list__sub__list.-contact .l-nav__list__sub__list__item[data-target=product] .-subCategoryList__outer .-subCategoryList:nth-child(2) {
    grid-row: auto;
    grid-column: 2/4;
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list.-contact .l-nav__list__sub__list__item:nth-child(1) {
    grid-area: one;
  }
  .l-header .l-nav__list__sub__list.-contact .l-nav__list__sub__list__item:nth-child(2) {
    grid-area: two;
  }
  .l-header .l-nav__list__sub__list.-contact .l-nav__list__sub__list__item:nth-child(3) {
    grid-area: three;
  }
  .l-header .l-nav__list__sub__list.-contact .l-nav__list__sub__list__item:nth-child(4) {
    grid-area: four;
  }
  .l-header .l-nav__list__sub__list.-contact .l-nav__list__sub__list__item.-imgList .-imgList__list {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 20px 20px;
  }
}
@media screen and (min-width: 960px) and (min-width: 1200px) {
  .l-header .l-nav__list__sub__list.-contact .l-nav__list__sub__list__item.-imgList .-imgList__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 30px;
  }
}
.l-header .l-nav__list__sub__list.-contact .-subCategoryList__outer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list.-contact .-subCategoryList__outer {
    width: calc(100% - var(--leftWidth));
    grid-template-columns: repeat(3, auto);
    gap: 20px;
  }
}
.l-header .l-nav__list__sub__list.-contact .-subCategoryList__outer .-subCategoryList__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: start;
}
.l-header .l-nav__list__sub__list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.l-header .l-nav__list__sub__list__item + li {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list__item + li {
    margin-top: 0;
  }
}
.l-header .l-nav__list__sub__list__item > *:not(.-categoryTtl, .-subCategoryList) {
  padding-left: 10px;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list__item > *:not(.-categoryTtl, .-subCategoryList) {
    padding-left: 5px;
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list__item {
    gap: 18px;
  }
}
.l-header .l-nav__list__sub__list__item .-categoryTtl {
  font-weight: var(--font-b);
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list__item .-categoryTtl {
    width: var(--leftWidth);
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 10px;
  }
  .l-header .l-nav__list__sub__list__item .-categoryTtl.-active {
    background: #eee;
  }
}
.l-header .l-nav__list__sub__list__item .-subCategoryList {
  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: 20px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list__item .-subCategoryList {
    gap: 10px;
  }
}
.l-header .l-nav__list__sub__list__item .-subCategoryList > *:not(.-subCategoryTtl) {
  padding-left: 10px;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list__item .-subCategoryList > *:not(.-subCategoryTtl) {
    padding-left: 15px;
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list__item .-subCategoryList__outer {
    width: calc(100% - var(--leftWidth));
    position: absolute;
    top: 0;
    left: var(--leftWidth);
    padding-left: 40px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0.25s;
    transition: visibility 0.25s;
  }
  .l-header .l-nav__list__sub__list__item .-subCategoryList__outer.-active {
    visibility: visible;
    opacity: 1;
  }
}
.l-header .l-nav__list__sub__list__item .-subCategoryTtl {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: var(--font-b);
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list__item .-subCategoryTtl {
    font-size: 14px;
    font-size: 0.875rem;
    padding-left: 10px;
  }
}
.l-header .l-nav__list__sub__list__item a {
  color: var(--color-font);
  font-size: 13px;
  font-size: 0.8125rem;
  display: inline-grid;
  grid-auto-flow: column;
  grid-template-columns: auto auto auto;
  gap: 0;
  -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: 960px) {
  .l-header .l-nav__list__sub__list__item a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list__item a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
  }
  .l-header .l-nav__list__sub__list__item a:hover {
    opacity: 0.7;
  }
}
.l-header .l-nav__list__sub__list__item a::before {
  content: "";
  display: inline-block;
  width: 8px;
  margin: 0.4em 8px auto 0;
  aspect-ratio: 1/1;
  background: url(/assets/img/ico-arrow-gray.svg) no-repeat center center/cover;
}
.l-header .l-nav__list__sub__list__item a .c-icon-svg {
  width: 12px;
  height: 12px;
  margin-top: 0.3em;
  margin-left: 5px;
}
.l-header .l-nav__list__sub__list__item.-imgList {
  display: none;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list__item.-imgList {
    display: block;
  }
}
.l-header .l-nav__list__sub__list__item.-imgList .-imgList__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 30px;
}
.l-header .l-nav__list__sub__list__item.-imgList .-imgList__list li {
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .l-header .l-nav__list__sub__list__item.-imgList .-imgList__list li {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .l-header .l-nav__list__sub__list__item.-imgList .-imgList__list li:hover {
    opacity: 0.7;
  }
}
.l-header .l-nav__list__sub__list__item.-imgList .-imgList__list li a {
  display: block;
}
.l-header .l-nav__list__sub__list__item.-imgList .-imgList__list li a::before {
  content: none;
}
.l-header .l-nav__list__sub__list__item.-imgList .-imgList__list li figure figcaption {
  margin-top: 5px;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}

.l-footer {
  background: #333;
  color: #fff;
  padding: 40px 0 0;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 30px 0 0;
  }
}
.l-footer__inner {
  padding: 0 var(--sidePadding);
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 70px;
  }
}
@media screen and (min-width: 960px) {
  .l-footer__inner {
    padding: 0 40px;
  }
}
.l-footer__logo {
  width: 97px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    width: 120px;
  }
}
.l-footer__linkList {
  margin-top: 20px;
  font-size: 11px;
  font-size: 0.6875rem;
  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: 15px;
  -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;
}
@media screen and (min-width: 768px) {
  .l-footer__linkList {
    margin-top: 0;
    -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-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px 30px;
  }
}
@media screen and (min-width: 960px) {
  .l-footer__linkList {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-footer__linkList li a {
  color: #fff;
}
@media screen and (min-width: 960px) {
  .l-footer__linkList li a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
  }
  .l-footer__linkList li a:hover {
    opacity: 0.7;
  }
}
.l-footer__sns {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
  -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;
}
@media screen and (min-width: 768px) {
  .l-footer__sns {
    margin-top: 0;
    gap: 15px;
  }
}
.l-footer__sns li a {
  display: inline-block;
  height: 25px;
  vertical-align: top;
}
.l-footer__sns li a figure {
  height: 100%;
}
.l-footer__sns li a figure img {
  height: 100%;
}
@media screen and (min-width: 960px) {
  .l-footer__sns li a {
    height: 30px;
  }
}
@media screen and (min-width: 960px) {
  .l-footer__sns li a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
  }
  .l-footer__sns li a:hover {
    opacity: 0.7;
  }
}
.l-footer__copy {
  background: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  color: #7A7A7A;
  padding: 10px;
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    margin-top: 30px;
  }
}

.l-foot-bnr {
  background: #fff;
  padding: 50px 0 45px;
  position: relative;
  --borderTop-sidePadding: 5px;
}
@media screen and (min-width: 768px) {
  .l-foot-bnr {
    padding: 60px var(--sidePadding) 55px;
  }
}
@media screen and (min-width: 768px) {
  .l-foot-bnr {
    --borderTop-sidePadding: 40px;
  }
}
.l-foot-bnr::before {
  content: "";
  display: inline-block;
  width: calc(100% - var(--borderTop-sidePadding) * 2);
  height: 1px;
  background: var(--color-line);
  position: absolute;
  top: 0;
  left: var(--borderTop-sidePadding);
}
.l-foot-bnr__list {
  --itemMaxWidth: 250px;
  --arrowWidth: 35px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l-foot-bnr__list {
    margin-bottom: 40px !important;
  }
}
@media screen and (min-width: 960px) {
  .l-foot-bnr__list {
    max-width: calc(var(--maxWidth) + 50px);
    margin-right: auto;
    margin-left: auto;
  }
}
.l-foot-bnr__list__item {
  padding: 0 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-foot-bnr__list__item {
    padding: 0 25px;
  }
}
.l-foot-bnr__list__item a {
  display: inline-block;
  max-width: var(--itemMaxWidth);
  margin: 0 auto;
  vertical-align: top;
  max-height: 80px;
}
@media screen and (min-width: 960px) {
  .l-foot-bnr__list__item a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .l-foot-bnr__list__item a:hover {
    opacity: 0.7;
  }
}
.l-foot-bnr__list .arrow-prev, .l-foot-bnr__list .arrow-next {
  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: var(--arrowWidth);
  aspect-ratio: 1/1;
  border: 1px solid var(--color-main);
  border-radius: 9999px;
  background: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.l-foot-bnr__list .arrow-prev .c-icon-svg, .l-foot-bnr__list .arrow-next .c-icon-svg {
  width: 11px;
  height: 11px;
}
@media screen and (min-width: 960px) {
  .l-foot-bnr__list .arrow-prev, .l-foot-bnr__list .arrow-next {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
  }
  .l-foot-bnr__list .arrow-prev:hover, .l-foot-bnr__list .arrow-next:hover {
    opacity: 0.7;
  }
}
.l-foot-bnr__list .arrow-prev {
  left: 20px;
}
.l-foot-bnr__list .arrow-prev .c-icon-svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 380px) {
  .l-foot-bnr__list .arrow-prev {
    left: calc(50% - var(--arrowWidth) - var(--itemMaxWidth) / 2 - 10px);
  }
}
@media screen and (min-width: 768px) {
  .l-foot-bnr__list .arrow-prev {
    left: -25px;
  }
}
@media screen and (min-width: 960px) {
  .l-foot-bnr__list .arrow-prev {
    left: -70px;
  }
}
.l-foot-bnr__list .arrow-next {
  right: 20px;
}
@media screen and (min-width: 380px) {
  .l-foot-bnr__list .arrow-next {
    right: calc(50% - var(--arrowWidth) - var(--itemMaxWidth) / 2 - 10px);
  }
}
@media screen and (min-width: 768px) {
  .l-foot-bnr__list .arrow-next {
    right: -25px;
  }
}
@media screen and (min-width: 960px) {
  .l-foot-bnr__list .arrow-next {
    right: -70px;
  }
}
.l-foot-bnr__list .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .l-foot-bnr__list .dots {
    bottom: -40px;
  }
}
.l-foot-bnr__list .dots li:only-child {
  display: none;
}
.l-foot-bnr__list .dots li button {
  font-size: 0.4px;
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background: #D0D0D0;
}
@media screen and (min-width: 960px) {
  .l-foot-bnr__list .dots li button:hover {
    background: var(--color-main);
  }
}
.l-foot-bnr__list .dots li.slick-active button {
  background: var(--color-main);
}

.l-news {
  --newsBg: #fff;
  background: var(--newsBg);
  padding: 40px 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-news {
    padding: 70px var(--sidePadding) 0;
  }
}
.l-news::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 150px;
  background: var(--newsBg);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
}
.l-news.-gray {
  --newsBg: #f5faff;
}
.l-news.-gray .l-news__category__item button:not(.-active) {
  background: #fff;
}
@media screen and (min-width: 960px) {
  .l-news.-gray .l-news__category__item button:not(.-active):hover {
    background: var(--color-main);
    border-color: var(--color-main);
  }
}
.l-news + .l-footer {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .l-news + .l-footer {
    margin-top: 110px;
  }
}
@media screen and (min-width: 768px) {
  .l-news + .l-foot-bnr {
    margin-top: 80px;
  }
}
@media screen and (min-width: 960px) {
  .l-news__inner {
    max-width: var(--maxWidth2);
    margin: 0 auto;
  }
}
.l-news .c-ttl-1 {
  color: var(--color-main);
}
.l-news .c-ttl-1 .-main {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-news .c-ttl-1 .-main {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.l-news__category {
  margin: 15px 0 5px;
  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: 10px;
}
@media screen and (min-width: 768px) {
  .l-news__category {
    margin-top: 40px;
  }
}
.l-news__category__item button {
  padding: 4px 10px;
  border: 1px solid var(--color-fontsub);
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-fontsub);
  font-weight: var(--font-r);
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .l-news__category__item button {
    padding: 2px 15px 3px;
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 960px) {
  .l-news__category__item button {
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
  }
  .l-news__category__item button:hover {
    background: var(--color-main);
    border-color: var(--color-main);
    color: #fff;
    font-weight: var(--font-b);
  }
}
.l-news__category__item button.-active {
  background: var(--color-main);
  border-color: var(--color-main);
  font-weight: var(--font-b);
  color: #fff;
}
.l-news__category__item.-select {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-news__category__item.-select {
    width: auto;
    margin-left: auto;
  }
}
.l-news .js-news-tabGroup {
  display: none;
  margin-top: 20px;
}
.l-news .c-btn-1 {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .l-news .c-btn-1 {
    margin-top: 40px;
  }
}
.l-news .l-article__mainTtl + * {
  margin-top: var(--marginTop);
}

.l-sales-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
  gap: 20px;
  -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: 20px;
  background: #F6F6F6;
}
@media screen and (min-width: 768px) {
  .l-sales-contact {
    padding: 40px 20px;
  }
}
.l-sales-contact__btn {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  -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;
  padding: 10px 20px;
  background: var(--color-main);
  border-radius: 5px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-sales-contact__btn {
    padding: 20px;
  }
}
.l-sales-contact__btn .c-icon-svg {
  width: 40px;
  height: 40px;
  padding: 11px 0;
  background: #fff;
  color: var(--color-main);
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .l-sales-contact__btn .c-icon-svg {
    width: 60px;
    height: 60px;
    padding: 15px 0;
  }
}
.l-sales-contact__btn__txt {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
}
.l-sales-contact__btn__txt .-sub {
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .l-sales-contact__btn__txt .-sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-sales-contact__btn__txt .-main {
  font-weight: var(--font-b);
}
@media screen and (min-width: 768px) {
  .l-sales-contact__btn__txt .-main {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 960px) {
  .l-sales-contact__btn:hover {
    background: var(--color-sub2);
  }
  .l-sales-contact__btn:hover .c-icon-svg {
    color: var(--color-sub2);
  }
}

.mt0 {
  margin-top: 0;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.c-w100 {
  width: 100% !important;
}

.c-w50 {
  width: 50% !important;
}