@charset "utf-8";
/* --------------------------------------------------
    リセット
-------------------------------------------------- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset, img {
  border: 0;
  vertical-align: bottom;
}
address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}
ul, ol {
  list-style: none;
  letter-spacing: -.4em;
}
li {
  letter-spacing: normal;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1.5;
}
figure:not(.wp-block-image) {
  margin: 0;
}
iframe {
  vertical-align: bottom;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* --------------------------------------------------
    base
-------------------------------------------------- */
html {
  height: 100%;
}
body {
  color: #262626;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  line-height: 1.8;
}
a {
  color: #262626;
  text-decoration: none;
  word-wrap: break-word;
  transition: all .3s ease;
}
a.op:hover img {
  opacity: .7;
}
img {
  max-width: 100%;
  height: auto;
}
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1199px) {
  body {
    max-width: 768px;
    font-size: 16px;
    margin: 0 auto;
    position: relative;
    -webkit-text-size-adjust: 100%;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
/* --------------------------------------------------
    structure
-------------------------------------------------- */
.inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .inner {
    width: 90%;
    max-width: 768px;
  }
}
/* --------------------------------------------------
    アニメーション共通
-------------------------------------------------- */
.slideUp {
  transform: translateY(30px);
  transition: .6s cubic-bezier(.165, .84, .44, 1);
  opacity: 0;
}
.slideDown {
  transform: translateY(-30px);
  transition: .6s cubic-bezier(.165, .84, .44, 1);
  opacity: 0;
}
.slideLeft {
  transform: translateX(-30px);
  transition: .6s cubic-bezier(.165, .84, .44, 1);
  opacity: 0;
}
.slideRight {
  transform: translateX(30px);
  transition: .6s cubic-bezier(.165, .84, .44, 1);
  opacity: 0;
}
.animated[class*="slide"], .animated[class*="slideDown"], .animated[class*="slideLeft"], .animated[class*="slideRight"], .animated [class*="slideUp"], .animated [class*="slideDown"], .animated [class*="slideLeft"], .animated [class*="slideRight"] {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}
.fadeIn {
  transition: .6s cubic-bezier(.45, 0, .55, 1);
  opacity: 0;
}
.animated .fadeIn, .animated.fadeIn {
  opacity: 1;
}
/* --------------------------------------------------
    Tableレイアウト
-------------------------------------------------- */
table {
  width: 100%;
}
th, td {
  padding: 15px;
  border: 1px solid #ccc;
}
th {
  background: #f2f2f2;
}
thead th {
  background: #e5e5e5;
}
.table01 th {
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  th, td {
    padding: 10px;
  }
  .table01 {
    margin: 0 auto;
  }
  .table01 th, .table01 td {
    width: auto;
    display: block;
    border-top: none;
  }
  .table01 tr:first-child th {
    border-top: 1px solid #ccc;
  }
  .table02 {
    display: block;
    position: relative;
  }
  .table02 th, .table02 td {
    width: 100% !important;
    display: block;
  }
  .table02 thead {
    display: block;
    float: left;
    overflow-x: scroll;
  }
  .table02 thead th {
    width: auto;
    display: block;
  }
  .table02 tbody {
    width: auto;
    display: block;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
  }
  .table02 tbody tr {
    display: inline-block;
    margin: 0 -2px;
  }
  .table02 tbody td {
    display: block;
  }
  /* table横スクロール */
  .scroll {
    font-size: 14px;
    overflow: auto;
    white-space: nowrap;
  }
}
/* --------------------------------------------------
    【注意書き】
-------------------------------------------------- */
.notes.disc {
  list-style: none;
  margin-left: 0;
}
.notes > li {
  text-indent: -1em;
  padding-left: 1em;
}
.notes > li:before {
  content: "※";
}
.notes ul li {
  text-indent: 0;
}
/* --------------------------------------------------
    【リストデザイン】
-------------------------------------------------- */
.disc {
  list-style: disc;
  margin-left: 1.5em;
}
.decimal {
  list-style: decimal;
  margin-left: 1.5em;
}
/* 丸数字 */
.bracket {
  counter-reset: cnt;
  margin-left: 1.5em;
}
.bracket > li::before {
  width: 1.4em;
  height: 1.4em;
  content: counter(cnt);
  counter-increment: cnt;
  font-size: .875em;
  display: inline-grid;
  place-content: center;
  margin: 0 .3em 0 -1.8em;
  border: 1px solid;
  border-radius: 50%;
}
/* 括弧付数字 */
.paren {
  counter-reset: cnt;
  margin-left: 1.5em;
}
.paren > li::before {
  counter-increment: cnt;
  content: "(" counter(cnt) ")";
  padding-right: .3em;
  margin-left: -1.5em;
}
/* --------------------------------------------
  【Flexbox】
-------------------------------------------- */
.flex {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
}
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-end {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-center {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.flex-between {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.flex-around {
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.flex-evenly {
  -webkit-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  justify-content: space-evenly;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.align-center {
  align-items: center;
}
.flex .flex-col2 {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.flex .flex-col3 {
  width: 33.33333333%;
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
}
.flex .flex-col4 {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.flex img:not([data-src]), .flex img.lazy-loaded {
  height: auto;
}
@media screen and (max-width: 1199px) {
  .mbBlock > [class*="flex-col"] {
    width: auto;
  }
}
/* --------------------------------------------------
    PC・スマホ切り替え
-------------------------------------------------- */
.mb {
  display: none !important;
}
.pcBlock {
  display: block;
}
.inline {
  display: inline-block;
}
@media screen and (max-width: 1199px) {
  .pc {
    display: none !important;
  }
  .mb {
    display: initial !important;
  }
  .pcBlock {
    display: initial !important;
  }
  .mbBlock {
    display: block !important;
  }
  .spInline {
    display: inline-block;
  }
}
/* --------------------------------------------------
    【テキストスタイル】
-------------------------------------------------- */
.center {text-align: center !important;}
.right {text-align: right !important;}
.left {text-align: left !important;}
.top {vertical-align: top !important;}
.bottom {vertical-align: bottom !important;}

.bold{ font-weight:bold; }
.normal {font-weight:normal;}
.underline {text-decoration:underline;}
.italic {font-style:italic;}

.f10 {font-size:10px !important;}
.f11 {font-size:11px !important;}
.f12 {font-size:12px !important;}
.f13 {font-size:13px !important;}
.f14 {font-size:14px !important;}
.f15 {font-size:15px !important;}
.f16 {font-size:16px !important;}
.f18 {font-size:18px !important;}
.f20 {font-size:20px !important;}
.f22 {font-size:22px !important;}
.f24 {font-size:24px !important;}
.f26 {font-size:26px !important;}
.f28 {font-size:28px !important;}
.f30 {font-size:30px !important;}
.f32 {font-size:32px !important;}
.f34 {font-size:34px !important;}
.f36 {font-size:36px !important;}

.lh10 {line-height:1;}
.lh12 {line-height:1.2;}
.lh15 {line-height:1.5;}
.lh20 {line-height:2;}

.marker_red {
  background: linear-gradient(transparent 60%, #ffd8d8 0%);
}
.marker_yellow {
  background: linear-gradient(transparent 60%, #fff79d 0%);
}

/* --------------------------------------------------
    【余白】	5px未満は個別に追加
-------------------------------------------------- */
.mt00 {margin-top: 0 !important;}
.mt05 {margin-top: 5px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt60 {margin-top: 60px !important;}
.mt80 {margin-top: 80px !important;}
.mb00 {margin-bottom: 0 !important;}
.mb05 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb80 {margin-bottom: 80px !important;}
.ml00 {margin-left: 0px !important;}
.ml05 {margin-left: 5px !important;}
.ml10 {margin-left: 10px !important;}
.ml15 {margin-left: 15px !important;}
.ml20 {margin-left: 20px !important;}
.ml30 {margin-left: 30px !important;}
.ml40 {margin-left: 40px !important;}
.ml60 {margin-left: 60px !important;}
.mr00 {margin-right: 0px !important;}
.mr05 {margin-right: 5px !important;}
.mr10 {margin-right: 10px !important;}
.mr15 {margin-right: 15px !important;}
.mr20 {margin-right: 20px !important;}
.mr30 {margin-right: 30px !important;}
.mr40 {margin-right: 40px !important;}
.mr60 {margin-right: 60px !important;}

.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;}
.pt60 {padding-top: 60px !important;}
.pt80 {padding-top: 80px !important;}
.pb00 {padding-bottom: 0px !important;}
.pb05 {padding-bottom: 5px !important;}
.pb10 {padding-bottom: 10px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb30 {padding-bottom: 30px !important;}
.pb40 {padding-bottom: 40px !important;}
.pb60 {padding-bottom: 60px !important;}
.pb80 {padding-bottom: 80px !important;}
.pl00 {padding-left: 0px !important;}
.pl05 {padding-left: 05px !important;}
.pl10 {padding-left: 10px !important;}
.pl15 {padding-left: 15px !important;}
.pl20 {padding-left: 20px !important;}
.pl30 {padding-left: 30px !important;}
.pl40 {padding-left: 40px !important;}
.pl60 {padding-left: 60px !important;}
.pr00 {padding-right: 00px !important;}
.pr05 {padding-right: 05px !important;}
.pr10 {padding-right: 10px !important;}
.pr15 {padding-right: 15px !important;}
.pr20 {padding-right: 20px !important;}
.pr30 {padding-right: 30px !important;}
.pr40 {padding-right: 40px !important;}
.pr60 {padding-right: 60px !important;}

/* --------------------------------------------------
    【フロート】	#は削除
-------------------------------------------------- */
.fltL { float:left; }
.fltR { float:right; }
.both 	{ clear:both; }
.both05 { clear:both;height:05px;line-height:1;font-size:1px; }
.both10 { clear:both;height:10px;line-height:1;font-size:1px; }
.both15 { clear:both;height:15px;line-height:1;font-size:1px; }
.both20 { clear:both;height:20px;line-height:1;font-size:1px; }
.both30 { clear:both;height:30px;line-height:1;font-size:1px; }
.both40 { clear:both;height:40px;line-height:1;font-size:1px; }
.both50 { clear:both;height:50px;line-height:1;font-size:1px; }

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* --------------------------------------------------
    header
-------------------------------------------------- */
#header {
  background: linear-gradient(90deg, #e5006b, #e5006b 25%, #0076c3 25%, #0076c3 50%, #3aa537 50%, #3aa537 75%, #ef7f1e 75%, #ef7f1e 100%) repeat-x left top / 200px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 25px 20px 20px;
}
.hdrContact {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
.hdrContact .contact {
  font-size: 16px;
}
.hdrContact .tel {
  font-size: 2.25em;
  font-weight: 900;
  line-height: 1;
}
.hdrContact .tel a {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.hdrContact .tel a::before {
  width: 1.25em;
  height: .722em;
  content: "";
  background: url("images/icon_freedial.png") no-repeat center / contain;
}
.trial_btn a {
  background: #e5006b;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  column-gap: 5px;
  line-height: 1.3;
  padding: 1em 1.5em;
  border-radius: calc(1px/0);
}
.trial_btn a:hover {
  filter: brightness(1.1);
}
.trial_btn a::before {
  width: 1.36em;
  height: 1em;
  content: "";
  background: url("images/icon_mail.svg") no-repeat center / contain;
  display: block;
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  #header {
    background-size: 100px 4px;
    flex-direction: column;
    row-gap: 1em;
    padding: 1em 0;
  }
  .hdrLogo {
    max-width: 240px;
  }
  .hdrContact {
    column-gap: .5em;
  }
  .hdrContact .contact {
    font-size: min(2.933vw, 12px);
  }
  .trial_btn a {
    font-size: min(3.733vw, 14px);
    padding: .35em 1.25em;
  }
}
/* --------------------------------------------------
    main
-------------------------------------------------- */
main {
  padding: 80px 0;
}
#about {
  display: grid;
  grid-template-columns: 60% auto;
  column-gap: 3em;
}
#about table th {
  background: #262626;
  color: #fff;
  font-weight: bold;
}
#about .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gmap {
  margin-top: 80px;
  position: relative;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2.667/1;
}
@media screen and (max-width: 1199px) {
  main {
    padding: 40px 0;
  }
  #about {
    grid-template-columns: auto;
    row-gap: 2em;
  }
  #about table th {
    padding: .5em;
  }
  .gmap {
    margin-top: 40px;
  }
  .gmap iframe {
    aspect-ratio: 1/1;
  }
}
/* --------------------------------------------------
    footer
-------------------------------------------------- */
#footer {
  background: #262626;
  color: #fff;
}
.copyright {
  font-size: 14px;
  text-align: center;
  padding: 1em 0;
}
@media screen and (max-width: 1199px) {
  .copyright {
    font-size: 12px;
  }
}