/*
Theme Name: shima-kazuyoshi
Theme URI: https://shima-kazuyoshi.com
Author: Chiharu Mizuhashi
Author URI: https://hareand.com
Description: shima-kazuyoshi
Version: 1.0
*/

@charset "utf-8";

/* common */
body {
  margin: 0;
  background: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.sawarabiG {
  font-family: 'Sawarabi Gothic', sans-serif;
}

.sawarabiM {
  font-family: 'Sawarabi Mincho', serif;
}

.UDmincho {
  font-family: 'BIZ UDMincho', serif;
  font-weight: 400;
}

.UDPmincho {
  font-family: 'BIZ UDPMincho', serif;
  font-weight: 400;
}

.tate {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  vertical-align: bottom;
  width: 100%;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol,
dl {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* javascriptのアニメーション */
/* ふわっと現れる */
.visible {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}

.visible.appear {
  opacity: 1;
  transform: translateY(0);
}

/* マーカーを引く */
.marker {
  background: linear-gradient(transparent 20%, rgba(249, 248, 113, 1) 80%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 2s;
}

.marker.on {
  background-size: 100% 100%;
}


/* header */
.Header {
  display: flex;
  padding: 8px 100px 20px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #868686;
  background: rgba(255, 255, 255, 0.95);
}

.headerLogo {
  width: fit-content;
  text-align: center;
}

.headerLogo p {
  border-bottom: 1px solid black;
  padding-bottom: 4px;
}

.headerLogo h1 {
  padding: 4px;
  border-bottom: 2px solid black;
  font-weight: normal;
}

.pcMenu {
  display: flex;
  gap: 60px;
  font-size: 1.1em;
}

.pcMenu a:hover {
  color: #868686;
}

.spMenu {
  display: none;
}

.open.hide {
  display: none;
}

.overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #ACE0F9 0%, #FFF1EB 90.08%);
  pointer-events: none;
  overflow: scroll;
  z-index: 100;
  transform: translateY(-100vh);
  transition: transform .5s;
}

.overlay.show {
  pointer-events: auto;
  transform: none;
}


/* header_forSmartPhone */
@media screen and (max-width: 840px) {
  .Header {
    padding: 26px 0px 26px 20px;
    align-items: end;
  }

  .pcMenu {
    display: none;
  }

  .spMenu {
    display: block;
    font-size: 42px;
    background: rgba(250, 250, 250, 0.80);
    padding: 12px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;
  }

  .headerLogo p {
    font-size: 0.75em;
  }

  .headerLogo h1 {
    font-size: 1.75em;
  }

  .overlay::after {
    content: '';
    display: block;
    width: 100%;
    height: 100px;
    background: url(img/mountain.png) bottom/contain no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .overlayLogo {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #000;
  }

  .overlayLogo .headerLogo {
    padding: 48px 40px 26px;
  }

  .overlayMenu {
    padding: 44px 70px;
  }

  .overlayMenu li {
    font-size: 1.25em;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
  }
}

/* topKey */
.topKey {
  display: grid;
  grid-template-rows: 100%;
  grid-template-columns: 16% 21% 21% 15% 21%;
  column-gap: 1.5%;
  margin: 80px 0;
}

.topKey img {
  height: 100%;
  object-fit: cover;
}

.item01 {
  grid-row: 1/2;
  grid-column: 1/2;
}

.item02 {
  grid-row: 1/2;
  grid-column: 2/3;
}

.item03 {
  grid-row: 1/2;
  grid-column: 3/4;
}

.item04::before {
  content: '';
  display: block;
  width: 120%;
  height: 40%;
  background: url(img/before_deco.png) left/contain no-repeat;
  position: absolute;
  left: -21vw;
  top: 32px;
  opacity: 0;
  animation: decoAnime .5s forwards;
  transform-origin: left;
  z-index: 10;
}

.item04::after {
  content: '';
  display: block;
  width: 200%;
  height: 50%;
  background: url(img/after_deco.png) left/contain no-repeat;
  position: relative;
  top: 60%;
  left: 30%;
  opacity: 0;
  animation: decoAnime 2s forwards 0.5s linear;
  transform-origin: left;
  z-index: -1;
}

@keyframes decoAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }

  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

.item04 {
  grid-row: 1/2;
  grid-column: 4/5;
  font-size: 3em;
  line-height: 160%;
  position: relative;
  top: -36px;
  animation: titleUp linear 1.5s forwards;
}

@keyframes titleUp {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

.item05 {
  grid-row: 1/2;
  grid-column: 5/6;
}

/* topKey_forSmartPhone */
@media screen and (max-width: 840px) {
  .topKey {
    display: grid;
    grid-template-rows: 50% 44%;
    grid-template-columns: 10% 10% 38% 6% 28%;
    gap: 40px 2%;
    margin: 40px 0;
  }

  .item01 {
    grid-row: 2/3;
    grid-column: 1/3;
  }

  .item02 {
    grid-row: 2/3;
    grid-column: 3/5;
  }

  .item03 {
    grid-row: 1/2;
    grid-column: 2/4;
  }

  .item04 {
    grid-row: 1/2;
    grid-column: 4/6;
    font-size: 1.5em;
    justify-self: center;
    position: static;
  }

  .item04::before {
    width: 200%;
    left: -59vw;
    top: -8px;
  }

  .item04::after {
    width: 400%;
    position: absolute;
    top: 50%;
    right: -20px;
  }

  .item05 {
    grid-row: 2/3;
    grid-column: 5/6;
  }
}

/* message */
.message {
  background: var(--_, linear-gradient(180deg, rgba(172, 224, 249, 0.6) 0%, rgba(255, 241, 235, 0.90) 90.08%));
  padding: 80px 15% 300px;
}

.message01 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  background-image: url(img/message_back.png);
  background-color: rgba(255, 255, 255, 0.4);
  background-blend-mode: lighten;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  padding: 44px 75px 75px 100px;
}

.message h3 {
  font-size: 2.25em;
}

.message h3::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.6em;
  background: url(img/message_deco.svg) center/contain no-repeat;
}

.message p {
  margin-top: 20px;
  width: 84%;
  font-size: 1.125em;
  line-height: 150%;
  z-index: 2;
}

.message02 {
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 44px 75px 75px 100px;
  margin-top: 100px;
}

/* message_forSmartPhone */
@media screen and (max-width: 840px) {
  .message {
    padding: 108px 16px 95px 16px;
  }

  .message01,
  .message02 {
    padding: 30px 22px 68px;
  }

  .message h3 {
    font-size: 1.5em;
  }

  .message p {
    font-size: 1em;
  }
}

#footer {
  padding: 0 0 100px;
  text-align: center;
  background: url(img/footer_back2.jpg) center/cover no-repeat;
  color: #FFF;
}

#footer::before {
  content: '';
  display: block;
  width: 100vw;
  aspect-ratio: 1439/136;
  background: url(img/mountain.png) center/cover no-repeat;
  position: absolute;
  transform: translateY(-100%);
}

.footerNav {
  width: fit-content;
  margin: 0 auto;
  padding-top: 100px;
}

#footer a {
  color: #FFF;
}

#footer .headerLogo {
  margin: 40px auto 24px;
}

#footer .headerLogo p,
#footer .headerLogo h1 {
  border-color: #fff;
}

.mail span {
  vertical-align: bottom;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.mail,
.address,
.tel {
  font-size: 0.875em;
}

.address {
  margin-top: 86px;
}

.tel {
  margin: 24px auto 84px;
  pointer-events: none;
}

@media screen and (max-width: 840px) {
  .footerNav {
    padding-top: 60px;
  }

  .footerNav .pcMenu {
    display: block;
  }

  .footerNav .pcMenu li {
    margin-bottom: 34px;
    font-size: 1em;
  }

  #footer .headerLogo {
    margin: 60px auto 16px;
  }

  .address {
    margin: 60px 16px 16px;
  }

  .tel {
    margin: 16px 0 60px;
    pointer-events: all;
  }

  #footer::before {
    height: 40px;
  }
}

/* subPageTitle */
.subPageTitle {
  padding: 100px 0 0 178px;
}

.subPageTitle h2 {
  font-size: 2.4em;
  color: #fff;
  line-height: 200%;
}

.subPageTitle h2::before {
  content: '';
  display: block;
  background: url(img/subpage_title.jpg) bottom/cover no-repeat;
  width: 40%;
  height: 180px;
  border-radius: 8px;
  position: absolute;
  left: 100px;
  transform: translateY(-20px);
  z-index: -1;
}

.subPageTitle h2::after {
  content: '';
  display: block;
  background: url(img/subpage_title_img.jpg) center/cover no-repeat;
  width: 100%;
  height: 240px;
}

/* subPageTitle forSmartPhone */
@media screen and (max-width: 840px) {
  .subPageTitle {
    padding: 100px 0 0 0;
  }

  .subPageTitle h2 {
    font-size: 1.375em;
    margin-left: 16px;
    line-height: 240%;
  }

  .subPageTitle h2::before {
    width: 50%;
    height: 2.4em;
    border-radius: 0;
    left: 0;
    transform: none;
  }

  .subPageTitle h2::after {
    height: 4.8em;
    position: absolute;
    left: 0;
    transform: translateY(-4.8em);
    z-index: -2;
  }
}

/* profileMain */
#profileMain {
  padding-bottom: 200px;
}

.profileSec h3 {
  font-size: 2.25em;
  line-height: 140%;
  margin-top: 88px;
  padding: 0 100px 0 300px;
  border-bottom: solid #009AFA 4px;
  display: inline-block;
  position: relative;
}

.profileSec h3::after {
  content: '';
  position: absolute;
  border: solid 1px #009AFA;
  bottom: -10px;
  left: 0;
  right: 0;
}

.profileSecWrap {
  display: flex;
  margin-top: 48px;
  justify-content: space-evenly;
}

.profileSecText {
  position: relative;
}

.profileSecText::before {
  content: '';
  display: block;
  width: 3px;
  height: 100%;
  background-color: #D6F4FF;
  position: absolute;
  left: 4.6em;
}

.profileRow {
  display: flex;
  align-items: baseline;
  margin-top: 16px;
}

.profileRow span {
  font-size: 0.8em;
}

.profileYear {
  font-size: 1.125em;
  color: #132246;
  position: relative;
}

.profileYear::after {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #3d82b7;
  position: absolute;
  right: -24px;
  top: 0;
}

.profileText {
  /* font-size: 1.125em; */
  margin-left: 5em;
  position: relative;
}

.profileText::before {
  content: '';
  display: block;
  width: 3.5em;
  height: 1px;
  background-color: #3d82b7;
  position: absolute;
  left: -4.5em;
  top: 0.75em;
}

.profileImgBack::after {
  content: '';
  display: block;
  width: 300px;
  aspect-ratio: 10/8;
  background-color: #D6F4FF;
  border-radius: 4px;
  z-index: -1;
  position: absolute;
  transform: translateY(-237px) rotate(8deg);
}

.keireki .profileSecWrap {
  padding: 0 100px 0 15%;
}

.keireki .profileSecImg {
  width: 259px;
}

.keireki .profileSecImg::after {
  content: '';
  display: block;
  width: 259px;
  height: 398px;
  background-color: #D6F4FF;
  border-radius: 4px;
  transform: translateY(-388px) rotate(349deg);
  z-index: -1;
  position: absolute;
}

.gikai .profileSecWrap {
  flex-direction: row-reverse;
  padding: 0 100px 0 10%;
  align-items: center;
  gap: 20%;
}

.gikai .profileSecImg,
.chiiki .profileSecImg {
  width: 300px;
}

.gikaiImg02,
.chiikiImg02 {
  transform: translate(130px, -20px);
  position: relative;
  z-index: -2;
}

.gikai .profileSecText,
.chiiki .profileSecText {
  height: fit-content;
}

.chiiki .profileSecWrap {
  padding: 0 20% 0 160px;
  align-items: center;
  gap: 10%;
}

.chiiki .profileImgBack::after {
  transform: translateY(-237px) rotate(-8deg);
}


/* profileMain forSmartPhone */
@media screen and (max-width: 840px) {
  #profileMain {
    padding-bottom: 160px;
  }

  .profileSec h3 {
    font-size: 1.375em;
    margin-top: 60px;
    padding: 0 40px;
  }

  .profileSecWrap {
    display: block;
    margin: 36px auto;
  }

  .profileSecText::before {
    left: 3.3em;
  }

  .profileRow span {
    display: none;
  }

  .profileYear {
    font-size: 0.875em;
  }

  .profileText {
    margin-left: 4em;
  }

  .profileText::before {
    width: 2.5em;
    left: -3em;
  }

  .profileImgBack::after {
    width: 210px;
    transform: translateY(-169px) rotate(8deg);
  }

  .keireki .profileSecWrap {
    padding: 0 16px;
  }

  .keireki .profileSecImg {
    margin: 46px auto 0;
    width: 210px;
  }

  .keireki .profileSecImg::after {
    width: 210px;
    height: 314px;
    transform: translateY(-310px) rotate(349deg);
  }

  .gikai .profileSecWrap,
  .chiiki .profileSecWrap {
    padding: 0 16px;
  }

  .gikai .profileSecImg,
  .chiiki .profileSecImg {
    width: 210px;
    margin: 46px 16px 0 6%;
  }

  .gikaiImg02,
  .chiikiImg02 {
    transform: translate(110px, -20px);
  }

  .chiiki .profileImgBack::after {
    transform: translateY(-167px) rotate(-8deg);
  }
}

/* policyMain */
#policyMain {
  padding: 100px 100px 300px;
}

#policyMain h3 {
  font-size: 2.5em;
  text-align: center;
  font-weight: normal;
  margin-bottom: 70px;
}

.policySec {
  display: flex;
  gap: 70px;
  font-size: 1.125em;
  padding: 70px 0;
  border-bottom: #ACE0F9 1px solid;
}

.policySecImg {
  width: 30%;
  max-width: 370px;
  flex-shrink: 0;
}
.policySecImg::after {
  content: '';
  font-size: 0.9em;
  display: inline-block;
  width: 100%;
  background: rgba(255, 255, 255, 0.80);
  transform: translateY(-50px);
  text-align: center;
  line-height: 200%;
}
.policy01 .policySecImg::after {
  content: '防災・安全対策で安心を';
}
.policy02 .policySecImg::after {
  content: '緑の保護と地産地消の推進';
}
.policy03 .policySecImg::after {
  content: '効率向上で丁寧なコミュニケーションを';
}
.policy04 .policySecImg::after {
  content: '安心・繁栄を共に築くために';
}

.policySecText {
  position: relative;
}

.policySecText h4 {
  font-size: 2em;
}

.policyNumber {
  font-size: 7.5em;
  color: #fff;
  -webkit-text-stroke: 1px #009AFA;
  text-stroke: 1px #009AFA;
  text-shadow: 2px 2px 2px #3D82B7;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 0;
}

.policyDetail {
  margin: 40px 0 20px;
}

.policySecText ul li {
  margin: 12px 0 0 28px;
  position: relative;
}
.policySecText ul li::after {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  background: #3D82B7;
  border-radius: 50%;
  position: absolute;
  top: 0.3em;
  left: -1.6em;
}

/* policyMain_forSmartPhone */
@media screen and (max-width: 840px) {
  #policyMain {
    padding: 60px 16px 100px;
  }

  #policyMain h3 {
    font-size: 1.33em;
    margin-bottom: 120px;
  }

  .policySec {
    display: block;
    font-size: 1em;
    padding: 0 0 70px;
    position: relative;
    margin-top: 100px
  }

  .policySecImg {
    width: 100%;
    max-width: none;
  }

  .policySecText {
    position: initial;
  }

  .policySecText h4,
  .policyNumber {
    position: absolute;
    top: -32px;
  }
  
  .policySecText h4 {
    font-size: 1.3em;
  }

  .policyNumber {
    font-size: 5em;
  }

  .policyDetail {
    margin: 0;
  }

  .policySecText ul {
    margin-top: 36px;
  }

  .policySec:last-child {
    border-bottom: none;
  }
}

/* resultMain */
#resultMain {
  padding: 100px 100px 350px;
}

.resultTopText {
  font-size: 1.125em;
  text-align: center;
  margin-bottom: 100px;
}

.resultPart {
  display: flex;
}

.resultPart h3 {
  font-size: 2.25em;
  width: 100px;
  border-top: 1px solid #888;
  border-right: 1px solid #888;
  flex-shrink: 0;
  line-height: 300%;
  padding: 40px 0;
}

.resultPart dl {
  width: 100%;
  padding: 20px 0 80px 40px;
  border-top: 1px solid #888;
}

.resultPartRow {
  display: flex;
  margin-top: 20px;
}

.resultPartRow dt {
  color:  #3D82B7;
  width: 40%;
  font-weight: bold;
}

.resultPartRow span {
  margin-right: 0.5em;
}

.resultPartRow dd {
  width: 60%;
}

.resultImg {
  display: grid;
  grid-template-rows: 200px 200px;
  grid-template-columns: 40% 25% 30%;
  gap: 20px;
  margin-top: 100px;
}

.resultImg img {
  height: 100%;
  object-fit: cover;
}

.resultImg01 {
  grid-row: 1/3;
  grid-column: 1/2;
}

.resultImg02 {
  grid-row: 1/2;
  grid-column: 2/3;
  object-position: bottom;
}

.resultImg03 {
  grid-row: 2/3;
  grid-column: 2/3;
}

.resultImg04 {
  grid-row: 1/2;
  grid-column: 3/4;
}

.resultImg05 {
  grid-row: 2/3;
  grid-column: 3/4;
}

/* resultMain_forSmartPhone */
@media screen and (max-width: 840px) {
  #resultMain {
    padding: 60px 0 160px;
  }

  .resultTopText {
    text-align: start;
    font-size: 1em;
    margin: 0 16px 76px;
  }

  .resultPart {
    display: block;
    margin-top: 60px;
  }

  .resultPart h3 {
    font-size: 1.375em;
    width: fit-content;
    writing-mode: horizontal-tb;
    line-height: 113%;
    border-bottom: 2px solid #000;
    border-top: none;
    border-right: none;
    padding: 0 1em;
    position: relative;
  }
  .resultPart h3::after {
    content: '';
    position: absolute;
    border: solid 0.6px #000;
    bottom: -6px;
    left: 0;
    right: 0;
  }

  .resultPart dl {
    padding: 0;
    margin: 0 16px;
    border-top: none;
    width: calc(100% - 32px);
  }

  .resultPartRow {
    display: block;
  }

  .resultPartRow dt {
    width: 100%;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 12px;
    position: relative;
  }
  .resultPartRow dt::after {
    content: '+';
    font-size: 1.2em;
    text-align: center;
    color: #000;
    line-height: 20px;
    position: absolute;
    right: 0;
    width: 24px;
    height: 24px;
    background-color: #ddd;
    border-radius: 50%;
  }
  dl > div.appear dt::after {
    transform: rotate(45deg);
  }

  .resultPartRow dd {
    width: 100%;
    margin-inline-start: 0;
    background-color: rgba(214, 244, 255, 0.60);
    padding: 8px 0 16px;
    display: none;
  }

  dl > div.appear dd {
    display: block;
    animation: .3s fadeIn;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }

  .resultImg {
    grid-template-rows: 100px 100px;
    grid-template-columns: 40% 25% 32%;
    gap: 4px;
    justify-content: center;
  }
}

/* reportMain */
#reportMain {
  display: flex;
  justify-content: space-between;
}

.reportArchieve {
  padding-bottom: 250px;
}

.reportArchieve h3 {
  display: inline-block;
  font-size: 2.25em;
  font-weight: normal;
  padding: 0 40px 0 100px;
  border-bottom: 4px solid #009afa;
  position: relative;
  margin-top: 60px;
}
.reportArchieve h3::after {
  content: '';
  position: absolute;
  border: solid 1px #009AFA;
  bottom: -10px;
  left: 0;
  right: 0;
}

.noTitle {
  display: none;
}

.reportPosts {
  margin: 120px 100px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.reportContent {
  width: 45%;
  min-width: 200px;
  margin-bottom: 140px;
}

.reportContent img {

  height: 100%;
  transform: scale(1);
  transition: .3s ease-in-out;
}

.reportContent a:hover img {
  transform: scale(1.05);
}

.thumbnail {
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.25);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  overflow: hidden;
}
.thumbnail::after {
  content: '';
  display: block;
  width: 20%;
  height: 20%;
  background: url(img/file_open.svg) bottom/contain no-repeat;
  z-index: 10;
  position: absolute;
  bottom: 0;
  right: 0;
}

.reportTitle {
  font-size: 1.5em;
  border-left: 6px solid #F9F871;
  margin-top: 10px;
  line-height: 160%;
  padding-left: 8px;
}

.reportTime {
  color: #AAA;
  
}

.reportSideNav {
  width: 240px;
  background: var(--_, linear-gradient(180deg, rgba(172, 224, 249, 0.41) 0%, rgba(255, 241, 235, 0.80) 90.08%));
  margin-right: 100px;
  flex-shrink: 0;
  padding-bottom: 240px;
}

.reportSideNavWrap {
  position: sticky;
  top: 100px;
  text-align: center;
  margin: 140px 20px 0;
  line-height: 350%;
}

.reportSideNav h3 {
  font-size: 1.5em;
  border-bottom: 2px solid #000;
}

.reportSideNav ul li {
  font-size: 1.125em;
  border-bottom: 1px solid #aaa;
}

.reportPageNav ul {
  display: flex;
  font-size: 2em;
  margin-left: 80px;
  gap: 40px;
}

.reportPageNav a {
  color: #AAA;
  border-bottom: 1px solid #AAA;
}

/* reportMain_forSmartPhone */
@media screen and (max-width: 840px) {
  #reportMain {
    display: block;
  }

  .reportArchieve {
    padding-bottom: 100px;
  }

  .reportArchieve h3 {
    font-size: 1.375em;
    padding: 0 30px 0 16px;
  }

  .reportPosts {
    display: block;
    margin: 60px 8% 0;
  }

  .reportContent {
    width: 100%;
    margin-bottom: 90px;
  }

  .reportTitle {
    font-size: 1.25em;
  }

  .reportTime {
    font-size: 0.875em;
  }

  .reportPageNav {
    width: fit-content;
    margin: 0 auto;
  }

  .reportPageNav ul {
    margin-left: 0;
  }


  .reportSideNav {
    width: 100%;
    margin-right: 0;
    padding: 60px 0 200px;
  }

  .reportSideNavWrap {
    position: static;
    margin: 0 80px;
  }
}

/* reportPostMain */
#reportPostMain {
  margin-top: 80px;
  background: var(--_, linear-gradient(180deg, rgba(172, 224, 249, 0.41) 0%, rgba(255, 241, 235, 0.80) 90.08%));
  padding: 100px 10% 240px;
}

.reportPost {
  background-color: #fff;
  text-align: center;
  padding: 100px;
}

.reportPostTime {
  font-size: 0.875em;
}

.reportPostTitle {
  font-size: 2.25em;
  border-top: 1px solid #000;
  border-bottom: 2px solid #000;
  display: inline-block;
  line-height: 140%;
  margin: 8px 0 40px;
}

.reportPost .df-bg {
  background-color: #ddd !important;
}

.reportPostPageNav ul {
  display: flex;
  gap: 80px;
  justify-content: center;
  margin-top: 120px;
}

.reportPostPageNav a {
  font-size: 1.125em;
  border-bottom: 1px solid #000;
  padding-bottom: 6px;
}

/* reportPostMain_forSmartPhone */
@media screen and (max-width: 840px) {
  #reportPostMain {
    margin-top: 60px;
    padding: 70px 18px 120px;
  }

  .reportPost {
    padding: 40px 4px 80px;
  }
 
  .reportPostTitle {
    font-size: 1.375em;
  }

  .kakudai {
  font-size: 0.875em
  }

  .reportPost img {
    width: 85%;
  }

  .reportPostPageNav ul {
    margin-top: 80px;
    gap: 40px;
  }

  .reportPostPageNav a {
    font-size: 1em;
  }
}

/* 404notFound */
.notFound {
  background: var(--_, linear-gradient(180deg, rgba(172, 224, 249, 0.41) 0%, rgba(255, 241, 235, 0.80) 90.08%));
  text-align: center;
  padding: 160px 0 300px;
}

.notFound h2 {
  font-size: 4em;
  font-weight: 500;
}

.notFound p {
  margin-top: 26px;
}

.notFound button {
  font-size: 1.125em;
  padding: 24px 100px;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 100px;
  border: #000 1px solid;
}

/* 404notFound_forSmartPhone */
@media screen and (max-width: 840px) {
  .notFound {
    padding: 140px 0 200px;
  }
  .notFound h2 {
    font-size: 3em;
  }

  .notFound button {
    font-size: 1em;
    padding: 18px 80px;
    margin-top: 80px;
  }
}