/* loading処理 */
#bl_loadingPercentWrap {
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  margin-top: 20px;
  margin-bottom: 20px;
}

#bl_loadingGaugeWrap {
  width: 174px;
  height: 3px;
  background-color: #666;
  margin-top: 76px;
}

#bl_loadingGaugeMeter {
  width: 0;
  height: 3px;
  background-color: #01a2cc;
  display: block;
}

/* loading処理 END */

.pc_only {
  display: none;
  transition: 1s;
}

.sp_no {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP",sans-serif;
  font-weight: 400 !important;
  margin: 0 auto;
  line-height: 1;
  position: relative;
  width: 100%;
  background-color: #fff;
}

.scroll_none {
  overflow: hidden;
}

.html_wrapper {
  overflow-x: hidden;
  position: relative;
  transition: 1s;
  z-index: 1;
}

article {
  margin: 0 auto;
  width: 100%;
}

/* テキストアニメーション */

.marquee-wrapper {
  text-decoration: none !important;
  transition: .3s all ease;
}

.marquee-wrapper:hover {
  opacity: .6;
}

.marquee {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  gap: 30px;
  font-size: 14px;
  color: #fff;
  padding: 16px;
}

.marquee-inner {
  animation: marquee 8s linear infinite;
}

.marquee-link {
  font-weight: 700;
  text-decoration: underline;
}

@keyframes marquee {
  0% {
    translate: 0;
  }

  100% {
    translate: calc(-100% - 1rem);
  }
}

.marquee-inner {
  display: inline;
}

@keyframes textscroll {
  0% {
    transform: translateX(0%)
  }

  100% {
    transform: translateX(-50%)
  }
}


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

header {
  position: fixed;
  z-index: 999;
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  width: 100%;
  overflow: hidden;
}

header ul {
  padding: 15px 0;
}

header ul li {
  white-space: nowrap;
  color: #fff;
}

a.hyper-link {
  color: #043156 !important;
  text-decoration: underline !important;
}

.cta_btn {
  display: inline-block;
  border: 1px solid #043156;
  padding: 1em 0;
  margin: 20px 0;
  max-width: 100%;
  width: 100%;
  text-align: center;
  color: #043156;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta_btn:hover {
  background-color: rgba(141,186,254,.8);
  transition: .3s all ease;
  cursor: pointer;
}

.cta_btn::before,
.cta_btn::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: .5em;
  width: 15px;
  height: 2px;
  border-radius: 9999px;
  background-color: #043156;
  transform-origin: calc(100% - 1px) 50%;
}

.cta_btn::before {
  transform: rotate(45deg);
}

.cta_btn::after {
  transform: rotate(-45deg);
}

.novelty_btn {
  position: relative;
}

.novelty_btn__text {
  position: absolute;
  display: inline-block;
  font-size: 11px;
  background: #043156;
  padding: 8px;
  color: #fff;
  top: -1.8em;
  left: .8em;
  z-index: 9999;
}

@media only screen and (max-width: 430px) {
  .novelty_btn__text {
    left: 2.5em;
  }
}

.novelty_btn__text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #043156;
}

.novelty_btn__btn {
  display: inline-block;
  border: 1px solid #043156;
  padding: 1em 0;
  margin: 20px 0;
  max-width: 100%;
  width: 100%;
  text-align: center;
  color: #043156;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.novelty_btn__btn:hover {
  background-color: rgba(141,186,254,.8);
  transition: .3s all ease;
  cursor: pointer;
}

.novelty_btn__btn::before,
.novelty_btn__btn::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: .5em;
  width: 15px;
  height: 2px;
  border-radius: 9999px;
  background-color: #043156;
  transform-origin: calc(100% - 1px) 50%;
}

.novelty_btn__btn::before {
  transform: rotate(45deg);
}

.novelty_btn__btn::after {
  transform: rotate(-45deg);
}

.content_btn {
  display: inline-block;
  padding: 1.5em 0;
  margin: 20px auto -40px;
  max-width: 90%;
  width: 100%;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.content_btn:hover {
  opacity: .6;
  transition: .3s all ease;
  cursor: pointer;
}

.content_btn::before,
.content_btn::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 1em;
  width: 15px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}

.content_btn::before {
  transform: rotate(45deg);
}

.content_btn::after {
  transform: rotate(-45deg);
}

#sec01 {
  background: rgba(255,255,255,.8);
  margin-top: 46px;
  padding-bottom: 1px;
}

#sec01 .content_wrapper .fv_area .fv_million_logo{
  width: 85%;
  margin: 0 auto;
  padding-top: 30px;
}

#sec01 .content_wrapper .fv_area .fv_million_logo img{
  width: 100%;
  vertical-align: top;
}

#sec01 .content_wrapper .fv_area .fv_text {
  color: #043156;
  padding-top: 26px;
  margin: 0 auto 47px;
  text-align: center;
  line-height: 2;
}

#sec01 .content_wrapper .fv_area .fv_img_wrap {
  position: relative;
  margin-top: -100px;
}

#sec01 .content_wrapper .fv_area .fv_img_wrap .img_wrap_right img {
  width: 100%;
  height: 110vh;
  object-fit: cover;

}

#sec01 .content_wrapper .fv_area {
  position: relative;
}
#sec01 .content_wrapper .fv_area .fv_logo_wrap {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  margin: 0 auto;
  width: 266px;
}

#sec01 .content_wrapper .fv_area .fv_logo_wrap img {
  width: 100%;
}

@media only screen and (max-width: 1279px) {
  .fv_logo_wrap__normal {
    display: none;
  }
}

@media only screen and (min-width: 1280px) {
  .fv_logo_wrap__white {
    display: initial;
  }
  .fv_logo_wrap__white.is-hidden {
    display: none;
  }
  .fv_logo_wrap__normal {
    display: initial;
  }
  .fv_logo_wrap__normal.is-hidden {
    display: none;
  }
}

#sec02 .content_wrapper .text_wrap {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -120px 15px 60px;
  padding: 10px;
  z-index: 1;
  position: relative;
}

#sec02 .content_wrapper .text_wrap::before {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  width: 60px;
  height: 60px;
  background-size: contain;
  top: 5px;
  left: 5px;
}

#sec02 .content_wrapper .text_wrap::after {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  transform: scale(-1,-1);
  width: 60px;
  height: 60px;
  background-size: contain;
  bottom: 5px;
  right: 5px;
}

#sec02 .content_wrapper .text_wrap p {
  color: #043156;
  text-align: center;
  line-height: 1.5;
}

#sec02 .content_wrapper .news_wrap .news_link {
  text-decoration: none;
  color: #FDF4DC;
  transition: .3s all ease;
  display: block;
  margin-top: 30px;
}

#sec02 .content_wrapper .news_wrap .news_link:first-child {
  margin-top: 0;
}

#sec02 .content_wrapper .news_wrap .news_link:hover {
  opacity: .6;
}

#sec02 .content_wrapper .news_wrap .news_img {
  width: 75%;
  max-width: 280px;
  margin: 0 auto;
}

#sec02 .content_wrapper .news_wrap .news_img img {
  width: 100%;
}

#sec02 .content_wrapper .news_wrap {
  margin: 0 auto 40px;
}

#sec02 .content_wrapper .news_wrap h2 {
  font-size: 14px;
  color: #043156;
  text-align: center;
  margin: 23px auto 8px;
}

#sec02 .content_wrapper .news_wrap div {
  width: 90%;
  max-width: 347px;
  font-size: 15px;
  color: #FDF4DC;
  text-align: center;
  margin: 23px 0 0 0;
  line-height: 1.6;
  margin: auto;
}

#sec02 .content_wrapper .news_wrap div dl {
  display: flex;
  flex-direction: column;
}

#sec02 .content_wrapper .news_wrap div dl dt {
  margin: 0;
}

#sec02 .content_wrapper .news_wrap div dl dt span {
  background: #FDF4DC;
  color: #241c53;
  padding: 4px 8px;
  border-radius: 2px;
}

#sec02 .content_wrapper .news_wrap div dl dd {
  margin: 7px 0 0;
  font-weight: 400;
}

#sec02 .content_wrapper .news_wrap div dl dd span {
  display: inline-block;
  margin-top: 7px;
  font-weight: 700;
  text-decoration: underline;
}

#sec02 .content_wrapper .schedule_wrap .schedule_img {
  width: 75%;
  max-width: 280px;
  margin: 0 auto;
}

#sec02 .content_wrapper .schedule_wrap .schedule_img img {
  width: 100%;
}

#sec02 .content_wrapper .schedule_wrap {
  /* margin-bottom: 105px; */
  margin-bottom: 60px;
}

#sec02 .content_wrapper p.title {
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  font-size: 28px;
  font-weight: 600;
}

#sec02 .content_wrapper p {
  font-size: 18px;
  color: #043156;
  text-align: center;
}
}

#sec03 {
  margin-top: -170px;
  position: relative;
}

#sec03::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  top: 170px;
}

#sec03 .content_wrapper {
  background-color: rgba(255,255,255,.8);
  max-width: 325px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}

@media only screen and (max-width: 430px) {
  #sec03 .content_wrapper {
    max-width: 364px;
  }
}

#sec03 .content_wrapper::before {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  width: 60px;
  height: 60px;
  background-size: contain;
  top: 5px;
  left: 5px;
}

#sec03 .content_wrapper::after {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  transform: scale(-1,-1);
  width: 60px;
  height: 60px;
  background-size: contain;
  bottom: 5px;
  right: 5px;
}

#sec03 .content_wrapper .content_item_01 {
  margin: 30px 25px;
}

#sec03 .content_wrapper .content_item_01 .img_wrap {
  text-align: center;
  margin-bottom: 30px;
}

#sec03 .content_wrapper .content_item_01 .img_wrap img {
  width: 105px;
}

#sec03 .content_wrapper .content_item_01 h2 {
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
}

#sec03 .content_wrapper .content_item_01 h2:nth-of-type(2),
#sec03 .content_wrapper .content_item_01 h2:nth-of-type(3),
#sec03 .content_wrapper .content_item_01 h2:nth-of-type(4) {
  margin-top: 60px;
}

#sec03 .content_wrapper .content_item_01 h3 {
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.6;
}

#sec03 .content_wrapper .content_item_01 .item_text {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
}

#sec03 .content_wrapper .content_item_01 .item_img {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

#sec03 .content_wrapper .content_item_01 .item_img img {
  width: 100%;
}

#sec03 .content_wrapper .content_item_01 .item_parking_list {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
  margin: 0 0 10px;
}

#sec03 .content_wrapper .content_item_01 .item_desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
  color: #043156;
  margin: 0;
}

#sec03 .content_wrapper .content_item_01 .item_img img {
  width: 100%;
}


#sec03 .content_wrapper .content_item_01 .item_img:nth-of-type(6) {
  margin-top: 30px;
}

#sec03 .content_wrapper .park_btn {
  text-align: center;
  scale: 100%;
  transition: .3s;
  margin: 20px 0;
}

#sec03 .content_wrapper .park_btn:hover {
  scale: 110%;
  transition: .3s;
}

#sec03 .content_wrapper .park_btn a img {
  width: 100%;
  max-width: 252px;
}

#sec04 {
  margin-top: 75px;
  position: relative;
}

#sec04::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 105%;
  top: 170px;
}

#sec04 .content_wrapper {
  background-color: rgba(255,255,255,.8);
  max-width: 325px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}

@media only screen and (max-width: 430px) {
  #sec04 .content_wrapper {
    max-width: 364px;
  }
}

#sec04 .content_wrapper::before {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  width: 60px;
  height: 60px;
  background-size: contain;
  top: 5px;
  left: 5px;
}

#sec04 .content_wrapper::after {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  transform: scale(-1,-1);
  width: 60px;
  height: 60px;
  background-size: contain;
  bottom: 5px;
  right: 5px;
}

#sec04 .content_wrapper .content_item_01 {
  margin: 30px 25px;
}

#sec04 .content_wrapper .content_item_01 h3 {
  font-size: 16px;
  font-weight: 600;
  color: #043156;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.6;
}

#sec04 .content_wrapper .content_item_01 .img_wrap {
  text-align: center;
}

#sec04 .content_wrapper .content_item_01 .img_wrap img {
  width: 175px;
}

#sec04 .content_wrapper .content_item_01 h2 {
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
}

#sec04 .content_wrapper .content_item_01 h2:nth-of-type(2) {
  margin-top: 60px;
}

#sec04 .content_wrapper .content_item_01 .item_text {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
}

#sec04 .content_wrapper .content_item_01 .item_img {
  max-width: 300px;
  margin: 0 auto 20px;
}

#sec04 .content_wrapper .content_item_01 .item_img img:nth-of-type(1) {
  margin-bottom: 10px;
}

#sec04 .content_wrapper .content_item_01 .item_img img {
  width: 100%;
}

#sec04 .content_wrapper .content_item_01 .item_desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
  color: #043156;
  margin: 0;
  padding-left: 1em;
  text-indent: -1em;
}

#sec04 .content_wrapper .content_btn {
  text-align: center;
  margin-bottom: -35px;
  scale: 100%;
  transition: .3s;
}

#sec04 .content_wrapper .content_btn:hover {
  scale: 110%;
  transition: .3s;
}

#sec04 .content_wrapper .content_btn a img {
  width: 75%;
  max-width: 252px;
}

#sec05 {
  margin-top: 75px;
  position: relative;
}

#sec05::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 105%;
  top: 170px;
}

#sec05 .content_wrapper {
  background-color: rgba(255,255,255,.8);
  max-width: 325px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}

@media only screen and (max-width: 430px) {
  #sec05 .content_wrapper {
    max-width: 364px;
  }
}

#sec05 .content_wrapper::before {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  width: 60px;
  height: 60px;
  background-size: contain;
  top: 5px;
  left: 5px;
}

#sec05 .content_wrapper::after {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  transform: scale(-1,-1);
  width: 60px;
  height: 60px;
  background-size: contain;
  bottom: 5px;
  right: 5px;
}

#sec05 .content_wrapper .content_item_01 {
  margin: 30px 25px;
}

#sec05 .content_wrapper .content_item_01 .img_wrap {
  text-align: center;
  margin-top: 35px;
}

#sec05 .content_wrapper .content_item_01 .img_wrap img {
  width: 100%;
}

#sec05 .content_wrapper .content_item_01 h2 {
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
}

#sec05 .content_wrapper .content_item_01 h2:nth-of-type(2) {
  margin-top: 60px;
}

#sec05 .content_wrapper .content_item_01 h3 {
  font-size: 15px;
  font-weight: 600;
  color: #043156;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.6;
}

#sec05 .content_wrapper .content_item_01 .item_text {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
}

#sec05 .content_wrapper .content_item_01 .item_img {
  max-width: 300px;
  margin: 0 auto;
}

#sec05 .content_wrapper .content_item_01 .item_img img {
  width: 100%;
}

#sec05 .content_wrapper .content_item_01 .item_desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
  color: #043156;
  margin: 0;
  padding-left: 1em;
  text-indent: -1em;
}

#sec05 .content_wrapper .content_item_01 .item_credit {
  font-size: 12px;
  font-weight: 300;
  color: #043156;
  text-align: left;
  line-height: 1.6;
  margin: 8px 0 30px;
}

#sec05 .content_wrapper .content_item_01 h4 {
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 40px 0 20px;
}

#sec05 .content_wrapper .list_btn {
  text-align: center;
  scale: 100%;
  transition: .3s;
  margin: 20px 0 20px;
}

#sec05 .content_wrapper .list_btn:hover {
  scale: 110%;
  transition: .3s;
}

#sec05 .content_wrapper .list_btn a img {
  width: 100%;
  max-width: 280px;
}

#sec05 .content_wrapper .content_btn {
  text-align: center;
  margin-bottom: -35px;
  scale: 100%;
  transition: .3s;
}

#sec05 .content_wrapper .content_btn:hover {
  scale: 110%;
  transition: .3s;
}

#sec05 .content_wrapper .content_btn a img {
  width: 100%;
  max-width: 280px;
}

#sec06 {
  margin-top: 75px;
  position: relative;
}

#sec06::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 105%;
  top: 170px;
}

#sec06 .content_wrapper {
  background-color: rgba(255,255,255,.8);
  max-width: 325px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}

@media only screen and (max-width: 430px) {
  #sec06 .content_wrapper {
    max-width: 364px;
  }
}

#sec06 .content_wrapper::before {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  width: 60px;
  height: 60px;
  background-size: contain;
  top: 5px;
  left: 5px;
}

#sec06 .content_wrapper::after {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  transform: scale(-1,-1);
  width: 60px;
  height: 60px;
  background-size: contain;
  bottom: 5px;
  right: 5px;
}

#sec06 .content_wrapper .content_item_01 {
  margin: 30px 25px;
}

#sec06 .content_wrapper .content_item_01 .img_wrap {
  text-align: center;
  margin-top: 35px;
}

#sec06 .content_wrapper .content_item_01 .img_wrap img {
  width: 175px;
}

#sec06 .content_wrapper .content_item_01 h2,
#sec06 .content_wrapper .content_item_02 h2 {
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
}

#sec06 .content_wrapper .content_item_01 h2,
#sec06 .content_wrapper .content_item_02 h2 {
  margin-top: 60px;
}

#sec06 .content_wrapper .content_item_01 h3 {
  font-size: 16px;
  font-weight: 600;
  color: #043156;
  margin-bottom: 20px;
  line-height: 1.6;
}

#sec06 .content_wrapper .content_item_01 h3:nth-of-type(2) {
  margin-top: 50px
}

#sec06 .content_wrapper .content_item_01 .item_text {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
}

#sec06 .content_wrapper .content_item_01 .item_img {
  max-width: 300px;
  margin: 0 auto 0;
}

#sec06 .content_wrapper .content_item_01 .item_img img:nth-of-type(2) {
  margin-bottom: 30px;
}

#sec06 .content_wrapper .content_item_01 .item_img img {
  width: 100%;
}

#sec06 .content_wrapper .content_item_01 .item_desc,
#sec06 .content_wrapper .content_item_02 .item_desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
  padding-left: 1em;
  text-indent: -1em;
}

#sec06 .content_wrapper .content_item_02 {
  margin: 0 25px 30px;
}

#sec06 .content_wrapper .content_item_02 h3 {
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.6;
}

#sec06 .content_wrapper .content_item_02 .item_text {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
  margin-bottom: 25px;
}

#sec06 .content_wrapper .content_item_02 .item_text a {
  text-decoration: none;
  color: #043156;
  word-break: break-all;
}

#sec06 .content_wrapper .content_item_02 .item_img img {
  width: 100%;
}

#sec06 .content_wrapper .content_btn {
  text-align: center;
  margin-bottom: -35px;
  scale: 100%;
  transition: .3s;
}

#sec06 .content_wrapper .content_btn:hover {
  scale: 110%;
  transition: .3s;
}

#sec06 .content_wrapper .content_btn a img {
  width: 75%;
  max-width: 252px;
}

#sec07 {
  margin-top: 75px;
  position: relative;
}

#sec07::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 108%;
  top: 170px;
}

#sec07 .content_wrapper {
  background-color: rgba(255,255,255,.8);
  max-width: 325px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}

@media only screen and (max-width: 430px) {
  #sec07 .content_wrapper {
    max-width: 364px;
  }
}

#sec07 .content_wrapper::before {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  width: 60px;
  height: 60px;
  background-size: contain;
  top: 5px;
  left: 5px;
}

#sec07 .content_wrapper::after {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  transform: scale(-1,-1);
  width: 60px;
  height: 60px;
  background-size: contain;
  bottom: 5px;
  right: 5px;
}

#sec07 .content_wrapper .content_item_01 {
  margin: 30px 25px;
}

#sec07 .content_wrapper .content_item_01 .img_wrap {
  text-align: center;
  margin-top: 35px;
}

#sec07 .content_wrapper .content_item_01 .img_wrap img {
  width: 175px;
}

#sec07 .content_wrapper .content_item_01 h2 {
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
}

#sec07 .content_wrapper .content_item_01 h3.heading-location {
  display: flex;
  align-items: center;
  line-height: 1;
}

#sec07 .content_wrapper .content_item_01 h3.heading-location .heading-location__itemization {
  color: #043156;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: .5em;
  padding-right: .5em;
  border-right: 3px solid #FFF252;
}

#sec07 .content_wrapper .content_item_01 h3.heading-location .heading-location__itemization-text {
  font-size: 12px;
}

#sec07 .content_wrapper .content_item_01 h3.heading-location .heading-location__itemization-number {
  font-size: 24px;
  margin-top: .1em;
}

#sec07 .content_wrapper .content_item_01 h3.heading-location .heading-location__text {
  font-size: 16px;
  margin-top: .2em;
  font-weight: 700;
  color: #555;
}

#sec07 .content_wrapper .content_item_01 .item_text {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
}

#sec07 .content_wrapper .content_item_01 .item_img {
  max-width: 300px;
  margin: 0 auto 10px;
}

#sec07 .content_wrapper .content_item_01 .item_img img {
  width: 100%;
}

#sec07 .content_wrapper .content_item_01 .item_desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
  padding-left: 1em;
  text-indent: -1em;
  margin: 0;
}

#sec07 .content_wrapper .content_item_01 .item_list {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
  list-style-type: none;
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

#sec07 .content_wrapper .content_item_01 .item_list li {
  margin-top: 30px;
}

#sec07 .content_wrapper .content_btn {
  text-align: center;
  margin-bottom: -30px;
  scale: 100%;
  transition: .3s;
}

#sec07 .content_wrapper .content_btn:hover {
  scale: 110%;
  transition: .3s;
}

#sec07 .content_wrapper .content_btn a img {
  width: 75%;
  max-width: 252px;
}

#sec07 .content_wrapper .content_item_01 .item_credit {
  font-size: 12px;
  font-weight: 300;
  color: #8E0000;
  text-align: left;
  line-height: 1.6;
  margin: 0 0 10px;
}

#sec08 {
  margin-top: 75px;
  position: relative;
}

#sec08::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 97%;
  top: 170px;
}

#sec08 .content_wrapper {
  background-color: rgba(255,255,255,.8);
  max-width: 325px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}

@media only screen and (max-width: 430px) {
  #sec08 .content_wrapper {
    max-width: 364px;
  }
}

#sec08 .content_wrapper::before {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  width: 60px;
  height: 60px;
  background-size: contain;
  top: 5px;
  left: 5px;
}

#sec08 .content_wrapper::after {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  transform: scale(-1,-1);
  width: 60px;
  height: 60px;
  background-size: contain;
  bottom: 5px;
  right: 5px;
}

#sec08 .content_wrapper .content_item_01 {
  margin: 30px 25px;
}

#sec08 .content_wrapper .content_item_01 .img_wrap {
  text-align: center;
  margin-top: 35px;
}

#sec08 .content_wrapper .content_item_01 .img_wrap img {
  width: 175px;
}

#sec08 .content_wrapper .content_item_01 h2 {
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
}

#sec08 .content_wrapper .content_item_01 h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  text-align: center;
  margin: 40px 0 20px;
  padding: 1.5em 0;
}

#sec08 .content_wrapper .content_item_01 .item_text {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
}

#sec08 .content_wrapper .content_item_01 .item_text.sold-out {
  text-decoration: line-through;
}

#sec08 .content_wrapper .content_item_01 .item_img {
  max-width: 300px;
  margin: 0 auto 10px;
}

#sec08 .content_wrapper .content_item_01 .item_img img {
  width: 100%;
}

#sec08 .content_wrapper .content_item_01 .item_desc,
#sec08 .content_wrapper .content_item_02 .item_desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
  padding-left: 1em;
  text-indent: -1em;
  margin: 0;
}

#sec08 .content_wrapper .content_item_01 .item_desc.sold-out {
  text-decoration: line-through;
}

#sec08 .content_wrapper .content_item_01 .item_list {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
  list-style-type: none;
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

#sec08 .content_wrapper .content_item_01 .item_list li {
  margin-bottom: 1em;
  padding-left: 1em;
  text-indent: -1em;
  position: relative;
}

#sec08 .content_wrapper .content_item_01 .item_list li.sold-out::before {
  content: '';
  background: #333;
  opacity: .7;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#sec08 .content_wrapper .content_item_01 .item_list li.sold-out::after {
  content: '好評につき配布終了！';
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-left: 1em;
  position: absolute;
  transform: rotate(-10deg);
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#sec08 .content_wrapper .content_item_02 {
  margin-bottom: 40px;
}

#sec08 .content_wrapper .content_item_02 h3 {
  font-size: 14px;
  font-weight: 600;
  color: #007AFF;
  margin-bottom: 20px;
}

#sec08 .content_wrapper .content_item_02 .item_text {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: #043156;
  margin-bottom: 25px;
}

#sec08 .content_wrapper .content_item_02 .item_text a {
  text-decoration: none;
  color: #043156;
  word-break: break-all;
}

#sec08 .content_wrapper .content_item_02 .item_img img {
  width: 100%;
}

#sec08 .content_wrapper .content_btn {
  text-align: center;
  margin-bottom: -30px;
  scale: 100%;
  transition: .3s;
}

#sec08 .content_wrapper .content_btn:hover {
  scale: 110%;
  transition: .3s;
}

#sec08 .content_wrapper .content_btn a img {
  width: 75%;
  max-width: 252px;
}

#sec08 .content_wrapper .sold-out-alert {
  background: #e84938;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  border-radius: 7px;
  padding: 1em 1.2em;
  line-height: 1.6;
  margin-bottom: 10px;
}

#sec08 .content_wrapper .sold-out-alert .sold-out-alert__icon-wrapper {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5em;
}

#sec08 .content_wrapper .sold-out-alert .sold-out-alert__icon-wrapper .sold-out-alert__icon {
  font-size: 24px;
  margin-right: .1em;
}

#sec08 .content_wrapper .sold-out-alert .sold-out-alert__remark {
  margin: 0;
  margin-top: .8em;
  padding-left: 1em;
  text-indent: -1em;
}

footer {
  margin-top: 107px;
  position: relative;
  z-index: 10;
}

footer .footer_wrap .img_wrap {
  max-width: 315px;
  margin: 0 auto;
  justify-content: center;
  display: flex;
}

footer .footer_wrap .img_wrap img {
  width: 100%;
  vertical-align: top;
}

footer .footer_wrap .img_wrap .footer_img_trans_left {
  transform: rotate(5deg);
  transition: .5s;
}

footer .footer_wrap .img_wrap .footer_img_trans_right {
  transform: rotate(-5deg);
  transition: .5s;
}

footer .footer_wrap .img_wrap .is-no_trans {
  transform: rotate(0deg);
  transition: .5s;
}


footer .footer_wrap .sns_wrap {
  margin: 68px auto 0;
  width: 163px;
  text-align: center;
}

footer .footer_wrap .sns_wrap .wrap_title {
  font-size: 14px;
  font-weight: 600;
  color: #043156;
}

footer .footer_wrap .sns_wrap .icon_wrap {
  display: flex;
  margin-top: 15px;
  column-gap: 20px;
}

footer .footer_wrap .sns_wrap .icon_wrap iframe {
  width: 40px;
  height: 40px;
}

footer .footer_wrap .sns_wrap .icon_wrap img {
  width: 40px;
}

footer .footer_wrap .detail {
  background: linear-gradient(90deg,#0286AF 0%,#1B8C93 25%,#2780A2 50%,#095C73 75%,#043156 100%);
  color: #fff;
  padding-top: 30px;
  padding-bottom: 34px;
  margin-top: 37px;
}

footer .footer_wrap .detail p {
  text-align: center;
  line-height: 2;
  font-size: 12px;
  font-weight: 300;
  color:#fff;
}

footer .footer_wrap .footer_btm {
  background-color: #FFF;
  padding-top: 20px;
  padding-bottom: 25px;
}

footer .footer_wrap .footer_btm .logo_wrap {
  max-width: 186px;
  margin: 0 auto;
}

footer .footer_wrap .footer_btm .logo_wrap img {
  width: 100%;
}

footer .footer_wrap .footer_btm .footer_link {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 25px;
}

footer .footer_wrap .footer_btm .footer_link a {
  color: #084193;
  text-decoration: none;
}

footer .footer_wrap .footer_btm p {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: #084193;
}



@media only screen and (min-width:392px) and (max-width: 430px) {
  #sec01 .content_wrapper .fv_area .fv_img_wrap {
    height: 80vh;
  }
  #sec01 .content_wrapper .fv_area .fv_img_wrap .img_wrap_right  {
    height: 100%;
  }
  #sec01 .content_wrapper .fv_area .fv_img_wrap .img_wrap_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

body::before {
    display: block;
    content: "";
    position: fixed;
    background: linear-gradient(90deg,#b3e0ff 0%,#d5f5fe 40%,#e0f0ff 50%,#d5f5fe 60%,#b3e0ff 100%);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: center center;
}

@media only screen and (min-width:431px) and (max-width: 1549px) {
  body::before {
    display: block;
    content: "";
    position: fixed;
    background: linear-gradient(90deg,#b3e0ff 0%,#d5f5fe 40%,#e0f0ff 50%,#d5f5fe 60%,#b3e0ff 100%);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: center center;
  }


  .html_wrapper {
    max-width: 375px;
    margin: 0 auto;
    border-right: .5px solid #043156;
    border-left: .5px solid #043156;
    overflow: visible;
  }

  header {
    max-width: 100%;
    left: 0;
    bottom: 0;
  }

  #sec01 {
    margin-top: 0;
  }

  #sec01 .content_wrapper .fv_area .fv_img_wrap {
    position: relative;
    height: 80vh;
  }
  #sec01 .content_wrapper .fv_area .fv_img_wrap .img_wrap_right {
    height: 80vh;
  }
  #sec01 .content_wrapper .fv_area .fv_img_wrap .img_wrap_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  footer {
    margin-bottom: 46px;
  }
}

footer .desc_wrap .sns_wrap::after {
  position: absolute;
  content: '';
  border: .5px solid #043156;
  left: 0;
  width: 100%;
  margin-top: 25px;
}

@media only screen and (min-width:1000px) and (max-width:1279px) {
  .star_wrapper {
    width: 100%;
    height: 100%;
  }


  footer .desc_wrap {
    display: block;
    position: fixed;
    left: 35px;
    bottom: 86px;
  }

  footer .desc_wrap .sns_wrap {
    margin: 68px auto 0;
    width: 163px;
    text-align: center;
  }

  footer .desc_wrap .sns_wrap .wrap_title {
    font-size: 14px;
    font-weight: 600;
    color: #043156;
  }

  footer .desc_wrap .sns_wrap .icon_wrap {
    display: flex;
    margin-top: 15px;
    column-gap: 20px;
  }

  footer .desc_wrap .sns_wrap .icon_wrap .line-it-button {
    width: 40px;
    height: 40px;
  }

  footer .desc_wrap .sns_wrap .icon_wrap img {
    width: 40px;
  }

  footer .desc_wrap .date_wrap {
    margin-top: 55px;
  }

  footer .desc_wrap .date_wrap .wrap_title {
    font-size: 14px;
    font-weight: 600;
    color: #043156;
    text-align: center;
    margin-bottom: 10px;
  }

  footer .desc_wrap .date_wrap .wrap_date {
    font-size: 18px;
    font-weight: 600;
    color: #043156;
  }
}

@media only screen and (min-width:1280px) and (max-width:1549px) {
  body::before {
    display: block;
    content: '';
    position: fixed;
    background: linear-gradient(90deg,#b3e0ff 0%,#d5f5fe 40%,#e0f0ff 50%,#d5f5fe 60%,#b3e0ff 100%);
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }



  .html_wrapper {
    max-width: 375px;
    margin: 0 auto;
    border-right: .5px solid #043156;
    border-left: .5px solid #043156;
    overflow: visible;
  }

  .star_wrapper {
    width: 100%;
    height: 100%;
  }

  .star_wrapper::before {
    display: block;
    content: '';
    position: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 1380px;
    height: 730px;
    left: 80px;
    top: 70px;
    opacity: 0;
    pointer-events: none;
  }

  .star_wrapper::after {
    display: block;
    content: '';
    position: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 1167px;
    height: 432px;
    top: 73px;
    left: 252px;
    opacity: 1;
    pointer-events: none;
  }

  header {
    max-width: 100%;
    left: 0;
    bottom: 0;
  }

  #sec01 {
    margin-top: 0;
  }
  #sec01 .content_wrapper .fv_area .fv_img_wrap {
    height: 80vh;
  }

  #sec01 .fv_img_wrap .img_wrap_right {
    position: fixed;
    transition: 1s;
    height: 80vh;
  }

  #sec01 .fv_img_wrap .img_wrap_right {
    left: 50%;
    transform: translateX(-50%);
  }

  #sec01 .content_wrapper .fv_area .fv_img_wrap .img_wrap_right img {
    width: auto;
    height: 100%;
    object-fit: unset;
  }

  #sec01 .content_wrapper .fv_area .fv_logo_wrap {
    opacity: 1;
    transition: 1s;
  }

  #sec01 .content_wrapper .fv_area .fv_text {
    padding-top: 30px;
    margin: 0 auto 90px;
  }

  .pc_only {
    transition: 1s;
    opacity: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 193px;
    margin: 30px 0 0 35px;
  }

  .pc_only img {
    width: 100%;
  }

  footer {
    margin-bottom: 46px;
  }

  footer .desc_wrap {
    display: block;
    position: fixed;
    left: 5px;
    bottom: 56px;
    scale: 80%;
  }

  footer .desc_wrap .sns_wrap {
    margin: 68px auto 0;
    width: 163px;
    text-align: center;
  }
  footer .desc_wrap .dots::after {
    display: block;
    content: '';
    width: 100%;
    max-width: 250px;
    margin: 25px auto 0;
    height: 6px;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 28%;
    left: 50%;
    transform: translateX(-50%);
  }

  footer .desc_wrap .is-before::after {
    background-image: url(../img/dots01.svg);
  }

  footer .desc_wrap .is-after::after {
    background-image: url(../img/dots02.svg);
  }

  footer .desc_wrap .sns_wrap .wrap_title {
    font-size: 14px;
    font-weight: 600;
    color: #043156;
  }

  footer .desc_wrap .sns_wrap .icon_wrap {
    display: flex;
    margin-top: 15px;
    column-gap: 20px;
  }

  footer .desc_wrap .sns_wrap .icon_wrap img {
    width: 40px;
  }

  footer .desc_wrap .date_wrap {
    margin-top: 55px;
  }

  footer .desc_wrap .date_wrap .wrap_title {
    font-size: 14px;
    font-weight: 600;
    color: #043156;
    text-align: center;
    margin-bottom: 10px;
  }

  footer .desc_wrap .date_wrap .wrap_date {
    font-size: 18px;
    font-weight: 600;
    color: #043156;
  }

  /* FVアニメーション用クラス */
  .is-animated-right {
    
  }
  #sec01 .fv_img_wrap .img_wrap_right.is-animated-right {
    scale: 115%;
    transform: translateX(190px);
    transition: 1s;
    z-index: 9;
  }

  #sec01 .content_wrapper .fv_area .remove-item {
    opacity: 0;
    transition: 1s;
  }

  .is-fade {
    opacity: 1;
    transition: 1s;
  }
}

@media only screen and (min-width:1550px) {
  body::before {
    display: block;
    content: '';
    position: fixed;
    background: linear-gradient(90deg,#b3e0ff 0%,#d5f5fe 40%,#e0f0ff 50%,#d5f5fe 60%,#b3e0ff 100%);
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }


  .html_wrapper {
    max-width: 375px;
    margin: 0 auto;
    border-right: .5px solid #043156;
    border-left: .5px solid #043156;
    overflow: visible;
  }

  .star_wrapper {
    width: 100%;
    height: 100%;
  }

  .star_wrapper::before {
    display: block;
    content: '';
    position: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 1380px;
    height: 730px;
    left: 80px;
    top: 70px;
    opacity: 0;
    pointer-events: none;
  }

  .star_wrapper::after {
    display: block;
    content: '';
    position: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 1167px;
    height: 432px;
    top: 73px;
    left: 252px;
    opacity: 1;
    pointer-events: none;
  }

  header {
    max-width: 100%;
    left: 0;
    bottom: 0;
  }

  #sec01 {
    margin-top: 0;
  }
  #sec01 .content_wrapper .fv_area .fv_img_wrap {
    height: 80vh;
  }
  #sec01 .fv_img_wrap .img_wrap_right {
    position: fixed;
    transition: 1s;
    left: 50%;
    bottom:0;
    transform: translateX(-50%);
    height: 80vh;
  }
  #sec01 .content_wrapper .fv_area .fv_img_wrap .img_wrap_right img {
    width: auto;
    height: 100%;
    object-fit: unset;
  }

  #sec01 .content_wrapper .fv_area .fv_logo_wrap {
    opacity: 1;
    transition: 1s;
  }

  #sec01 .content_wrapper .fv_area .fv_text {
    padding-top: 30px;
    margin: 0 auto 90px;
  }

  .pc_only {
    transition: 1s;
    opacity: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 193px;
    margin: 30px 0 0 35px;
  }

  .pc_only img {
    width: 100%;
  }

  footer {
    margin-bottom: 46px;
  }

  footer .desc_wrap {
    display: block;
    position: fixed;
    left: 35px;
    bottom: 86px;
  }

  footer .desc_wrap .sns_wrap {
    margin: 68px auto 0;
    width: 163px;
    text-align: center;
  }

  footer .desc_wrap .dots::after {
    display: block;
    content: '';
    width: 100%;
    max-width: 250px;
    margin: 25px auto 0;
    height: 6px;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 28%;
    left: 50%;
    transform: translateX(-50%);
  }


  footer .desc_wrap .is-before::after {
    background-image: url(../img/dots01.svg);
  }

  footer .desc_wrap .is-after::after {
    background-image: url(../img/dots02.svg);
  }

  footer .desc_wrap .sns_wrap .wrap_title {
    font-size: 14px;
    font-weight: 600;
    color: #043156;
  }

  footer .desc_wrap .sns_wrap .icon_wrap {
    display: flex;
    margin-top: 15px;
    column-gap: 20px;
  }

  footer .desc_wrap .sns_wrap .icon_wrap img {
    width: 40px;
  }

  footer .desc_wrap .date_wrap {
    margin-top: 55px;
  }

  footer .desc_wrap .date_wrap .wrap_title {
    font-size: 14px;
    font-weight: 600;
    color: #043156;
    text-align: center;
    margin-bottom: 10px;
  }

  footer .desc_wrap .date_wrap .wrap_date {
    font-size: 18px;
    font-weight: 600;
    color: #043156;
  }

  /* FVアニメーション用クラス */

  #sec01 .fv_img_wrap .img_wrap_right.is-animated-right {
    scale: 115%;
    transform: translateX(calc((50vw - 375px) / 2));
    transition: 1s;
  }

  #sec01 .content_wrapper .fv_area .remove-item {
    opacity: 0;
    transition: 1s;
  }

  .is-fade {
    opacity: 1;
    transition: 1s;
  }
}

.novelty-btn-heading {
  display: flex;
  justify-content: center;
  margin: 40px 0 15px !important;
}

.novelty-btn-heading__text {
  display: inline-block !important;
  position: relative !important;
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #043156 !important;
  line-height: 1.6 !important;
  text-align: center !important;
}

.novelty-btn-heading__text::before {
  position: absolute;
  top: .7em;
  left: -1.7em;
  content: '';
  border: 1px solid #043156;
  width: 16px;
  transform: rotate(55deg);
}

.novelty-btn-heading__text::after {
  position: absolute;
  top: .7em;
  right: -1.4em;
  content: '';
  border: 1px solid #043156;
  width: 16px;
  transform: rotate(-55deg);
}

.sns-list-heading {
  display: flex;
  justify-content: center;
  margin: 60px 0 15px !important;
}

.sns-list-heading__text {
  display: inline-block !important;
  position: relative !important;
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #043156 !important;
  line-height: 1.6 !important;
  text-align: center !important;
}

.sns-list-heading__text::before {
  position: absolute;
  top: 2.1em;
  left: -2em;
  content: '';
  border: 1px solid #043156;
  width: 24px;
  transform: rotate(55deg);
}

.sns-list-heading__text::after {
  position: absolute;
  top: 2.1em;
  right: -1.7em;
  content: '';
  border: 1px solid #043156;
  width: 24px;
  transform: rotate(-55deg);
}

.sns-list {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-block: 0 !important;
  padding-inline: 0 !important;
}

.sns-list__item {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 8px;
}

.sns-list__icon {
  width: 40px !important;
}

.coming-soon {
  padding: 50px 0;
  text-align: center;
  width: 100%;
  background: #eee;
  position: relative;
}

.coming-soon__text {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #043156;
  text-align: center;
}

.coming-soon__item-name {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  color: #043156;
  text-align: center;
  margin-top: 1.25em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon__item-name::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 2px;
  background-color: #043156;
  margin-right: .3em;
}

.coming-soon__item-name::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 2px;
  background-color: #043156;
  margin-left: .3em;
}

.coming-soon::before {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  width: 60px;
  height: 60px;
  background-size: contain;
  top: 5px;
  left: 5px;
}

.coming-soon::after {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/line-bg.png) no-repeat top left;
  transform: scale(-1,-1);
  width: 60px;
  height: 60px;
  background-size: contain;
  bottom: 5px;
  right: 5px;
}

.img_test_wrapper {
  position: relative;
}

.img_test  {
  position: absolute;
  bottom: 8px;
  right: 5px;
  margin: 0;
  padding: 3px 6px;
  font-size: 10px;
  background: #eff8ff;
  border-radius: 10px;
}