@charset "utf-8";
/*-------common------*/
html {
  font-size: 62.5%;
  /* scroll-behavior: smooth; */
}
body {
  font-size: var(--b-fs);
  color: var(--b-color);
  font-family: var(--b-font-family);
  letter-spacing: var(--b-ls);
  line-height: var(--b-lh);
  font-weight: var(--b-fw);
  margin: 0;
}
.en {
  font-family: "Century Gothic", Arial, sans-serif;
}
.zenmaru {
  font-family: "Zen Maru Gothic", sans-serif;
}
.mincho {
  font-family: var(--b-font-family);
}
p {
  margin: 0;
}
a {
  font-family: "Zen Maru Gothic", sans-serif;
  text-decoration: none;
  color: var(--b-color);
  transition: 0.25s ease-in-out;
}
a:hover {
  opacity: 0.6;
}
h1,
h2,
h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  margin: 0;
  line-height: 1.2;
  font-size: var(--b-fs);
}
img {
  max-width: 100%;
  vertical-align: middle;
  width: auto;
}
.img-box img {
  width: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
th {
  font-weight: 500;
}
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul {
  margin: 0;
  padding: 0;
}
em {
  font-style: normal;
}
dl {
  margin: 0;
}
dl .row {
  display: flex;
}
dt {
  margin: 0;
}
dd {
  margin: 0;
}
.sp-only {
  display: none;
}
.tab820-none {
  display: block;
}
.tab820-block {
  display: none;
}
.tab1180-none {
  display: block;
}
.tab1180-block {
  display: none;
}
.inner {
  padding-left: 5.55%;
  padding-right: 5.55%;
}
.dfl {
  display: flex;
}
.dfl.re {
  flex-direction: row-reverse;
}
.ai-c {
  align-items: center;
}
.ai-st {
  align-items: flex-start;
}
.ai-sb {
  align-items: space-between;
}
.ai-end {
  align-items: flex-end;
}
.jc-c {
  justify-content: center;
}
.jc-st {
  justify-content: flex-start;
}
.jc-sb {
  justify-content: space-between;
}
.jc-end {
  justify-content: flex-end;
}
.fl1 {
  flex: 1;
}
.grid-wrap {
  display: grid;
}
.grid-wrap.fr2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-wrap.fr3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-wrap.fr4 {
  grid-template-columns: repeat(4, 1fr);
}
.fw300 {
  font-weight: 300;
}
.fw400 {
  font-weight: 400;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.fw900 {
  font-weight: 900;
}
.lh10 {
  line-height: 1;
}
.lh12 {
  line-height: 1.2;
}
.lh14 {
  line-height: 1.4;
}
.lh16 {
  line-height: 1.6;
}
.lh20 {
  line-height: 2;
}
.ls5 {
  letter-spacing: 0.05em;
}
.ls10 {
  letter-spacing: 0.1em;
}
.ls00 {
  letter-spacing: 0;
}
.sc {
  margin-right: 1em;
}
.tc {
  text-align: center;
}
.db {
  display: block;
}
.dib {
  display: inline-block;
}
.cwhite {
  color: #fff;
}
.cblack {
  color: #000;
}
.bwhite {
  background: #fff;
}
.bblack {
  background: #000;
}
.byellow {
  background: var(--yellow);
}
.bgreen {
  background: var(--green);
}
.bblue {
  background: var(--blue);
}
.cnavy {
  color: var(--navy);
}
.in-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
* {
  box-sizing: border-box;
}
.page-404 {
  padding: 150px 0;
}
.ttu {
  text-transform: uppercase;
}
.sc {
  margin-right: 1em;
}
.wfit {
  width: fit-content;
}
.mtc {
  margin-inline: auto;
}
.p-rl {
  position: relative;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.o-hi {
  overflow: hidden;
}
/*-------common-end------*/
.sp-footer-icons-container {
  display: none;
  justify-content: space-around;
  align-items: stretch;
  position: fixed;
  z-index: 701;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  /* padding-bottom: calc(env(safe-area-inset-bottom) / 2); */
}
/*-------hd------*/
.fixed-wrap.is-fixed {
  position: fixed;
  z-index: 500;
  background: rgba(255, 255, 255, 0.6);
  animation: slideDown 0.4s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/*-------ft------*/
#page-top {
  position: fixed;
  max-width: max(var(--px-36), 18px);
  width: 100%;
  right: 32px;
  bottom: 65px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  z-index: 600;
}
#page-top.is-show {
  opacity: 1;
  visibility: visible;
}
/*-------contact-form------*/
.cs-contact-form {
  width: 100%;
}
.cs-contact-form .row {
  margin-bottom: 30px;
}
.cs-contact-form .row:last-child {
  margin-bottom: 0;
}
.cs-contact-form textarea,
.cs-contact-form input {
  border: 1px solid #d8d8d8;
  border-radius: 9px;
  background: #f6f6f6;
  font-size: max(1.111vw, 16px);
  width: 100%;
  padding: 1em 0 1em 1em;
}
.cs-contact-form input:focus-visible,
.cs-contact-form textarea:focus-visible {
  outline: none;
}
.cs-contact-form dt {
  width: 30%;
}
.cs-contact-form dd {
  width: 70%;
}
.cs-contact-form-btn-wrap {
  text-align: center;
}
.table-form input:focus-visible,
.table-form textarea:focus-visible {
  outline: none;
}
input[type="submit"] {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin: clamp(25px, var(--px-50), 50px) auto 0;
  background: var(--blue) url(../../../uploads/2026/04/arrow-icon.webp)
    no-repeat right 16px center;
  background-size: 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
input[type="submit"]:hover {
  background: var(--navy) url(../../../uploads/2026/04/arrow-icon.webp)
    no-repeat right 16px center;
  background-size: 20px;
}
span.wpcf7-spinner {
  display: none;
}
.cs-contact-form .s-txt {
  color: #ff0000;
  margin-left: 0.5em;
}
.wpcf7-radio {
  display: flex;
  flex-direction: column;
}
.cs-contact-form .wpcf7-checkbox input,
.cs-contact-form .wpcf7-radio input {
  width: auto;
  margin: 0;
}
/*lightbox*/
#lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
}
/*-------ipad----*/
@media screen and (max-width: 1180px) {
  body .tab1180-none {
    display: none;
  }
  body .tab1180-block {
    display: block;
  }
}
/*-------ipad-air----*/
@media screen and (max-width: 820px) {
  body .tab820-none {
    display: none;
  }
  body .tab820-block {
    display: block;
  }
}
/*-------iphone----*/
@media screen and (max-width: 680px) {
  .dfl,
  .dfl.re,
  dl .row {
    flex-direction: column;
  }
  .grid-wrap {
    grid-template-columns: 1fr;
  }
  .grid-wrap.fr2,
  .grid-wrap.fr3,
  .grid-wrap.fr4 {
    grid-template-columns: 1fr;
  }
  body .sp-only {
    display: block;
  }

  body .pc-only {
    display: none;
  }
  .sp-footer-icons-container {
    display: grid;
    grid-template-columns: 50.4% 33.067% auto;
    justify-content: space-between;
	  background:#fff;
  }
  .sp-footer-icons-container img {
    height: 55px;
    width: auto;
  }
  .sp-footer-icons-container a {
    height: 55px;
  }
  .sp-ft-tel-btn {
    font-size: 2rem;
    color: var(--navy);
    background: #00a1e8;
  }
  .sp-ft-tel-btn::before {
    background: url(../../../uploads/2026/04/phone-icon-blue.webp) no-repeat;
    width: 21px;
    background-size: contain;
    aspect-ratio: 1 / 1;
  }
  .sp-ft-contact-btn {
    font-size: 1.8rem;
    color: var(--navy);
    background: #ccecfb;
  }
  .sp-ft-contact-btn::before {
    background: url(../../../uploads/2026/04/mail-icon-blue.webp) no-repeat;
    width: 21px;
    height: 16px;
    background-size: contain;
  }
  .sp-ft-page-top-btn {
    background: #e4eef5;
  }
  .sp-ft-btn {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    line-height: 1;
  }
  .sp-ft-btn::before {
    content: "";
    display: inline-block;
  }
  .sp-tl.tc {
    text-align: left;
  }
  .table-form tr {
    display: flex;
    flex-direction: column;
  }
  .table-form th {
    width: 100%;
  }
  .table-form td {
    padding: 0 0 1em;
  }
  .cs-contact-form dt {
    width: 100%;
  }
  .cs-contact-form dd {
    width: 100%;
  }
  .sp-inner {
    padding-inline: 5.55%;
  }
}
