@charset "UTF-8";
/************************
リセット
************************/
*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  /* 10px */
}

body {
  width: 100%;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  word-break: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 992px) {
  body {
    letter-spacing: 0.1em;
  }
}
/*----------------------------------------
	HTML5
----------------------------------------*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*----------------------------------------
	Text
----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

pre {
  margin: 1.5em 25px;
  padding: 1em;
  overflow: scroll;
  line-height: 1.9;
}

blockquote {
  margin: 1.5em 1px;
  border: 5px solid #9f998f;
  color: #77471c;
  background-color: #f5f5f5;
  background-repeat: repeat-x;
  background-position: left bottom;
}

blockquote[title]::before {
  padding: 0.2em 10px 0.4em 10px;
  content: attr(title);
  display: block;
  color: #fff;
  background-color: #9f998f;
  font-weight: bold;
}

blockquote[cite]::after {
  margin: 0.5em 10px;
  content: attr(cite);
  display: block;
  text-align: right;
  font-size: 85%;
}

blockquote * {
  color: #333 !important;
}

em {
  color: #000;
}

pre {
  background: #eee;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

pre em {
  font-weight: bold;
  background-image: none;
}

q {
  text-decoration: underline;
}

b,
strong {
  font-weight: bold;
}

cite {
  display: block;
  text-align: right;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

kbd {
  background-color: #f5f5f5;
  text-transform: uppercase;
  padding: 0 0.4em;
  border: 1px solid #6a8eaa;
}

del {
  text-decoration: line-through;
}

ins {
  border-top: 10px solid #3cadd6;
  border-bottom: 10px solid #3cadd6;
  border: 7px solid #3cadd6;
  margin: 2em 1px;
  padding: 1px 0;
  display: block;
  text-decoration: none;
}

mark {
  background: #fff9c0;
  text-decoration: none;
}

ins * {
  color: #666 !important;
  background: #fff9c0;
  text-decoration: none;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

address {
  margin: 0 0 1.5em;
}

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

/*----------------------------------------
	List
----------------------------------------*/
ul,
ol,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: normal;
}

/*----------------------------------------
	Image
----------------------------------------*/
figure {
  position: relative;
  margin: 0;
  line-height: 1;
}

figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 12px;
  color: #fff;
  padding: 6px;
  background-color: rgba(0, 0, 0, 0.4);
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  border: none;
  vertical-align: baseline;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

/*----------------------------------------
	Anchor
----------------------------------------*/
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover,
a:focus,
a:active {
  outline: none;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
/*----------------------------------------
	P
----------------------------------------*/
p {
  margin: 0;
  padding: 0;
}

/*----------------------------------------
	Table
----------------------------------------*/
table {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
}

/*----------------------------------------
	Form
----------------------------------------*/
fieldset,
legend {
  border: none;
}

input[type=text],
textarea {
  padding: 0.2em;
  border: 1px solid #d1d1d1;
  background-color: #fff;
}

input {
  line-height: 1.2;
}

select,
input,
textarea,
button {
  vertical-align: middle;
  position: relative;
  margin-right: 3px;
  top: 0;
}

input[type=checkbox],
input[type=radio] {
  border: none;
  top: -1px;
  margin-right: 6px;
}

input[type=text]:focus,
textarea:focus {
  border: 0;
  background: none;
}

input.button {
  padding: 0;
  border: none;
  background-image: none;
  vertical-align: top;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  opacity: 0.8;
}

/************************
共通　ヘッダー
************************/
.site-header {
  padding: 0;
  width: 100%;
  background-color: #e6e6e6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

@media screen and (max-width: 767px) {
  .header__logo {
    display: flex;
    align-items: center;
    padding: 0 0 0 20px;
    height: 60px;
  }
  .header__logo img {
    display: block;
    width: 186px;
    height: auto;
  }
  .header__gnavi {
    display: none;
    background-color: rgba(65, 47, 74, 0.9);
    background-color: rgba(84, 68, 92, 0.9);
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
  }
  .header__gnavi nav {
    width: 100vw;
    padding: 20px;
  }
  .header__gnavi ul.menu {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 270px;
  }
  .header__gnavi ul.menu li {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 0;
  }
  .header__gnavi ul.menu li:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  .header__gnavi ul.menu a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.15em;
  }
  .header__gnavi ul.links {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 270px;
    border-top: 1px solid #fff;
  }
  .header__gnavi ul.links li {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 0;
  }
  .header__gnavi ul.links li:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  .header__gnavi ul.links a {
    display: block;
    color: #fff;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.15em;
  }
}
@media screen and (min-width: 768px) {
  .header__logo {
    padding: 0 0 0 50px;
    height: 70px;
  }
  .header__logo a {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .header__logo img {
    display: block;
    width: 200px;
    height: auto;
  }
  .header__gnavi {
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
    padding: 0;
    height: 70px;
    background-color: #e6e6e6;
    position: relative;
  }
  .header__gnavi nav {
    padding: 0;
    position: relative;
  }
  .header__gnavi ul.menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
  }
  .header__gnavi ul.menu li {
    margin: 0;
    padding: 0;
    width: 140px;
    border-left: 1px solid #e6e6e6;
  }
  .header__gnavi ul.menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    padding: 0 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    text-decoration: none;
    background-color: #67596d;
  }
  .header__gnavi ul.menu a:hover {
    background-color: #412f4a;
    opacity: 1;
  }
  .header__gnavi ul.menu li.current a {
    background-color: #412f4a;
  }
  .header__gnavi ul.links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 50%;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
  .header__gnavi ul.links li {
    padding: 0 0px;
  }
  .header__gnavi ul.links a {
    display: block;
    width: 6em;
    font-weight: 700;
  }
}
@media screen and (min-width: 1250px) {
  .header__logo {
    padding: 0 0 0 50px;
    height: 70px;
  }
  .header__logo img {
    display: block;
    width: 260px;
    height: auto;
  }
  .header__gnavi ul.menu li {
    width: 250px;
  }
  .header__gnavi ul.menu a {
    width: 100%;
    height: 70px;
    padding: 0 10px;
    font-size: 16px;
  }
}
/************************
共通　ハンバーガーメニュー（スマホ）
************************/
#hamburger_button {
  display: block;
  margin: 0;
  padding: 0;
  width: 74px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  cursor: pointer;
}

#hamburger_button span {
  display: block;
  width: 36px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#hamburger_button span::before, #hamburger_button span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: 0.6s;
}

#hamburger_button span::before {
  top: -8px;
}

#hamburger_button span::after {
  top: 8px;
}

.menu-open #hamburger_button span {
  background-color: transparent;
}

.menu-open #hamburger_button span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open #hamburger_button span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  #hamburger_button {
    display: none;
  }
}
/************************
共通　フッター
************************/
.site-footer {
  padding: 40px 25px 30px;
  position: relative;
}

.site-footer__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1077px;
}

.footerlogo {
  margin-bottom: 30px;
}

.footerlogo img {
  display: block;
  margin: 0 auto;
  width: 134px;
}

.footerNavi {
  margin-bottom: 15px;
}

.footerNavi li {
  margin: 0 0 14px;
  padding: 0;
}

.footerNavi a {
  display: block;
  font-size: 12px;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .footerNavi {
    margin-bottom: 4px;
  }
  .footerNavi li:not(:last-child) {
    position: relative;
  }
  .footerNavi li:not(:last-child)::after {
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    background-color: #333;
    position: absolute;
    left: 100%;
    top: 0;
  }
  .footerNavi a {
    padding: 0 20px;
  }
}
.copyright {
  margin: 0;
  font-size: 10px;
}

.footerFixedSp {
  display: flex;
  margin: 0;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99;
  transition: all 0.3s ease;
  transform: translateY(100%);
}

.footerFixedSp.view {
  transform: translateY(0);
}

.footerFixedSp li {
  margin: 0;
  width: 100%;
}

.footerFixedSp li:not(:last-child) {
  border-right: 1px solid #7b6f82;
}

.footerFixedSp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.46;
  text-decoration: none;
  background-color: rgba(65, 47, 74, 0.8);
}

.footerFixedSp li.current a {
  background-color: #412f4a;
}

/************************
共通　ページトップ
************************/
#pagetop {
  width: 30px;
  position: fixed;
  right: 0;
  bottom: 40px;
  z-index: 100;
}

#pagetop a {
  display: block;
  width: 30px;
  height: 30px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.8s ease;
  position: relative;
}

#pagetop a::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

#pagetop a.view {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  #pagetop {
    right: 30px;
  }
}
/************************
wrapper
************************/
.wrapper {
  margin: 0;
  padding: 60px 0 70px;
  width: 100%;
  background-image: url(../images/common/bg.jpg);
  background-repeat: repeat;
  background-position: 50% 0;
  background-size: auto;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 768px) {
  .wrapper {
    padding: 70px 0 0;
  }
}
/************************
固定ページ
************************/
.page-header {
  padding: 50px;
  background-color: #666;
}

.page-content__inner {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: 1312px;
}

@media screen and (min-width: 768px) {
  .page-content {
    padding: 0;
  }
}
.mainVisual {
  position: relative;
}

.mv__title {
  position: absolute;
  width: 98%;
  font-size: 6.8vw;
  text-align: center;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  /* text-shadow: 0px 0px 1px #fff, 0 0 5px #fff, 0 0 6px #fff, 0 0 7px #fff, 0 0 8px #fff, 0 0 9px #fff, 0 0 10px #fff; */
}

.mv__title span {
  font-size: 5.8vw;
}

@media screen and (min-width: 768px) {
  .mv__title {
    font-size: 46px;
    line-height: 1;
    top: 12%;
  }
  .mv__title span {
    font-size: 36px;
  }
}
@media screen and (min-width: 1440px) {
  .mv__title {
    font-size: 70px;
    line-height: 1.2;
    top: 14%;
  }
  .mv__title span {
    font-size: 50px;
  }
}
/*

report

*/
.report__wrap {
  padding: 40px 0;
}

.report__wrap__inner {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1100px;
}

.report__blockTitle {
  margin: 0 0 20px;
  color: #412f4a;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  padding-top: 40px;
  border-top: solid 1px #412f4a;
}
.report__blockTitle a {
  text-decoration: underline;
}
.report__blockTitle span {
  display: inline-block;
}
@media screen and (max-width: 1050px) {
  .report__blockTitle br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .report__blockTitle br {
    display: block;
  }
}

.report__item {
  margin: 40px 0;
}

.report_title {
  display: inline-block;
  min-width: 220px;
  text-align: center;
  font-size: 17px;
  color: #fff;
  padding: 4px 10px;
  background-color: #412f4a;
}
@media screen and (max-width: 767px) {
  .report_title {
    display: block;
    min-width: none;
  }
}

.report__link {
  margin-top: 30px;
}

.report__item .head {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 14px;
  padding: 0 0 14px;
  position: relative;
}

.report__item .head::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background-color: #584b75;
  position: absolute;
  left: 0;
  bottom: 0;
}

.report__name {
  font-size: 20px;
}

.report__link__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.report__link__item {
  width: calc(50% - 16px);
}

.report__link__item:nth-child(n+4) {
  margin-top: 20px;
}

.report__link__item a {
  display: block;
  text-align: left;
  font-size: 15px;
  text-decoration: underline;
}

.column__link__wrap {
  display: flex;
  flex-direction: column;
}

.column__link__item {
  margin-top: 20px;
}

.column__link__item a {
  display: block;
  text-align: left;
  font-size: 15px;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .report__wrap {
    margin-bottom: -12px;
    padding: 0;
  }
  .report__wrap__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .report__wrap__inner > .row {
    margin: 0 -25px;
  }
  .report__wrap__inner > .row > div {
    padding: 0 25px;
  }
  .report__blockTitle {
    margin: 0;
    font-size: 22px;
  }
  .report__item {
    margin: 80px 0;
  }
  .report__item:nth-child(n+2) {
    margin: 120px 0 80px;
  }
  .report_title {
    min-width: 260px;
    font-size: 22px;
    padding: 8px 20px;
  }
  .report__item .head {
    margin-top: 40px;
    margin-bottom: 22px;
    padding: 0 0 16px;
  }
  .report__item .head::after {
    width: 70px;
  }
  .report__name {
    font-size: 22px;
  }
  .report__link {
    margin-top: 40px;
  }
  .report__link__wrap {
    gap: 30px;
  }
  .report__link__item {
    width: calc(33.3333333333% - 60px);
  }
  .report__link__item:nth-child(n+4) {
    margin-top: auto;
  }
  .report__link__item:nth-child(n+5) {
    margin-top: 40px;
  }
  .report__link__item a {
    display: block;
    font-size: 18px;
  }
  .column__link__wrap {
    display: block;
  }
  .column__link__item {
    margin-top: 20px;
  }
  .column__link__item a {
    font-size: 18px;
  }
}
.marketNewList {
  margin: 30px auto 80px;
}
.marketNewList li {
  display: flex;
  column-gap: 5%;
}
@media screen and (max-width: 767px) {
  .marketNewList li {
    flex-direction: column;
    row-gap: 20px;
  }
}
.marketNewList li .imgArea {
  width: 32.7102803738%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .marketNewList li .imgArea {
    width: 100%;
  }
}
.marketNewList li .imgArea .day {
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 5px;
  left: 5px;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff;
}
.marketNewList li .imgArea .day.wh {
  color: #fff;
  text-shadow: 0 0 5px #000, 0 0 5px #000;
}
.marketNewList li .imgArea figure {
  position: relative;
}
@media screen and (max-width: 767px) {
  .marketNewList li .imgArea figure {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}
.marketNewList li .imgArea figure figcaption {
  font-size: 11px;
  color: #fff;
  text-shadow: 0 0 6px #000, 0 0 6px #000, 0 0 6px #000;
  background: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.marketNewList li .imgArea figure figcaption.bk {
  color: #000;
  text-shadow: 0 0 6px #fff, 0 0 6px #fff, 0 0 6px #fff;
}
.marketNewList li .txtArea {
  flex: 1;
}
.marketNewList li .txtArea p.date {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .marketNewList li .txtArea p.date {
    font-size: 13px;
  }
}
.marketNewList li .txtArea p.date::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #412F4A;
}
.marketNewList li .txtArea p.ttl {
  color: #412F4A;
  font-size: 24px;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .marketNewList li .txtArea p.ttl {
    font-size: 18px;
  }
}
.marketNewList li .txtArea p.txt {
  font-size: 16px;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  .marketNewList li .txtArea p.txt {
    font-size: 13px;
  }
}
.marketNewList li .txtArea p.link {
  margin-top: 30px;
}
.marketNewList li .txtArea p.link a {
  display: block;
  position: relative;
  border: solid 1px #412F4A;
  border-radius: 10px;
  padding: 15px 60px 15px 15px;
  font-size: 18px;
  transition: opacity 0.4s ease 0s, background 0.4s ease 0s;
}
@media screen and (max-width: 767px) {
  .marketNewList li .txtArea p.link a {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .marketNewList li .txtArea p.link a:hover {
    background: rgba(65, 47, 74, 0.3);
  }
}
.marketNewList li .txtArea p.link a::before {
  content: "";
  width: 20px;
  height: 22px;
  background: url(../images/toppage/icon_pdf.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -11px;
}
.marketNewList li .txtArea p.link.blank a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/toppage/icon_blank.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -10px;
}

.report__item.more .reportLinkList li:nth-child(n+4) {
  display: none;
}
.report__item .note {
  text-align: right;
  margin-top: 20px;
  font-size: 12px;
}
.report__item .moreLink {
  text-align: right;
  margin-top: 15px;
}
.report__item .moreLink a {
  display: inline-block;
  padding-right: 38px;
  font-size: 14px;
  position: relative;
  opacity: 1;
  transition: opacity 0.4s ease 0s;
}
@media screen and (min-width: 992px) {
  .report__item .moreLink a:hover {
    opacity: 0.7;
  }
}
.report__item .moreLink a::before {
  content: "";
  width: 28px;
  height: 28px;
  background: #412F4A;
  border: solid 1px #412F4A;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -14px;
}
.report__item .moreLink a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 11px;
  margin-top: -3px;
}

.reportLinkList {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 30px;
}
.reportLinkList.market li a .imgArea {
  width: 175px;
  margin-left: 80px;
  position: relative;
  aspect-ratio: 700/480;
}
@media screen and (max-width: 767px) {
  .reportLinkList.market li a .imgArea {
    margin-left: 0;
    margin-top: 30px;
  }
}
.reportLinkList.market li a .imgArea .date {
  position: absolute;
  font-size: 16px;
  font-weight: bold;
  top: 5px;
  left: 5px;
  z-index: 5;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff;
}
.reportLinkList.market li a .imgArea .date.wh {
  color: #fff;
  text-shadow: 0 0 5px #000, 0 0 5px #000;
}
.reportLinkList.market li a .imgArea figure {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .reportLinkList.market li a .imgArea figure {
    margin-top: 0;
  }
}
.reportLinkList.market li a .imgArea figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reportLinkList li a {
  display: flex;
  flex-wrap: wrap;
  border: solid 1px #412F4A;
  border-radius: 10px;
  padding: 20px 60px 20px 20px;
  position: relative;
  column-gap: 22px;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .reportLinkList li a {
    padding: 15px;
    justify-content: center;
    row-gap: 20px;
  }
}
.reportLinkList li a.pdf::before {
  content: "";
  width: 20px;
  height: 22px;
  background: url(../images/toppage/icon_pdf.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -11px;
}
@media screen and (max-width: 767px) {
  .reportLinkList li a.pdf::before {
    top: 10px;
    right: 10px;
    margin-top: 0;
  }
}
.reportLinkList li a.blank::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/toppage/icon_blank.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -10px;
}
@media screen and (max-width: 767px) {
  .reportLinkList li a.blank::before {
    top: 10px;
    right: 10px;
    margin-top: 0;
  }
}
.reportLinkList li a figure {
  width: 175px;
}
@media screen and (max-width: 767px) {
  .reportLinkList li a figure {
    margin-top: 30px;
  }
}
.reportLinkList li a figure figcaption {
  font-size: 10px;
}
.reportLinkList li a span.vol {
  width: 90px;
  background: #412F4A;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 10px 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .reportLinkList li a span.vol {
    font-size: 16px;
  }
}
.reportLinkList li a span.date {
  font-size: 16px;
  width: 110px;
}
@media screen and (max-width: 767px) {
  .reportLinkList li a span.date {
    font-size: 13px;
    white-space: nowrap;
    width: auto;
    position: absolute;
    top: 10px;
    right: 40px;
  }
}
.reportLinkList li a span.ttl {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #412F4A;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .reportLinkList li a span.ttl {
    font-size: 16px;
  }
}
.reportLinkList li a span.txt {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .reportLinkList li a span.txt {
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) {
  .reportLinkList li a span.txtArea {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .reportLinkList li a span.txtArea {
    width: 100%;
  }
}

/*

SHOP

*/
.shop__wrap {
  padding: 40px 0;
}

.shop__wrap__inner {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1310px;
}

.shop__blockTitle {
  margin: 0 0 20px;
  color: #412f4a;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.shop__item {
  margin-bottom: 40px;
}

.shop__item .head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 14px;
  padding: 0 0 14px;
  position: relative;
}

.shop__item .head::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #584b75;
  position: absolute;
  left: 0;
  bottom: 0;
}

.shop__meta {
  display: flex;
}

.shop__meta .cate {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  width: 48px;
  height: 24px;
  color: #fff;
  font-size: 12px;
  background-color: #990000;
}

.shop__meta .kids {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  width: 98px;
  height: 24px;
  color: #990000;
  font-size: 12px;
  background-color: #fff;
  border: 1px solid #990000;
}

.shop__info {
  font-size: 13px;
  letter-spacing: -0.07em;
}

.shop__link {
  margin-top: 20px;
}

.shop__link .row {
  margin: 0 -5px;
}

.shop__link .row > div {
  padding: 0 5px;
}

.shop__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 38px;
  color: #fff;
  font-size: 14px;
}

.shop__link .btn-shop-detail {
  background-color: #412f4a;
}

.shop__link .btn-shop-contact {
  background-color: #67596d;
}

.shop__link .btn-shop-site {
  background-color: #8D7C68;
}

.btn_site {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .shop__wrap {
    margin-bottom: -12px;
    padding: 0;
  }
  .shop__wrap__inner {
    padding-top: 60px;
  }
  .shop__wrap__inner > .row {
    margin: 0 -25px;
  }
  .shop__wrap__inner > .row > div {
    padding: 0 25px;
  }
  .shop__blockTitle {
    margin: 0;
    font-size: 32px;
  }
  .shop__item {
    margin: 40px 0;
  }
  .shop__item .head {
    margin-bottom: 22px;
    padding: 0 0 16px;
  }
  .shop__item .head::after {
    width: 70px;
  }
  .shop__name {
    font-size: 22px;
  }
  .shop__info {
    font-size: 13px;
    letter-spacing: 0.05em;
  }
  .shop__link a {
    font-size: 12px;
  }
}
@media screen and (min-width: 992px) {
  .shop__wrap__inner > .row > div {
    padding: 0 1%;
  }
}
@media screen and (min-width: 1040px) {
  .shop__link a {
    font-size: 10px;
  }
}
/*

ICON

*/
.icon {
  display: block;
  margin: 0 10px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: contain;
}

@media only screen and (max-width: 1250px) {
  .icon {
    margin: 0 4px;
  }
}
.icon_01 {
  width: 14px;
  height: 14px;
  background-image: url(../images/common/icon_01.svg);
}

.icon_02 {
  width: 18px;
  height: 22px;
  background-image: url(../images/common/icon_02.svg);
}

.icon_03 {
  width: 14px;
  height: 18px;
  background-image: url(../images/common/icon_03.svg);
}

/* views */
.spView,
.spViewInb,
.tbView {
  display: none !important;
}

@media only screen and (max-width: 991px) {
  .tbView {
    display: block !important;
  }
}
@media only screen and (max-width: 768px) {
  .spView {
    display: block !important;
  }
  .spViewInb {
    display: inline-block !important;
  }
  .pcView {
    display: none !important;
  }
}
/*# sourceMappingURL=style.css.map */