/* setting */
/* ============================================ */
:root{
  --font1: "Knewave", system-ui;

  --main-color: #35c3fc;
  --sub-color: #c44649;
  --accent-color:#630606;
  --bg-color: #F5F5F5;

  --width-lg: 1400px;
  --width-md: 1150px;
  --width-sm: 900px;
}

html.active body {
  touch-action: none;
  overflow-y: hidden;
}
body{
  background-color: #F3F3EB;
  letter-spacing: 0.02em;
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #03283b;
  @media (max-width: 430px){
    font-size: 14px;
  }
}

img{
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}
::-webkit-full-page-media, :future, :root img{
  image-rendering: unset;
}
a{
  transition: 0.3s;
}
a:hover{
  opacity: 0.8;
  opacity: 1.0;
}
table { border-collapse: collapse; border-spacing: 0; }

.CL { clear: both; }
.CF:after { clear: both; display: block; content: ""; }

@media screen and (min-width: 768px) {
  .BrSmp,BrSp,.SpBr,.SmpBr,.PcNone { display: none; }
}
@media screen and (max-width: 767px) {
  .BrPc,.PcBr { display: none; }
  .SmpNone { display: none; }
}

/* header */
/* ============================================ */
.hd {
  background-color: var(--main-color);
}

h1.hd__logo {
  margin: 0;
  padding: 15px;
  text-align: center;
  letter-spacing: 1px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  @media (max-width: 767px) {
    padding: 5px;
    font-size: 18px;
  }
}

/* Content */
/* ============================================ */
/* One Column */
.ContentBody.one-column {
  box-sizing: border-box;
  margin: 0px auto;
  padding: 50px 0 30px;
  width: 980px;
  @media (max-width: 767px) {
    padding: 30px 10px;
    width: 100%;
  }
}

/* footer */
/* ============================================ */
#footer{
  padding: 50px 30px 30px;
  width: 100%;
  background-color: #fff;
}

#footer-logo {
  margin-bottom: 30px;
  text-align: center;
}
#footer-logo img{
  width: 300px;
  @media (max-width: 1000px){
    width: 160px;
  }
}

#footer-address{
  margin-bottom: 50px;
  padding: 0;
  text-align: center;
  list-style: none;
  li{
    font-size: 13px;
  }
  #ft-company-name{
    font-size: 20px;
    font-weight: bold;
    @media (max-width: 768px) {
      font-size: 16px;
    }
  }
  #ft-company-name b{
    color: var(--accent-color);
  }
}

#copyright{
  text-align: center;
  font-size: 12px;
}


/* PAGE TOP/
--------------------------- */
.c-pagetop-fixed {
  z-index: 999;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #595959;
  opacity: 0.9;
  @media (max-width: 767px) {
    bottom: 0px;
    right: 0px;
    width: 50px;
    height: 50px;
  }
  a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  img {
    display: block;
    width: auto;
    height: 40px;
    opacity: 0.9;
    @media (max-width: 767px) {
      height: 30px;
    }
  }
}

.c-pagetop-fixed {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.c-pagetop-fixed.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.c-pagetop-fixed:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transition: box-shadow 0.3s ease;
}

