@charset "UTF-8";
/* 変数 */
/* 基礎のスタイル */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700|Noto+Serif+JP:400,500,600,700|Roboto:400,400i,500,500i,700,700i&display=swap&subset=japanese");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  margin-top: unset !important;
  font-size: 62.5%;
}
body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 10px;
  line-height: 1.5;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 2vw;
  }
}
a {
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
* a {
  text-decoration: none !important;
  color: unset;
}
h1, h2, h3, h4, h5, h6, p {
  line-height: 1;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}
:focus {
  outline: 0;
}
input[type=text], input[type=email], input[type=tel], select {
  width: 100%;
  padding: 1.3em 1.5em;
  border: 1px solid #d3d3de;
  color: #1D1D1D;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  input[type=text], input[type=email], input[type=tel], select {
    padding: 1em 1.3em;
    font-size: 3.2vw;
  }
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, select:focus {
  border-color: #CCC;
}
input[type=text]::placeholder, input[type=text]:-ms-input-placeholder, input[type=text]::-ms-input-placeholder, input[type=email]::placeholder, input[type=email]:-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::placeholder, input[type=tel]:-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, select::placeholder, select:-ms-input-placeholder, select::-ms-input-placeholder {
  color: #8B8B8B;
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, select::placeholder {
  opacity: 1;
}
textarea {
  width: 100%;
  padding: 1em 1.5em;
  border: 1px solid #d3d3de;
  color: #1D1D1D;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  textarea {
    padding: 1em 0.7em;
    font-size: 3.73vw;
  }
}
textarea:focus {
  border-color: #1D1D1D;
}
.container {
  position: relative;
}
.effect {
  overflow: hidden;
}
.effect img {
  -webkit-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}
.background-zoom:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.pc, .tb, .sp {
  display: none;
}
@media screen and (min-width: 1201px) {
  .pc {
    display: block;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .tb {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}
.checkbox {
  width: 83%;
}
.checkbox-label {
  display: block;
  position: relative;
  padding-left: 1.5em;
  line-height: 1;
  cursor: pointer;
  font-size: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-label input:checked ~ .checkbox-mark {
  background-color: #FFFFFF;
}
.checkbox-label input:checked ~ .checkbox-mark:after {
  display: block;
}
.checkbox-label .checkbox-mark {
  position: absolute;
  top: 50%;
  left: 0;
  height: 1em;
  width: 1em;
  background-color: white;
  border: 0.1em solid #1D1D1D;
  border-radius: 0.1em;
  transform: translateY(-50%);
}
.checkbox-label .checkbox-mark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0.15em;
  top: 0.4em;
  width: 0.15em;
  height: 0.4em;
  border: solid #191819;
  border-width: 0 0.2em 0.2em 0;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  -ms-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
}
.checkbox-label:hover input ~ .checkbox-mark {
  background-color: white;
}
.radio-label {
  display: block;
  position: relative;
  padding-left: 1.5em;
  line-height: 1;
  cursor: pointer;
  font-size: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-label input:checked ~ .radio-mark {
  background-color: #FFFFFF;
}
.radio-label input:checked ~ .radio-mark:after {
  display: block;
}
.radio-label .radio-mark {
  font-size: inherit;
  position: absolute;
  top: 50%;
  left: 0;
  height: 1em;
  width: 1em;
  background-color: #FFFFFF;
  border: 1px solid #1D1D1D;
  border-radius: 50%;
  transform: translateY(-50%);
}
.radio-label .radio-mark:after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  background-color: #1D1D1D;
  transform: translate(-50%, -50%);
}
.radio-label:hover input ~ .radio-mark {
  background-color: #f9f9f9;
}
/* 共通のスタイル */
.page-wrapper {
  max-width: 100%;
  overflow: hidden;
}
.page-wrapper.gray-background {
  background-color: #FAFAFA;
}
.background-cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.slick-dots {
  text-align: center;
  margin-top: 30px;
}
.slick-dots li button::before {
  font-size: 1rem;
  background-color: #F6F6F6;
}
.slick-dots li.slick-active button::before {
  background-color: #CCCCCC;
}
.post-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  background-color: white;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.post-link:hover {
  opacity: 0.3;
}
.section .sub-title.sub-title--medium {
  color: #231815;
  font: 18px/1.5 "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 1em;
}
.section .sub-title.sub-title--small {
  color: #231815;
  font: 17px/2 "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.section .sub-title.sub-title--tiny {
  color: #231815;
  font: 15px/1.7 "Noto Sans JP", sans-serif;
  font-weight: 600;
  margin-top: 2.5em;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .section .sub-title.sub-title--medium {
    color: #E5610E;
    font: 4.3vw/1.5 "Noto Sans JP", sans-serif;
    font-weight: 700;
    margin-bottom: 1em;
  }
  .section .sub-title.sub-title--small {
    color: #E5610E;
    font: 5vw/1.6 "Noto Sans JP", sans-serif;
    font-weight: 700;
  }
  .section .sub-title.sub-title--tiny {
    color: #E5610E;
    font: 4vw/1.7 "Noto Sans JP", sans-serif;
    font-weight: 600;
    margin-top: 1em;
    margin-bottom: 1em;
  }
}
.section .column_img {
  color: black;
  font: 13px/2.2 "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .section .content-text {
    font: 3.2vw/1.9 "Noto Sans JP", sans-serif;
  }
}
.section .content-text--small {
  color: black;
  font: 11px/2 "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .section .content-text--small {
    font: 3.2vw/2 "Noto Sans JP", sans-serif;
  }
}
.section.section--mainview {
  height: 55vw;
  min-height: 600px;
  background: url(../img/mainview.jpg) no-repeat;
  background-size: cover;
  position: relative;
  background-position: bottom;
  margin-top: 25%;
}
.section.section--mainview .logo {
  position: absolute;
  left: 10%;
  top: -26%;
  width: 15%;
}
.section.section--mainview .mainview-div {
  color: #231815;
  position: absolute;
  top: -35%;
  right: 10%;
}
.section.section--mainview .mainview-div .mainview-title {
  font: 68px/1.2 "Roboto";
  font-weight: 700;
}
.section.section--mainview .mainview-div .mainview-title .mainview-span {
  margin-top: 0.5em;
  display: block;
  font: 23px/1.25 "Noto Sans JP", sans-serif;
  font-weight: 600;
}
.section.section--mainview .mainview-div .comment {
  font: 15px/1.2 "Noto Sans JP", sans-serif;
  display: block;
  margin-top: 1em;
  color: #C70003;
  font-weight: 700;
}@media (max-width: 1025px) {
	.section.section--mainview {
    height: 65vh;
    margin-top: 34%
	}.section.section--mainview .mainview-div{
		top: -25%;
		right: 5%;
	}.section.section--mainview .logo {
    position: absolute;
    left: 5%;
    top: -23%;
    width: 15%;
}
}
@media (max-width: 768px) {
  .section.section--mainview {
    height: auto;
    background-position: top;
    margin-top: 73%;
  }
  .section.section--mainview .logo {
    left: 4%;
    width: 100px;
    top: -68%;
  }
  .section.section--mainview {
    min-height: 300px;
    background-size: cover;
  }
  .section.section--mainview .mainview-div {
    top: -55%;
    left: -11%;
    scale: .7;
  }
  .section.section--mainview .mainview-div .mainview-title {
    font: 50px/1.2 "Roboto";
    font-weight: 700;
  }
  .section.section--mainview .mainview-div .mainview-title .mainview-span {
    font: 20px/1.25 "Noto Sans JP", sans-serif;
    font-weight: 600;
  }
}
.section.section--contents {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 70px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .section.section--contents {
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 16vw;
    padding-bottom: 16vw;
  }
}
.section.section--contents .contents-title {
  font: 31px/1.3 "Roboto";
  font-weight: bold;
  color: #F1A700;
  text-align: center;
  position: relative;
}
.section.section--contents .contents-title:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(50% - 2.5em);
  height: 2px;
  background-color: #F1A700;
}
.section.section--contents .contents-title:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% + 2.5em);
  width: 40%;
  height: 2px;
  background-color: #F1A700;
}
@media (max-width: 768px) {
  .section.section--contents .contents-title {
    font: 7vw/1.3 "Roboto";
    font-weight: bold;
  }
  .section.section--contents .contents-title:after {
    top: 50%;
    width: calc(50% - 2.5em);
    height: 2px;
  }
  .section.section--contents .contents-title:before {
    top: 50%;
    right: 0;
    width: calc(50% - 2.5em);
    height: 2px;
  }
}
.section.section--contents .figure-list {
  margin-top: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-box-pack: space-between;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}
@media (max-width: 768px) {
  .section.section--contents .figure-list {
    margin-top: 6vw;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.section.section--contents .figure-list .figure {
  -webkit-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  box-shadow: 0 0 8.5px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  height: 200px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.section.section--contents .figure-list .figure:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
.section.section--contents .figure-list .figure .img {
  height: 60%;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}
.section.section--contents .figure-list .figure .caption {
  position: absolute;
  bottom: 30px;
  text-align: center;
  font: 17px/1.2 "Noto Sans JP", sans-serif;
  font-weight: 500;
  left: 50%;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.section.section--contents .figure-list .figure .caption span {
  font-size: 80%;
}
.section.section--contents .figure-list .figure + .figure {
  margin-left: 30px;
}
.section.section--contents .figure-list .figure:after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  height: 40px;
  width: 40px;
  background: center url(../img/bottom-right.png) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 768px) {
  .section.section--contents .figure-list .figure {
    box-shadow: 0 0 1.5vw rgba(0, 0, 0, 0.3);
    border-radius: 3vw;
    padding: 3vw;
    height: 40vw;
    -webkit-flex: 47%;
    -webkit-box-flex: 47%;
    -webkit-flex: 47%;
    -moz-box-flex: 47%;
    -ms-flex: 47%;
    flex: 47%;
    max-width: 47%;
    margin-bottom: 5vw;
  }
  .section.section--contents .figure-list .figure .caption {
    bottom: 3vw;
    font: 3.2vw/1.2 "Noto Sans JP", sans-serif;
  }
  .section.section--contents .figure-list .figure + .figure {
    margin-left: unset;
  }
  .section.section--contents .figure-list .figure:after {
    content: "";
    position: absolute;
    display: block;
    right: 0;
    bottom: 0;
    height: 6vw;
    width: 6vw;
  }
}
@media (max-width: 768px) {
  .section.section--special-features {
    height: 25vw;
    padding-left: unset;
    padding-right: unset;
  }
}
.section.section--special-features .section__title {
  font: 9px/1.7 "Roboto";
  color: white;
  background: url(../img/h1-background.png) center top no-repeat;
  background-size: 190px;
  height: 95px;
  text-align: center;
  padding-top: 15px;
}
.section.section--special-features .section__title .section__span {
  font: 18px/1.7 "Noto Sans JP", sans-serif;
  display: block;
}
@media (max-width: 768px) {
  .section.section--special-features .section__title {
    font: 4vw/1.7 "Roboto";
    background-size: 50vw;
    height: 25vw;
    padding-top: 0.5em;
    margin-bottom: 20px;
  }
  .section.section--special-features .section__title .section__span {
    font: 6vw/1.7 "Noto Sans JP", sans-serif;
    display: block;
  }
}
.section.section--special-features .section__contents {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #fff;
}
@media (max-width: 768px) {
  .section.section--special-features .section__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0px;
  }
}
.section.section--special-features .figure {
  -webkit-flex: 0 0 50%;
  -webkit-box-flex: 0 0 50%;
  -webkit-flex: 0 0 50%;
  -moz-box-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
@media (max-width: 768px) {
  .section.section--special-features .figure {
    -webkit-flex: none;
    -webkit-box-flex: none;
    -webkit-flex: none;
    -moz-box-flex: none;
    -ms-flex: none;
    flex: none;
  }
  .section.section--special-features .figure .img {
    width: 100%;
  }
}
.section.section--special-features .wrapper {
  -webkit-flex: 1 1 auto;
  -webkit-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -moz-box-pack: center;
  justify-content: center;
  float: right;
  padding: 20px;
  padding-left: 60px;
  position: relative;
}
@media (max-width: 768px) {
  .section.section--special-features .wrapper {
    -webkit-flex: none;
    -webkit-box-flex: none;
    -webkit-flex: none;
    -moz-box-flex: none;
    -ms-flex: none;
    flex: none;
    margin-top: 0vw;
    margin-right: 5vw;
    margin-left: 0em;
  }
  .section.section--special-features .wrapper::before {
    width: 50em;
    height: 50em;
    transform: rotate(90deg);
    top: 0;
  }
  .section.section--special-features .wrapper {
    padding-left: 40px;
  }
}
.section.section--special-features .wrapper .text {
  font: 16px/1.6 "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #262626;
  margin-top: 0em;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .section.section--special-features .wrapper .text {
    font-size: 32px;
    line-height: 1.6;
  }
}
.section.section--special-features .wrapper .text span br {
  display: block;
  line-height: 20px;
}
.section.section--special-features .wrapper .text span {
  display: block;
  line-height: 22px;
  font-size: 19px;
}
.section.section--special-features .wrapper .text span.caption_orange {
  display: block;
  color: #E5610E;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}
span.orange {
  color: #E5610E;
}
.section.section--special-features .wrapper .description {
  font: 11px/1.4 "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .section.section--special-features .wrapper .section__subtitle {
    font: 7vw/1.7 "Roboto";
    text-align: center;
  }
  .section.section--special-features .wrapper .section__subtitle:after {
    display: none;
  }
  .section.section--special-features .wrapper .text {
    font: 4vw/1.7 "Noto Sans JP", sans-serif;
    margin-bottom: 2vw;
    margin-top: 2vw;
  }
  .section.section--special-features .wrapper .description {
    font: 3.2vw/1.7 "Noto Sans JP", sans-serif;
  }
  .section.section--special-features .wrapper .section__subtitle {
    color: white;
    font: 14px/2.0 "Noto Sans JP", sans-serif;
    font-weight: 700;
    margin-bottom: 1.2em;
    position: relative;
    z-index: 1;
    text-indent: 1em;
    text-align: left;
    margin-top: 20px;
  }
  .section.section--special-features .wrapper .section__subtitle:after {
    content: url(../img/img_t.svg);
    left: -30px;
    top: -1px;
    transform: scale(1.6);
    position: absolute;
    display: block;
  }
}
.section.section--report {
  background-color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .section.section--report {
    padding-top: 16vw;
    padding-bottom: 16vw;
    padding-left: unset;
    padding-right: unset;
  }
}
.section.section--report .wrapper {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../img/background.svg");
  border-radius: 35px;
  padding: 0 70px 55px;
}
.background-white {
  background-color: #ffff;
  box-shadow: 0px 0px 20px 20px #ffff;
  padding: 60px 10px 10px 0px;
}
.section.section--report .section__content {
  position: relative;
  margin-bottom: 60px;
}
.section.section--report .section__content > .sub-figure {
  margin-top: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .section.section--report .section__content {
    margin-top: 20px;
    width: 95%;
    margin: 0 auto;
  }
  .section.section--report .section__content > .sub-figure {
    margin-top: 4.2vw;
    overflow: auto;
  }
  .section.section--report .section__content > .sub-figure .img {
    max-width: unset;
    width: 200vw;
  }
}
@media (max-width: 768px) {
  .section.section--report .section__content .section__subtitle {
    font: 5vw/1.6 "Noto Sans JP", sans-serif;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    padding-right: 0.5em;
  }
  .section.section--report .section__content .section__subtitle:before {
    left: -7vw;
  }
  .section.section--report .section__subtitle_img {
    background-size: contain;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .section.section--report .section__content .section__subtitle:before {
    left: 0vw;
  }
}
.section.section--report .section__content .content-div .content-text {
  -webkit-flex: 1 1 auto;
  -webkit-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-right: 0.8em;
}
@media (max-width: 768px) {
  .section.section--report .section__content .content-div .content-text {
    padding-right: unset;
  }
}
.section.section--report .section__content .content-div .sub-figure {
  -webkit-flex: 0 0 260px;
  -webkit-box-flex: 0 0 260px;
  -webkit-flex: 0 0 260px;
  -moz-box-flex: 0 0 260px;
  -ms-flex: 0 0 260px;
  flex: 0 0 260px;
  position: relative;
}
.section.section--report .section__content .content-div .sub-figure .img {
  width: 100%;
}
.section.section--report .section__content .content-div .sub-figure.sub-figure--small {
  -webkit-flex: 0 0 200px;
  -webkit-box-flex: 0 0 200px;
  -webkit-flex: 0 0 200px;
  -moz-box-flex: 0 0 200px;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .section.section--report .section__content .content-div .sub-figure {
    -webkit-flex: 0 0 40vw;
    -webkit-box-flex: 0 0 40vw;
    -webkit-flex: 0 0 40vw;
    -moz-box-flex: 0 0 40vw;
    -ms-flex: 0 0 40vw;
    flex: 0 0 40vw;
    margin-top: 8vw;
  }
  .section.section--report .section__content .content-div .sub-figure.sub-figure--small {
    -webkit-flex: 0 0 26vw;
    -webkit-box-flex: 0 0 26vw;
    -webkit-flex: 0 0 26vw;
    -moz-box-flex: 0 0 26vw;
    -ms-flex: 0 0 26vw;
    flex: 0 0 26vw;
    margin-top: 4vw;
    margin-bottom: 8vw;
  }
}
.section.section--report .section__content .content-div.content-div--1 {
  position: relative;
}
.section.section--finance {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 55px;
  padding-bottom: 25px;
  padding-left: 30px;
  padding-right: 30px;
}
.section.section--finance .section--finance__title {
  font: 23px/1.2 "Noto Sans JP", sans-serif;
  color: #231815;
  position: relative;
  padding-left: 40px;
}
.section.section--finance .section--finance__title .section--finance__span {
  font: 17px/1.7 "Roboto";
  font-weight: bold;
  color: #cf121b;
}
.section.section--finance .section--finance__title:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 2px;
  width: 24px;
  height: 24px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: linear-gradient(to bottom, #EA5006, #FDE300);
  border-radius: 6px;
}
.section.section--finance .section--finance__title:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 24em;
  height: 4.3px;
  background-image: linear-gradient(to right, #DFD0C0, white);
}
@media (max-width: 768px) {
  .section.section--finance .section--finance__title {
    font: 18px/1.2 "Noto Sans JP", sans-serif;
    padding-left: 33px;
  }
  .section.section--finance .section--finance__title .section--finance__span {
    font: 4vw/1.7 "Roboto";
  }
  .section.section--finance .section--finance__title:before {
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 0.7vw;
  }
  .section.section--finance .section--finance__title:after {
    height: 4.3px;
  }
  .h3_section__subtitle_wrapper .image {
    display: none;
  }
}
.section.section--finance .table-title {
  margin-top: 30px;
  background: #A39D95;
  color: white;
  text-align: center;
  font: 17px/1.8 "Noto Sans JP", sans-serif;
}
.section.section--finance .table-title .span {
  font-size: 13px;
}
@media (max-width: 768px) {
  .section.section--finance .table-title {
    margin-top: 4.2vw;
    font-size: 16px;
    line-height: 20px;
    padding: 7px;
  }
  .section.section--finance .table-title .span {
    font-size: 3.2vw;
  }
}
.section.section--finance table, .section.section--finance tr, .section.section--finance th {
  border-collapse: collapse;
  border-left: 1.7px solid #EFEEEC;
}
@media (max-width: 768px) {
  .section.section--finance .table-container {
    overflow: auto;
  }
}
.section.section--finance .section--finance__table {
  margin-top: 28px;
  margin-bottom: 25px;
}
.section.section--finance .section--finance__table tbody {
  width: 100%;
}
.section.section--finance .section--finance__table .title-tr th {
  border-top: 0.7px solid #D5D1CC;
  border-bottom: 0.7px solid #C0AD5E;
  font: 12px/1.4 "Noto Sans JP", sans-serif;
}
.section.section--finance .section--finance__table .title-tr .rising-finance {
  font: 12px/1.4 "Noto Sans JP", sans-serif;
  color: #EB6112;
}
.section.section--finance .section--finance__table th {
  width: 14%;
  height: 60px;
  font: 21px/1.2 "Roboto";
  font-weight: bold;
  border-bottom: 1.7px dotted #D5D1CC;
}
.section.section--finance .section--finance__table .index-item {
  background: #EFEEEC;
  font: 12px/1.2 "Noto Sans JP", sans-serif;
}
.section.section--finance .section--finance__table .rising-finance {
  color: #EB6112;
}
.section.section--finance .section--finance__table .rising-finance img {
  height: 1em;
  margin-left: 0.2em;
  display: inline;
}
.section.section--finance .section--finance__table .thick-border {
  border: 3px solid #FCD68F;
}
.section.section--finance .section--finance__table .last-border th {
  border-bottom: 0.7px solid #D5D1CC;
}
@media (max-width: 768px) {
  .section.section--finance .section--finance__table {
    margin-top: 4vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.8vw;
    width: 200vw;
  }
  .section.section--finance .section--finance__table .title-tr th {
    font: 3.2vw/1.4 "Noto Sans JP", sans-serif;
  }
  .section.section--finance .section--finance__table .title-tr .rising-finance {
    font: 3.2vw/1.4 "Noto Sans JP", sans-serif;
  }
  .section.section--finance .section--finance__table th {
    width: 22vw;
    height: 8.8vw;
    font: 3.2vw/1.2 "Roboto";
    font-weight: bold;
  }
  .section.section--finance .section--finance__table .index-item {
    font: 3.2vw/1.2 "Noto Sans JP", sans-serif;
  }
}
.section.section--finance .checking-div {
  display: flex;
}
.section.section--finance .checking-div .figure {
  min-width: 28px;
  height: auto;
  padding-top: 7px;
}
@media (max-width: 768px) {
  .section.section--finance .checking-div .figure {
    padding-top: 1.2vw;
  }
}
.section.section--finance .checking-div .figure .img {
  width: 80%;
}
.section.section--finance .table-div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-box-pack: space-between;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  padding-top: 30px;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .section.section--finance .table-div {
    padding-top: 8vw;
    margin-top: 8vw;
  }
}
.section.section--finance .table-div .notation {
  position: absolute;
  right: 0;
  top: 0;
  color: #231815;
  font: 10px/1 "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .section.section--finance .table-div .notation {
    font-size: 3vw;
  }
}
.section.section--finance .table-div .table-div__figure {
  -webkit-flex: 45%;
  -webkit-box-flex: 45%;
  -webkit-flex: 45%;
  -moz-box-flex: 45%;
  -ms-flex: 45%;
  flex: 45%;
  max-width: 45%;
  margin-bottom: 40px;
  height: 200px;
  position: relative;
}
.section.section--finance .table-div .table-div__figure .figcaption {
  font: 15px/1.2 "Noto Sans JP", sans-serif;
  font-weight: 700;
  display: block;
  padding-left: 1.5em;
  position: relative;
}
.section.section--finance .table-div .table-div__figure .figcaption:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.8em;
  height: 0.8em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #8A8A8A;
  border-radius: 20%;
}
.section.section--finance .table-div .table-div__figure .img {
  position: absolute;
  width: 100%;
  bottom: 0;
  top: auto;
  left: 0;
}
@media (max-width: 768px) {
  .section.section--finance .table-div .table-div__figure {
    -webkit-flex: 100%;
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
    -moz-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
    margin-bottom: 6vw;
    height: 50vw;
  }
  .section.section--finance .table-div .table-div__figure .figcaption {
    font-size: 3.2vw;
  }
}
.lounge-div {
  background: url("../img/lounge-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1100px;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6%;
  padding-bottom: 5%;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .section.section--lounge .lounge-div .wrapper > .figure {
    right: 50%;
    width: 65vw;
    top: 30vw;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }.lounge-div {
  background: url("../img/lounge-background.jpg");
  background-repeat: repeat;
  background-size: contain;
  max-width: 1100px;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6%;
  padding-bottom: 5%;
  margin-bottom: 40px;
}
}
.section.section--lounge .lounge-div .block-1 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 30px;
  margin-top: -42px;
  margin-left: -70px;
}
.section.section--lounge .lounge-div .block-1 .figure {
  -webkit-flex: 0 0 300px;
  -webkit-box-flex: 0 0 300px;
  -webkit-flex: 0 0 300px;
  -moz-box-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
}
.section.section--lounge .lounge-div .block-1 .figure .img {
  width: 100%;
}
section.section--lounge .lounge-div .block-1 .lounge-title {
  -webkit-flex: 1 1 auto;
  -webkit-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font: 16px/1.4 "Noto Sans JP", sans-serif;
  padding-left: 2.5em;
  position: relative;
}
.section.section--lounge .lounge-div .block-1 .lounge-title:before {
  content: "";
  display: block;
  position: absolute;
  left: 0.8em;
  top: -0.3em;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/lounge-line2.svg) no-repeat;
  background-size: 100% 100%;
}
.section.section--lounge .lounge-div .block-1 .lounge-title:after {
  content: "";
  display: block;
  position: absolute;
  left: 1.5em;
  bottom: -1em;
  width: 1.5em;
  height: 0.3em;
  background: url(../img/lounge-line1.svg) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 768px) {
  .section.section--lounge .lounge-div .block-1 .lounge-title {
    font-size: 3.2vw;
    padding-left: 2em;
  }
  .section.section--lounge .lounge-div .block-1 .lounge-title:after {
    bottom: -0.5em;
  }
}
.section.section--lounge .lounge-div .lounge-sub-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  text-indent: 1.5rem;
}
.section.section--lounge .lounge-div .lounge-sub-title--small {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.section.section--lounge .lounge-div .lounge-sub-title:before {
  content: "";
  display: block;
  position: absolute;
  left: 0.em;
  top: 50%;
  width: 10px;
  height: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #8A8A8A;
  border-radius: 20%;
}
.section.section--lounge .lounge-div .lounge-sub-title--small:before {
  content: "";
  display: block;
  position: absolute;
  left: -1.5em;
  top: 50%;
  width: 1.2em;
  height: 1.2em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ea6011;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .section.section--lounge .lounge-div .lounge-sub-title {
    font-size: 4vw;
    left: 0em;
    margin-top: 1em;
  }
}
.section.section--lounge .lounge-div .lounge-context {
  font: 13px/1.8 "Noto Sans JP", sans-serif;
  padding-right: 280px;
}
@media (max-width: 768px) {
  .section.section--lounge .lounge-div .lounge-context {
    font-size: 3.2vw;
    padding-right: unset;
  }
}
.section.section--lounge .lounge-div .lounge-footer-div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 30px;
}
.section.section--lounge .lounge-div .lounge-footer-div div.flex_column_01 {
  width: 55%;
}
.section.section--lounge .lounge-div .lounge-footer-div div.flex_column_01 h3.column-h3 {
  font-size: 2.0rem;
  font-weight: 500;
}
.section.section--lounge .lounge-div .lounge-footer-div div.flex_column_01 h3.column-h3 span {
  font-size: 80%;
  font: 13px/2.2 "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.section.section--lounge .lounge-div .lounge-footer-div div.flex_column_02 {
  width: 40%;
}
@media (max-width: 768px) {
  .section.section--lounge .lounge-div .lounge-footer-div {
    margin-top: 8vw;
    flex-direction: column;
  }
}
.section.section--lounge .lounge-div .lounge-footer-div .lounge-footer-title {
  color: #E97319;
  padding-right: 0.8em;
  font: 13px/1.3 "Noto Sans JP", sans-serif;
  font-weight: 500;
  border-bottom: 1px dotted #E97319;
  white-space: nowrap;
  z-index: 99 !important;
}
@media (max-width: 768px) {
  .section.section--lounge .lounge-div .lounge-footer-div .lounge-footer-title {
    padding-right: unset;
    font-size: 16px;
    -webkit-flex: none;
    -webkit-box-flex: none;
    -webkit-flex: none;
    -moz-box-flex: none;
    -ms-flex: none;
    flex: none;
    white-space: normal;
    line-height: 24px;
  }
}
.section.section--lounge .lounge-div .lounge-footer-div .lounge-footer-span {
  color: #231815;
  font: 12px/1.8 "Noto Sans JP", sans-serif;
  display: block;
  margin-top: 1em;
  font-weight: normal;
}
.section.section--lounge .lounge-div .lounge-footer-div .lounge-footer-span strong {
  font-weight: 800 !important;
}
.section.section--lounge .lounge-div .lounge-footer-div .lounge-footer-span_bold {
  color: #231815;
  font-size: 1.5rem;
  line-height: 2.6rem;
  display: block;
  margin-top: 1em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section.section--lounge .lounge-div .lounge-footer-div .lounge-footer-span {
    font-size: 3.2vw;
  }
  .section.section--lounge .lounge-div .lounge-footer-div .lounge-footer-span_bold {
    font-size: 3.3vw;
  }
}
@media (max-width: 768px) {
  .section.section--lounge .lounge-div .lounge-footer-div .lounge-footer-figure {
    -webkit-flex: none;
    -webkit-box-flex: none;
    -webkit-flex: none;
    -moz-box-flex: none;
    -ms-flex: none;
    flex: none;
    margin-top: 10vw;
    margin-bottom: 6vw;
  }
}
.section.section--footer {
  background-color: #FDF0E7 !important;
  padding-bottom: 70px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .section.section--footer {
    padding-left: 5vw;
    padding-right: 5vw;
    padding-bottom: 16vw;
  }
}
.section.section--footer .section--footer__title {
  font: 9px/1.7 "Roboto";
  color: white;
  font-weight: bold;
  background: url(../img/footer-image1.png) center top no-repeat;
  background-size: 160px;
  text-align: center;
  height: 80px;
  padding-top: 15px;
}
.section.section--footer .section--footer__title .section--footer__span {
  font: 16px/1.8 "Noto Sans JP", sans-serif;
  display: block;
}
@media (max-width: 768px) {
  .section.section--footer .section--footer__title {
    font-size: 4vw;
    height: 25vw;
    background-size: 50vw;
    padding-top: 0.8em;
    line-height: 1;
  }
  .section.section--footer .section--footer__title .section--footer__span {
    font-size: 6vw;
    line-height: 1;
    margin-top: 0.2em;
  }
}
.section.section--footer .wrapper {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.section.section--footer .ranking-div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: flex-end;
  -webkit-flex-align: flex-end;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.section.section--footer .ranking-div .dms-figure {
  -webkit-flex: 0 0 210px;
  -webkit-box-flex: 0 0 210px;
  -webkit-flex: 0 0 210px;
  -moz-box-flex: 0 0 210px;
  -ms-flex: 0 0 210px;
  flex: 0 0 210px;
}
@media (max-width: 768px) {
  .section.section--footer .ranking-div .dms-figure {
    -webkit-flex: 0 0 30vw;
    -webkit-box-flex: 0 0 30vw;
    -webkit-flex: 0 0 30vw;
    -moz-box-flex: 0 0 30vw;
    -ms-flex: 0 0 30vw;
    flex: 0 0 30vw;
  }
}
.section.section--footer .ranking-div .dms-figure .img {
  width: 100%;
}
@media (max-width: 768px) {
  .section.section--footer .ranking-div .ranking-title {
    font-size: 6vw;
  }
  .section.section--footer .ranking-div .ranking-title:after {
    left: -1em;
    bottom: -10vw;
    height: 15vw;
    width: 60vw;
  }
}
.section.section--footer .moby-div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-box-pack: space-between;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .section.section--footer .moby-div {
    margin-top: 12vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.section.section--footer .moby-div .moby-figure {
  -webkit-flex: 0 0 350px;
  -webkit-box-flex: 0 0 350px;
  -webkit-flex: 0 0 350px;
  -moz-box-flex: 0 0 350px;
  -ms-flex: 0 0 350px;
  flex: 0 0 350px;
}
@media (max-width: 768px) {
  .section.section--footer .moby-div .moby-figure {
    -webkit-flex: none;
    -webkit-box-flex: none;
    -webkit-flex: none;
    -moz-box-flex: none;
    -ms-flex: none;
    flex: none;
  }
}
@media (max-width: 768px) {
  .section.section--footer .moby-div .moby-div__right {
    -webkit-flex: none;
    -webkit-box-flex: none;
    -webkit-flex: none;
    -moz-box-flex: none;
    -ms-flex: none;
    flex: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 10vw;
  }
}
.section.section--footer .moby-div .moby-div__right .figure-left .img {
  width: 100%;
}
@media (max-width: 768px) {
  .section.section--footer .moby-div .moby-div__right .figure-left {
    position: relative;
    left: -2vw;
  }
}
@media (max-width: 768px) {
  .section.section--footer .moby-div .moby-div__right .wrapper {
    -webkit-flex: none;
    -webkit-box-flex: none;
    -webkit-flex: none;
    -moz-box-flex: none;
    -ms-flex: none;
    flex: none;
    margin-top: 10vw;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
@media (max-width: 768px) {
  .section.section--footer .moby-div .moby-div__right .wrapper .figure {
    -webkit-flex: 0 0 20vw;
    -webkit-box-flex: 0 0 20vw;
    -webkit-flex: 0 0 20vw;
    -moz-box-flex: 0 0 20vw;
    -ms-flex: 0 0 20vw;
    flex: 0 0 20vw;
  }
  .section.section--footer .moby-div .moby-div__right .wrapper .figure .img {
    width: 100%;
  }
}
.section.section--footer .moby-div .moby-div__right .wrapper .moby-div-context {
  font: 12px/1.6 "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin-top: 1em;
  color: #231815;
}
.section.section--footer .moby-div .moby-div__right .wrapper .moby-div-context .moby-link {
  font: 10px/1 "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #F6AC00;
  padding-left: 2em;
  background: left center url(../img/footer-image5.png) no-repeat;
  background-size: 1em;
  display: block;
  margin-top: 1.2em;
}
.sp_only {
  display: none;
}
.pc_only {
  display: block;
}
@media (max-width: 768px) {
  .section.section--footer .moby-div .moby-div__right .wrapper .moby-div-context {
    margin-top: unset;
    font-size: 3.2vw;
  }
  .section.section--footer .moby-div .moby-div__right .wrapper .moby-div-context .moby-link {
    font-size: 3.2vw;
  }
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
}
.page-top-btn {
  position: fixed;
  z-index: 100;
  right: 60px;
  bottom: 70px;
  width: 34px;
  height: 34px;
  background: #EFA500;
  border-radius: 50%;
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .page-top-btn {
    bottom: 6vw;
    right: 6vw;
  }
}
.page-top-btn:hover {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.page-top-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-left: 1px solid white;
  border-top: 1px solid white;
  -webkit-transform: translate(-50%, -25%) rotate(45deg);
  -ms-transform: translate(-50%, -25%) rotate(45deg);
  transform: translate(-50%, -25%) rotate(45deg);
}
.page-top-btn.visible {
  display: block;
}
/* ----------------------------------------
ナビーメニュー
----------------------------------------*/
.nav-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1 1 auto;
  -webkit-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  overflow: visible;
  height: 80px;
  margin-right: 40px;
}
@media (max-width: 768px) {
  .nav-wrapper {
    display: block;
    height: 92vw;
    background-color: rgba(255, 255, 255, 0.87);
    position: absolute;
    right: 0;
    left: auto;
    padding: unset;
    margin-right: unset;
    width: 100%;
    top: -92vw;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 0;
  }
}
.nav-wrapper a.contact-link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 210px;
  height: 105px;
  padding-left: 35px;
  border-radius: 0 0 0 35px;
  background-color: #173b63;
  color: #FFFFFF;
  text-align: center;
  font-size: 13px;
  z-index: 9;
}
@media only screen and (max-width: 1024px) {
  .nav-wrapper a.contact-link {
    width: 140px;
    padding-left: 15px;
    border-radius: 0 0 0 35px;
  }
}
@media only screen and (max-width: 768px) {
  .nav-wrapper a.contact-link {
    font-size: 1.73vw;
    padding-left: unset;
  }
}
.nav-wrapper a.contact-link i {
  font-size: 30px;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 768px) {
  .nav-wrapper a.contact-link i {
    font-size: 6vw;
    margin-bottom: unset;
    margin-right: 1em;
  }
}
.nav-wrapper a.contact-link span {
  color: #FFFFFF;
}
.nav-wrapper .nav {
  -webkit-flex: 1 1 auto;
  -webkit-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -moz-box-pack: flex-end;
  justify-content: flex-end;
  list-style: none;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .nav-wrapper .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: unset;
    padding-right: unset;
    margin-right: unset;
    padding-top: 14vw;
  }
}
.nav-wrapper .nav > li {
  vertical-align: middle;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-box-pack: space-between;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .nav-wrapper .nav > li {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.nav-wrapper .nav > li > a {
  display: block;
  letter-spacing: 0.03em;
  line-height: 1;
  font-size: 20px;
}
@media (max-width: 768px) {
  .nav-wrapper .nav > li > a {
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.1em;
    font-size: 5.33vw;
  }
}
.nav-wrapper .nav > li:hover {
  opacity: 0.6;
}
.nav-wrapper .nav > li:hover .menu-popup {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
.nav-wrapper .nav > li + li {
  margin-left: 3em;
}
@media only screen and (max-width: 1200px) {
  .nav-wrapper .nav > li + li {
    margin-left: 1em;
  }
  .lounge-div {
    padding-top: 8%;
  }
}
@media only screen and (max-width: 768px) {
  .nav-wrapper .nav > li + li {
    margin-left: unset;
  }
}
.nav-wrapper .nav .menu-popup {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 38px 0;
  padding-left: 40px;
  opacity: 0;
  visibility: hidden;
  line-height: 2;
  color: #1D1D1D;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .nav-wrapper .nav .menu-popup {
    opacity: 1;
    visibility: visible;
    padding-left: unset;
  }
}
@media only screen and (max-width: 768px) {
  .nav-wrapper .nav .menu-popup {
    position: unset;
    padding: unset;
  }
}
.nav-wrapper .nav .menu-popup .popup-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: flex-start;
  -webkit-flex-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: space-around;
  -webkit-justify-content: space-around;
  -ms-flex-pack: space-around;
  -moz-box-pack: space-around;
  justify-content: space-around;
  -webkit-box-pack: distribute;
  -ms-flex-pack: distribute;
}
.nav-wrapper .nav .menu-popup .popup-inner h3 {
  line-height: 2;
  -webkit-flex: 0 0 200px;
  -webkit-box-flex: 0 0 200px;
  -webkit-flex: 0 0 200px;
  -moz-box-flex: 0 0 200px;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
}
.nav-wrapper .nav .menu-popup .popup-inner ul {
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.nav-wrapper .nav .menu-popup .popup-inner ul li {
  -webkit-flex: 0 0 20%;
  -webkit-box-flex: 0 0 20%;
  -webkit-flex: 0 0 20%;
  -moz-box-flex: 0 0 20%;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}
.nav-wrapper .nav .menu-popup .popup-inner ul li a {
  position: relative;
  font-weight: 400;
}
.nav-wrapper .nav .menu-popup .popup-inner ul li a:hover {
  color: #173b63;
}
.nav-wrapper .nav .menu-popup .popup-inner ul li a:hover::after {
  border-color: inherit;
}
.nav-wrapper .nav .menu-popup .popup-inner ul li a::after {
  content: "";
  position: absolute;
  bottom: 50%;
  right: -2em;
  width: 1em;
  height: 0.58em;
  border-bottom: 1px solid #191919;
  border-right: 2px solid #191919;
  border-color: inherit;
  -webkit-transform: skew(30deg) rotate(-30deg) translateY(50%);
  -ms-transform: skew(30deg) rotate(-30deg) translateY(50%);
  transform: skew(30deg) rotate(-30deg) translateY(50%);
}
.nav-open {
  display: none;
}
@media (min-width: 1025px) {
  .nav > li > a.submenu-opener {
    display: none;
  }
  .nav .menu-popup {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .nav-open {
    width: 12.8vw;
    height: 0vw;
    margin-top: 0;
    margin-right: 0;
    color: #FFFFFF;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    right: 8vw;
    z-index: 2;
  }
  .nav-open i {
    position: relative;
    display: block;
    height: 0;
    width: 6.4vw;
    border-top: 2px solid;
    color: #C7000B;
  }
  .nav-open i:before, .nav-open i:after {
    content: "";
    display: block;
    position: absolute;
    width: 6.4vw;
    height: 0;
    border-top: 2px solid;
    color: inherit;
    left: 0;
    top: -2.8vw;
  }
  .nav-open i:after {
    top: calc(2.8vw - 4px);
  }
  .nav-open span {
    display: block;
    font-size: 2.4vw;
    color: #FFFFFF;
    position: relative;
    top: 1em;
  }
  .nav li {
    display: block;
    position: relative;
    color: #333;
    font-size: 4.2vw;
    margin: 0;
  }
  .nav li:hover > a {
    color: #333;
  }
  .nav .menu-popup {
    display: none;
    position: static;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    padding: 0;
    position: unset;
  }
  .nav .menu-popup .popup-inner {
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -moz-box-pack: flex-start;
    justify-content: flex-start;
    -webkit-box-pack: start;
  }
  .nav .menu-popup .popup-inner h3 {
    display: none;
  }
  .nav .menu-popup .popup-inner ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .nav .menu-popup .popup-inner ul li {
    -webkit-flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .nav .menu-popup .popup-inner ul li a::after {
    display: none;
  }
  .nav > li > a {
    display: inline-block;
    vertical-align: middle;
    padding: 0.5em 0;
  }
  .nav > li > a.submenu-opener {
    width: 30px;
    text-align: center;
    padding: 5px 0;
    margin-left: 5px;
  }
  .nav > li > a.submenu-opener:before {
    content: "+";
    font-family: Arial;
    font-size: 6.8vw;
    font-weight: 400;
    display: block;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .nav > li > a.submenu-opener.opened:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    font-size: 3.73vw;
    font-weight: bold;
    content: "|";
  }
  .nav-open i, .nav-open i:after, .nav-open i:before {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  body:not(.nav-opened) .nav-wrapper {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0.1;
    top: -76vw;
  }
  body:not(.nav-opened) .nav-wrapper a {
    pointer-events: none;
  }
  .header-white-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0vw;
    background-color: white;
    z-index: 1;
  }
  .nav-opened .nav-wrapper {
    top: 16vw;
    opacity: 1;
  }
  .nav-opened .page-header .nav-wrapper .nav .menu-popup {
    background: inherit;
    padding-left: 1em;
  }
  .nav-opened .logo {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .nav-opened .nav-open i {
    border-color: transparent;
  }
  .nav-opened .nav-open i:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
    left: 0;
  }
  .nav-opened .nav-open i:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    left: 0;
  }
}
/* トップページのスタイル*/
.page-header {
  /*position: absolute;*/
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
  /*height: 85px;*/
  color: #1D1D1D;
  font-size: 20px;
  background: #FFFFFF;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 768px) {
  .page-header {
    height: 0vw;
  }
}
.page-header.header-sticky {
  position: fixed;
  opacity: 0.95;
}
.page-header a:not(.contact-link) {
  color: inherit;
  font-size: inherit;
  font-weight: 400;
}
a.btn.blue {
  background: #162D5A;
  color: white;
  padding: 0.3em 2.5em;
}
@media (max-width: 1200px) {
  a.btn.blue {
    padding: 5px 15px;
  }
  .section.section--lounge .lounge-div .block-1 .figure {
    -webkit-flex: 0 0 250px;
    -webkit-box-flex: 0 0 250px;
    -webkit-flex: 0 0 250px;
    -moz-box-flex: 0 0 250px;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
  }
  .section.section--lounge .lounge-div .lounge-sub-title {
    font-size: 2.4rem;
  }
  .section.section--lounge .lounge-div .lounge-sub-title--small {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  a.btn.blue {
    padding: 0.6em 2.5em;
    margin-top: 0.5em;
  }
}
.logo {
  height: auto;
}
.header-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-box-pack: space-between;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .header-inner {
    padding: 0 3%;
  }
}
@media only screen and (max-width: 768px) {
  .header-inner {
    padding: 0 8vw;
  }
  .nav-opened .header-inner {
    width: 100vw;
    height: 100vh;
  }
  .nav-opened .header-inner:before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0.6;
    z-index: 1;
  }
  .nav-opened .header-inner .logo {
    position: absolute;
    top: 1.84vw;
    margin-left: unset;
  }
  .nav-opened .header-inner .nav-open {
    position: absolute;
    left: unset;
    right: 8vw;
    top: 1.6vw;
    z-index: 2;
  }
}
.page-footer {
  background-color: #F6F6F6;
  border-top: 1px solid #CCC;
  color: #333;
}
.page-footer .footer-top {
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .page-footer .footer-top {
    margin-top: 12.8vw;
  }
}
.page-footer .footer-top .container {
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 1300px) {
  .page-footer .footer-top .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .page-footer .footer-top .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 10vw;
    padding-right: 10vw;
  }
}
.page-footer .footer-top .container .logo {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .page-footer .footer-top .container .logo {
    width: 64vw;
    height: 12.8vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-footer .footer-top .container .logo img {
    width: 100%;
    height: 100%;
  }
}
.page-footer .footer-top .container .company-info {
  width: 50%;
  padding-left: 16px;
}
@media only screen and (max-width: 768px) {
  .page-footer .footer-top .container .company-info {
    width: 100%;
    padding-left: unset;
    padding-top: 4.2vw;
  }
}
.page-footer .footer-top .container .company-info .company-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 6px;
}
@media only screen and (max-width: 768px) {
  .page-footer .footer-top .container .company-info .company-name {
    font-size: 5.33vw;
    margin-bottom: 2vw;
  }
}
.page-footer .footer-top .container .company-info .post, .page-footer .footer-top .container .company-info .address, .page-footer .footer-top .container .company-info .open, .page-footer .footer-top .container .company-info .tel-mail {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .page-footer .footer-top .container .company-info .post, .page-footer .footer-top .container .company-info .address, .page-footer .footer-top .container .company-info .open, .page-footer .footer-top .container .company-info .tel-mail {
    font-size: 3.5vw;
    line-height: 1.5;
  }
}
.page-footer .footer-top .container .company-info .post, .page-footer .footer-top .container .company-info .open {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .page-footer .footer-top .container .company-info .post, .page-footer .footer-top .container .company-info .open {
    display: block;
  }
}
.page-footer .footer-top .container .company-info .address, .page-footer .footer-top .container .company-info .tel-mail {
  display: inline;
  margin-left: 1em;
}
@media only screen and (max-width: 768px) {
  .page-footer .footer-top .container .company-info .address, .page-footer .footer-top .container .company-info .tel-mail {
    display: block;
    margin-left: unset;
  }
}
.page-footer .footer-top .container .company-info .social-link {
  margin-top: 11px;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .page-footer .footer-top .container .company-info .social-link {
    font-size: 4.2vw;
    text-align: center;
    margin-top: 8vw;
  }
}
.page-footer .footer-top .container .company-info .social-link a {
  font-size: 16px;
  font-weight: bold;
  margin-right: 1em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-footer .footer-top .container .company-info .social-link a:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 768px) {
  zw .page-footer .footer-top .container .company-info .social-link a {
    font-size: 4.2vw;
  }
}
.page-footer .footer-top .container .company-info .social-link a + a {
  margin-left: 1em;
}
.page-footer .footer-middle {
  margin-top: 55px;
}
@media only screen and (max-width: 768px) {
  .page-footer .footer-middle {
    display: none;
  }
}
.page-footer .footer-middle .menu-list {
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -moz-box-pack: center;
  justify-content: center;
  font-size: 16px;
}
.page-footer .footer-middle .menu-list .menu {
  margin-right: 1em;
}
.page-footer .footer-middle .menu-list .menu + .menu {
  margin-left: 1em;
}
.page-footer .footer-middle .menu-list .menu a {
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-footer .footer-middle .menu-list .menu a:hover {
  opacity: 0.6;
}
.page-footer .footer-bottom {
  text-align: center;
}
.page-footer .footer-bottom .copyright {
  font: 28px/1 "Noto Serif JP", serif;
  padding-top: 1.2em;
  padding-bottom: 1.2em;
  letter-spacing: 0.02em;
  color: #1D1D1D;
}
@media only screen and (max-width: 768px) {
  .page-footer .footer-bottom .copyright {
    font-size: 3.73vw;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
}
.page-footer .footer-bottom.footer-bottom--dark-background {
  background: #162D5A;
}
.page-footer .footer-bottom.footer-bottom--dark-background .copyright {
  color: white;
}
/*# sourceMappingURL=theme.css.map */
footer {
  position: absolute;
  bottom: 0;
  background-color: #515151;
  width: 100%;
  padding: 10px
}
footer .inner {
  font-size: 12px;
  text-align: center;
  color: #000;
  width: 100%;
}
.mt10 {
  margin-top: 10px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.number {
  font-weight: bold;
  font-size: 70px;
}
.textcenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
span.caption {
  display: inline-block;
  font-size: 80%;
  line-height: 1.6rem;
}
.section .content-text {
  color: black;
  font: 13px/2.2 "Noto Sans JP", sans-serif;
}
.section--footer__title_02 {
  font: 9px/1.7 "Roboto";
  color: white;
  font-weight: bold;
  background-size: 163px;
  text-align: center;
  height: 80px;
  padding-top: 15px;
  background: url(../img/img_14.png) center top no-repeat;
}
.section.section--footer {
  background-color: #fffdfb;
  padding-bottom: 70px;
  padding-left: 30px;
  padding-right: 30px;
}
.title {
  font: 13px/1.8 "Noto Sans JP", sans-serif;
}
.title a {
  text-decoration: underline !important;
}
.title a:hover {
  color: #F6AC00;
}
@media (max-width: 768px) {
  .section.section--special-features .wrapper .text {
    font-weight: 700;
  }
  .title {
    font: 3.2vw/2 "Noto Sans JP", sans-serif;
  }
  .section.section--footer .section--footer__title, .section.section--footer .section--footer__title_02 {
    font-size: 4vw;
    height: 25vw;
    background-size: 50vw;
    padding-top: 0.8em;
    line-height: 1;
  }
  .section.section--footer .section--footer__title .section--footer__span, .section--footer__title_02 .section--footer__span {
    font-size: 6vw;
    line-height: 1;
    margin-top: 0.2em !important;
  }
  .section.section--footer {
    padding-left: 5vw;
    padding-right: 5vw;
    padding-bottom: 16vw;
  }
}
.section.section--report {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 30px;
  padding-right: 30px;
}
.section--report_gackgound {
  position: relative;
  z-index: 1;
  background: url("../img/background.svg");
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-size: 100% 100%;
}
/*.section--report_gackgound::before{
  content: "";
  display: block;
  position: absolute;
  left: 75%;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/background.svg");
  background-size: 40% 100%;
  background-repeat: no-repeat;
}
.section.section--report::before {
  content: "";
  display: block;
  position: absolute;
  left: -15%;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/background-right.svg");
  background-size: 40% 100%;
  background-repeat: no-repeat;
}*/
.section.section--special-features {
  background-color: #ffffff;
}
.section.section--special-features .wrapper {
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .section.section--special-features .wrapper .text {
    font-size: 32px;
    line-height: 1.2;
  }
  .nav-wrapper {
    margin-right: unset;
  }
  .section.section--report .wrapper {
    padding: 40px 40px 55px;
    max-width: 70vw;
  }
  .section--report_gackgound::before, .section.section--report::before {
    left: 75%;
    background-size: 40% 80%;
  }
  .section.section--report::before {
    left: -15%;
    background-size: 40% 80%;
  }
}
.section.section--report .section__content > .sub-figure {
  margin-top: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .section.section--report .section__content .sub-figure .scroll {
    margin-top: 4.2vw;
    overflow: auto;
  }
  .section.section--report .section__content .sub-figure .img .scroll {
    max-width: unset;
    width: 200vw;
  }
  .section.section--report {
    padding-top: 1px;
    padding-bottom: 16vw;
    padding-left: unset;
    padding-right: unset;
  }
  .section.section--special-features .wrapper .text span.main_title {
    display: block;
    font-size: 32px;
    line-height: 37px;
  }
  .section.section--report::before, .section--report_gackgound::before {
    background-size: 40% 30%;
    left: 77%;
  }
  .section.section--report::before {
    left: -17%;
  }
}
@media (max-width: 768px) {
  .section.section--report {
    padding-top: 16vw;
    padding-bottom: 16vw;
    padding-left: unset;
    padding-right: unset;
  }
}
.section.section--report .wrapper {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border-radius: 0px;
  padding: 0 70px 55px;
  position: relative;
  box-shadow: 0px 0px 15px -5px #777777;
}
.section.section--report .section__content {
  position: relative;
}
.section.section--report .section__content h3.section__subtitle {
  margin: 0 auto;
  margin: 100px 0px 100px 0px;
  display: flex;
  color: #fff;
  background-color: #cf121b;
  font-weight: 400;
  font-size: 1.5rem;
  top: 40px;
  z-index: 1;
  position: absolute;
  padding: 2px 5px;
}
h3.section.section--report .section__content {
  display: inline;
  color: #fff;
  background-color: #cf121b;
  font-weight: 400;
  font-size: 1.5rem;
  padding: 1px 5px;
  margin-bottom: 30px;
}
.section.section--report .section__content h4.section__subtitle_02 span {
  display: block;
  color: #231815;
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.section.section--report .section__content h2.section__subtitle {
  display: block;
  font-size: 18px;
  margin-top: 80px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  color: #595757;
  font-weight: 700;
  text-align: center;
  line-height: 30px;
}
.section.section--report .section__content h1.section__subtitle {
  display: block;
  font-size: 2.0rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  color: #41C6C1;
  text-align: center;
  line-height: 3.0rem;
}
.section.section--report .section__content h1.section__subtitle_02 {
  display: block;
  font-size: 3.4rem;
  z-index: 1;
  font-weight: 500;
  color: #231815;
  line-height: 4.8rem;
  position: relative;
  padding: 30px 0px 0px 00px;
  margin-bottom: 30px;
  font-style: italic;
  -webkit-padding: 180px 0px 0px 00px;
  -ms-padding: 180px 0px 0px 00px;
}
.section.section--report .section__content h1.section__subtitle_02 span {
  font-size: 70%;
}
@media (max-width: 768px) {
  .section.section--report .section__content h1.section__subtitle {
    font-size: 18px;
    line-height: 1.5rem;
  }
  .section.section--report .section__content h1.section__subtitle_02 {
    display: block;
    font-size: 1.6rem;
    line-height: 2.4rem;
    position: relative;
    text-align: center;
  }
  .section.section--report .section__content h4.section__subtitle_02 span {
    text-align: left;
	  margin-bottom: 20px;
  }
  .section.section--report .section__content h3.section__subtitle {
    margin: 0 auto;
    display: block;
    color: #fff;
    font-weight: 400;
    font-size: 1.2rem;
    top: 0px;
    z-index: 1;
  }
  .section.section--report .section__content h1.section__subtitle_02 {
    display: block;
    font-size: 1.8rem;
    z-index: 1;
    font-weight: 500;
    color: #231815;
    line-height: 2.6rem;
    position: relative;
    padding: 180px 0px 0px 00px;
    margin-bottom: 30px;
    font-style: italic;
    -webkit-padding: 180px 0px 0px 00px;
    -ms-padding: 180px 0px 0px 00px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 1), 1px 1px 3px rgba(255, 255, 255, 1), 1px 1px 3px rgba(255, 255, 255, 1), 1px 1px 3px rgba(255, 255, 255, 1), 1px 1px 3px rgba(255, 255, 255, 1), 1px 1px 3px rgba(255, 255, 255, 1), 1px 1px 3px rgba(255, 255, 255, 1), 1px 1px 3px rgba(255, 255, 255, 1);
  }
}
.content-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .section.section--report .section__content .content-div .content-text {
    padding-right: unset;
  }
  .section.section--report .section__content h3.section__subtitle {
    margin-top: 20%;
    margin-bottom: 10px;
  }
}
.section.section--report .wrapper {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border-radius: 0px;
  padding: 40px 70px 55px;
  position: relative;
}
.content-div h5 {
  font-size: 15px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.img_center {
  margin: 0 auto;
}
.img_center img {
  margin: 0 auto;
}
.title_02 {
  padding-top: 15px !important;
}
.border {
  border: 3px solid #FCD68F;
}
.border_r {
  border-right: 3px solid #FCD68F;
}
.red {
  color: #EB6112;
  position: relative;
}
.t_red {
  color: #EB6112;
}
.red span {
  font-size: 60%;
}
/*.red::after {
  content: "";
  display: block;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("../img/arrow-top-right.png") no-repeat;
  background-size: 100% 100%;
}*/
.red_s {
  color: #EB6112;
}
.red_s span {
  font-size: 60%;
}
.border_btm {
  position: relative;
}
.border_btm::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FCD68F;
  position: absolute;
  bottom: 0;
  left: 0px;
}
.section.section--finance .section--finance__title:before {
  content: "";
  display: block;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  background: url("../img/mark.svg") no-repeat;
  background-size: 100% 100%;
}
.section.section--finance_02 {
  margin-top: 20px;
  padding-top: 0px;
  margin-bottom: 5%;
}
a.movie {
  text-align: center;
  background-color: #f6ab00 !important;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section.section--finance_02 .section--finance__title {
  font-size: 15px;
}
.bottom {
  align-items: flex-end;
  margin-bottom: 30px;
}
h2.lounge-sub-title {
  position: relative;
}
@media (max-width: 768px) {
  .section.section--report .wrapper {
    padding: 20px;
    width: 95%
  }
  .sp_flex {
    display: block;
  }
  .section.section--finance_02 .section--finance__title {
    font-size: 15px;
    padding: 5px;
    margin-bottom: 10px;
    text-align: center;
    background-color: #F6AC00;
    width: 100%;
    color: #fff;
    border-radius: 25px;
  }
  .section.section--finance {
    padding: 0px 25px;
  }
  .lounge-footer-div div {
    width: 100%;
  }
  .lounge-footer-div div:last-child {
    width: 100%;
  }
}
.img_chart {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}
.column_txt {
  width: 57%;
}
a.lounge-link:hover {
  opacity: 0.7;
}
.h4_01 {
  background-color: #E6E6E6;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  width: 12%;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: 17px;
  padding: 60px 5px;
}
.yellow {
  padding: 25px 5px;
}
.h4_01::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 100%;
  background-color: #D0121B;
  position: absolute;
  top: 0px;
  left: -12px;
}
.yellow::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 100%;
  background-color: #F6AC00;
  position: absolute;
  top: 0px;
  left: -12px;
}
.h4_01 h4 {
  line-height: 1.5rem;
  font-size: 1.0rem;
}
@media (max-width: 768px) {
  .section.section--finance {
    max-width: 90vw;
    padding-top: 16vw;
    padding-left: unset;
    padding-right: unset;
  }
  .section.section--finance .section--finance__title {
    font: 6vw/1.2 "Noto Sans JP", sans-serif;
    padding-left: 5.6vw;
  }
  .section.section--finance .section--finance__title .section--finance__span {
    font: 4vw/1.7 "Roboto";
  }
  .section.section--finance .section--finance__title:before {
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 0.7vw;
  }
  .section.section--finance .section--finance__title:after {
    height: 4.3px;
  }
  .section.section--finance .table-title {
    margin-top: 4.2vw;
    font: 4vw/3 "Noto Sans JP", sans-serif;
    line-height: 3.0rem;
  }
  .section.section--finance .table-title .span {
    font-size: 3.2vw;
  }
  .section.section--finance .table-container {
    overflow: auto;
  }
  .section.section--finance .section--finance__table {
    margin-top: 4vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.8vw;
    width: 200vw;
  }
  .section.section--finance .section--finance__table .title-tr th {
    font: 3.2vw/1.4 "Noto Sans JP", sans-serif;
  }
  .section.section--finance .section--finance__table .title-tr .rising-finance {
    font: 3.2vw/1.4 "Noto Sans JP", sans-serif;
  }
  .section.section--finance .section--finance__table th {
    width: 22vw;
    height: 8.8vw;
    font: 3.2vw/1.2 "Roboto";
  }
  .section.section--finance .section--finance__table .index-item {
    font: 3.2vw/1.2 "Noto Sans JP", sans-serif;
  }
  .section.section--finance .checking-div .figure {
    padding-top: 1.2vw;
  }
  .section.section--finance .table-div {
    padding-top: 8vw;
    margin-top: 8vw;
  }
  .section.section--finance .table-div .notation {
    font-size: 3vw;
  }
  .section.section--finance .table-div .table-div__figure {
    -webkit-flex: 100%;
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
    -moz-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    max-width: 95%;
    margin-bottom: 6vw;
    height: 50vw;
    margin: 20px auto;
  }
  .section.section--finance .table-div .table-div__figure .figcaption {
    font-size: 3.2vw;
  }
  .h4_01 {
    margin-top: 30px;
    background-color: #E6E6E6;
    font-weight: 400;
    text-align: center;
    width: 95%;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: 17px;
    padding: 10px 5px;
  }
  .h4_01 h4 {
    font-size: 1.5rem;
  }
  .h4_01 br {
    display: none;
  }
  .section.section--finance_02 .section--finance__title {
    margin: 0 auto;
    width: 70%;
    margin-bottom: 15px;
  }
  .section.section--finance_02 {
    padding: 15px 20px;
    margin-bottom: 40px;
  }
  .img_chart {
    width: 100%;
  }
  .column_txt {
    width: 100%;
  }
  .column_img {
    width: 100%;
  }
  .chart_wrapper_right dl {
    justify-content: flex-start;
    align-items: baseline;
    margin-left: 0px;
    box-sizing: border-box;
    height: 130px;
  }
  .chart_wrapper_right dl {
    margin-top: 30px;
    height: 20%;
  }
  .light_gray_link a span {
    font-size: 1.2rem;
  }
  .light_gray_link span.arrow {
    position: relative;
    display: none;
  }
  .checkbox {
    width: 100%;
  }
  .checking-div p.content-text {
    margin-bottom: 0px;
  }

}.section--link .content-text{
		margin-top: 15px;
	}
.question-box {
  margin-bottom: 40px;
}
article.question-box h4 {
  line-height: 2.4rem;
  font-size: 1.8rem;
  color: #ea6011;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  padding-left: 2em;
  text-decoration: underline;
  text-decoration-color: #fdefd4;
  text-decoration-thickness: 4px;
}
article.question-box h4::before {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0;
  width: 25px;
  height: 25px;
  background: url("../img/a_mark.svg");
  background-repeat: no-repeat;
}
h3.h3_section__subtitle {
  color: #60ab34;
  font-weight: 400;
  font-size: 1.6rem;
  padding: 1px 5px;
  top: 2px;
  padding-left: 2.5em;
}
h3.h3_section__subtitle::before {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0;
  width: 25px;
  height: 25px;
  background: url("../img/q_mark.svg");
  background-repeat: no-repeat;
}
.h3_section__subtitle_wrapper {
  position: relative;
  margin-bottom: 20px;
}
.column_wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.column_wrapper div {
  width: 49%;
}
.column_wrapper_top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.column_wrapper_top div:first-child {
  width: 60%;
}
.column_wrapper_top div:last-child {
  width: 40%;
}
.checking-div p.content-text {
  margin-bottom: 0px;
}
ul.lounge_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
ul.lounge_list li {
  font-size: 1.6rem;
  width: 46%;
  display: inline-block;
  list-style: disc;
  position: relative;
}
ul.lounge_list li::before {
  content: "";
  display: block;
  position: absolute;
  left: -1.2em;
  top: 0.5em;
  width: 0.5em;
  height: 0.5em;
  background-color: #231815;
  border-radius: 50%;
}
.note {
  text-align: right;
  margin-bottom: 30px;
}
section.section--link {
  margin-bottom: 120px;
  position: relative;
}
.section--link--txt {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  color: #848484;
}


@media (max-width: 768px) {
  article.question-box h4, article.question-box h4.orange, article.question-box h4.orange, article.question-box h4.green, article.question-box h4.lime {
    font-size: 1.5rem;
  }
  .column_wrapper {
    flex-direction: column;
  }
  .column_wrapper div {
    width: 100%;
    margin-bottom: 10px;
  }
  .section.section--lounge .lounge-div .lounge-sub-title--small {
    font-size: 4vw;
    left: 0em;
    margin-top: 1em;
  }
  ul.lounge_list {
    flex-direction: column;
    padding-left: 20px;
  }
  ul.lounge_list li {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .question-box {
    margin-bottom: 60px;
  }

  .section.section--lounge .lounge-div .block-1 .figure {
    -webkit-flex: 0 0 40vw;
    -webkit-box-flex: 0 0 40vw;
    -webkit-flex: 0 0 40vw;
    -moz-box-flex: 0 0 40vw;
    -ms-flex: 0 0 40vw;
    flex: 0 0 40vw;
  }
}
h3.section__subtitle_message {
  position: relative;
  color: #000000;
  font-size: 1.6rem;
  text-indent: 2em;
  padding-top: 5px;
}
h3.section__subtitle_message::before {
  content: "";
  display: block;
  position: absolute;
  left: -0.1em;
  top: 0;
  width: 30px;
  height: 30px;
  background: url("../img/mark.svg");
  background-repeat: no-repeat;
}
h1.section__title {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 5.6rem;
  padding-top: 50px;
  padding-bottom: 20px;
  color: #000;
}
.lounge-div h1 {
  font-size: 2.4rem;
}
.column-text {
  font-size: 1.6rem;
  padding: 20px 0px 20px 0px;
  font-weight: 500;
  color: #6A6A6A;
  line-height: 1.8rem;
}
.section--lounge {
  position: relative;
}
.section--lounge .wrapper {
    background-color: #ffffff;
    padding: 0px 40px 60px 40px;
    border-radius: 5%;
    border: 2px #DADADA solid;
    width: 88%;
    margin: 0 auto;
}
.lounge-sub-content {
  position: absolute;
  bottom: -1%;
  left: -50%;
  right: -50%;
  margin: 0 auto;
  width: 70%;
  max-width: 760px;
  background-color: #ffffff;
  border-radius: 9999px;
  border: 2px #DADADA solid;
  padding: 20px 0px;
}
.lounge-sub-content h5 {
  font-weight: 400;
  font-size: 1.3rem;
  margin-left: 40px;
  margin-bottom: 5px;
}
.lounge-sub-content dl {
  margin-left: 40px;
  width: 90%;
  display: flex;
}
a.lounge-link {
  display: block;
  font-size: 1.8rem;
  padding: 10px 20px;
  color: #ffffff;
  border-radius: 35px;
  background-color: #EC6500;
  width: 280px;
  margin: 0 auto;
}
section.section--link_02 {
  position: relative;
  margin-top: 80px;
  margin-bottom: 20%;
}
.lounge-sub-title span {
  border: 1px solid #6A6A6A;
  border-radius: 5px;
  color: #6A6A6A;
  padding: 2px 10px;
  font-weight: 500;
  font-size: 70%;
} /* mainview-div内のdl、dt、ddのスタイル */
.mainview-div dl {
  border-top: 1px solid #DADADA;
  width: 100%;
  padding-top: 8px;
  display: inline-flex; /* dtとddを横並びにする */
  align-items: center; /* 垂直方向中央揃え */
  margin-top: 1em; /* コメント行との間隔 */
}
.mainview-div dt {
  background-color: #6A6A6A; /* 黒背景 */
  color: #fff; /* 白文字 */
  font-size: 1.0rem; /* フォントサイズ調整 */
  font-weight: 700; /* 太字 */
  padding: 3px 20px; /* 内側の余白 */
  border-radius: 0.5em; /* 左側の角を丸める */
  white-space: nowrap; /* テキストの折り返しを防ぐ */
}
.mainview-div dd {
  background-color: #fff; /* 白背景 */
  color: #231815; /* 黒文字 */
  font-size: 1.5rem; /* フォントサイズ調整 */
  font-weight: 700; /* 太字 */
  padding: 0.3em 0.8em; /* 内側の余白 */
  border-radius: 0 0.5em 0.5em 0; /* 右側の角を丸める */
  border-left: none; /* dtとの間に線が入らないように */
  white-space: nowrap; /* テキストの折り返しを防ぐ */
}
.mainview-div span {
  display: block;
  font-size: 2.0rem;
  font-weight: 600;
}
/* スマートフォン向けの調整 */
@media (max-width: 768px) {
  .mainview-div dl {
    margin-top: 4vw; /* SPでのマージン調整 */
  }
  .mainview-div dt, .mainview-div dd {
    font-size: 3.5vw; /* SPでのフォントサイズ調整 */
    padding: 0.8vw 2vw; /* SPでのパディング調整 */
    border-radius: 1vw; /* SPでの角丸調整 */
  }
  .column_wrapper_top {
    display: block;
  }
  h1.section__title {
    font-size: 2.0rem;
    line-height: 2.6rem;
  }
  .column_wrapper_top div:last-child {
    width: 100%
	}
    .section.section--mainview {
        height: 50vh;
        min-height: 300px;
        background-size: cover;
        background-position: right bottom;
		margin-top: 90%;
    }.background-white {
    background-color: #ffff;
    box-shadow: 0px 0px 5px 5px #ffff;
    padding: 30px 10px 10px 12px;
}h3.h3_section__subtitle::before , article.question-box h4::before{
    left: 0px;
	}section.section--link {
    margin-bottom: 70px;
	}
  .section.section--lounge .lounge-div .wrapper {
    padding: 10px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
border-radius: 20px;
}.section.section--lounge .lounge-div .block-1 {
    margin-top: -15px;
    margin-left: -22px;
}.column-text {
    font-size: 1.4rem;
    line-height: 2.4rem;
	}.section.section--lounge .lounge-div .lounge-footer-div div.flex_column_01, .section.section--lounge .lounge-div .lounge-footer-div div.flex_column_02{
		width: 100%;
	}
	.lounge-sub-content {
    position: absolute;
    bottom: -4%;
    left: -50%;
    right: -50%;
    margin: 0 auto;
    width: 91%;
    background-color: #ffffff;
    border-radius: 9999px;
    border: 2px #DADADA solid;
    padding: 12px 0px;
}section.section--link_02 {
    position: relative;
    margin-top: 120px;
	background: none;
	margin-bottom: 20%;
}.lounge-sub-content dl {
    margin-left: 20px;
    width: 90%;
    display: flex;
}
}@media screen and (min-width: 768px) and (max-width: 768px) {
    .lounge-sub-content {
        position: absolute;
        bottom: 5%;
        left: -50%;
        right: -50%;
        margin: 0 auto;
        width: 91%;
        background-color: #ffffff;
        border-radius: 9999px;
        border: 2px #DADADA solid;
        padding: 12px 0px;
    }
}