@charset "UTF-8";
.mainColor {
  color: #333;
}

.subColor01 {
  color: #c51315;
}

.shuiro {
  color: #CE3B27;
}

.white {
  color: #ffffff;
}

.brown {
  color: #6A3E0B;
}

.bronze {
  color: #7B6119;
}

.blue {
  color: #004597;
}

.green {
  color: #408827;
}

.gold {
  color: #BEB887;
}

.beige {
  color: #F8EFD8;
}

.headercl {
  color: #0F1A3C;
}

.footercl {
  color: #0F1A3C;
}

.footertxt {
  color: #04C8FD;
}

li {
  list-style-type: none;
}

/*- 文字サイズ自動変更--------------------*/
/*- 文字サイズ記述見本----------*/
/*
p {
  @include module.fs(36,36,24,20,18,18);
}
p {
  @include fs2(20,10);
    @include module.fs2(36, 20);
}
*/
/*- 表示非表示-------------------*/
/* visible-xx-ijo */
@media (max-width: 575px) {
  .visible-sm-ijo {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .visible-md-ijo {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .visible-lg-ijo {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .visible-xl-ijo {
    display: none !important;
  }
}
/* visible-xx-ika */
@media (min-width: 576px) {
  .visible-xs-ika {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .visible-sm-ika {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .visible-md-ika {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-ika {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .visible-xl-ika {
    display: none !important;
  }
}
/* hidden-xx-ijo */
@media (min-width: 576px) {
  .hidden-sm-ijo {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-md-ijo {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden-lg-ijo {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xl-ijo {
    display: none !important;
  }
}
/* hidden-xx-ika */
@media (max-width: 575px) {
  .hidden-xs-ika {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-sm-ika {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .hidden-md-ika {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .hidden-lg-ika {
    display: none !important;
  }
}
@media (max-width: 1399px) {
  .hidden-xl-ika {
    display: none !important;
  }
}
/*- 基本パーツ-------------------*/
.align-center {
  text-align: center;
}

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

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

.align-center-pc {
  text-align: center;
}

@media (max-width: 767px) {
  .align-center-pc {
    text-align: left;
  }
}
.bold {
  font-weight: bold;
}

small {
  font-size: smaller !important;
}

.lh-2 {
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .lh-2 {
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .lh-2 {
    line-height: 1.6;
  }
}

.img-responsive {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

.cf::before, .cf::after {
  display: table;
  clear: both;
  content: "";
}

.alpha {
  transition: opacity 250ms;
}
.alpha:hover {
  opacity: 0.75;
}

.indent1 li,
p.indent1 {
  padding-left: 1em;
  text-indent: -1em;
}

.indent2 li,
p.indent2 {
  padding-left: 2em;
  text-indent: -2em;
}

.indent3 li,
p.indent3 {
  padding-left: 3em;
  text-indent: -3em;
}

/*-hover------------------*/
.hover a {
  -webkit-transition: 350ms;
  transition: 350ms;
}

.hover a:hover {
  opacity: 0.7;
}

a.hover {
  -webkit-transition: 350ms;
  transition: 350ms;
}

a.hover:hover {
  opacity: 0.7;
}

button.hover {
  -webkit-transition: 350ms;
  transition: 350ms;
}

button.hover:hover {
  opacity: 0.7;
}

input.hover {
  -webkit-transition: 350ms;
  transition: 350ms;
}

input.hover:hover {
  opacity: 0.7;
}

a.underline {
  text-decoration: underline;
}

a.underline:hover {
  text-decoration: none;
}

.box-shadow {
  transition: all 0.4s ease-in-out;
}

.box-shadow:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.mojikan {
  font-feature-settings: "palt";
  letter-spacing: 3px;
}

/*- Animate.css wow.js 用--------------------*/
.wow-fadeout {
  animation-fill-mode: forwards;
}

@keyframes fadeInUpMin {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpMin {
  animation-name: fadeInUpMin;
}

@keyframes fadeInLeftMin {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftMin {
  animation-name: fadeInLeftMin;
}

@keyframes fadeInRightMin {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightMin {
  animation-name: fadeInRightMin;
}

/*- カラム落ちメモ3----grid利用--------------------*/
/*- parts-width-----------------*/
.pc-w95 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w95 {
    width: 95%;
  }
}

.pc-w90 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w90 {
    width: 90%;
  }
}

.pc-w85 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w85 {
    width: 85%;
  }
}

.pc-w80 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w80 {
    width: 80%;
  }
}

.pc-w70 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w70 {
    width: 70%;
  }
}

.pc-w60 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w60 {
    width: 60%;
  }
}

/*- parts-grid-----------------*/
.grid-pcsp2 {
  width: 100%;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .grid-pcsp2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1rem;
  }
}

/*mainvisual ------------------------------------------*/
.mainvisual {
  width: 100%;
  position: relative;
  padding-bottom: 3rem;
  background-image: url("../../images/common/mv.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 600px;
  padding-top: auto;
}
@media screen and (max-width: 991px) {
  .mainvisual {
    height: auto;
    padding-top: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual {
    background-image: url("../../images/common/sp_mv_bg.png");
    height: auto;
  }
}
.mainvisual .mv_wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 600px;
}
@media screen and (max-width: 767px) {
  .mainvisual .mv_wrapper {
    width: 90%;
    height: auto;
  }
}
.mainvisual .mv_wrapper::before, .mainvisual .mv_wrapper::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 28%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}
.mainvisual .mv_wrapper::before {
  left: 0;
  background-image: url("../../images/common/mv-left.png");
  background-size: 80%;
}
@media screen and (max-width: 991px) {
  .mainvisual .mv_wrapper::before {
    background-size: 90%;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual .mv_wrapper::before {
    background-image: none;
    height: auto;
  }
}
.mainvisual .mv_wrapper::after {
  right: 0;
  background-image: url("../../images/common/mv-right.png");
  background-size: 90%;
}
@media screen and (max-width: 991px) {
  .mainvisual .mv_wrapper::after {
    background-size: 90%;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual .mv_wrapper::after {
    background-image: none;
    height: auto;
  }
}
.mainvisual .mv_wrapper .mv_txt {
  margin: 0 auto;
  color: #ffffff;
  max-width: 700px;
  text-align: center;
  position: relative;
  padding-top: 80px;
}
@media screen and (max-width: 991px) {
  .mainvisual .mv_wrapper .mv_txt {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual .mv_wrapper .mv_txt {
    padding-top: 10px;
  }
}
.mainvisual .mv_wrapper .mv_txt h1 {
  font-weight: bold;
  line-height: 60px;
}
@media only screen and (min-width: 1200px) {
  .mainvisual .mv_wrapper .mv_txt h1 {
    font-size: 6.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainvisual .mv_wrapper .mv_txt h1 {
    font-size: calc(5.6rem + (1vw - 0.992rem) * (3.8647342995));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mainvisual .mv_wrapper .mv_txt h1 {
    font-size: calc(4.8rem + (1vw - 0.768rem) * (3.5874439462));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mainvisual .mv_wrapper .mv_txt h1 {
    font-size: calc(4rem + (1vw - 0.576rem) * (4.1884816754));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .mainvisual .mv_wrapper .mv_txt h1 {
    font-size: calc(3.2rem + (1vw - 0.421rem) * (5.1948051948));
  }
}
@media only screen and (max-width: 420px) {
  .mainvisual .mv_wrapper .mv_txt h1 {
    font-size: calc(2.4rem + (1vw - 0.32rem) * (8));
  }
}
.mainvisual .mv_wrapper .mv_txt span {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  .mainvisual .mv_wrapper .mv_txt span {
    font-size: 5.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainvisual .mv_wrapper .mv_txt span {
    font-size: calc(4.72rem + (1vw - 0.992rem) * (3.2850241546));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mainvisual .mv_wrapper .mv_txt span {
    font-size: calc(4.04rem + (1vw - 0.768rem) * (3.0493273543));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mainvisual .mv_wrapper .mv_txt span {
    font-size: calc(3.36rem + (1vw - 0.576rem) * (3.5602094241));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .mainvisual .mv_wrapper .mv_txt span {
    font-size: calc(2.68rem + (1vw - 0.421rem) * (4.4155844156));
  }
}
@media only screen and (max-width: 420px) {
  .mainvisual .mv_wrapper .mv_txt span {
    font-size: calc(2rem + (1vw - 0.32rem) * (6.8));
  }
}
.mainvisual .mv_wrapper .mv_txt span::before {
  content: "";
  background: url("../../images/common/logo-insta.png");
  width: 40px;
  height: 40px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}
.mainvisual .mv_wrapper .mv_txt h2 {
  font-weight: 600;
  line-height: 57px;
}
@media only screen and (min-width: 1200px) {
  .mainvisual .mv_wrapper .mv_txt h2 {
    font-size: 5.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainvisual .mv_wrapper .mv_txt h2 {
    font-size: calc(4.72rem + (1vw - 0.992rem) * (3.2850241546));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mainvisual .mv_wrapper .mv_txt h2 {
    font-size: calc(4.04rem + (1vw - 0.768rem) * (3.0493273543));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mainvisual .mv_wrapper .mv_txt h2 {
    font-size: calc(3.36rem + (1vw - 0.576rem) * (3.5602094241));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .mainvisual .mv_wrapper .mv_txt h2 {
    font-size: calc(2.68rem + (1vw - 0.421rem) * (4.4155844156));
  }
}
@media only screen and (max-width: 420px) {
  .mainvisual .mv_wrapper .mv_txt h2 {
    font-size: calc(2rem + (1vw - 0.32rem) * (6.8));
  }
}
@media screen and (max-width: 767px) {
  .mainvisual .mv_wrapper .mv_txt h2 {
    line-height: 36px;
  }
}
.mainvisual .mv_wrapper .mv_txt .chibaumi-tag {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .mainvisual .mv_wrapper .mv_txt .chibaumi-tag {
    padding-top: 10px;
  }
}
.mainvisual .mv_wrapper .mv_txt h3 {
  font-weight: 600;
  padding-top: 20px;
}
@media only screen and (min-width: 1200px) {
  .mainvisual .mv_wrapper .mv_txt h3 {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainvisual .mv_wrapper .mv_txt h3 {
    font-size: calc(2.08rem + (1vw - 0.992rem) * (0.5797101449));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mainvisual .mv_wrapper .mv_txt h3 {
    font-size: calc(1.96rem + (1vw - 0.768rem) * (0.5381165919));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mainvisual .mv_wrapper .mv_txt h3 {
    font-size: calc(1.84rem + (1vw - 0.576rem) * (0.6282722513));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .mainvisual .mv_wrapper .mv_txt h3 {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.7792207792));
  }
}
@media only screen and (max-width: 420px) {
  .mainvisual .mv_wrapper .mv_txt h3 {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (1.2));
  }
}
@media screen and (max-width: 767px) {
  .mainvisual .mv_wrapper .mv_txt h3 {
    font-weight: 400;
    padding-bottom: 10px;
    padding-top: 0;
  }
}

/*.pickup ------------------------------------------*/
.pickup {
  margin: 5rem 0 5rem;
}
.pickup .l-wrapper {
  background-color: rgba(255, 255, 255, 0.6);
}
.pickup .l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}
.pickup .l-section .l-inner {
  padding: 5rem 0 5rem;
}
.pickup [class*=swiper]:focus {
  outline: none;
}
.pickup .slide-media,
.pickup .thumb-media {
  position: relative;
  overflow: hidden;
}
.pickup .slide-media img,
.pickup .thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.pickup .swiper-button-prev,
.pickup .swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.pickup .swiper-button-prev::before,
.pickup .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
.pickup .swiper-button-prev::after,
.pickup .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}
.pickup .swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.pickup .swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.pickup .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.pickup .l-section {
  overflow: hidden;
}
.pickup .swiper {
  overflow: visible;
}
.pickup .swiper-button-prev,
.pickup .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.pickup .swiper-button-prev::before,
.pickup .swiper-button-next::before {
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: var(--box-shadow-dark);
  box-shadow: var(--box-shadow-dark);
}
.pickup .swiper-button-prev::after,
.pickup .swiper-button-next::after {
  border-color: #fff;
}
.pickup .swiper-button-prev {
  right: calc(100% - 1.6rem);
}
.pickup .swiper-button-next {
  left: calc(100% - 1.6rem);
}
.pickup .slide {
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.pickup .slide:hover {
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}
.pickup .slide-media {
  padding-top: 66.6%;
  line-height: 1;
}
.pickup .slide-media img {
  height: 100%;
}
.pickup .slide-content {
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .pickup .slide-content {
    padding: 1.5rem 1rem;
  }
}
.pickup .slide-title {
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  color: #307091;
  font-weight: bold;
}
@media only screen and (min-width: 1200px) {
  .pickup .slide-title {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pickup .slide-title {
    font-size: calc(1.66rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pickup .slide-title {
    font-size: calc(1.62rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pickup .slide-title {
    font-size: calc(1.58rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .pickup .slide-title {
    font-size: calc(1.54rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  .pickup .slide-title {
    font-size: calc(1.5rem + (1vw - 0.32rem) * (0.4));
  }
}
.pickup .swiper-slide:not(.swiper-slide-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}
@media only screen and (max-width: 1024px) {
  .pickup .pc {
    display: none !important;
  }
  .pickup .swiper {
    padding: 0 3.2rem;
  }
  .pickup .swiper-button-prev {
    right: calc(100% - 5.2rem);
  }
  .pickup .swiper-button-next {
    left: calc(100% - 5.2rem);
  }
}
@media only screen and (max-width: 599px) {
  .pickup html {
    font-size: 50%;
  }
  .pickup .pc-tab {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .pickup .tab-sp {
    display: none !important;
  }
  .pickup .swiper-button-prev::before,
  .pickup .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .pickup .swiper-button-prev:hover::before,
  .pickup .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .pickup .slide img {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
}
@media only screen and (min-width: 600px) {
  .pickup .sp {
    display: none !important;
  }
}

/*.news -contents-post-----------------------------------------*/
.contents-post {
  background-color: #ffffff;
}
.contents-post .contents-post-inner {
  padding: 2rem 3rem 3rem;
  border: 3px solid #c51315;
  border-radius: 30px;
}
@media screen and (max-width: 575px) {
  .contents-post .contents-post-inner {
    padding: 1.5rem 1.5rem 1.5rem;
  }
}
.contents-post .contents-post-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.contents-post .contents-post-top h2 {
  padding-left: 15px;
  color: #c51315;
  position: relative;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  .contents-post .contents-post-top h2 {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contents-post .contents-post-top h2 {
    font-size: calc(2.48rem + (1vw - 0.992rem) * (0.5797101449));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contents-post .contents-post-top h2 {
    font-size: calc(2.36rem + (1vw - 0.768rem) * (0.5381165919));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contents-post .contents-post-top h2 {
    font-size: calc(2.24rem + (1vw - 0.576rem) * (0.6282722513));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .contents-post .contents-post-top h2 {
    font-size: calc(2.12rem + (1vw - 0.421rem) * (0.7792207792));
  }
}
@media only screen and (max-width: 420px) {
  .contents-post .contents-post-top h2 {
    font-size: calc(2rem + (1vw - 0.32rem) * (1.2));
  }
}
.contents-post .contents-post-top h2:before {
  content: "";
  position: absolute;
  background-color: #c51315;
  width: 3px;
  height: 20px;
  left: 0;
  top: 52%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.contents-post .contents-post-top .contents-post-more {
  align-self: center;
}
.contents-post .contents-post-top .contents-post-more a {
  background-image: url("../../images/common/icon-circle-right.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 70%;
  padding-left: 30px;
  display: inline-block;
  white-space: nowrap;
  line-height: 1.6;
}
@media only screen and (min-width: 1200px) {
  .contents-post .contents-post-top .contents-post-more a {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contents-post .contents-post-top .contents-post-more a {
    font-size: calc(1.92rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contents-post .contents-post-top .contents-post-more a {
    font-size: calc(1.84rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contents-post .contents-post-top .contents-post-more a {
    font-size: calc(1.76rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  .contents-post .contents-post-top .contents-post-more a {
    font-size: calc(1.68rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  .contents-post .contents-post-top .contents-post-more a {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.8));
  }
}
@media screen and (max-width: 575px) {
  .contents-post .contents-post-top .contents-post-more a {
    padding-left: 22px;
  }
}

#campaign::before {
  content: "";
  display: block;
  height: 180px;
  margin-top: -100px;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  #campaign::before {
    height: 0px;
    margin-top: 0px;
  }
}

#news::before {
  content: "";
  display: block;
  height: 180px;
  margin-top: -100px;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  #news::before {
    height: 0px;
    margin-top: 0px;
  }
}

#entry-flow::before {
  content: "";
  display: block;
  height: 180px;
  margin-top: -100px;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  #entry-flow::before {
    height: 0px;
    margin-top: 0px;
  }
}

#present::before {
  content: "";
  display: block;
  height: 180px;
  margin-top: -100px;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  #present::before {
    height: 0px;
    margin-top: 0px;
  }
}

#info::before {
  content: "";
  display: block;
  height: 180px;
  margin-top: -100px;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  #info::before {
    height: 0px;
    margin-top: 0px;
  }
}

/* #campaign----------------------------------------*/
#campaign {
  width: 90%;
  margin: 0px auto 0 auto;
}
#campaign .wrapper {
  margin: 0 auto;
  text-align: center;
  padding: 0 !important;
}
#campaign .wrapper .camp_day {
  position: relative;
  margin-bottom: 20px;
  background-image: url("../../images/common/cam_left.svg"), url("../../images/common/cam_right.svg");
  background-position: top left, top right;
  background-repeat: no-repeat, no-repeat;
  background-size: 16%, 16%;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #campaign .wrapper .camp_day {
    background-image: url("../../images/common/sp_cam_left.svg"), url("../../images/common/sp_cam_right.svg");
    background-position: top 16vw left, top 21vw right;
    background-size: 19%, 22%;
  }
}
#campaign .wrapper .camp_day .camp_point {
  position: absolute;
  top: 25%;
  right: 0%;
  width: 25%;
}
@media screen and (max-width: 991px) {
  #campaign .wrapper .camp_day .camp_point {
    top: 36%;
    right: 2%;
    z-index: 99;
  }
}
@media screen and (max-width: 767px) {
  #campaign .wrapper .camp_day .camp_point {
    position: static;
    top: 36%;
    right: 2%;
    z-index: 99;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #campaign .wrapper .camp_day .camp_point img {
    margin: 0 auto;
  }
}
#campaign .wrapper .camp_day h2 {
  color: #202A49;
}
@media only screen and (min-width: 1200px) {
  #campaign .wrapper .camp_day h2 {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #campaign .wrapper .camp_day h2 {
    font-size: calc(2.4rem + (1vw - 0.992rem) * (0.9661835749));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #campaign .wrapper .camp_day h2 {
    font-size: calc(2.2rem + (1vw - 0.768rem) * (0.8968609865));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #campaign .wrapper .camp_day h2 {
    font-size: calc(2rem + (1vw - 0.576rem) * (1.0471204188));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  #campaign .wrapper .camp_day h2 {
    font-size: calc(1.8rem + (1vw - 0.421rem) * (1.2987012987));
  }
}
@media only screen and (max-width: 420px) {
  #campaign .wrapper .camp_day h2 {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (2));
  }
}
@media screen and (max-width: 767px) {
  #campaign .wrapper .camp_day h2 {
    font-weight: 600;
  }
}
#campaign .wrapper .camp_day h2::before, #campaign .wrapper .camp_day h2::after {
  content: "●";
  color: #04C8FD;
  padding: 0 5px;
}
#campaign .wrapper .camp_day h3 {
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
@media only screen and (min-width: 1200px) {
  #campaign .wrapper .camp_day h3 {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #campaign .wrapper .camp_day h3 {
    font-size: calc(2.88rem + (1vw - 0.992rem) * (1.5458937198));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #campaign .wrapper .camp_day h3 {
    font-size: calc(2.56rem + (1vw - 0.768rem) * (1.4349775785));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #campaign .wrapper .camp_day h3 {
    font-size: calc(2.24rem + (1vw - 0.576rem) * (1.6753926702));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  #campaign .wrapper .camp_day h3 {
    font-size: calc(1.92rem + (1vw - 0.421rem) * (2.0779220779));
  }
}
@media only screen and (max-width: 420px) {
  #campaign .wrapper .camp_day h3 {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (3.2));
  }
}
@media screen and (max-width: 767px) {
  #campaign .wrapper .camp_day h3 {
    font-weight: bold;
  }
}
#campaign .wrapper .camp_day h4 {
  padding: 35px 0 0 0;
  color: #0E2971;
}
@media only screen and (min-width: 1200px) {
  #campaign .wrapper .camp_day h4 {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #campaign .wrapper .camp_day h4 {
    font-size: calc(2.4rem + (1vw - 0.992rem) * (0.9661835749));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #campaign .wrapper .camp_day h4 {
    font-size: calc(2.2rem + (1vw - 0.768rem) * (0.8968609865));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #campaign .wrapper .camp_day h4 {
    font-size: calc(2rem + (1vw - 0.576rem) * (1.0471204188));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  #campaign .wrapper .camp_day h4 {
    font-size: calc(1.8rem + (1vw - 0.421rem) * (1.2987012987));
  }
}
@media only screen and (max-width: 420px) {
  #campaign .wrapper .camp_day h4 {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (2));
  }
}
@media screen and (max-width: 767px) {
  #campaign .wrapper .camp_day h4 {
    padding: 15px 0 13px 0;
    font-weight: bold;
  }
}
#campaign .wrapper .camp_day p {
  line-height: 24px;
}
@media only screen and (min-width: 1200px) {
  #campaign .wrapper .camp_day p {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #campaign .wrapper .camp_day p {
    font-size: calc(1.58rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #campaign .wrapper .camp_day p {
    font-size: calc(1.56rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #campaign .wrapper .camp_day p {
    font-size: calc(1.54rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  #campaign .wrapper .camp_day p {
    font-size: calc(1.52rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  #campaign .wrapper .camp_day p {
    font-size: calc(1.5rem + (1vw - 0.32rem) * (0.2));
  }
}
@media screen and (max-width: 767px) {
  #campaign .wrapper .camp_day p {
    line-height: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  #campaign .bigtxt {
    font-size: 4.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #campaign .bigtxt {
    font-size: calc(3.96rem + (1vw - 0.992rem) * (2.1256038647));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #campaign .bigtxt {
    font-size: calc(3.52rem + (1vw - 0.768rem) * (1.9730941704));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #campaign .bigtxt {
    font-size: calc(3.08rem + (1vw - 0.576rem) * (2.3036649215));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  #campaign .bigtxt {
    font-size: calc(2.64rem + (1vw - 0.421rem) * (2.8571428571));
  }
}
@media only screen and (max-width: 420px) {
  #campaign .bigtxt {
    font-size: calc(2.2rem + (1vw - 0.32rem) * (4.4));
  }
}
#campaign .circle {
  background: #202A49;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  position: relative;
  top: -2px;
}
@media only screen and (min-width: 1200px) {
  #campaign .circle {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #campaign .circle {
    font-size: calc(1.6rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #campaign .circle {
    font-size: calc(1.6rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #campaign .circle {
    font-size: calc(1.6rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  #campaign .circle {
    font-size: calc(1.6rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  #campaign .circle {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0));
  }
}
#campaign .info-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 40px;
}
#campaign .info-section .info-balloon:first-child {
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  #campaign .info-section .info-balloon:first-child {
    max-width: 70vw;
    height: 70vw;
  }
}
#campaign .info-section .info-balloon:last-child {
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  #campaign .info-section .info-balloon:last-child {
    max-width: 70vw;
    height: 70vw;
  }
}
#campaign .info-balloon {
  position: relative;
  border-radius: 50%;
  background: #00c3ff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3%;
  box-sizing: border-box;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 300px;
}
#campaign .info-balloon__label {
  position: absolute;
  top: -20px;
  left: 20px;
  background: #0050a0;
  color: #fff;
  border-radius: 50%;
  padding: 0.8em 1.2em;
  font-size: clamp(16px, 1.1vw, 17px);
  line-height: 20px;
  white-space: nowrap;
  border: 5px solid #fff;
  width: 75px; /* 幅と高さを同じに */
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #campaign .info-balloon__label {
    top: -20px;
    left: 10px;
    border: 3px solid #fff;
  }
}
#campaign .info-balloon p {
  font-size: clamp(16px, 1.1vw, 17px);
  line-height: 1.5;
  margin: 0;
  padding-top: 20px;
}
#campaign .info-balloon small {
  font-size: 0.8em;
  display: block;
  margin-top: 0.5em;
}
#campaign .info-balloon .highlight {
  color: #FFDB00;
  font-weight: bold;
}

/* #news----------------------------------------*/
#news {
  width: 90%;
  margin: 0px auto 0 auto;
}
#news .title_wrapper {
  text-align: center;
}
#news .title_wrapper h2 {
  margin: 0 auto;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  #news .title_wrapper h2 {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #news .title_wrapper h2 {
    font-size: calc(2.08rem + (1vw - 0.992rem) * (0.5797101449));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #news .title_wrapper h2 {
    font-size: calc(1.96rem + (1vw - 0.768rem) * (0.5381165919));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #news .title_wrapper h2 {
    font-size: calc(1.84rem + (1vw - 0.576rem) * (0.6282722513));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  #news .title_wrapper h2 {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.7792207792));
  }
}
@media only screen and (max-width: 420px) {
  #news .title_wrapper h2 {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (1.2));
  }
}
#news .contents_list_wrapper {
  height: 120px;
  overflow-y: scroll;
  border: 1px solid #707070;
  max-width: 875px;
  margin: 0 auto;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  #news .contents_list_wrapper {
    width: 80%;
    padding: 10px;
  }
}
#news .contents_list_wrapper .alpha {
  display: flex;
}
#news .contents_list_wrapper .contents_list {
  display: flex;
}
@media screen and (max-width: 767px) {
  #news .contents_list_wrapper .contents_list {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  #news .contents_list_wrapper .contents_list a {
    display: flex;
    flex-direction: column;
  }
}
#news .contents_list_wrapper .contents_list a .label_wrapper time {
  color: #0064C8;
  font-weight: bold;
  padding-right: 20px;
}
#news .insta_area {
  padding: 40px 0;
}
#news .insta_area a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  #news .insta_area a {
    flex-direction: column;
    padding-top: 20px;
  }
}
#news .insta_area a .instalogo {
  width: 53px;
  height: 53px;
}
#news .insta_area a h3 {
  padding: 0 20px;
  line-height: 32px;
}
@media only screen and (min-width: 1200px) {
  #news .insta_area a h3 {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #news .insta_area a h3 {
    font-size: calc(2.56rem + (1vw - 0.992rem) * (1.1594202899));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #news .insta_area a h3 {
    font-size: calc(2.32rem + (1vw - 0.768rem) * (1.0762331839));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #news .insta_area a h3 {
    font-size: calc(2.08rem + (1vw - 0.576rem) * (1.2565445026));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  #news .insta_area a h3 {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (1.5584415584));
  }
}
@media only screen and (max-width: 420px) {
  #news .insta_area a h3 {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (2.4));
  }
}
@media screen and (max-width: 767px) {
  #news .insta_area a h3 {
    text-align: center;
    background: #000;
    color: #fff;
    margin-top: 10px;
  }
}
#news .insta_area a .instaqr {
  width: 140px;
}

/* #entry-flow----------------------------------------*/
#entry-flow {
  width: 90%;
  margin: 0px auto 0 auto;
}
#entry-flow .wrapper h3 {
  max-width: 1000px;
  height: 30px;
  margin: 0 auto;
  color: #46B8F4;
  font-weight: bold;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  #entry-flow .wrapper h3 {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #entry-flow .wrapper h3 {
    font-size: calc(2.08rem + (1vw - 0.992rem) * (0.5797101449));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #entry-flow .wrapper h3 {
    font-size: calc(1.96rem + (1vw - 0.768rem) * (0.5381165919));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #entry-flow .wrapper h3 {
    font-size: calc(1.84rem + (1vw - 0.576rem) * (0.6282722513));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  #entry-flow .wrapper h3 {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.7792207792));
  }
}
@media only screen and (max-width: 420px) {
  #entry-flow .wrapper h3 {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (1.2));
  }
}
#entry-flow .wrapper h3::before {
  content: "";
  background-image: url("../../images/common/line_01.svg");
  background-size: contain;
  height: 30px;
  width: 370px;
  display: inline-block;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #entry-flow .wrapper h3::before {
    width: 22%;
    background-image: url("../../images/common/sp_line_01.svg");
    margin-top: 10px;
  }
}
#entry-flow .wrapper h3::after {
  content: "";
  background-image: url("../../images/common/line_02.svg");
  background-size: contain;
  height: 30px;
  width: 370px;
  display: inline-block;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #entry-flow .wrapper h3::after {
    width: 22%;
    margin-top: 10px;
    background-image: url("../../images/common/sp_line_02.svg");
  }
}
#entry-flow .wrapper ul {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #entry-flow .wrapper ul {
    width: 100%;
  }
}
#entry-flow .wrapper ul li {
  position: relative;
  padding: 10px 0;
}
#entry-flow .wrapper ul li::after {
  content: "";
  background-image: url("../../images/common/step-arrow.svg");
  background-size: contain;
  height: 50px;
  width: 50px;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #entry-flow .wrapper ul li::after {
    height: 20px;
    width: 30px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
#entry-flow .wrapper ul li dl {
  display: flex;
  align-items: center;
  max-width: 856px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #entry-flow .wrapper ul li dl {
    width: 100%;
    max-width: 100%;
  }
}
#entry-flow .wrapper ul li dl dt {
  width: 18%;
}
@media screen and (max-width: 767px) {
  #entry-flow .wrapper ul li dl dt {
    width: 25%;
  }
}
#entry-flow .wrapper ul li dl dt img {
  width: 80%;
}
#entry-flow .wrapper ul li dl dd {
  width: 82%;
  padding: 0 0 0 2px;
}
@media screen and (max-width: 767px) {
  #entry-flow .wrapper ul li dl dd {
    width: 75%;
  }
}
#entry-flow .wrapper ul li dl dd span {
  font-weight: bold;
}
#entry-flow .wrapper ul .list_last {
  position: relative;
  padding: 10px 0;
}
#entry-flow .wrapper ul .list_last::after {
  content: "";
  background-image: none;
  background-size: contain;
  height: 0px;
  width: 0px;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

/* #present----------------------------------------*/
#present {
  width: 90%;
  margin: 0px auto 0 auto;
}
#present .wrapper .frame {
  position: relative;
  width: 100%;
  max-width: 1000px;
}
#present .wrapper .frame__bg {
  display: block;
  width: 100%;
  height: auto;
}
#present .wrapper .frame__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10%;
  display: flex;
  flex-direction: column;
  padding: 6% 10% 10% 19%;
  justify-content: flex-start;
}
#present .wrapper .frame__inner h3 {
  font-size: clamp(1.5rem, 1.8vw, 2.2rem);
  margin: 0;
  text-align: left;
  align-self: flex-start;
  font-weight: bold;
  margin: 2% 0 0 5%;
}
#present .wrapper .frame__inner p {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  margin: 1.5em 0 0;
  max-width: 75%;
  margin-left: 0%;
  text-align: left;
  line-height: 21px;
}
@media screen and (max-width: 991px) {
  #present .wrapper .frame__inner p {
    line-height: 18px;
  }
}
#present .wrapper .pre_top {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}
#present .wrapper .pre_top h3 {
  width: 70%;
}
@media screen and (max-width: 991px) {
  #present .wrapper .pre_top {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #present .wrapper .pre_top {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
#present .wrapper .pre_bottom {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}
#present .wrapper .pre_bottom p {
  width: 70%;
}
@media screen and (max-width: 991px) {
  #present .wrapper .pre_bottom {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #present .wrapper .pre_bottom {
    width: 100%;
    padding-bottom: 20px;
  }
}
#present .wrapper .ribon_sp {
  width: 100%;
}

/* #posts2025----------------------------------------*/
@media screen and (max-width: 767px) {
  #posts2025 {
    padding: 0;
  }
}

/* #info----------------------------------------*/
#info {
  width: 90%;
  margin: 0px auto 0 auto;
}
@media screen and (max-width: 767px) {
  #info {
    width: 90%;
    margin: 0px auto;
  }
}
#info .catch {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media only screen and (min-width: 1200px) {
  #info .catch {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #info .catch {
    font-size: calc(2.08rem + (1vw - 0.992rem) * (0.5797101449));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #info .catch {
    font-size: calc(1.96rem + (1vw - 0.768rem) * (0.5381165919));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #info .catch {
    font-size: calc(1.84rem + (1vw - 0.576rem) * (0.6282722513));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  #info .catch {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.7792207792));
  }
}
@media only screen and (max-width: 420px) {
  #info .catch {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (1.2));
  }
}
#info .catch:before, #info .catch:after {
  border-top: 1px solid;
  content: "";
  width: 300px;
}
@media screen and (max-width: 991px) {
  #info .catch:before, #info .catch:after {
    width: 32%;
  }
}
@media screen and (max-width: 767px) {
  #info .catch:before, #info .catch:after {
    width: 18%;
  }
}
#info .catch:before {
  margin-right: 1em;
}
#info .catch:after {
  margin-left: 1em;
}
#info .wrapper {
  background: #F8F8F8;
  margin: 0 auto;
  padding: 50px;
}
@media screen and (max-width: 767px) {
  #info .wrapper {
    padding: 10px;
    width: 90%;
  }
}
#info .wrapper dl dt {
  text-align: center;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #707070;
  display: block;
  width: fit-content;
  margin: 0 auto 30px auto;
}
@media only screen and (min-width: 1200px) {
  #info .wrapper dl dt {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #info .wrapper dl dt {
    font-size: calc(1.6rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #info .wrapper dl dt {
    font-size: calc(1.6rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #info .wrapper dl dt {
    font-size: calc(1.6rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  #info .wrapper dl dt {
    font-size: calc(1.6rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  #info .wrapper dl dt {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  #info .wrapper dl dt {
    padding: 3px 14px;
    margin: 0 auto 24px auto;
  }
}
#info .wrapper dl .dtlast {
  border: none;
  background: transparent;
}
#info .wrapper dl dd {
  margin: 0 auto 40px auto;
}
@media only screen and (min-width: 1200px) {
  #info .wrapper dl dd {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #info .wrapper dl dd {
    font-size: calc(1.6rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #info .wrapper dl dd {
    font-size: calc(1.6rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #info .wrapper dl dd {
    font-size: calc(1.6rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  #info .wrapper dl dd {
    font-size: calc(1.6rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  #info .wrapper dl dd {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0));
  }
}

/* ------------------------------------------*/

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