@charset "utf-8";

/* ----------------------------------------------------
base setting
---------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: transparent;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  /* 10px */
}

body {
  font-size: clamp(1.5rem, 1.3828rem + 0.313vw, 1.8rem);
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures contextual;
  font-feature-settings: "kern", "liga", "clig", "calt";
}

#wrapper {
  margin: 0 auto;
  position: relative;
}

/* ----------------------------------------------------
element base setting
---------------------------------------------------- */
h1, h2, h3, h4, h5, h6, table, ul, ol, p, dl {
  font-size: 100%;
  margin: 0;
}

ul {
  list-style: none;
}

dd {
  margin: 0;
}

table, ul, ol, p, dl {
  margin-bottom: 1em;
}

header :is(table, ul, ol, p, dl),
footer :is(table, ul, ol, p, dl) {
  margin-bottom: 0px;
}

/* link  */
.clickable {
  cursor: pointer;
}

.clearfix {
  zoom: 100%;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

@media (min-width:781px) {

  /* PC + tablet */
  .sp, #ftSlideBlock {
    display: none !important;
  }

  a[href^="tel:"] {
    cursor: default;
  }

  a:hover[href^="tel:"] {
    text-decoration: none;
  }

  a.telNum {
    color: inherit;
  }

}

@media (max-width: 971px) and (min-width: 781px) {}

@media (max-width: 780px) {

  /*  sp */
  body {}

  .pc {
    display: none;
  }

  .sp {
    display: block !important;
  }

  a:hover {
    text-decoration: none !important;
  }

  table, ul, ol, p, dl {}
}

@media (max-width: 780px) {}


/* ----------------------------------------------------
topicPath 
---------------------------------------------------- */
ol.topicPath {
  display: flex;
  display: -webkit-flex;
  column-gap: 10px;
  margin: 0 auto;
  font-size: var(--fs-12);
}

ol.topicPath li {
  position: relative;
}

ol.topicPath li:not(:first-child) {
  padding: 0 0 0 var(--w-15);
  position: relative;
}

ol.topicPath li:not(:first-child)::before {
  content: "";
  width: 6px;
  aspect-ratio: 1/1;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

ol.topicPath li a {
  color: inherit;
}

@media (max-width: 767px) {}


/* --------------------------------------------------
heading / p
----------------------------------------------------- */
#main :is(h1, h2, h3, h4, h5) {line-height: 1.5;}
.grdTitle :is(h3, h4) {margin-top: 0;}
.flxCont :is(h3, h4):first-child {margin-top: 0;}
.floatBox :is(h3, h4):first-of-type { margin-top: 0;}
.decBox :is(h3, h4):first-of-type { margin-top: 0;}
.decBox :is(p, div, ul, dl, ol, table):last-child { margin-bottom: 0 !important;}

/* p */
.strongB { font-size: 1.2em;}


/* --------------------------------------------------
link / list 
----------------------------------------------------- */
.telLink {
  position: relative;
  font-weight: 600;
  padding-left: 1.5em;
}

.telLink::before {
  content: "phone";
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  font-size: 1.25em;
}

a.linkArrow.linkExternal::after {
  content: none;
}

.linkExternal span {
  position: relative;
  display: inline-block;
}

.linkExternal span::after {
  content: "open_in_new";
  font-family: 'Material Symbols Outlined';
  position: absolute;
  right: -1.25em;
  color: #eee;
}

ul.listDot li {
  padding-left: 1em;
  position: relative;
}

ul.listDot li::before {
  content: "";
  width: 0.4em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #eee;
  position: absolute;
  left: 0.25em;
  top: 0.75em;
}

ol.listNum li {
  list-style: decimal;
  margin-left: 1.25em;
}

ul.listNote li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: var(--fs-14);
}

ul.listNote li::before {
  content: "※";
}

ul.listCheck li {
  padding-left: 1.3em;
  position: relative;
}

ul.listCheck li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "check_box";
  font-family: 'Material Symbols Outlined';
  color: #eee;
}

dl.listData dt {
  font-weight: 600;
}

@media (max-width: 780px) {}


/* --------------------------------------------------
table
----------------------------------------------------- */
.tblA, .tblTime {
  width: 100%;
}

.tblTime {
  margin-bottom: 5px;
}

.tblTime td {
  width: 10%;
  text-align: center;
}

@media (max-width: 780px) {
  .tblA.tblVertical {
    border-top: none !important;
  }

  .tblA.tblVertical th {
    width: 100%;
    display: block;
    border-left: none !important;
    border-right: none !important;
  }

  .tblA.tblVertical td {
    width: 100%;
    display: block;
    border: none !important;
  }

  .tblTime th, .tblTime td {
    padding: 1vw !important;
    font-size: var(--fs-16);
    line-height: 1.4;
  }
}


/* --------------------------------------------------
参考リンク
---------------------------------------------------- */
.relatedLink {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}

.relatedLink p.img {
  margin-bottom: 0;
  width: 40%;
  aspect-ratio: 16/9;
}

.relatedLink p.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.relatedLink dl {
  width: 55%;
  margin: 0;
  font-size: var(--fs-16);
  padding: 1em 0;
}

.relatedLink dl dt {
  font-weight: 600;
  padding: 0 0 0.5em;
  line-height: 1.5;
}

.relatedLink dl dd {
  line-height: 1.4;
}

.relatedLink dl dd a {
  color: inherit;
}

.relatedLink dl dd a span {
  font-size: var(--fs-18);
  vertical-align: middle;
  padding-left: 0.25em;
}

@media (max-width: 780px) {
  .relatedLink {
    border-bottom: 1px dashed #666;
    padding: min(5vw, 20px) 0;
    margin-bottom: 0 !important;
  }

  .relatedLink p.img {
    width: 35%;
  }

  .relatedLink dl {
    width: 60%;
  }

  .relatedLink dl dd a span {
    font-size: min(3.8vw, 1.8rem);
  }
}


/* --------------------------------------------------
column list  (サイズ均等)
---------------------------------------------------- */
#element .l-grid li, #element .l-grid div, #element .flxList li, #element .flexBox:not(.access) .flexColCont {
  background: #fff;
}

#element .grdPic>div {
  background: #ccc;
}

.flxList {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  column-gap: 2%;
}

.flxList li {
  margin: min(0.4vw, 5px) 0;
}

.flxList li img {
  width: auto;
  max-width: 100%;
}

.col2 li {
  width: 49%;
}

.col2.col--grow li {
  flex-grow: 2;
}

.col3 li {
  width: 32%;
}

.col3.col--grow li {
  flex-grow: 3;
}

.col4 li {
  width: 23.5%;
}

.col4.col--grow li {
  flex-grow: 4;
}

@media (max-width: 971px) and (min-width: 781px) {
  .col3 li, .col4 li {
    width: 49%;
  }
}

@media (max-width: 780px) {
  .flxList li {
    margin: min(1vw, 5px) 0;
  }

  .col2 li, .col3 li, .col4 li {
    width: 100%;
  }

  .spCol2 li {
    width: 49%;
  }
}


/* --------------------------------------------------
flex レイアウト　左右サイズ均等
---------------------------------------------------- */
.flexBox {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin-bottom: min(3.3vw, 40px);
}

.flexBox.flexCol2, .flexBox.flexCol3, .flexBox.flexCol4 {
  column-gap: 4%;
}

.flexBox .flexColCont {
  margin: 0 0 min(2.5vw, 30px);
}

.flexBox.flexCol2 .flexColCont {
  width: 48%;
}

.flexBox.flexCol3 .flexColCont {
  width: 30.66%;
}

.flexBox.flexCol4 .flexColCont {
  width: 22%;
}

.flexBox.flexCol2.col--grow .flexColCont {
  flex-grow: 2;
}

.flexBox.flexCol3.col--grow .flexColCont {
  flex-grow: 3;
}

.flexBox.flexCol4.col--grow .flexColCont {
  flex-grow: 4;
}

@media (max-width: 971px) and (min-width: 781px) {
  .flexBox.flexCol3 .flexColCont, .flexBox.flexCol4 .flexColCont {
    width: 48%;
  }
}

@media (max-width: 780px) {
  .flexBox {
    margin-bottom: min(5vw, 40px);
    column-gap: 0 !important;
  }

  .flexBox .flexColCont {
    margin: 0 0 min(3vw, 30px);
  }

  .flexBox.flexCol2 .flexColCont, .flexBox.flexCol3 .flexColCont, .flexBox.flexCol4 .flexColCont {
    width: 100%;
  }

  .spCol2 {
    justify-content: space-between;
  }

  .flexBox.spCol2 .flexColCont {
    width: 48% !important;
    margin-bottom: 3%;
  }
}


/* --------------------------------------------------
gridレイアウト　左右サイズ不均等（画像＋コンテンツ）
---------------------------------------------------- */
.grdImgBox {
  display: grid;
  grid-template-rows: max-content 1fr;
  column-gap: 5%;
  grid-template-columns: 1fr 40%;
  grid-template-areas:
    "area1 area2"
    "area3 area2";
}

.grdImgBox.grdImg--L {
  grid-template-columns: 40% 1fr;
}

.grdImg--L {
  grid-template-areas:
    "area2 area1"
    "area2 area3";
}

.grdImgBox .grdTitle { grid-area: area1;}
.grdImgBox .grdImg { grid-area: area2;}
.grdImgBox .grdCont { grid-area: area3;}

.grdImgBox.grd--w20 {  grid-template-columns: 1fr 20%;}
.grdImgBox.grd--w25 {  grid-template-columns: 1fr 25%;}
.grdImgBox.grd--w30 {  grid-template-columns: 1fr 30%;}
.grdImgBox.grd--w35 {  grid-template-columns: 1fr 35%;}
.grdImgBox.grd--w40 {  grid-template-columns: 1fr 40%;}
.grdImgBox.grd--w45 {  grid-template-columns: 1fr 45%;}
.grdImgBox.grd--w50 {  grid-template-columns: 1fr 50%;}
.grdImgBox.grd--w55 {  grid-template-columns: 1fr 55%;}
.grdImgBox.grd--w60 {  grid-template-columns: 1fr 60%;}
.grdImgBox.grd--w65 {  grid-template-columns: 1fr 65%;}
.grdImgBox.grd--w70 {  grid-template-columns: 1fr 70%;}
.grdImgBox.grdImg--L.grd--w20 {  grid-template-columns: 20% 1fr;}
.grdImgBox.grdImg--L.grd--w25 {  grid-template-columns: 25% 1fr;}
.grdImgBox.grdImg--L.grd--w30 {  grid-template-columns: 30% 1fr;}
.grdImgBox.grdImg--L.grd--w35 {  grid-template-columns: 35% 1fr;}
.grdImgBox.grdImg--L.grd--w40 {  grid-template-columns: 40% 1fr;}
.grdImgBox.grdImg--L.grd--w45 {  grid-template-columns: 45% 1fr;}
.grdImgBox.grdImg--L.grd--w50 {  grid-template-columns: 50% 1fr;}
.grdImgBox.grdImg--L.grd--w55 {  grid-template-columns: 55% 1fr;}
.grdImgBox.grdImg--L.grd--w60 {  grid-template-columns: 60% 1fr;}
.grdImgBox.grdImg--L.grd--w65 {  grid-template-columns: 65% 1fr;}
.grdImgBox.grdImg--L.grd--w70 {  grid-template-columns: 70% 1fr;}

@media (max-width: 767px) {
  .grdImgBox:not(.grdScale) {
    display: block;
    margin-bottom: min(6vw, 30px);
  }

  .grdImgBox:not(.grdScale).grdImgBox .grdImg {
    margin-bottom: min(5vw, 30px);
  }
}

/* grid 画像ギャラリー */
.grdPic {
  margin-bottom: min(0.8vw, 10px);
}

.grdPic>div {
  overflow: hidden;
  position: relative;
}

.grdPic>div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grdPic--B {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  column-gap: min(0.8vw, 10px);
  flex-wrap: wrap;
}

.grdPic--B>div {
  width: calc(50% - min(0.4vw, 5px));
  margin-top: min(0.8vw, 10px);
}

.grdPic--B>div:nth-child(-n+2) {
  margin-top: 0;
}

.grdPic--C, .grdPic--D {
  display: grid;
  gap: min(0.8vw, 10px) min(0.8vw, 10px);
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.grdPic--C .grdPic--l {
  grid-area: 1 / 1 / 3 / 2;
}

.grdPic--C .grdPic--rt {
  grid-area: 1 / 2 / 2 / 3;
}

.grdPic--C .grdPic--rb {
  grid-area: 2 / 2 / 3 / 3;
}

.grdPic--C .grdPic--r {
  grid-area: 1 / 2 / 3 / 3;
}

.grdPic--C .grdPic--lt {
  grid-area: 1 / 1 / 2 / 2;
}

.grdPic--C .grdPic--lb {
  grid-area: 2 / 1 / 3 / 2;
}

@media (max-width: 780px) {
  .grdPic {
    margin-bottom: min(2vw, 10px);
  }

  .grdPic--B, .grdPic--C {
    display: block;
  }

  .grdPic--B>div, .grdPic--C>div {
    width: 100%;
    margin-top: min(2vw, 10px);
  }

  .grdPic--B>div:nth-child(2) {
    margin-top: min(2vw, 10px);
  }
}

.picOver {
  position: relative;
}

.picOver__txt {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.picOver__txt p {
  margin-bottom: 0;
}

/* --------------------------------------------------
step
---------------------------------------------------- */
.stpBox:not(:last-child) {
  margin: var(--w-80) 0;
}



/* --------------------------------------------------
img
---------------------------------------------------- */
.img--auto {
  width: auto;
  max-width: 100%;
}

.w120 { width: 120px !important;}
.w140 { width: 140px !important;}
.w150 { width: 150px !important;}
.w200 { width: 200px !important;}
.w240 { width: 240px !important;}
.w280 { width: 280px !important;}
.w300 { width: 300px !important;}
.w320 { width: 320px !important;}
.w400 { width: 400px !important;}
.w640 { width: 640px !important;}
.w840 { width: 840px !important; max-width: 100%;}

@media (max-width: 767px) {
  .w20p { width: 20% !important; }
  .w25p { width: 25% !important; }
  .w30p { width: 30% !important; }
  .w35p { width: 35% !important; }
  .w40p { width: 40% !important; }
  .w50p { width: 50% !important; }
  .w60p { width: 60% !important; }
  .w70p { width: 70% !important; }
  .w80p { width: 80% !important; }
  .w100p { width: 100% !important; }
}


/* ----------------------------------------------------
helperClass
---------------------------------------------------- */
/* align */
.alignC { text-align: center !important;}
.alignR { text-align: right !important;}
.alignL { text-align: left !important;}


/* margin-bottom */
.mb00 { margin-bottom: 0px !important;}
.mb05 { margin-bottom: 5px !important;}
.mb10 { margin-bottom: 10px !important;}
.mb15 { margin-bottom: 15px !important;}
.mb20 { margin-bottom: 20px !important;}
.mb25 { margin-bottom: 25px !important;}
.mb30 { margin-bottom: 30px !important;}
.mb35 { margin-bottom: 35px !important;}
.mb40 { margin-bottom: 40px !important;}
.mb45 { margin-bottom: 45px !important;}
.mb50 { margin-bottom: 50px !important;}
.mb55 { margin-bottom: 55px !important;}
.mb60 { margin-bottom: 60px !important;}
.mb65 { margin-bottom: 65px !important;}

/* margin-top */
.mt00 { margin-top: 0px !important;}
.mt05 { margin-top: 5px !important;}
.mt10 { margin-top: 10px !important;}
.mt15 { margin-top: 15px !important;}
.mt20 { margin-top: 20px !important;}
.mt25 { margin-top: 25px !important;}
.mt30 { margin-top: 30px !important;}
.mt35 { margin-top: 35px !important;}
.mt40 { margin-top: 40px !important;}
.mt45 { margin-top: 45px !important;}
.mt50 { margin-top: 50px !important;}
.mt55 { margin-top: 55px !important;}

/* padding-top */
.pt00 { padding-top: 0px !important;}
.pt05 { padding-top: 5px !important;}
.pt10 { padding-top: 10px !important;}
.pt20 { padding-top: 20px !important;}
.pt30 { padding-top: 30px !important;}
.pt40 { padding-top: 40px !important;}
.pt50 { padding-top: 50px !important;}
.pt60 { padding-top: 60px !important;}

/* padding-bottom */
.pb00 { padding-bottom: 0px !important;}
.pb10 { padding-bottom: 10px !important;}