@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;800&display=swap");
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
@keyframes kurukuru {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fillblack {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 -10%, 100% 0%, 100% 100%, 0% 100%);
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #111;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #FFF;
  overflow: hidden;
  position: fixed;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
  overflow: scroll;
}
body.looking {
  overflow: hidden;
}

a {
  color: #111;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in;
}

a:hover, a:active, a.active {
  color: #419364;
}

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

i {
  font-style: normal;
}

form, section, p, div, ul, li, dl, dt, dd, a, span, input, textarea {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

br.brsp {
  display: none;
}

/* ---------------------------------------------------------page--------------------------------------------------------- */
#loader {
  width: 100%;
  height: calc(var(--vh) * 100);
  min-height: 100%;
  background-color: #FFF;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 99999;
}
#loader .bar {
  width: 100%;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #FEB812;
  display: block;
}
#loader .text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: background-color 0.5s ease-in;
}
#loader .text h3 {
  width: 320px;
  height: 76px;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 38px);
  left: calc(50% - 160px);
  transition: all 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
#loader.on .text h3 {
  opacity: 0;
}

.pagetop {
  width: 40px;
  height: 40px;
  background-color: #FEB812;
  background-image: url(../images/arrow2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 18px;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  display: none;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 5;
  cursor: pointer;
  transition: all 0.25s ease-in 0s;
}
.pagetop:hover {
  opacity: 0.7;
}
.pagetop.on {
  display: block;
}

header {
  width: 100%;
  background-color: #FFF;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 111;
  transition: all 0.25s ease-in 0s;
}
header .inner {
  width: 100%;
  padding: 20px 30px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .inner h1 {
  width: 160px;
}
header .inner h1 a {
  width: 100%;
  height: 38px;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
header .inner .btn {
  width: 150px;
}
header .inner .btn a {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  height: 38px;
  background-color: #FEB812;
  border-radius: 19px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in 0s;
}
header .inner .btn a:hover {
  opacity: 0.7;
}

main {
  width: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
  box-sizing: border-box;
}
main section .credits {
  width: 100%;
}
main section .credits .credit:not(:last-child) {
  margin-bottom: 10px;
}
main section .credits .credit dl {
  text-align: left;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s ease-in 0s;
}
main section .credits .credit dl dt {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main section .credits .credit dl dt strong:nth-child(1) {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
main section .credits .credit dl dt strong:nth-child(1) span {
  font-weight: 300;
  display: inline-block;
  padding: 0 0 0 5px;
}
main section .credits .credit dl dt strong:nth-child(1) span:not(.nc)::after {
  padding: 0 0 0 5px;
}
main section .credits .credit dl dt strong:nth-child(2) {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0em;
  margin-left: 5px;
}
main section .credits .credit dl dd {
  width: auto;
  min-height: 20px;
  box-sizing: border-box;
}
main section .credits .credit dl dd a {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.25s ease-in 0s;
}
main section .credits .credit dl dd a:hover {
  color: #419364;
}
main section .credits .credit dl dd a:not([href]) {
  display: none;
}
main section .credits .credit dl dd a:not([href]) + span {
  color: #C1485C;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  display: inline-block;
}
main section .credits .credit dl dd a:not([href]) + a.linelink {
  display: inline-block;
}
main section .credits .credit dl dd a[href] {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main section .credits .credit dl dd a[href] + a.linelink {
  display: none;
}
main section .credits .credit dl dd a + span {
  display: none;
}
main section .credits .credit dl dd a.items__a {
  color: #C1485C;
  text-decoration: none;
  background-color: #111;
  width: 40px;
  height: 20px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main section .credits .credit dl dd a.items__a:hover {
  color: #111;
  background-color: #419364;
}
main section .credits .credit dl dd span {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
main section#visual {
  width: 100%;
  min-height: 1048px;
  padding: 325px 0 0 0;
  position: relative;
  overflow: hidden;
  z-index: 5;
}
main section#visual::before {
  content: "";
  width: 1328px;
  height: 1328px;
  border-radius: 664px;
  background-color: #419364;
  background-image: url(../images/map1.png);
  background-repeat: no-repeat;
  background-position: right 300px top 415px;
  background-size: 454px 586px;
  position: absolute;
  top: -280px;
  left: calc(50% - 1328px + 120px);
  z-index: -1;
  display: block;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.5s ease-in 0s;
}
main section#visual::after {
  content: "";
  width: 1328px;
  height: 1328px;
  border-radius: 664px;
  background-color: #C1485C;
  background-image: url(../images/map2.png);
  background-repeat: no-repeat;
  background-position: left 280px top 415px;
  background-size: 468px 580px;
  position: absolute;
  top: -280px;
  right: calc(50% - 1328px + 120px);
  z-index: -1;
  display: block;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.5s ease-in 0.2s;
}
main section#visual .title {
  width: auto;
  margin: 0 auto 250px auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
main section#visual .title::before {
  content: "";
  width: 346px;
  height: 100px;
  background-image: url(../images/title_deco.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -75px;
  left: calc(50% - 173px);
  z-index: 1;
  display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s ease-in 0.4s;
}
main section#visual .title h2 {
  width: 704px;
  height: 165px;
  background-image: url(../images/title.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin-bottom: 50px;
}
main section#visual .title p {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}
main section#visual ul.anchor {
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s ease-in 0.8s;
}
main section#visual ul.anchor li {
  width: 265px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
}
main section#visual ul.anchor li:not(:first-child) {
  margin-left: 25px;
}
main section#visual ul.anchor li span {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.4rem;
  letter-spacing: 0em;
  width: 100%;
  height: 65px;
  background-color: #FFF;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in 0s;
  cursor: pointer;
}
main section#visual ul.anchor li span:hover {
  background-color: #FEB812;
}
main section#visual.on::before {
  clip-path: circle(50% at 50% 50%);
}
main section#visual.on::after {
  clip-path: circle(50% at 50% 50%);
}
main section#visual.on .title::before {
  clip-path: inset(0 0 0 0);
}
main section#visual.on ul.anchor {
  clip-path: inset(0 0 0 0);
}
main section.sec {
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main section.sec.on {
  opacity: 1;
}
main section.sec#sec1 {
  width: 100%;
  background-image: url(../images/bg_texture.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 150px;
  margin-top: -300px;
  position: relative;
}
main section.sec#sec1 .title {
  padding-top: 250px;
  position: relative;
}
main section.sec#sec1 .title dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main section.sec#sec1 .title dl dt {
  width: 164px;
  height: 48px;
  background-image: url(../images/title_deco_part1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}
main section.sec#sec1 .title dl dd {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 4.8rem;
  letter-spacing: 0.1em;
}
main section.sec#sec1 .title::after {
  content: "";
  width: 630px;
  height: 220px;
  background-image: url(../images/deco_question.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 270px;
  left: calc(50% - 315px);
}
main section.sec#sec1 .ranking {
  width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
main section.sec#sec1 .ranking::before {
  content: "県内のスーパー店舗数ランキング";
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  width: 500px;
  height: 50px;
  background-color: #FEB812;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 150px;
  left: calc(50% - 250px);
  z-index: 1;
  clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}
main section.sec#sec1 .ranking .box {
  text-align: left;
  width: calc((100% - 100px) / 2);
}
main section.sec#sec1 .ranking .box .photo {
  width: 340px;
  position: relative;
  margin-bottom: 80px;
}
main section.sec#sec1 .ranking .box .photo::after {
  content: "";
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -45px;
  display: block;
}
main section.sec#sec1 .ranking .box .photo img {
  border-radius: 170px;
}
main section.sec#sec1 .ranking .box .graph {
  width: 100%;
  margin-bottom: 40px;
}
main section.sec#sec1 .ranking .box h5 {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
main section.sec#sec1 .ranking .box p {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: 0em;
  width: 100%;
}
main section.sec#sec1 .ranking .box.ibaraki {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main section.sec#sec1 .ranking .box.ibaraki .photo::after {
  background-image: url(../images/icon_ibaraki.png);
  right: 0px;
}
main section.sec#sec1 .ranking .box.ibaraki h5 {
  color: #419364;
  border-bottom: solid 1px #419364;
}
main section.sec#sec1 .ranking .box.tochigi {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
main section.sec#sec1 .ranking .box.tochigi .photo::after {
  background-image: url(../images/icon_tochigi.png);
  left: 0px;
}
main section.sec#sec1 .ranking .box.tochigi h5 {
  color: #C1485C;
  border-bottom: solid 1px #C1485C;
}
main section.sec#sec2 {
  width: 100%;
  margin-top: -90px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
main section.sec#sec2 .title {
  width: 50px;
  background-color: #FEB812;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  order: 2;
  clip-path: polygon(50% 60px, 100% 80px, 100% calc(100% - 80px), 50% calc(100% - 60px), 50% calc(100% - 60px), 0 calc(100% - 80px), 0 80px);
}
main section.sec#sec2 .title h3 {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  writing-mode: vertical-rl;
}
main section.sec#sec2 .box {
  width: calc((100% - 50px) / 2);
  padding: 90px 0;
}
main section.sec#sec2 .box.ibaraki {
  background-color: #419364;
  background-image: url(../images/bg_text1.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 135px 326px;
  clip-path: polygon(0 0, 100% 80px, 100% calc(100% - 80px), 0% 100%);
  order: 1;
}
main section.sec#sec2 .box.tochigi {
  background-color: #C1485C;
  background-image: url(../images/bg_text2.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 138px 330px;
  clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 calc(100% - 80px));
  order: 3;
}
main section.sec#sec2 .box .number {
  width: 400px;
  margin: 0 auto 40px auto;
}
main section.sec#sec2 .box .number .innum {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 20px;
}
main section.sec#sec2 .box .number .innum dl {
  width: calc(50% - 10px);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main section.sec#sec2 .box .number .innum dl dt {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  width: 100%;
  background-color: #FFF;
  padding: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
  display: block;
  border-radius: 15px;
}
main section.sec#sec2 .box .number .innum dl dd {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}
main section.sec#sec2 .box .number .innum dl dd strong {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main section.sec#sec2 .box .number .innum dl dd strong:not(:first-child) {
  margin-left: 5px;
}
main section.sec#sec2 .box .number .innum dl dd span {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  transform: translateY(-0.5rem);
  position: relative;
}
main section.sec#sec2 .box .number .innum dl dd span:not(:first-child) {
  margin-left: 5px;
}
main section.sec#sec2 .box .number .notice {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
main section.sec#sec2 .box .product {
  width: 400px;
  padding: 0 20px 5px 20px;
  margin: 0 auto 40px auto;
  border: solid 1px #FFF;
  border-radius: 10px;
  position: relative;
}
main section.sec#sec2 .box .product dl {
  position: relative;
  transform: translateY(-15px);
}
main section.sec#sec2 .box .product dl dt {
  width: 240px;
  margin: 0 auto 30px auto;
}
main section.sec#sec2 .box .product dl dt span {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  background-color: #333333;
  width: 100%;
  height: 30px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}
main section.sec#sec2 .box .product dl dd {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main section.sec#sec2 .box .product dl dd .photo {
  width: calc((100% - 40px) / 3);
}
main section.sec#sec2 .box .product dl dd .photo div {
  margin-bottom: 10px;
}
main section.sec#sec2 .box .product dl dd .photo p {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8rem;
  letter-spacing: 0em;
}
main section.sec#sec2 .box .income {
  width: 400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main section.sec#sec2 .box .income:not(:last-child) {
  margin-bottom: 40px;
}
main section.sec#sec2 .box .income dl {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main section.sec#sec2 .box .income dl:not(:last-child) {
  margin-bottom: 10px;
}
main section.sec#sec2 .box .income dl dt {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  width: calc(100% - 120px);
  background-color: #FFF;
  padding: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
  display: block;
  border-radius: 15px;
}
main section.sec#sec2 .box .income dl dd {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}
main section.sec#sec2 .box .income dl dd strong {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  margin-left: 5px;
}
main section.sec#sec2 .box .income dl dd span {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  transform: translateY(-0.5rem);
  position: relative;
}
main section.sec#sec2 .box .income dl dd span:not(:first-child) {
  margin-left: 5px;
}
main section.sec#sec2 .box .income p {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
main section.sec#sec3 {
  width: 100%;
  background-image: url(../images/bg_texture.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 90px 0;
  margin-top: -90px;
  position: relative;
}
main section.sec#sec3 h3 {
  width: auto;
  padding: 0 40px;
  margin: 0 auto 40px auto;
  background-color: #333333;
  clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0% 50%);
  display: inline-block;
}
main section.sec#sec3 h3 span {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  white-space: nowrap;
  height: 50px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main section.sec#sec3 .photos {
  width: 1080px;
  margin: 0 auto;
  position: relative;
}
main section.sec#sec3 .photos:not(:last-child) {
  margin-bottom: 60px;
}
main section.sec#sec3 .photos .slider {
  width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}
main section.sec#sec3 .photos .slider:not(:last-child) {
  margin-bottom: 30px;
}
main section.sec#sec3 .photos .slider .swiper-wrapper .swiper-slide div {
  margin-bottom: 20px;
}
main section.sec#sec3 .photos .slider .swiper-wrapper .swiper-slide p {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  padding: 10px;
  display: block;
}
main section.sec#sec3 .photos .slider.slide1 p {
  background-color: #419364;
}
main section.sec#sec3 .photos .slider.slide2 p {
  background-color: #C1485C;
}
main section.sec#sec3 .photos .arrow {
  width: 18px;
  height: 18px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
}
main section.sec#sec3 .photos .arrow.left {
  top: calc(50% - 9px);
  left: 0px;
}
main section.sec#sec3 .photos .arrow.right {
  transform: rotate(180deg);
  top: calc(50% - 9px);
  right: 0px;
}
main section.sec#sec3 .photos .btn {
  width: 240px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
}
main section.sec#sec3 .photos .btn a {
  width: 100%;
  height: 35px;
  background-color: #FEB812;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in 0s;
}
main section.sec#sec3 .photos .btn a::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background-image: url(../images/icon_blank.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
}
main section.sec#sec3 .photos .btn a:hover {
  opacity: 0.7;
}
main section.sec#sec3 .photos .btn a span {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
main section.sec#sec3 .feature {
  width: 1000px;
  margin: 0 auto;
}
main section.sec#sec3 .feature h5 {
  padding-bottom: 10px;
  margin-bottom: 10px;
}
main section.sec#sec3 .feature p {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: 0em;
}
main section.sec#sec3 .feature .line {
  text-align: left;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main section.sec#sec3 .feature .line:not(:last-child) {
  margin-bottom: 40px;
}
main section.sec#sec3 .feature .line .photo {
  width: 416px;
}
main section.sec#sec3 .feature .line .text {
  width: calc(100% - 415px - 80px);
}
main section.sec#sec3 .feature .line.ibaraki .text h5 {
  color: #419364;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.6rem;
  letter-spacing: 0em;
  border-bottom: solid 1px #419364;
}
main section.sec#sec3 .feature .line.tochigi .text h5 {
  color: #C1485C;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.6rem;
  letter-spacing: 0em;
  border-bottom: solid 1px #C1485C;
}
main section.sec#sec3 .feature .column {
  text-align: left;
  width: 100%;
  background-color: #FFF;
  padding: 50px;
  border-radius: 10px;
  position: relative;
}
main section.sec#sec3 .feature .column::before {
  content: "";
  width: 128px;
  height: 73px;
  background-image: url(../images/text_column.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: -20px;
  left: -15px;
}
main section.sec#sec3 .feature .column h5 {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.6rem;
  letter-spacing: 0em;
  border-bottom: solid 1px #111;
}
main section.sec#sec4 {
  width: 100%;
  padding: 70px 0;
  position: relative;
}
main section.sec#sec4 .title dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 70px;
}
main section.sec#sec4 .title dl dt {
  width: 164px;
  height: 48px;
  background-image: url(../images/title_deco_part2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}
main section.sec#sec4 .title dl dd {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 4.8rem;
  letter-spacing: 0.1em;
}
main section.sec#sec4 .comment {
  width: 1080px;
  margin: 0 auto;
  position: relative;
}
main section.sec#sec4 .comment:not(:last-child) {
  margin-bottom: 70px;
}
main section.sec#sec4 .comment::before {
  content: "";
  width: 50%;
  height: 5px;
  background-color: #419364;
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
}
main section.sec#sec4 .comment::after {
  content: "";
  width: 50%;
  height: 5px;
  background-color: #C1485C;
  position: absolute;
  top: 0px;
  left: 50%;
  display: block;
}
main section.sec#sec4 .comment .reason {
  width: 100px;
  height: 100px;
  background-image: url(../images/icon_badge.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: 1;
}
main section.sec#sec4 .comment .reason span:nth-child(1) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  margin-bottom: 0px;
}
main section.sec#sec4 .comment .reason span:nth-child(2) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
main section.sec#sec4 .comment .incomment {
  width: 100%;
  padding: 40px 60px;
  border-left: solid 5px #419364;
  border-right: solid 5px #C1485C;
  position: relative;
}
main section.sec#sec4 .comment .incomment::before {
  content: "";
  width: 50%;
  height: 5px;
  background-color: #419364;
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: block;
}
main section.sec#sec4 .comment .incomment::after {
  content: "";
  width: 50%;
  height: 5px;
  background-color: #C1485C;
  position: absolute;
  bottom: 0px;
  left: 50%;
  display: block;
}
main section.sec#sec4 .comment .incomment dl {
  text-align: left;
  width: 100%;
}
main section.sec#sec4 .comment .incomment dl dt {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  letter-spacing: 0em;
  margin-bottom: 20px;
}
main section.sec#sec4 .comment .incomment dl dd {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.6rem;
  letter-spacing: 0em;
}
main section.sec#sec5 {
  width: 100%;
  padding: 40px 0;
  background-color: #E0E28D;
  background-image: url(../images/bg_map.svg);
  background-repeat: no-repeat;
  background-position: center 200px;
  background-size: 1510px 1000px;
  position: relative;
}
main section.sec#sec5 .deco {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}
main section.sec#sec5 .deco div {
  position: absolute;
  pointer-events: none;
}
main section.sec#sec5 .deco div:nth-child(1) {
  width: 71px;
  top: 90px;
  left: calc(50% - 500px);
}
main section.sec#sec5 .deco div:nth-child(2) {
  width: 142px;
  top: 200px;
  left: calc(50% - 420px);
}
main section.sec#sec5 .deco div:nth-child(3) {
  width: 84px;
  top: 120px;
  left: calc(50% + 380px);
}
main section.sec#sec5 .deco div:nth-child(4) {
  width: 120px;
  top: 230px;
  left: calc(50% + 265px);
}
main section.sec#sec5 .title {
  position: relative;
  z-index: 1;
}
main section.sec#sec5 .title dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 70px;
}
main section.sec#sec5 .title dl dt {
  width: 164px;
  height: 48px;
  background-image: url(../images/title_deco_part3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}
main section.sec#sec5 .title dl dd:nth-child(2) {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 4.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
main section.sec#sec5 .title dl dd:nth-child(3) {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 4.8rem;
  letter-spacing: 0.2em;
}
main section.sec#sec5 .q {
  width: 880px;
  margin: 0 auto;
}
main section.sec#sec5 .q:not(:last-child) {
  margin-bottom: 20px;
}
main section.sec#sec5 .q h5 {
  width: 100%;
  height: 70px;
  background-image: url(../images/title_q1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin: 0 auto 20px auto;
}
main section.sec#sec5 .q .box1 {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
main section.sec#sec5 .q .box1:not(:last-child) {
  margin-bottom: 6px;
}
main section.sec#sec5 .q .box1::before {
  content: "";
  width: 75px;
  height: 75px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: 1;
  display: block;
}
main section.sec#sec5 .q .box1.ibaraki::before {
  background-image: url(../images/icon_ibaraki.png);
}
main section.sec#sec5 .q .box1.tochigi::before {
  background-image: url(../images/icon_tochigi.png);
}
main section.sec#sec5 .q .box1 .map {
  width: 50%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main section.sec#sec5 .q .box1 .map img.map1 {
  width: 200px;
}
main section.sec#sec5 .q .box1 .map img.map2 {
  width: 206px;
}
main section.sec#sec5 .q .box1 .text {
  text-align: left;
  width: 50%;
}
main section.sec#sec5 .q .box1 .text dl:not(:last-child) {
  margin-bottom: 20px;
}
main section.sec#sec5 .q .box1 .text dl dt {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  letter-spacing: 0em;
}
main section.sec#sec5 .q .box1 .text dl dd {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  letter-spacing: 0em;
}
main section.sec#sec5 .q .box1 .text dl dd.notice {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: 0em;
}
main section.sec#sec5 .q .box2 {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
main section.sec#sec5 .q .box2:not(:last-child) {
  margin-bottom: 40px;
}
main section.sec#sec5 .q .box2.ibaraki .inbox dl dt {
  color: #419364;
  border-bottom: solid 1px #419364;
}
main section.sec#sec5 .q .box2.tochigi .inbox dl dt {
  color: #C1485C;
  border-bottom: solid 1px #C1485C;
}
main section.sec#sec5 .q .box2 .inbox {
  width: calc(50% - 3px);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 10px;
}
main section.sec#sec5 .q .box2 .inbox dl {
  text-align: left;
}
main section.sec#sec5 .q .box2 .inbox dl dt {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  letter-spacing: 0em;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
main section.sec#sec5 .q .box2 .inbox dl dd {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  letter-spacing: 0em;
}
main section.sec#sec5 .q .box2 .inbox dl dd.notice {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: 0em;
}
main section.sec#sec5 p.notice {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: 0em;
}
main section.sec#sec6, main section.sec#sec7, main section.sec#sec8, main section.sec#sec9, main section.sec#sec10, main section.sec#sec11, main section.sec#sec12, main section.sec#sec13, main section.sec#sec14 {
  width: 100%;
  padding: 40px 0;
  background-color: #C3D8CB;
  position: relative;
}
main section.sec#sec6::before, main section.sec#sec7::before, main section.sec#sec8::before, main section.sec#sec9::before, main section.sec#sec10::before, main section.sec#sec11::before, main section.sec#sec12::before, main section.sec#sec13::before, main section.sec#sec14::before {
  content: "";
  width: 50%;
  height: 100%;
  background-color: #DBC1C6;
  position: absolute;
  top: 0px;
  left: 50%;
  display: block;
}
main section.sec#sec6 .q, main section.sec#sec7 .q, main section.sec#sec8 .q, main section.sec#sec9 .q, main section.sec#sec10 .q, main section.sec#sec11 .q, main section.sec#sec12 .q, main section.sec#sec13 .q, main section.sec#sec14 .q {
  width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
main section.sec#sec6 .q:not(:last-child), main section.sec#sec7 .q:not(:last-child), main section.sec#sec8 .q:not(:last-child), main section.sec#sec9 .q:not(:last-child), main section.sec#sec10 .q:not(:last-child), main section.sec#sec11 .q:not(:last-child), main section.sec#sec12 .q:not(:last-child), main section.sec#sec13 .q:not(:last-child), main section.sec#sec14 .q:not(:last-child) {
  margin-bottom: 20px;
}
main section.sec#sec6 .q.q2 h5, main section.sec#sec7 .q.q2 h5, main section.sec#sec8 .q.q2 h5, main section.sec#sec9 .q.q2 h5, main section.sec#sec10 .q.q2 h5, main section.sec#sec11 .q.q2 h5, main section.sec#sec12 .q.q2 h5, main section.sec#sec13 .q.q2 h5, main section.sec#sec14 .q.q2 h5 {
  background-image: url(../images/title_q2.png);
}
main section.sec#sec6 .q.q3 h5, main section.sec#sec7 .q.q3 h5, main section.sec#sec8 .q.q3 h5, main section.sec#sec9 .q.q3 h5, main section.sec#sec10 .q.q3 h5, main section.sec#sec11 .q.q3 h5, main section.sec#sec12 .q.q3 h5, main section.sec#sec13 .q.q3 h5, main section.sec#sec14 .q.q3 h5 {
  background-image: url(../images/title_q3.png);
}
main section.sec#sec6 .q.q4 h5, main section.sec#sec7 .q.q4 h5, main section.sec#sec8 .q.q4 h5, main section.sec#sec9 .q.q4 h5, main section.sec#sec10 .q.q4 h5, main section.sec#sec11 .q.q4 h5, main section.sec#sec12 .q.q4 h5, main section.sec#sec13 .q.q4 h5, main section.sec#sec14 .q.q4 h5 {
  background-image: url(../images/title_q4.png);
}
main section.sec#sec6 .q.q5 h5, main section.sec#sec7 .q.q5 h5, main section.sec#sec8 .q.q5 h5, main section.sec#sec9 .q.q5 h5, main section.sec#sec10 .q.q5 h5, main section.sec#sec11 .q.q5 h5, main section.sec#sec12 .q.q5 h5, main section.sec#sec13 .q.q5 h5, main section.sec#sec14 .q.q5 h5 {
  background-image: url(../images/title_q5.png);
}
main section.sec#sec6 .q.q6 h5, main section.sec#sec7 .q.q6 h5, main section.sec#sec8 .q.q6 h5, main section.sec#sec9 .q.q6 h5, main section.sec#sec10 .q.q6 h5, main section.sec#sec11 .q.q6 h5, main section.sec#sec12 .q.q6 h5, main section.sec#sec13 .q.q6 h5, main section.sec#sec14 .q.q6 h5 {
  background-image: url(../images/title_q6.png);
}
main section.sec#sec6 .q.q7 h5, main section.sec#sec7 .q.q7 h5, main section.sec#sec8 .q.q7 h5, main section.sec#sec9 .q.q7 h5, main section.sec#sec10 .q.q7 h5, main section.sec#sec11 .q.q7 h5, main section.sec#sec12 .q.q7 h5, main section.sec#sec13 .q.q7 h5, main section.sec#sec14 .q.q7 h5 {
  background-image: url(../images/title_q7.png);
}
main section.sec#sec6 .q.q8 h5, main section.sec#sec7 .q.q8 h5, main section.sec#sec8 .q.q8 h5, main section.sec#sec9 .q.q8 h5, main section.sec#sec10 .q.q8 h5, main section.sec#sec11 .q.q8 h5, main section.sec#sec12 .q.q8 h5, main section.sec#sec13 .q.q8 h5, main section.sec#sec14 .q.q8 h5 {
  background-image: url(../images/title_q8.png);
}
main section.sec#sec6 .q.q9 h5, main section.sec#sec7 .q.q9 h5, main section.sec#sec8 .q.q9 h5, main section.sec#sec9 .q.q9 h5, main section.sec#sec10 .q.q9 h5, main section.sec#sec11 .q.q9 h5, main section.sec#sec12 .q.q9 h5, main section.sec#sec13 .q.q9 h5, main section.sec#sec14 .q.q9 h5 {
  background-image: url(../images/title_q9.png);
}
main section.sec#sec6 .q.q10 h5, main section.sec#sec7 .q.q10 h5, main section.sec#sec8 .q.q10 h5, main section.sec#sec9 .q.q10 h5, main section.sec#sec10 .q.q10 h5, main section.sec#sec11 .q.q10 h5, main section.sec#sec12 .q.q10 h5, main section.sec#sec13 .q.q10 h5, main section.sec#sec14 .q.q10 h5 {
  background-image: url(../images/title_q10.png);
}
main section.sec#sec6 .q h5, main section.sec#sec7 .q h5, main section.sec#sec8 .q h5, main section.sec#sec9 .q h5, main section.sec#sec10 .q h5, main section.sec#sec11 .q h5, main section.sec#sec12 .q h5, main section.sec#sec13 .q h5, main section.sec#sec14 .q h5 {
  width: 100%;
  height: 70px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin: 0 auto 20px auto;
}
main section.sec#sec6 .q .inner, main section.sec#sec7 .q .inner, main section.sec#sec8 .q .inner, main section.sec#sec9 .q .inner, main section.sec#sec10 .q .inner, main section.sec#sec11 .q .inner, main section.sec#sec12 .q .inner, main section.sec#sec13 .q .inner, main section.sec#sec14 .q .inner {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main section.sec#sec6 .q .inner .box, main section.sec#sec7 .q .inner .box, main section.sec#sec8 .q .inner .box, main section.sec#sec9 .q .inner .box, main section.sec#sec10 .q .inner .box, main section.sec#sec11 .q .inner .box, main section.sec#sec12 .q .inner .box, main section.sec#sec13 .q .inner .box, main section.sec#sec14 .q .inner .box {
  width: calc((100% - 50px) / 2);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main section.sec#sec6 .q .inner .box h6, main section.sec#sec7 .q .inner .box h6, main section.sec#sec8 .q .inner .box h6, main section.sec#sec9 .q .inner .box h6, main section.sec#sec10 .q .inner .box h6, main section.sec#sec11 .q .inner .box h6, main section.sec#sec12 .q .inner .box h6, main section.sec#sec13 .q .inner .box h6, main section.sec#sec14 .q .inner .box h6 {
  width: 75px;
  height: 75px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}
main section.sec#sec6 .q .inner .box dl, main section.sec#sec7 .q .inner .box dl, main section.sec#sec8 .q .inner .box dl, main section.sec#sec9 .q .inner .box dl, main section.sec#sec10 .q .inner .box dl, main section.sec#sec11 .q .inner .box dl, main section.sec#sec12 .q .inner .box dl, main section.sec#sec13 .q .inner .box dl, main section.sec#sec14 .q .inner .box dl {
  width: 100%;
  text-align: left;
}
main section.sec#sec6 .q .inner .box dl:not(:last-child), main section.sec#sec7 .q .inner .box dl:not(:last-child), main section.sec#sec8 .q .inner .box dl:not(:last-child), main section.sec#sec9 .q .inner .box dl:not(:last-child), main section.sec#sec10 .q .inner .box dl:not(:last-child), main section.sec#sec11 .q .inner .box dl:not(:last-child), main section.sec#sec12 .q .inner .box dl:not(:last-child), main section.sec#sec13 .q .inner .box dl:not(:last-child), main section.sec#sec14 .q .inner .box dl:not(:last-child) {
  margin-bottom: 25px;
}
main section.sec#sec6 .q .inner .box dl dt, main section.sec#sec7 .q .inner .box dl dt, main section.sec#sec8 .q .inner .box dl dt, main section.sec#sec9 .q .inner .box dl dt, main section.sec#sec10 .q .inner .box dl dt, main section.sec#sec11 .q .inner .box dl dt, main section.sec#sec12 .q .inner .box dl dt, main section.sec#sec13 .q .inner .box dl dt, main section.sec#sec14 .q .inner .box dl dt {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
main section.sec#sec6 .q .inner .box dl dt span:nth-child(1), main section.sec#sec7 .q .inner .box dl dt span:nth-child(1), main section.sec#sec8 .q .inner .box dl dt span:nth-child(1), main section.sec#sec9 .q .inner .box dl dt span:nth-child(1), main section.sec#sec10 .q .inner .box dl dt span:nth-child(1), main section.sec#sec11 .q .inner .box dl dt span:nth-child(1), main section.sec#sec12 .q .inner .box dl dt span:nth-child(1), main section.sec#sec13 .q .inner .box dl dt span:nth-child(1), main section.sec#sec14 .q .inner .box dl dt span:nth-child(1) {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  width: 30px;
  height: 30px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}
main section.sec#sec6 .q .inner .box dl dt span:nth-child(2), main section.sec#sec7 .q .inner .box dl dt span:nth-child(2), main section.sec#sec8 .q .inner .box dl dt span:nth-child(2), main section.sec#sec9 .q .inner .box dl dt span:nth-child(2), main section.sec#sec10 .q .inner .box dl dt span:nth-child(2), main section.sec#sec11 .q .inner .box dl dt span:nth-child(2), main section.sec#sec12 .q .inner .box dl dt span:nth-child(2), main section.sec#sec13 .q .inner .box dl dt span:nth-child(2), main section.sec#sec14 .q .inner .box dl dt span:nth-child(2) {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  margin-left: 10px;
  display: inline-block;
}
main section.sec#sec6 .q .inner .box dl dd, main section.sec#sec7 .q .inner .box dl dd, main section.sec#sec8 .q .inner .box dl dd, main section.sec#sec9 .q .inner .box dl dd, main section.sec#sec10 .q .inner .box dl dd, main section.sec#sec11 .q .inner .box dl dd, main section.sec#sec12 .q .inner .box dl dd, main section.sec#sec13 .q .inner .box dl dd, main section.sec#sec14 .q .inner .box dl dd {
  position: relative;
}
main section.sec#sec6 .q .inner .box dl dd:not(:last-child), main section.sec#sec7 .q .inner .box dl dd:not(:last-child), main section.sec#sec8 .q .inner .box dl dd:not(:last-child), main section.sec#sec9 .q .inner .box dl dd:not(:last-child), main section.sec#sec10 .q .inner .box dl dd:not(:last-child), main section.sec#sec11 .q .inner .box dl dd:not(:last-child), main section.sec#sec12 .q .inner .box dl dd:not(:last-child), main section.sec#sec13 .q .inner .box dl dd:not(:last-child), main section.sec#sec14 .q .inner .box dl dd:not(:last-child) {
  margin-bottom: 10px;
}
main section.sec#sec6 .q .inner .box dl dd::before, main section.sec#sec7 .q .inner .box dl dd::before, main section.sec#sec8 .q .inner .box dl dd::before, main section.sec#sec9 .q .inner .box dl dd::before, main section.sec#sec10 .q .inner .box dl dd::before, main section.sec#sec11 .q .inner .box dl dd::before, main section.sec#sec12 .q .inner .box dl dd::before, main section.sec#sec13 .q .inner .box dl dd::before, main section.sec#sec14 .q .inner .box dl dd::before {
  content: "";
  border-top: solid 5px transparent;
  border-right: solid 10px #FFF;
  border-bottom: solid 5px transparent;
  display: block;
  position: absolute;
  bottom: 10px;
  left: -10px;
}
main section.sec#sec6 .q .inner .box dl dd.type2::before, main section.sec#sec7 .q .inner .box dl dd.type2::before, main section.sec#sec8 .q .inner .box dl dd.type2::before, main section.sec#sec9 .q .inner .box dl dd.type2::before, main section.sec#sec10 .q .inner .box dl dd.type2::before, main section.sec#sec11 .q .inner .box dl dd.type2::before, main section.sec#sec12 .q .inner .box dl dd.type2::before, main section.sec#sec13 .q .inner .box dl dd.type2::before, main section.sec#sec14 .q .inner .box dl dd.type2::before {
  border-right: none;
  border-left: solid 10px #FFF;
  right: -10px;
  left: auto;
}
main section.sec#sec6 .q .inner .box dl dd.type2 dl, main section.sec#sec7 .q .inner .box dl dd.type2 dl, main section.sec#sec8 .q .inner .box dl dd.type2 dl, main section.sec#sec9 .q .inner .box dl dd.type2 dl, main section.sec#sec10 .q .inner .box dl dd.type2 dl, main section.sec#sec11 .q .inner .box dl dd.type2 dl, main section.sec#sec12 .q .inner .box dl dd.type2 dl, main section.sec#sec13 .q .inner .box dl dd.type2 dl, main section.sec#sec14 .q .inner .box dl dd.type2 dl {
  margin-left: auto;
}
main section.sec#sec6 .q .inner .box dl dd.nob, main section.sec#sec7 .q .inner .box dl dd.nob, main section.sec#sec8 .q .inner .box dl dd.nob, main section.sec#sec9 .q .inner .box dl dd.nob, main section.sec#sec10 .q .inner .box dl dd.nob, main section.sec#sec11 .q .inner .box dl dd.nob, main section.sec#sec12 .q .inner .box dl dd.nob, main section.sec#sec13 .q .inner .box dl dd.nob, main section.sec#sec14 .q .inner .box dl dd.nob {
  width: 100%;
}
main section.sec#sec6 .q .inner .box dl dd.nob::before, main section.sec#sec7 .q .inner .box dl dd.nob::before, main section.sec#sec8 .q .inner .box dl dd.nob::before, main section.sec#sec9 .q .inner .box dl dd.nob::before, main section.sec#sec10 .q .inner .box dl dd.nob::before, main section.sec#sec11 .q .inner .box dl dd.nob::before, main section.sec#sec12 .q .inner .box dl dd.nob::before, main section.sec#sec13 .q .inner .box dl dd.nob::before, main section.sec#sec14 .q .inner .box dl dd.nob::before {
  content: none;
}
main section.sec#sec6 .q .inner .box dl dd span, main section.sec#sec7 .q .inner .box dl dd span, main section.sec#sec8 .q .inner .box dl dd span, main section.sec#sec9 .q .inner .box dl dd span, main section.sec#sec10 .q .inner .box dl dd span, main section.sec#sec11 .q .inner .box dl dd span, main section.sec#sec12 .q .inner .box dl dd span, main section.sec#sec13 .q .inner .box dl dd span, main section.sec#sec14 .q .inner .box dl dd span {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  letter-spacing: 0em;
  padding: 15px;
  border-radius: 10px;
  background-color: #FFF;
  display: inline-block;
}
main section.sec#sec6 .q .inner .box dl dd dl, main section.sec#sec7 .q .inner .box dl dd dl, main section.sec#sec8 .q .inner .box dl dd dl, main section.sec#sec9 .q .inner .box dl dd dl, main section.sec#sec10 .q .inner .box dl dd dl, main section.sec#sec11 .q .inner .box dl dd dl, main section.sec#sec12 .q .inner .box dl dd dl, main section.sec#sec13 .q .inner .box dl dd dl, main section.sec#sec14 .q .inner .box dl dd dl {
  width: calc(100% - 20px);
  padding: 15px;
  border-radius: 10px;
  background-color: #FFF;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main section.sec#sec6 .q .inner .box dl dd dl dt, main section.sec#sec7 .q .inner .box dl dd dl dt, main section.sec#sec8 .q .inner .box dl dd dl dt, main section.sec#sec9 .q .inner .box dl dd dl dt, main section.sec#sec10 .q .inner .box dl dd dl dt, main section.sec#sec11 .q .inner .box dl dd dl dt, main section.sec#sec12 .q .inner .box dl dd dl dt, main section.sec#sec13 .q .inner .box dl dd dl dt, main section.sec#sec14 .q .inner .box dl dd dl dt {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.6rem;
  letter-spacing: 0em;
  margin: 0px;
}
main section.sec#sec6 .q .inner .box dl dd dl dd, main section.sec#sec7 .q .inner .box dl dd dl dd, main section.sec#sec8 .q .inner .box dl dd dl dd, main section.sec#sec9 .q .inner .box dl dd dl dd, main section.sec#sec10 .q .inner .box dl dd dl dd, main section.sec#sec11 .q .inner .box dl dd dl dd, main section.sec#sec12 .q .inner .box dl dd dl dd, main section.sec#sec13 .q .inner .box dl dd dl dd, main section.sec#sec14 .q .inner .box dl dd dl dd {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  letter-spacing: 0em;
}
main section.sec#sec6 .q .inner .box .baloon, main section.sec#sec7 .q .inner .box .baloon, main section.sec#sec8 .q .inner .box .baloon, main section.sec#sec9 .q .inner .box .baloon, main section.sec#sec10 .q .inner .box .baloon, main section.sec#sec11 .q .inner .box .baloon, main section.sec#sec12 .q .inner .box .baloon, main section.sec#sec13 .q .inner .box .baloon, main section.sec#sec14 .q .inner .box .baloon {
  width: calc(100% - 15px);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main section.sec#sec6 .q .inner .box .baloon.full, main section.sec#sec7 .q .inner .box .baloon.full, main section.sec#sec8 .q .inner .box .baloon.full, main section.sec#sec9 .q .inner .box .baloon.full, main section.sec#sec10 .q .inner .box .baloon.full, main section.sec#sec11 .q .inner .box .baloon.full, main section.sec#sec12 .q .inner .box .baloon.full, main section.sec#sec13 .q .inner .box .baloon.full, main section.sec#sec14 .q .inner .box .baloon.full {
  width: 100%;
}
main section.sec#sec6 .q .inner .box .baloon .serif, main section.sec#sec7 .q .inner .box .baloon .serif, main section.sec#sec8 .q .inner .box .baloon .serif, main section.sec#sec9 .q .inner .box .baloon .serif, main section.sec#sec10 .q .inner .box .baloon .serif, main section.sec#sec11 .q .inner .box .baloon .serif, main section.sec#sec12 .q .inner .box .baloon .serif, main section.sec#sec13 .q .inner .box .baloon .serif, main section.sec#sec14 .q .inner .box .baloon .serif {
  position: relative;
}
main section.sec#sec6 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec7 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec8 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec9 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec10 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec11 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec12 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec13 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec14 .q .inner .box .baloon .serif:not(:last-child) {
  margin-bottom: 20px;
}
main section.sec#sec6 .q .inner .box .baloon .serif::before, main section.sec#sec7 .q .inner .box .baloon .serif::before, main section.sec#sec8 .q .inner .box .baloon .serif::before, main section.sec#sec9 .q .inner .box .baloon .serif::before, main section.sec#sec10 .q .inner .box .baloon .serif::before, main section.sec#sec11 .q .inner .box .baloon .serif::before, main section.sec#sec12 .q .inner .box .baloon .serif::before, main section.sec#sec13 .q .inner .box .baloon .serif::before, main section.sec#sec14 .q .inner .box .baloon .serif::before {
  content: "";
  border-top: solid 10px #FFF;
  border-right: solid 5px transparent;
  border-left: solid 5px transparent;
  display: block;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 5px);
}
main section.sec#sec6 .q .inner .box .baloon .serif.s2, main section.sec#sec7 .q .inner .box .baloon .serif.s2, main section.sec#sec8 .q .inner .box .baloon .serif.s2, main section.sec#sec9 .q .inner .box .baloon .serif.s2, main section.sec#sec10 .q .inner .box .baloon .serif.s2, main section.sec#sec11 .q .inner .box .baloon .serif.s2, main section.sec#sec12 .q .inner .box .baloon .serif.s2, main section.sec#sec13 .q .inner .box .baloon .serif.s2, main section.sec#sec14 .q .inner .box .baloon .serif.s2 {
  margin-top: -10px;
  margin-right: auto;
}
main section.sec#sec6 .q .inner .box .baloon .serif.s3, main section.sec#sec7 .q .inner .box .baloon .serif.s3, main section.sec#sec8 .q .inner .box .baloon .serif.s3, main section.sec#sec9 .q .inner .box .baloon .serif.s3, main section.sec#sec10 .q .inner .box .baloon .serif.s3, main section.sec#sec11 .q .inner .box .baloon .serif.s3, main section.sec#sec12 .q .inner .box .baloon .serif.s3, main section.sec#sec13 .q .inner .box .baloon .serif.s3, main section.sec#sec14 .q .inner .box .baloon .serif.s3 {
  margin: -56px 0 30px auto;
}
main section.sec#sec6 .q .inner .box .baloon .serif.s4, main section.sec#sec7 .q .inner .box .baloon .serif.s4, main section.sec#sec8 .q .inner .box .baloon .serif.s4, main section.sec#sec9 .q .inner .box .baloon .serif.s4, main section.sec#sec10 .q .inner .box .baloon .serif.s4, main section.sec#sec11 .q .inner .box .baloon .serif.s4, main section.sec#sec12 .q .inner .box .baloon .serif.s4, main section.sec#sec13 .q .inner .box .baloon .serif.s4, main section.sec#sec14 .q .inner .box .baloon .serif.s4 {
  margin-right: auto;
  transform: translateX(40px);
}
main section.sec#sec6 .q .inner .box .baloon .serif.s5, main section.sec#sec7 .q .inner .box .baloon .serif.s5, main section.sec#sec8 .q .inner .box .baloon .serif.s5, main section.sec#sec9 .q .inner .box .baloon .serif.s5, main section.sec#sec10 .q .inner .box .baloon .serif.s5, main section.sec#sec11 .q .inner .box .baloon .serif.s5, main section.sec#sec12 .q .inner .box .baloon .serif.s5, main section.sec#sec13 .q .inner .box .baloon .serif.s5, main section.sec#sec14 .q .inner .box .baloon .serif.s5 {
  margin-left: auto;
  transform: translateX(-40px);
}
main section.sec#sec6 .q .inner .box .baloon .serif span, main section.sec#sec7 .q .inner .box .baloon .serif span, main section.sec#sec8 .q .inner .box .baloon .serif span, main section.sec#sec9 .q .inner .box .baloon .serif span, main section.sec#sec10 .q .inner .box .baloon .serif span, main section.sec#sec11 .q .inner .box .baloon .serif span, main section.sec#sec12 .q .inner .box .baloon .serif span, main section.sec#sec13 .q .inner .box .baloon .serif span, main section.sec#sec14 .q .inner .box .baloon .serif span {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 15px 30px;
  border-radius: 10px;
  background-color: #FFF;
  display: inline-block;
}
main section.sec#sec6 .q .inner .box .baloon .bset, main section.sec#sec7 .q .inner .box .baloon .bset, main section.sec#sec8 .q .inner .box .baloon .bset, main section.sec#sec9 .q .inner .box .baloon .bset, main section.sec#sec10 .q .inner .box .baloon .bset, main section.sec#sec11 .q .inner .box .baloon .bset, main section.sec#sec12 .q .inner .box .baloon .bset, main section.sec#sec13 .q .inner .box .baloon .bset, main section.sec#sec14 .q .inner .box .baloon .bset {
  width: 75%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main section.sec#sec6 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec7 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec8 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec9 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec10 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec11 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec12 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec13 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec14 .q .inner .box .baloon .bset:not(:last-child) {
  margin-bottom: 20px;
}
main section.sec#sec6 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec7 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec8 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec9 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec10 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec11 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec12 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec13 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec14 .q .inner .box .baloon .bset .serif:not(:last-child) {
  margin-bottom: 0px;
}
main section.sec#sec6 .q .inner .box .baloon .bset .serif span, main section.sec#sec7 .q .inner .box .baloon .bset .serif span, main section.sec#sec8 .q .inner .box .baloon .bset .serif span, main section.sec#sec9 .q .inner .box .baloon .bset .serif span, main section.sec#sec10 .q .inner .box .baloon .bset .serif span, main section.sec#sec11 .q .inner .box .baloon .bset .serif span, main section.sec#sec12 .q .inner .box .baloon .bset .serif span, main section.sec#sec13 .q .inner .box .baloon .bset .serif span, main section.sec#sec14 .q .inner .box .baloon .bset .serif span {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 10px 20px;
}
main section.sec#sec6 .q .inner .box .baloon .bset2, main section.sec#sec7 .q .inner .box .baloon .bset2, main section.sec#sec8 .q .inner .box .baloon .bset2, main section.sec#sec9 .q .inner .box .baloon .bset2, main section.sec#sec10 .q .inner .box .baloon .bset2, main section.sec#sec11 .q .inner .box .baloon .bset2, main section.sec#sec12 .q .inner .box .baloon .bset2, main section.sec#sec13 .q .inner .box .baloon .bset2, main section.sec#sec14 .q .inner .box .baloon .bset2 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main section.sec#sec6 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec7 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec8 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec9 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec10 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec11 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec12 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec13 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec14 .q .inner .box .baloon .bset2:not(:last-child) {
  margin-bottom: 20px;
}
main section.sec#sec6 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec7 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec8 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec9 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec10 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec11 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec12 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec13 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec14 .q .inner .box .baloon .bset2 .serif:not(:last-child) {
  margin-bottom: 0px;
}
main section.sec#sec6 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec7 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec8 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec9 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec10 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec11 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec12 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec13 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec14 .q .inner .box .baloon .bset2 .serif:not(:first-child) {
  margin-left: 20px;
}
main section.sec#sec6 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec7 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec8 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec9 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec10 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec11 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec12 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec13 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec14 .q .inner .box .baloon .bset2 .serif span {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 10px 20px;
}
main section.sec#sec6 .q .inner .box .baloon .bset3, main section.sec#sec7 .q .inner .box .baloon .bset3, main section.sec#sec8 .q .inner .box .baloon .bset3, main section.sec#sec9 .q .inner .box .baloon .bset3, main section.sec#sec10 .q .inner .box .baloon .bset3, main section.sec#sec11 .q .inner .box .baloon .bset3, main section.sec#sec12 .q .inner .box .baloon .bset3, main section.sec#sec13 .q .inner .box .baloon .bset3, main section.sec#sec14 .q .inner .box .baloon .bset3 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
main section.sec#sec6 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec7 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec8 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec9 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec10 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec11 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec12 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec13 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec14 .q .inner .box .baloon .bset3:not(:last-child) {
  margin-bottom: 20px;
}
main section.sec#sec6 .q .inner .box .baloon .bset3 span, main section.sec#sec7 .q .inner .box .baloon .bset3 span, main section.sec#sec8 .q .inner .box .baloon .bset3 span, main section.sec#sec9 .q .inner .box .baloon .bset3 span, main section.sec#sec10 .q .inner .box .baloon .bset3 span, main section.sec#sec11 .q .inner .box .baloon .bset3 span, main section.sec#sec12 .q .inner .box .baloon .bset3 span, main section.sec#sec13 .q .inner .box .baloon .bset3 span, main section.sec#sec14 .q .inner .box .baloon .bset3 span {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 10px 20px;
}
main section.sec#sec6 .q .inner .box.ibaraki h6, main section.sec#sec7 .q .inner .box.ibaraki h6, main section.sec#sec8 .q .inner .box.ibaraki h6, main section.sec#sec9 .q .inner .box.ibaraki h6, main section.sec#sec10 .q .inner .box.ibaraki h6, main section.sec#sec11 .q .inner .box.ibaraki h6, main section.sec#sec12 .q .inner .box.ibaraki h6, main section.sec#sec13 .q .inner .box.ibaraki h6, main section.sec#sec14 .q .inner .box.ibaraki h6 {
  background-image: url(../images/icon_ibaraki.png);
}
main section.sec#sec6 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec7 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec8 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec9 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec10 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec11 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec12 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec13 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec14 .q .inner .box.ibaraki dl dt span:nth-child(1) {
  background-color: #419364;
}
main section.sec#sec6 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec7 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec8 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec9 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec10 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec11 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec12 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec13 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec14 .q .inner .box.ibaraki dl dt span:nth-child(2) {
  color: #419364;
}
main section.sec#sec6 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec7 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec8 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec9 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec10 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec11 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec12 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec13 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec14 .q .inner .box.ibaraki dl dd dl dt {
  color: #419364;
}
main section.sec#sec6 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec7 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec8 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec9 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec10 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec11 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec12 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec13 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec14 .q .inner .box.ibaraki .baloon .serif span {
  color: #419364;
}
main section.sec#sec6 .q .inner .box.tochigi h6, main section.sec#sec7 .q .inner .box.tochigi h6, main section.sec#sec8 .q .inner .box.tochigi h6, main section.sec#sec9 .q .inner .box.tochigi h6, main section.sec#sec10 .q .inner .box.tochigi h6, main section.sec#sec11 .q .inner .box.tochigi h6, main section.sec#sec12 .q .inner .box.tochigi h6, main section.sec#sec13 .q .inner .box.tochigi h6, main section.sec#sec14 .q .inner .box.tochigi h6 {
  background-image: url(../images/icon_tochigi.png);
}
main section.sec#sec6 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec7 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec8 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec9 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec10 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec11 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec12 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec13 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec14 .q .inner .box.tochigi dl dt span:nth-child(1) {
  background-color: #C1485C;
}
main section.sec#sec6 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec7 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec8 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec9 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec10 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec11 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec12 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec13 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec14 .q .inner .box.tochigi dl dt span:nth-child(2) {
  color: #C1485C;
}
main section.sec#sec6 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec7 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec8 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec9 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec10 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec11 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec12 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec13 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec14 .q .inner .box.tochigi dl dd dl dt {
  color: #C1485C;
}
main section.sec#sec6 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec7 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec8 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec9 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec10 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec11 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec12 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec13 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec14 .q .inner .box.tochigi .baloon .serif span {
  color: #C1485C;
}
main section.sec#sec14 {
  padding-bottom: 80px;
}
main section.sec#sec15 {
  padding: 80px 0;
}
main section.sec#sec15 .banner {
  width: 740px;
  margin: 0 auto;
}
main section.sec#sec15 .banner a {
  display: block;
  transition: all 0.25s ease-in 0s;
}
main section.sec#sec15 .banner a:hover {
  opacity: 0.7;
}
main article .pagetop {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  text-decoration: underline;
  display: inline-block;
  transition: all 0.2s ease-in;
  cursor: pointer;
}
main article .pagetop:hover {
  color: #419364;
}

footer {
  width: 100%;
  padding: 80px 0 80px 0;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
footer .inner {
  width: 100%;
}
footer .inner p {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  br.brsp {
    display: block;
  }

  #loader .text h3 {
    width: 108px;
    height: 40px;
    top: calc(50% - 20px);
    left: calc(50% - 54px);
  }

  .pagetop {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 14px;
    border-radius: 5px;
    right: 10px;
    bottom: 20px;
  }
  .pagetop:hover {
    opacity: 1;
  }

  header .inner {
    padding: 10px 20px;
  }
  header .inner h1 {
    width: 80px;
  }
  header .inner h1 a {
    height: 19px;
  }
  header .inner .btn {
    width: 110px;
  }
  header .inner .btn a {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    height: 25px;
    border-radius: 10px;
  }
  header .inner .btn a:hover {
    opacity: 1;
  }

  main section .credits {
    width: 100%;
  }
  main section .credits .credit:not(:last-child) {
    margin-bottom: 10px;
  }
  main section .credits .credit dl {
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: all 0.25s ease-in 0s;
  }
  main section .credits .credit dl dt {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section .credits .credit dl dt strong:nth-child(1) {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section .credits .credit dl dt strong:nth-child(1) span {
    font-weight: 300;
    display: inline-block;
    padding: 0 0 0 5px;
  }
  main section .credits .credit dl dt strong:nth-child(1) span:not(.nc)::after {
    padding: 0 0 0 5px;
  }
  main section .credits .credit dl dt strong:nth-child(2) {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0em;
    margin-left: 5px;
  }
  main section .credits .credit dl dd {
    width: auto;
    min-height: 20px;
    box-sizing: border-box;
  }
  main section .credits .credit dl dd a {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    transition: all 0.25s ease-in 0s;
  }
  main section .credits .credit dl dd a:hover {
    color: #419364;
  }
  main section .credits .credit dl dd a:not([href]) {
    display: none;
  }
  main section .credits .credit dl dd a:not([href]) + span {
    color: #C1485C;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    display: inline-block;
  }
  main section .credits .credit dl dd a:not([href]) + a.linelink {
    display: inline-block;
  }
  main section .credits .credit dl dd a[href] {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  main section .credits .credit dl dd a[href] + a.linelink {
    display: none;
  }
  main section .credits .credit dl dd a + span {
    display: none;
  }
  main section .credits .credit dl dd a.items__a {
    color: #C1485C;
    text-decoration: none;
    background-color: #111;
    width: 40px;
    height: 20px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  main section .credits .credit dl dd a.items__a:hover {
    color: #111;
    background-color: #419364;
  }
  main section .credits .credit dl dd span {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section#visual {
    width: 100%;
    min-height: auto;
    padding: 160px 0 120px 0;
    position: relative;
    overflow: hidden;
    z-index: 5;
  }
  main section#visual::before {
    content: "";
    width: 660px;
    height: 660px;
    border-radius: 330px;
    background-image: url(../images/map1.png);
    background-repeat: no-repeat;
    background-position: right 150px top 200px;
    background-size: 227px 293px;
    position: absolute;
    top: -140px;
    left: calc(50% - 660px + 80px);
  }
  main section#visual::after {
    content: "";
    width: 660px;
    height: 660px;
    border-radius: 330px;
    background-image: url(../images/map2.png);
    background-repeat: no-repeat;
    background-position: left 140px top 200px;
    background-size: 234px 290px;
    position: absolute;
    top: -140px;
    right: calc(50% - 660px + 80px);
  }
  main section#visual .title {
    width: auto;
    margin: 0 auto 40px auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  main section#visual .title::before {
    width: 200px;
    height: 58px;
    top: -68px;
    left: calc(50% - 100px);
  }
  main section#visual .title h2 {
    width: 280px;
    height: 66px;
    margin-bottom: 25px;
  }
  main section#visual .title p {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.2em;
  }
  main section#visual ul.anchor {
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section#visual ul.anchor li {
    width: calc(100% - 80px);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
  }
  main section#visual ul.anchor li:not(:first-child) {
    margin-left: 0px;
  }
  main section#visual ul.anchor li:not(:last-child) {
    margin-bottom: 10px;
  }
  main section#visual ul.anchor li span {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
    height: 40px;
  }
  main section#visual ul.anchor li span:hover {
    background-color: #FFF;
  }
  main section#visual ul.anchor li span br {
    display: none;
  }
  main section.sec#sec1 {
    width: 100%;
    background-image: url(../images/bg_texture.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 100px;
    margin-top: -150px;
    position: relative;
    overflow: hidden;
  }
  main section.sec#sec1 .title {
    padding-top: 100px;
    margin-bottom: 40px;
    position: relative;
  }
  main section.sec#sec1 .title dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section.sec#sec1 .title dl dt {
    width: 137px;
    height: 40px;
    margin-bottom: 20px;
  }
  main section.sec#sec1 .title dl dd {
    color: #111;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
    letter-spacing: 0.1em;
  }
  main section.sec#sec1 .title::after {
    width: 440px;
    height: 154px;
    background-image: url(../images/deco_question_sp.svg);
    top: 130px;
    left: calc(50% - 220px);
  }
  main section.sec#sec1 .ranking {
    width: calc(100% - 40px);
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
  }
  main section.sec#sec1 .ranking::before {
    content: "県内のスーパー店舗数ランキング";
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    writing-mode: vertical-rl;
    width: 30px;
    height: 300px;
    position: absolute;
    top: -10px;
    left: calc(50% - 15px);
    background-color: #FEB812;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    order: 2;
    clip-path: polygon(50% 0px, 100% 10px, 100% calc(100% - 10px), 50% calc(100% - 0px), 50% calc(100% - 0px), 0 calc(100% - 10px), 0 10px);
    z-index: 1;
  }
  main section.sec#sec1 .ranking .box {
    text-align: left;
    width: calc((100% - 40px) / 2);
  }
  main section.sec#sec1 .ranking .box .photo {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
  }
  main section.sec#sec1 .ranking .box .photo::after {
    width: 60px;
    height: 60px;
    top: -20px;
    bottom: auto;
  }
  main section.sec#sec1 .ranking .box .photo img {
    border-radius: 170px;
  }
  main section.sec#sec1 .ranking .box .graph {
    width: 100%;
    padding: 0 5px;
    margin-bottom: 20px;
  }
  main section.sec#sec1 .ranking .box h5 {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
    text-align: center;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  main section.sec#sec1 .ranking .box p {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2.2rem;
    letter-spacing: 0em;
    text-align: justify;
  }
  main section.sec#sec1 .ranking .box.ibaraki {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section.sec#sec1 .ranking .box.ibaraki .photo::after {
    background-image: url(../images/icon_ibaraki.png);
    right: auto;
    left: auto;
  }
  main section.sec#sec1 .ranking .box.ibaraki h5 {
    color: #419364;
    border-bottom: solid 1px #419364;
  }
  main section.sec#sec1 .ranking .box.tochigi {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }
  main section.sec#sec1 .ranking .box.tochigi .photo::after {
    background-image: url(../images/icon_tochigi.png);
    right: 0px;
    left: auto;
  }
  main section.sec#sec1 .ranking .box.tochigi h5 {
    color: #C1485C;
    border-bottom: solid 1px #C1485C;
  }
  main section.sec#sec2 {
    width: 100%;
    margin-top: -50px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    z-index: 1;
  }
  main section.sec#sec2 .title {
    width: 30px;
    background-color: #FEB812;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    order: 2;
    clip-path: polygon(50% 10px, 100% 20px, 100% calc(100% - 20px), 50% calc(100% - 10px), 50% calc(100% - 10px), 0 calc(100% - 20px), 0 20px);
  }
  main section.sec#sec2 .title h3 {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    writing-mode: vertical-rl;
  }
  main section.sec#sec2 .box {
    width: calc((100% - 30px) / 2);
    padding: 40px 20px;
  }
  main section.sec#sec2 .box.ibaraki {
    background-color: #419364;
    background-image: url(../images/bg_text1.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 135px 326px;
    clip-path: polygon(0 0, 100% 20px, 100% calc(100% - 20px), 0% 100%);
    order: 1;
  }
  main section.sec#sec2 .box.tochigi {
    background-color: #C1485C;
    background-image: url(../images/bg_text2.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 138px 330px;
    clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 calc(100% - 20px));
    order: 3;
  }
  main section.sec#sec2 .box .number {
    width: 100%;
    margin: 0 auto 40px auto;
  }
  main section.sec#sec2 .box .number .innum {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
  }
  main section.sec#sec2 .box .number .innum dl {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section.sec#sec2 .box .number .innum dl:not(:last-child) {
    margin-bottom: 20px;
  }
  main section.sec#sec2 .box .number .innum dl dt {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    padding: 5px;
    margin-bottom: 10px;
  }
  main section.sec#sec2 .box .number .innum dl dd {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
  }
  main section.sec#sec2 .box .number .innum dl dd strong {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section.sec#sec2 .box .number .innum dl dd span {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    margin-left: 5px;
    transform: translateY(-0.5rem);
    position: relative;
  }
  main section.sec#sec2 .box .number .notice {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6rem;
    letter-spacing: 0em;
  }
  main section.sec#sec2 .box .product {
    width: 100%;
    padding: 0 10px 5px 10px;
    margin: 0 auto 20px auto;
    border: solid 1px #FFF;
    border-radius: 10px;
    position: relative;
  }
  main section.sec#sec2 .box .product dl {
    position: relative;
    transform: translateY(-15px);
  }
  main section.sec#sec2 .box .product dl dt {
    width: 100%;
    margin: 0 auto 20px auto;
  }
  main section.sec#sec2 .box .product dl dt span {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 2rem;
    letter-spacing: 0em;
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
  }
  main section.sec#sec2 .box .product dl dd {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section.sec#sec2 .box .product dl dd .photo {
    width: 100%;
  }
  main section.sec#sec2 .box .product dl dd .photo:not(:last-child) {
    margin-bottom: 10px;
  }
  main section.sec#sec2 .box .product dl dd .photo div {
    margin-bottom: 5px;
  }
  main section.sec#sec2 .box .product dl dd .photo p {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8rem;
    letter-spacing: 0em;
  }
  main section.sec#sec2 .box .income {
    width: 100%;
    margin: 0;
  }
  main section.sec#sec2 .box .income:not(:last-child) {
    margin-bottom: 20px;
  }
  main section.sec#sec2 .box .income dl {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section.sec#sec2 .box .income dl:not(:last-child) {
    margin-bottom: 5px;
  }
  main section.sec#sec2 .box .income dl dt {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 2rem;
    letter-spacing: 0em;
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
  }
  main section.sec#sec2 .box .income dl dd {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
  }
  main section.sec#sec2 .box .income dl dd strong {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    margin-left: 5px;
  }
  main section.sec#sec2 .box .income dl dd span {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    transform: translateY(-0.5rem);
    position: relative;
  }
  main section.sec#sec2 .box .income p {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6rem;
    letter-spacing: 0em;
  }
  main section.sec#sec3 {
    padding: 60px 0 40px 0;
    margin-top: -20px;
    position: relative;
  }
  main section.sec#sec3 h3 {
    width: calc(100% - 40px);
    padding: 0 10px;
    margin: 0 auto 20px auto;
    clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0% 50%);
  }
  main section.sec#sec3 h3 span {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    height: 40px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  main section.sec#sec3 .photos {
    width: calc(100% - 40px);
  }
  main section.sec#sec3 .photos:not(:last-child) {
    margin-bottom: 40px;
  }
  main section.sec#sec3 .photos .slider {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  main section.sec#sec3 .photos .slider:not(:last-child) {
    margin-bottom: 15px;
  }
  main section.sec#sec3 .photos .slider .swiper-wrapper .swiper-slide div {
    margin-bottom: 10px;
  }
  main section.sec#sec3 .photos .slider .swiper-wrapper .swiper-slide p {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    padding: 10px;
    display: block;
  }
  main section.sec#sec3 .photos .slider.slide1 p {
    background-color: #419364;
  }
  main section.sec#sec3 .photos .slider.slide2 p {
    background-color: #C1485C;
  }
  main section.sec#sec3 .photos .arrow {
    width: 20px;
    height: 20px;
    background-color: #FFF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px;
    border-radius: 10px;
    z-index: 3;
  }
  main section.sec#sec3 .photos .arrow.left {
    top: calc(50% - 20px);
    left: -10px;
  }
  main section.sec#sec3 .photos .arrow.right {
    transform: rotate(180deg);
    top: calc(50% - 20px);
    right: -10px;
  }
  main section.sec#sec3 .photos .btn {
    width: 240px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
  }
  main section.sec#sec3 .photos .btn a {
    width: 100%;
    height: 35px;
    background-color: #FEB812;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.25s ease-in 0s;
  }
  main section.sec#sec3 .photos .btn a::after {
    content: "";
    width: 12px;
    height: 12px;
    margin-left: 10px;
    background-image: url(../images/icon_blank.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
  }
  main section.sec#sec3 .photos .btn a:hover {
    opacity: 0.7;
  }
  main section.sec#sec3 .photos .btn a span {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section.sec#sec3 .feature {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  main section.sec#sec3 .feature h5 {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  main section.sec#sec3 .feature p {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0em;
  }
  main section.sec#sec3 .feature .line {
    text-align: left;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section.sec#sec3 .feature .line:not(:last-child) {
    margin-bottom: 40px;
  }
  main section.sec#sec3 .feature .line .photo {
    width: 100%;
    margin-bottom: 10px;
  }
  main section.sec#sec3 .feature .line .text {
    width: 100%;
  }
  main section.sec#sec3 .feature .line.ibaraki .text h5 {
    color: #419364;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  main section.sec#sec3 .feature .line.tochigi .text h5 {
    color: #C1485C;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  main section.sec#sec3 .feature .column {
    padding: 40px 20px 20px 20px;
    border-radius: 5px;
  }
  main section.sec#sec3 .feature .column::before {
    content: "";
    width: 100px;
    height: 57px;
    top: -20px;
    left: -10px;
  }
  main section.sec#sec3 .feature .column h5 {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2.6rem;
    letter-spacing: 0em;
    border-bottom: solid 1px #111;
  }
  main section.sec#sec4 {
    width: 100%;
    padding: 70px 0;
    position: relative;
  }
  main section.sec#sec4 .title dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 70px;
  }
  main section.sec#sec4 .title dl dt {
    width: 137px;
    height: 40px;
    margin-bottom: 20px;
  }
  main section.sec#sec4 .title dl dd {
    color: #111;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
    letter-spacing: 0.05em;
  }
  main section.sec#sec4 .comment {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  main section.sec#sec4 .comment:not(:last-child) {
    margin-bottom: 40px;
  }
  main section.sec#sec4 .comment::before {
    content: "";
    width: 50%;
    height: 5px;
    background-color: #419364;
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
  }
  main section.sec#sec4 .comment::after {
    content: "";
    width: 50%;
    height: 5px;
    background-color: #C1485C;
    position: absolute;
    top: 0px;
    left: 50%;
    display: block;
  }
  main section.sec#sec4 .comment .reason {
    width: 70px;
    height: 70px;
    top: -30px;
    left: 20px;
  }
  main section.sec#sec4 .comment .reason span:nth-child(1) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    margin-bottom: 3px;
  }
  main section.sec#sec4 .comment .reason span:nth-child(2) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  main section.sec#sec4 .comment .incomment {
    width: 100%;
    padding: 50px 20px 20px 20px;
  }
  main section.sec#sec4 .comment .incomment dl {
    text-align: left;
    width: 100%;
  }
  main section.sec#sec4 .comment .incomment dl dt {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0em;
    margin-bottom: 10px;
  }
  main section.sec#sec4 .comment .incomment dl dd {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  main section.sec#sec5 {
    width: 100%;
    padding: 40px 0;
    background-color: #E0E28D;
    background-image: url(../images/bg_map.svg);
    background-repeat: no-repeat;
    background-position: center 200px;
    background-size: 755px 500px;
    position: relative;
    overflow: hidden;
  }
  main section.sec#sec5 .deco {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
  }
  main section.sec#sec5 .deco div {
    position: absolute;
    pointer-events: none;
  }
  main section.sec#sec5 .deco div:nth-child(1) {
    width: 71px;
    top: 90px;
    left: calc(50% - 500px);
  }
  main section.sec#sec5 .deco div:nth-child(2) {
    width: 142px;
    top: 200px;
    left: calc(50% - 420px);
  }
  main section.sec#sec5 .deco div:nth-child(3) {
    width: 84px;
    top: 120px;
    left: calc(50% + 380px);
  }
  main section.sec#sec5 .deco div:nth-child(4) {
    width: 120px;
    top: 230px;
    left: calc(50% + 265px);
  }
  main section.sec#sec5 .title {
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
  }
  main section.sec#sec5 .title dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0px;
  }
  main section.sec#sec5 .title dl dt {
    width: 137px;
    height: 40px;
    margin-bottom: 20px;
  }
  main section.sec#sec5 .title dl dd:nth-child(2) {
    color: #111;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 3.6rem;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }
  main section.sec#sec5 .title dl dd:nth-child(3) {
    color: #111;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  main section.sec#sec5 .q {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  main section.sec#sec5 .q:not(:last-child) {
    margin-bottom: 20px;
  }
  main section.sec#sec5 .q h5 {
    color: #111;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
    text-align: center;
    text-indent: 0;
    width: auto;
    height: auto;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #FEB812;
    background-image: none;
    margin: 0 auto 20px auto;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    overflow: visible;
  }
  main section.sec#sec5 .q h5::after {
    content: "";
    border-top: solid 10px #FEB812;
    border-right: solid 8px transparent;
    border-left: solid 8px transparent;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 8px);
    z-index: 3;
    display: block;
  }
  main section.sec#sec5 .q .box1 {
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  main section.sec#sec5 .q .box1:not(:last-child) {
    margin-bottom: 6px;
  }
  main section.sec#sec5 .q .box1::before {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
  }
  main section.sec#sec5 .q .box1 .map {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section.sec#sec5 .q .box1 .map img.map1 {
    width: 200px;
  }
  main section.sec#sec5 .q .box1 .map img.map2 {
    width: 206px;
  }
  main section.sec#sec5 .q .box1 .text {
    text-align: left;
    width: 100%;
  }
  main section.sec#sec5 .q .box1 .text dl:not(:last-child) {
    margin-bottom: 10px;
  }
  main section.sec#sec5 .q .box1 .text dl dt {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  main section.sec#sec5 .q .box1 .text dl dd {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  main section.sec#sec5 .q .box1 .text dl dd.notice {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0em;
  }
  main section.sec#sec5 .q .box2 {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section.sec#sec5 .q .box2:not(:last-child) {
    margin-bottom: 20px;
  }
  main section.sec#sec5 .q .box2 .inbox {
    width: 100%;
    padding: 20px;
    border-radius: 5px;
  }
  main section.sec#sec5 .q .box2 .inbox:not(:last-child) {
    margin-bottom: 6px;
  }
  main section.sec#sec5 .q .box2 .inbox dl dt {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  main section.sec#sec5 .q .box2 .inbox dl dd {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0em;
  }
  main section.sec#sec5 .q .box2 .inbox dl dd.notice {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8rem;
    letter-spacing: 0em;
  }
  main section.sec#sec5 p.notice {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0em;
    padding: 0 20px;
  }
  main section.sec#sec6, main section.sec#sec7, main section.sec#sec8, main section.sec#sec9, main section.sec#sec10, main section.sec#sec11, main section.sec#sec12, main section.sec#sec13, main section.sec#sec14 {
    width: 100%;
    padding: 20px 0;
    background-color: #C3D8CB;
    position: relative;
  }
  main section.sec#sec6::before, main section.sec#sec7::before, main section.sec#sec8::before, main section.sec#sec9::before, main section.sec#sec10::before, main section.sec#sec11::before, main section.sec#sec12::before, main section.sec#sec13::before, main section.sec#sec14::before {
    content: "";
    width: 50%;
    height: 100%;
    background-color: #DBC1C6;
    position: absolute;
    top: 0px;
    left: 50%;
    display: block;
  }
  main section.sec#sec6 .q, main section.sec#sec7 .q, main section.sec#sec8 .q, main section.sec#sec9 .q, main section.sec#sec10 .q, main section.sec#sec11 .q, main section.sec#sec12 .q, main section.sec#sec13 .q, main section.sec#sec14 .q {
    width: calc(100% - 40px);
  }
  main section.sec#sec6 .q:not(:last-child), main section.sec#sec7 .q:not(:last-child), main section.sec#sec8 .q:not(:last-child), main section.sec#sec9 .q:not(:last-child), main section.sec#sec10 .q:not(:last-child), main section.sec#sec11 .q:not(:last-child), main section.sec#sec12 .q:not(:last-child), main section.sec#sec13 .q:not(:last-child), main section.sec#sec14 .q:not(:last-child) {
    margin-bottom: 20px;
  }
  main section.sec#sec6 .q h5, main section.sec#sec7 .q h5, main section.sec#sec8 .q h5, main section.sec#sec9 .q h5, main section.sec#sec10 .q h5, main section.sec#sec11 .q h5, main section.sec#sec12 .q h5, main section.sec#sec13 .q h5, main section.sec#sec14 .q h5 {
    color: #111;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
    text-align: center;
    text-indent: 0;
    white-space: normal;
    width: auto;
    height: auto;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #FEB812;
    background-image: none !important;
    margin: 0 auto 20px auto;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    overflow: visible;
  }
  main section.sec#sec6 .q h5::after, main section.sec#sec7 .q h5::after, main section.sec#sec8 .q h5::after, main section.sec#sec9 .q h5::after, main section.sec#sec10 .q h5::after, main section.sec#sec11 .q h5::after, main section.sec#sec12 .q h5::after, main section.sec#sec13 .q h5::after, main section.sec#sec14 .q h5::after {
    content: "";
    border-top: solid 10px #FEB812;
    border-right: solid 8px transparent;
    border-left: solid 8px transparent;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 8px);
    z-index: 3;
    display: block;
  }
  main section.sec#sec6 .q .inner, main section.sec#sec7 .q .inner, main section.sec#sec8 .q .inner, main section.sec#sec9 .q .inner, main section.sec#sec10 .q .inner, main section.sec#sec11 .q .inner, main section.sec#sec12 .q .inner, main section.sec#sec13 .q .inner, main section.sec#sec14 .q .inner {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  main section.sec#sec6 .q .inner .box, main section.sec#sec7 .q .inner .box, main section.sec#sec8 .q .inner .box, main section.sec#sec9 .q .inner .box, main section.sec#sec10 .q .inner .box, main section.sec#sec11 .q .inner .box, main section.sec#sec12 .q .inner .box, main section.sec#sec13 .q .inner .box, main section.sec#sec14 .q .inner .box {
    width: calc((100% - 50px) / 2);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section.sec#sec6 .q .inner .box h6, main section.sec#sec7 .q .inner .box h6, main section.sec#sec8 .q .inner .box h6, main section.sec#sec9 .q .inner .box h6, main section.sec#sec10 .q .inner .box h6, main section.sec#sec11 .q .inner .box h6, main section.sec#sec12 .q .inner .box h6, main section.sec#sec13 .q .inner .box h6, main section.sec#sec14 .q .inner .box h6 {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  main section.sec#sec6 .q .inner .box dl, main section.sec#sec7 .q .inner .box dl, main section.sec#sec8 .q .inner .box dl, main section.sec#sec9 .q .inner .box dl, main section.sec#sec10 .q .inner .box dl, main section.sec#sec11 .q .inner .box dl, main section.sec#sec12 .q .inner .box dl, main section.sec#sec13 .q .inner .box dl, main section.sec#sec14 .q .inner .box dl {
    width: 100%;
    text-align: left;
  }
  main section.sec#sec6 .q .inner .box dl:not(:last-child), main section.sec#sec7 .q .inner .box dl:not(:last-child), main section.sec#sec8 .q .inner .box dl:not(:last-child), main section.sec#sec9 .q .inner .box dl:not(:last-child), main section.sec#sec10 .q .inner .box dl:not(:last-child), main section.sec#sec11 .q .inner .box dl:not(:last-child), main section.sec#sec12 .q .inner .box dl:not(:last-child), main section.sec#sec13 .q .inner .box dl:not(:last-child), main section.sec#sec14 .q .inner .box dl:not(:last-child) {
    margin-bottom: 25px;
  }
  main section.sec#sec6 .q .inner .box dl dt, main section.sec#sec7 .q .inner .box dl dt, main section.sec#sec8 .q .inner .box dl dt, main section.sec#sec9 .q .inner .box dl dt, main section.sec#sec10 .q .inner .box dl dt, main section.sec#sec11 .q .inner .box dl dt, main section.sec#sec12 .q .inner .box dl dt, main section.sec#sec13 .q .inner .box dl dt, main section.sec#sec14 .q .inner .box dl dt {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
  }
  main section.sec#sec6 .q .inner .box dl dt span:nth-child(1), main section.sec#sec7 .q .inner .box dl dt span:nth-child(1), main section.sec#sec8 .q .inner .box dl dt span:nth-child(1), main section.sec#sec9 .q .inner .box dl dt span:nth-child(1), main section.sec#sec10 .q .inner .box dl dt span:nth-child(1), main section.sec#sec11 .q .inner .box dl dt span:nth-child(1), main section.sec#sec12 .q .inner .box dl dt span:nth-child(1), main section.sec#sec13 .q .inner .box dl dt span:nth-child(1), main section.sec#sec14 .q .inner .box dl dt span:nth-child(1) {
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    width: 25px;
    height: 25px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
  }
  main section.sec#sec6 .q .inner .box dl dt span:nth-child(2), main section.sec#sec7 .q .inner .box dl dt span:nth-child(2), main section.sec#sec8 .q .inner .box dl dt span:nth-child(2), main section.sec#sec9 .q .inner .box dl dt span:nth-child(2), main section.sec#sec10 .q .inner .box dl dt span:nth-child(2), main section.sec#sec11 .q .inner .box dl dt span:nth-child(2), main section.sec#sec12 .q .inner .box dl dt span:nth-child(2), main section.sec#sec13 .q .inner .box dl dt span:nth-child(2), main section.sec#sec14 .q .inner .box dl dt span:nth-child(2) {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
    margin-left: 10px;
    width: calc(100% - 35px);
    display: inline-block;
  }
  main section.sec#sec6 .q .inner .box dl dd, main section.sec#sec7 .q .inner .box dl dd, main section.sec#sec8 .q .inner .box dl dd, main section.sec#sec9 .q .inner .box dl dd, main section.sec#sec10 .q .inner .box dl dd, main section.sec#sec11 .q .inner .box dl dd, main section.sec#sec12 .q .inner .box dl dd, main section.sec#sec13 .q .inner .box dl dd, main section.sec#sec14 .q .inner .box dl dd {
    position: relative;
  }
  main section.sec#sec6 .q .inner .box dl dd:not(:last-child), main section.sec#sec7 .q .inner .box dl dd:not(:last-child), main section.sec#sec8 .q .inner .box dl dd:not(:last-child), main section.sec#sec9 .q .inner .box dl dd:not(:last-child), main section.sec#sec10 .q .inner .box dl dd:not(:last-child), main section.sec#sec11 .q .inner .box dl dd:not(:last-child), main section.sec#sec12 .q .inner .box dl dd:not(:last-child), main section.sec#sec13 .q .inner .box dl dd:not(:last-child), main section.sec#sec14 .q .inner .box dl dd:not(:last-child) {
    margin-bottom: 10px;
  }
  main section.sec#sec6 .q .inner .box dl dd::before, main section.sec#sec7 .q .inner .box dl dd::before, main section.sec#sec8 .q .inner .box dl dd::before, main section.sec#sec9 .q .inner .box dl dd::before, main section.sec#sec10 .q .inner .box dl dd::before, main section.sec#sec11 .q .inner .box dl dd::before, main section.sec#sec12 .q .inner .box dl dd::before, main section.sec#sec13 .q .inner .box dl dd::before, main section.sec#sec14 .q .inner .box dl dd::before {
    content: "";
    border-top: solid 5px transparent;
    border-right: solid 10px #FFF;
    border-bottom: solid 5px transparent;
    display: block;
    position: absolute;
    bottom: 10px;
    left: -10px;
  }
  main section.sec#sec6 .q .inner .box dl dd.type2::before, main section.sec#sec7 .q .inner .box dl dd.type2::before, main section.sec#sec8 .q .inner .box dl dd.type2::before, main section.sec#sec9 .q .inner .box dl dd.type2::before, main section.sec#sec10 .q .inner .box dl dd.type2::before, main section.sec#sec11 .q .inner .box dl dd.type2::before, main section.sec#sec12 .q .inner .box dl dd.type2::before, main section.sec#sec13 .q .inner .box dl dd.type2::before, main section.sec#sec14 .q .inner .box dl dd.type2::before {
    border-right: none;
    border-left: solid 10px #FFF;
    right: -10px;
    left: auto;
  }
  main section.sec#sec6 .q .inner .box dl dd.type2 dl, main section.sec#sec7 .q .inner .box dl dd.type2 dl, main section.sec#sec8 .q .inner .box dl dd.type2 dl, main section.sec#sec9 .q .inner .box dl dd.type2 dl, main section.sec#sec10 .q .inner .box dl dd.type2 dl, main section.sec#sec11 .q .inner .box dl dd.type2 dl, main section.sec#sec12 .q .inner .box dl dd.type2 dl, main section.sec#sec13 .q .inner .box dl dd.type2 dl, main section.sec#sec14 .q .inner .box dl dd.type2 dl {
    margin-left: auto;
  }
  main section.sec#sec6 .q .inner .box dl dd.nob, main section.sec#sec7 .q .inner .box dl dd.nob, main section.sec#sec8 .q .inner .box dl dd.nob, main section.sec#sec9 .q .inner .box dl dd.nob, main section.sec#sec10 .q .inner .box dl dd.nob, main section.sec#sec11 .q .inner .box dl dd.nob, main section.sec#sec12 .q .inner .box dl dd.nob, main section.sec#sec13 .q .inner .box dl dd.nob, main section.sec#sec14 .q .inner .box dl dd.nob {
    width: 100%;
  }
  main section.sec#sec6 .q .inner .box dl dd.nob::before, main section.sec#sec7 .q .inner .box dl dd.nob::before, main section.sec#sec8 .q .inner .box dl dd.nob::before, main section.sec#sec9 .q .inner .box dl dd.nob::before, main section.sec#sec10 .q .inner .box dl dd.nob::before, main section.sec#sec11 .q .inner .box dl dd.nob::before, main section.sec#sec12 .q .inner .box dl dd.nob::before, main section.sec#sec13 .q .inner .box dl dd.nob::before, main section.sec#sec14 .q .inner .box dl dd.nob::before {
    content: none;
  }
  main section.sec#sec6 .q .inner .box dl dd span, main section.sec#sec7 .q .inner .box dl dd span, main section.sec#sec8 .q .inner .box dl dd span, main section.sec#sec9 .q .inner .box dl dd span, main section.sec#sec10 .q .inner .box dl dd span, main section.sec#sec11 .q .inner .box dl dd span, main section.sec#sec12 .q .inner .box dl dd span, main section.sec#sec13 .q .inner .box dl dd span, main section.sec#sec14 .q .inner .box dl dd span {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0em;
    padding: 10px;
  }
  main section.sec#sec6 .q .inner .box dl dd dl, main section.sec#sec7 .q .inner .box dl dd dl, main section.sec#sec8 .q .inner .box dl dd dl, main section.sec#sec9 .q .inner .box dl dd dl, main section.sec#sec10 .q .inner .box dl dd dl, main section.sec#sec11 .q .inner .box dl dd dl, main section.sec#sec12 .q .inner .box dl dd dl, main section.sec#sec13 .q .inner .box dl dd dl, main section.sec#sec14 .q .inner .box dl dd dl {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section.sec#sec6 .q .inner .box dl dd dl dt, main section.sec#sec7 .q .inner .box dl dd dl dt, main section.sec#sec8 .q .inner .box dl dd dl dt, main section.sec#sec9 .q .inner .box dl dd dl dt, main section.sec#sec10 .q .inner .box dl dd dl dt, main section.sec#sec11 .q .inner .box dl dd dl dt, main section.sec#sec12 .q .inner .box dl dd dl dt, main section.sec#sec13 .q .inner .box dl dd dl dt, main section.sec#sec14 .q .inner .box dl dd dl dt {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
    margin: 0px;
  }
  main section.sec#sec6 .q .inner .box dl dd dl dd, main section.sec#sec7 .q .inner .box dl dd dl dd, main section.sec#sec8 .q .inner .box dl dd dl dd, main section.sec#sec9 .q .inner .box dl dd dl dd, main section.sec#sec10 .q .inner .box dl dd dl dd, main section.sec#sec11 .q .inner .box dl dd dl dd, main section.sec#sec12 .q .inner .box dl dd dl dd, main section.sec#sec13 .q .inner .box dl dd dl dd, main section.sec#sec14 .q .inner .box dl dd dl dd {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0em;
  }
  main section.sec#sec6 .q .inner .box .baloon, main section.sec#sec7 .q .inner .box .baloon, main section.sec#sec8 .q .inner .box .baloon, main section.sec#sec9 .q .inner .box .baloon, main section.sec#sec10 .q .inner .box .baloon, main section.sec#sec11 .q .inner .box .baloon, main section.sec#sec12 .q .inner .box .baloon, main section.sec#sec13 .q .inner .box .baloon, main section.sec#sec14 .q .inner .box .baloon {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section.sec#sec6 .q .inner .box .baloon.full, main section.sec#sec7 .q .inner .box .baloon.full, main section.sec#sec8 .q .inner .box .baloon.full, main section.sec#sec9 .q .inner .box .baloon.full, main section.sec#sec10 .q .inner .box .baloon.full, main section.sec#sec11 .q .inner .box .baloon.full, main section.sec#sec12 .q .inner .box .baloon.full, main section.sec#sec13 .q .inner .box .baloon.full, main section.sec#sec14 .q .inner .box .baloon.full {
    width: 100%;
  }
  main section.sec#sec6 .q .inner .box .baloon .serif, main section.sec#sec7 .q .inner .box .baloon .serif, main section.sec#sec8 .q .inner .box .baloon .serif, main section.sec#sec9 .q .inner .box .baloon .serif, main section.sec#sec10 .q .inner .box .baloon .serif, main section.sec#sec11 .q .inner .box .baloon .serif, main section.sec#sec12 .q .inner .box .baloon .serif, main section.sec#sec13 .q .inner .box .baloon .serif, main section.sec#sec14 .q .inner .box .baloon .serif {
    position: relative;
  }
  main section.sec#sec6 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec7 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec8 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec9 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec10 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec11 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec12 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec13 .q .inner .box .baloon .serif:not(:last-child), main section.sec#sec14 .q .inner .box .baloon .serif:not(:last-child) {
    margin-bottom: 20px;
  }
  main section.sec#sec6 .q .inner .box .baloon .serif::before, main section.sec#sec7 .q .inner .box .baloon .serif::before, main section.sec#sec8 .q .inner .box .baloon .serif::before, main section.sec#sec9 .q .inner .box .baloon .serif::before, main section.sec#sec10 .q .inner .box .baloon .serif::before, main section.sec#sec11 .q .inner .box .baloon .serif::before, main section.sec#sec12 .q .inner .box .baloon .serif::before, main section.sec#sec13 .q .inner .box .baloon .serif::before, main section.sec#sec14 .q .inner .box .baloon .serif::before {
    content: "";
    border-top: solid 10px #FFF;
    border-right: solid 5px transparent;
    border-left: solid 5px transparent;
    display: block;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 5px);
  }
  main section.sec#sec6 .q .inner .box .baloon .serif.s2, main section.sec#sec7 .q .inner .box .baloon .serif.s2, main section.sec#sec8 .q .inner .box .baloon .serif.s2, main section.sec#sec9 .q .inner .box .baloon .serif.s2, main section.sec#sec10 .q .inner .box .baloon .serif.s2, main section.sec#sec11 .q .inner .box .baloon .serif.s2, main section.sec#sec12 .q .inner .box .baloon .serif.s2, main section.sec#sec13 .q .inner .box .baloon .serif.s2, main section.sec#sec14 .q .inner .box .baloon .serif.s2 {
    margin-top: 0px;
    margin-right: auto;
  }
  main section.sec#sec6 .q .inner .box .baloon .serif.s3, main section.sec#sec7 .q .inner .box .baloon .serif.s3, main section.sec#sec8 .q .inner .box .baloon .serif.s3, main section.sec#sec9 .q .inner .box .baloon .serif.s3, main section.sec#sec10 .q .inner .box .baloon .serif.s3, main section.sec#sec11 .q .inner .box .baloon .serif.s3, main section.sec#sec12 .q .inner .box .baloon .serif.s3, main section.sec#sec13 .q .inner .box .baloon .serif.s3, main section.sec#sec14 .q .inner .box .baloon .serif.s3 {
    margin: 0 0 20px auto;
  }
  main section.sec#sec6 .q .inner .box .baloon .serif.s4, main section.sec#sec7 .q .inner .box .baloon .serif.s4, main section.sec#sec8 .q .inner .box .baloon .serif.s4, main section.sec#sec9 .q .inner .box .baloon .serif.s4, main section.sec#sec10 .q .inner .box .baloon .serif.s4, main section.sec#sec11 .q .inner .box .baloon .serif.s4, main section.sec#sec12 .q .inner .box .baloon .serif.s4, main section.sec#sec13 .q .inner .box .baloon .serif.s4, main section.sec#sec14 .q .inner .box .baloon .serif.s4 {
    margin-right: auto;
    transform: translateX(0px);
  }
  main section.sec#sec6 .q .inner .box .baloon .serif.s5, main section.sec#sec7 .q .inner .box .baloon .serif.s5, main section.sec#sec8 .q .inner .box .baloon .serif.s5, main section.sec#sec9 .q .inner .box .baloon .serif.s5, main section.sec#sec10 .q .inner .box .baloon .serif.s5, main section.sec#sec11 .q .inner .box .baloon .serif.s5, main section.sec#sec12 .q .inner .box .baloon .serif.s5, main section.sec#sec13 .q .inner .box .baloon .serif.s5, main section.sec#sec14 .q .inner .box .baloon .serif.s5 {
    margin-left: auto;
    transform: translateX(0px);
  }
  main section.sec#sec6 .q .inner .box .baloon .serif span, main section.sec#sec7 .q .inner .box .baloon .serif span, main section.sec#sec8 .q .inner .box .baloon .serif span, main section.sec#sec9 .q .inner .box .baloon .serif span, main section.sec#sec10 .q .inner .box .baloon .serif span, main section.sec#sec11 .q .inner .box .baloon .serif span, main section.sec#sec12 .q .inner .box .baloon .serif span, main section.sec#sec13 .q .inner .box .baloon .serif span, main section.sec#sec14 .q .inner .box .baloon .serif span {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 3rem;
    letter-spacing: 0em;
    padding: 10px;
    border-radius: 10px;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset, main section.sec#sec7 .q .inner .box .baloon .bset, main section.sec#sec8 .q .inner .box .baloon .bset, main section.sec#sec9 .q .inner .box .baloon .bset, main section.sec#sec10 .q .inner .box .baloon .bset, main section.sec#sec11 .q .inner .box .baloon .bset, main section.sec#sec12 .q .inner .box .baloon .bset, main section.sec#sec13 .q .inner .box .baloon .bset, main section.sec#sec14 .q .inner .box .baloon .bset {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec7 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec8 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec9 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec10 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec11 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec12 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec13 .q .inner .box .baloon .bset:not(:last-child), main section.sec#sec14 .q .inner .box .baloon .bset:not(:last-child) {
    margin-bottom: 20px;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec7 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec8 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec9 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec10 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec11 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec12 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec13 .q .inner .box .baloon .bset .serif:not(:last-child), main section.sec#sec14 .q .inner .box .baloon .bset .serif:not(:last-child) {
    margin-bottom: 20px;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset .serif:nth-child(odd), main section.sec#sec7 .q .inner .box .baloon .bset .serif:nth-child(odd), main section.sec#sec8 .q .inner .box .baloon .bset .serif:nth-child(odd), main section.sec#sec9 .q .inner .box .baloon .bset .serif:nth-child(odd), main section.sec#sec10 .q .inner .box .baloon .bset .serif:nth-child(odd), main section.sec#sec11 .q .inner .box .baloon .bset .serif:nth-child(odd), main section.sec#sec12 .q .inner .box .baloon .bset .serif:nth-child(odd), main section.sec#sec13 .q .inner .box .baloon .bset .serif:nth-child(odd), main section.sec#sec14 .q .inner .box .baloon .bset .serif:nth-child(odd) {
    margin-left: auto;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset .serif:nth-child(even), main section.sec#sec7 .q .inner .box .baloon .bset .serif:nth-child(even), main section.sec#sec8 .q .inner .box .baloon .bset .serif:nth-child(even), main section.sec#sec9 .q .inner .box .baloon .bset .serif:nth-child(even), main section.sec#sec10 .q .inner .box .baloon .bset .serif:nth-child(even), main section.sec#sec11 .q .inner .box .baloon .bset .serif:nth-child(even), main section.sec#sec12 .q .inner .box .baloon .bset .serif:nth-child(even), main section.sec#sec13 .q .inner .box .baloon .bset .serif:nth-child(even), main section.sec#sec14 .q .inner .box .baloon .bset .serif:nth-child(even) {
    margin-right: auto;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset .serif span, main section.sec#sec7 .q .inner .box .baloon .bset .serif span, main section.sec#sec8 .q .inner .box .baloon .bset .serif span, main section.sec#sec9 .q .inner .box .baloon .bset .serif span, main section.sec#sec10 .q .inner .box .baloon .bset .serif span, main section.sec#sec11 .q .inner .box .baloon .bset .serif span, main section.sec#sec12 .q .inner .box .baloon .bset .serif span, main section.sec#sec13 .q .inner .box .baloon .bset .serif span, main section.sec#sec14 .q .inner .box .baloon .bset .serif span {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.8rem;
    letter-spacing: 0em;
    padding: 10px;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset2, main section.sec#sec7 .q .inner .box .baloon .bset2, main section.sec#sec8 .q .inner .box .baloon .bset2, main section.sec#sec9 .q .inner .box .baloon .bset2, main section.sec#sec10 .q .inner .box .baloon .bset2, main section.sec#sec11 .q .inner .box .baloon .bset2, main section.sec#sec12 .q .inner .box .baloon .bset2, main section.sec#sec13 .q .inner .box .baloon .bset2, main section.sec#sec14 .q .inner .box .baloon .bset2 {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec7 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec8 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec9 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec10 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec11 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec12 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec13 .q .inner .box .baloon .bset2:not(:last-child), main section.sec#sec14 .q .inner .box .baloon .bset2:not(:last-child) {
    margin-bottom: 20px;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec7 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec8 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec9 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec10 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec11 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec12 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec13 .q .inner .box .baloon .bset2 .serif:not(:last-child), main section.sec#sec14 .q .inner .box .baloon .bset2 .serif:not(:last-child) {
    margin-bottom: 20px;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec7 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec8 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec9 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec10 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec11 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec12 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec13 .q .inner .box .baloon .bset2 .serif:not(:first-child), main section.sec#sec14 .q .inner .box .baloon .bset2 .serif:not(:first-child) {
    margin-left: 0px;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset2 .serif:nth-child(odd), main section.sec#sec7 .q .inner .box .baloon .bset2 .serif:nth-child(odd), main section.sec#sec8 .q .inner .box .baloon .bset2 .serif:nth-child(odd), main section.sec#sec9 .q .inner .box .baloon .bset2 .serif:nth-child(odd), main section.sec#sec10 .q .inner .box .baloon .bset2 .serif:nth-child(odd), main section.sec#sec11 .q .inner .box .baloon .bset2 .serif:nth-child(odd), main section.sec#sec12 .q .inner .box .baloon .bset2 .serif:nth-child(odd), main section.sec#sec13 .q .inner .box .baloon .bset2 .serif:nth-child(odd), main section.sec#sec14 .q .inner .box .baloon .bset2 .serif:nth-child(odd) {
    margin-left: auto;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset2 .serif:nth-child(even), main section.sec#sec7 .q .inner .box .baloon .bset2 .serif:nth-child(even), main section.sec#sec8 .q .inner .box .baloon .bset2 .serif:nth-child(even), main section.sec#sec9 .q .inner .box .baloon .bset2 .serif:nth-child(even), main section.sec#sec10 .q .inner .box .baloon .bset2 .serif:nth-child(even), main section.sec#sec11 .q .inner .box .baloon .bset2 .serif:nth-child(even), main section.sec#sec12 .q .inner .box .baloon .bset2 .serif:nth-child(even), main section.sec#sec13 .q .inner .box .baloon .bset2 .serif:nth-child(even), main section.sec#sec14 .q .inner .box .baloon .bset2 .serif:nth-child(even) {
    margin-right: auto;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec7 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec8 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec9 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec10 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec11 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec12 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec13 .q .inner .box .baloon .bset2 .serif span, main section.sec#sec14 .q .inner .box .baloon .bset2 .serif span {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.8rem;
    letter-spacing: 0em;
    padding: 10px;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset3, main section.sec#sec7 .q .inner .box .baloon .bset3, main section.sec#sec8 .q .inner .box .baloon .bset3, main section.sec#sec9 .q .inner .box .baloon .bset3, main section.sec#sec10 .q .inner .box .baloon .bset3, main section.sec#sec11 .q .inner .box .baloon .bset3, main section.sec#sec12 .q .inner .box .baloon .bset3, main section.sec#sec13 .q .inner .box .baloon .bset3, main section.sec#sec14 .q .inner .box .baloon .bset3 {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flaxe-start;
    align-items: flex-center;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec7 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec8 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec9 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec10 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec11 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec12 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec13 .q .inner .box .baloon .bset3:not(:last-child), main section.sec#sec14 .q .inner .box .baloon .bset3:not(:last-child) {
    margin-bottom: 20px;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset3:nth-child(odd), main section.sec#sec7 .q .inner .box .baloon .bset3:nth-child(odd), main section.sec#sec8 .q .inner .box .baloon .bset3:nth-child(odd), main section.sec#sec9 .q .inner .box .baloon .bset3:nth-child(odd), main section.sec#sec10 .q .inner .box .baloon .bset3:nth-child(odd), main section.sec#sec11 .q .inner .box .baloon .bset3:nth-child(odd), main section.sec#sec12 .q .inner .box .baloon .bset3:nth-child(odd), main section.sec#sec13 .q .inner .box .baloon .bset3:nth-child(odd), main section.sec#sec14 .q .inner .box .baloon .bset3:nth-child(odd) {
    margin-left: auto;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset3:nth-child(even), main section.sec#sec7 .q .inner .box .baloon .bset3:nth-child(even), main section.sec#sec8 .q .inner .box .baloon .bset3:nth-child(even), main section.sec#sec9 .q .inner .box .baloon .bset3:nth-child(even), main section.sec#sec10 .q .inner .box .baloon .bset3:nth-child(even), main section.sec#sec11 .q .inner .box .baloon .bset3:nth-child(even), main section.sec#sec12 .q .inner .box .baloon .bset3:nth-child(even), main section.sec#sec13 .q .inner .box .baloon .bset3:nth-child(even), main section.sec#sec14 .q .inner .box .baloon .bset3:nth-child(even) {
    margin-right: auto;
  }
  main section.sec#sec6 .q .inner .box .baloon .bset3 span, main section.sec#sec7 .q .inner .box .baloon .bset3 span, main section.sec#sec8 .q .inner .box .baloon .bset3 span, main section.sec#sec9 .q .inner .box .baloon .bset3 span, main section.sec#sec10 .q .inner .box .baloon .bset3 span, main section.sec#sec11 .q .inner .box .baloon .bset3 span, main section.sec#sec12 .q .inner .box .baloon .bset3 span, main section.sec#sec13 .q .inner .box .baloon .bset3 span, main section.sec#sec14 .q .inner .box .baloon .bset3 span {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.8rem;
    letter-spacing: 0em;
    padding: 10px;
  }
  main section.sec#sec6 .q .inner .box.ibaraki h6, main section.sec#sec7 .q .inner .box.ibaraki h6, main section.sec#sec8 .q .inner .box.ibaraki h6, main section.sec#sec9 .q .inner .box.ibaraki h6, main section.sec#sec10 .q .inner .box.ibaraki h6, main section.sec#sec11 .q .inner .box.ibaraki h6, main section.sec#sec12 .q .inner .box.ibaraki h6, main section.sec#sec13 .q .inner .box.ibaraki h6, main section.sec#sec14 .q .inner .box.ibaraki h6 {
    background-image: url(../images/icon_ibaraki.png);
  }
  main section.sec#sec6 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec7 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec8 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec9 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec10 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec11 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec12 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec13 .q .inner .box.ibaraki dl dt span:nth-child(1), main section.sec#sec14 .q .inner .box.ibaraki dl dt span:nth-child(1) {
    background-color: #419364;
  }
  main section.sec#sec6 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec7 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec8 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec9 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec10 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec11 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec12 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec13 .q .inner .box.ibaraki dl dt span:nth-child(2), main section.sec#sec14 .q .inner .box.ibaraki dl dt span:nth-child(2) {
    color: #419364;
  }
  main section.sec#sec6 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec7 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec8 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec9 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec10 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec11 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec12 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec13 .q .inner .box.ibaraki dl dd dl dt, main section.sec#sec14 .q .inner .box.ibaraki dl dd dl dt {
    color: #419364;
  }
  main section.sec#sec6 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec7 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec8 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec9 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec10 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec11 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec12 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec13 .q .inner .box.ibaraki .baloon .serif span, main section.sec#sec14 .q .inner .box.ibaraki .baloon .serif span {
    color: #419364;
  }
  main section.sec#sec6 .q .inner .box.tochigi h6, main section.sec#sec7 .q .inner .box.tochigi h6, main section.sec#sec8 .q .inner .box.tochigi h6, main section.sec#sec9 .q .inner .box.tochigi h6, main section.sec#sec10 .q .inner .box.tochigi h6, main section.sec#sec11 .q .inner .box.tochigi h6, main section.sec#sec12 .q .inner .box.tochigi h6, main section.sec#sec13 .q .inner .box.tochigi h6, main section.sec#sec14 .q .inner .box.tochigi h6 {
    background-image: url(../images/icon_tochigi.png);
  }
  main section.sec#sec6 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec7 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec8 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec9 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec10 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec11 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec12 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec13 .q .inner .box.tochigi dl dt span:nth-child(1), main section.sec#sec14 .q .inner .box.tochigi dl dt span:nth-child(1) {
    background-color: #C1485C;
  }
  main section.sec#sec6 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec7 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec8 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec9 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec10 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec11 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec12 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec13 .q .inner .box.tochigi dl dt span:nth-child(2), main section.sec#sec14 .q .inner .box.tochigi dl dt span:nth-child(2) {
    color: #C1485C;
  }
  main section.sec#sec6 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec7 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec8 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec9 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec10 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec11 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec12 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec13 .q .inner .box.tochigi dl dd dl dt, main section.sec#sec14 .q .inner .box.tochigi dl dd dl dt {
    color: #C1485C;
  }
  main section.sec#sec6 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec7 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec8 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec9 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec10 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec11 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec12 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec13 .q .inner .box.tochigi .baloon .serif span, main section.sec#sec14 .q .inner .box.tochigi .baloon .serif span {
    color: #C1485C;
  }
  main section.sec#sec14 {
    padding-bottom: 80px;
  }
  main section.sec#sec15 {
    padding: 40px 0;
  }
  main section.sec#sec15 .banner {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  main section.sec#sec15 .banner a {
    display: block;
    transition: all 0.25s ease-in 0s;
  }
  main section.sec#sec15 .banner a:hover {
    opacity: 0.7;
  }
  main article .pagetop {
    color: #111;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    text-align: center;
    text-decoration: underline;
    display: inline-block;
    transition: all 0.2s ease-in;
    cursor: pointer;
  }
  main article .pagetop:hover {
    color: #419364;
  }

  footer {
    padding: 40px 20px;
    box-sizing: border-box;
  }
  footer .inner {
    width: 100%;
  }
  footer .inner p {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
}

/*# sourceMappingURL=style.css.map */
