@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Serif JP", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.4em;
  line-height: 2;
  letter-spacing: 0;
  color: #000;
}

a {
  text-decoration: none;
  outline: none;
}

a img {
  transition: opacity .2s !important;
}

a:hover img {
  opacity: .5;
}

@media screen and (min-width: 901px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  margin: 0 auto;
  padding: 0;
}
.wrapper > section:nth-child(even) {
  background: #f5f5f5;
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
::-moz-selection {
  background: #ae0303;
  color: #fff;
}

::selection {
  background: #ae0303;
  color: #fff;
}

@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * Mixin
 * -------------------------------------------------------------------
 */
/*
 * Module
 * -------------------------------------------------------------------
 */
@media screen and (min-width: 901px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}
.mt-30 {
  margin-top: -30px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: .5rem !important;
}

.mt10 {
  margin-top: 1rem !important;
}

.mt15 {
  margin-top: 1.5rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mt25 {
  margin-top: 2.5rem !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.mt35 {
  margin-top: 3.5rem !important;
}

.mt40 {
  margin-top: 4rem !important;
}

.mt45 {
  margin-top: 4.5rem !important;
}

.mt50 {
  margin-top: 5rem !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: .5rem !important;
}

.mb10 {
  margin-bottom: 1rem !important;
}

.mb15 {
  margin-bottom: 1.5rem !important;
}

.mb20 {
  margin-bottom: 2rem !important;
}

.mb25 {
  margin-bottom: 2.5rem !important;
}

.mb30 {
  margin-bottom: 3rem !important;
}

.mb35 {
  margin-bottom: 3.5rem !important;
}

.mb40 {
  margin-bottom: 4rem !important;
}

.mb45 {
  margin-bottom: 4.5rem !important;
}

.mb50 {
  margin-bottom: 5rem !important;
}

.nav-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
}
.nav-header__container {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1230px;
  height: 8rem;
  margin: 0 auto;
  padding: 0 30px;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}
@media screen and (max-width: 900px) {
  .nav-header__container {
    width: 100%;
    height: 5rem;
    padding: 0 0 0 20px;
  }
}
.nav-header__logo {
  display: flex;
  align-items: center;
  width: 45%;
}
.nav-header__logo-main {
  display: block;
  width: 42.86%;
  height: 100%;
  background: url("../img/logo_black.svg") no-repeat 0 center;
  background-size: 100% auto;
  text-indent: -9999px;
}
@media screen and (max-width: 900px) {
  .nav-header__logo-main {
    width: 110px !important;
    background: url("../img/logo_black.svg") no-repeat 0 center;
    background-size: 100% auto;
  }
}
.nav-header__logo-tagline {
  flex: 1;
  display: block;
  margin-left: 8.7%;
  font-size: 1.2rem;
  line-height: 1.4;
}
.nav-header__logo-tagline::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * .5em);
  content: "";
}
@media screen and (max-width: 980px) {
  .nav-header__logo-tagline {
    display: none;
  }
}
.nav-header__menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 900px) {
  .nav-header__menu {
    display: block;
    position: absolute;
    right: 50px;
  }
}
.nav-header__menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: auto;
  height: 100%;
}
.nav-header__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #333;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0 1.5rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  .nav-header__link {
    display: none;
  }
}
.nav-header__link::after {
  display: block;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #ae0303;
  content: "";
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}
.nav-header__link:hover {
  color: #6c0000;
  background: #f5f5f5;
}
.nav-header__link:hover::after {
  opacity: 1;
  width: 100%;
}
.nav-header__contact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
  background-color: #ae0303;
  color: #fff;
  margin-left: 15px;
  padding: .8rem 1.2rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  .nav-header__contact {
    width: 5rem;
    height: 5rem;
  }
  .nav-header__contact span {
    display: none;
  }
}
.nav-header__contact::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e0e1";
  margin: .2rem .5rem 0 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 900px) {
  .nav-header__contact::before {
    margin: .2rem 0 0 0;
    font-size: 2.5rem;
  }
}
.nav-header__contact:hover {
  background-color: #6c0000;
}
.nav-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 5rem;
  height: 5rem;
  background: #333;
  cursor: pointer;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}
@media screen and (min-width: 901px) {
  .nav-header__toggle {
    display: none;
  }
}
.nav-header__toggle:hover {
  background: #666;
}
.nav-header__toggle-line {
  display: block;
  width: 35%;
  border-bottom: 2px solid #fff;
}
.nav-header__toggle-line:nth-child(2) {
  margin: 10% 0;
}
.nav-header__toggle-text {
  margin-top: 3px;
  font-size: .8rem;
  color: #fff;
}

.nav-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1002;
}
.nav-drawer__container {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  max-width: 350px;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}
.nav-drawer[data-open="true"] .nav-drawer__container {
  animation-name: menu-container-appeared;
}
.nav-drawer[data-open="false"] .nav-drawer__container {
  animation-name: menu-container-leaved;
}
@media screen and (min-width: 901px) {
  .nav-drawer__container {
    display: none;
  }
}
.nav-drawer__menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}
.nav-drawer__menu-item {
  border-bottom: #ddd 1px solid;
}
.nav-drawer__link {
  position: relative;
  display: block;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.01em;
  padding: 1em 1.5em;
  text-decoration: none;
  font-weight: 700;
  color: #333;
}
.nav-drawer__link:hover {
  color: #6c0000;
  background: #f5f5f5;
}
.nav-drawer__menu-button {
  display: flex;
  margin: 0px;
  padding: 0px;
}
.nav-drawer__button-close {
  position: relative;
  background-color: #333;
  margin: 0px 0px 0px auto;
  padding: 0px;
  width: 50px;
  height: 50px;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
  border: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
  outline: none;
  background: #666;
}
.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  margin: auto;
  background: #fff;
}
.nav-drawer__button-close-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav-drawer__button-close-line:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}
.nav-drawer__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.3);
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}
.nav-drawer[data-open="true"] .nav-drawer__overlay {
  animation-name: menu-overlay-appeared;
}
.nav-drawer[data-open="false"] .nav-drawer__overlay {
  animation-name: menu-overlay-leaved;
}

.mainvisual {
  position: relative;
  background-image: url("../img/mainvisual.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.mainvisual__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1230px;
  height: 500px;
  margin: 0.5rem auto 0;
  padding: 0 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .mainvisual__container {
    justify-content: end;
    width: 100%;
    height: 300px;
    margin: 5rem auto 0;
    padding: 0 20px 20px;
  }
}
.mainvisual__text-main {
  color: #fff;
  font-size: 4rem;
  line-height: 2;
  text-align: left;
  text-shadow: 0 0 3px black;
}
.mainvisual__text-main::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .mainvisual__text-main {
    font-size: 2rem;
  }
}
.mainvisual__button-more {
  display: block;
  width: 180px;
  height: 50px;
  margin-top: 3rem;
  padding-top: 1.1rem;
  color: #fff;
  font-size: 2rem;
  text-shadow: 0 0 3px black;
  line-height: 1;
  border: 2px solid #fff;
  border-radius: 40px;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}
.mainvisual__button-more::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .mainvisual__button-more {
    margin-top: 2rem;
  }
}
.mainvisual__button-more:hover {
  color: #ae0303;
  background: #fff;
}

.pagevisual {
  position: relative;
  z-index: 0;
  height: 240px;
  margin: 8rem auto 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.pagevisual.thirdly {
  height: 140px;
}
@media screen and (max-width: 900px) {
  .pagevisual {
    height: 160px;
    margin: 5rem auto 0;
  }
  .pagevisual.thirdly {
    height: 100px;
  }
}
.pagevisual::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.0);
  content: "";
}
.pagevisual.bg-feature {
  background-image: url("../img/pagevisual_feature.jpg");
}
.pagevisual.bg-service {
  background-image: url("../img/pagevisual_service.jpg");
}
.pagevisual.bg-service1 {
  background-image: url("../img/pagevisual_service1.jpg");
}
.pagevisual.bg-service2 {
  background-image: url("../img/pagevisual_service2.jpg");
}
.pagevisual.bg-service3 {
  background-image: url("../img/pagevisual_service3.jpg");
}
.pagevisual.bg-service4 {
  background-image: url("../img/pagevisual_service4.jpg");
}

.pagevisual.bg-case {
  background-image: url("../img/pagevisual_case.jpg");
}



.pagevisual.bg-about {
  background-image: url("../img/pagevisual_about.jpg");
}
.pagevisual.bg-contact {
  background-image: url("../img/pagevisual_contact.jpg");
}
.pagevisual.bg-policy {
  background-image: url("../img/pagevisual_policy.jpg");
}
.pagevisual.bg-news {
  background-image: url("../img/pagevisual_news.jpg");
}
.pagevisual.bg-report {
  background-image: url("../img/pagevisual_report.jpg");
}
.pagevisual__container {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 30px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 900px) {
  .pagevisual__container {
    width: 100%;
    padding: 40px 20px;
  }
}
.pagevisual__title {
  color: #fff;
  font-size: 3.6rem;
  line-height: 1;
  text-shadow: 1px 1px 2px black;
}
.pagevisual__title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .pagevisual__title {
    font-size: 2.4rem;
  }
}
.pagevisual__text {
  margin-top: 1.5rem;
  color: #fff;
  font-size: 1.6rem;
  text-shadow: 1px 1px 2px black;
}
@media screen and (max-width: 900px) {
  .pagevisual__text {
    font-size: 1.2rem;
  }
}

.breadcrumbs {
  background-color: #f5f5f5;
}
.breadcrumbs__container {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 30px;
}
@media screen and (max-width: 900px) {
  .breadcrumbs__container {
    width: 100%;
    padding: 7px 20px;
  }
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #888;
}
.breadcrumbs__list-item {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
}
.breadcrumbs__list-item:not(:first-child) {
  padding-left: 3rem;
}
.breadcrumbs__list-item:not(:first-child)::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cc";
  position: absolute;
  left: .8rem;
  top: .2rem;
  font-size: 1.6rem;
}
.breadcrumbs__link {
  color: #ae0303;
}
.breadcrumbs__link:hover {
  text-decoration: underline;
}

.content {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 30px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .content {
    width: 100%;
    padding: 40px 20px;
  }
}
@media screen and (max-width: 900px) {
  .content {
    display: block;
  }
}
.content img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .content img {
    width: 100%;
  }
}
.content__main {
  width: 70.59%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .content__main {
    width: 100%;
  }
}
.content__pagenav {
  width: 250px;
  margin-right: 4.27%;
}
@media screen and (max-width: 900px) {
  .content__pagenav {
    width: 100%;
    margin-top: 20px;
    margin-right: 0;
  }
}
.content__pagenav-title {
  display: block;
  color: #ae0303;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.3rem;
  background-color: #f2edea;
}
.content__pagenav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.content__pagenav-list-item {
  position: relative;
  border-bottom: 1px solid #ddd;
}
.content__pagenav-list-item:first-child {
  border-top: 1px solid #ae0303;
}
.content__pagenav-link {
  display: block;
  padding: 1.5rem 1.5rem 1.5rem 2.8rem;
  font-size: 1.4rem;
  color: #333;
  background-color: #fff;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}
.content__pagenav-link::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cc";
  position: absolute;
  left: .6rem;
  top: 1.5rem;
  font-size: 2.2rem;
}
.content__pagenav-link:hover {
  background-color: #f5f5f5;
  color: #6c0000;
}
.content__pagenav-list-item.none .content__pagenav-link {
  background-color: #f5f5f5;
}
.content__pagenav-list-item.none .content__pagenav-link::before {
  display: none;
}
.content__pagenav-list-item.none .content__pagenav-link:hover {
  color: #333;
}
.content__pagenav-list-item.none2 .content__pagenav-link {
  padding: 1.5rem;
  background-color: #fff;
}
.content__pagenav-list-item.none2 .content__pagenav-link::before {
  display: none;
}
.content__pagenav-list-item.none2 .content__pagenav-link:hover {
  color: #333;
}

.top-heading__content {
  margin: 0;
  padding: 0;
}
.top-heading__content--left {
  text-align: left;
}
@media screen and (max-width: 900px) {
  .top-heading__content--left {
    text-align: center;
  }
}
.top-heading__text-main {
  font-weight: 400;
  font-family: serif;
  font-size: 4rem;
  color: #ae0303;
  line-height: 1;
  word-wrap: break-word;
}
@media screen and (max-width: 900px) {
  .top-heading__text-main {
    font-size: 3rem;
  }
}


@media screen and (max-width: 900px) {
  .top-heading__text-main::after {
    margin: auto;
    padding-top: 1.6rem;
  }
}
.top-heading__text-main.news {
  font-size: 3rem;
}
@media screen and (max-width: 900px) {
  .top-heading__text-main.news {
    margin-bottom: 2rem;
    font-size: 2.4rem;
  }
}
.top-heading__text-main.news::after {
  display: none;
}
.top-heading__text-sub {
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 1rem;
  line-height: 1;
}
.top-heading__text-sub::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * .5em);
  content: "";
}
.top-heading__text-lead {

  margin-top: 2em;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
}
.top-heading__text-lead::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
.top-heading__inner1 {
  display: flex;
  align-items: center;
}
.top-heading__inner1 .top-heading__text-lead {
  padding: .3rem 0 0 3rem;
}
@media screen and (max-width: 900px) {
  .top-heading__inner1 {
    display: block;
  }
  .top-heading__inner1 .top-heading__text-lead {
    padding: 2rem 0 0 0;
  }
}
.top-heading__inner2 {
  display: block;
}
.top-heading__inner2 .top-heading__text-lead {
  padding: 3rem 0 0 0;
}
@media screen and (max-width: 900px) {
  .top-heading__inner2 .top-heading__text-lead {
    padding: 2rem 0 0 0;
  }
}

.page-heading__lv2 {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  color: #ae0303;
  font-size: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  .page-heading__lv2 {
    margin-bottom: 2rem;
  }
}
.page-heading__lv2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #ddd;
}
.page-heading__lv2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #ae0303;
}
.page-heading__lv2-center {
  position: relative;
  margin-bottom: 3rem;
  color: #ae0303;
  font-size: 2rem;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  .page-heading__lv2-center {
    margin-bottom: 2rem;
    text-align: left;
  }
}
.page-heading__lv3 {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 3px solid #ae0303;
  color: #ae0303;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  .page-heading__lv3 {
    margin-bottom: 2rem;
  }
}

.footer__outer1 {
  background-color: #333;
}
.footer__container1 {
  max-width: 1230px;
  margin: 0 auto;
  padding: 50px 30px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .footer__container1 {
    width: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 900px) {
  .footer__container1 {
    display: block;
  }
}
.footer__inner1 {
  display: flex;
  justify-content: space-between;
  width: 74.36%;
}
@media screen and (max-width: 900px) {
  .footer__inner1 {
    display: block;
    width: 100%;
    border-bottom: 1px solid #5c5c5c;
  }
}
.footer__address {
  width: 25.64%;
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (max-width: 900px) {
  .footer__address {
    width: 100%;
    margin: 3rem 0 1rem 0;
  }
}
.footer__address-logo {
  width: 60%;
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .footer__address-logo {
    width: 160px;
    margin: 0 auto 3rem auto;
  }
}
.footer__address-text {
  line-height: 1.8;
}
.footer__address-text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .footer__address-text {
    font-size: 1.2rem;
    text-align: center;
  }
}
.footer__menu {
  width: calc(100% / 4);
  margin: 0;
  padding: 0 3rem 0 0;
  list-style: none;
}
@media screen and (max-width: 900px) {
  .footer__menu {
    width: 100%;
    padding: 0;
  }
}
.footer__menu-item {
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .footer__menu-item {
    margin-bottom: 0;
  }
  .footer__menu-item span {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 30px;
    height: 50px;
    cursor: pointer;
  }
  .footer__menu-item span::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 14px;
    bottom: 0;
    width: 0;
    height: 20px;
    margin: auto;
    border-left: 2px solid #999;
  }
  .footer__menu-item span.active::before {
    border-left: none;
  }
  .footer__menu-item span::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
    width: 20px;
    height: 0;
    margin: auto;
    border-top: 2px solid #999;
  }
}
.footer__menu-item-link {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0 0 .6rem 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-bottom: 1px solid #5c5c5c;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}
@media screen and (max-width: 900px) {
  .footer__menu-item-link {
    display: block;
    margin: 0;
    padding: 0;
    border-top: 1px solid #5c5c5c;
    border-bottom: none;
    font-size: 1.2rem;
    line-height: 50px;
  }
}
.footer__menu-item-link:hover {
  color: #ddd;
}
.footer__menu-sub {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 901px) {
  .footer__menu-sub {
    display: block !important;
  }
}
@media screen and (max-width: 900px) {
  .footer__menu-sub {
    display: none;
    padding: 1.5rem 2rem;
    border-top: 1px solid #555;
  }
}
.footer__menu-sub-link {
  display: inline-block;
  margin: .5rem 0;
  font-size: 1.2rem;
  color: #fff;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}
.footer__menu-sub-link:hover {
  color: #ddd;
}
.footer__outer2 {
  background-color: #fff;
}
.footer__container2 {
  max-width: 1230px;
  margin: 0 auto;
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
}
@media screen and (max-width: 900px) {
  .footer__container2 {
    width: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 900px) {
  .footer__container2 {
    align-items: end;
    padding: 20px;
  }
}
.footer__inner2 {
  display: block;
}
.footer__utility {
  display: flex;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  list-style: none;
}
@media screen and (max-width: 900px) {
  .footer__utility {
    display: block;
    font-size: 1.2rem;
  }
}
.footer__utility li {
  margin: 0 3rem 0 0;
}
@media screen and (max-width: 900px) {
  .footer__utility li {
    margin: 0 0 .5rem 0;
  }
}
.footer__utility-link {
  color: #ae0303;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}
.footer__utility-link:hover {
  color: #6c0000;
}
.footer__copy {
  margin-top: 1rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 900px) {
  .footer__copy {
    margin-top: 2rem;
    font-size: 1.1rem;
  }
}
.footer__pagetop {
  display: block;
  width: 70px;
}
@media screen and (max-width: 900px) {
  .footer__pagetop {
    width: 40px;
  }
}

.photo-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1002;
  width: 100%;
  height: 100%;
  overflow: hidden;
  animation-duration: var(--photo-modal-duration);
  animation-fill-mode: forwards;
}
.photo-modal[data-open="true"] {
  animation-name: modal-photo-open;
}
.photo-modal[data-open="false"] {
  animation-name: modal-photo-close;
}
.photo-modal__container {
  max-width: 800px;
  max-height: 80%;
  margin: auto;
  overflow: auto;
}
.photo-modal__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.photo-modal .photo-modal__button, .photo-modal .photo-modal__button--close, .photo-modal .photo-modal__button--prev, .photo-modal .photo-modal__button--next, .photo-modal .button-detail__button, .photo-modal .button-detail__button--back, .photo-modal .button-detail__button--prev, .photo-modal .button-detail__button--next {
  position: absolute;
  width: 4rem;
  height: 4rem;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.4s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.photo-modal .photo-modal__button:hover, .photo-modal .photo-modal__button--close:hover, .photo-modal .photo-modal__button--prev:hover, .photo-modal .photo-modal__button--next:hover, .photo-modal .button-detail__button:hover, .photo-modal .button-detail__button--back:hover, .photo-modal .button-detail__button--prev:hover, .photo-modal .button-detail__button--next:hover, .photo-modal .photo-modal__button:focus, .photo-modal .photo-modal__button--close:focus, .photo-modal .photo-modal__button--prev:focus, .photo-modal .photo-modal__button--next:focus, .photo-modal .button-detail__button:focus, .photo-modal .button-detail__button--back:focus, .photo-modal .button-detail__button--prev:focus, .photo-modal .button-detail__button--next:focus {
  color: #f2f2f2;
  outline: none;
}
.photo-modal .photo-modal__button::before, .photo-modal .photo-modal__button--close::before, .photo-modal .photo-modal__button--prev::before, .photo-modal .photo-modal__button--next::before, .photo-modal .button-detail__button::before, .photo-modal .button-detail__button--back::before, .photo-modal .button-detail__button--prev::before, .photo-modal .button-detail__button--next::before {
  font-size: 2.5rem;
}
.photo-modal__button--close {
  top: 0;
  right: 0;
}
.photo-modal__button--close::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cd";
}
.photo-modal__button--prev {
  top: 50%;
  left: 0;
}
.photo-modal__button--prev::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cb";
}
.photo-modal__button--next {
  top: 50%;
  right: 0;
}
.photo-modal__button--next::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cc";
}
.photo-modal__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.85);
}

.button-guide {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
  min-width: 140px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  border: none;
  border-radius: 50px;
  background-color: #ae0303;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.button-guide::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * .5em);
  content: "";
}
.button-guide:hover {
  background-color: #6c0000;
}
@media screen and (max-width: 900px) {
  .button-guide {
    width: 100%;
  }
}

.button-detail {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.button-detail .photo-modal__button, .button-detail .photo-modal__button--close, .button-detail .photo-modal__button--prev, .button-detail .photo-modal__button--next, .button-detail .button-detail__button, .button-detail .button-detail__button--back, .button-detail .button-detail__button--prev, .button-detail .button-detail__button--next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
  margin-bottom: 2rem;
  padding: 1.6rem 2.4rem;
  border-radius: .4rem;
  background: #eee;
  color: #000;
}
.button-detail .photo-modal__button:hover, .button-detail .photo-modal__button--close:hover, .button-detail .photo-modal__button--prev:hover, .button-detail .photo-modal__button--next:hover, .button-detail .button-detail__button:hover, .button-detail .button-detail__button--back:hover, .button-detail .button-detail__button--prev:hover, .button-detail .button-detail__button--next:hover, .button-detail .photo-modal__button:focus, .button-detail .photo-modal__button--close:focus, .button-detail .photo-modal__button--prev:focus, .button-detail .photo-modal__button--next:focus, .button-detail .button-detail__button:focus, .button-detail .button-detail__button--back:focus, .button-detail .button-detail__button--prev:focus, .button-detail .button-detail__button--next:focus {
  background: #ae0303;
  color: #fff;
}
.button-detail__button--back {
  width: 100%;
}
.button-detail__button--back:before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e896";
  margin-right: .5rem;
  font-size: 2.2rem;
}
.button-detail__button--prev {
  width: 100%;
}
@media screen and (min-width: 901px) {
  .button-detail__button--prev {
    width: calc(50% - 10px);
    margin-right: 10px;
  }
}
.button-detail__button--prev:before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cb";
  margin-right: .2rem;
  font-size: 2.2rem;
}
.button-detail__button--next {
  width: 100%;
}
@media screen and (min-width: 901px) {
  .button-detail__button--next {
    width: calc(50% - 10px);
    margin-left: 10px;
  }
}
.button-detail__button--next:after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cc";
  margin-left: .2rem;
  font-size: 2.2rem;
}

.pagination {
  margin-bottom: 5rem;
}
.pagination__list,
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.pagination__list-item,
.pagination .page-numbers > li {
  margin: 0.3rem;
}
.pagination .pagination__link,
.pagination .page-numbers > li > a, .pagination .pagination__link--prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev, .pagination .pagination__link--next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
  -webkit-transition: background-color .2s !important;
  -moz-transition: background-color .2s !important;
  -ms-transition: background-color .2s !important;
  -o-transition: background-color .2s !important;
  transition: background-color .2s !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.8rem;
  border-radius: .4rem;
  line-height: 2.2rem;
  text-align: center;
  cursor: pointer;
}
.pagination__link,
.pagination .page-numbers > li > a {
  background-color: #eee;
  color: #000;
}
.pagination__link:hover, .pagination__link:focus,
.pagination .page-numbers > li > a:hover,
.pagination .page-numbers > li > a:focus {
  background-color: #ae0303;
  color: #fff;
}
.pagination__link--prev, .pagination__link.prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev {
  min-width: 6rem;
  padding: 1.2rem 1.8rem 1.2rem 1rem !important;
  background-color: #eee;
  color: #000;
}
.pagination__link--prev:before, .pagination__link.prev:before,
.pagination .page-numbers > li > a--prev:before,
.pagination .page-numbers > li > a.prev:before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cb";
  display: inline-block;
  margin-right: .2rem;
  font-size: 2.2rem;
}
.pagination__link--prev:hover, .pagination__link--prev:focus, .pagination__link.prev:hover, .pagination__link.prev:focus,
.pagination .page-numbers > li > a--prev:hover,
.pagination .page-numbers > li > a--prev:focus,
.pagination .page-numbers > li > a.prev:hover,
.pagination .page-numbers > li > a.prev:focus {
  background-color: #ae0303;
  color: #fff;
}
.pagination__link--next, .pagination__link.next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
  min-width: 6rem;
  padding: 1.2rem 1rem 1.2rem 1.8rem !important;
  background-color: #eee;
  color: #000;
}
.pagination__link--next:after, .pagination__link.next:after,
.pagination .page-numbers > li > a--next:after,
.pagination .page-numbers > li > a.next:after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cc";
  display: inline-block;
  margin-left: .2rem;
  font-size: 2.2rem;
}
.pagination__link--next:hover, .pagination__link--next:focus, .pagination__link.next:hover, .pagination__link.next:focus,
.pagination .page-numbers > li > a--next:hover,
.pagination .page-numbers > li > a--next:focus,
.pagination .page-numbers > li > a.next:hover,
.pagination .page-numbers > li > a.next:focus {
  background-color: #ae0303;
  color: #fff;
}
.pagination .pagination__text,
.pagination .page-numbers > li > span, .pagination .pagination__text--current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current, .pagination .pagination__text--dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.8rem;
  border-radius: .4rem;
  line-height: 2.2rem;
  text-align: center;
}
.pagination__text,
.pagination .page-numbers > li > span {
  color: #000;
}
.pagination__text--current, .pagination__text.current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current {
  background-color: #ae0303;
  color: #fff;
}
.pagination__text--dots, .pagination__text.dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
  padding: 1.2rem 0 !important;
  color: #000;
}

@media screen and (min-width: 901px) {
  .form__form-group {
    display: flex;
  }
}
.form__form-group-title {
  padding: 1rem;
}
@media screen and (min-width: 901px) {
  .form__form-group-title {
    width: 260px;
    padding: 1.6rem;
  }
}
.form__form-group-content {
  padding: 1rem;
  display: flex;
}
@media screen and (min-width: 901px) {
  .form__form-group-content {
    width: calc(100% - 260px);
    padding: 1.6rem;
  }
}
.form .form__label, .form .form__label--itemname, .form .form__label--required {
  display: inline-block;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}
.form__label--itemname {
  color: #000;
}
.form__label--required {
  margin-left: 0.4rem;
  padding: 0.4em 0.6em;
  border-radius: 3px;
  background: #f5f5f5;
  color: #ddd;
  font-size: 1.4rem;
}
.form__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.form__list-item {
  margin-bottom: 0.6rem;
}
.form .form__input, .form .form__input--text, .form .form__input--text-half, .form .form__input--textarea, .form .form__input--textarea-half, .form .form__input--select, .form .form__input--radio, .form .form__input--check {
  position: relative;
  width: 100%;
  padding: 0.4rem;
}
.form .form__input--text input, .form__input--text .form input, .form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--select select, .form__input--select .form select {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0;
  border: 2px solid #efefef;
  background: #ffffff;
  font-weight: 400;
  font-size: 1.6rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 旧Edge対応 */
  /* IE対応 */
}
.form .form__input--text input::-ms-expand, .form__input--text .form input::-ms-expand, .form .form__input--text-half input::-ms-expand, .form__input--text-half .form input::-ms-expand, .form .form__input--textarea textarea::-ms-expand, .form__input--textarea .form textarea::-ms-expand, .form .form__input--textarea-half textarea::-ms-expand, .form__input--textarea-half .form textarea::-ms-expand, .form .form__input--select select::-ms-expand, .form__input--select .form select::-ms-expand {
  display: none;
}
.form .form__input--text input::placeholder, .form__input--text .form input::placeholder, .form .form__input--text-half input::placeholder, .form__input--text-half .form input::placeholder, .form .form__input--textarea textarea::placeholder, .form__input--textarea .form textarea::placeholder, .form .form__input--textarea-half textarea::placeholder, .form__input--textarea-half .form textarea::placeholder, .form .form__input--select select::placeholder, .form__input--select .form select::placeholder {
  color: #cccccc;
}
.form .form__input--text input::-ms-input-placeholder, .form__input--text .form input::-ms-input-placeholder, .form .form__input--text-half input::-ms-input-placeholder, .form__input--text-half .form input::-ms-input-placeholder, .form .form__input--textarea textarea::-ms-input-placeholder, .form__input--textarea .form textarea::-ms-input-placeholder, .form .form__input--textarea-half textarea::-ms-input-placeholder, .form__input--textarea-half .form textarea::-ms-input-placeholder, .form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder {
  color: #cccccc;
}
.form .form__input--text input:-ms-input-placeholder, .form__input--text .form input:-ms-input-placeholder, .form .form__input--text-half input:-ms-input-placeholder, .form__input--text-half .form input:-ms-input-placeholder, .form .form__input--textarea textarea:-ms-input-placeholder, .form__input--textarea .form textarea:-ms-input-placeholder, .form .form__input--textarea-half textarea:-ms-input-placeholder, .form__input--textarea-half .form textarea:-ms-input-placeholder, .form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder {
  color: #cccccc;
}
.form .form__input--text input, .form__input--text .form input, .form .form__input--text-half input, .form__input--text-half .form input {
  padding: 0.8rem 1.6rem;
  transition: border-color 0.4s;
}
.form .form__input--text input:focus, .form__input--text .form input:focus, .form .form__input--text-half input:focus, .form__input--text-half .form input:focus {
  border: 2px solid #333;
}
.form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea {
  padding: 1.6rem;
  transition: border-color 0.4s;
}
.form .form__input--textarea textarea:focus, .form__input--textarea .form textarea:focus, .form .form__input--textarea-half textarea:focus, .form__input--textarea-half .form textarea:focus {
  border: 2px solid #333;
}
.form__input--text-half {
  max-width: 50%;
}
.form__input--textarea-half {
  max-width: 50%;
}
.form__input--select {
  max-width: 300px;
}
.form__input--select select {
  padding: 0.8rem 2.4rem 0.8rem 1.6rem;
  cursor: pointer;
}
.form__input--select::after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  z-index: 1;
  width: 0;
  height: 0;
  margin: auto 0;
  border-width: 6px 4px 0;
  border-style: solid;
  border-color: #cccccc transparent transparent transparent;
  content: "";
  pointer-events: none;
}
.form__input--radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.form__input--radio .radio-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}
.form__input--radio .radio-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 1px solid #cccccc;
  border-radius: 50%;
}
.form__input--radio .radio-icon:before {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  border-radius: 50%;
  background: #333;
  content: "";
  transition: opacity 0.4s;
}
.form__input--radio .radio-text {
  color: #cccccc;
  transition: color 0.4s;
}
.form__input--radio .radio-input:checked + .radio-icon {
  border-color: #333;
}
.form__input--radio .radio-input:checked + .radio-icon:before {
  opacity: 1;
}
.form__input--radio .radio-input:checked ~ .radio-text {
  color: #333;
}
.form__input--check {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.form__input--check .check-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}
.form__input--check .check-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 2px solid #cccccc;
}
.form__input--check .check-icon:after {
  opacity: 0;
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  content: "";
  transition: opacity 0.4s;
}
.form__input--check .check-text {
  color: #cccccc;
  transition: color 0.4s;
}
.form__input--check .check-input:checked + .check-icon {
  border-color: #333;
}
.form__input--check .check-input:checked + .check-icon:after {
  opacity: 1;
  transform: rotate(-45deg);
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
}
.form__input--check .check-input:checked ~ .check-text {
  color: #333;
}

.table {
  width: 100%;
  border-top: 1px solid #ddd;
  text-align: left;
  line-height: 2;
}
.table::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
.table tr th {
  width: 15rem;
  padding: 1.5rem;
  vertical-align: top;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
  color: #ae0303;
}
.table tr td {
  width: calc(100% - 15rem);
  padding: 1.5rem;
  vertical-align: top;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 900px) {
  .table {
    border-top: none;
  }
  .table tr th {
    display: block;
    width: 100%;
    padding: 1.3rem 1.5rem;
  }
  .table tr td {
    display: block;
    width: 100%;
    padding: 1.5rem 0;
    border-bottom: none;
  }
}

.article-unit__default1 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .article-unit__default1 {
    display: block;
  }
}
.article-unit__default1-content {
  width: 59.72%;
}
@media screen and (max-width: 900px) {
  .article-unit__default1-content {
    width: 100%;
  }
}
.article-unit__default1-thumb {
  width: 37.5%;
}
@media screen and (max-width: 900px) {
  .article-unit__default1-thumb {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.article-unit__default1-guide {
  width: 140px;
}
@media screen and (max-width: 900px) {
  .article-unit__default1-guide {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
}
.article-unit__default2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .article-unit__default2 {
    display: block;
    margin-bottom: 2rem;
  }
}
.article-unit__default2-content {
  width: 59.72%;
}
@media screen and (max-width: 900px) {
  .article-unit__default2-content {
    width: 100%;
  }
}
.article-unit__default2-thumb {
  width: 37.5%;
}
@media screen and (max-width: 900px) {
  .article-unit__default2-thumb {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 901px) {
  .article-unit__default2 p:last-child {
    margin-bottom: 0 !important;
  }
}
.article-unit__topic {
  position: relative;
  padding: 5rem 2rem 2rem 2rem;
  border: 1px solid #ddd;
}
.article-unit__topic-title {
  position: absolute;
  display: block;
  top: -1px;
  left: -1px;
  min-width: 100px;
  padding: 0 .5rem;
  background-color: #ae0303;
  color: #fff;
  line-height: 30px !important;
  text-align: center;
}
.article-unit__topic-item {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .article-unit__topic-item {
    display: block;
  }
}
@media screen and (min-width: 901px) {
  .article-unit__topic-item p {
    margin-bottom: 0 !important;
  }
}
.article-unit__topic-item-content {
  width: 57.35%;
}
@media screen and (max-width: 900px) {
  .article-unit__topic-item-content {
    width: 100%;
  }
}
.article-unit__topic-item-thumb {
  width: 39.71%;
}
@media screen and (max-width: 900px) {
  .article-unit__topic-item-thumb {
    width: 100%;
  }
}
.article-unit__topic-item-title {
  margin-bottom: 1.8rem;
  color: #ae0303;
  font-size: 1.6rem;
  line-height: 1.6;
}
.article-unit__topic-item-title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * .5em);
  content: "";
}
.article-unit__listbox {
  position: relative;
  padding: 2rem;
  background-color: #f5f5f5;
  border: 2px solid #ddd;
  line-height: 2;
}
.article-unit__listbox::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
.article-unit__listbox-list {
  margin: 0;
  padding: 0 0 0 1.4rem;
}
.article-unit__listbox-list li {
  margin-bottom: 1rem;
}
.article-unit__listbox-list li:last-child {
  margin-bottom: 0;
}

.card-unit__col2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .card-unit__col2 {
    display: block;
    margin-bottom: 2rem;
  }
}
.card-unit__col2-item {
  width: 48.61%;
}
@media screen and (max-width: 900px) {
  .card-unit__col2-item {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.card-unit__col3 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .card-unit__col3 {
    display: block;
    margin-bottom: 2rem;
  }
}
.card-unit__col3-item {
  width: 31.39%;
}
@media screen and (max-width: 900px) {
  .card-unit__col3-item {
    width: 100%;
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 901px) {
  .width__small {
    width: 50%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 901px) {
  .width__medium {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 901px) {
  .width__large {
    width: 100%;
    margin: 0 auto;
  }
}

/*
 * トップページ
 * -------------------------------------------------------------------
 */
.top-service {
  background: #f5f5f5;
  background-size: cover !important;
}
@media screen and (max-width: 900px) {
  .top-service {
    background: #f5f5f5 !important;
  }
}
.top-service__container {
  position: relative;
  position: relative;
  max-width: 1230px;
  margin: 0 auto;
  padding: 50px 30px;
  padding: 0 30px;
}
@media screen and (max-width: 900px) {
  .top-service__container {
    width: 100%;
    padding: 20px;
  }
}
.top-service__inner {
  width: 100%;
  background: #f5f5f5;

  padding: 50px 0;
}
@media screen and (max-width: 900px) {
  .top-service__inner {
    width: 100%;
    marign: 0;
    padding: 0;
  }
}
.top-service__heading {
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .top-service__heading {
    margin-bottom: 2rem;
  }
}
.top-service__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .top-service__list {
    width: 100%;
  }
}
.top-service__list-item {
  width: 48.39%;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 900px) {
  .top-service__list-item {
    width: 100%;
  }
}

.top-service-item {
  display: flex;
  align-items: center;
  padding: 10px 25px 10px 0;
  color: #333;
  background: url("../img/top_service_arw.png") no-repeat right center;
  background-size: 20px auto;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}
.top-service-item:hover {
  color: #6c0000;
  background-position: right 10px center;
}
.top-service-item__thumb {
  width: 120px;
  margin-right: 20px;
}
@media screen and (max-width: 900px) {
  .top-service-item__thumb {
    width: 100px;
    margin-right: 10px;
  }
}
.top-service-item__content {
  display: flex;
  width: calc(100% - 140px);
}
@media screen and (max-width: 900px) {
  .top-service-item__content {
    width: calc(100% - 110px);
  }
}
.top-service-item__content-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.top-service-item__content-title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .top-service-item__content-title {
    font-size: 1.6rem;
  }
}
.top-service-item__content-text {
  font-weight: 400;
  font-family: "Playfair Display", serif;
  padding-right: 2rem;
  color: #ae0303;
  font-size: 1.4rem;
  line-height: 1;
}
.top-service-item__content-text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .top-service-item__content-text {
    padding-right: 1rem;
    font-size: 1rem;
  }
}

.top-case__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1230px;
  margin: 0 auto;
  padding: 50px 30px;
}
@media screen and (max-width: 900px) {
  .top-case__container {
    width: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 900px) {
  .top-case__container {
    display: block;
  }
}
.top-case__heading {
  width: 23.08%;
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .top-case__heading {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.top-case__list {
  display: flex;
  justify-content: space-between;
  width: 74.36%;
}
@media screen and (max-width: 900px) {
  .top-case__list {
    display: block;
    width: 100%;
  }
}
.top-case__list-item {
  width: 31.03%;
}
@media screen and (max-width: 900px) {
  .top-case__list-item {
    width: 100%;
  }
}
@media screen and (min-width: 901px) {
  .top-case__guide {
    position: absolute;
    top: 25rem;
    left: 8.54%;
  }
}
@media screen and (max-width: 900px) {
  .top-case__guide {
    position: relative;
    width: 140px;
    margin: 0 auto;
  }
}

.top-case-item {
  display: block;
  color: #333;
}
@media screen and (max-width: 900px) {
  .top-case-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
}
.top-case-item:hover {
  color: #ae0303;
}
.top-case-item__thumb {
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .top-case-item__thumb {
    width: 47.2%;
    margin-bottom: 0;
  }
}
.top-case-item__thumb img {
  display: block;
  border: 1px solid #ddd;
}
.top-case-item__content {
  display: block;
}
@media screen and (max-width: 900px) {
  .top-case-item__content {
    width: 48%;
  }
}
.top-case-item__content-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}
.top-case-item__content-title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .top-case-item__content-title {
    font-size: 1.6rem;
  }
}
.top-case-item__content-text {
  margin-top: 1.5rem;
  color: #333;
  font-size: 1.4rem;
  line-height: 2;
}
.top-case-item__content-text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .top-case-item__content-text {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

.top-report__container {
  position: relative;
  position: relative;
  max-width: 1230px;
  margin: 0 auto;
  padding: 50px 30px;
}
@media screen and (max-width: 900px) {
  .top-report__container {
    width: 100%;
    padding: 20px;
  }
}
.top-report__heading {
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .top-report__heading {
    margin-bottom: 2rem;
  }
}
.top-report__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.top-report__list-item {
  position: relative;
  width: 23.08%;
}
@media screen and (max-width: 900px) {
  .top-report__list-item {
    width: 47.2%;
  }
}
@media screen and (min-width: 901px) {
  .top-report__guide {
    position: absolute;
    top: 7.5rem;
    right: 3rem;
  }
}
@media screen and (max-width: 900px) {
  .top-report__guide {
    position: relative;
    width: 140px;
    margin: 0 auto;
  }
}

.top-report-item {
  display: block;
  color: #333;
}
@media screen and (max-width: 900px) {
  .top-report-item {
    margin-bottom: 2rem;
  }
}
.top-report-item:hover {
  color: #6c0000;
}
.top-report-item__thumb {
  width: 100%;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 900px) {
  .top-report-item__thumb {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.top-report-item__content {
  display: block;
}
@media screen and (max-width: 900px) {
  .top-report-item__content {
    width: 100%;
  }
}
.top-report-item__content-category {
  display: inline-block;
  min-width: 70px;
  margin-bottom: 1.5rem;
  padding: .5rem 1rem;
  background: #fff;
  border: 1px solid #ae0303;
  color: #ae0303;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.top-report-item__content-category::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .top-report-item__content-category {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
}
.top-report-item__content-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}
.top-report-item__content-title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .top-report-item__content-title {
    font-size: 1.4rem;
  }
}
.top-report-item__content-text {
  display: none;
  margin-top: 1.5rem;
  color: #333;
  font-size: 1.4rem;
  line-height: 2;
}
.top-report-item__content-text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .top-report-item__content-text {
    font-size: 1.4rem;
  }
}

.top-report__list-item:first-child {
  width: 100%;
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .top-report__list-item:first-child {
    margin-bottom: 0;
  }
}
.top-report__list-item:first-child .top-report-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 901px) {
  .top-report__list-item:first-child .top-report-item::before {
    display: block;
    padding-top: 34.19%;
    content: "";
  }
}
@media screen and (max-width: 900px) {
  .top-report__list-item:first-child .top-report-item {
    display: block;
    height: auto;
  }
}
.top-report__list-item:first-child .top-report-item__thumb {
  position: absolute;
  width: 68.38%;
  height: 100%;
  top: 0;
  right: 0;
  margin: 0;
}
@media screen and (max-width: 900px) {
  .top-report__list-item:first-child .top-report-item__thumb {
    position: relative;
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 901px) {
  .top-report__list-item:first-child .top-report-item__thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.top-report__list-item:first-child .top-report-item__content {
  width: 40.17%;
  padding: 3rem;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .top-report__list-item:first-child .top-report-item__content {
    width: 100%;
    padding: 1.5rem;
  }
}
.top-report__list-item:first-child .top-report-item__content-category {
  font-size: 1.4rem;
}
@media screen and (max-width: 900px) {
  .top-report__list-item:first-child .top-report-item__content-category {
    font-size: 1.2rem;
  }
}
.top-report__list-item:first-child .top-report-item__content-title {
  font-size: 2rem;
}
@media screen and (max-width: 900px) {
  .top-report__list-item:first-child .top-report-item__content-title {
    font-size: 1.6rem;
  }
}
.top-report__list-item:first-child .top-report-item__content-text {
  display: block;
}
@media screen and (max-width: 900px) {
  .top-report__list-item:first-child .top-report-item__content-text {
    margin-top: 1rem;
  }
}

.top-news__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1230px;
  margin: 0 auto;
  padding: 50px 30px;
}
@media screen and (max-width: 900px) {
  .top-news__container {
    width: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 900px) {
  .top-news__container {
    display: block;
  }
}
.top-news__heading {
  width: 23.08%;
}
@media screen and (max-width: 900px) {
  .top-news__heading {
    width: 100%;
  }
}
.top-news__inner {
  position: relative;
  width: 74.36%;
}
@media screen and (max-width: 900px) {
  .top-news__inner {
    width: 100%;
  }
}
.top-news__list {
  display: block;
  width: 100%;
  margin: 0;
  padding: 3rem 12rem 3rem 3rem;
  background: #f5f5f5;
}
@media screen and (max-width: 900px) {
  .top-news__list {
    width: 100%;
    padding: 1.5rem;
  }
}
.top-news__list-item {
  display: block;
  margin-bottom: 1rem;
  padding: 0;
}
.top-news__list-item:not(:first-child) {
  margin-bottom: 0;
}
.top-news__guide {
  position: absolute;
  bottom: 0;
  right: 0;
}
.top-news__guide .button-guide {
  min-width: 100px;
  padding: 1rem;
  border-radius: 0;
  background: #fff;
  color: #ae0303;
}
.top-news__guide .button-guide:hover {
  color: #6c0000;
}
@media screen and (max-width: 900px) {
  .top-news__guide {
    position: relative;
    text-align: right;
  }
  .top-news__guide .button-guide {
    display: inline-block;
    min-width: auto;
    padding: 1rem 0;
  }
}

.top-news-item {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 901px) {
  .top-news-item {
    flex-wrap: nowrap;
  }
}
.top-news-item__date {
  display: flex;
  margin-right: 3rem;
  line-height: 2;
}
.top-news-item__date::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .top-news-item__date {
    margin: 0 1.6rem 0 0;
  }
}
.top-news-item__title {
  display: flex;
  color: #333;
  line-height: 2;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}
.top-news-item__title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
.top-news-item a:hover {
  color: #6c0000;
}

/*
 * 強みと特徴
 * -------------------------------------------------------------------
 */
.feature-content {
  position: relative;
  margin-bottom: 5rem;
}
@media screen and (max-width: 900px) {
  .feature-content {
    margin-bottom: 4rem;
  }
}
.feature-content p {
  margin-bottom: 3rem;
  line-height: 2;
}
.feature-content p::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .feature-content p {
    margin-bottom: 2rem;
  }
}
.feature-content .arrow-bottom {
  width: 0;
  height: 0;
  margin: 3rem auto;
  border-style: solid;
  border-width: 30px 50px 0 50px;
  border-color: #ae0303 transparent transparent transparent;
}
@media screen and (max-width: 900px) {
  .feature-content .arrow-bottom {
    margin: 2rem auto;
  }
}

/*
 * サービス
 * -------------------------------------------------------------------
 */
.service-content {
  position: relative;
  margin-bottom: 5rem;
}
@media screen and (max-width: 900px) {
  .service-content {
    margin-bottom: 4rem;
  }
}
.service-content p {
  margin-bottom: 3rem;
  line-height: 2;
}
.service-content p::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .service-content p {
    margin-bottom: 2rem;
  }
}
.service-content .service-index__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .service-content .service-index__list {
    width: 100%;
  }
}
.service-content .service-index-item {
  display: block;
  width: 47.92%;
}
@media screen and (max-width: 900px) {
  .service-content .service-index-item {
    width: 100%;
  }
}
.service-content .service-index-item .page-heading__lv2 {
  padding-top: .7rem;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}
.service-content .service-index-item:hover .page-heading__lv2 {
  color: #6c0000;
}
.service-content .article-unit__topic-item-content {
  width: 79.41%;
}
@media screen and (max-width: 900px) {
  .service-content .article-unit__topic-item-content {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .service-content .article-unit__topic-item-content p {
    margin-bottom: 0;
  }
}
.service-content .article-unit__topic-item-thumb {
  width: 17.65%;
}
@media screen and (max-width: 900px) {
  .service-content .article-unit__topic-item-thumb {
    width: 40%;
    margin: 0 auto 2rem auto;
  }
}
.service-content .article-unit__topic-item-thumb img {
  display: block;
  border: 1px solid #ddd;
}

/*
 * 会社情報
 * -------------------------------------------------------------------
 */
.about-content {
  position: relative;
  margin-bottom: 5rem;
}
@media screen and (max-width: 900px) {
  .about-content {
    margin-bottom: 4rem;
  }
}
.about-content p {
  margin-bottom: 3rem;
  line-height: 2;
}
.about-content p::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .about-content p {
    margin-bottom: 2rem;
  }
}
.about-content .about-index__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .about-content .about-index__list {
    width: 100%;
  }
}
.about-content .about-index-item {
  display: block;
  width: 47.92%;
}
@media screen and (max-width: 900px) {
  .about-content .about-index-item {
    width: 100%;
  }
}
.about-content .about-index-item .page-heading__lv2 {
  padding-top: .7rem;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}
.about-content .about-index-item:hover .page-heading__lv2 {
  color: #6c0000;
}

/*
 * レポート
 * -------------------------------------------------------------------
 */
.report-content {
  position: relative;
  margin-bottom: 5rem;
}
@media screen and (max-width: 900px) {
  .report-content {
    margin-bottom: 4rem;
  }
}
.report-content p {
  margin-bottom: 3rem;
  line-height: 2;
}
.report-content p::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .report-content p {
    margin-bottom: 2rem;
  }
}
.report-content .report-index__list {
  width: 100%;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 900px) {
  .report-content .report-index__list {
    width: 100%;
  }
}
.report-content .report-index-item {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;
  color: #333;
}
.report-content .report-index-item:hover {
  color: #6c0000;
}
@media screen and (max-width: 900px) {
  .report-content .report-index-item {
    display: block;
  }
}
.report-content .report-index-item__thumb {
  width: 30.56%;
}
@media screen and (max-width: 900px) {
  .report-content .report-index-item__thumb {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.report-content .report-index-item__content {
  position: relative;
  width: 66.67%;
}
@media screen and (max-width: 900px) {
  .report-content .report-index-item__content {
    width: 100%;
  }
}
.report-content .report-index-item__content-category {
  display: inline-block;
  min-width: 70px;
  margin-bottom: 1.5rem;
  padding: .5rem 1rem;
  background: #fff;
  border: 1px solid #ae0303;
  color: #ae0303;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.report-content .report-index-item__content-category::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .report-content .report-index-item__content-category {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
}
.report-content .report-index-item__content-date {
  position: absolute;
  display: block;
  top: .5rem;
  right: 0;
  font-size: 1.2rem;
  color: #333;
  line-height: 1;
}
.report-content .report-index-item__content-date::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * .5em);
  content: "";
}
.report-content .report-index-item__content-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
}
.report-content .report-index-item__content-title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .report-content .report-index-item__content-title {
    font-size: 1.6rem;
  }
}
.report-content .report-index-item__content-text {
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: #333;
  font-size: 1.4rem;
  line-height: 2;
}
.report-content .report-index-item__content-text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .report-content .report-index-item__content-text {
    font-size: 1.4rem;
  }
}

/*
 * NEWS & TOPICS
 * -------------------------------------------------------------------
 */
.news-content {
  position: relative;
  margin-bottom: 5rem;
}
@media screen and (max-width: 900px) {
  .news-content {
    margin-bottom: 4rem;
  }
}
.news-content p {
  margin-bottom: 3rem;
  line-height: 2;
}
.news-content p::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .news-content p {
    margin-bottom: 2rem;
  }
}
.news-content .news__list {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.news-content .news__list-item {
  display: block;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}
.news-content .news-item {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 901px) {
  .news-content .news-item {
    flex-wrap: nowrap;
  }
}
.news-content .news-item__date {
  display: flex;
  margin-right: 3rem;
  line-height: 3;
}
.news-content .news-item__date::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .news-content .news-item__date {
    margin: 0 1.6rem 0 0;
  }
}
.news-content .news-item__title {
  font-weight: bold;

  display: flex;
  color: #333;
  line-height: 3;
}
.news-content .news-item__title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
.news-content .news-item a:hover {
  color: #6c0000;
}

/*
 * お問い合わせ
 * -------------------------------------------------------------------
 */
.contact-content {
  margin-bottom: 5rem;
}
@media screen and (max-width: 900px) {
  .contact-content {
    margin-bottom: 4rem;
  }
}
.contact-content p {
  margin-bottom: 3rem;
  line-height: 2;
}
.contact-content p::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .contact-content p {
    margin-bottom: 2rem;
  }
}
.contact-content a {
  color: #ae0303;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}
.contact-content a:hover {
  color: #6c0000;
}

.contact-guide {
  background-color: #ae0303 !important;
}
.contact-guide__container {
  position: relative;
  max-width: 1230px;
  margin: 0 auto;
  padding: 40px 30px;
}
@media screen and (max-width: 900px) {
  .contact-guide__container {
    width: 100%;
    padding: 20px;
  }
}
.contact-guide__text {
  margin-bottom: 2rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .contact-guide__text {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
}
.contact-guide__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 330px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .contact-guide__list {
    display: block;
    width: 100%;
  }
}
.contact-guide__list-item {
  text-align: center;
}
.contact-guide__tel {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.contact-guide__tel::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * .5em);
  content: "";
}
.contact-guide__tel a {
  color: #fff;
}
.contact-guide__tel-text {
  margin-top: 1rem;
  color: #fff;
  line-height: 1;
}
.contact-guide__tel-text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * .5em);
  content: "";
}
@media screen and (max-width: 900px) {
  .contact-guide__tel-text {
    margin-bottom: 2rem;
  }
}
.contact-guide__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
  width: 100%;
  padding: 1.6rem 2rem;
  background-color: #fff;
  color: #ae0303;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .contact-guide__button {
    padding: 1.4rem 2rem;
    font-size: 1.6rem;
  }
}
.contact-guide__button::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e0e1";
  margin: .3rem .5rem 0 0;
  font-size: 2.4rem;
}
@media screen and (max-width: 900px) {
  .contact-guide__button::before {
    font-size: 2rem;
  }
}
.contact-guide__button:hover {
  color: #fff;
  background-color: #6c0000;
}

.contact-form__container {
  position: relative;
  max-width: 1230px;
  margin: 0 auto;
  padding: 50px 30px;
}
@media screen and (max-width: 900px) {
  .contact-form__container {
    width: 100%;
    padding: 20px;
  }
}
.contact-form__heading {
  margin-bottom: 3.2rem;
}
.contact-form__content {
  margin: 0 auto;
  padding: 3.2rem 1rem;
  background: #fff;
  border: 4px solid #efefef;
}
@media (min-width: 992px) {
  .contact-form__content {
    padding: 6.4rem 4rem;
  }
}
.contact-form__form {
  max-width: 850px;
  margin: 0 auto 1.6rem auto;
}
@media (min-width: 992px) {
  .contact-form__form {
    margin: 0 auto 6.4rem auto;
  }
}
.contact-form__button {
  text-align: center;
}
.contact-form__button-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -ms-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
  background: #333;
  padding: 1em 3em;
  color: #fff;
  border-radius: 50px;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .contact-form__button-submit {
    max-width: 240px;
  }
}
.contact-form__button-submit:hover, .contact-form__button-submit:focus {
  background: #262626;
}

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


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

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