@charset "UTF-8";
/* 使用フォント */
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
/* レイアウト */
body {
  container-type: inline-size;
  -webkit-text-size-adjust: 100%;
}

#wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#layout-body {
  flex-grow: 1;
}
@media print, screen and (min-width: 769px) {
  #layout-body {
    -webkit-padding-before: 2rem;
            padding-block-start: 2rem;
    -webkit-padding-after: 2rem;
            padding-block-end: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #layout-body {
    -webkit-padding-before: 1rem;
            padding-block-start: 1rem;
    -webkit-padding-after: 1rem;
            padding-block-end: 1rem;
  }
}

.innerwrap {
  width: 96%;
  margin: auto;
}
@media print, screen and (min-width: 769px) {
  .innerwrap {
    max-width: 1200px;
  }
}

.sp_img > figure {
  width: 100%;
}
.sp_img > figure > img {
  min-width: 100%;
  max-width: 100%;
}

@media print, screen and (min-width: 769px) {
  .sp_disp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc_disp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .site-logo {
    height: 100%;
    width: 100%;
    margin: 0;
  }
  .site-logo a {
    height: 100%;
    display: block;
    width: 100%;
  }
  .site-logo img,
.site-logo picture {
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
.mainblock > .sec {
  padding: 0 3%;
  margin-block: 3rem;
}
.mainblock > .sec:first-child {
  margin-top: initial;
}
.mainblock > .sec:last-child {
  margin-bottom: initial;
}

#layout-footer {
  background-color: #b2d9b0;
}
#layout-footer .site-name {
  display: block;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 2em 0.5em;
}

.copyright {
  margin: auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 769px) {
  div.tothetop {
    position: fixed;
    right: 2%;
    bottom: 0%;
    z-index: 1500;
  }
  div.tothetop a {
    display: block;
    margin: 0;
    background: url(../images/scrolltop_pc.png);
    width: 48px;
    aspect-ratio: 1/1;
    text-indent: -9999px;
    overflow: hidden;
    opacity: 0.3;
  }
  div.tothetop a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  div.tothetop {
    position: fixed;
    right: 2%;
    bottom: 1%;
    z-index: 1500;
  }
  div.tothetop a {
    display: block;
    margin: 0;
    background: url(../images/scrolltop_sp.png);
    width: 48px;
    aspect-ratio: 1/1;
    background-size: contain;
    text-indent: -9999px;
    overflow: hidden;
    opacity: 0.3;
  }
  div.tothetop a:hover {
    opacity: 1;
  }
}