@charset "UTF-8";

:root {
  /* jsによるvh算出時の保険 */
  --vw: 1vw;
  --vh: 1vh;

  /* ガター */
  --g: 20px;

  /* gap */
  --gap: 20px;

  /* Wrapper最大幅 */
  --w-l: 1200px;
  --w-m: 995px;
  --w-s: 790px;
  --w-c: calc(100% - var(--g) * 2);
  --w-c-l: min(var(--w-c), var(--w-l));
  --w-c-m: min(var(--w-c), var(--w-m));
  --w-c-s: min(var(--w-c), var(--w-s));

  /* 親要素に依存させない幅 */
  --w-c-l-vw: min( calc( var(--vw) * 100 - var(--g) * 2 ), var(--w-l) );

  /* 基本マージンサイズ */
  --m-xs: 20px;
  --m-s: 30px;
  --m-m: 40px;
  --m-l: 80px;

  /* カラー */
  --c-bg: #f4f4f6; /* 背景 */
  --c-rd: #C62F1D; /* レッド */
  --c-bl: #0852A0; /* ブルー */

  /* フォント */
  --f-ja: "Noto Sans JP";
  --f-en: "Instrument Sans";
}

@media (min-width: 900px){
  :root {
    /* ガター */
    --g: 60px;

    /* gap */
    --gap: 30px;

    /* 基本マージンサイズ */
    --m-xs: 20px;
    --m-s: 30px;
    --m-m: 60px;
    --m-l: 120px;
  }
}


/* ------------------------------------------------------------


common


------------------------------------------------------------ */
/**
 * uaplus.css version 0.0.1
 */
*,*::after,*::before{box-sizing:border-box}:focus-visible{outline-offset:3px}:where(html){-webkit-text-size-adjust:none;text-size-adjust:none}:where(html){line-height:1.5}:where(html){scrollbar-gutter:stable}:where(h1){font-size:2em;margin-block:.67em}:where(abbr[title]){cursor:help;text-decoration-line:underline;text-decoration-style:dotted}@media (forced-colors:active){mark{color:HighlightText;background-color:Highlight}}:where(del,ins,s)::before,:where(del,ins,s)::after{clip-path:inset(100%);clip:rect(1px,1px,1px,1px);height:1px;width:1px;overflow:hidden;position:absolute;white-space:nowrap;content:"test"}:where(s)::before{content:"stricken text start "}:where(s)::after{content:" stricken text end"}:where(del)::before{content:"deletion start "}:where(del)::after{content:" deletion end"}:where(ins)::before{content:"insertion start "}:where(ins)::after{content:" insertion end"}:where(audio,iframe,img,svg,video){max-block-size:100%;max-inline-size:100%}:where(fieldset){min-inline-size:0}:where(label):has(+:where(textarea,input,select)){display:block}:where(textarea:not([rows])){min-block-size:6em}:where(button,input,select,textarea){font-family:inherit;font-size:inherit}:where([type="search"]){-webkit-appearance:textfield}@supports (-webkit-touch-callout:none){:where([type="search"]){border:1px solid -apple-system-secondary-label;background-color:canvas}}:where([type="tel"],[type="url"],[type="email"],[type="number"]):not(:placeholder-shown){direction:ltr}:where(table){border-collapse:collapse;border:1px solid}:where(th,td){border:1px solid;padding:.25em .5em}:where(dialog)::backdrop{background:oklch(0% 0 0 / .3)}:where(dialog),:where(dialog)::backdrop{opacity:0;transition:opacity 300ms ease-out,display 300ms allow-discrete,overlay 300ms allow-discrete}:where(dialog[open]),:where(dialog[open])::backdrop{opacity:1}@starting-style{:where(dialog[open]),:where(dialog[open])::backdrop{opacity:0}}[hidden]:not([hidden="until-found"]){display:none!important}


/* PC or SP
---------------------------------------- */

@media (max-width: 899px){
  .pc {
    display: none;
  }
}

@media (min-width: 900px){
  .sp {
    display: none;
  }

  a,
  button {
    transition: all 0.3s ease;
    backface-visibility: hidden;
  }

  a:hover,
  button:hover {
    cursor: pointer;
    opacity: .6;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }
}


/* font settings
---------------------------------------- */
html {
  font-size: 10px;
  line-height: 2;
  font-family: var(--f-ja), sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

.en {
  font-family: var(--f-en), sans-serif;
}


/* Basic Tags
---------------------------------------- */
* {
  margin: 0;
}

html {
  background: var(--c-bg);
}

body {
  font-size: 1.4rem;
  letter-spacing: .05em;
  font-weight: 400;
  color: #000;
  background: var(--c-bg);
  min-width: 320px;
}

a {
  color: var(--c-bl);
}

b, strong, h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

p, ol, ul, dl, figure, blockquote, pre,
h1, h2, h3, h4, h5, h6, table {
  margin: var(--m-xs) 0 0;
}

ul {
  padding: 0 0 0 1.25em;
}

ol {
  padding: 0 0 0 1.5em;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
}

input, button, textarea, select {
  font: inherit;
}

@media (min-width: 900px){

}

/* ------------------------------------------------------------

g-l：ローディング

------------------------------------------------------------ */
.g-l {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--c-bg);
  z-index: 9999;
}

body.loaded .g-l {
  /* フェード開始後すぐに背景要素をクリックできるように */
  pointer-events: none;
}

.g-l_spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-top: 3px solid #ddd;
  border-right: 3px solid transparent;
  border-radius: 50%;
  animation: rotation .8s linear infinite;
  transform: rotate(0deg) translate(-50%, -50%);
}
@keyframes rotation{
  from{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
}



/* ------------------------------------------------------------

modules：共通モジュール

------------------------------------------------------------ */
.grecaptcha-badge {
  z-index: 99;
}


/* m-gt
---------------------------------------- */
.m-gt {
  display: inline-block;
  color: transparent;
  background-image: linear-gradient(90deg, var(--c-rd) 0, var(--c-bl) 100%);
  -webkit-background-clip: text;
}


/* m-btn
---------------------------------------- */
.m-btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
  color: #000;
  padding: 15px 20px;
  border: solid 1px #666;
  width: 100%;
  transition: all .3s ease;
  overflow: hidden;

  &::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 4px);
    right: 23px;
  }
}

.m-btn-ex {
  &::after {
    width: 8px;
    height: 6px;
    border: solid 1px #000;
    transform: rotate(0);
    position: absolute;
    right: 20px;
  }

  &::before {
    content: '';
    display: block;
    width: 8px;
    height: 6px;
    border-left: solid 1px #000;
    border-bottom: solid 1px #000;
    position: absolute;
    right: 22px;
    top: calc(50% - 2px);
  }
}

@media (min-width: 900px){
  .m-btn {
    max-width: 360px;

    &:hover {
      opacity: 1;
      background: var(--c-bl);
      border-color: var(--c-bl);
      color: #fff;
    }

    &:hover::after,
    &:hover::before {
      border-color: #fff;
    }
  }

}


/* m-btnS
---------------------------------------- */
.m-btnS {
  display: inline-block;
  color: #000;
  border-bottom: solid 1px #666;
  text-decoration: none;
  font-size: 10px;
  padding: 0 30px 0 0;
  position: relative;
  font-family: var(--f-en), sans-serif;

  &:after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 1px #666;
    border-right: solid 1px #666;
    transform: rotate(45deg);
    position: absolute;
    top: calc( 50% - 3px);
    right: 3px;
    transition: all .3s ease;
  }
}

@media (min-width: 900px){
  .m-btnS {
    &:hover {
      opacity: 1;
      color: var(--c-bl);
      border-color: var(--c-bl);
    }

    &:hover::after {
      border-color: var(--c-bl);
    }
  }
}


/* m-back
---------------------------------------- */
.m-back {
  display: inline-block;
  padding: 0 0 0 24px;
  text-decoration: none;
  color: #000;
  position: relative;

  &::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: solid 2px #000;
    border-left: solid 2px #000;
    transform: rotate(-45deg);
    position: absolute;
    top: calc(50% - 5px);
    left: 4px;
    transition: all .3s ease;
  }
}

@media (min-width: 900px){
  .m-back {
    &:hover {
      opacity: 1;
      color: var(--c-bl);
    }
    &:hover::before {
      border-color: var(--c-bl);
    }
  }
}


/* m-pageTtl
---------------------------------------- */
.m-pageTtl_en {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: bold;
  color: var(--c-rd);
}

.m-pageTtl_ja {
  margin: 0;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 2;
}

@media (min-width: 900px){
  .m-pageTtl_en {
    font-size: 4.8rem;
  }
  .m-pageTtl_ja {
    font-size: 1.4rem;
  }
}


/* m-pageH
---------------------------------------- */
.m-pageH {
  margin: 0 auto;
  width: var(--w-c-l);
  padding: 120px 0 0;
}

@media (min-width: 900px){
  .m-pageH {
    padding: 240px 0 0;
  }
}


/* m-pageI
---------------------------------------- */
.m-pageI {
  margin: var(--m-s) 0 0;
  aspect-ratio: 3 / 2;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.m-pageI-m {
  margin-top: var(--m-m);
}

@media (min-width: 900px){
  .m-pageI {
    aspect-ratio: 3 / 1;
  }
}


/* m-pageL
---------------------------------------- */
.m-pageL {
  margin: var(--m-m) auto 0;
  width: var(--w-c-l);
}

.m-pageL_ttl {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 600;
}

@media (min-width: 900px){
  .m-pageL_ttl {
    font-size: 3.2rem;
  }
}


/* m-ttl
---------------------------------------- */
.m-ttl {
  margin: 0;
}

.m-ttl_en {
  margin: 0;
  font-family: var(--f-en), sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  color: var(--c-rd);
}

.m-ttl_ja {
  margin: 8px 0 0;
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 600;
}

@media (min-width: 900px){
  .m-ttl_en {
    font-size: 1.4rem;
  }

  .m-ttl_ja {
    font-size: 2.4rem;
  }
}


/* m-list
---------------------------------------- */
.m-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--m-m);
}

.m-list_img img {
  width: 100%;
}

.m-list_cont {
  margin: var(--m-xs) 0 0;
}

.m-list_btn {
  margin: var(--m-s) 0 0;
}

@media (min-width: 900px){
  .m-list_i {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
  }

  .m-list-r .m-list_img {
    order: 2;
  }

  .m-list_cont {
    margin: 0;
    display: flex;
    align-items: center;
  }

  .m-list_cont_i {
    width: 100%;
  }
}


/* m-cta
---------------------------------------- */
.m-cta {
  margin: var(--m-l) 0 calc(var(--m-l) * -1 - 30px);
  position: relative;
  padding: var(--m-l) 0;
}

.m-cta_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.1);
  }
}

.m-cta_i {
  position: relative;
  background: rgba(255,255,255,.6);
  margin: 0 auto;
  width: var(--w-c-m);
  padding: var(--g);
}

.m-cta_img {
  text-align: center;

  & img {
    max-width: 35%;
  }
}

.m-cta_cont {
  margin: var(--m-xs) 0 0;
}

@media (min-width: 600px){
  .m-cta_i {
    display: grid;
    grid-template:
      "img ttl"
      "img txt"
      "img btn" auto / 1fr 2fr;
    gap: 0 var(--gap);
    align-items: center;
  }

  .m-cta_img {
    grid-area: img;

    & img {
      max-width: 60%;
    }
  }

  .m-cta_ttl {
    grid-area: ttl;
  }

  .m-cta_txt {
    grid-area: txt;
  }

  .m-cta_btn {
    grid-area: btn;
  }

}

@media (min-width: 900px){
  .m-cta_i {
    grid-template-columns: 1fr 1fr;
  }
}



/* m-pagination
---------------------------------------- */
.m-pagination {
  margin: var(--m-l) auto 0;
  width: var(--w-c-l);

  & .wp-pagenavi {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding: 0 100px;
  }

  & span,
  & a {
    text-decoration: none;
    color: #000;
  }

  & .wp-pagenavi {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding: 0 100px;
  }

  & .page,
  & .extend {
    display: none;
  }

  & .pages {
    order: 2;
  }

  & .nextpostslink,
  & .previouspostslink {
    display: block;
    font-size: 1.2rem;
    line-height: 2.8rem;
    font-weight: 400;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 20px 0 0;
  }

  & .previouspostslink {
    right: auto;
    left: 0;
    padding: 0 0 0 20px;
  }

  & .nextpostslink::after,
  & .previouspostslink::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    position: absolute;
    right: 4px;
    top: calc(50% - 5px);
  }

  & .previouspostslink::after {
    transform: rotate(-135deg);
    left: 4px;
    right: auto;
  }

}

@media (min-width: 900px){

  .m-pagination {
    & .wp-pagenavi {
      padding: 0 100px;
    }

    & a:hover {
      opacity: 1;
      color: var(--c-bl);
    }

    & .pages {
      display: none;
    }

    & .page,
    & .extend,
    & .current {
      font-size: 1.4rem;
      display: block;
      text-align: center;
      width: 32px;
      margin: 0 4px;
      padding: 2px 0;
      background: #fff;
      border-radius: 4px;
    }

    & .extend {
      background: none;
    }

    & .current {
      background: #000;
      color: #fff;
    }

    & a.page:hover {
      background: var(--c-bl);
      color: #fff;
    }

    & .nextpostslink,
    & .previouspostslink {
      font-size: 1.4rem;
      padding: 0 24px 0 0;
    }

    & .previouspostslink {
      padding: 0 0 0 24px;
    }

    & .nextpostslink:hover,
    & .previouspostslink:hover {
      opacity: 1;
    }

    & .nextpostslink:hover::after,
    & .previouspostslink:hover::after {
      border-color: var(--c-bl);
    }
  }

}



/* ------------------------------------------------------------

g-header：ヘッダー

------------------------------------------------------------ */

.g-header {
  height: 60px;
  background: var(--c-bg);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: all .3s ease;
  background: #fff;
}

body:not(.scrolled) .g-header {
  background: transparent;
}

body.home:not(.scrolledH) .g-header {
  background: transparent;
}

.g-header_logo {
  position: absolute;
  top: 10px;
  left: 20px;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}

.g-header_logo_a {
  display: inline-block;
  text-decoration: none;
  padding: 0 0 0 52px;
  color: #000;
  background: url(../img/common/logo-m.svg) no-repeat left center / 46px 40px;
  transition: all .3s ease;
}

body.home:not(.scrolledH) .g-header_logo_a {
  color: #fff;
  background-image: url(../img/common/logo-m-w.svg);
}

.g-header_btn {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 100;
  margin: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.g-header_btn:hover {
  cursor: pointer;
}

.g-header_btn_bar {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
}

.g-header_btn_bar::before,
.g-header_btn_bar::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--c-bl);
  position: absolute;
  left: 0;
  top: 20px;
  transition: all .3s ease;
}

body.home:not(.scrolledH) .g-header_btn_bar::before,
body.home:not(.scrolledH) .g-header_btn_bar::after {
  background: #fff;
}

.g-header_btn_bar::before {
  transform: matrix(1,0,0,1,0,5);
}
.g-header_btn_bar::after {
  transform: matrix(1,0,0,1,0,-5);
}

/* menu open */
body.menuOpen {
  overflow: hidden;
}

body.menuOpen .g-header_btn_bar::before {
  animation: menuToggleBtn1 .3s ease both;
}
body.menuOpen .g-header_btn_bar::after {
  animation: menuToggleBtn2 .3s ease both;
}
@keyframes menuToggleBtn1 {
  0% { transform: matrix(1,0,0,1,0,5); }
  50% { transform: matrix(1,0,0,1,0,0); }
  100% { transform: matrix(0.7071,0.7071,-0.7071,0.7071,0,0);background: #fff; }
}
@keyframes menuToggleBtn2 {
  0% { transform: matrix(1,0,0,1,0,-5); }
  50% { transform: matrix(1,0,0,1,0,0); }
  100% { transform: matrix(0.7071,-0.7071,0.7071,0.7071,0,0);background: #fff; }
}

/* menu close */
body.menuClose .g-header_btn_bar::before {
  animation: menuToggleBtn1-r .3s ease both;
}
body.menuClose .g-header_btn_bar::after {
  animation: menuToggleBtn2-r .3s ease both;
}
@keyframes menuToggleBtn1-r {
  0% { transform: matrix(0.7071,0.7071,-0.7071,0.7071,0,0); background: #fff; }
  50% { transform: matrix(1,0,0,1,0,0); }
  100% { transform: matrix(1,0,0,1,0,5); }
}
@keyframes menuToggleBtn2-r {
  0% { transform: matrix(0.7071,-0.7071,0.7071,0.7071,0,0); background: #fff; }
  50% { transform: matrix(1,0,0,1,0,0); }
  100% { transform: matrix(1,0,0,1,0,-5); }
}

@media (min-width: 900px){
  .g-header {
    height: 100px;
  }

  .g-header_logo {
    top: 26px;
    left: 30px;
  }

  .g-header_logo_a {
    padding: 4px 0 0 181px;
    background: url(../img/common/logo.svg) no-repeat left top / 161px 40px;
  }

  body.home:not(.scrolledH) .g-header_logo_a {
    color: #fff;
    background-image: url(../img/common/logo-w.svg);
  }

  .g-header_btn {
    top: 30px;
    right: 30px;
  }
}

@media (min-width: 1024px){
  .g-header_btn {
    display: none;
  }
}


/* g-nav
  ---------------------------------------- */
@media (max-width: 1023px){
  .g-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    transition: all .3s ease;
    overflow: hidden;
    pointer-events: none;
  }

  .g-nav_overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background: rgba(0,0,0,.2);
    opacity: 0;
    transition: opacity .3s ease;
  }

  .g-nav a {
    text-decoration: none;
    color: #fff;
  }

  .g-nav_i {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-45deg, #C62F1D 0, #0852A0 100%);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior-y: contain;
    -ms-overflow-style: none;
    scrollbar-width: none;
    transform: translateX(100%);
    transition: all .3s ease;
  }

  .g-nav_i::-webkit-scrollbar{
    display: none;
  }

  .g-nav_i_i {
    min-height: calc(100% + 1px);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .g-nav_i_i_i {
    padding: var(--m-l) 0;
    width: 60%;
  }

  /* menu open */
  body.menuOpen .g-nav_overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.menuOpen .g-nav_i {
    transform: translateX(0);
    pointer-events: auto;
  }

  .g-header_nav_l {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.6rem;
    display: grid;
    text-align: center;
  }

  .g-header_nav_l_i {
    overflow: hidden;
    border-bottom: solid 1px rgba(255,255,255,.1);
  }

  .g-header_nav_l_a {
    display: block;
    padding: 8px 0;
    opacity: 0;
    transform: translateY(100%);
  }

  body.menuOpen .g-header_nav_l_a {
    animation: navOpen .5s ease-out .3s forwards;
  }
  @keyframes navOpen {
    100% { transform: translateY(0) ; opacity: 1; }
  }


}
@media (min-width: 1024px){
  .g-header_nav_l {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 99;
    font-size: 1.2rem;
  }

  .g-header_nav_l_a {
    margin: 0 0 0 20px;
    font-size: 1.2rem;
    line-height: 40px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    position: relative;
  }

  body.home:not(.scrolledH) .g-header_nav_l_a {
    color: #fff;
  }

  .g-header_nav_l_a.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-rd);
    position: absolute;
    bottom: -8px;
    left: 0;
    transition: all .3s ease;
  }

  body.home:not(.scrolledH) .g-header_nav_l_a.active::after {
    background: #fff;
  }

  .g-header_nav_l_a-r,
  .g-header_nav_l_a-c {
    display: block;
    width: 120px;
    border: solid 1px var(--c-bl);
    background: var(--c-bl);
    color: #fff;
    line-height: 38px;
    text-align: center;
  }

  .g-header_nav_l_a-c {
    margin: 0 0 0 8px;
    border: solid 1px var(--c-rd);
    background: var(--c-rd);
  }

  body.home:not(.scrolledH) .g-header_nav_l_a-r,
  body.home:not(.scrolledH) .g-header_nav_l_a-c {
    border: solid 1px rgba(255,255,255,.6);
    background: transparent;
  }
}




/* ------------------------------------------------------------

g-contents：コンテンツ

------------------------------------------------------------ */

.g-contents {
  display: block;
  margin: 0;
  padding: 0;
}





/* ------------------------------------------------------------

g-footer：フッター

------------------------------------------------------------ */
.g-footer {
  margin: var(--m-l) 0 0;
}

.g-footer_i {
  background: #fff;
}

/* g-footer_r
---------------------------------------- */
.g-footer_r {
  margin: var(--m-l) auto 0;
  width: var(--w-c-l);
}

.g-footer_r_a {
  display: block;
  width: 60px;
  height: 30px;
  background: #fff;
  margin: 0 0 0 auto;
  overflow: hidden;
  text-indent: -9999px;
  position: relative;
}

.g-footer_r_a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #000;
  border-left: solid 2px #000;
  transform: rotate(45deg);
  position: absolute;
  top: 15px;
  left: calc(50% - 5px);
}

@media (min-width: 900px){
  .g-footer_r_a:hover {
    opacity: 1;
  }

  .g-footer_r_a:hover::after {
    border-color: var(--c-bl);
  }
}


/* g-footer_info
---------------------------------------- */
.g-footer_info {
  margin: 0 auto;
  padding: 40px 0 0;
  width: var(--w-c-l);
}

.g-footer_info_b_logo {
  margin: 0;
  max-width: 186px;
}

.g-footer_info_b_name {
  margin: -4px 0 0;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
}

.g-footer_info_i {
  margin: 30px 0 0;
}

.g-footer_info_i_ttl {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  border-bottom: solid 1px #ddd;
  padding: 0 0 8px 0;
}

.g-footer_info_i_txt {
  margin: 8px 0 0;
  font-size: 1.2rem;
}

@media (min-width: 900px){
  .g-footer_info {
    padding: 120px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
  }

  .g-footer_info_b {
    order: 2;
    text-align: right;
  }

  .g-footer_info_b_logo {
    margin: -24px 0 0;
    max-width: 279px;
  }

  .g-footer_info_i {
    margin: 0;
  }

}


/* g-footer_link
---------------------------------------- */
.g-footer_link {
  margin: 40px 0 0;
}

.g-footer_link_sns {
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  margin: 0;
  padding: 30px 20px;
  list-style: none;
  display: flex;
  gap: 20px;
}

.g-footer_link_sns_i {
  width: 32px;
}

.g-footer_link_sm_l {
  margin: 0;
  padding: 0;
  list-style: none;
}

.g-footer_link_sm_i {
  border-bottom: solid 1px #ddd;
}

.g-footer_link_sm_a {
  display: block;
  position: relative;
  color: #000;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 20px;
}

.g-footer_link_sm_a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 23px;
}

@media (min-width: 900px){
  .g-footer_link {
    margin: 60px auto 0;
    padding: 60px 0;
    width: var(--w-c-l);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gap);
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
  }

  .g-footer_link_sns {
    grid-column: span 3;
    order: 2;
    border: none;
    padding: 0;
    justify-content: end;
  }

  .g-footer_link_sm {
    grid-column: span 9;
    display: grid;
    grid-template-columns: subgrid;
  }

  .g-footer_link_sm_l {
    grid-column: span 2;
  }

  .g-footer_link_sm_l:last-child {
    grid-column: span 3;
  }

  .g-footer_link_sm_i {
    border: none;
    font-size: 1.2rem;
    line-height: 2;
  }

  .g-footer_link_sm_a {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 2;
    padding: 0 0 0 20px;
  }

  .g-footer_link_sm_a:hover {
    opacity: 1;
    color: var(--c-bl);
  }

  .g-footer_link_sm_a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    left: 0;
  }

  .g-footer_link_sm_a::after {
    content: none;
  }
}


/* g-footer_bnr
---------------------------------------- */
.g-footer_bnr {
  width: var(--w-c-l);
  margin: 0 auto;
  padding: var(--m-m) 0;
}

.g-footer_bnr_l {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--g);
  justify-content: center;
  align-items: center;
  max-width: 300px;
}

@media (min-width: 900px){
  .g-footer_bnr_l {
    max-width: none;
  }
}


/* g-footer_credit
---------------------------------------- */
.g-footer_credit {
  border-top: solid 1px #ddd;
  padding: var(--m-m) 0;
}

.g-footer_credit_i {
  margin: 0;
  text-align: center;
  font-size: 1rem;
}




/* ------------------------------------------------------------

home：トップページ

------------------------------------------------------------ */

/* ad
---------------------------------------- */
.ad {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 225px 90px;
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  background: #fff;
  font-size: 1rem;
}

.ad_img {
  width: 90px;
}

.ad_cont {
  padding: 8px 24px;
}

.ad_ttl {
  margin: 4px 0 0;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
}

.ad_txt {
  margin: 0;
}

.ad_btn {
  margin: 5px 0 0;
}

.ad_close {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 8px;
  position: absolute;
  top: 8px;
  right: 8px;
}

.ad_close::before,
.ad_close::after{
  content: '';
  display: block;
  width: 8px;
  height: 1px;
  background: #666;
  position: absolute;
  top: 8px;
  left: 4px;
  transform: rotate(45deg);
}

.ad_close::after{
  transform: rotate(-45deg);
}

@media (min-width: 900px){
  .ad_close:hover {
    cursor: pointer;
  }
}


/* homeFV
---------------------------------------- */
.homeFV {
  background: #000;
  height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homeFV_arrow {
  width: 32px;
  height: 32px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  bottom: 36px;
  left: calc(50% - 16px);
}

.homeFV_bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.homeFV_bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homeFV_overlay {
  background: rgba(0,0,0,.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
}

.homeFV_overlay2 {
  background: rgba(255,255,255,.6);
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  opacity: 0;
  backdrop-filter: blur(10px);
}

.homeFV_c {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  text-align: center;
}

.homeFV_c_l {
  border-top: solid 1px #fff;
}

.homeFV_c_t1 {
  padding: 0 0 min(3vw, 30px);
  overflow: hidden;
}

.homeFV_c_t1_i {
  display: inline-block;
  font-weight: bold;
  font-style: italic;
  font-size: min(11vw, 100px);
  line-height: 1;
}

.homeFV_c_t2 {
  padding: min(3vw, 30px) 0 0;
  overflow: hidden;
}

.homeFV_c_t2_i {
  display: inline-block;
  font-weight: 600;
  font-size: min(4vw, 24px);
  padding: 0 0 0 min(10vw, 68px);
  background: url(../img/common/logo-m-w.svg) no-repeat left center / min(8vw, 48px) auto;
}

@media (min-width: 900px){
}


/* homeA
---------------------------------------- */
.homeA {
  padding: min(50svh, 150px) 0;
  position: relative;
}

.homeA_img {
  overflow: hidden;
}

.homeA_img_i {
  display: flex;
}

.homeA_img_i_i {
  padding: 0 min(2vw, 15px);
  flex-shrink: 0;
}

.homeA_img_i_i_i {
  overflow: hidden;
  border-radius: 8px;
  width: min(50vw, 278px);
}

.homeA_img_i_i_i img {
  width: 100%
}

.homeA_cont {
  width: var(--w-c-l);
  margin: max(-7vw, -50px) auto 0;
  position: relative;
  text-align: center;
}

.homeA_cont_ttl_ja {
  margin: 0;
  font-size: min(7vw, 4rem);
  line-height: 1.5;
}

.homeA_cont_ttl_en {
  margin: 8px 0 0;
  font-size: 1rem;
  font-weight: bold;
  color: #999;
}

.homeA_cont_txt {
  margin: 30px 0 0;
}

.homeA_cont_btn {
  margin: var(--m-m) 0 0;
}

@media (min-width: 900px){
  .homeA {
    padding: min(50svh, 300px) 0;
  }
  .homeA_cont_ttl_en {
    font-size: 1.4rem;
  }

  .homeA_img_i_i_i {
    width: max(20vw, 278px);
  }
}


/* homeN
---------------------------------------- */
.homeN {
  margin: var(--m-l) auto 0;
  width: var(--w-c-l);
}

.homeN_h {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.homeN_btn {
  padding: 0 0 4px 0;
}

.homeN_c {
  margin: 30px 0 0;
}

@media (min-width: 900px){
  .homeN {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .homeN_h {
    display: block;
  }

  .homeN_c {
    grid-column: span 2;
    margin: 0;
  }
}



/* newsListS
---------------------------------------- */
.newsListS {
  margin: 0;
  padding: 0;
  list-style: none;
}

.newsListS_i {
  border-bottom: solid 1px #ddd;
}

.newsListS_i:first-child {
  border-top: solid 1px #ddd;
}

.newsListS_a {
  display: block;
  padding: 20px 30px 20px 0;
  text-decoration: none;
  position: relative;

  &::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 5px);
    right: 4px;
  }
}

.newsListS_date {
  display: block;
  font-size: 1.2rem;
  color: #000;
  opacity: .4;
}

.newsListS_ttl {
  margin: 0;
  font-size: 1.4rem;
  color: #000;
}

@media (min-width: 900px){
  .newsListS_a {
    padding: 30px 0;
    text-decoration: none;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    &:hover {
      opacity: 1;
    }

    &::after {
      right: 24px;
      transition: all .3s ease;
    }

    &::before {
      content: '';
      display: block;
      width: 0;
      background: rgba(255,255,255,.5);
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      opacity: 0;
      transition: all .3s ease;
    }

    &:hover::before {
      width: 100%;
      opacity: 1;
    }

    &:hover::after {
      border-color: var(--c-bl);
    }
  }

  .newsListS_date {
    padding: 0 0 0 20px;
    line-height: 2.8rem;
    transition: all .3s ease;
    position: relative;
  }

  .newsListS_a:hover .newsListS_date {
    color: var(--c-bl);
  }

  .newsListS_ttl {
    grid-column: span 3;
    padding: 0 50px 0 0;
    transition: all .3s ease;
    position: relative;
  }

  .newsListS_a:hover .newsListS_ttl {
    color: var(--c-bl);
  }
}


/* homeB
---------------------------------------- */
.homeB {
  margin: var(--m-l) 0 0;
}

.homeB_h {
  margin: 0 auto;
  width: var(--w-c-l);
}

.homeB_l {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.homeB_l_i {
  margin: 1px 0 0;
  width: 100%;
}

.homeB_l_a {
  display: flex;
  align-items: center;
  text-decoration: none;
  aspect-ratio: 4 / 3;
  width: 100%;
  background: #ddd;
  padding: var(--m-m) var(--gap);
  position: relative;
}

.homeB_l_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.homeB_l_bg::after {
  content: '';
  display: block;
  background: rgba(0,0,0,.5);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all .6s ease;
}

.homeB_l_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s ease;
}

.homeB_l_btn {
  width: min(100%, 360px);
  margin: 0 auto;
  border-bottom: solid 1px rgba(255,255,255,.6);
  text-align: center;
  position: relative;
  color: #fff;
  padding: 0 0 12px 0;
}

.homeB_l_btn::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  bottom: calc(50% - 5px);
  right: 4px;
}

.homeB_l_btn_ja {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 600;
}

.homeB_l_btn_en {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}

@media (min-width: 768px){
  .homeB_l {
    display: flex;
    gap: 1px;
    margin: 30px auto 0;
    max-width: 1600px;
  }

  .homeB_l_i {
    margin: 0;
  }

  .homeB_l_a {
    aspect-ratio: 3 / 4;
    align-items: end;
  }

  .homeB_l_a:hover {
    opacity: 1;
  }

  .homeB_l_a:hover .homeB_l_bg::after {
    opacity: 0;
  }

  .homeB_l_a:hover .homeB_l_bg img {
    transform: scale(1.15);
  }

}


/* homeR
---------------------------------------- */
.homeR {
  margin: var(--m-l) 0 0;
}

.homeR_h {
  margin: 0 auto;
  width: var(--w-c-l);
}

.homeR_c {
  margin: 30px auto 0;
  width: var(--w-c-l);
}

.homeR_img {
  margin: 0 0 0 calc(var(--g) * -1);
}

.homeR_cont {
  margin: var(--m-xs) 0 0;
}

.homeR_ttl {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

@media (min-width: 900px){
  .homeR_c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items: center;
  }

  .homeR_img {
    grid-column: span 2;
    margin: 0 0 0 min( calc(var(--g) * -1), calc( 600px - var(--vw) * 50 ) );
  }

  .homeR_cont {
    margin: 0;
  }

  .homeR_ttl {
    font-size: 2.4rem;
  }
}




/* ------------------------------------------------------------

business:ビジネス

------------------------------------------------------------ */

/* feature
---------------------------------------- */
.feature {
  margin: var(--m-m) auto 0;
  width: var(--w-c-l);
}

.bCover {
  margin: var(--m-l) 0 0;
}

.bCover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* bFo
---------------------------------------- */
.bFo {
  margin: var(--m-m) auto 0;
  width: var(--w-c-l);
}

.foTable {
  margin: var(--m-s) 0 0;
  border: 0;
  border-bottom: solid 1px #888;
}

.foTable td {
  border: none;
  border-top: solid 1px #888;
  padding: var(--m-xs) 0;
  vertical-align: top;
  font-size: 1.2rem;
}

.foTable_q {
  text-align: right;
}

.foList {
  margin: var(--m-m) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  text-align: center;
}

.foList_txt {
  margin: 0;
}


@media (min-width: 900px){
  .foTable td {
    font-size: 1.4rem;
  }

  .foTable_t {
    width: calc(100% / 3);
  }

  .foTable_w {
    width: calc(100% / 6);
  }

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


}


/* sL
---------------------------------------- */
.sL {
  margin: var(--m-l) auto 0;
  width: var(--w-c-l);
}

.sL_l {
  margin: var(--m-s) 0 0;
  padding: 0;
  list-style: none;
}

.sL_i {
  border-bottom: solid 1px #888;
  padding: var(--m-m) 0;
}

.sL_i:first-child {
  border-top: solid 1px #888;
}

.sL_cont {
  margin: var(--m-xs) 0 0;
}

.sL_logo {
  margin: 0 0 var(--m-xs);
}

.sL_ttl {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.sL_txt {
  margin: 8px 0 0;
}

.sL_access {
  margin: 10px 0 0;
  font-size: 1.4rem;
}

.sL_accessTxt {
  margin: 0;
}

.sL_map {
  margin: var(--m-s) 0 0;
  aspect-ratio: 1;
  position: relative;
}

.sL_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 600px){
  .sL_info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
  }

  .sL_img {
    order: 2;
  }

  .sL_cont {
    margin: 0;
  }

  .sL_map {
    aspect-ratio: 2 / 1;
  }
}

@media (min-width: 900px){
  .sL_info {
    grid-template-columns: repeat(3, 1fr);
  }

  .sL_cont {
    grid-column: span 2;
  }

  .sL_ttl {
    font-size: 2rem;
  }

  .sL_map {
    aspect-ratio: auto;
    width: 100%;
    height: 300px;
  }
}


/* csW
---------------------------------------- */
.csW {
  margin: var(--m-l) auto 0;
  width: var(--w-c-l);
}

.csW_img {
  margin: 0 0 0 calc(var(--g) * -1);
}

.csW_cont {
  margin: var(--m-xs) 0 0;
}

.csW_ttl {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

@media (min-width: 900px){
  .csW {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items: center;
  }

  .csW_img {
    grid-column: span 2;
    margin: 0 0 0 min( calc(var(--g) * -1), calc( 600px - var(--vw) * 50 ) );
  }

  .csW_cont {
    margin: 0;
  }

  .csW_ttl {
    font-size: 2.4rem;
  }
}


/* csV
---------------------------------------- */
.csV {
  margin: var(--m-l) auto 0;
  width: var(--w-c-m);
}

.csV_ttl {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

@media (min-width: 900px){
  .csV_ttl {
    margin: var(--m-s) 0 0;
    text-align: center;
    font-size: 2.4rem;
  }
}


/* ------------------------------------------------------------

careers：採用情報

------------------------------------------------------------ */

/* caMsg
---------------------------------------- */
.caMsg {
  margin: 60px 0 0;
  padding: var(--m-l) 0;
  background: #fff;
}

.caMsg_h {
  margin: 0 auto;
  width: var(--w-c-s);
}

.caMsg_img {
  margin: 30px auto 0;
  width: var(--w-c-l);
  aspect-ratio: 2 / 1;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.caMsg_cont {
  margin: 0 auto;
  width: var(--w-c-s);

  & h4 {
    margin: var(--m-s) 0 0;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
  }
}

@media (min-width: 900px){
  .caMsg {
    margin: 80px 0 0;
  }

  .caMsg_img {
    aspect-ratio: 3 / 1;
  }

  .caMsg_cont {
    & h4 {
      font-size: 2.4rem;
    }
  }
}


/* caMv
---------------------------------------- */
.caMv {
  margin: var(--m-l) auto 0;
  width: var(--w-c-s);
  text-align: center;
}

.caMv_txt {
  margin: var(--m-m) 0 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;

  & span {
    display: inline-block;
    padding: 0 30px;
    position: relative;

    &::before,
    &::after {
      content: '';
      display: block;
      width: 1px;
      height: 30px;
      background: #000;
      transform: rotate(45deg);
      position: absolute;
      top: calc(50% - 15px);
      right: 0;
    }

    &::before {
      right: auto;
      left: 0;
      transform: rotate(-45deg);
    }
  }
}

.caMv_cont {
  margin: var(--m-xs) 0 0;
  position: relative;
}

.caMv_movie {
  aspect-ratio: 16 / 9;
  width: min(100%, 80vw);
  margin: 0 auto;
  position: relative;

  & iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.caMv_bot {
  position: absolute;
  width: 80px;
  bottom: 0;
  right: -25px;
}

.caMv_credit {
  font-size: 1.2rem;
}

@media (min-width: 900px){
  .caMv_bot {
    width: 119px;
    right: max( calc(9vw * -1), -129px);
  }
}


/* caNav
---------------------------------------- */
.caNav {
  margin: var(--m-l) 0 calc(var(--m-l) * -1);
  padding: var(--m-l) 0;
  background: #fff;
}

.caNav_i {
  margin: 0 auto;
  width: var(--w-c-l);
}

.caV {
  margin: var(--m-m) 0 0;
}

.caV_l {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.caV_a {
  display: block;
  height: 100%;
  border-bottom: solid 1px #888;
  position: relative;
  color: #000;
  text-decoration: none;
  padding: 0 0 20px 0;

  &::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    position: absolute;
    bottom: 25px;
    right: 4px;
  }
}

.caV_img {
  aspect-ratio: 1;
  overflow: hidden;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
  }
}

.caV_msg {
  margin: 12px 0 0;
  font-weight: 600;
}

.caV_name {
  margin: 12px 0 0;
  padding: 0 20px 0 0;
  font-size: 1rem;
}

@media (min-width: 900px){
  .caV_l {
    grid-template-columns: repeat(4, 1fr);
  }

  .caV_a:hover {
    opacity: 1;

    &::after {
      border-color: var(--c-bl);
    }

    .caV_img img {
      transform: scale(1.15);
    }
  }
}


/* caSns
---------------------------------------- */
.caSns {
  margin: var(--m-l) auto 0;
  padding: var(--m-l) 0 0;
  width: var(--w-c-s);
  text-align: center;
}

.caSns_l {
  margin: var(--m-s) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;

  & a {
    display: block;
    background: #fff;
    padding: 16px;
    border-radius: 50%;
  }

  & img {
    width: 32px;
    transition: all .3s ease;
  }
}

@media (min-width: 900px){
  .caSns_l {
    & a {
      padding: 32px;
    }

    & a:hover {
      opacity: 1;

      & img {
        opacity: .6;
      }
    }
  }
}


/* caBC
---------------------------------------- */
.caBC {
  margin: 30px 0 0;
  padding: 10px 0;
  background: #e4e4e6;

  & p {
    margin: 0 auto;
    width: var(--w-c-l);
  }
}


/* caFeature
---------------------------------------- */
.caFeature {
  margin: var(--m-l) auto 0;
  width: var(--w-c-l);
}

.caFeature_l {
  margin: 30px 0 0;
}


/* caFor
---------------------------------------- */
.caFor {
  margin: var(--m-l) 0 calc(var(--m-l) * -1);
  padding: var(--m-l) 0;
  background: #fff;
}

.caFor_l {
  margin: 0 auto;
  width: var(--w-c-s);
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--m-l);
}

.caFor_img {
  aspect-ratio: 2 / 1;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.caFor_cont {
  margin: var(--m-s) 0 0;

  & .m-ttl {
    text-align: center;
  }
}

@media (min-width: 900px){
  .caFor_img {
    aspect-ratio: 3 / 1;
  }
}

/* caBack
---------------------------------------- */
.caBack {
  margin: calc(var(--m-l) + var(--m-m) + 30px) auto 0;
  width: var(--w-c-l);
}

/* wpImg
---------------------------------------- */
@media (min-width: 900px){
  .wpImg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .wpImg_i {
    aspect-ratio: 3 / 2;
    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}

/* wpData
---------------------------------------- */
.wpData {
  margin: var(--m-l) auto 0;
  width: var(--w-c-l);
}

.wpData_l {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--gap);
}

.wpData_i {
  background: #fff;
  padding: var(--gap);
}

.wpData_ttlEn {
  margin: 0;
  font-size: 1rem;
  line-height: 1;
  color: var(--c-rd);
  font-weight: 700;
  font-family: var(--f-en), sans-serif;
}

.wpData_img {
  text-align: center;
  margin: 30px 0 0;
}

.wpData_img-g {
  margin: 12px 0 0;
}

.wpData_ttlJa {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}

.wpData_ttlJa-g {
  margin: 10px 0 0;
}

.wpData_num {
  font-size: 2.4rem;
  color: var(--c-rd);
  font-weight: 600;
  text-align: center;

  & strong {
    font-family: var(--f-en), sans-serif;
    font-weight: 700;
    line-height: 1;
    font-size: 6.4rem;
  }
}

.wpData_txt {
  font-size: 1.2rem;
  margin: 8px 0 0;
  text-align: center;
}

.wpData_notes {
  margin: var(--m-s) 0 0;
  text-align: right;
  font-size: 1.2rem;
}

@media (min-width: 600px){
  .wpData_l {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px){
  .wpData_l {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* wpVoice
---------------------------------------- */
.wpVoice {
  margin: var(--m-m) auto 0;
  width: var(--w-c-s);
  text-align: center;
}

.wpVoice_l {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.wpVoice_i {
  background: #fff;
  padding: 50px var(--g) 20px;
  border-radius: 8px;
  position: relative;

  &::before {
    content: '“';
    display: block;
    font-size: 7.2rem;
    line-height: 1;
    color: #e4e4e6;
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: -1;
  }
}

@media (min-width: 900px){
  .wpVoice_l {
    margin: 30px 0 0;
  }

  .wpVoice_i {
    padding: 30px var(--g);
  }
}


/* voImg
---------------------------------------- */
.voImg {
  aspect-ratio: 3 / 2;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 900px){
  .voImg {
    aspect-ratio: 2 / 1;
  }
}


/* voL
---------------------------------------- */
.voL {
  margin: var(--m-m) auto 0;
  width: var(--w-c-l);
}

.voL_ttl {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}

.voL_name {
  font-weight: 700;
  font-size: 2rem;
}

.voL_date {
  margin: 0;
}

@media (min-width: 900px){
  .voL_ttl {
    font-size: 3.2rem;
  }
}


/* voTtl
---------------------------------------- */
.voTtl {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  padding: 0 0 0 calc(var(--g) + 20px);
  position: relative;

  &::before {
    content: '';
    display: block;
    width: var(--g);
    height: 1px;
    background: #888;
    position: absolute;
    top: .75em;
    left: 0;
  }
}

@media (min-width: 900px){
  .voTtl {
    font-size: 2rem;
  }
}


/* voCol
---------------------------------------- */
.voCont {
  margin: var(--m-l) 0 0;
}

.voCol {
  margin: var(--m-m) auto 0;
  width: var(--w-c-l);
}

.voCol_img {
  margin: var(--m-s) 0 0;
}

.voCol2 {
  margin: var(--m-m) auto 0;
  width: var(--w-c-s);
}

.voCol3_img {
  margin: var(--m-s) 0 0;

  & figcaption {
    font-size: 1.2rem;
    text-align: center;
  }
}

@media (min-width: 900px){
  .voCol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
  }

  .voCol_img {
    margin: 0;
    grid-column: span 2;
  }

  .voCol3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
  }

  .voCol3_img {
    margin: var(--m-xs) 0 0;
  }
}


/* voNav
---------------------------------------- */
.voNav {
  margin: var(--m-l) auto 0;
  width: var(--w-c-l);
}

.voNav_ttl {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: solid 1px #888;
  padding: 0 0 10px 0;
}

.voNav_l {
  margin: var(--m-s) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px var(--gap);
}

.voNav_a {
  text-decoration: none;
  color: #000;
  background: #fff;
  display: flex;
  align-items: center;
  position: relative;

  &::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 5px);
    right: 24px;
  }
}

.voNav_img {
  width: 72px;
  aspect-ratio: 1;
  flex-shrink: 0;
  overflow: hidden;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.voNav_cont {
  width: 100%;
  padding: 0 40px 0 20px;
}

.voNav_date {
  margin: 0;
  font-size: 1rem;
}

.voNav_name {
  margin: 0;
  font-weight: 700;
}

@media (min-width: 900px){
  .voNav_l {
    grid-template-columns: repeat(3, 1fr);
  }

  .voNav_a {
    &:hover {
      opacity: 1;
      color: var(--c-bl);
    }

    &:hover::after {
      border-color: var(--c-bl);
    }

    &:hover .voNav_img img {
      transform: scale(1.15);
    }
  }

  .voNav_img {
    & img {
      transition: all .3s ease;
    }
  }
}


/* ------------------------------------------------------------

company: 企業情報

------------------------------------------------------------ */

/* comSec
---------------------------------------- */
.comSec {
  margin: var(--m-l) auto 0;
  width: var(--w-c-l);
}

.comSec_cont {
  margin: var(--m-s) 0 0;
}

.comTtl {
  margin: var(--m-s) 0 0;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;

  &::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #888;
    position: absolute;
    top: 50%;
    left: 0;
  }

  & span {
    display: inline-block;
    padding: 0 12px 0 0;
    background: var(--c-bg);
    position: relative;
  }
}

.comVision {
  font-family: serif;
  font-size: 3.6rem;
  line-height: 1.2;
}

.comBot {
  margin: var(--m-s) 0 0;
  background: #fff;
  text-align: center;
  padding: var(--gap);
}


@media (min-width: 900px){
  .comSec {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
  }

  .comSec_cont {
    margin: 0;
    grid-column: span 2;

    & > *:first-child {
      margin-top: 0;
    }
  }

  .comTtl {
    font-size: 2rem;
  }

}


/* comMsg
---------------------------------------- */
.comMsg_img {
  aspect-ratio: 3 / 2;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.comMsg_cont {
  margin: var(--m-xs) 0 0;
}

.comMsg_ttl {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
}

@media (min-width: 600px){
  .comMsg {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--gap);
  }
  .comMsg_img {
    aspect-ratio: 1;
    grid-column: span 3;
    order: 2;
  }

  .comMsg_cont {
    grid-column: span 5;
    margin: 0;
  }
}

@media (min-width: 900px){
  .comMsg_ttl {
    font-size: 2rem;
  }
}


/* comTable
---------------------------------------- */
.comTable {
  border: 0;
  font-size: 1.2rem;

  & th {
    font-weight: 400;
    text-align: left;
    vertical-align: top;
    padding: 20px 0;
    width: 25%;
    border: 0;
    border-top: solid 1px #888;
    border-bottom: solid 1px #888;
  }

  & td {
    text-align: left;
    vertical-align: top;
    padding: 20px 0 20px var(--gap);
    border: 0;
    border-top: solid 1px #888;
    border-bottom: solid 1px #888;
  }
}

@media (min-width: 900px){
  .comTable {
    font-size: 1.4rem;
  }
}



/* ------------------------------------------------------------

news：お知らせ

------------------------------------------------------------ */

/* newsList
---------------------------------------- */
.newsList {
  margin: var(--m-l) auto 0;
  width: var(--w-c-l);
  padding: 0;
  list-style: none;
}

.newsList_i {
  border-bottom: solid 1px #ddd;
}

.newsList_i:first-child {
  border-top: solid 1px #ddd;
}

.newsList_a {
  display: block;
  padding: 30px 40px 30px 0;
  text-decoration: none;
  position: relative;
  color: #000;

  &::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 5px);
    right: 4px;
  }
}

.newsList_ttl {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
}

.newsList_date {
  display: block;
  margin: var(--m-s) 0 0;
  position: relative;
}

@media (min-width: 900px){
  .newsList_a {
    padding: 40px 70px 40px 30px;

    &:hover {
      opacity: 1;
      color: var(--c-bl);
    }

    &::after {
      right: 34px;
    }

    &:hover::after {
      border-color: var(--c-bl);
    }

    &::before {
      content: '';
      display: block;
      width: 0;
      background: rgba(255,255,255,.5);
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      opacity: 0;
      transition: all .3s ease;
    }

    &:hover::before {
      width: 100%;
      opacity: 1;
    }

  }

  .newsList_ttl {
    font-size: 2.4rem;
  }


}



/* ------------------------------------------------------------

news post：お知らせ記事

------------------------------------------------------------ */

/* newsPost
---------------------------------------- */
.newsPost {
  margin: 60px auto 0;
  width: var(--w-c-s);
}

@media (min-width: 900px){
  .newsPost {
    margin-top: 120px;
  }
}


/* newsH
---------------------------------------- */
.newsH {
  margin: 0 auto;
  border-bottom: solid 1px #888;
  padding: 0 0 40px;
}

.newsH_date {
  display: block;
}

.newsH_ttl {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 600;
}

@media (min-width: 900px){
  .newsH_ttl {
    font-size: 3.6rem;
  }
}


/* newsC
---------------------------------------- */
.newsC {
  margin: var(--m-m) 0 0;
  font-size: 1.6rem;
}

.newsC::after {
  content: '';
  display: block;
  clear: both;
}

.newsC strong,
.newsC b {
  font-weight: 600;
}

.newsC small {
  font-size: 0.85em;
}

.newsC h1,
.newsC h2 {
  font-size: 2.4rem;
  margin: var(--m-m) 0 0;
  font-weight: 600;
}

.newsC h3,
.newsC h4 {
  margin: var(--m-s) 0 0;
  font-size: 2rem;
  font-weight: 600;
}


.newsC h5,
.newsC h6 {
  font-size: 1.6rem;
  margin: var(--m-xs) 0 0;
  font-weight: 600;
}

.newsC ol,
.newsC ul {
  padding-left: 2em;
}

.newsC figure {
  padding: 0;
  text-align: center;
}

.newsC figcaption {
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
}

.newsC blockquote {
  background: #fff;
  padding: 60px var(--gap) 20px;
  border-radius: 4px;
  position: relative;

  &::before {
    content: '“';
    display: block;
    font-size: 5rem;
    line-height: 1;
    color: #ddd;
    position: absolute;
    top: 20px;
    left: var(--gap);
  }

  & > *:first-child {
    margin-top: 0;
  }

  & cite {
    display: block;
    margin: var(--m-xs) 0 0;
    text-align: right;
    font-size: 1.4rem;
    font-style: normal;
    color: #666;
  }
}

.newsC table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
}

.newsC figure table {
  margin: 0;
}

.newsC thead,
.newsC tfoot {
  background: #fff;
}

.newsC th,
.newsC td {
  border: solid 1px #ddd;
  text-align: left;
  padding: 8px 12px;
  vertical-align: top;
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.alignright {
  float: right;
  margin-bottom: var(--gap);
  margin-left: var(--gap);
}

.alignleft {
  float: left;
  margin-right: var(--gap);
  margin-bottom: var(--gap);
}


/* newsS
---------------------------------------- */
.newsS {
  margin: var(--m-m) auto 0;
}

.newsS_l {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.newsS_l li {
  width: 100%;
  margin: 0;
}

.newsS_l a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  text-align: center;
  font-size: 1rem;
  line-height: 24px;
  border-radius: 4px;
}

.newsS_l a span {
  display: inline-block;
}

.newsS_fb a {
  background: #3b5998;
}

.newsS_fb a span {
  background: url(../img/news/ico_fb.png) no-repeat left center;
  padding-left: 20px;
}

.newsS_x a {
  background: #000;
}

.newsS_x a span {
  background: url(../img/news/ico_x.png) no-repeat left center;
  padding-left: 31px;
}

.newsS_ln a {
  background: #00b900;
}

.newsS_ln a span {
  background: url(../img/news/ico_ln.png) no-repeat left center;
  padding-left: 44px;
}

@media (min-width: 900px){

  .newsS_l a {
    font-size: 1.2rem;
  }
}


/* newsR
---------------------------------------- */
.newsR {
  width: var(--w-c-s);
  margin: var(--m-l) auto 0;
}

.newsR_h {
  margin: 0 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.newsR_ttl {
  margin: 0;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
}

.newsR_btn {
  margin: 0;
  padding: 0 0 4px 0;
  text-align: right;
}

@media (min-width: 900px){
  .newsR_ttl {
    font-size: 2.4rem;
  }

  .newsR_btn {
    padding: 0 0 6px 0;
  }
}


/* newsB
---------------------------------------- */
.newsB {
  margin: var(--m-l) auto 0;
  width: var(--w-c-l);
}


/* ------------------------------------------------------------

contact：お問い合わせ

------------------------------------------------------------ */

.ctcTtl {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  border-bottom: solid 1px #888;
  padding: 0 0 20px;
}


/* ctcTel
---------------------------------------- */
.ctcTel {
  margin: 60px auto 0;
  width: var(--w-c-l);
}

.ctcTel_i {
  margin: 0;
  display: grid;
  grid-template-columns: repeat( 3, 1fr);
  align-items: center;
  border-bottom: solid 1px #ddd;
  gap: var(--gap);
}

.ctcTel_ttl {
  margin: 0;
  padding: 40px 0;
  font-weight: 600;
}

.ctcTel_cont {
  margin: 0;
  padding: 40px 0 40px var(--gap);
  border-left: solid 1px #ddd;
  grid-column: span 2;
}

.ctcTel_num {
  margin: 0;

  & a {
    text-decoration: none;
    display: inline-block;
    color: var(--c-bl);
    font-family: var(--f-en), sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: url(../img/contact/ico_tel.svg) no-repeat left center / 18px 24px;
    padding: 0 0 0 30px;
  }
}

.ctcTel_info {
  margin: 0;
}

@media (min-width: 900px){
  .ctcTel {
    margin: 120px auto 0;
  }

  .ctcTel_ttl {
    font-size: 1.6rem;
  }

  .ctcTel_num {
    & a {
      font-size: 2.4rem;
    }
  }
}


/* ctcMail
---------------------------------------- */
.ctcMail {
  margin: var(--m-l) auto 0;
  width: var(--w-c-l);
}


/* contactForm
---------------------------------------- */
.contactForm {
  margin: var(--m-m) 0 0;
}

.contactForm_item {
  margin: 20px 0 0;
  border-top: solid 1px #ddd;
  padding: 20px 0 0;
}

.contactForm_ttl {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.contactForm_ttl::before {
  content: '任意';
  display: inline-block;
  background: #ddd;
  font-weight: normal;
  font-size: 1.2rem;
  margin: 4px 16px 0 0;
  padding: 0 12px;
  float: right;
}

.contactForm_req::before {
  content: '必須';
  background: #c00;
  color: #fff;
}

.contactForm_cont {
  margin: 12px 0 0;
  padding: 0;
}

.contactForm input[type=text],
.contactForm input[type=email],
.contactForm input[type=tel],
.contactForm input[type=date],
.contactForm textarea {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 0;
  background: #fff;
  border: solid 1px #fff;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  line-height: 2;
  resize: none;
}

.contactForm textarea {
  height: 196px;
}

.contactForm input::placeholder,
.contactForm textarea::placeholder {
  color: #aaa;
}

.contactForm input.wpcf7-not-valid,
.contactForm textarea.wpcf7-not-valid {
  border: solid 1px #c00;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 0;
  font-size: 1.6rem;
}

.wpcf7-radio {
  display: block;
  margin: 8px 0;
}

.wpcf7-radio label input {
  position: absolute;
  width: 0;
  height: 0;
}

.wpcf7-list-item-label {
  display: inline-block;
  padding: 4px 0 4px 42px;
  position: relative;
  cursor: pointer;
}

.wpcf7-list-item-label::before {
  box-sizing: border-box;
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border: solid 1px #fff;
  background: #fff;
  border-radius: 16px;
  padding: 0;
  position: absolute;
  top: 4px;
  left: 0;
}

.wpcf7-list-item-label::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #000;
  border-radius: 8px;
  position: absolute;
  top: 12px;
  left: 8px;
  opacity: 0;
}

input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.contactForm_address_ttl {
  margin: 8px 0 4px !important;
  font-size: 12px;
  line-height: 1.5;
}

.contactForm_address_num {
  width: 50%;
}

.contactForm_address_num_i {
  position: relative;
}

.contactForm_address_num_i::after {
  content: '〒';
  font-size: 16px;
  line-height: 2;
  font-weight: bold;
  color: #888;
  position: absolute;
  top: 13px;
  left: 20px;
}

.contactForm_address_num_i input {
  padding-left: 40px !important;
}

.contactForm_address_txt {
  margin: 15px 0 0;
}

.contactForm_submit {
  margin: 20px 0 0;
  border-top: solid 1px #ddd;
  padding: var(--m-m) 0 0;
  position: relative;
}

.contactForm_submit input {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 16px 32px;
  background: var(--c-bl);
  color: #fff;
  font-size: 16px;
  text-align: center;
  border: 0;
  transition: all 0.3s ease;
}

@media (min-width: 900px){

  .contactForm_item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin: 30px 0 0;
    padding: 30px 0 0;
  }

  .contactForm_ttl {
    margin: 13px 0 0;
  }

  .contactForm_cont {
    grid-column: span 2;
    margin: 0;
  }

  .contactForm_address_num .contactForm_address_ttl {
    margin: 0 0 5px !important;
  }

  .contactForm_submit {
    margin: 30px 0 0;
  }

  .contactForm_submit input:hover {
    cursor: pointer;
    background: var(--c-bl);
  }
}


/* CF7 ローディングアイコン変更 */
.contactForm .wpcf7-spinner {
  display: block;
  margin: 10px auto;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: transparent;
  border-top: 2px solid rgba(0,0,0, .3);
  border-left: 2px solid rgba(0,0,0, .3);
  border-bottom: 2px solid rgba(0,0,0, .3);
  border-right: 2px solid transparent;
  animation: g-ms-spinner .8s linear infinite;
  position: absolute;
  left: calc(50% - 12px);
  bottom: -44px;
}
@keyframes g-ms-spinner {
  from{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
}
.contactForm .wpcf7-spinner::before {
  content: none;
}
.contactForm .wpcf7-response-output {
  margin-top: 0;
}


/* ctcThanks
---------------------------------------- */
.ctcThanks {
  margin: 60px auto 0;
  width: var(--w-c-l);
}

.ctcThanks_ttl {
  font-size: 2.4rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 600;
}

.ctcThanks_btn {
  margin: var(--m-m) 0 0;
}

@media (min-width: 900px){
  .ctcThanks {
    margin: 120px auto 0;
  }

  .ctcThanks_ttl {
    font-size: 3.6rem;
  }

}



/* ------------------------------------------------------------

privacy：プライバシーポリシー

------------------------------------------------------------ */
.privacy {
  margin: 60px auto 0;
  width: var(--w-c-s);

  & h2 {
    margin: var(--m-s) 0 0;
    font-size: 2rem;
    font-weight: 600;
  }

  & ol {
    counter-reset: count;
    list-style: none;
    padding: 0;

    & li {
      counter-increment: count;
      padding: 0 0 0 2.5em;
      position: relative;
    }

    & li::before {
      content: '（' counter(count) '） ';
      position: absolute;
      top: 0;
      left: 0;
    }
  }
}

@media (min-width: 900px){
  .privacy {
    margin: 120px auto 0;
  }
}



/* ------------------------------------------------------------

404：ページが見つかりません

------------------------------------------------------------ */
.pnf {
  margin: 20px auto 0;
  width: var(--w-c-l);
  text-align: center;
}

.pnf_ttl {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 600;
}

.pnf_ttl {

}

.pnf_btn {
  margin: var(--m-m) 0 0;
}

@media (min-width: 900px){
  .pnf_ttl {
    font-size: 3.6rem;
  }

}
