@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: #000000;
  font: 18px/1.5 "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 1em;
}

.section .sub-title.sub-title--small {
  color: #000000;
  font: 17px/2 "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.section .sub-title.sub-title--tiny {
  color: #000000;
  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 .content-text {
  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: 150vh;
    min-height: 720px;
    background: url(../img/mainview.jpg) no-repeat;
    background-size: cover;
    position: relative;
    background-position: top;
}


.section.section--mainview .logo {
  position: absolute;
  left: 5%;
  top: 4%;
  width: 15%;
}
@media (max-width: 768px) {
	
.section.section--mainview {
    height: auto;
    background: url(../img/mainview_sp.jpg) no-repeat;
    background-size: cover;
    position: relative;
    background-position: top;
}

	
  .section.section--mainview .logo {
    left: 4%;
    width: 130px;
  }
}
.section.section--mainview .mainview-div {
  color: #000000;
  position: absolute;
  top: 3%;
  right: 5%;
}
.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: 768px) {
.section.section--mainview .mainview-div {
  top: 13%;
    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: 20px;
  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;
}
.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-color: white;
  border-radius: 35px;
  padding: 0 70px 55px;
  position: relative;
}
@media (max-width: 768px) {
  .section.section--report .wrapper:before {
    display: none;
  }
}
@media (max-width: 768px) {
  .section.section--report .wrapper:after {
    display: none;
  }
}
.section.section--report .section__content {
  position: relative;
}
.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;
  }
}
.section.section--report .section__subtitle_img {
  background: url("../img/img_01.jpg") top;
  background-size: cover;
  position: relative;
  color: white;
  font: 20px/2.6 "Noto Sans JP", sans-serif;
  margin-bottom: 1.2em;
  z-index: 1;
  width: 100%;
  height: 55vh;	
  background-repeat: no-repeat;
}
@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: #777777;
}
.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;
  }
}
.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: #ea6011;
  border-radius: 50%;
}
.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;
  }
}
.section.section--lounge {
  background: url("../img/lounge-background3.jpg") ;
  background-size: contain;
  background-repeat: repeat;
  padding-top: 50px;
  padding-bottom: 70px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .section.section--lounge {
    padding-top: 16vw;
    padding-bottom: 16vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.section.section--lounge .lounge-div {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  background: url(../img/lounge-background1.png);
  background-size: 100% 100%;
  padding-bottom: 60px;
}
@media (max-width: 980px) {
  .section.section--lounge .lounge-div {
    padding-left: 80px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .section.section--lounge .lounge-div {
    background: white;
    box-shadow: 0 0 3vw rgba(0, 0, 0, 0.3);
    border-radius: 3vw;
    padding: 8vw 3vw;
  }
}
.section.section--lounge .lounge-div .wrapper {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.section.section--lounge .lounge-div .wrapper > .figure {
  position: absolute;
  right: -27px;
  top: 110px;
}
@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%);
  }
}
.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;
}
.section.section--lounge .lounge-div .block-1 .figure {
  -webkit-flex: 0 0 240px;
  -webkit-box-flex: 0 0 240px;
  -webkit-flex: 0 0 240px;
  -moz-box-flex: 0 0 240px;
  -ms-flex: 0 0 240px;
  flex: 0 0 240px;
}
.section.section--lounge .lounge-div .block-1 .figure .img {
  width: 100%;
}
@media (max-width: 768px) {
  .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;
  }
}
.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.png) 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.png) 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: 20px/1.2 "Noto Sans JP", sans-serif;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  position: relative;
  font-weight: 500;
}
.section.section--lounge .lounge-div .lounge-sub-title:before {
  content: "";
  display: block;
  position: absolute;
  left: -1em;
  top: 50%;
  width: 0.5em;
  height: 0.5em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #E97319;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .section.section--lounge .lounge-div .lounge-sub-title {
    font-size: 4vw;
    left: 1em;
    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;
}
@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: #000000;
  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 {
	font-weight: 500!important;
    color: #000000;
  font: 14px/1.8 "Noto Sans JP", sans-serif;
  display: block;
  margin-top: 1em;
  font-weight: normal;
}

@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%;
}
.section.section--footer .ranking-div .ranking-title {
  font: 28px/1 "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin-left: 0.8em;
  display: block;
  color: #231815;
  position: relative;
  z-index: 1;
}
.section.section--footer .ranking-div .ranking-title .ranking-span {
  color: #F6AC00;
}
.section.section--footer .ranking-div .ranking-title:after {
  content: "";
  display: block;
  position: absolute;
  left: 60px;
  bottom: -70px;
  height: 80px;
  width: 320px;
  font-weight: bold;
  color: white;
  background: center url(../img/ranking.png) no-repeat;
  background-size: contain;
  z-index: -1;
}
@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;
  }
}
.section.section--footer .moby-div .moby-figure .img {
  width: 100%;
}
.section.section--footer .moby-div .moby-div__right {
  -webkit-flex: 0 0 358px;
  -webkit-box-flex: 0 0 358px;
  -webkit-flex: 0 0 358px;
  -moz-box-flex: 0 0 358px;
  -ms-flex: 0 0 358px;
  flex: 0 0 358px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  z-index: 1;
}
@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 {
  z-index: 1;
  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 .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;
  }
}
.section.section--footer .moby-div .moby-div__right .wrapper {
  -webkit-flex: 0 0 160px;
  -webkit-box-flex: 0 0 160px;
  -webkit-flex: 0 0 160px;
  -moz-box-flex: 0 0 160px;
  -ms-flex: 0 0 160px;
  flex: 0 0 160px;
  z-index: 1;
}
@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: 1200px) {
  .nav-wrapper {
    margin-right: unset;
  }
}
@media (max-width: 768px) {
  .nav-wrapper {
    display: block;
    height: 92vw;
    background-color: rgba(255, 255, 255, 0.87);
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    z-index: 3;
    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;
  }
}
@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;
  }
}
@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;
}
.section.section--footer .ranking-div .ranking-title, .ranking-title_02 {
  font: 28px/1 "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin-left: 0.8em;
  display: block;
  color: #231815;
  position: relative;
  z-index: 1;
}
.section.section--footer_02 .ranking-div .ranking-title_02:after {
  content: "";
  display: block;
  position: absolute;
  left: 60px;
  bottom: -20px;
  height: 80px;
  width: 320px;
  font-weight: bold;
  color: white;
  background: center url("../img/img_13.png") no-repeat;
  background-size: contain;
  z-index: -999;
}
span.caption {
  font-size: 80%;
}
.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_02 .ranking-div .ranking-title_02:after {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    bottom: -40px;
    height: 80px;
    width: 230px;
    font-weight: bold;
    color: white;
    background: center url("../img/img_13.png") no-repeat;
    background-size: contain;
    z-index: -999;
  }
  .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;
  }
  h1.ranking-title_02 {
    font-size: 25px;
    padding: 0;
    margin: 0 !important;
  }
}
.section.section--report {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}.section.section--report::before, .section.section--report::after{
  content: "";
  display: block;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 5%;
  height: 100%;
  background: url("../img/bar.jpg") repeat;
  background-size: 100% 100%;
  z-index: 55;
}.section.section--report::after{
  left: 0px;
}
.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;
  }
	
.section.section--report::before, .section.section--report::after{
  width:2%;
	}
}

.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;
  }
}
@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;
  margin-bottom: 60px;
}

.section.section--report .section__content h3.section__subtitle {
  margin: 0 auto;
  margin: 100px 0px 0px 120px;
  display: flex;
  color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  top: 0px;
  z-index: 1;
  position: absolute;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  justify-content: flex-start;
  align-items: center;
}.section.section--report .section__content h3.section__subtitle span {
  font-size: 1.3rem;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
	display: block;
}
.section.section--report .section__content h3.section__subtitle::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 2.6rem;
  height: 2.6rem;
  background: url("../img/border.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 1px;
  left: -33px;
}

.section.section--report .section__content h4.section__subtitle span {
  display: block;
  color: #000;
  margin-top: 5px;
}
.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: 600;
  color: #ffffff;
  line-height: 4.2rem;
  position: relative;
  padding: 120px 0px 0px 80px;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
.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;
  padding: 50px 0px 0px 30px;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}.section.section--report .section__content h3.section__subtitle {
  margin: 0 auto;
  margin: 150px 0px 0px 30px;
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 1.2rem;
  top: 0px;
  z-index: 1;
}
}
.section.section--report .section__content .content-div .content-text {
  margin-bottom: 2em;
}
@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: 10px;
    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;
  padding-right: 1.5em !important;
}
.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/border.svg") no-repeat;
  background-size: 100% 100%;
}
.section.section--finance_02 {
  margin-top: 20px;
  padding-top: 0px;
  background-color: rgba(246, 172, 0, 0.2);
  padding: 10px 40px;
  margin-bottom: 5%;
}
.section.section--finance_02 .section--finance__title {
  font-size: 1.5rem;
  padding: 5px;
  text-align: center;
  background-color: #F6AC00;
  width: 20%;
  color: #fff;
  border-radius: 25px;
}
.section.section--finance_02 .section--finance__title::after {
  display: none;
}
.section.section--finance_02 .section--finance__title::before {
  display: none;
}
.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;
}
.lounge-footer-div div {
  width: 55%;
}
.lounge-footer-div div:last-child {
  width: 43%;
}
h2.lounge-sub-title {
  position: relative;
}
@media (max-width: 768px) {
  .section.section--report .wrapper {
    padding: 10px;
  }
  .section.section--report .wrapper {
    width: 90%
  }
  .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: 20px 25px;
  }
  .lounge-footer-div {
    display: block;
  }
  .lounge-footer-div div {
    width: 100%;
  }
  .lounge-footer-div div:last-child {
    width: 100%;
  }

}

.fukidashi_wrap {
	position: relative;
}

.fukidashi_box {
	position: absolute;
	right: 0;
	top:-150px;
	width: 310px;
	z-index: 999;
}

@media (max-width: 768px) {
	
.fukidashi_box {
	top:-206px;
}
	
	
}


.gray_box{
	background-color: #dcdddd;
		padding: 30px;
	display: flex;
	justify-content: space-between;

}.gray_box div{
	width: 74%;

}.gray_box .img{
	width: 24%;

}.gray_box h4 {
	font-size: 1.6rem;
	color: #595757;
	margin-bottom: 10px;
}@media (max-width: 768px) {
	.gray_box{
		width: 95%;
		margin: 0 auto;
		padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;

}.gray_box .img{
	width: 100%;

}.gray_box div{
	width: 100%;

}.gray_box h4 {
	margin-top: 10px;
}
}
.img_chart{
	width: 64%;
	margin: 0 auto;
	margin-top: 80px;

}.column_wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;

}.column_img {
  width: 40%;
}.column_txt {
  width: 57%;
}.img_08::after{
	    content: "";
    display: block;
    position: absolute;
    left: 80%;
    bottom: 60%;
    width: 200px;
    height: 150px;
    background: url(../img/img_08.png) no-repeat;
    background-size: 100% 100%;
}.img_09{
  width: 30%;
}.img_11{
  width: 180px;
  margin-left: 55%;
  position: relative;
}.column_txt_img_09{
  width: 67%;
}.img_09::after{
	    content: "";
    display: block;
    position: absolute;
    left: 10%;
    bottom: 75%;
    width: 210px;
    height: 120px;
    background: url(../img/img_09.png) no-repeat;
    background-size: 100% 100%;
}.img_11::after{
	content: "";
    display: block;
    position: absolute;
    right: 85%;
    bottom: 10%;
    width: 350px;
    height: 150px;
    background: url("../img/img_11_01.png") no-repeat;
    background-size: 100% 100%;
}.lightgray_box{
	background-color: #f7f5f2;
	padding: 30px 0px 60px 0px;
}.lightgray_box .logo{
	width: 30%;
	margin: 0 auto;
}.lightgray_box h4{
	text-align: center;
	color: #3ba8ba;
	font-size: 2.0rem;
	line-height: 28px;
	margin-bottom: 30px;
}.lightgray_box h4 span{
	text-align: center;
	color: #595757;
	font-size: 1.5rem;
}.chart_wrapper{
	width: 49%;
	border-right: 2px dotted #595757;
}
.chart_wrapper h4{
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  width: 100%;
  background-image: linear-gradient(90deg, rgba(156, 202, 72, 1), rgba(93, 194, 208, 1));
	transform: rotate(-7deg);
white-space: nowrap;
  margin-left: -20px;
}.chart_wrapper_right{
	display: block;
	width:100%;
}.chart_wrapper dl, .chart_wrapper_right dl{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100px;
	box-sizing: border-box;

}.chart_wrapper_right dl{
	justify-content: flex-start;
	align-items: center;
	margin-left: 20px;
	box-sizing: border-box;
	height: 130px;

}.chart_wrapper dl dt{
	width: 18%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}.chart_wrapper_right dl dt {
	display: flex;
	flex-direction: column;
	align-items: center;
}.chart_wrapper_right dl dt p{
	color: #60b8c7;
	font-weight: 700;
	font-size: 36px;
	line-height: 26px;
	margin-top: 5px;
}.chart_wrapper_right dl dt span{
	color: #595757;
	font-weight: 500;
	font-size: 10px;
}.chart_wrapper dl dd, .chart_wrapper_right dl dd{
	font-weight: 500;
	width: 70%;
	font-size: 18px;
	color: #595757;
	position: relative;
	line-height: 18px;
}.chart_wrapper dl dd::before{
	content: "";
    display: block;
    position: absolute;
    left: -12%;
    bottom: 50%;
    width: 25px;
    height: 25px;
    background: url("../img/check.svg") no-repeat;
    background-size: 100% 100%;
}.chart_wrapper dl dd span, .chart_wrapper_right dl dd span{
	font-size: 80%;
}.chart_wrapper_right h4.h4_02{
	margin-top: 10px;
	color:#595757;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.2rem;
	position: relative;
}.chart_wrapper_right h4.h4_02::before{
	content: "";
    display: block;
    position: absolute;
    left: 110px;
    bottom: 10%;
    width: 38px;
    height: 38px;
    background: url("../img/h4_02_left.png") no-repeat;
    background-size: 100% 100%;
}.chart_wrapper_right h4.h4_02::after{
	content: "";
    display: block;
    position: absolute;
    right: 110px;
    bottom: 10%;
    width: 38px;
    height: 38px;
    background: url("../img/h4_02_right.png") no-repeat;
    background-size: 100% 100%;
}.chart_wrapper_right h4.h4_02 span{
	color:#60b8c7;
	font-size: 34px;
}.lightgray_box section{
	display: flex;
	justify-content: space-between;
	align-items: center;
		border-top: #888888 2px solid;
	border-bottom: #888888 2px solid;
	width: 90%;
	margin: 0 auto;
	padding: 30px 0px 30px 0px;
	margin-top: 40px;
}.chart_wrapper_right dl dd{
	width: 60%;
	margin-left: 15px;
}.chart_wrapper_right dl dd p{
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	margin-top: 10px;
	position: relative;
	padding-right: 10px;
}
.chart_wrapper_right dl dd p::after{
	content: "";
    display: block;
    position: absolute;
    right: -90px;
    bottom: 10%;
    width: 80px;
    height: 80px;
    background: url("../img/chart_06.png") no-repeat;
    background-size: 100% 100%;
}.chart_wrapper_right dl dd.chart_07 p::after{
   	content: "";
    display: block;
    position: absolute;
    right: -90px;
    bottom: 10%;
    width: 80px;
    height: 80px;
    background: url("../img/chart_07.png") no-repeat;
    background-size: 100% 100%;
}.chart_wrapper_right dl dd.chart_08 p::after{
   	content: "";
    display: block;
    position: absolute;
    right: -150px;
    bottom: 10%;
    width: 150px;
    height: 60px;
    background: url("../img/chart_08.png") no-repeat;
    background-size: 100% 100%;
}.chart_wrapper_right dl dd.chart_09 p::after{
   	content: "";
    display: block;
    position: absolute;
    right: -150px;
    bottom: 10%;
    width: 150px;
    height: 60px;
    background: url("../img/chart_09.png") no-repeat;
    background-size: 100% 100%;
}

@media (max-width: 768px) {

.chart_wrapper dl dt {
		width: 25%;
	}
.chart_wrapper dl dd::before {
	left: -24%;
	}
.chart_wrapper dl dd {
	width: 53%;	
	}
.chart_wrapper_right dl dd {
	width: 73%;	
	}

	
.chart_wrapper_right h4.h4_02::before{
	left: -23px;
    bottom: -22%;
}.chart_wrapper_right h4.h4_02::after{
	right: -25px;
    bottom: -8%;
}
	
.chart_wrapper_right dl dd p::after {
    content: "";
    display: block;
    position: static;
    right: -90px;
    bottom: 10%;
    width: 137px;
    height: 126px;
    background: url(../img/chart_06.png) no-repeat;
    background-size: 80% 80%;
    background-position: 5px 15px, 10% 10%;
	
	}
	
.chart_wrapper_right dl dd.chart_07 p::after {
    content: "";
    display: block;
    position: static;
    right: -90px;
    bottom: 10%;
    width: 137px;
    height: 132px;
    background: url(../img/chart_07.png) no-repeat;
    background-size: 80% 80%;
    background-position: 5px 15px, 10% 10%;
	
	}
	
	
.chart_wrapper_right dl dd.chart_08 p::after {
    content: "";
    display: block;
    position: static;
    right: -90px;
    bottom: 10%;
    width: 272px;
    height: 107px;
    background: url(../img/chart_08.png) no-repeat;
    background-size: 70% 70%;
    background-position: 5px 15px, 10% 10%;
	
	}
	
.chart_wrapper_right dl dd.chart_09 p::after {
    content: "";
    display: block;
    position: static;
    right: -90px;
    bottom: 10%;
    width: 202px;
    height: 102px;
    background: url(../img/chart_09.png) no-repeat;
    background-size: 80% 80%;
    background-position: 5px 15px, 10% 10%;
	
	}
	
	
	
}

a.lounge-link{
	display: block;
	font-size: 20px;
	padding: 10px 20px;
	color: #ffffff;
	border-radius: 35px;
	background-color: #ea6011;
	width: 300px; 
	margin: 0 auto;
	margin-top: 40px;
}a.lounge-link:hover{
	opacity: 0.7;
}.light_gray_link a{
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}.light_gray_link a:hover{
	opacity: 0.7;
}.light_gray_link span.arrow{
	position: relative;
}.light_gray_link a span{
	padding: 0px 7px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	  background-image: linear-gradient(90deg, rgba(156, 202, 72, 1), rgba(93, 194, 208, 1));
	display: block;
	text-align: center;
}.light_gray_link span.arrow::before, .light_gray_link span.arrow::after{
	content: "";
    position: absolute;
    top: 50%;
    left: -45px;
    transform: translateY(-50%); 
    border: 8px solid transparent;
    border-left: 15px solid #888888;  
}.light_gray_link span.arrow::after{
	left: -25px;
}.light_gray_link a span.url{
	display: block;
	color: #595757;
	background: none;
	display: block;
}.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-bottom: 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_wrapper{
		flex-direction: column;
	}.column_txt{
		width: 100%;
	}.column_img{
		width: 100%;
	}.img_08::after {
    left: 35%;
    bottom: 10%;
}.img_09::after {
    left: 34%;
    bottom: 88%;
	}.column_txt_img_09{
		width: 100%;
		margin-top: 1em;
	}.lightgray_box {
    width: 95%;
	margin: 0 auto;
}.lightgray_box .logo{
	width: 50%;

	}.lightgray_box h4{
		font-size: 1.2rem;
    padding: 0 9px;
    transform: rotate(-3deg);
    margin-left: 0;
	}.img_11 {
   margin: 0 auto;
		padding: 10px;
}
.img_11::after {
        right: 8%;
    bottom: -8%;
    width: 250px;
    height: 108px;
	}
.lightgray_box section{
		flex-direction: column;
	}.chart_wrapper{
		width: 100%;
		border: none;
	}
	.chart_wrapper_inner{
		width: 100%;
    border: none;
    padding: 30px 15px;
    margin-top: -50px;
	}
	
	
	
	
	
	.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%;
	}

}