@charset "UTF-8";

/* =Universal Box-sizing */
*,
*::after,
*::before {
    box-sizing: border-box;
}

/*
------------------------------------------
 =Reset Css
------------------------------------------
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  border-collapse: collapse !important;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse !important;
  border-spacing: 0;
}
caption, th, td {
  font-weight: normal;
  text-align: left;
}
blockquote, q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
a img {
  border: 0 !important;
}
audio, canvas, video {
  display: inline-block;
  max-width: 100%;
}
video {
  height: auto;
}
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

/*
------------------------------------------
 =Basic
------------------------------------------
*/
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  display: inline-block;
}
h1, h2, h3, h4, h5 {
  line-height: 1;
}
button, fieldset, form, input, label, legend, select, textarea {
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
}
input, textarea, select {
  font-size: 16px;
}
input[type="button"],
input[type="text"],
input[type="submit"],
textarea {
  appearance: none;
  border-radius: 0;
}
input[type=text],
input[type=email],
input[type=tel],
textarea,
button,
select {
  display: block;
  outline: none;
  width: 100%;
}
textarea {
  resize: none;
}
input[type=checkbox],
input[type=radio] {
  display: none;
}
button, input[type=button], input[type=submit], label, select {
  cursor: pointer;
}

/* Link Style */
a {
  color: var(--color-black);
  text-decoration: none;
  transition: 0.4s ease;
  outline: 0;
}
a:hover {
  color: #666;
}
a:hover img {
  opacity: .7;
}
a.txt-link {
  /* padding-bottom: 3px; */
  background-image: linear-gradient(var(--color-black), var(--color-black));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 1px;
  transition: background-size 0.3s;
}
a.txt-link:hover {
  background-position: bottom right;
  background-size: 0 1px;
}



@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

/* Utility: Font Size */
.fs-9  { font-size: 9px !important;}
.fs-10 { font-size: 10px !important;}
.fs-11 { font-size: 11px !important;}
.fs-12 { font-size: 12px !important;}
.fs-13 { font-size: 13px !important;}
.fs-14 { font-size: 14px !important;}
.fs-15 { font-size: 15px !important;}
.fs-16 { font-size: 16px !important;}
.fs-18 { font-size: 18px !important;}
.fs-20 { font-size: 20px !important;}
.fs-21 { font-size: 21px !important;}
.fs-24 { font-size: 24px !important;}
.fs-28 { font-size: 28px !important;}
.fs-30 { font-size: 30px !important;}
.fs-36 { font-size: 36px !important;}
.fs-48 { font-size: 48px !important;}
.fs-60 { font-size: 60px !important;}

/* Utility: Spacing  */
.mt05 { margin-top:  5px !important; }
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mb05 { margin-bottom:  5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb64 { margin-bottom: 64px !important; }
.mb80 { margin-bottom: 80px !important; }



/* Grid Layout Format */
.l-grid {
  display: grid;
}
.l-grid.col2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem 4rem;
}
.l-grid.col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
}
.l-grid.col4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 6rem 4rem;
}
.l-grid.col5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 6rem 2.4rem;
}
.l-grid.col6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 6rem 2.4rem;
}
@media only screen and (max-width: 960px) {
  .l-grid.col2, .l-grid.col3 {
    grid-template-columns: 1fr;
  }
  .l-grid.col3 {
    row-gap: 3.2rem;
  }
  .l-grid.col4, .l-grid.col5, .l-grid.col6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem 2.4rem;
  }
}

/* flex Layout Format */
.l-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-row     { flex-direction: row; }
.flex-col     { flex-direction: column; }
.flex-row-rev { flex-direction: row-reverse; }
.flex-col-rev { flex-direction: column-reverse; }

.jc-center  { justify-content: center; }
.jc-between { justify-content: space-between; }
.jc-end     { justify-content: flex-end; }

.items-start    { align-items: flex-start; }
.items-center   { align-items: center; }
.items-end      { align-items: flex-end; }
.items-stretch  { align-items: stretch; }
.items-baseline { align-items: baseline; }

.l-flex.col2{
  gap: 4rem;
}
.l-flex.col2 .f-col{
  width: calc((100% - 4rem) / 2);
}
.l-flex.col3{
  gap: 4rem;
}
.l-flex.col3 .f-col{
  width: calc((100% - 8rem) / 3);
}
.l-flex.col4{
  gap: 4rem;
}
.l-flex.col4 .f-col{
  width: calc((100% - 12rem) / 4);
}
@media only screen and (max-width: 960px) {
  .l-flex.col2 .f-col,
  .l-flex.col3 .f-col,
  .l-flex.col4 .f-col{
    width: 100%;
  }
}


/* Font Setting */
.tx-L { text-align: left !important; }
.tx-C { text-align: center !important; }
.tx-R { text-align: right !important; }
.tx-bold { font-weight: 700; }
.tx-justify { text-align: justify !important; }
.tx-caption { font-size: 1.3rem; }


/* List Style */
.caption-list li, .disc-list li, .num-list li, .circle-num-list li {
  position: relative;
  line-height: 1.44;
}
.caption-list li {
  font-size: 1.2rem;
  padding-left: 1.2rem;
}
.caption-list li:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.disc-list li {
  padding-left: 1.2rem;
}
.disc-list li:before {
  content: '';
  width: .6rem;
  height: .6rem;
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 50%;
  background: var(--color-black);
}
.disc-list li:nth-of-type(n+2) {
  margin-top: .6rem;
}

.num-list {
  counter-reset: number;
}
.num-list li {
  padding-left: 2.2rem;
}
.num-list li::before {
  position: absolute;
  left: 0;
  counter-increment: number;
  content: counter(number) '.';
  font-weight: 700;
  font-family: var(--font-family-en);
}
.num-list li:nth-of-type(n+2) {
  margin-top: .8rem;
}

.circle-num-list {
  counter-reset: number;
}
.circle-num-list li {
  padding-left: 3.2rem;
  display: flex;
}
.circle-num-list li::before {
  counter-increment: number;
  content: counter(number);
  background-color: #222;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  font-size: 1.3rem;
}
@media screen and (max-width: 960px) {
  .circle-num-list li {
    display: block;
  }
}

/* Device View Control */
.viewPC, .viewSP, .viewTBSP, .viewPCTB {
  display: none;
}
/* PC */
@media (min-width: 1024px) {
  .viewPC, .viewPCTB { display: block; }
}
/* タブレット・小型PC */
@media (min-width: 768px) and (max-width: 1023px) {
  .viewPCTB, .viewTBSP { display: block; }
}
/* スマホ */
@media (max-width: 767px) {
  .viewSP, .viewTBSP { display: block; }
}


/* 入力中・選択中 */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: #295BE1;
  background: #fff;
  box-shadow: 0 0 0 .3rem rgba(41, 91, 225, .25);
  outline: none;
}

/* 入力後・選択後 */
input[type="text"].is-filled:not(:disabled),
input[type="email"].is-filled:not(:disabled),
input[type="tel"].is-filled:not(:disabled),
input[type="url"].is-filled:not(:disabled),
input[type="number"].is-filled:not(:disabled),
textarea.is-filled:not(:disabled),
select.is-filled:not(:disabled) {
  border-color: #C2D3FF;
  background: #E9F4FF;
}

/* 入力後でもfocus中はfocusを優先 */
input[type="text"].is-filled:focus,
input[type="email"].is-filled:focus,
input[type="tel"].is-filled:focus,
input[type="url"].is-filled:focus,
input[type="number"].is-filled:focus,
textarea.is-filled:focus,
select.is-filled:focus {
  border-color: #295BE1;
  background: #fff;
  box-shadow: 0 0 0 .3rem rgba(43, 101, 246, .18);
}

::placeholder {
   color: #ACACAC;
}
