@charset "UTF-8";
/* Break point
---------------------------------------------------------- */
/* Font
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@300;400;500;700;900&family=Ysabeau+Office:ital,wght@0,1..1000;1,1..1000&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;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;
}

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

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

/* ==========================================================================//
//
//　変数
//
// ========================================================================== */
:root {
  /* Color
  ---------------------------------------------------------- */
  --color-main: #096781;
  --color-sub: #F5F5F5;
  --color-sub2: #EDF7FA;
  --color-sub3: #DFF2F8;
  --color-sub4: #c9ecf8;
  --color-gray: #EEEEEE;
  --color-line: #787878;
  --color-point: #FFC930;
  --color-red: #DF3333;
  --color-font: #2D2D2D;
  /* font
  ---------------------------------------------------------- */
  --font-zenkaku: "Zen Kaku Gothic New", "noto sans jp", sans-serif;
  --font-en: "Ysabeau Office", "noto sans jp", sans-serif;
  --font-no: "Roboto", "noto sans jp", sans-serif;
  --font-r: 300;
  --font-m: 500;
  --font-b: 700;
  --font-bl: 900;
  --lhS: 1.2;
  --lhM: 1.5;
  --lhL: 1.8;
  --lhLL: 2.3;
  --font8: 0.5rem;
  --font9: 0.56rem;
  --font10: 0.62rem;
  --font11: 0.7rem;
  --font12: 0.79rem;
  --font13: 0.81rem;
  --font14: 0.88rem;
  --font15: 0.94rem;
  --font16: 1rem;
  --font18: 1.12rem;
  --font20: 1.25rem;
  --font22: 1.42rem;
  --font23: 1.5rem;
  --font24: 1.5rem;
  --font25: 1.6rem;
  --font26: 1.62rem;
  --font28: 1.8rem;
  --font29: 1.85rem;
  --font30: 1.87rem;
  --font32: 2rem;
  --font33: 2.06rem;
  --font36: 2.28rem;
  --font37: 2.31rem;
  --font38: 2.37rem;
  --font41: 2.56rem;
  --font46: 2.88rem;
  --font50: 3.12rem;
  --font52: 3.25rem;
  --font55: 3.43rem;
  --font61: 3.81rem;
  --font66: 4.12rem;
  --font70: 4.37rem;
  --font74: 4.62rem;
  /* width
  ---------------------------------------------------------- */
  --maxWidth: 1040px;
}

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

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

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

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

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

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

.c-colorBox {
  padding: 20px;
}

.c-bg-gray {
  background: var(--color-sub);
}

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

.-fwN {
  font-weight: 400;
}

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

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

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

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

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

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

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

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

.c-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 20px;
}
.c-flex > * {
  margin-top: 0 !important;
}
.c-flex + * {
  margin-top: 20px;
}
@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: 20px;
}
.c-grid > .-txt > *:first-child {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .c-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 50px;
  }
}
@media screen and (min-width: 960px) {
  .c-grid {
    margin-top: 40px !important;
  }
}

.c-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;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  --lineWidth: 15px;
}
@media screen and (min-width: 960px) {
  .c-ttl-1 {
    --lineWidth: 20px;
  }
}
.c-ttl-1 .-en {
  font-size: var(--font16);
  font-family: var(--font-en);
  font-weight: var(--font-m);
  color: var(--color-main);
  padding-left: calc(var(--lineWidth) + 5px);
  position: relative;
}
@media screen and (min-width: 960px) {
  .c-ttl-1 .-en {
    font-size: var(--font20);
    gap: 10px;
  }
}
.c-ttl-1 .-en::before {
  content: "";
  display: inline-block;
  width: var(--lineWidth);
  height: 1px;
  background: var(--color-main);
  position: absolute;
  top: 0.7em;
  left: 0;
}
.c-ttl-1 .-main {
  font-family: var(--font-zenkaku);
  font-size: var(--font25);
  font-weight: var(--font-m);
}
@media screen and (min-width: 960px) {
  .c-ttl-1 .-main {
    font-size: var(--font32);
  }
}
.c-ttl-1.-white .-en {
  color: #fff;
}
.c-ttl-1.-white .-en::before {
  background: #fff;
}
.c-ttl-1.-white .-main {
  color: #fff;
}

.c-list-1 + * {
  margin-top: 20px;
}
.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: 20px;
}
.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: #5EC0DB;
  border-radius: 9999px;
  position: absolute;
  top: calc(0.5em + 2.5px);
  left: 5px;
}

.c-flowList > li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  -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;
  background: var(--color-sub2);
  padding: 20px;
}
@media screen and (min-width: 960px) {
  .c-flowList > li {
    grid-template-columns: 60px 30% 1fr;
    gap: 20px;
    justify-items: start;
  }
}
.c-flowList > li + li {
  margin-top: 50px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .c-flowList > li + li {
    margin-top: 60px;
  }
}
.c-flowList > li + li::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 16px;
  background: url(/assets/img/ico-flow-arrow.svg) no-repeat center center/cover;
  position: absolute;
  top: -33px;
  left: calc(50% - 18px);
}
@media screen and (min-width: 960px) {
  .c-flowList > li + li::before {
    top: -36px;
  }
}
.c-flowList > li .-num {
  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: 35px;
  aspect-ratio: 1/1;
  background: var(--color-main);
  border-radius: 9999px;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .c-flowList > li .-num {
    width: 60px;
    height: 60px;
    font-size: var(--font22);
  }
}
.c-flowList > li .-ttl {
  font-size: var(--font16);
  color: var(--color-main);
  font-weight: var(--font-m);
}
@media screen and (min-width: 768px) {
  .c-flowList > li .-ttl {
    font-size: var(--font18);
  }
}
.c-flowList > li .-txt {
  margin-top: 0;
}

.c-telBox {
  display: grid;
  grid-template-columns: 2.5em 1fr;
  gap: 3px;
}

.c-btn-1 {
  max-width: 330px;
  margin: 0 0 0 auto;
}
.c-btn-1 > a {
  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;
  vertical-align: top;
  width: 100%;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.7);
  padding-right: 35px;
  position: relative;
  padding-right: 40px;
}
@media screen and (min-width: 960px) {
  .c-btn-1 > a {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-btn-1 > a::before, .c-btn-1 > a::after {
  content: "";
  display: inline-block;
  position: absolute;
}
.c-btn-1 > a::before {
  width: 15px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background: var(--color-point);
  top: calc(50% - 7.5px);
  right: 10px;
}
.c-btn-1 > a::after {
  width: 17px;
  height: 17px;
  background: url(/assets/img/ico-arrow.svg) no-repeat center center/cover;
  top: calc(50% - 8.5px);
  right: 0;
}
@media screen and (min-width: 960px) {
  .c-btn-1 > a::before {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .c-btn-1 > a:hover::before {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    right: 2px;
  }
}
.c-btn-1 > a::before {
  right: 20px;
}
.c-btn-1 > a::after {
  right: 10px;
}
@media screen and (min-width: 960px) {
  .c-btn-1 > a {
    padding: 40px 55px 40px 30px;
  }
  .c-btn-1 > a::before {
    right: 37px;
    width: 20px;
    top: calc(50% - 10px);
  }
  .c-btn-1 > a::after {
    right: 25px;
    width: 22px;
    height: 22px;
    top: calc(50% - 11px);
  }
  .c-btn-1 > a:hover::before {
    right: 26px;
  }
}
.c-btn-1 + .c-btn-1 {
  border-top: 1px solid var(--color-line);
}
@media screen and (min-width: 768px) {
  .c-btn-1 + .c-btn-1 {
    border-top: none;
    border-left: 1px solid var(--color-line);
  }
}
.c-btn-1 .-txtBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-btn-1 .-txtBox .-en {
  font-family: var(--font-en);
  font-size: var(--font11);
  font-weight: 400;
  color: var(--color-main);
}
.c-btn-1 .-txtBox .-main {
  font-family: var(--font-zenkaku);
  font-size: var(--font16);
  line-height: var(--lhM);
  font-weight: var(--font-m);
  position: relative;
}
.c-btn-1 .-txtBox svg {
  width: 20px;
  height: 20px;
  position: absolute;
  right: -25px;
  top: calc(50% - 10px);
}
@media screen and (min-width: 768px) {
  .c-btn-1 .-txtBox svg {
    width: 25px;
    height: 25px;
    right: -30px;
    top: calc(50% - 12.5px);
  }
}

.c-btn-2 a, .c-btn-2 button {
  min-width: 230px;
  display: inline-block;
  background: var(--color-sub3);
  padding-right: 35px;
  position: relative;
  padding: 20px 45px 20px 40px;
}
@media screen and (min-width: 960px) {
  .c-btn-2 a, .c-btn-2 button {
    min-width: 300px;
  }
}
.c-btn-2 a::before, .c-btn-2 a::after, .c-btn-2 button::before, .c-btn-2 button::after {
  content: "";
  display: inline-block;
  position: absolute;
}
.c-btn-2 a::before, .c-btn-2 button::before {
  width: 15px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background: var(--color-point);
  top: calc(50% - 7.5px);
  right: 10px;
}
.c-btn-2 a::after, .c-btn-2 button::after {
  width: 17px;
  height: 17px;
  background: url(/assets/img/ico-arrow.svg) no-repeat center center/cover;
  top: calc(50% - 8.5px);
  right: 0;
}
@media screen and (min-width: 960px) {
  .c-btn-2 a::before, .c-btn-2 button::before {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .c-btn-2 a:hover::before, .c-btn-2 button:hover::before {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    right: 2px;
  }
}
.c-btn-2 a::before, .c-btn-2 button::before {
  right: 20px;
}
.c-btn-2 a::after, .c-btn-2 button::after {
  right: 10px;
}
.c-btn-2 a span, .c-btn-2 button span {
  font-weight: var(--font-m);
}
.c-btn-2 a svg, .c-btn-2 button svg {
  width: 18px;
  height: 18px;
  vertical-align: text-top;
}
@media screen and (min-width: 768px) {
  .c-btn-2 a svg, .c-btn-2 button svg {
    width: 22px;
    height: 22px;
  }
}
@media screen and (min-width: 960px) {
  .c-btn-2 a:hover::before, .c-btn-2 button:hover::before {
    right: 11px;
  }
}
.c-btn-2.-prev a, .c-btn-2.-prev button {
  padding: 20px 40px 20px 45px;
}
.c-btn-2.-prev a::before, .c-btn-2.-prev button::before {
  right: auto;
  left: 20px;
}
.c-btn-2.-prev a::after, .c-btn-2.-prev button::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  right: auto;
  left: 10px;
}
@media screen and (min-width: 960px) {
  .c-btn-2.-prev a:hover::before, .c-btn-2.-prev button:hover::before {
    left: 11px;
    right: auto;
  }
}

@media screen and (min-width: 768px) {
  .c-btn-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
  }
  .c-btn-col .c-btn-1 {
    width: 100%;
    max-width: none;
  }
  .c-btn-col .c-btn-1 a {
    height: 100%;
  }
}

input[type=radio] {
  display: none;
}

.c-radioButton {
  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;
}
.c-radioButton input + label {
  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;
  padding-left: 20px;
  position: relative;
}
.c-radioButton input + label::before, .c-radioButton input + label::after {
  display: inline-block;
  border-radius: 9999px;
  position: absolute;
}
.c-radioButton input + label::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 1px solid var(--color-line);
  background: #fff;
  top: calc(50% - 6.25px);
  left: 0;
}
.c-radioButton input + label::after {
  width: 7px;
  height: 7px;
  background: var(--color-point);
  top: calc(50% - 1.75px);
  left: 5.5px;
}
.c-radioButton input:checked + label::after {
  content: "";
}

.modaal-container {
  max-width: 1200px;
}

.modaal-content-container {
  padding: 0;
}

.modaal-wrapper .modaal-close {
  background: var(--color-point);
}
.modaal-wrapper .modaal-close::before, .modaal-wrapper .modaal-close::after {
  background: var(--color-font);
}
@media screen and (min-width: 960px) {
  .modaal-wrapper .modaal-close:hover {
    opacity: 0.7;
  }
}

html {
  font-family: "noto sans jp", sans-serif;
  color: var(--color-font);
}

body {
  font-size: var(--font14);
  font-weight: var(--font-m);
  letter-spacing: 0.36px;
}
@media screen and (min-width: 768px) {
  body {
    font-size: var(--font16);
  }
}

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

a {
  color: var(--color-font);
  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;
}

.l-loading {
  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;
  gap: 50px;
  width: 100%;
  height: 100svh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.l-loading .-logo {
  width: 70%;
  max-width: 675px;
}
.l-loading .-logo img {
  width: 100%;
}
.l-loading .-dot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.l-loading .-dot span {
  display: inline-block;
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background: var(--color-gray);
  -webkit-animation: dot 1.5s infinite ease-in-out;
          animation: dot 1.5s infinite ease-in-out;
}
.l-loading .-dot span:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.l-loading .-dot span:nth-child(3) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@-webkit-keyframes dot {
  0%, 100% {
    background: var(--color-gray);
  }
  50% {
    background: #5EC0DB;
  }
}
@keyframes dot {
  0%, 100% {
    background: var(--color-gray);
  }
  50% {
    background: #5EC0DB;
  }
}
.l-loading.-end {
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  visibility: hidden;
}

.l-header {
  display: grid;
  grid-template-columns: auto 70px;
  -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;
  width: 100%;
  height: 45px;
  padding: 0 0 0 20px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: fixed;
  z-index: 9999;
}
@media screen and (min-width: 960px) {
  .l-header {
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    padding: 0;
    height: 90px;
    grid-template-columns: 20% auto;
  }
}
.l-header .-logo {
  max-width: 195px;
}
@media screen and (min-width: 960px) {
  .l-header .-logo {
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    max-width: 400px;
    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;
    height: 100%;
    padding: 0 20px;
  }
  .l-header .-logo a {
    display: inline-block;
    width: 100%;
  }
  .l-header .-logo a img {
    width: 100%;
  }
}
@media screen and (min-width: 960px) 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;
  }
}
@media screen and (min-width: 1200px) {
  .l-header .-logo {
    padding: 0 25px;
  }
}
.l-header__nav__btn {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 960px) {
  .l-header__nav__btn {
    display: none;
  }
}
.l-header__nav__btn span {
  width: 30px;
  height: 1px;
  background: var(--color-font);
  position: absolute;
  right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header__nav__btn span:nth-child(1) {
  top: 14px;
}
.l-header__nav__btn span:nth-child(2) {
  top: calc(50% - 0.5px);
}
.l-header__nav__btn span:nth-child(3) {
  width: 15px;
  bottom: 14px;
}
.l-header__nav__btn.-active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: calc(50% - 0.5px);
}
.l-header__nav__btn.-active span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: calc(50% - 0.5px);
}
.l-header__nav__btn.-active span:nth-child(3) {
  opacity: 0;
}
.l-header__nav {
  visibility: hidden;
  opacity: 0;
  width: calc(100% - 80px);
  max-width: 400px;
  background: var(--color-gray);
  padding: 20px 40px 70px;
  position: fixed;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  .l-header__nav {
    visibility: visible;
    opacity: 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;
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
        -ms-flex-pack: end;
            justify-content: end;
    width: auto;
    height: 100%;
    max-width: none;
    background: none;
    padding: 0 30px 0 15px;
    position: static;
    top: auto;
    left: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    position: relative;
  }
  .l-header__nav::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__nav {
    padding: 0 50px 0 40px;
  }
}
.l-header__nav.-active {
  visibility: visible;
  opacity: 1;
}
.l-header__nav__subList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}
.l-header__nav__subList .-mail a {
  color: var(--color-font);
  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;
}
.l-header__nav__subList .-mail a svg {
  width: 16px;
  height: 16px;
}
.l-header__nav__subList .-mail a svg use {
  fill: transparent;
}
.l-header__nav__subList .-en {
  padding-left: 10px;
  position: relative;
}
.l-header__nav__subList .-en::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 9px;
  background: var(--color-font);
  position: absolute;
  top: calc(50% - 4.5px);
  left: 0;
}
.l-header__nav__subList .-en a {
  display: inline-block;
  line-height: 1;
  padding-bottom: 5px;
}
@media screen and (min-width: 960px) {
  .l-header__nav__subList .-en a {
    font-size: var(--font14);
    padding-bottom: 8px;
  }
}
@media screen and (min-width: 960px) {
  .l-header__nav__subList a:hover {
    color: var(--color-main);
  }
}
.l-header__nav__list {
  max-height: 65svh;
  margin-top: 10px;
  overflow-y: auto;
}
@media screen and (min-width: 960px) {
  .l-header__nav__list {
    margin-top: 0;
    overflow-y: visible;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    font-size: var(--font14);
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__nav__list {
    font-size: var(--font16);
    gap: 20px;
  }
}
@media screen and (min-width: 960px) {
  .l-header__nav__list__item {
    position: relative;
    padding-bottom: 20px;
  }
}
.l-header__nav__list__item + li {
  border-top: 1px solid var(--color-line);
}
@media screen and (min-width: 960px) {
  .l-header__nav__list__item + li {
    border-top: none;
  }
}
.l-header__nav__list__item a {
  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;
}
.l-header__nav__list__item a .-icon {
  width: 20px;
  height: 20px;
}
.l-header__nav__list__item > a {
  width: 100%;
  height: 100%;
  padding: 15px 0;
}
.l-header__nav__list__item.-subList-ttl > a {
  padding-right: 30px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-header__nav__list__item.-subList-ttl > a {
    padding-right: 0;
  }
}
.l-header__nav__list__item.-subList-ttl > a::before, .l-header__nav__list__item.-subList-ttl > a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background: var(--color-font);
  position: absolute;
  top: calc(50% - 0.5px);
  right: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  .l-header__nav__list__item.-subList-ttl > a::before, .l-header__nav__list__item.-subList-ttl > a::after {
    content: none;
  }
}
.l-header__nav__list__item.-subList-ttl > a::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.l-header__nav__list__item.-subList-ttl > a.-active::before {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  top: 50%;
  right: 10px;
}
.l-header__nav__list__item__subList {
  display: none;
  margin-left: 20px;
  padding-bottom: 7px;
}
@media screen and (min-width: 960px) {
  .l-header__nav__list__item__subList {
    display: block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(0);
            transform: translateX(-50%) scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
    padding: 0 20px 20px;
    margin-left: 0;
    z-index: 500;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .l-header__nav__list__item__subList.-active {
    -webkit-transform: translateX(-50%) scaleY(1);
            transform: translateX(-50%) scaleY(1);
  }
}
.l-header__nav__list__item__subList li a {
  width: 100%;
  padding: 7px 0;
  font-size: var(--font12);
  font-weight: 400;
}
@media screen and (min-width: 960px) {
  .l-header__nav__list__item__subList li a {
    word-break: keep-all;
  }
}
@media screen and (min-width: 960px) {
  .l-header__nav__list__item {
    padding: 0;
    position: relative;
  }
  .l-header__nav__list__item::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 1px;
    background: #059DC6;
    position: absolute;
    top: 8px;
    right: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__nav__list__item:hover > a {
    font-weight: var(--font-m);
    color: var(--color-main);
  }
  .l-header__nav__list__item:hover::before {
    width: 100%;
    left: 0;
    right: auto;
  }
  .l-header__nav__list__item__subList a:hover {
    color: var(--color-main);
    font-weight: var(--font-m);
  }
}
.l-header__nav__close {
  display: inline-block;
  width: 40px;
  height: 20px;
  padding: 0 10px;
  margin: 0 auto;
  position: absolute;
  bottom: 20px;
  left: calc(50% - 20px);
}
@media screen and (min-width: 960px) {
  .l-header__nav__close {
    display: none;
  }
}
.l-header__nav__close::before, .l-header__nav__close::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--color-font);
  position: absolute;
  top: calc(50% - 0.5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header__nav__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header__nav__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.l-footer {
  margin-top: 80px;
  background: var(--color-sub);
  padding: 35px 0 10px;
}
@media screen and (min-width: 960px) {
  .l-footer {
    margin-top: 130px;
    padding: 85px 20px 20px;
  }
}
@media screen and (min-width: 960px) {
  .l-footer__logoBox {
    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;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.l-footer__logo {
  text-align: center;
  padding: 0 40px;
}
@media screen and (min-width: 960px) {
  .l-footer__logo {
    padding: 0;
  }
}
.l-footer__logo a {
  display: inline-block;
  vertical-align: top;
  max-width: 390px;
}
@media screen and (min-width: 960px) {
  .l-footer__logo a {
    max-width: 350px;
    width: 350px;
  }
  .l-footer__logo a img {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .l-footer__logo a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .l-footer__logo a:hover {
    opacity: 0.7;
  }
}
.l-footer__address {
  margin-top: 10px;
  font-size: var(--font12);
  text-align: center;
  padding: 0 40px;
}
@media screen and (min-width: 960px) {
  .l-footer__address {
    margin-top: 0;
    padding: 0;
    font-size: var(--font16);
  }
}
.l-footer__list {
  max-width: 500px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 40px;
  margin: 20px auto 50px;
}
@media screen and (min-width: 768px) {
  .l-footer__list {
    max-width: 900px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .l-footer__list {
    max-width: 1280px;
    grid-template-columns: repeat(6, auto);
    grid-template-areas: "item1 item2 item3 item4 item5 item6" "item1 item2 item3 item4 item5 item7" "item1 item2 item3 item4 item5 item8" "item1 item2 item3 item4 item5 item9";
    gap: 0 20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 40px auto 50px;
  }
}
.l-footer__list__item {
  position: relative;
  padding-top: 20px;
}
@media screen and (min-width: 960px) {
  .l-footer__list__item {
    padding-top: 0;
  }
}
.l-footer__list__item::after {
  content: "";
  display: inline-block;
  width: calc(200% + 20px);
  height: 1px;
  background: #D7D7D7;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 960px) {
  .l-footer__list__item::after {
    content: none;
  }
}
.l-footer__list__item:nth-child(1)::after, .l-footer__list__item:nth-child(2)::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .l-footer__list__item:nth-child(3)::after {
    content: none;
  }
}
.l-footer__list__item:nth-child(even)::after {
  right: 0;
  left: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__list__item:nth-child(even)::after {
    right: auto;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__list__item:nth-child(3n)::after {
    right: 0;
    left: auto;
  }
}
@media screen and (min-width: 960px) {
  .l-footer__list__item:nth-child(1) {
    grid-area: item1;
  }
  .l-footer__list__item:nth-child(2) {
    grid-area: item2;
  }
  .l-footer__list__item:nth-child(3) {
    grid-area: item3;
  }
  .l-footer__list__item:nth-child(4) {
    grid-area: item4;
  }
  .l-footer__list__item:nth-child(5) {
    grid-area: item5;
  }
  .l-footer__list__item:nth-child(6) {
    grid-area: item6;
  }
  .l-footer__list__item:nth-child(7) {
    grid-area: item7;
  }
  .l-footer__list__item:nth-child(8) {
    grid-area: item8;
  }
  .l-footer__list__item:nth-child(9) {
    grid-area: item9;
  }
}
.l-footer__list__item > a {
  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;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-footer__list__item > a {
    font-size: var(--font14);
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
  }
  .l-footer__list__item > a:hover {
    color: #939393;
  }
}
@media screen and (min-width: 1500px) {
  .l-footer__list__item > a {
    font-size: var(--font16);
  }
}
.l-footer__list__item > a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #A9A9A9;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.l-footer__list__item > a svg {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 960px) {
  .l-footer__list__item:nth-child(3) > a, .l-footer__list__item:nth-child(6) > a, .l-footer__list__item:nth-child(7) > a, .l-footer__list__item:nth-child(8) > a, .l-footer__list__item:nth-child(9) > a {
    margin-bottom: 0;
  }
  .l-footer__list__item:nth-child(3) > a::after, .l-footer__list__item:nth-child(6) > a::after, .l-footer__list__item:nth-child(7) > a::after, .l-footer__list__item:nth-child(8) > a::after, .l-footer__list__item:nth-child(9) > a::after {
    content: none;
  }
}
.l-footer__list__item__subList {
  margin-top: 10px;
}
.l-footer__list__item__subList li + li {
  margin-top: 5px;
}
.l-footer__list__item__subList li a {
  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: var(--font12);
  font-weight: 400;
}
@media screen and (min-width: 1500px) {
  .l-footer__list__item__subList li a {
    font-size: var(--font14);
  }
}
.l-footer__list__item__subList li a svg {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 960px) {
  .l-footer__list__item__subList li a {
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
  }
  .l-footer__list__item__subList li a:hover {
    color: #939393;
  }
}
.l-footer__copy {
  font-size: var(--font9);
  font-weight: 400;
  text-align: center;
  border-top: 1px solid #A9A9A9;
  padding-top: 10px;
}
@media screen and (min-width: 960px) {
  .l-footer__copy {
    font-size: var(--font11);
  }
}

.l-contact {
  overflow: hidden;
}
.l-contact .l-sec__inner {
  margin: 80px 20px 0 0;
  padding: 35px 0 0 40px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-contact .l-sec__inner {
    background: none;
    margin: 130px 40px 0 0;
    padding: 65px 0 0;
  }
}
@media screen and (min-width: 960px) and (min-width: 1500px) {
  .l-contact .l-sec__inner {
    max-width: 1200px;
    margin: 130px auto 0;
  }
}
.l-contact .l-sec__inner::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(/assets/img/bg-contact.jpg) no-repeat left bottom/cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .l-contact .l-sec__inner::before {
    width: calc(100vw - 40px);
    background: url(/assets/img/bg-contact.jpg) no-repeat right 90%/cover;
  }
}
@media screen and (min-width: 1500px) {
  .l-contact .l-sec__inner::before {
    width: calc(50vw + 600px);
  }
}
@media screen and (min-width: 768px) {
  .l-contact__ttlBox {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
  }
}
@media screen and (min-width: 960px) {
  .l-contact__ttlBox {
    max-width: 1040px;
    margin: 0 auto 0 40px;
  }
}
@media screen and (min-width: 1500px) {
  .l-contact__ttlBox {
    margin-left: auto;
  }
}
.l-contact__ttlBox .-txt {
  margin-top: 15px;
  padding-right: 20px;
  font-weight: 400;
}
@media screen and (min-width: 960px) {
  .l-contact__ttlBox .-txt {
    font-size: var(--font18);
    font-weight: var(--font-m);
  }
}
.l-contact .c-btn-col {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .l-contact .c-btn-col {
    margin: 30px 0 0 auto;
  }
}
.l-contact .c-btn-col .c-btn-1 a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 960px) {
  .l-contact .c-btn-col .c-btn-1 a {
    gap: 20px;
  }
}
.l-contact .c-btn-col .c-btn-1 .c-telLink svg {
  width: 29px;
  height: 29px;
  color: var(--color-font);
}
@media screen and (min-width: 960px) {
  .l-contact .c-btn-col .c-btn-1 .c-telLink svg {
    width: 49px;
    height: 49px;
  }
}
.l-contact .c-btn-col .c-btn-1 .c-telLink span {
  font-family: var(--font-no);
  font-size: var(--font22);
}
@media screen and (min-width: 960px) {
  .l-contact .c-btn-col .c-btn-1 .c-telLink span {
    font-size: var(--font41);
  }
}
@media screen and (min-width: 960px) {
  .l-contact .c-btn-col .c-btn-1 .c-telLink::before, .l-contact .c-btn-col .c-btn-1 .c-telLink::after {
    content: none;
  }
}
.l-contact .c-btn-col .c-btn-1 .-mail svg {
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 960px) {
  .l-contact .c-btn-col .c-btn-1 .-mail svg {
    width: 44px;
    height: 44px;
  }
}
@media screen and (min-width: 960px) {
  .l-contact .c-btn-col .c-btn-1 .-mail span {
    font-size: var(--font23);
  }
}
.l-contact.js-scroll .l-sec__inner::before {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 100% 100%, 100% 100%, 100% 0);
          clip-path: polygon(100% 0, 100% 100%, 100% 100%, 100% 100%, 100% 0);
  -webkit-transition: -webkit-clip-path 0.8s ease-out;
  transition: -webkit-clip-path 0.8s ease-out;
  transition: clip-path 0.8s ease-out;
  transition: clip-path 0.8s ease-out, -webkit-clip-path 0.8s ease-out;
}
.l-contact.js-scroll .c-btn-1 {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.6s ease-out;
  transition: opacity 0.3s, -webkit-transform 0.6s ease-out;
  transition: transform 0.6s ease-out, opacity 0.3s;
  transition: transform 0.6s ease-out, opacity 0.3s, -webkit-transform 0.6s ease-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.l-contact.js-scroll .c-btn-1:nth-child(2) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.l-contact.js-scroll.-start .l-sec__inner::before {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
}
.l-contact.js-scroll.-start .c-btn-1 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.l-topBtn {
  display: none;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: visibility 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: visibility 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
  transition: transform 0.3s, visibility 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 960px) {
  .l-topBtn {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    bottom: 0;
    right: 50px;
    z-index: 800;
  }
}
.l-topBtn.-active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-topBtn a {
  display: inline-block;
  vertical-align: top;
  padding: 17px 15px 12px;
  background: var(--color-sub);
  border-radius: 9999px 9999px 0 0;
  -webkit-transition: padding 0.25s;
  transition: padding 0.25s;
}
.l-topBtn a img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.l-topBtn a:hover {
  padding-bottom: 22px;
}

.l-breadcrumb {
  margin-top: 5px;
  padding: 0 20px;
}
@media screen and (min-width: 960px) {
  .l-breadcrumb {
    max-width: 1120px;
    padding: 0 40px;
    margin: 10px auto 0;
  }
}
.l-breadcrumb + * {
  margin-top: 20px;
}
.l-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;
}
@media screen and (min-width: 960px) {
  .l-breadcrumb__list {
    gap: 10px;
  }
}
.l-breadcrumb__list li {
  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;
  gap: 5px;
  font-size: var(--font10);
}
@media screen and (min-width: 960px) {
  .l-breadcrumb__list li {
    font-size: var(--font14);
    gap: 10px;
  }
}
.l-breadcrumb__list li a {
  color: #878787;
}
@media screen and (min-width: 960px) {
  .l-breadcrumb__list li a:hover {
    opacity: 0.7;
  }
}
.l-breadcrumb__list li + li::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 9999px;
  background: var(--color-main);
}
@media screen and (min-width: 960px) {
  .l-breadcrumb__list li + li::before {
    width: 5px;
    height: 5px;
  }
}

.l-pageNation {
  margin-top: 50px;
  padding: 0 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  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;
}
.l-pageNation li {
  font-size: var(--font12);
}
@media screen and (min-width: 960px) {
  .l-pageNation li {
    font-size: var(--font16);
  }
}
.l-pageNation li a {
  background: none;
  padding: 0;
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .l-pageNation li a:hover {
    text-decoration: none;
  }
}
.l-pageNation li a.-prev, .l-pageNation li a.-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: 30px;
  height: 30px;
  border-radius: 9999px;
  background: var(--color-point);
}
@media screen and (min-width: 960px) {
  .l-pageNation li a.-prev, .l-pageNation li a.-next {
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
  .l-pageNation li a.-prev:hover, .l-pageNation li a.-next:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.l-pageNation li a svg {
  width: 20px;
  height: 20px;
}
.l-pageNation li a.-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.l-pageNation li a.-current {
  cursor: default;
  text-decoration: none;
  color: #9B9B9B;
}
.l-pageNation li a.-current svg {
  color: #9E9E9E;
}
.l-pageNation li a.-current.-prev, .l-pageNation li a.-current.-next {
  background: var(--color-gray);
}
@media screen and (min-width: 960px) {
  .l-pageNation li a.-current.-prev:hover, .l-pageNation li a.-current.-next:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.l-article {
  font-weight: 400;
  margin-top: 40px;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .l-article {
    margin-top: 60px;
  }
}
.l-article > * {
  margin-right: 40px;
  margin-left: 40px;
}
.l-article > * + * {
  margin-top: 20px;
}
@media screen and (min-width: 1120px) {
  .l-article > * {
    max-width: 1040px;
    margin-right: auto;
    margin-left: auto;
  }
}
.l-article.c-modal {
  margin: 40px 0;
}
@media screen and (min-width: 960px) {
  .l-article.c-modal {
    margin: 100px 0;
  }
}
.l-article.c-modal > * {
  margin-right: 20px;
  margin-left: 20px;
}
@media screen and (min-width: 960px) {
  .l-article.c-modal > * {
    margin-right: 40px;
    margin-left: 40px;
  }
}
@media screen and (min-width: 1120px) {
  .l-article.c-modal > * {
    margin-right: 80px;
    margin-left: 80px;
  }
}
.l-article.c-modal > *:first-child {
  margin-top: 0;
}
.l-article__menu {
  margin: 0 0 0 40px;
  padding-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 1120px) {
  .l-article__menu {
    margin: 0 auto;
  }
}
.l-article__menu + * {
  margin-top: 40px;
}
.l-article__menu .l-sec__inner {
  display: inline-block;
  padding: 20px 40px 20px 20px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-article__menu .l-sec__inner {
    padding: 35px 40px 35px 70px;
  }
}
@media screen and (min-width: 1120px) {
  .l-article__menu .l-sec__inner {
    padding: 35px 0 35px 70px;
  }
}
.l-article__menu .l-sec__inner::before {
  content: "";
  display: inline-block;
  width: 100vw;
  height: 100%;
  background: var(--color-sub2);
  position: absolute;
  top: 0;
  left: 0;
}
.l-article__menu__ttl {
  font-size: var(--font16);
  font-family: var(--font-en);
  color: var(--color-main);
  letter-spacing: 0.8px;
  position: absolute;
  top: 0;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .l-article__menu__ttl {
    font-size: var(--font20);
    left: 20px;
  }
}
.l-article__menu__list {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 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: 960px) {
  .l-article__menu__list {
    font-size: var(--font18);
    gap: 20px 40px;
  }
}
.l-article__menu__list li a {
  display: inline-block;
  padding-right: 35px;
  position: relative;
  padding-right: 25px;
}
.l-article__menu__list li a::before, .l-article__menu__list li a::after {
  content: "";
  display: inline-block;
  position: absolute;
}
.l-article__menu__list li a::before {
  width: 15px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background: var(--color-point);
  top: calc(50% - 7.5px);
  right: 10px;
}
.l-article__menu__list li a::after {
  width: 17px;
  height: 17px;
  background: url(/assets/img/ico-arrow.svg) no-repeat center center/cover;
  top: calc(50% - 8.5px);
  right: 0;
}
@media screen and (min-width: 960px) {
  .l-article__menu__list li a::before {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .l-article__menu__list li a:hover::before {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    right: 2px;
  }
}
.l-article__menu__list li a::before {
  top: calc(50% - 7.5px - 5px);
  right: 1px;
}
.l-article__menu__list li a::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: calc(50% - 8.5px + 2px);
}
@media screen and (min-width: 960px) {
  .l-article__menu__list li a:hover::before {
    top: calc(50% - 7.5px + 1px);
  }
}
.l-article__menu.js-scroll .l-article__menu__ttl {
  opacity: 0;
  top: 10px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.l-article__menu.js-scroll .l-sec__inner::before {
  width: 0;
  -webkit-transition: width 0.8s ease-in-out 0.5s;
  transition: width 0.8s ease-in-out 0.5s;
}
@media screen and (min-width: 768px) {
  .l-article__menu.js-scroll .l-sec__inner::before {
    -webkit-transition-duration: 1.5s;
            transition-duration: 1.5s;
  }
}
.l-article__menu.js-scroll.-start .l-article__menu__ttl {
  opacity: 1;
  top: 0;
}
.l-article__menu.js-scroll.-start .l-sec__inner::before {
  width: 100vw;
}
.l-article__ttl-1 {
  padding: 15px 15px;
  margin-top: 60px;
  font-family: var(--font-zenkaku);
  font-size: var(--font18);
  font-weight: var(--font-m);
  position: relative;
}
.l-article__ttl-1 > * {
  position: relative;
  z-index: 1;
}
.l-article__ttl-1::before, .l-article__ttl-1::after {
  content: "";
  display: inline-block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.l-article__ttl-1::before {
  height: 100%;
  background: var(--color-sub);
}
.l-article__ttl-1::after {
  height: 2px;
  background: var(--color-main);
}
@media screen and (min-width: 960px) {
  .l-article__ttl-1 {
    padding: 20px 30px;
    font-size: var(--font30);
    margin-top: 90px;
  }
}
.l-article__ttl-1 + * {
  margin-top: 30px;
}
.l-article__ttl-1.js-scroll::after {
  width: 0;
  -webkit-transition: width 0.8s ease-in-out 0.5s;
  transition: width 0.8s ease-in-out 0.5s;
}
.l-article__ttl-1.js-scroll.-start::after {
  width: 100%;
}
.l-article__ttl-2 {
  padding: 5px 0;
  margin-top: 30px;
  border-bottom: 2px solid #E0E0E0;
}
@media screen and (min-width: 960px) {
  .l-article__ttl-2 {
    margin-top: 50px;
  }
}
.l-article__ttl-2 + * {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .l-article__ttl-2 + * {
    margin-top: 30px;
  }
}
.l-article__ttl-2 span {
  display: inline-block;
  font-size: var(--font18);
  font-weight: var(--font-m);
  font-family: var(--font-zenkaku);
  vertical-align: bottom;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-article__ttl-2 span {
    font-size: var(--font25);
  }
}
.l-article__ttl-2 span::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background: var(--color-main);
  position: absolute;
  bottom: -7px;
  left: 0;
}
.l-article__ttl-2.js-scroll span::before {
  width: 0;
  -webkit-transition: width 0.8s ease-in-out 0.5s;
  transition: width 0.8s ease-in-out 0.5s;
}
.l-article__ttl-2.js-scroll.-start span::before {
  width: 100%;
}
.l-article__ttl-3 {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .l-article__ttl-3 {
    margin-top: 30px;
  }
}
.l-article__ttl-3 + * {
  margin-top: 20px;
}
.l-article__ttl-3 span {
  font-family: var(--font-zenkaku);
  font-size: var(--font18);
  font-weight: var(--font-m);
  color: var(--color-main);
  line-height: var(--lhL);
}
@media screen and (min-width: 960px) {
  .l-article__ttl-3 span {
    font-size: var(--font23);
  }
}
.l-article p {
  line-height: var(--lhL);
}
.l-article p + p {
  margin-top: 20px;
}
.l-article__inner > a {
  margin-top: 20px;
  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;
  gap: 3px;
  font-weight: var(--font-m);
  padding-right: 35px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-article__inner > a {
    margin-top: 30px;
  }
}
.l-article__inner > a.-fileLink svg {
  width: 20px;
  height: 20px;
}
.l-article__inner > a::before, .l-article__inner > a::after {
  content: "";
  display: inline-block;
  position: absolute;
}
.l-article__inner > a::before {
  width: 15px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background: var(--color-point);
  top: calc(50% - 7.5px);
  right: 10px;
}
.l-article__inner > a::after {
  width: 17px;
  height: 17px;
  background: url(/assets/img/ico-arrow.svg) no-repeat center center/cover;
  top: calc(50% - 8.5px);
  right: 0;
}
@media screen and (min-width: 960px) {
  .l-article__inner > a::before {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .l-article__inner > a:hover::before {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    right: 2px;
  }
}
.l-article__img {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .l-article__img {
    margin-top: 30px;
  }
}
.l-article__img img {
  margin: 0 auto;
}
.l-article__img figcaption {
  font-size: var(--font10);
  text-align: center;
  margin-top: 5px;
}
@media screen and (min-width: 960px) {
  .l-article__img figcaption {
    font-size: var(--font12);
  }
}
@media screen and (min-width: 768px) {
  .l-article__imgBox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.l-article__imgAndTxt::after {
  content: "";
  display: block;
  clear: both;
}
.l-article__imgAndTxt .-txt {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .l-article__imgAndTxt .-txt {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .l-article__imgAndTxt figure {
    float: left;
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-article__imgAndTxt.-right figure {
    float: right;
    margin: 0 0 20px 20px;
  }
}
.l-article__dlBox {
  margin-top: 20px;
}
.l-article__dlBox > dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 20px 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-article__dlBox > dl {
    grid-template-columns: 180px 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    padding: 30px 0;
  }
}
.l-article__dlBox > dl + dl {
  border-top: 2px solid var(--color-gray);
}
.l-article__dlBox > dl + dl::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--color-main);
  position: absolute;
  top: -2px;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .l-article__dlBox > dl + dl::before {
    width: 180px;
  }
}
.l-article__dlBox > dl > dt {
  font-weight: var(--font-m);
}
@media screen and (min-width: 960px) {
  .l-article__dlBox > dl > dt {
    padding-left: 10px;
  }
}
@media screen and (min-width: 960px) {
  .l-article__dlBox.-width220 dl {
    grid-template-columns: 220px 1fr;
  }
  .l-article__dlBox.-width220 dl + dl::before {
    width: 220px;
  }
}
.l-article__telBox {
  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;
  gap: 5px;
  margin-top: 0;
}
.l-article__telBox svg {
  width: 20px;
  height: 20px;
}
.l-article__telBox .c-telLink {
  font-weight: var(--font-m);
  letter-spacing: 1px;
}
.l-article__telBox.-big svg {
  width: 24px;
  height: 24px;
}
.l-article__telBox.-big .c-telLink {
  font-size: var(--font20);
}
.l-article__mailBox {
  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;
  gap: 5px;
  margin-top: 0;
}
.l-article__mailBox svg {
  width: 20px;
  height: 20px;
}
.l-article__mailBox .c-telLink {
  font-weight: var(--font-m);
  letter-spacing: 1px;
}
.l-article__faxBox {
  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;
  gap: 5px;
  margin-top: 0;
}
.l-article__faxBox .-fax {
  font-size: var(--font12);
}
.l-article__faxBox .-faxNo {
  font-weight: var(--font-m);
  letter-spacing: 1px;
}
.l-article__telTime {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  justify-items: start;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .l-article__telTime {
    grid-template-columns: auto 1fr;
  }
}
.l-article__telTime dt {
  display: inline-block;
  font-size: var(--font12);
  font-weight: var(--font-m);
  background: #CDEBF4;
  padding: 2px 5px;
}
.l-article .c-btn-2 {
  margin-top: 30px;
}

.l-second-ttl {
  padding-top: 45px;
}
@media screen and (min-width: 960px) {
  .l-second-ttl {
    padding-top: 90px;
  }
}
.l-second-ttl .c-ttl-1 {
  background-color: var(--color-sub2);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center left;
  padding: 25px 40px 30px;
}
@media screen and (min-width: 960px) {
  .l-second-ttl .c-ttl-1 {
    padding: 85px 40px 90px;
  }
}
@media screen and (min-width: 1120px) {
  .l-second-ttl .c-ttl-1 {
    padding: 85px 0 90px;
  }
}
.l-second-ttl .c-ttl-1 p {
  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;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}
.l-second-ttl .c-ttl-1 .-en {
  font-size: var(--font16);
}
@media screen and (min-width: 960px) {
  .l-second-ttl .c-ttl-1 .-en {
    font-size: var(--font25);
  }
}
.l-second-ttl .c-ttl-1 .-main {
  font-size: var(--font20);
}
@media screen and (min-width: 960px) {
  .l-second-ttl .c-ttl-1 .-main {
    font-size: var(--font38);
  }
}
.l-second-ttl .c-ttl-1.-info {
  background-image: url(/info/images/bg-ttl.jpg);
}
.l-second-ttl .c-ttl-1.-cmo {
  background-image: url(/cmo/images/bg-ttl.jpg);
}
.l-second-ttl .c-ttl-1.-products {
  background-image: url(/products/images/bg-ttl.jpg);
}
.l-second-ttl .c-ttl-1.-sustainability {
  background-image: url(/sustainability/images/bg-ttl.jpg);
}
.l-second-ttl .c-ttl-1.-contact {
  background-image: url(/contact/images/bg-ttl.jpg);
}
.l-second-ttl:has(.p-sustainability-ttl-mark) {
  display: grid;
  grid-template-columns: 1fr auto;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-second-ttl:has(.p-sustainability-ttl-mark) {
    display: block;
  }
}
.l-second-ttl:has(.p-sustainability-ttl-mark) .c-ttl-1 {
  padding-right: 15px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-second-ttl:has(.p-sustainability-ttl-mark) .p-sustainability-ttl-mark {
  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;
  width: 80px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .l-second-ttl:has(.p-sustainability-ttl-mark) .p-sustainability-ttl-mark {
    width: 150px;
  }
}
@media screen and (min-width: 960px) {
  .l-second-ttl:has(.p-sustainability-ttl-mark) .p-sustainability-ttl-mark {
    height: calc(100% - 90px);
    width: 240px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media screen and (min-width: 1040px) {
  .l-second-ttl:has(.p-sustainability-ttl-mark) .p-sustainability-ttl-mark {
    right: calc(50% - 520px);
  }
}
.l-second-ttl.js-opAnime .c-ttl-1 .-en::before {
  width: 0;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.l-second-ttl.js-opAnime .c-ttl-1 .-en span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: all 0.45s ease-out 0.4s;
  transition: all 0.45s ease-out 0.4s;
}
.l-second-ttl.js-opAnime .c-ttl-1 .-main {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.7s ease-out 1s;
  transition: all 0.7s ease-out 1s;
}
.l-second-ttl.js-opAnime.-start .c-ttl-1 .-en::before {
  width: var(--lineWidth);
}
.l-second-ttl.js-opAnime.-start .c-ttl-1 .-en span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.l-second-ttl.js-opAnime.-start .c-ttl-1 .-main {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-second-indexList {
  margin: 0 20px 0 0;
  padding: 50px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-second-indexList {
    max-width: 1200px;
    padding: 100px 0 100px 80px;
    margin: 0 auto 0;
  }
}
.l-second-indexList::before {
  content: "";
  display: inline-block;
  width: calc(100% - 20px);
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#A9D7E8), to(#EDF7FA));
  background: -webkit-linear-gradient(right, #A9D7E8 0%, #EDF7FA 100%);
  background: linear-gradient(270deg, #A9D7E8 0%, #EDF7FA 100%);
  position: absolute;
  top: 0;
  right: 20px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .l-second-indexList::before {
    width: calc(50vw + 320px);
    right: calc(50% - 320px);
  }
}
@media screen and (min-width: 768px) {
  .l-second-indexList.-col2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .l-second-indexList.-col2 li:nth-child(2n) + li {
    border-left: none;
  }
  .l-second-indexList.-col2 li:not(:nth-child(-n+2)) {
    border-top: 1px solid var(--color-line);
  }
}
@media screen and (min-width: 768px) {
  .l-second-indexList.-col3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .l-second-indexList.-col3 li:nth-child(3n) + li {
    border-left: none;
  }
  .l-second-indexList.-col3 li:not(:nth-child(-n+3)) {
    border-top: 1px solid var(--color-line);
  }
}
@media screen and (min-width: 768px) {
  .l-second-indexList.-col4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .l-second-indexList.-col4 li:nth-child(2n) + li {
    border-left: none;
  }
  .l-second-indexList.-col4 li:not(:nth-child(-n+2)) {
    border-top: 1px solid var(--color-line);
  }
}
@media screen and (min-width: 960px) {
  .l-second-indexList.-col4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .l-second-indexList.-col4 li:nth-child(2n) + li {
    border-left: 1px solid var(--color-line);
  }
  .l-second-indexList.-col4 li:nth-child(4n) + li {
    border-left: none;
  }
  .l-second-indexList.-col4 li:not(:nth-child(-n+2)) {
    border-top: none;
  }
  .l-second-indexList.-col4 li:not(:nth-child(-n+4)) {
    border-top: 1px solid var(--color-line);
  }
}
@media screen and (min-width: 768px) {
  .l-second-indexList.-col4::before {
    width: calc(50vw + 390px);
    right: calc(50% - 390px);
  }
}
@media screen and (min-width: 768px) {
  .l-second-indexList .c-btn-1 {
    max-width: none;
    width: 100%;
  }
}
.l-second-indexList .c-btn-1 a {
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: var(--color-gray);
}
@media screen and (min-width: 768px) {
  .l-second-indexList .c-btn-1 a {
    height: 210px;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media screen and (min-width: 960px) {
  .l-second-indexList .c-btn-1 a {
    padding: 40px 50px 40px 40px;
  }
}
@media screen and (min-width: 768px) {
  .l-second-indexList .c-btn-1 a .-txtBox .-en {
    font-size: var(--font18);
  }
}
@media screen and (min-width: 768px) {
  .l-second-indexList .c-btn-1 a .-txtBox .-main {
    font-size: var(--font25);
  }
}
.l-second-indexList .c-btn-1.-message a {
  background-image: url(/images/img-aboutBtn-message_sp.jpg);
}
@media screen and (min-width: 768px) {
  .l-second-indexList .c-btn-1.-message a {
    background-image: url(/info/images/img-aboutBtn-message_pc.jpg);
  }
}
.l-second-indexList .c-btn-1.-innovation a {
  background-image: url(/images/img-aboutBtn-innovation_sp.jpg);
}
@media screen and (min-width: 768px) {
  .l-second-indexList .c-btn-1.-innovation a {
    background-image: url(/info/images/img-aboutBtn-innovation_pc.jpg);
  }
}
.l-second-indexList .c-btn-1.-company a {
  background-image: url(/images/img-aboutBtn-company_sp.jpg);
}
@media screen and (min-width: 768px) {
  .l-second-indexList .c-btn-1.-company a {
    background-image: url(/info/images/img-aboutBtn-company_pc.jpg);
  }
}
.l-second-indexList .c-btn-1.-fields a {
  background-image: url(/images/img-aboutBtn-fields_sp.jpg);
}
@media screen and (min-width: 768px) {
  .l-second-indexList .c-btn-1.-fields a {
    background-image: url(/info/images/img-aboutBtn-fields_pc.jpg);
  }
}
.l-second-indexList .c-btn-1.-assurance a {
  background-image: url(/images/img-aboutBtn-assurance_sp.jpg);
}
@media screen and (min-width: 768px) {
  .l-second-indexList .c-btn-1.-assurance a {
    background-image: url(/info/images/img-aboutBtn-assurance_pc.jpg);
  }
}
.l-second-indexList .c-btn-1.-transparency a {
  background-image: url(/images/img-aboutBtn-transparency_sp.jpg);
}
@media screen and (min-width: 768px) {
  .l-second-indexList .c-btn-1.-transparency a {
    background-image: url(/info/images/img-aboutBtn-transparency_pc.jpg);
  }
}
.l-second-indexList.js-scroll::before {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 100% 100%, 100% 100%, 100% 0);
          clip-path: polygon(100% 0, 100% 100%, 100% 100%, 100% 100%, 100% 0);
  -webkit-transition: -webkit-clip-path 0.8s ease-out 0.4s;
  transition: -webkit-clip-path 0.8s ease-out 0.4s;
  transition: clip-path 0.8s ease-out 0.4s;
  transition: clip-path 0.8s ease-out 0.4s, -webkit-clip-path 0.8s ease-out 0.4s;
}
.l-second-indexList.js-scroll .l-second-indexList__item {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  --delay-main: 0.6s;
  --delay-plus: 0.2s;
  --delay-time: calc(var(--delay-main));
  -webkit-transition-delay: var(--delay-time);
          transition-delay: var(--delay-time);
}
@media screen and (min-width: 768px) {
  .l-second-indexList.js-scroll .l-second-indexList__item {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
.l-second-indexList.js-scroll .l-second-indexList__item:nth-child(2) {
  --delay-time: calc(var(--delay-main) + var(--delay-plus));
}
.l-second-indexList.js-scroll .l-second-indexList__item:nth-child(3) {
  --delay-time: calc(var(--delay-main) + (var(--delay-plus) * 2));
}
.l-second-indexList.js-scroll .l-second-indexList__item:nth-child(4) {
  --delay-time: calc(var(--delay-main) + (var(--delay-plus) * 3));
}
.l-second-indexList.js-scroll .l-second-indexList__item:nth-child(5) {
  --delay-time: calc(var(--delay-main) + (var(--delay-plus) * 4));
}
.l-second-indexList.js-scroll .l-second-indexList__item:nth-child(6) {
  --delay-time: calc(var(--delay-main) + (var(--delay-plus) * 5));
}
.l-second-indexList.js-scroll .l-second-indexList__item:nth-child(7) {
  --delay-time: calc(var(--delay-main) + (var(--delay-plus) * 6));
}
.l-second-indexList.js-scroll .l-second-indexList__item:nth-child(8) {
  --delay-time: calc(var(--delay-main) + (var(--delay-plus) * 7));
}
.l-second-indexList.js-scroll.-start::before {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
}
.l-second-indexList.js-scroll.-start .l-second-indexList__item {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .l-second-indexList.js-scroll.-start .l-second-indexList__item {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.l-form {
  margin: 40px 20px 0;
}
@media screen and (min-width: 960px) {
  .l-form {
    margin: 60px 40px 0;
  }
}
@media screen and (min-width: 1120px) {
  .l-form {
    margin: 60px auto 0;
    max-width: 1040px;
  }
}
.l-form .c-bg-gray {
  padding: 20px;
}
@media screen and (min-width: 960px) {
  .l-form .c-bg-gray {
    padding: 40px 60px;
  }
}
.l-form__error {
  margin-bottom: 30px;
}
.l-form__error p {
  font-weight: var(--font-m);
}
.l-form__error p + p {
  margin-top: 5px;
}
.l-form__dl {
  display: grid;
  grid-template-rows: 1fr;
  gap: 10px;
  padding: 15px 0;
}
@media screen and (min-width: 960px) {
  .l-form__dl {
    grid-template-columns: 230px 1fr;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 30px 0;
  }
}
.l-form__dl + .l-form__dl {
  border-top: 2px solid #fff;
}
.l-form__dl dd input, .l-form__dl dd textarea, .l-form__dl dd select {
  outline: 1px solid var(--color-line);
  padding: 5px 10px;
  max-width: 600px;
}
.l-form__dl dd input::-webkit-input-placeholder, .l-form__dl dd textarea::-webkit-input-placeholder, .l-form__dl dd select::-webkit-input-placeholder {
  color: #b1b1b1;
}
.l-form__dl dd input::-moz-placeholder, .l-form__dl dd textarea::-moz-placeholder, .l-form__dl dd select::-moz-placeholder {
  color: #b1b1b1;
}
.l-form__dl dd input:-ms-input-placeholder, .l-form__dl dd textarea:-ms-input-placeholder, .l-form__dl dd select:-ms-input-placeholder {
  color: #b1b1b1;
}
.l-form__dl dd input::-ms-input-placeholder, .l-form__dl dd textarea::-ms-input-placeholder, .l-form__dl dd select::-ms-input-placeholder {
  color: #b1b1b1;
}
.l-form__dl dd input::placeholder, .l-form__dl dd textarea::placeholder, .l-form__dl dd select::placeholder {
  color: #b1b1b1;
}
.l-form__dl dd input:focus, .l-form__dl dd textarea:focus, .l-form__dl dd select:focus {
  outline-color: var(--color-point);
}
.l-form__dl dd input.-small, .l-form__dl dd textarea.-small, .l-form__dl dd select.-small {
  width: 120px;
}
.l-form__dl dd input.-medium, .l-form__dl dd textarea.-medium, .l-form__dl dd select.-medium {
  width: 100%;
  max-width: 400px;
}
.l-form__dl dd input.-big, .l-form__dl dd textarea.-big, .l-form__dl dd select.-big {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-form__dl dd input.-big, .l-form__dl dd textarea.-big, .l-form__dl dd select.-big {
    width: 600px;
  }
}
.l-form__dl dd textarea {
  width: 100%;
  min-height: 100px;
}
.l-form__dl dd.-addressBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-form__dl dd.-addressBox .l-form__addressBtn {
  font-size: var(--font12);
  font-weight: 400;
  background: #CDEBF4;
  padding: 3px 5px;
  color: var(--color-main);
}
@media screen and (min-width: 960px) {
  .l-form__dl dd.-addressBox .l-form__addressBtn {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .l-form__dl dd.-addressBox .l-form__addressBtn:hover {
    opacity: 0.7;
  }
}
.l-form__dl dd.-fullName {
  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-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 20px;
}
.l-form__dl dd.-fullName > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-form__dl dd.-fullName > div input {
  max-width: 100px;
}
@media screen and (min-width: 768px) {
  .l-form__dl dd.-fullName > div input {
    max-width: 150px;
  }
}
.l-form__dl dd.-radioBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
}
.l-form__dl dd.-radioBox .-other {
  width: 100%;
}
.l-form__dl dd.-radioBox .-other input[type=text] {
  margin-left: 10px;
}
.l-form__dl.-required dt {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px 10px;
}
.l-form__dl.-required dt::after {
  content: "必須";
  display: inline-block;
  color: var(--color-red);
  font-size: var(--font12);
}

.l-second-newsList {
  margin-top: 30px;
  padding: 0 40px;
}
@media screen and (min-width: 960px) {
  .l-second-newsList {
    max-width: 1120px;
    margin: 80px auto 0;
  }
}
.l-second-newsList__item {
  padding: 15px 0;
}
@media screen and (min-width: 960px) {
  .l-second-newsList__item {
    padding: 30px 0;
    display: grid;
    grid-template-areas: "day label" "ttl ttl";
    grid-template-columns: 100px auto;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    justify-items: start;
  }
}
.l-second-newsList__item + li {
  border-top: 1px solid var(--color-gray);
}
.l-second-newsList__item .-day {
  font-size: var(--font11);
  color: var(--color-main);
  margin-right: 10px;
}
@media screen and (min-width: 960px) {
  .l-second-newsList__item .-day {
    font-size: var(--font14);
    margin-right: 0;
    grid-area: day;
  }
}
.l-second-newsList__item .-label {
  background: #CDEBF4;
  padding: 0 3px;
  color: var(--color-main);
  font-size: var(--font11);
  font-weight: 400;
  font-family: var(--font-en);
}
@media screen and (min-width: 960px) {
  .l-second-newsList__item .-label {
    font-size: var(--font14);
    padding: 0 5px;
    grid-area: label;
  }
}
.l-second-newsList__item .-ttl {
  display: inline-block;
  font-weight: 400;
  margin-top: 5px;
}
@media screen and (min-width: 960px) {
  .l-second-newsList__item .-ttl {
    grid-area: ttl;
  }
}
.l-second-newsList__item a {
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .l-second-newsList__item a:hover {
    text-decoration: none;
  }
}

.p-news-ttl-1 {
  background: var(--color-sub2);
  padding: 10px 20px 15px;
  margin: 40px 20px 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-news-ttl-1 {
    max-width: 1040px;
    margin: 60px auto 0;
    padding: 30px 20px;
  }
}
.p-news-ttl-1 + * {
  margin-top: 40px;
}
@media screen and (min-width: 960px) {
  .p-news-ttl-1 + * {
    margin-top: 60px;
  }
}
.p-news-ttl-1 .-day {
  font-size: var(--font10);
  color: var(--color-main);
  font-weight: var(--font-m);
  position: absolute;
  top: 0;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .p-news-ttl-1 .-day {
    font-size: var(--font16);
  }
}
.p-news-ttl-1 .-main {
  font-size: var(--font18);
  font-weight: var(--font-m);
  font-family: var(--font-zenkaku);
}
@media screen and (min-width: 960px) {
  .p-news-ttl-1 .-main {
    font-size: var(--font32);
  }
}

.p-message__ttlBox {
  margin: 20px 0 0;
  padding: 30px 0 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-message__ttlBox {
    margin: 30px auto 0;
  }
}
.p-message__ttlBox + * {
  margin-top: 30px;
}
@media screen and (min-width: 960px) {
  .p-message__ttlBox + * {
    margin-top: 40px;
  }
}
.p-message__ttlBox::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: calc(100% - 30px);
  background: -webkit-linear-gradient(1deg, rgba(205, 235, 244, 0.8) 0%, rgba(252, 242, 214, 0.8) 32%, rgba(205, 235, 244, 0.8) 100%);
  background: linear-gradient(89deg, rgba(205, 235, 244, 0.8) 0%, rgba(252, 242, 214, 0.8) 32%, rgba(205, 235, 244, 0.8) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-message__ttlBox .-txt {
  width: 60%;
  margin-left: 40px;
  padding: 20px 0;
  font-size: var(--font16);
  font-weight: var(--font-m);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 425px) {
  .p-message__ttlBox .-txt {
    font-size: var(--font18);
    text-align: center;
  }
}
@media screen and (min-width: 960px) {
  .p-message__ttlBox .-txt {
    width: 70%;
    padding: 55px 0;
  }
}
.p-message__ttlBox .-txt p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0;
  -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: 425px) {
  .p-message__ttlBox .-txt p {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 960px) {
  .p-message__ttlBox .-txt p {
    font-size: var(--font25);
  }
}
.p-message__ttlBox .-txt p + p {
  margin-top: 10px;
}
@media screen and (min-width: 960px) {
  .p-message__ttlBox .-txt p + p {
    margin-top: 15px;
  }
}
.p-message__ttlBox .-txt .-post {
  font-size: var(--font10);
  font-weight: 400;
  margin-right: 10px;
}
@media screen and (min-width: 425px) {
  .p-message__ttlBox .-txt .-post {
    font-size: var(--font12);
  }
}
@media screen and (min-width: 960px) {
  .p-message__ttlBox .-txt .-post {
    font-size: var(--font16);
    margin-right: 20px;
  }
}
.p-message__ttlBox .-txt .-name {
  font-size: var(--font9);
}
@media screen and (min-width: 425px) {
  .p-message__ttlBox .-txt .-name {
    font-size: var(--font14);
  }
}
@media screen and (min-width: 960px) {
  .p-message__ttlBox .-txt .-name {
    font-size: var(--font18);
  }
}
.p-message__ttlBox figure {
  width: 40%;
  max-width: 160px;
  position: absolute;
  bottom: 0;
  right: 5px;
}
@media screen and (min-width: 768px) {
  .p-message__ttlBox figure {
    right: calc(40% - 160px);
  }
}
@media screen and (min-width: 960px) {
  .p-message__ttlBox figure {
    right: calc(40% - 235px - 50px);
    max-width: 235px;
  }
}

.p-rd__howattBox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  background: #CDEBF4;
  padding: 20px;
  max-width: 830px;
}
@media screen and (min-width: 768px) {
  .p-rd__howattBox {
    display: grid;
    grid-template-columns: auto 1fr;
    -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: 40px;
  }
}
@media screen and (min-width: 960px) {
  .p-rd__howattBox {
    padding: 40px 60px;
    gap: 70px;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1120px) {
  .p-rd__howattBox {
    max-width: 830px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
.p-rd__howattBox .-ttl {
  text-align: center;
  font-size: var(--font20);
}
@media screen and (min-width: 960px) {
  .p-rd__howattBox .-ttl {
    font-size: var(--font30);
  }
}
@media screen and (min-width: 960px) {
  .p-rd__howattBox .-txt {
    font-size: var(--font20);
  }
}
.p-rd__centerTxt {
  margin-top: 20px;
  font-size: var(--font16);
}
@media screen and (min-width: 768px) {
  .p-rd__centerTxt {
    text-align: center;
  }
}
@media screen and (min-width: 960px) {
  .p-rd__centerTxt {
    font-size: var(--font18);
    margin-top: 30px;
  }
}
.p-rd__centerTxt .-blue {
  color: var(--color-main);
}
.p-rd__centerTxt .-sub {
  font-size: var(--font14);
}
.p-rd__circleList {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  grid-template-columns: 1fr;
  justify-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 20px;
}
@media screen and (min-width: 960px) {
  .p-rd__circleList {
    margin-top: 30px;
    gap: 50px;
  }
}
.p-rd__circleList li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 200px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: var(--color-sub);
  padding: 20px;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .p-rd__circleList li {
    aspect-ratio: 1/1;
    border-radius: 9999px;
  }
}
@media screen and (min-width: 960px) {
  .p-rd__circleList li {
    max-width: 240px;
  }
}
.p-rd__circleList li p {
  font-size: var(--font16);
  font-weight: var(--font-m);
  line-height: var(--lhM);
}
@media screen and (min-width: 960px) {
  .p-rd__circleList li p {
    font-size: var(--font18);
  }
}
.p-rd__circleList li p span {
  display: inline-block;
}
.p-rd__circleList li p .-en {
  font-family: var(--font-en);
  font-size: var(--font14);
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 10px;
}
@media screen and (min-width: 960px) {
  .p-rd__circleList li p .-en {
    font-size: var(--font16);
  }
}
.p-rd__circleList li p .-fsS {
  font-size: var(--font12);
  font-weight: 400;
  margin-top: 10px;
}
@media screen and (min-width: 960px) {
  .p-rd__circleList li p .-fsS {
    font-size: var(--font14);
  }
}
.p-rd__yellowBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-rd__yellowBox .l-sec__inner {
  display: inline-block;
  margin-top: 20px;
  background: #FCF2D6;
  padding: 20px;
}
@media screen and (min-width: 960px) {
  .p-rd__yellowBox .l-sec__inner {
    padding: 20px 30px;
  }
}
.p-rd__yellowBox .l-sec__inner > p {
  font-size: var(--font16);
  font-weight: var(--font-m);
}
@media screen and (min-width: 960px) {
  .p-rd__yellowBox .l-sec__inner > p {
    font-size: var(--font18);
  }
}
.p-rd__yellowBox .l-sec__inner > p + * {
  margin-top: 10px;
}
.p-rd__yellowBox .l-sec__inner .c-list-1 {
  margin-left: 10px;
}
@media screen and (min-width: 960px) {
  .p-rd__yellowBox .l-sec__inner .c-list-1 {
    margin-left: 1em;
  }
}

@media screen and (min-width: 768px) {
  .p-businessarea__imgAndTxt figure {
    max-width: 350px;
    margin-left: 50px !important;
  }
}

@media screen and (min-width: 960px) {
  .p-company__accessBox {
    grid-template-columns: 1fr 55%;
  }
}
.p-company__accessBox .-map {
  width: 100%;
  height: 200px;
}
@media screen and (min-width: 960px) {
  .p-company__accessBox .-map {
    height: 450px;
  }
}
.p-company__accessBox .-map iframe {
  width: 100%;
  height: 100%;
}

.p-reliability__blueBox {
  margin-top: 20px;
  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;
}
@media screen and (min-width: 768px) {
  .p-reliability__blueBox {
    margin-top: 40px;
  }
}
.p-reliability__blueBox .-inner {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--color-sub2);
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .p-reliability__blueBox .-inner {
    padding: 40px 70px;
  }
}
.p-reliability__blueBox .l-article__ttl-3 {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-reliability__blueBox .l-article__ttl-3 {
    margin-bottom: 30px;
  }
  .p-reliability__blueBox .l-article__ttl-3 span {
    font-size: var(--font23);
    font-weight: var(--font-m);
  }
}
.p-reliability__blueBox .-list {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-reliability__blueBox .-list > p {
    text-align: center;
  }
}
.p-reliability__blueBox .-list ul {
  margin-top: 10px;
}
.p-reliability__blueBox .-name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (min-width: 768px) {
  .p-reliability__blueBox .-name {
    margin-top: 40px;
  }
}
.p-reliability__blueBox .-name p {
  display: inline-block;
}

.p-guideline__table {
  font-size: var(--font12);
}
@media screen and (min-width: 768px) {
  .p-guideline__table {
    font-size: var(--font14);
  }
}
.p-guideline__table td {
  padding: 5px 5px;
}

.p-guideline_kakunin__btnBox {
  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;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-guideline_kakunin__btnBox {
    margin-top: 40px;
  }
}
.p-guideline_kakunin__btnBox .-inner {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -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;
  gap: 20px;
  text-align: center;
  background: var(--color-sub);
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .p-guideline_kakunin__btnBox .-inner {
    width: auto;
    padding: 40px 70px;
  }
}
.p-guideline_kakunin__btnBox .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-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-guideline_kakunin__btnBox .c-flex .c-btn-2 a {
  min-width: 170px;
  width: 100%;
  max-width: 230px;
  background: var(--color-sub4);
}
@media screen and (min-width: 768px) {
  .p-guideline_kakunin__btnBox .c-flex .c-btn-2 a {
    min-width: 230px;
    max-width: none;
  }
}

.p-policy__contactBox {
  margin-top: 20px;
  background: var(--color-sub2);
  padding: 20px;
}
.p-policy__contactBox > *:first-child {
  margin-top: 0;
}
.p-policy__contactBox .c-flex {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-policy__contactBox {
    padding: 40px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .p-sitemap__linkList {
    grid-template-columns: repeat(2, minmax(0, 460px));
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-sitemap__linkList .c-btn-2 a {
  width: 100%;
  font-size: var(--font16);
}
@media screen and (min-width: 768px) {
  .p-sitemap__linkList .c-btn-2 a {
    font-size: var(--font18);
  }
}
.p-sitemap__linkList .c-list-2 {
  margin: 20px 0 40px 20px;
}
@media screen and (min-width: 768px) {
  .p-sitemap__linkList .c-list-2 {
    margin: 20px 0 60px 40px;
  }
}
.p-sitemap__linkList .c-list-2 > li > ul {
  margin-top: 10px;
  font-size: 0.9em;
}
.p-sitemap__linkList .c-list-2 > li svg {
  width: 18px;
  height: 18px;
  vertical-align: text-top;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .p-sitemap__linkList .c-list-2 > li svg {
    margin-top: 3px;
  }
}
@media screen and (min-width: 768px) {
  .p-sitemap__linkList .c-list-2 > li {
    padding-left: 25px;
  }
  .p-sitemap__linkList .c-list-2 > li::before {
    width: 8px;
    height: 8px;
    top: calc(0.8em - 4px);
  }
}
@media screen and (min-width: 960px) {
  .p-sitemap__linkList .c-list-2 a:hover {
    color: var(--color-main);
  }
}

@media screen and (min-width: 768px) {
  .p-woofy__blueBox {
    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;
  }
}
@media screen and (min-width: 768px) {
  .p-woofy__blueBox .-inner {
    display: inline-grid;
    width: 100%;
    grid-template-columns: 1fr 55%;
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    padding: 60px 40px;
    background: var(--color-sub2);
    border-radius: 30px;
  }
}
@media screen and (min-width: 960px) {
  .p-woofy__blueBox .-inner {
    width: auto;
    padding: 60px 70px;
    grid-template-columns: 1fr 50%;
    gap: 50px;
    min-width: 800px;
  }
}
.p-woofy__blueBox figure img {
  max-width: 200px;
  margin: 0 auto;
}
.p-woofy__blueBox .-txt {
  margin-top: 20px;
  background: var(--color-sub2);
  padding: 20px;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-woofy__blueBox .-txt {
    margin-top: 0;
    padding: 0;
  }
}
.p-woofy__blueBox .-txt .-name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: var(--font20);
  font-weight: var(--font-b);
  font-family: var(--font-zenkaku);
  color: var(--color-main);
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .p-woofy__blueBox .-txt .-name {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 15px;
    font-size: var(--font32);
  }
}
.p-woofy__blueBox .-txt .-name .-ruby {
  font-size: var(--font12);
  letter-spacing: 0.6px;
}
@media screen and (min-width: 768px) {
  .p-woofy__blueBox .-txt .-name .-ruby {
    margin-bottom: 5px;
  }
}
.p-woofy__blueBox .-txt dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-woofy__blueBox .-txt dl {
    grid-template-columns: 90px 1fr;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    justify-items: start;
    margin-top: 30px;
  }
}
.p-woofy__blueBox .-txt dl + * {
  margin-top: 20px;
}
.p-woofy__blueBox .-txt dl + dl {
  margin-top: 10px;
}
.p-woofy__blueBox .-txt dl dt {
  font-size: var(--font12);
  font-weight: var(--font-b);
  background: var(--color-sub4);
  padding: 0 5px;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .p-woofy__blueBox .-txt dl dt {
    font-size: var(--font16);
    background: none;
    font-weight: var(--font-n);
    color: var(--color-font);
  }
}
.p-woofy__blueBox .-txt dl dd {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-woofy__blueBox .-txt dl dd::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #059DC6;
    border-radius: 9999px;
    position: absolute;
    top: calc(0.8em - 3px);
    left: -15px;
  }
}
.p-woofy__blueBox .-txt > p {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-woofy__blueBox .-txt > p {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .p-woofy__pointBox {
    padding: 20px 0;
    position: relative;
  }
}
@media screen and (min-width: 768px) and (min-width: 960px) {
  .p-woofy__pointBox {
    padding: 10px 0;
    margin-top: 50px;
  }
}
.p-woofy__pointBox figure img {
  max-width: 200px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-woofy__pointBox figure img {
    max-width: 230px;
    padding-right: 30px;
  }
}
.p-woofy__pointBox .-list {
  margin-top: 20px;
}
.p-woofy__pointBox .-list li {
  padding-left: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-woofy__pointBox .-list li {
    max-width: 250px;
    padding: 10px;
    background: var(--color-sub2);
    border-radius: 10px;
    font-size: var(--font14);
    position: absolute;
  }
}
@media screen and (min-width: 960px) {
  .p-woofy__pointBox .-list li {
    max-width: none;
    padding: 10px 20px;
    font-size: var(--font16);
  }
}
.p-woofy__pointBox .-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #5EC0DB;
  border-radius: 9999px;
  position: absolute;
  top: calc(0.8em - 3px);
  left: 8px;
}
@media screen and (min-width: 768px) {
  .p-woofy__pointBox .-list li::before {
    width: 15px;
    height: 20px;
    background: var(--color-sub2);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
            clip-path: polygon(0 0, 0 100%, 100% 50%);
    border-radius: 0;
    top: auto;
    left: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-woofy__pointBox .-list li:nth-child(1) {
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 960px) {
  .p-woofy__pointBox .-list li:nth-child(1) {
    left: calc(50% - 250px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px) {
  .p-woofy__pointBox .-list li:nth-child(1)::before {
    bottom: 15px;
    right: -14px;
  }
  .p-woofy__pointBox .-list li:nth-child(2) {
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 960px) {
  .p-woofy__pointBox .-list li:nth-child(2) {
    top: 20px;
    right: calc(50% - 260px);
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media screen and (min-width: 768px) {
  .p-woofy__pointBox .-list li:nth-child(2)::before {
    bottom: 15px;
    left: -14px;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .p-woofy__pointBox .-list li:nth-child(3) {
    bottom: 0;
    right: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 960px) {
  .p-woofy__pointBox .-list li:nth-child(3) {
    bottom: 20px;
    right: calc(50% - 230px);
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media screen and (min-width: 768px) {
  .p-woofy__pointBox .-list li:nth-child(3)::before {
    top: 15px;
    left: -14px;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .p-woofy__pointBox .-list li:nth-child(4) {
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 960px) {
  .p-woofy__pointBox .-list li:nth-child(4) {
    left: calc(50% - 250px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px) {
  .p-woofy__pointBox .-list li:nth-child(4)::before {
    top: 20px;
    right: -14px;
  }
}
.p-woofy__pointBox .-list li + li {
  margin-top: 10px;
}
.p-woofy__pointBox .-list li .-small {
  font-size: var(--font12);
}
@media screen and (min-width: 960px) {
  .p-woofy__pointBox .-list li .-small {
    font-size: var(--font14);
  }
}
.p-woofy__pointBox .-list li .tab-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-woofy__pointBox .-list li .tab-only {
    display: block;
  }
}

.mt0 {
  margin-top: 0;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}