@charset "UTF-8";
.-center {
  text-align: center !important;
}

.-right {
  text-align: right !important;
}

.-left {
  text-align: left !important;
}

@media only screen and (max-width: 640px) {
  .-sp-center {
    text-align: center !important;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-right {
    text-align: right !important;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-left {
    text-align: left !important;
  }
}

.-bold {
  font-weight: bold;
}

.-sp {
  display: none !important;
}
@media only screen and (max-width: 640px) {
  .-sp {
    display: inherit !important;
  }
}

@media only screen and (max-width: 640px) {
  .-pc {
    display: none !important;
  }
}

.notes {
  margin-top: 0.5em;
  font-size: 1.3rem;
}

.animation {
  opacity: 0;
}

.-isFade {
  opacity: 0;
  position: relative;
  bottom: -3em;
}
.-isFade.isPlay {
  animation: fadein 1s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
    bottom: -3em;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
.-isFade02 {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.-isFade02::before, .-isFade02::after {
  content: "";
  background: linear-gradient(270deg, #FFF 49.59%, rgba(255, 255, 255, 0) 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
}
.-isFade02.isPlay {
  opacity: 1;
}
.-isFade02.isPlay::after {
  opacity: 0;
  left: 100%;
  transition: 2s;
}
.-isFade02.isPlay::before {
  opacity: 0;
  left: 100%;
  transition: 1s;
}

.-isLeft {
  opacity: 0;
  position: relative;
  left: -3em;
}
.-isLeft.isPlay {
  animation: Leftin 1s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes Leftin {
  0% {
    opacity: 0;
    left: -3em;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.-isRight {
  opacity: 0;
  position: relative;
  left: 3em;
}
.-isRight.isPlay {
  animation: Rightin 1s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes Rightin {
  0% {
    opacity: 0;
    left: 3em;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.-isRotate {
  animation: Rotate 60s linear infinite;
}

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.bg {
  padding: 8rem 0;
}
@media only screen and (max-width: 640px) {
  .bg {
    padding: 9.375vw 0;
  }
}
.bg.-lgreen {
  background: #F2F8E6;
}
.bg.-lgray {
  background: #F6F6F6;
}

.frame-border {
  border: solid 2px #231815;
  border-radius: 1.6rem;
  padding: 4rem;
}
@media only screen and (max-width: 640px) {
  .frame-border {
    padding: 3.75vw;
  }
}

.-border {
  border: solid 1px rgba(0, 0, 0, 0.25);
}

.page_nav {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 640px) {
  .page_nav {
    margin-bottom: 11.25vw;
  }
}
.page_nav_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem;
}
@media only screen and (max-width: 640px) {
  .page_nav_list {
    gap: 2.5vw;
  }
}
.page_nav_item {
  min-width: 19rem;
}
@media only screen and (max-width: 640px) {
  .page_nav_item {
    width: 27.1875vw;
    min-width: initial;
  }
}
.page_nav_item a,
.page_nav_item span {
  padding: 0.25em;
  display: block;
  font-size: 2rem;
  border-radius: 2em;
  border: solid 2px #231815;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .page_nav_item a,
  .page_nav_item span {
    padding: 0.5em;
    font-size: 3.125vw;
  }
}
.page_nav_item a.act,
.page_nav_item span.act {
  color: #231815;
}

.button-more {
  margin-top: 2em;
  display: block;
}
.button-more span,
.button-more a {
  padding: 2.4rem 2.4rem 2.4rem 3.2rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 2rem;
  justify-content: flex-start;
  text-decoration: none;
  color: #fff;
  border-radius: 1000px;
  background: linear-gradient(90deg, #003D4D 0%, #3B7C3B 100%);
  font-weight: 400;
  min-width: 28rem;
}
@media only screen and (max-width: 640px) {
  .button-more span,
  .button-more a {
    padding: 3.75vw 3.75vw 3.75vw 5vw;
    font-size: 3.75vw;
    min-width: 56.25vw;
  }
}
.button-more span::after,
.button-more a::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 0 0 auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media only screen and (max-width: 640px) {
  .button-more span::after,
  .button-more a::after {
    width: 1.875vw;
    height: 1.875vw;
  }
}
.button-more.-small {
  margin-top: 1em;
}
.button-more.-small span,
.button-more.-small a {
  padding: 2rem 2rem 2rem 2.8rem;
  min-width: 24rem;
}
@media only screen and (max-width: 640px) {
  .button-more.-small span,
  .button-more.-small a {
    padding: 3.125vw 3.125vw 3.125vw 4.375vw;
    min-width: 37.5vw;
    font-size: 3.125vw;
  }
}

.title {
  line-height: 1.4;
}
.title-withEn {
  margin-bottom: 5.6rem;
}
@media only screen and (max-width: 640px) {
  .title-withEn {
    margin-bottom: 8.75vw;
  }
}
.title-withEn .en {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 8rem;
  line-height: 1.4;
  font-weight: 300;
}
@media only screen and (max-width: 1580px) {
  .title-withEn .en {
    font-size: 6.8rem;
  }
}
@media only screen and (max-width: 640px) {
  .title-withEn .en {
    font-size: 11.25vw;
  }
}
.title-withEn .jp {
  font-size: 2.4rem;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 640px) {
  .title-withEn .jp {
    font-size: 4.0625vw;
  }
}
.title-withEn.-small {
  margin-bottom: 3.6rem;
}
@media only screen and (max-width: 640px) {
  .title-withEn.-small {
    margin-bottom: 3.75vw;
  }
}
.title-withEn.-small .en {
  font-size: 5.6rem;
}
@media only screen and (max-width: 1580px) {
  .title-withEn.-small .en {
    font-size: 4.8rem;
  }
}
@media only screen and (max-width: 1200px) {
  .title-withEn.-small .en {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 1580px) {
  .title-withEn.-small .jp {
    font-size: 2rem;
  }
}
.title_block {
  margin-bottom: 4em;
}
@media only screen and (max-width: 640px) {
  .title_block {
    margin-bottom: 3em;
  }
}
.title-content {
  margin-bottom: 1.5em;
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media only screen and (max-width: 640px) {
  .title-content {
    font-size: 5vw;
  }
}
.title-large {
  margin: 1.5em 0;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 640px) {
  .title-large {
    font-size: 6.25vw;
    letter-spacing: 0.05em;
  }
}
.title-mlarge {
  margin: 1.5em 0;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 640px) {
  .title-mlarge {
    font-size: 5vw;
    letter-spacing: 0.05em;
  }
}
.title-middle {
  margin: 1.5em 0;
  font-size: 4rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 640px) {
  .title-middle {
    font-size: 6.25vw;
  }
}
.title-small {
  margin: 1.5em 0;
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .title-small {
    font-size: 4.375vw;
  }
}
.title-xsmall {
  margin: 1em 0;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .title-xsmall {
    margin: 1.5em 0;
    font-size: 4.0625vw;
  }
}
.title-xxsmall {
  margin: 1em 0;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .title-xxsmall {
    margin: 1.5em 0;
    font-size: 3.75vw;
  }
}

.text_lead {
  font-size: 2rem;
  line-height: 1.8;
}
@media only screen and (max-width: 640px) {
  .text_lead {
    font-size: 3.4375vw;
  }
}
.text_small {
  font-size: 1.5rem;
}
.text_notes {
  margin-top: 1em;
  line-height: 1.4;
  font-size: 1.3rem;
}

.list_number {
  margin-left: 1.5em;
  list-style: decimal;
}
.list_number li {
  margin-bottom: 0.5em;
}

.column_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  .column_container {
    margin: 0 auto;
  }
}
.column_container.-column2 {
  gap: 6rem 5.2631578947%;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .column_container.-column2 {
    gap: 9.375vw;
  }
}
.column_container.-column2 .column_item {
  width: 47.3684210526%;
}
@media only screen and (max-width: 640px) {
  .column_container.-column2 .column_item {
    width: 100%;
  }
}
.column_container.-column3 {
  gap: 4.5rem 3.9473684211%;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .column_container.-column3 {
    gap: 5.46875vw;
  }
}
.column_container.-column3 .column_item {
  width: 30.701754386%;
}
@media only screen and (max-width: 640px) {
  .column_container.-column3 .column_item {
    width: 46.5517241379%;
  }
}
.column_container.-column3 .column_item p {
  line-height: 1.5;
}
.column_container.-column3 .column_item.-column3-2 {
  width: 65.350877193%;
}
@media only screen and (max-width: 640px) {
  .column_container.-column3 .column_item.-column3-2 {
    width: 46.5517241379%;
  }
}
.column_container.-column4 {
  gap: 4.5rem 3.9473684211%;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .column_container.-column4 {
    gap: 5.46875vw;
  }
}
.column_container.-column4 .column_item {
  width: 28.9473684211%;
}
@media only screen and (max-width: 640px) {
  .column_container.-column4 .column_item {
    width: 46.5517241379%;
  }
}
.column_container.-column4 .column_item p {
  line-height: 1.5;
}
.column_container.-column5 {
  gap: 3.5rem 3.0701754386%;
  justify-content: center;
  letter-spacing: 0;
}
@media only screen and (max-width: 640px) {
  .column_container.-column5 {
    gap: 4.6875vw;
  }
}
.column_container.-column5 .column_item {
  width: 17.5438596491%;
}
@media only screen and (max-width: 640px) {
  .column_container.-column5 .column_item {
    width: 46.5517241379%;
  }
}
.column_container.-column5 .column_item p {
  line-height: 1.5;
}
@media only screen and (max-width: 640px) {
  .column_container.-sp-column1 {
    flex-direction: column;
    gap: 6.25vw;
  }
}
@media only screen and (max-width: 640px) {
  .column_container.-sp-column1 .column_item {
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .column_container.-sp-column2 {
    gap: 3.125vw;
  }
}
@media only screen and (max-width: 640px) {
  .column_container.-sp-column2 .column_item {
    width: 48.275862069%;
  }
}
@media only screen and (max-width: 640px) {
  .column_container.-sp-column3 {
    gap: 3.125vw;
  }
}
@media only screen and (max-width: 640px) {
  .column_container.-sp-column3 .column_item {
    width: 30.1724137931%;
  }
}
@media only screen and (max-width: 640px) {
  .column_container .column_item.spHorizon {
    width: 100%;
    display: flex;
    gap: 4.6875vw;
  }
}
@media only screen and (max-width: 640px) {
  .column_container .column_item.spHorizon .spHorizon_image {
    width: 46.5517241379%;
  }
}
@media only screen and (max-width: 640px) {
  .column_container .column_item.spHorizon .spHorizon_body {
    width: 46.5517241379%;
  }
}
.column_container.-reverse {
  flex-direction: row-reverse;
}
.column_container.-flex-start {
  justify-content: flex-start;
}
.column_container.-align-center {
  align-items: center;
}

.-flex-start {
  justify-content: flex-start !important;
}

.-flex-end {
  justify-content: flex-end !important;
}

.width-200 {
  width: 20rem;
}
@media only screen and (max-width: 640px) {
  .width-200 {
    margin: 0 auto;
    width: 50%;
  }
}
.width-280 {
  width: 28rem;
}
@media only screen and (max-width: 640px) {
  .width-280 {
    margin: 0 auto;
    width: 50%;
  }
}
.width-320 {
  width: 32rem;
}
@media only screen and (max-width: 640px) {
  .width-320 {
    margin: 0 auto;
    width: 100%;
  }
}
.width-360 {
  width: 36rem;
}
@media only screen and (max-width: 640px) {
  .width-360 {
    width: 100%;
  }
}
.width-400 {
  width: 40rem;
}
@media only screen and (max-width: 640px) {
  .width-400 {
    width: 100%;
  }
}
.width-480 {
  width: 48rem;
}
@media only screen and (max-width: 640px) {
  .width-480 {
    width: 100%;
  }
}
.width-500 {
  width: 50rem;
}
@media only screen and (max-width: 640px) {
  .width-500 {
    width: 100%;
  }
}
.width-550 {
  width: 55rem;
}
@media only screen and (max-width: 640px) {
  .width-550 {
    width: 100%;
  }
}
@media only screen and (max-width: 640px) and (max-width: 640px) {
  .width-550 {
    width: 100%;
  }
}
.width-570 {
  width: 57rem;
}
@media only screen and (max-width: 640px) {
  .width-570 {
    width: 100%;
  }
}
.width-600 {
  width: 60rem;
}
@media only screen and (max-width: 640px) {
  .width-600 {
    width: 100%;
  }
}
.width-680 {
  width: 68rem;
}
@media only screen and (max-width: 640px) {
  .width-680 {
    width: 100%;
  }
}
.width-720 {
  width: 72rem;
}
@media only screen and (max-width: 640px) {
  .width-720 {
    width: 100%;
  }
}
.width-780 {
  width: 78rem;
}
@media only screen and (max-width: 640px) {
  .width-780 {
    width: 100%;
  }
}
.width-900 {
  width: 90rem;
}
@media only screen and (max-width: 640px) {
  .width-900 {
    width: 100%;
  }
}

.-bg {
  padding: 8rem 0;
  background: #F2F8E6;
}
@media only screen and (max-width: 640px) {
  .-bg {
    padding: 9.375vw 0;
  }
}

.table_container {
  margin: 4rem 0 6rem;
}
@media only screen and (max-width: 640px) {
  .table_container {
    margin: 6.25vw 0 9.375vw;
  }
}
.table_container.-scroll {
  overflow-x: scroll;
}
.table_container.-scroll .table_item {
  min-width: 114rem;
}
.table_item {
  width: 100%;
}
.table_item th,
.table_item td {
  padding: 1em 1.5em;
  border: solid 1px #ddd;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .table_item th,
  .table_item td {
    padding: 0.75em 0.75em;
    font-size: 2.8125vw;
  }
}
.table_item th {
  font-weight: 700;
  background: #F2F8E6;
}
.table_item th.-bgGreen {
  background: #231815;
  color: #fff;
}
.table_item td {
  background: #fff;
}
.table_item .line {
  background: url(../img/common/line_table.png) no-repeat left top;
  background-size: 100% 100%;
}
.table_item .-w10 {
  width: 10%;
}
.table_item .-w15 {
  width: 15%;
}
.table_item .-w20 {
  width: 20%;
}
.table_item .-w25 {
  width: 25%;
}
.table_item .-w33 {
  width: 33.3333333333%;
}
.table_item .-w40 {
  width: 40%;
}
.table_item .-w50 {
  width: 50%;
}
.table_item .-w55 {
  width: 55%;
}
.table_item .-w60 {
  width: 60%;
}
.table_item .-w66 {
  width: 66.6666666667%;
}
.table_item .-w75 {
  width: 75%;
}
.table_item .-w80 {
  width: 80%;
}
@media only screen and (max-width: 640px) {
  .table_item .-spAuto {
    width: auto;
  }
}
@media only screen and (max-width: 640px) {
  .table_item.-spBlock {
    display: block;
  }
  .table_item.-spBlock tbody,
  .table_item.-spBlock tr,
  .table_item.-spBlock th,
  .table_item.-spBlock td {
    display: block;
    width: 100%;
  }
}

.nav-below {
  margin: 10rem 0 0;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .nav-below {
    margin: 7.8125vw 0 0;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  font-size: 2rem;
}
@media only screen and (max-width: 640px) {
  .wp-pagenavi {
    font-size: 3.125vw;
  }
}
.wp-pagenavi span,
.wp-pagenavi a {
  border: none !important;
  min-width: 4rem;
  height: 4rem;
  margin: 0 5px;
  background: #F2F8E6;
  text-align: center;
  font-weight: 700;
}
@media only screen and (max-width: 640px) {
  .wp-pagenavi span,
  .wp-pagenavi a {
    margin: 0 0.78125vw;
    min-width: 6.25vw;
    height: 6.25vw;
  }
}
.wp-pagenavi span:hover, .wp-pagenavi span.current {
  border: none !important;
  background: #231815;
  color: #fff;
}
.wp-pagenavi a:hover, .wp-pagenavi a.current {
  background: #231815;
  color: #fff;
}

.content {
  margin: 10rem auto;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .content {
    margin: 12.5vw auto;
  }
}

.slick-slider .slick-arrow {
  width: 2.8rem;
  height: 2.8rem;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.slick-slider .slick-arrow::before {
  content: "";
}
.slick-slider .slick-prev {
  left: 0;
  background: url(../img/common/arrow_prev.svg) no-repeat center center;
}
.slick-slider .slick-prev:hover {
  opacity: 0.6;
  background: url(../img/common/arrow_prev.svg) no-repeat center center;
}
.slick-slider .slick-next {
  right: 0;
  background: url(../img/common/arrow_next.svg) no-repeat center center;
}
.slick-slider .slick-next:hover {
  opacity: 0.6;
  background: url(../img/common/arrow_next.svg) no-repeat center center;
}
.slick-slider .slick-dots {
  bottom: 0;
  z-index: 1;
  bottom: -4.5rem;
}
@media only screen and (max-width: 640px) {
  .slick-slider .slick-dots {
    bottom: -7.03125vw;
  }
}
.slick-slider .slick-dots li {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 1rem;
}
@media only screen and (max-width: 640px) {
  .slick-slider .slick-dots li {
    width: 2.34375vw;
    height: 2.34375vw;
    margin: 0 1.5625vw;
  }
}
.slick-slider .slick-dots li button {
  padding: 0;
}
.slick-slider .slick-dots li button:before {
  content: "●";
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  border-radius: 0.6rem;
  color: transparent;
  opacity: 1;
}
@media only screen and (max-width: 640px) {
  .slick-slider .slick-dots li button:before {
    width: 2.34375vw;
    height: 2.34375vw;
  }
}
.slick-slider .slick-dots li.slick-active button::before {
  content: "";
  background: #F2F8E6;
}

.mt-l {
  margin-top: 4em;
}
@media only screen and (max-width: 640px) {
  .mt-l {
    margin-top: 2em;
  }
}

.mt-ml {
  margin-top: 3em;
}
@media only screen and (max-width: 640px) {
  .mt-ml {
    margin-top: 2em;
  }
}

.mt-m {
  margin-top: 2em;
}
@media only screen and (max-width: 640px) {
  .mt-m {
    margin-top: 1.6em;
  }
}

.mt-sm {
  margin-top: 1.5em;
}
@media only screen and (max-width: 640px) {
  .mt-sm {
    margin-top: 1em;
  }
}

.mt-s {
  margin-top: 1em;
}
@media only screen and (max-width: 640px) {
  .mt-s {
    margin-top: 0.75em;
  }
}

.mt-ss {
  margin-top: 0.5em;
}

.mt-0 {
  margin-top: 0;
}

@media only screen and (max-width: 640px) {
  .-sp-mt-0 {
    margin-top: 0;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-mt-m {
    margin-top: 2em;
  }
}

.mb-l {
  margin-bottom: 4em;
}
@media only screen and (max-width: 640px) {
  .mb-l {
    margin-bottom: 3em;
  }
}

.mb-ml {
  margin-bottom: 3em;
}
@media only screen and (max-width: 640px) {
  .mb-ml {
    margin-bottom: 2.4em;
  }
}

.mb-m {
  margin-bottom: 2em;
}
@media only screen and (max-width: 640px) {
  .mb-m {
    margin-bottom: 1.6em;
  }
}

.mb-sm {
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 640px) {
  .mb-sm {
    margin-bottom: 1em;
  }
}

.mb-s {
  margin-bottom: 1em;
}
@media only screen and (max-width: 640px) {
  .mb-s {
    margin-bottom: 0.75em;
  }
}

.mb-ss {
  margin-bottom: 0.5em;
}

.mb-0 {
  margin-bottom: 0;
}

@media only screen and (max-width: 640px) {
  .-sp-mb-0 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-mb-s {
    margin-bottom: 1em;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-mb-sm {
    margin-bottom: 1.5em;
  }
}

.-colorBlack {
  color: #000 !important;
}

.-colorRed {
  color: rgb(255, 0, 0);
}

.-colorGreen {
  color: #231815;
}

.-colorGray {
  color: rgb(91, 95, 98);
}

.-underLine {
  text-decoration: underline;
}

.-weight700 {
  font-weight: 700;
}

.-size14 {
  font-size: 1.4rem;
}
@media only screen and (max-width: 640px) {
  .-size14 {
    font-size: 2.8125vw;
  }
}
.-size16 {
  font-size: 1.6rem;
}
@media only screen and (max-width: 640px) {
  .-size16 {
    font-size: 2.5vw;
  }
}
.-size20 {
  font-size: 2rem;
}
@media only screen and (max-width: 640px) {
  .-size20 {
    font-size: 3.75vw;
  }
}
.-size24 {
  font-size: 2.4rem;
}
@media only screen and (max-width: 640px) {
  .-size24 {
    font-size: 4.375vw;
  }
}
.-size28 {
  font-size: 2.8rem;
}
@media only screen and (max-width: 640px) {
  .-size28 {
    font-size: 4.375vw;
  }
}
.-size32 {
  font-size: 3.2rem;
}
@media only screen and (max-width: 640px) {
  .-size32 {
    font-size: 5.625vw;
  }
}

.-nowrap {
  white-space: nowrap;
}

/* 例：画像ラッパー */
.figure-wrap {
  position: relative;
}/*# sourceMappingURL=module.css.map */