@charset "UTF-8";
/*
.aaa {
	@include media(pc) {
		: calc_pc();
	}
	@include media(sp) {
		: calc_sp();
	}

  
	@include media(pc) {}
	@include media(sp) {}
  

	@include media(tb) {
		// : calc_tb(60);
	}
}
*/
@import url("https://fonts.googleapis.com");
@import url("https://fonts.gstatic.com");
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap');

/* ---------------------------------------------------- */
/* Noto Sans Japanese */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* ---------------------------------------------------- */
/* Klee One */
@import url("https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&display=swap");
/* ---------------------------------------------------- */
/* Zen Maru Gothic */
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/* ---------------------------------------------------- */
/* Shippori Mincho B1
 */
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
/* ---------------------------------------------------- */
/* Mochiy Pop One */
@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap");
/* ---------------------------------------------------- */
/* Dela Gothic One */
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");

/* ---------------------------------------------------- */
/* */
/* */
/* ---------------------------------------------------- */
/* base
------------------------------------------------------- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow: auto;
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(1000vw / 375) !important;
  }
}

body {
  color: #000;
  /* font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif; */
  font-family: YakuHanJP, "Zen Kaku Gothic Antique", serif;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 1.6rem;
}

@media screen and (max-width: 1920px) {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 750px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  transition: 0.6s;
}

a:hover {
  text-decoration: none;
  opacity: 0.8;
}

a[href*="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 900px) {
  a[href*="tel:"] {
    pointer-events: initial;
  }
}

img {
  vertical-align: baseline;
}

.fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.pcon {
  display: block !important;
}

@media screen and (max-width: 750px) {
  .pcon {
    display: none !important;
  }
}

.spon {
  display: none !important;
}

@media screen and (max-width: 750px) {
  .spon {
    display: block !important;
  }
}

.pcon_i {
  display: inline-block !important;
}

@media screen and (max-width: 750px) {
  .pcon_i {
    display: none !important;
  }
}

.spon_i {
  display: none !important;
}

@media screen and (max-width: 750px) {
  .spon_i {
    display: inline-block !important;
  }
}

.box {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f4f4f4 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f4f4f4 calc(100% - 1px));
  background-size: 30px 30px;
  background-repeat: repeat;
  background-position: center center;
  background-color: #fff;
}

/* ---------------------------------------------------- */
/* 紙吹雪のアニメーション
------------------------------------------------------- */
#particles-js {
  position: fixed;
  /* 描画固定 */
  z-index: 1;
  /* 描画のポジション */
  width: 100%;
  height: 100%;
}

#wrapper {
  position: relative;
  /* #particles-jsよりも上にするため、position:relative;を指定 */
  /* z-index: aaa; */
  width: 100%;
  height: 100%;
}

/* ---------------------------------------------------- */
/* .youtubeBox
------------------------------------------------------- */
.youtubeBox {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtubeBox iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*----------------------------------------------------*/
/* header
------------------------------------------------------*/
header#header_sec {
  position: relative;
  z-index: 100;
}

header#header_sec .logo {
  position: absolute;
  top: 52px;
  left: 86px;
  width: 294px;
}

@media screen and (max-width: 1920px) {
  header#header_sec .logo {
    top: calc(100vw * (52 / 1920));
    left: calc(100vw * (86 / 1920));
    width: calc(100vw * (294 / 1920));
  }
}

@media screen and (max-width: 750px) {
  header#header_sec .logo {
    top: 1rem;
    left: 1rem;
    width: 14.6rem;
  }
}

.page_yell header#header_sec .logo {
  position: fixed;
  top: calc(100vw * (52 / 1920));
  left: initial;
  right: calc(100vw * (360 / 1920));
  width: calc(100vw * (294 / 1920));
}

@media screen and (max-width: 750px) {
  .page_yell header#header_sec .logo {
    top: 1rem;
    left: 1rem;
    right: initial;
    width: 14.6rem;
  }
}

header#header_sec #btn_menu {
  cursor: pointer;
  position: fixed;
  z-index: 999998;
  top: 60px;
  right: 60px;
  width: 48px;
  height: 37px;
  transition: transform 0.5s;
}

@media screen and (max-width: 1920px) {
  header#header_sec #btn_menu {
    top: calc(100vw * (60 / 1920));
    right: calc(100vw * (60 / 1920));
    width: calc(100vw * (48 / 1920));
    height: calc(100vw * (37 / 1920));
  }
}

@media screen and (max-width: 750px) {
  header#header_sec #btn_menu {
    top: 1.5rem;
    right: 1.5rem;
    width: 3.4rem;
    height: 2.5rem;
  }
}

header#header_sec #btn_menu span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  background: #000;
  border-radius: 2px;
}

@media screen and (max-width: 750px) {
  header#header_sec #btn_menu span {
    height: 3px;
    border-radius: 2px;
  }
}

header#header_sec #btn_menu span:nth-child(1) {
  top: 0;
}

header#header_sec #btn_menu span:nth-child(2) {
  top: 50%;
  margin-top: -2px;
}

header#header_sec #btn_menu span:nth-child(3) {
  bottom: 0;
}

.js-menuOpen header#header_sec #btn_menu {
  transform: rotate(360deg);
}

.js-menuOpen header#header_sec #btn_menu span {
  background: #ff404c;
}

.js-menuOpen header#header_sec #btn_menu span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

.js-menuOpen header#header_sec #btn_menu span:nth-child(2) {
  opacity: 0;
}

.js-menuOpen header#header_sec #btn_menu span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: rotate(-45deg);
}

header#header_sec nav#menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 596px;
  padding: 130px 40px 80px 54px;
  background-color: #fff4be;
  border: solid 2px #fff;
  border-right: none;
  border-radius: 40px 0 0 40px;
  max-height: 100vh;
  overflow: auto;
  z-index: 999997;
  transform: translateX(100%);
  transition: 0.5s;
}

@media screen and (max-width: 1920px) {
  header#header_sec nav#menu {
    width: calc(100vw * (596 / 1920));
    padding: calc(100vw * (130 / 1920)) calc(100vw * (40 / 1920)) calc(100vw * (80 / 1920)) calc(100vw * (54 / 1920));
  }
}

@media screen and (max-width: 750px) {
  header#header_sec nav#menu {
    width: 100vw;
    padding: calc(100vw * (92 / 375)) calc(100vw * (30 / 375)) calc(100vw * (78 / 375));
    height: auto;
  }
}

header#header_sec nav#menu ul {
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  header#header_sec nav#menu ul {
    border-top: solid 2px #736357;
  }
}

header#header_sec nav#menu ul li {
  border-bottom: solid 2px #736357;
}

header#header_sec nav#menu ul li a {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #736357;
  height: 98px;
  padding-bottom: 20px;
  line-height: 1.1;
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 1920px) {
  header#header_sec nav#menu ul li a {
    font-size: calc(100vw * (22 / 1920));
    height: calc(100vw * (98 / 1920));
    padding-bottom: calc(100vw * (20 / 1920));
  }
}

@media screen and (max-width: 750px) {
  header#header_sec nav#menu ul li a {
    font-size: calc(100vw * (17 / 375));
    height: 64px;
    padding-bottom: 0;
    line-height: 1.5;
    align-items: center;
  }
}

header#header_sec nav#menu ul li.nav01 a:before {
  background: url(../images/nav_btn01.png) center/contain no-repeat;
}

header#header_sec nav#menu ul li.nav02 a:before {
  background: url(../images/nav_btn02.png) center/contain no-repeat;
}

header#header_sec nav#menu ul li.nav03 a:before {
  background: url(../images/nav_btn03.png) center/contain no-repeat;
}

header#header_sec nav#menu ul li.nav04 a:before {
  background: url(../images/nav_btn04.png) center/contain no-repeat;
}

header#header_sec nav#menu ul li.nav05 a:before {
  background: url(../images/nav_btn05.png) center/contain no-repeat;
}

header#header_sec nav#menu ul li.nav06 a:before {
  background: url(../images/nav_btn06.png) center/contain no-repeat;
}

header#header_sec nav#menu ul li.nav07 a:before {
  background: url(../images/nav_btn07.png) center/contain no-repeat;
}

header#header_sec nav#menu ul li a:before {
  content: "";
  width: 18px;
  height: 20px;
  margin-right: 8px;
}

@media screen and (max-width: 1920px) {
  header#header_sec nav#menu ul li a:before {
    width: calc(100vw * (18 / 1920));
    height: calc(100vw * (20 / 1920));
    margin-right: calc(100vw * (8 / 1920));
  }
}

@media screen and (max-width: 750px) {
  header#header_sec nav#menu ul li a:before {
    width: calc(100vw * (14 / 375));
    height: calc(100vw * (16 / 375));
    margin-right: calc(100vw * (8 / 375));
  }
}

.js-menuOpen header#header_sec nav#menu {
  transform: translate(0);
}

/* ---------------------------------------------------- */
/* .top_sec
------------------------------------------------------- */
.top_sec {
  position: relative;
  z-index: 100;
  width: 100%;
  margin: 0 auto;
}

.top_sec .mv {
  width: 1500px;
  margin: 0 auto;
}

@media screen and (max-width: 1920px) {
  .top_sec .mv {
    width: calc(100vw * (1500 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .top_sec .mv {
    width: 100%;
    margin-top: calc(100vw * (140 / 375));
  }
}

.top_sec .mv img {
  width: 100%;
}

/* ---------------------------------------------------- */
/* .top_sec02
------------------------------------------------------- */
.top_sec02 {
  width: 100%;
  margin: 10px auto 0;
  text-align: center;
}

@media screen and (max-width: 1920px) {
  .top_sec02 {
    margin: calc(100vw * (10 / 1920)) auto 0;
  }
}

@media screen and (max-width: 750px) {
  .top_sec02 {
    margin: calc(100vw * (10 / 375)) auto 0;
  }
}

.top_sec02 .link_btn {
  position: relative;
  display: inline-block;
}

.top_sec02 .link_btn .link_btn_inner {
  position: relative;
  z-index: 1009;
}

.top_sec02 .link_btn .link_btn_inner a {
  display: block;
  padding: 20px 40px;
  border-radius: 100px;
  background-color: #ff404c;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
}

@media screen and (max-width: 1920px) {
  .top_sec02 .link_btn .link_btn_inner a {
    padding: calc(100vw * (20 / 1920)) calc(100vw * (40 / 1920));
    font-size: calc(100vw * (28 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .top_sec02 .link_btn .link_btn_inner a {
    padding: calc(100vw * (10 / 375)) calc(100vw * (20 / 375));
    font-size: calc(100vw * (17 / 375));
  }
}

.top_sec02 .link_btn:after {
  position: absolute;
  z-index: 1008;
  top: 6px;
  left: 6px;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100px;
  border: solid 1px #ff404c;
  background-color: #fff;
}

/* ---------------------------------------------------- */
/* .count_sec ＜一次公開＞
------------------------------------------------------- */
/*----------------------------------------------------*/
/* #countdown（カウントダウン） ＜一次公開＞
------------------------------------------------------*/
/* ---------------------------------------------------- */
/* .lead_sec
------------------------------------------------------- */
.lead_sec {
  width: 1320px;
  margin: 150px auto 260px;
  position: relative;
}

@media screen and (max-width: 1920px) {
  .lead_sec {
    width: calc(100vw * (1320 / 1920));
    margin: calc(100vw * (150 / 1920)) auto calc(100vw * (260 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .lead_sec {
    width: 100%;
    margin: calc(100vw * (70 / 375)) auto calc(100vw * (100 / 375));
    padding: calc(100vw * (300 / 375)) 0 calc(100vw * (400 / 375));
  }
}

.lead_sec .circle01,
.lead_sec .circle02,
.lead_sec .circle03,
.lead_sec .circle04,
.lead_sec .circle05 {
  position: absolute;
  z-index: 101;
}

.lead_sec .circle01 {
  top: 0;
  right: -240px;
}

@media screen and (max-width: 1920px) {
  .lead_sec .circle01 {
    right: calc(100vw * (-240 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .lead_sec .circle01 {
    right: calc(100vw * (30 / 375));
  }
}

.lead_sec .circle01 img {
  width: 464px;
}

@media screen and (max-width: 1920px) {
  .lead_sec .circle01 img {
    width: calc(100vw * (464 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .lead_sec .circle01 img {
    width: calc(100vw * (188 / 375));
  }
}

.lead_sec .circle02 {
  top: 525px;
  right: 120px;
}

@media screen and (max-width: 1920px) {
  .lead_sec .circle02 {
    top: calc(100vw * (525 / 1920));
    right: calc(100vw * (120 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .lead_sec .circle02 {
    display: none;
  }
}

.lead_sec .circle02 img {
  width: 193px;
}

@media screen and (max-width: 1920px) {
  .lead_sec .circle02 img {
    width: calc(100vw * (193 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .lead_sec .circle02 img {
    display: none;
  }
}

.lead_sec .circle03 {
  top: 670px;
  right: -180px;
}

@media screen and (max-width: 1920px) {
  .lead_sec .circle03 {
    top: calc(100vw * (670 / 1920));
    right: calc(100vw * (-180 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .lead_sec .circle03 {
    top: calc(100vw * (140 / 375));
    right: initial;
    left: calc(100vw * (30 / 375));
  }
}

.lead_sec .circle03 img {
  width: 274px;
}

@media screen and (max-width: 1920px) {
  .lead_sec .circle03 img {
    width: calc(100vw * (274 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .lead_sec .circle03 img {
    width: calc(100vw * (115 / 375));
  }
}

.lead_sec .circle04 {
  bottom: 246px;
  left: -50px;
}

@media screen and (max-width: 1920px) {
  .lead_sec .circle04 {
    bottom: calc(100vw * (246 / 1920));
    left: calc(100vw * (-50 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .lead_sec .circle04 {
    bottom: calc(100vw * (130 / 375));
    left: calc(100vw * (28 / 375));
  }
}

.lead_sec .circle04 img {
  width: 427px;
}

@media screen and (max-width: 1920px) {
  .lead_sec .circle04 img {
    width: calc(100vw * (427 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .lead_sec .circle04 img {
    width: calc(100vw * (206 / 375));
  }
}

.lead_sec .circle05 {
  bottom: -40px;
  left: 230px;
}

@media screen and (max-width: 1920px) {
  .lead_sec .circle05 {
    bottom: calc(100vw * (-40 / 1920));
    left: calc(100vw * (230 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .lead_sec .circle05 {
    bottom: 0;
    left: initial;
    right: calc(100vw * (24 / 375));
  }
}

.lead_sec .circle05 img {
  width: 284px;
}

@media screen and (max-width: 1920px) {
  .lead_sec .circle05 img {
    width: calc(100vw * (284 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .lead_sec .circle05 img {
    width: calc(100vw * (148 / 375));
  }
}

.lead_sec .lead_wrap {
  position: relative;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
}

.lead_sec .lead_wrap .title img {
  width: 960px;
}

@media screen and (max-width: 1920px) {
  .lead_sec .lead_wrap .title img {
    width: calc(100vw * (960 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .lead_sec .lead_wrap .title img {
    width: calc(100vw * (361 / 375));
    margin: 0 0 0 auto;
  }
}

.lead_sec .lead_wrap .end img {
  width: 746px;
  padding-top: 64px;
}

@media screen and (max-width: 1920px) {
  .lead_sec .lead_wrap .end img {
    width: calc(100vw * (746 / 1920));
    padding-top: calc(100vw * (64 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .lead_sec .lead_wrap .end img {
    width: calc(100vw * (280 / 375));
    margin: 0 auto;
    padding-top: calc(100vw * (36 / 375));
  }
}

.lead_sec .lead_wrap .text01,
.lead_sec .lead_wrap .text02 {
  color: #736357;
  font-size: 24px;
  padding-top: 64px;
  line-height: 2;
  letter-spacing: 4px;
}

@media screen and (max-width: 1920px) {

  .lead_sec .lead_wrap .text01,
  .lead_sec .lead_wrap .text02 {
    font-size: calc(100vw * (24 / 1920));
    padding-top: calc(100vw * (64 / 1920));
    letter-spacing: calc(100vw * (4 / 1920));
  }
}

@media screen and (max-width: 750px) {

  .lead_sec .lead_wrap .text01,
  .lead_sec .lead_wrap .text02 {
    font-size: calc(100vw * (14 / 375));
    text-align: center;
    padding-top: calc(100vw * (26 / 375));
    letter-spacing: initial;
  }
}

.lead_sec .lead_wrap .text01 span.t_red,
.lead_sec .lead_wrap .text02 span.t_red {
  color: #ff404c;
  font-weight: 900;
}

.lead_sec .lead_wrap .text01 span.t_blue,
.lead_sec .lead_wrap .text02 span.t_blue {
  color: #33b5d1;
  font-weight: 900;
}

.lead_sec .lead_wrap .end,
.lead_sec .lead_wrap .text02 {
  padding-left: 630px;
}

@media screen and (max-width: 1920px) {

  .lead_sec .lead_wrap .end,
  .lead_sec .lead_wrap .text02 {
    padding-left: calc(100vw * (630 / 1920));
  }
}

@media screen and (max-width: 750px) {

  .lead_sec .lead_wrap .end,
  .lead_sec .lead_wrap .text02 {
    padding-left: 0;
  }
}

/* ---------------------------------------------------- */
/* .movie_sec
------------------------------------------------------- */
.movie_sec {
  width: 100%;
}

.movie_sec .movie_wrap {
  width: 1320px;
  margin: 0 auto;
  padding: 118px 0 140px;
  position: relative;
}

@media screen and (max-width: 1920px) {
  .movie_sec .movie_wrap {
    width: calc(100vw * (1320 / 1920));
    padding: calc(100vw * (118 / 1920)) 0 calc(100vw * (140 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .movie_sec .movie_wrap {
    width: calc(100vw * (336 / 375));
    padding: calc(100vw * (64 / 375)) 0 calc(100vw * (80 / 375));
  }
}

.movie_sec .movie_wrap .bnr {
  width: 100%;
  position: relative;
  z-index: 1008;
}

.movie_sec .movie_wrap .youtubeBox {
  width: 100%;
  position: relative;
  z-index: 1009;
}

/* ---------------------------------------------------- */
/* .mokuji_sec
------------------------------------------------------- */
.mokuji_sec {
  position: relative;
  width: 100%;
  height: calc(100vw * (875 / 1920));
  background: url(../images/mokuji_back_pc.png) no-repeat;
  background-size: contain;
  margin: 60px auto 200px;
}

@media screen and (max-width: 1920px) {
  .mokuji_sec {
    margin: calc(100vw * (60 / 1920)) auto calc(100vw * (200 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec {
    height: calc(100vw * (725 / 375));
    background: url(../images/mokuji_back_sp.png) no-repeat;
    background-size: contain;
    margin: calc(100vw * (30 / 375)) auto calc(100vw * (90 / 375));
  }
}

.mokuji_sec .title {
  position: absolute;
  z-index: 100;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1920px) {
  .mokuji_sec .title {
    top: calc(100vw * (-48 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec .title {
    top: calc(100vw * (-24 / 375));
  }
}

.mokuji_sec .title img {
  width: 582px;
}

@media screen and (max-width: 1920px) {
  .mokuji_sec .title img {
    width: calc(100vw * (582 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec .title img {
    width: calc(100vw * (237 / 375));
  }
}

.mokuji_sec ul.mokuji_wrap {
  position: relative;
  z-index: 100;
  width: 970px;
  margin: 0 auto;
  padding-top: 150px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 1920px) {
  .mokuji_sec ul.mokuji_wrap {
    width: calc(100vw * (970 / 1920));
    padding-top: calc(100vw * (150 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec ul.mokuji_wrap {
    width: calc(100vw * (315 / 375));
    padding-top: calc(100vw * (68 / 375));
    flex-direction: column;
  }
}

.mokuji_sec ul.mokuji_wrap li {
  width: 280px;
  height: 280px;
  margin: 0 30px 60px;
}

@media screen and (max-width: 1920px) {
  .mokuji_sec ul.mokuji_wrap li {
    width: calc(100vw * (280 / 1920));
    height: calc(100vw * (280 / 1920));
    margin: 0 calc(100vw * (30 / 1920)) calc(100vw * (60 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec ul.mokuji_wrap li {
    width: 100%;
    height: calc(100vw * (100 / 375));
    margin: calc(100vw * (15 / 375)) 0 0;
  }
}

.mokuji_sec ul.mokuji_wrap li:first-child {
  margin-left: 0;
}

.mokuji_sec ul.mokuji_wrap li:nth-child(3) {
  margin-right: 0;
}

.mokuji_sec ul.mokuji_wrap li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: solid 4px #ae9659;
  color: #736357;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 1920px) {
  .mokuji_sec ul.mokuji_wrap li a {
    border: solid calc(100vw * (4 / 1920)) #ae9659;
    font-size: calc(100vw * (32 / 1920));
  }
}

@media screen and (max-width: 1350px) {
  .mokuji_sec ul.mokuji_wrap li a {
    border: solid calc(100vw * (6 / 1920)) #ae9659;
    font-size: calc(100vw * (30 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec ul.mokuji_wrap li a {
    border: solid 3px #ae9659;
    font-size: calc(100vw * (18 / 375));
  }
}

.mokuji_sec ul.mokuji_wrap li a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.mokuji_sec ul.mokuji_wrap li a span {
  font-size: 22px;
}

@media screen and (max-width: 1920px) {
  .mokuji_sec ul.mokuji_wrap li a span {
    font-size: calc(100vw * (22 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec ul.mokuji_wrap li a span {
    font-size: calc(100vw * (15 / 375));
  }
}

.mokuji_sec ul.mokuji_wrap li a img.sankaku {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 45px;
  height: 45px;
}

@media screen and (max-width: 1920px) {
  .mokuji_sec ul.mokuji_wrap li a img.sankaku {
    top: calc(100vw * (8 / 1920));
    left: calc(100vw * (8 / 1920));
    width: calc(100vw * (45 / 1920));
    height: calc(100vw * (45 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec ul.mokuji_wrap li a img.sankaku {
    top: calc(100vw * (5 / 375));
    left: calc(100vw * (5 / 375));
    width: calc(100vw * (23 / 375));
    height: calc(100vw * (23 / 375));
  }
}

.mokuji_sec .sakura01 {
  position: absolute;
  top: -82px;
  right: 108px;
}

@media screen and (max-width: 1920px) {
  .mokuji_sec .sakura01 {
    top: calc(100vw * (-82 / 1920));
    right: calc(100vw * (108 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec .sakura01 {
    top: calc(100vw * (-26 / 375));
    right: calc(100vw * (16 / 375));
  }
}

.mokuji_sec .sakura01 img {
  width: 159px;
}

@media screen and (max-width: 1920px) {
  .mokuji_sec .sakura01 img {
    width: calc(100vw * (159 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec .sakura01 img {
    width: calc(100vw * (50 / 375));
  }
}

.mokuji_sec .sakura02 {
  position: absolute;
  top: 64px;
  right: 258px;
}

@media screen and (max-width: 1920px) {
  .mokuji_sec .sakura02 {
    top: calc(100vw * (64 / 1920));
    right: calc(100vw * (258 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec .sakura02 {
    top: calc(100vw * (30 / 375));
    right: calc(100vw * (10 / 375));
  }
}

.mokuji_sec .sakura02 img {
  width: 94px;
}

@media screen and (max-width: 1920px) {
  .mokuji_sec .sakura02 img {
    width: calc(100vw * (94 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec .sakura02 img {
    width: calc(100vw * (34 / 375));
  }
}

.mokuji_sec .sakura03 {
  position: absolute;
  left: 240px;
  bottom: -66px;
}

@media screen and (max-width: 1920px) {
  .mokuji_sec .sakura03 {
    left: calc(100vw * (240 / 1920));
    bottom: calc(100vw * (-66 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec .sakura03 {
    left: calc(100vw * (28 / 375));
    bottom: calc(100vw * (-30 / 375));
  }
}

.mokuji_sec .sakura03 img {
  width: 137px;
}

@media screen and (max-width: 1920px) {
  .mokuji_sec .sakura03 img {
    width: calc(100vw * (137 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .mokuji_sec .sakura03 img {
    width: calc(100vw * (58 / 375));
  }
}

/* ---------------------------------------------------- */
/* .event_sec
------------------------------------------------------- */
.event_sec {
  position: relative;
  width: 1920px;
  height: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1920px) {
  .event_sec {
    width: 100%;
    height: calc(100vw * (1200 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec {
    width: 100%;
    height: auto;
    margin-bottom: calc(100vw * (110 / 375));
  }
}

.event_sec .contents {
  position: relative;
  z-index: 1002;
  width: 1320px;
  margin: 0 auto;
}

@media screen and (max-width: 1920px) {
  .event_sec .contents {
    width: calc(100vw * (1320 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec .contents {
    width: calc(100vw * (345 / 375));
    margin: 0 0 0 auto;
  }
}

.event_sec .contents.left_side {
  padding-right: calc(1320px / 2);
}

@media screen and (max-width: 1920px) {
  .event_sec .contents.left_side {
    padding-right: calc(100vw * (660 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec .contents.left_side {
    padding-right: 0;
  }
}

.event_sec .contents.right_side {
  padding-left: calc(1320px / 2 + 130px);
}

@media screen and (max-width: 1920px) {
  .event_sec .contents.right_side {
    padding-left: calc(100vw * (790 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec .contents.right_side {
    padding-left: 0;
  }
}

.event_sec .contents .title {
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.event_sec .contents .title p.txt {
  position: relative;
  z-index: 1004;
  color: #736357;
  font-size: 45px;
  font-weight: 900;
  line-height: 1.5;
}

@media screen and (max-width: 1920px) {
  .event_sec .contents .title p.txt {
    font-size: calc(100vw * (45 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec .contents .title p.txt {
    font-size: calc(100vw * (25 / 375));
  }
}

.event_sec .contents .title p.txt span {
  font-size: 35px;
}

@media screen and (max-width: 1920px) {
  .event_sec .contents .title p.txt span {
    font-size: calc(100vw * (35 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec .contents .title p.txt span {
    font-size: calc(100vw * (20 / 375));
  }
}

.event_sec .contents .title p.img {
  position: absolute;
  z-index: 1003;
}

.event_sec .contents .main_lead {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 74px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 4px;
  padding-top: 90px;
}

@media screen and (max-width: 1920px) {
  .event_sec .contents .main_lead {
    font-size: calc(100vw * (74 / 1920));
    letter-spacing: calc(100vw * (4 / 1920));
    padding-top: calc(100vw * (90 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec .contents .main_lead {
    font-size: calc(100vw * (38 / 375));
    letter-spacing: calc(100vw * (2 / 375));
    padding-top: calc(100vw * (48 / 375));
  }
}

.event_sec .contents .sub_lead {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #736357;
  font-size: 24px;
  line-height: 2;
  padding-top: 40px;
}

@media screen and (max-width: 1920px) {
  .event_sec .contents .sub_lead {
    font-size: calc(100vw * (24 / 1920));
    padding-top: calc(100vw * (40 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec .contents .sub_lead {
    font-size: calc(100vw * (14 / 375));
    padding-top: calc(100vw * (24 / 375));
  }
}

.event_sec .images {
  position: absolute;
  z-index: 1001;
  width: 100%;
  top: 0;
  left: 0;
}

@media screen and (max-width: 750px) {
  .event_sec .images {
    position: relative;
    padding-top: calc(100vw * (14 / 375));
  }
}

/* ---------------------------------------------------- */
/* .event_sec#present
------------------------------------------------------- */
.event_sec#present .contents {
  position: relative;
  padding-top: 60px;
}

@media screen and (max-width: 1920px) {
  .event_sec#present .contents {
    padding-top: calc(100vw * (60 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec#present .contents {
    padding-top: 0;
  }
}

.event_sec#present .contents .title p.img {
  bottom: -76px;
  left: -65px;
  width: 430px;
}

@media screen and (max-width: 1920px) {
  .event_sec#present .contents .title p.img {
    bottom: calc(100vw * (-76 / 1920));
    left: calc(100vw * (-65 / 1920));
    width: calc(100vw * (430 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec#present .contents .title p.img {
    bottom: calc(100vw * (-30 / 375));
    left: calc(100vw * (-10 / 375));
    width: calc(100vw * (196 / 375));
  }
}

.event_sec#present .contents .main_lead {
  width: 120%;
  color: #ff7ba7;
}

@media screen and (max-width: 750px) {
  .event_sec#present .contents .main_lead {
    width: 100%;
  }
}

.event_sec#present .contents .link_btn {
  position: absolute;
  z-index: 1005;
  left: 38%;
  bottom: -6%;
  width: 246px;
}

@media screen and (max-width: 1920px) {
  .event_sec#present .contents .link_btn {
    width: calc(100vw * (246 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec#present .contents .link_btn {
    position: relative;
    left: initial;
    bottom: initial;
    width: calc(100vw * (177 / 375));
    padding-right: calc(100vw * (30 / 375));
    margin: calc(100vw * (20 / 375)) auto calc(100vw * (-26 / 375));
  }
}

.event_sec#present .test {
  position: absolute;
  z-index: 100;
}

.event_sec#present .test a {
  display: inline-block;
  padding: 10px;
  background-color: blue;
  color: white;
}

/* ---------------------------------------------------- */
/* .event_sec#yell
------------------------------------------------------- */
.event_sec#yell .contents {
  position: relative;
  padding-top: 34px;
}

@media screen and (max-width: 1920px) {
  .event_sec#yell .contents {
    padding-top: calc(100vw * (34 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec#yell .contents {
    padding-top: 0;
  }
}

.event_sec#yell .contents .title p.img {
  bottom: -65px;
  left: -54px;
  width: 760px;
}

@media screen and (max-width: 1920px) {
  .event_sec#yell .contents .title p.img {
    bottom: calc(100vw * (-65 / 1920));
    left: calc(100vw * (-54 / 1920));
    width: calc(100vw * (760 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec#yell .contents .title p.img {
    bottom: calc(100vw * (-32 / 375));
    left: calc(100vw * (-17 / 375));
    width: calc(100vw * (345 / 375));
  }
}

.event_sec#yell .contents .main_lead {
  width: 100%;
  letter-spacing: normal;
  color: #0099ff;
}

@media screen and (max-width: 750px) {
  .event_sec#yell .contents .main_lead {
    width: 100%;
  }
}

.event_sec#yell .contents .link_btn {
  position: absolute;
  z-index: 1005;
  left: 0%;
  bottom: -22%;
  width: 390px;
}

@media screen and (max-width: 1920px) {
  .event_sec#yell .contents .link_btn {
    width: calc(100vw * (390 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec#yell .contents .link_btn {
    position: relative;
    left: initial;
    bottom: initial;
    width: calc(100vw * (330 / 375));
    padding-right: calc(100vw * (20 / 375));
    margin: calc(100vw * (20 / 375)) auto 0;
  }
}

.event_sec#yell .test {
  position: relative;
  z-index: 100;
}

.event_sec#yell .test a {
  display: inline-block;
  padding: 10px;
  background-color: green;
  color: white;
}

/* ---------------------------------------------------- */
/* .event_sec#map
------------------------------------------------------- */
.event_sec#map .contents {
  padding-top: 90px;
}

@media screen and (max-width: 1920px) {
  .event_sec#map .contents {
    padding-top: calc(100vw * (90 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec#map .contents {
    padding-top: 0;
  }
}

.event_sec#map .contents .title p.img {
  bottom: -58px;
  left: -75px;
  width: 541px;
}

@media screen and (max-width: 1920px) {
  .event_sec#map .contents .title p.img {
    bottom: calc(100vw * (-58 / 1920));
    left: calc(100vw * (-75 / 1920));
    width: calc(100vw * (541 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec#map .contents .title p.img {
    bottom: calc(100vw * (-29 / 375));
    left: calc(100vw * (-8 / 375));
    width: calc(100vw * (246 / 375));
  }
}

.event_sec#map .contents .main_lead {
  width: 130%;
  letter-spacing: normal;
  color: #ff9900;
}

@media screen and (max-width: 750px) {
  .event_sec#map .contents .main_lead {
    width: 100%;
  }
}

.event_sec#map .contents .sub_lead {
  width: 126%;
}

@media screen and (max-width: 750px) {
  .event_sec#map .contents .sub_lead {
    width: 100%;
  }
}

/* マップのピン */
.map_pin {
  position: absolute;
  z-index: 1005;
  width: 36px;
}

@media screen and (max-width: 1920px) {
  .map_pin {
    width: calc(100vw * (36 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin {
    width: calc(100vw * (26 / 375));
  }
}

.map_pin.pin01 {
  top: 342px;
  left: 792px;
}

@media screen and (max-width: 1920px) {
  .map_pin.pin01 {
    top: calc(100vw * (342 / 1920));
    left: calc(100vw * (792 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin.pin01 {
    top: calc(100vw * (522 / 375));
    left: calc(100vw * (274 / 375));
  }
}

.map_pin.pin02 {
  top: 482px;
  left: 885px;
}

@media screen and (max-width: 1920px) {
  .map_pin.pin02 {
    top: calc(100vw * (482 / 1920));
    left: calc(100vw * (885 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin.pin02 {
    top: calc(100vw * (598 / 375));
    left: calc(100vw * (311 / 375));
  }
}

.map_pin.pin03 {
  top: 380px;
  left: 907px;
}

@media screen and (max-width: 1920px) {
  .map_pin.pin03 {
    top: calc(100vw * (380 / 1920));
    left: calc(100vw * (907 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin.pin03 {
    top: calc(100vw * (546 / 375));
    left: calc(100vw * (330 / 375));
  }
}

.map_pin.pin04 {
  top: 322px;
  left: 873px;
}

@media screen and (max-width: 1920px) {
  .map_pin.pin04 {
    top: calc(100vw * (322 / 1920));
    left: calc(100vw * (873 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin.pin04 {
    top: calc(100vw * (521 / 375));
    left: calc(100vw * (314 / 375));
  }
}

.map_pin.pin05 {
  top: 390px;
  left: 360px;
}

@media screen and (max-width: 1920px) {
  .map_pin.pin05 {
    top: calc(100vw * (390 / 1920));
    left: calc(100vw * (360 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin.pin05 {
    top: calc(100vw * (550 / 375));
    left: calc(100vw * (88 / 375));
  }
}

.map_pin.pin06 {
  top: 566px;
  left: 600px;
}

@media screen and (max-width: 1920px) {
  .map_pin.pin06 {
    top: calc(100vw * (566 / 1920));
    left: calc(100vw * (600 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin.pin06 {
    top: calc(100vw * (644 / 375));
    left: calc(100vw * (182 / 375));
  }
}

.map_pin.pin07 {
  top: 508px;
  left: 550px;
}

@media screen and (max-width: 1920px) {
  .map_pin.pin07 {
    top: calc(100vw * (508 / 1920));
    left: calc(100vw * (550 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin.pin07 {
    top: calc(100vw * (610 / 375));
    left: calc(100vw * (165 / 375));
  }
}

.map_pin.pin08 {
  top: 510px;
  left: 620px;
}

@media screen and (max-width: 1920px) {
  .map_pin.pin08 {
    top: calc(100vw * (510 / 1920));
    left: calc(100vw * (620 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin.pin08 {
    top: calc(100vw * (605 / 375));
    left: calc(100vw * (196 / 375));
  }
}

.map_pin.pin09 {
  top: 510px;
  left: 778px;
}

@media screen and (max-width: 1920px) {
  .map_pin.pin09 {
    top: calc(100vw * (510 / 1920));
    left: calc(100vw * (778 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin.pin09 {
    top: calc(100vw * (606 / 375));
    left: calc(100vw * (268 / 375));
  }
}

.map_pin.pin10 {
  top: 480px;
  left: 712px;
}

@media screen and (max-width: 1920px) {
  .map_pin.pin10 {
    top: calc(100vw * (480 / 1920));
    left: calc(100vw * (712 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin.pin10 {
    top: calc(100vw * (587 / 375));
    left: calc(100vw * (240 / 375));
  }
}

.map_pin.pin11 {
  top: 483px;
  left: 275px;
}

@media screen and (max-width: 1920px) {
  .map_pin.pin11 {
    top: calc(100vw * (483 / 1920));
    left: calc(100vw * (275 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin.pin11 {
    top: calc(100vw * (592 / 375));
    left: calc(100vw * (48 / 375));
  }
}

.map_pin.pin12 {
  top: 350px;
  left: 420px;
}

@media screen and (max-width: 1920px) {
  .map_pin.pin12 {
    top: calc(100vw * (350 / 1920));
    left: calc(100vw * (420 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin.pin12 {
    top: calc(100vw * (530 / 375));
    left: calc(100vw * (110 / 375));
  }
}

.map_pin.pin13 {
  top: 502px;
  left: 654px;
}

@media screen and (max-width: 1920px) {
  .map_pin.pin13 {
    top: calc(100vw * (502 / 1920));
    left: calc(100vw * (654 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .map_pin.pin13 {
    top: calc(100vw * (599 / 375));
    left: calc(100vw * (218 / 375));
  }
}

/* ---------------------------------------------------- */
/* .event_sec#photospot
------------------------------------------------------- */
.event_sec#photospot .contents {
  padding-top: 64px;
}

@media screen and (max-width: 1920px) {
  .event_sec#photospot .contents {
    padding-top: calc(100vw * (64 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec#photospot .contents {
    padding-top: 0;
  }
}

.event_sec#photospot .contents .title p.img {
  bottom: -66px;
  left: -63px;
  width: 541px;
}

@media screen and (max-width: 1920px) {
  .event_sec#photospot .contents .title p.img {
    bottom: calc(100vw * (-66 / 1920));
    left: calc(100vw * (-63 / 1920));
    width: calc(100vw * (541 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec#photospot .contents .title p.img {
    bottom: calc(100vw * (-24 / 375));
    left: calc(100vw * (-6 / 375));
    width: calc(100vw * (246 / 375));
  }
}

.event_sec#photospot .contents .main_lead {
  color: #00c390;
}

.event_sec#photospot .contents .sub_lead {
  width: 90%;
}

@media screen and (max-width: 750px) {
  .event_sec#photospot .contents .sub_lead {
    width: 100%;
  }
}

/* ---------------------------------------------------- */
/* .event_sec#canvas
------------------------------------------------------- */
.event_sec#canvas .contents {
  padding-top: 75px;
}

@media screen and (max-width: 1920px) {
  .event_sec#canvas .contents {
    padding-top: calc(100vw * (75 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec#canvas .contents {
    padding-top: 0;
  }
}

.event_sec#canvas .contents .title p.img {
  bottom: -63px;
  left: -22px;
  width: 609px;
}

@media screen and (max-width: 1920px) {
  .event_sec#canvas .contents .title p.img {
    bottom: calc(100vw * (-63 / 1920));
    left: calc(100vw * (-22 / 1920));
    width: calc(100vw * (609 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .event_sec#canvas .contents .title p.img {
    bottom: calc(100vw * (-37 / 375));
    left: calc(100vw * (-20 / 375));
    width: calc(100vw * (315 / 375));
  }
}

.event_sec#canvas .contents .main_lead {
  width: 120%;
  color: #9266c5;
}

@media screen and (max-width: 750px) {
  .event_sec#canvas .contents .main_lead {
    width: 100%;
  }
}

/* ---------------------------------------------------- */
/* .comingsoon_sec ＜一次公開＞
------------------------------------------------------- */
/* ---------------------------------------------------- */
/* #message 、.message_sec
------------------------------------------------------- */
#message {
  padding-top: 80px;
}

@media screen and (max-width: 1920px) {
  #message {
    padding-top: calc(100vw * (80 / 1920));
  }
}

@media screen and (max-width: 750px) {
  #message {
    padding-top: calc(100vw * (80 / 375));
  }
}

.message_sec {
  position: relative;
  width: 100%;
  background-color: #fff4be;
  padding: 150px 0 100px;
}

@media screen and (max-width: 1920px) {
  .message_sec {
    padding: calc(100vw * (150 / 1920)) 0 calc(100vw * (100 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message_sec {
    padding: calc(100vw * (80 / 375)) 0 calc(100vw * (10 / 375));
  }
}

.message_sec .title {
  position: absolute;
  z-index: 100;
  top: -58px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1920px) {
  .message_sec .title {
    top: calc(100vw * (-58 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message_sec .title {
    top: calc(100vw * (-20 / 375));
  }
}

.message_sec .title img {
  width: 674px;
}

@media screen and (max-width: 1920px) {
  .message_sec .title img {
    width: calc(100vw * (674 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message_sec .title img {
    width: calc(100vw * (318 / 375));
  }
}

.message_sec .message_wrap {
  position: relative;
  z-index: 100;
  width: 1320px;
  margin: 0 auto;
}

@media screen and (max-width: 1920px) {
  .message_sec .message_wrap {
    width: calc(100vw * (1320 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message_sec .message_wrap {
    width: 100%;
  }
}

.message_sec .message_wrap .message_a {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 750px) {
  .message_sec .message_wrap .message_a {
    flex-direction: column;
    width: calc(100vw * (315 / 375));
    margin: 0 auto;
  }
}

.message_sec .message_wrap .message_a dl {
  width: 595px;
}

@media screen and (max-width: 1920px) {
  .message_sec .message_wrap .message_a dl {
    width: calc(100vw * (595 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message_sec .message_wrap .message_a dl {
    width: 100%;
    margin: 0 auto;
  }
}

.message_sec .message_wrap .message_a dl dt {
  margin: 0 auto;
}

.message_sec .message_wrap .message_a dl dt.a_title01 {
  width: 472px;
}

@media screen and (max-width: 1920px) {
  .message_sec .message_wrap .message_a dl dt.a_title01 {
    width: calc(100vw * (473 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message_sec .message_wrap .message_a dl dt.a_title01 {
    width: calc(100vw * (320 / 375));
  }
}

.message_sec .message_wrap .message_a dl dt.a_title02 {
  width: 473px;
}

@media screen and (max-width: 1920px) {
  .message_sec .message_wrap .message_a dl dt.a_title02 {
    width: calc(100vw * (473 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message_sec .message_wrap .message_a dl dt.a_title02 {
    width: calc(100vw * (320 / 375));
  }
}

.message_sec .message_wrap .message_a dl dd {
  width: 100%;
  margin: 26px 0 100px;
}

@media screen and (max-width: 1920px) {
  .message_sec .message_wrap .message_a dl dd {
    margin: calc(100vw * (26 / 1920)) 0 calc(100vw * (100 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message_sec .message_wrap .message_a dl dd {
    padding: calc(100vw * (15 / 375)) calc(100vw * (15 / 375)) calc(100vw * (40 / 375));
    margin: 0;
  }
}

.message_sec .message_wrap .message_b {
  width: 100%;
}

@media screen and (max-width: 750px) {
  .message_sec .message_wrap .message_b {
    width: calc(100vw * (335 / 375));
    margin: 0 auto;
  }
}

.message_sec .message_wrap .message_b .b_title {
  width: 472px;
  margin: 0 auto;
}

@media screen and (max-width: 1920px) {
  .message_sec .message_wrap .message_b .b_title {
    width: calc(100vw * (472 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message_sec .message_wrap .message_b .b_title {
    width: calc(100vw * (320 / 375));
  }
}

.message_sec .message_wrap .message_b ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.message_sec .message_wrap .message_b ul li {
  width: 405px;
  padding-bottom: 40px;
}

@media screen and (max-width: 1920px) {
  .message_sec .message_wrap .message_b ul li {
    width: calc(100vw * (405 / 1920));
    padding-bottom: calc(100vw * (40 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message_sec .message_wrap .message_b ul li {
    width: calc(100vw * (155 / 375));
    padding-bottom: 0;
  }
}

.message_sec .message_wrap .message_c {
  width: 100%;
}

@media screen and (max-width: 750px) {
  .message_sec .message_wrap .message_c {
    width: calc(100vw * (335 / 375));
    margin: 0 auto;
  }
}

.message_sec .message_wrap .message_c .c_title {
  width: 472px;
  margin: 0 auto;
}

@media screen and (max-width: 1920px) {
  .message_sec .message_wrap .message_c .c_title {
    width: calc(100vw * (472 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message_sec .message_wrap .message_c .c_title {
    width: calc(100vw * (320 / 375));
  }
}

.message_sec .message_wrap .message_c ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.message_sec .message_wrap .message_c ul li {
  width: 310px;
}

@media screen and (max-width: 1920px) {
  .message_sec .message_wrap .message_c ul li {
    width: calc(100vw * (310 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message_sec .message_wrap .message_c ul li {
    width: calc(100vw * (155 / 375));
  }
}

.message_sec .message_wrap .message_b ul,
.message_sec .message_wrap .message_c ul {
  margin: 24px 0 100px;
}

@media screen and (max-width: 1920px) {

  .message_sec .message_wrap .message_b ul,
  .message_sec .message_wrap .message_c ul {
    margin: calc(100vw * (24 / 1920)) 0 calc(100vw * (60 / 1920));
  }
}

@media screen and (max-width: 750px) {

  .message_sec .message_wrap .message_b ul,
  .message_sec .message_wrap .message_c ul {
    margin: calc(100vw * (15 / 375)) 0 calc(100vw * (30 / 375));
  }
}

@media screen and (max-width: 750px) {

  .message_sec .message_wrap .message_b ul li,
  .message_sec .message_wrap .message_c ul li {
    padding-bottom: calc(100vw * (12 / 375));
  }
}

/*----------------------------------------------------*/
/* ポップアップ
---------------------------------------------------- */
.pop_open_message {
  cursor: pointer;
  transition: 0.6s;
}

.pop_open_message:hover {
  opacity: 0.8;
}

.popup_Area {
  position: fixed;
  z-index: 77777777;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: none;
}

.popup_Area.show {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: scroll;
}

.popup_Back {
  position: fixed;
  z-index: 88888888;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup_Wrap {
  position: absolute;
  z-index: 99999999;
}

.message .popup_Wrap .p_cont {
  position: relative;
  width: 1060px;
  padding: 15px;
  margin: 60px 0;
  background-color: #fff;
}

@media screen and (max-width: 1920px) {
  .message .popup_Wrap .p_cont {
    width: calc(100vw * (1060 / 1920));
    padding: calc(100vw * (15 / 1920));
    margin: calc(100vw * (60 / 1920)) 0;
  }
}

@media screen and (max-width: 750px) {
  .message .popup_Wrap .p_cont {
    width: calc(100vw * (315 / 375));
    padding: calc(100vw * (3 / 375));
    margin: calc(100vw * (60 / 375)) 0;
  }
}

.message .popup_Wrap .p_cont .pop_close {
  cursor: pointer;
  position: absolute;
  top: -30px;
  right: -40px;
  width: 138px;
}

@media screen and (max-width: 1920px) {
  .message .popup_Wrap .p_cont .pop_close {
    top: calc(100vw * (-30 / 1920));
    right: calc(100vw * (-40 / 1920));
    width: calc(100vw * (138 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message .popup_Wrap .p_cont .pop_close {
    top: calc(100vw * (-20 / 375));
    right: calc(100vw * (-18 / 375));
    width: calc(100vw * (66 / 375));
  }
}

.message .popup_Wrap .p_cont ul {
  border: solid 4px #ff404c;
  width: 100%;
  margin: 0;
  padding: 84px 88px 100px;
}

@media screen and (max-width: 1920px) {
  .message .popup_Wrap .p_cont ul {
    border: solid 2px #ff404c;
    padding: calc(100vw * (84 / 1920)) calc(100vw * (88 / 1920)) calc(100vw * (100 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message .popup_Wrap .p_cont ul {
    border: solid calc(100vw * (2 / 375)) #ff404c;
    padding: calc(100vw * (28 / 375)) calc(100vw * (30 / 375)) calc(100vw * (30 / 375));
  }
}

.message .popup_Wrap .p_cont ul li.photo {
  width: 465px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 1920px) {
  .message .popup_Wrap .p_cont ul li.photo {
    width: calc(100vw * (465 / 1920));
    margin-bottom: calc(100vw * (30 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message .popup_Wrap .p_cont ul li.photo {
    width: calc(100vw * (250 / 375));
    margin-bottom: calc(100vw * (30 / 375));
  }
}

.message .popup_Wrap .p_cont ul li.photo img {
  width: 100%;
}

.message .popup_Wrap .p_cont ul li.name01 div,
.message .popup_Wrap .p_cont ul li.name02 dl {
  line-height: 1.4;
  padding: 4px 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1920px) {

  .message .popup_Wrap .p_cont ul li.name01 div,
  .message .popup_Wrap .p_cont ul li.name02 dl {
    padding: calc(100vw * (4 / 1920)) calc(100vw * (10 / 1920));
    margin-bottom: calc(100vw * (10 / 1920));
  }
}

@media screen and (max-width: 750px) {

  .message .popup_Wrap .p_cont ul li.name01 div,
  .message .popup_Wrap .p_cont ul li.name02 dl {
    padding: calc(100vw * (4 / 375)) calc(100vw * (10 / 375));
    margin-bottom: calc(100vw * (10 / 375));
  }
}

.message .popup_Wrap .p_cont ul li.name01 div {
  display: inline-block;
  color: #fff;
  background-color: #ff404c;
  font-weight: 400;
  font-size: 27px;
}

@media screen and (max-width: 1920px) {
  .message .popup_Wrap .p_cont ul li.name01 div {
    font-size: calc(100vw * (27 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message .popup_Wrap .p_cont ul li.name01 div {
    font-size: calc(100vw * (19 / 375));
  }
}

.message .popup_Wrap .p_cont ul li.name02 dl {
  display: inline-block;
  color: #fff;
  background-color: #ff404c;
}

.message .popup_Wrap .p_cont ul li.name02 dl dt {
  display: inline-block;
  font-size: 28px;
  padding-right: 1em;
}

@media screen and (max-width: 1920px) {
  .message .popup_Wrap .p_cont ul li.name02 dl dt {
    font-size: calc(100vw * (28 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message .popup_Wrap .p_cont ul li.name02 dl dt {
    font-size: calc(100vw * (20 / 375));
  }
}

.message .popup_Wrap .p_cont ul li.name02 dl dd {
  display: inline-block;
  font-weight: 700;
  font-size: 42px;
}

@media screen and (max-width: 1920px) {
  .message .popup_Wrap .p_cont ul li.name02 dl dd {
    font-size: calc(100vw * (42 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message .popup_Wrap .p_cont ul li.name02 dl dd {
    font-size: calc(100vw * (30 / 375));
  }
}

.message .popup_Wrap .p_cont ul li.text {
  font-size: 20px;
  padding-top: 10px;
}

@media screen and (max-width: 1920px) {
  .message .popup_Wrap .p_cont ul li.text {
    font-size: calc(100vw * (20 / 1920));
    padding-top: calc(100vw * (10 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .message .popup_Wrap .p_cont ul li.text {
    font-size: calc(100vw * (14 / 375));
    padding-top: calc(100vw * (20 / 375));
  }
}

/* ---------------------------------------------------- */
/* note_sec
------------------------------------------------------- */
.note_sec {
  position: relative;
  z-index: 100;
  width: 1320px;
  margin: 120px auto 50px;
}

@media screen and (max-width: 1920px) {
  .note_sec {
    width: calc(100vw * (1320 / 1920));
    margin: calc(100vw * (120 / 1920)) auto calc(100vw * (50 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .note_sec {
    width: calc(100vw * (315 / 375));
    margin: calc(100vw * (46 / 375)) auto calc(100vw * (28 / 375));
  }
}

.note_sec .text {
  text-align: right;
  font-size: 16px;
}

@media screen and (max-width: 1920px) {
  .note_sec .text {
    font-size: calc(100vw * (16 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .note_sec .text {
    font-size: calc(100vw * (13 / 375));
  }
}

/* ---------------------------------------------------- */
/* footer
------------------------------------------------------- */
.footer_sec {
  background: #4c4948;
  color: #fff;
  padding: 50px 0 70px;
}

@media screen and (max-width: 1920px) {
  .footer_sec {
    padding: calc(100vw * (50 / 1920)) calc(100vw * (20 / 1920)) calc(100vw * (70 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .footer_sec {
    padding: 3.5rem 2rem 3.5rem;
  }
}

.footer_sec footer {
  position: relative;
  z-index: 100;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .footer_sec footer {
    display: block;
  }
}

.footer_sec footer .logo {
  width: 362px;
}

@media screen and (max-width: 1920px) {
  .footer_sec footer .logo {
    width: calc(100vw * (362 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .footer_sec footer .logo {
    width: 23rem;
    text-align: center;
    margin: 0 auto 3rem;
  }
}

.footer_sec footer .info .sns {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .footer_sec footer .info .sns {
    justify-content: center;
  }
}

.footer_sec footer .info .sns li {
  width: 75px;
  margin: 0 10px;
}

@media screen and (max-width: 1920px) {
  .footer_sec footer .info .sns li {
    width: calc(100vw * (75 / 1920));
    margin: 0 calc(100vw * (10 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .footer_sec footer .info .sns li {
    width: 4rem;
    margin: 0 0.7rem;
  }
}

.footer_sec footer .info .copy {
  font-size: 17px;
  margin-top: 15px;
  line-height: 1;
}

@media screen and (max-width: 1920px) {
  .footer_sec footer .info .copy {
    font-size: calc(100vw * (17 / 1920));
    margin-top: 10px;
  }
}

@media screen and (max-width: 750px) {
  .footer_sec footer .info .copy {
    font-size: 1rem;
    line-height: 1.3;
    margin-top: 1rem;
    text-align: center;
  }
}

/*----------------------------------------------------*/
/* .pagetop（ページ上部へ）
------------------------------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  z-index: 999999;
  bottom: 150px;
  right: 40px;
}

@media screen and (max-width: 1920px) {
  .pagetop {
    bottom: calc(100vw * (150 / 1920));
    right: calc(100vw * (40 / 1920));
  }
}

@media screen and (max-width: 1350px) {
  .pagetop {
    bottom: calc(100vw * (150 / 1350));
  }
}

@media screen and (max-width: 750px) {
  .pagetop {
    bottom: calc(100vw * (14 / 375));
    right: calc(100vw * (10 / 375));
  }
}

.pagetop a {
  background-color: #ff404c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  border-radius: 100px;
  width: 144px;
  height: 144px;
  padding: 4px;
}

@media screen and (max-width: 1920px) {
  .pagetop a {
    width: calc(100vw * (144 / 1920));
    height: calc(100vw * (144 / 1920));
    padding: calc(100vw * (4 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .pagetop a {
    width: calc(100vw * (66 / 375));
    height: calc(100vw * (66 / 375));
    padding: calc(100vw * (4 / 375));
  }
}

.page_yell .pagetop a {
  background-color: #0099ff;
}

/* ---------------------------------------------------- */
/* 背景固定 + 暗くなる ※スライダー背景など
------------------------------------------------------- */
.page_Area {
  position: fixed;
  z-index: 77777777;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: scroll;
  /* ★ */
  width: 100vw;
  height: auto;
}

.page_Back01 {
  position: fixed;
  z-index: 88888888;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.page_Back02 {
  position: fixed;
  z-index: 88888888;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.page_Wrap {
  position: relative;
  z-index: 99999999;
  width: 100vw;
  height: auto;
}

/* ---------------------------------------------------- */
/* 閉じるボタン（ページバック）
------------------------------------------------------- */
.back_parent {
  position: relative;
}

.back {
  position: absolute;
  z-index: 77777777;
}

.page_present .back {
  top: 2%;
  right: 20%;
}

@media screen and (max-width: 1350px) {
  .page_present .back {
    top: 1%;
  }
}

@media screen and (max-width: 750px) {
  .page_present .back {
    top: 0;
    right: 8%;
  }
}

.page_map .back {
  top: 8%;
  right: 21%;
}

@media screen and (max-width: 1350px) {
  .page_map .back {
    top: 9%;
    right: 21%;
  }
}

@media screen and (max-width: 750px) {
  .page_map .back {
    top: 14%;
    right: 8%;
  }
}

.cont_list .back {
  right: 0;
  top: -58px;
}

@media screen and (max-width: 1920px) {
  .cont_list .back {
    top: calc(100vw * (-58 / 1920));
  }
}

@media screen and (max-width: 1350px) {
  .cont_list .back {
    top: calc(100vw * (-46 / 1350));
  }
}

@media screen and (max-width: 750px) {
  .cont_list .back {
    top: calc(100vw * (-38 / 375));
  }
}

.back a {
  display: block;
  background-color: #000;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  padding: 12px;
}

@media screen and (max-width: 1920px) {
  .back a {
    width: calc(100vw * (60 / 1920));
    height: calc(100vw * (60 / 1920));
    padding: calc(100vw * (12 / 1920));
  }
}

@media screen and (max-width: 1350px) {
  .back a {
    width: calc(100vw * (52 / 1350));
    height: calc(100vw * (52 / 1350));
    padding: calc(100vw * (10 / 1350));
  }
}

@media screen and (max-width: 750px) {
  .back a {
    width: calc(100vw * (36 / 375));
    height: calc(100vw * (36 / 375));
    padding: calc(100vw * (6 / 375));
  }
}

/* ---------------------------------------------------- */
/* .swiper
------------------------------------------------------- */
.swiper {
  width: 1920px;
}

@media screen and (max-width: 1920px) {
  .swiper {
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .swiper {
    margin-top: 10%;
  }
}

.swiper .swiper-wrapper {
  width: 100%;
  margin-top: 3%;
}

@media screen and (max-width: 750px) {
  .swiper .swiper-wrapper {
    margin-top: 10%;
  }
}

.swiper .swiper-wrapper .swiper-slide {
  cursor: default;
  height: auto;
  padding: 0 60px 10px;
}

@media screen and (max-width: 1920px) {
  .swiper .swiper-wrapper .swiper-slide {
    padding: 0 calc(100vw * (60 / 1920)) calc(100vw * (10 / 1920));
    padding-bottom: calc(100vw * (10 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .swiper .swiper-wrapper .swiper-slide {
    padding: 0;
  }
}

.swiper .swiper-wrapper .swiper-slide .slide_inner {
  cursor: default;
}

.swiper-pagination-fraction {
  bottom: 0;
  position: relative;
  color: #fff;
  font-size: 20px;
}

@media screen and (max-width: 1920px) {
  .swiper-pagination-fraction {
    font-size: calc(100vw * (20 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .swiper-pagination-fraction {
    font-size: calc(100vw * (12 / 375));
    margin-top: calc(100vw * (10 / 375));
  }
}

.swiper-button-prev,
.swiper-button-next {
  z-index: 10000;
  background-color: #fff;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  padding-top: 2px;
  font-weight: bold;
  top: 45%;
}

@media screen and (max-width: 1920px) {

  .swiper-button-prev,
  .swiper-button-next {
    border-radius: calc(100vw * (100 / 1920));
    width: calc(100vw * (80 / 1920));
    height: calc(100vw * (80 / 1920));
    padding-top: calc(100vw * (2 / 1920));
  }
}

@media screen and (max-width: 750px) {

  .swiper-button-prev,
  .swiper-button-next {
    width: calc(100vw * (40 / 375));
    height: calc(100vw * (40 / 375));
  }

  .page_present .swiper-button-prev,
  .page_present .swiper-button-next {
    top: 48%;
  }

  .page_map .swiper-button-prev,
  .page_map .swiper-button-next {
    top: 56%;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 50px;
}

@media screen and (max-width: 1920px) {

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: calc(100vw * (50 / 1920));
  }
}

@media screen and (max-width: 750px) {

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: calc(100vw * (26 / 375));
  }
}

.swiper-button-prev {
  padding-right: 8px;
}

.page_present .swiper-button-prev {
  left: 10%;
}

.page_map .swiper-button-prev {
  left: 15%;
}

@media screen and (max-width: 1920px) {
  .swiper-button-prev {
    padding-right: calc(100vw * (8 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .swiper-button-prev {
    padding-right: calc(100vw * (3 / 375));
  }

  .page_present .swiper-button-prev {
    left: 1%;
  }

  .page_map .swiper-button-prev {
    left: 1%;
  }
}

.swiper-button-next {
  padding-left: 8px;
}

.page_present .swiper-button-next {
  right: 10%;
}

.page_map .swiper-button-next {
  right: 15%;
}

@media screen and (max-width: 1920px) {
  .swiper-button-next {
    padding-left: calc(100vw * (8 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .swiper-button-next {
    padding-left: calc(100vw * (3 / 375));
  }

  .page_present .swiper-button-next {
    right: 1%;
  }

  .page_map .swiper-button-next {
    right: 1%;
  }
}

/* ---------------------------------------------------- */
/* .swiper.page_map ※マップのスライダー
------------------------------------------------------- */
.swiper.page_map .swiper-wrapper .swiper-slide .slide_inner {
  background-color: #fff;
  padding: 20px;
}

@media screen and (max-width: 1920px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner {
    padding: calc(100vw * (20 / 1920));
  }
}

@media screen and (max-width: 1350px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner {
    padding: calc(100vw * (20 / 1350));
  }
}

@media screen and (max-width: 750px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner {
    padding: calc(100vw * (10 / 375));
  }
}

.swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dt {
  min-height: 70px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 1920px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dt {
    min-height: calc(100vw * (70 / 1920));
    margin-bottom: calc(100vw * (20 / 1920));
  }
}

@media screen and (max-width: 1350px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dt {
    min-height: calc(100vw * (74 / 1350));
    margin-bottom: calc(100vw * (20 / 1350));
  }
}

@media screen and (max-width: 750px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dt {
    min-height: calc(100vw * (40 / 375));
    margin-bottom: calc(100vw * (10 / 375));
  }
}

.swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dt .name {
  position: relative;
  font-size: 20px;
  padding-left: 50px;
}

@media screen and (max-width: 1920px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dt .name {
    font-size: calc(100vw * (20 / 1920));
    padding-left: calc(100vw * (50 / 1920));
  }
}

@media screen and (max-width: 1350px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dt .name {
    font-size: calc(100vw * (18 / 1350));
    padding-left: calc(100vw * (50 / 1350));
  }
}

@media screen and (max-width: 750px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dt .name {
    font-size: calc(100vw * (12 / 375));
    padding-left: calc(100vw * (34 / 375));
  }
}

.swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dt .name span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
}

@media screen and (max-width: 1920px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dt .name span {
    width: calc(100vw * (46 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dt .name span {
    width: calc(100vw * (30 / 375));
  }
}

.swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dd a {
  pointer-events: none;
  cursor: default;
}

@media screen and (max-width: 750px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dd a {
    pointer-events: initial;
    cursor: pointer;
  }

  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dd a::after {
    content: "画像タップで拡大表示します";
    font-size: calc(100vw * (12 / 375));
    color: #000;
  }
}

.swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dd.youtubeBox {
  margin: 60px 0 20px;
}

@media screen and (max-width: 1920px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dd.youtubeBox {
    margin: calc(100vw * (60 / 1920)) 0 calc(100vw * (20 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .swiper.page_map .swiper-wrapper .swiper-slide .slide_inner dd.youtubeBox {
    margin: calc(100vw * (50 / 375)) 0 calc(100vw * (10 / 375));
  }
}

/* ---------------------------------------------------- */
/* .swiper.page_present ※ことばのプレゼントのスライダー
------------------------------------------------------- */
.swiper.page_present {
  width: 1150px;
  padding-top: 60px;
}

@media screen and (max-width: 1920px) {
  .swiper.page_present {
    width: 60vw;
    padding-top: calc(100vw * (60 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .swiper.page_present {
    width: 100%;
    padding-top: calc(100vw * (10 / 375));
  }
}

.swiper.page_present .swiper-wrapper .swiper-slide {
  padding: 0 40px 10px;
}

@media screen and (max-width: 1920px) {
  .swiper.page_present .swiper-wrapper .swiper-slide {
    padding: 0 calc(100vw * (40 / 1920)) calc(100vw * (10 / 1920));
    padding-bottom: calc(100vw * (10 / 1920));
  }
}

@media screen and (max-width: 750px) {
  .swiper.page_present .swiper-wrapper .swiper-slide {
    padding: 0;
  }
}

.swiper.page_present .swiper-wrapper .swiper-slide .slide_inner li a {
  pointer-events: none;
  cursor: default;
}

@media screen and (max-width: 750px) {
  .swiper.page_present .swiper-wrapper .swiper-slide .slide_inner li a {
    pointer-events: initial;
    cursor: pointer;
  }

  .swiper.page_present .swiper-wrapper .swiper-slide .slide_inner li a::after {
    content: "画像タップで拡大表示します";
    font-size: calc(100vw * (12 / 375));
    color: #fff;
  }
}

/* ---------------------------------------------------- */
/* .page_map_cont
------------------------------------------------------- */
.page_map_cont,
.page_present_cont {
  width: 1920px;
  padding-top: 80px;
  margin: 0 auto;
}

@media screen and (max-width: 1920px) {

  .page_map_cont,
  .page_present_cont {
    width: 100%;
    padding-top: calc(100vw * (80 / 1920));
  }
}

@media screen and (max-width: 750px) {

  .page_map_cont,
  .page_present_cont {
    padding-top: calc(100vw * (60 / 375));
  }
}

.page_map_cont ul.cont_list,
.page_present_cont ul.cont_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {

  .page_map_cont ul.cont_list,
  .page_present_cont ul.cont_list {
    width: 90%;
  }
}

.page_map_cont ul.cont_list:before,
.page_map_cont ul.cont_list:after,
.page_present_cont ul.cont_list:before,
.page_present_cont ul.cont_list:after {
  content: "";
  display: flex;
  order: 999;
  width: 30%;
  height: auto;
  margin: 20px 0;
}

@media screen and (max-width: 1920px) {

  .page_map_cont ul.cont_list:before,
  .page_map_cont ul.cont_list:after,
  .page_present_cont ul.cont_list:before,
  .page_present_cont ul.cont_list:after {
    margin: calc(100vw * (20 / 1920)) 0;
  }
}

@media screen and (max-width: 750px) {

  .page_map_cont ul.cont_list:before,
  .page_map_cont ul.cont_list:after,
  .page_present_cont ul.cont_list:before,
  .page_present_cont ul.cont_list:after {
    margin: calc(100vw * (20 / 375)) 0;
    width: 48%;
  }
}

.page_map_cont ul.cont_list li,
.page_present_cont ul.cont_list li {
  width: 32%;
  height: auto;
  margin: 1% 0;
}

@media screen and (max-width: 750px) {

  .page_map_cont ul.cont_list li,
  .page_present_cont ul.cont_list li {
    margin: 2% 0;
    width: 48%;
  }
}

.page_map_cont ul.cont_list li a,
.page_present_cont ul.cont_list li a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.page_map_cont ul.cont_list.two_cont,
.page_present_cont ul.cont_list.two_cont {
  justify-content: center;
}

@media screen and (max-width: 750px) {

  .page_map_cont ul.cont_list.two_cont,
  .page_present_cont ul.cont_list.two_cont {
    justify-content: space-between;
  }
}

.page_map_cont ul.cont_list.two_cont:before,
.page_map_cont ul.cont_list.two_cont:after,
.page_present_cont ul.cont_list.two_cont:before,
.page_present_cont ul.cont_list.two_cont:after {
  content: none;
}

.page_map_cont ul.cont_list.two_cont li,
.page_present_cont ul.cont_list.two_cont li {
  margin: 1% 2%;
}

@media screen and (max-width: 750px) {

  .page_map_cont ul.cont_list.two_cont li,
  .page_present_cont ul.cont_list.two_cont li {
    margin: 2% 0;
  }
}

/* 「たちばなエール」ページ */
/* ---------------------------------------------------- */
/* .tachi_yell_sec
------------------------------------------------------- */
.tachi_yell_sec {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
  width: 100vw;
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec {
    flex-direction: column;
  }
}

.tachi_yell_sec .y_logo {
  position: fixed;
  z-index: 100;
  top: 10vw;
  right: 2vw;
  width: calc(100vw * (650 / 1920));
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .y_logo {
    position: relative;
    top: initial;
    right: initial;
    width: calc(100vw * (362 / 375));
    margin-top: calc(100vw * (100 / 375));
  }
}

.tachi_yell_sec .lead_box {
  width: calc(100vw * (710 / 1920));
  margin: 0 auto;
  padding-top: calc(100vw * (710 / 1920));
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .lead_box {
    width: 100%;
    width: 100vw;
    padding: calc(100vw * (50 / 375)) 0 calc(100vw * (100 / 375));
  }
}

.tachi_yell_sec .lead_box .lead_txt {
  position: relative;
  z-index: 100;
  width: calc(100vw * (440 / 1920));
  margin: 0 auto;
  padding: calc(100vw * (20 / 1920)) calc(100vw * (10 / 1920)) calc(100vw * (20 / 1920)) calc(100vw * (30 / 1920));
  background-color: rgba(255, 255, 255, 0.8);
  color: #534741;
  font-size: calc(100vw * (20 / 1920));
  letter-spacing: calc(100vw * (2 / 1920));
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .lead_box .lead_txt {
    width: 100%;
    padding: 0;
    font-size: calc(100vw * (16 / 375));
    letter-spacing: calc(100vw * (2 / 375));
    text-align: center;
  }
}

.tachi_yell_sec .lead_box .lead_txt span {
  color: #0099ff;
  font-weight: 900;
  font-size: calc(100vw * (37 / 1920));
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .lead_box .lead_txt span {
    font-size: calc(100vw * (30 / 375));
  }
}

.tachi_yell_sec .yell_box {
  width: calc(100vw * (1200 / 1920));
  position: relative;
  z-index: 100;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .yell_box {
    width: 100%;
    width: 100vw;
  }
}

.tachi_yell_sec .yell_box .y_title {
  cursor: pointer;
  width: calc(100vw * (400 / 1920));
  height: calc(100vw * (400 / 1920));
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .yell_box .y_title {
    width: calc(100vw / 3);
    height: calc(100vw / 3);
  }
}

.tachi_yell_sec .yell_box .y_title.blank {
  cursor: default;
  background: url(../img/yell/blank_img.png) center center no-repeat;
  background-size: calc(100vw * (210 / 1920));
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .yell_box .y_title.blank {
    background-size: calc(100vw * (66 / 375));
  }
}

.tachi_yell_sec .yell_box .y_title dl {
  width: 100%;
  height: 100%;
}

.tachi_yell_sec .yell_box .y_title dl dt {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.6s;
  color: #fff;
  font-size: calc(100vw * (57 / 1920));
  text-align: center;
  line-height: 1.3;
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .yell_box .y_title dl dt {
    font-size: calc(100vw * (18 / 375));
    line-height: 1.3;
  }
}

.tachi_yell_sec .yell_box .y_title dl dt:hover {
  text-decoration: none;
  opacity: 0.8;
}

.tachi_yell_sec .yell_box .y_title dl dt span,
.tachi_yell_sec .yell_box .y_title dl dd {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
}

.tachi_yell_sec .yell_box .y_title.bg-01 {
  background-color: #fff;
}

.tachi_yell_sec .yell_box .y_title.bg-01 dl dt {
  background: url(../img/yell/bg01.svg) no-repeat;
  background-size: cover;
}

.tachi_yell_sec .yell_box .y_title.bg-02 {
  background-color: #fff;
}

.tachi_yell_sec .yell_box .y_title.bg-02 dl dt {
  background: url(../img/yell/bg02.svg) no-repeat;
  background-size: cover;
}

.tachi_yell_sec .yell_box .y_title.bg-03 {
  background-color: #fff;
}

.tachi_yell_sec .yell_box .y_title.bg-03 dl dt {
  background: url(../img/yell/bg03.svg) no-repeat;
  background-size: cover;
}

.tachi_yell_sec .yell_box .y_title.bg-04 {
  background-color: #fff;
}

.tachi_yell_sec .yell_box .y_title.bg-04 dl dt {
  background: url(../img/yell/bg04.svg) no-repeat;
  background-size: cover;
}

.tachi_yell_sec .yell_box .y_title.bg-05 {
  background-color: #fff;
}

.tachi_yell_sec .yell_box .y_title.bg-05 dl dt {
  background: url(../img/yell/bg05.svg) no-repeat;
  background-size: cover;
}

.tachi_yell_sec .yell_box .y_title.bg-06 {
  background-color: #fff;
}

.tachi_yell_sec .yell_box .y_title.bg-06 dl dt {
  background: url(../img/yell/bg06.svg) no-repeat;
  background-size: cover;
}

.tachi_yell_sec .yell_box .y_title.bg-07 {
  background-color: #fff;
}

.tachi_yell_sec .yell_box .y_title.bg-07 dl dt {
  background: url(../img/yell/bg07.svg) no-repeat;
  background-size: cover;
}

.tachi_yell_sec .yell_box .y_title.bg-08 {
  background-color: #fff;
}

.tachi_yell_sec .yell_box .y_title.bg-08 dl dt {
  background: url(../img/yell/bg08.svg) no-repeat;
  background-size: cover;
}

.tachi_yell_sec .yell_box .y_title.bg-09 {
  background-color: #fff;
}

.tachi_yell_sec .yell_box .y_title.bg-09 dl dt {
  background: url(../img/yell/bg09.svg) no-repeat;
  background-size: cover;
}

.tachi_yell_sec .yell_box .y_title.bg-10 {
  background-color: #fff;
}

.tachi_yell_sec .yell_box .y_title.bg-10 dl dt {
  background: url(../img/yell/bg10.svg) no-repeat;
  background-size: cover;
}

.tachi_yell_sec .yell_box .y_title.bg-11 {
  background-color: #fff;
}

.tachi_yell_sec .yell_box .y_title.bg-11 dl dt {
  background: url(../img/yell/bg11.svg) no-repeat;
  background-size: cover;
}

.tachi_yell_sec .yell_box .y_title.bg-12 {
  background-color: #fff;
}

.tachi_yell_sec .yell_box .y_title.bg-12 dl dt {
  background: url(../img/yell/bg12.svg) no-repeat;
  background-size: cover;
}

.tachi_yell_sec .yell_box .y_inner {
  width: 100%;
}

.tachi_yell_sec .yell_box .y_inner.view {
  display: none;
}

.tachi_yell_sec .yell_box .y_inner dl {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(60vw / 3);
  min-height: calc(100vw * (400 / 1920));
  display: flex;
}


@media screen and (max-width: 750px) {
  .tachi_yell_sec .yell_box .y_inner dl {
    min-height: initial;
    flex-direction: column;
  }
}

.tachi_yell_sec .yell_box .y_inner dl dt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100vw * (400 / 1920));
  height: calc(100vw * (400 / 1920));
  font-size: calc(100vw * (57 / 1920));
  text-align: center;
  line-height: 1.3;
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .yell_box .y_inner dl dt {
    width: 100%;
    height: initial;
    min-height: calc(100vw * (280 / 375));
    font-size: calc(100vw * (45 / 375));
    line-height: 1.1;
  }
}

.tachi_yell_sec .yell_box .y_inner dl dt span {
  /* font-family: "Noto Sans JP", sans-serif !important; */
  font-weight: normal;
      font-size: calc(100vw * (20 / 1440));
  color: #000;
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 50px;
  line-height: 1;
  margin-top: 20px;
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .yell_box .y_inner dl dt span {
    font-size: 1.6rem;
    padding: 10px 20px;
  }
}

.tachi_yell_sec .yell_box .y_inner dl dd {
  width: calc(100vw * (800 / 1440));
  height: auto;
  color: #534741;
  font-weight: 700;
  font-size: calc(100vw * (18 / 1440));
  padding: calc(100vw * (72 / 1440)) calc(100vw * (82 / 1440)) calc(100vw * (72 / 1440)) calc(100vw * (35 / 1440));
  display: flex;
  align-items: center;
  letter-spacing: calc(100vw * (4 / 1440));
  line-height: 1.8;
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .yell_box .y_inner dl dd {
    width: calc(100vw * (315 / 375));
    font-size: calc(100vw * (16 / 375));
    padding: 0;
    margin: 0 auto calc(100vw * (30 / 375));
    display: block;
    letter-spacing: calc(100vw * (2 / 375));
    line-height: 2;
  }
}

.tachi_yell_sec .yell_box .y_inner.bg-01 dl {
  background-color: #fce6d7;
}

.tachi_yell_sec .yell_box .y_inner.bg-01 dl dt {
  color: #ff813f;
}

.tachi_yell_sec .yell_box .y_inner.bg-02 dl {
  background-color: #f5e8ff;
}

.tachi_yell_sec .yell_box .y_inner.bg-02 dl dt {
  color: #906bb4;

}

.tachi_yell_sec .yell_box .y_inner.bg-03 dl {
  background-color: #ffe2f0;
}

.tachi_yell_sec .yell_box .y_inner.bg-03 dl dt {
  color: #ff6cb3;
}

.tachi_yell_sec .yell_box .y_inner.bg-04 dl {
  background-color: #caf8ff;
}

.tachi_yell_sec .yell_box .y_inner.bg-04 dl dt {
  color: #6fd3f2;
}

.tachi_yell_sec .yell_box .y_inner.bg-05 dl {
  background-color: #fff7cc;
}

.tachi_yell_sec .yell_box .y_inner.bg-05 dl dt {
  color: #ffbc2e;
}

.tachi_yell_sec .yell_box .y_inner.bg-06 dl {
  background-color: #d7ffe9;

}

.tachi_yell_sec .yell_box .y_inner.bg-06 dl dt {
  color: #5bc68f;
}

.tachi_yell_sec .yell_box .y_inner.bg-07 dl {
  background-color: #e7ffd9;
}

.tachi_yell_sec .yell_box .y_inner.bg-07 dl dt {
  color: #82d060;
}

.tachi_yell_sec .yell_box .y_inner.bg-08 dl {
  background-color: #f5e8ff;

}

.tachi_yell_sec .yell_box .y_inner.bg-08 dl dt {
  color: #906bb4;
}

.tachi_yell_sec .yell_box .y_inner.bg-09 dl {
  background-color: #fce6d7;

}

.tachi_yell_sec .yell_box .y_inner.bg-09 dl dt {
  color: #ff813f;

}

.tachi_yell_sec .yell_box .y_inner.bg-10 dl {
  background-color: #fff7cc;
}

.tachi_yell_sec .yell_box .y_inner.bg-10 dl dt {
  color: #ffbc2e;
}

.tachi_yell_sec .yell_box .y_inner.bg-11 dl {
  background-color: #ffe2f0;
}

.tachi_yell_sec .yell_box .y_inner.bg-11 dl dt {
  color: #ff6cb3;
}

.tachi_yell_sec .yell_box .y_inner.bg-12 dl {
  background-color: #caf8ff;
}

.tachi_yell_sec .yell_box .y_inner.bg-12 dl dt {
  color: #6fd3f2;
}

.tachi_yell_sec .yell_box .y_inner dl::before {
  content: "";
  position: absolute;
  top: 0;
  width: calc(100vw * (52 / 1440));
  height: calc(100vw * (26 / 1440));
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .yell_box .y_inner dl::before {
    width: calc(100vw * (28 / 375));
    height: calc(100vw * (14 / 375));
  }
}

.tachi_yell_sec .yell_box .y_inner:nth-child(3n-2) dl::before {
  left: calc(100vw * (123 / 1440));
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .yell_box .y_inner:nth-child(3n-2) dl::before {
    left: calc(100vw * (48 / 375));
  }
}

.tachi_yell_sec .yell_box .y_inner:nth-child(3n-1) dl::before {
  left: calc(100vw * (424 / 1440));
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .yell_box .y_inner:nth-child(3n-1) dl::before {
    left: calc(100vw * (173 / 375));
  }
}

.tachi_yell_sec .yell_box .y_inner:nth-child(3n) dl::before {
  left: calc(100vw * (720 / 1440));
}

@media screen and (max-width: 750px) {
  .tachi_yell_sec .yell_box .y_inner:nth-child(3n) dl::before {
    left: calc(100vw * (298 / 375));
  }
}

.tachi_yell_sec .yell_box .y_inner.bg-01 dl::before {
  background: url(../img/yell/bg01_arw.svg) center/contain no-repeat;
}

.tachi_yell_sec .yell_box .y_inner.bg-02 dl::before {
  background: url(../img/yell/bg02_arw.svg) center/contain no-repeat;
}

.tachi_yell_sec .yell_box .y_inner.bg-03 dl::before {
  background: url(../img/yell/bg03_arw.svg) center/contain no-repeat;
}

.tachi_yell_sec .yell_box .y_inner.bg-04 dl::before {
  background: url(../img/yell/bg04_arw.svg) center/contain no-repeat;
}

.tachi_yell_sec .yell_box .y_inner.bg-05 dl::before {
  background: url(../img/yell/bg05_arw.svg) center/contain no-repeat;
}

.tachi_yell_sec .yell_box .y_inner.bg-06 dl::before {
  background: url(../img/yell/bg06_arw.svg) center/contain no-repeat;
}

.tachi_yell_sec .yell_box .y_inner.bg-07 dl::before {
  background: url(../img/yell/bg07_arw.svg) center/contain no-repeat;
}

.tachi_yell_sec .yell_box .y_inner.bg-08 dl::before {
  background: url(../img/yell/bg08_arw.svg) center/contain no-repeat;
}

.tachi_yell_sec .yell_box .y_inner.bg-09 dl::before {
  background: url(../img/yell/bg09_arw.svg) center/contain no-repeat;
}

.tachi_yell_sec .yell_box .y_inner.bg-10 dl::before {
  background: url(../img/yell/bg10_arw.svg) center/contain no-repeat;
}

.tachi_yell_sec .yell_box .y_inner.bg-11 dl::before {
  background: url(../img/yell/bg11_arw.svg) center/contain no-repeat;
}

.tachi_yell_sec .yell_box .y_inner.bg-12 dl::before {
  background: url(../img/yell/bg12_arw.svg) center/contain no-repeat;
}

.tachi_yell_sec .yell_box .y_title.bg-01 dl dt,
.tachi_yell_sec .yell_box .y_title.bg-02 dl dt,
.tachi_yell_sec .yell_box .y_title.bg-03 dl dt,
.tachi_yell_sec .yell_box .y_title.bg-04 dl dt,
.tachi_yell_sec .yell_box .y_title.bg-05 dl dt,
.tachi_yell_sec .yell_box .y_title.bg-06 dl dt,
.tachi_yell_sec .yell_box .y_title.bg-07 dl dt,
.tachi_yell_sec .yell_box .y_title.bg-08 dl dt,
.tachi_yell_sec .yell_box .y_title.bg-09 dl dt,
.tachi_yell_sec .yell_box .y_title.bg-10 dl dt,
.tachi_yell_sec .yell_box .y_title.bg-11 dl dt,
.tachi_yell_sec .yell_box .y_title.bg-12 dl dt {
  font-size: calc(100vw*(32 / 1440));
  font-weight: 900;
}


.tachi_yell_sec .yell_box .y_inner.bg-01 dl dt,
.tachi_yell_sec .yell_box .y_inner.bg-02 dl dt,
.tachi_yell_sec .yell_box .y_inner.bg-03 dl dt,
.tachi_yell_sec .yell_box .y_inner.bg-04 dl dt,
.tachi_yell_sec .yell_box .y_inner.bg-05 dl dt,
.tachi_yell_sec .yell_box .y_inner.bg-06 dl dt,
.tachi_yell_sec .yell_box .y_inner.bg-07 dl dt,
.tachi_yell_sec .yell_box .y_inner.bg-08 dl dt,
.tachi_yell_sec .yell_box .y_inner.bg-09 dl dt,
.tachi_yell_sec .yell_box .y_inner.bg-10 dl dt,
.tachi_yell_sec .yell_box .y_inner.bg-11 dl dt,
.tachi_yell_sec .yell_box .y_inner.bg-12 dl dt {
  font-size: calc(100vw*( 32/ 1440));
  font-weight: 900;
}

@media screen and (max-width: 750px) {

  .tachi_yell_sec .yell_box .y_title.bg-01 dl dt,
  .tachi_yell_sec .yell_box .y_title.bg-02 dl dt,
  .tachi_yell_sec .yell_box .y_title.bg-03 dl dt,
  .tachi_yell_sec .yell_box .y_title.bg-04 dl dt,
  .tachi_yell_sec .yell_box .y_title.bg-05 dl dt,
  .tachi_yell_sec .yell_box .y_title.bg-06 dl dt,
  .tachi_yell_sec .yell_box .y_title.bg-07 dl dt,
  .tachi_yell_sec .yell_box .y_title.bg-08 dl dt,
  .tachi_yell_sec .yell_box .y_title.bg-09 dl dt,
  .tachi_yell_sec .yell_box .y_title.bg-10 dl dt,
  .tachi_yell_sec .yell_box .y_title.bg-11 dl dt,
  .tachi_yell_sec .yell_box .y_title.bg-12 dl dt {
    font-size: 1.4rem;
    font-weight: 900;
  }


  .tachi_yell_sec .yell_box .y_inner.bg-01 dl dt,
  .tachi_yell_sec .yell_box .y_inner.bg-02 dl dt,
  .tachi_yell_sec .yell_box .y_inner.bg-03 dl dt,
  .tachi_yell_sec .yell_box .y_inner.bg-04 dl dt,
  .tachi_yell_sec .yell_box .y_inner.bg-05 dl dt,
  .tachi_yell_sec .yell_box .y_inner.bg-06 dl dt,
  .tachi_yell_sec .yell_box .y_inner.bg-07 dl dt,
  .tachi_yell_sec .yell_box .y_inner.bg-08 dl dt,
  .tachi_yell_sec .yell_box .y_inner.bg-09 dl dt,
  .tachi_yell_sec .yell_box .y_inner.bg-10 dl dt,
  .tachi_yell_sec .yell_box .y_inner.bg-11 dl dt,
  .tachi_yell_sec .yell_box .y_inner.bg-12 dl dt {
    font-size: 3.0rem;
    font-weight: 900;
  }
}

/* ---------------------------------------------------- */
/* test ★テスト
------------------------------------------------------- */
.page_test ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80vw;
  margin: 0 auto;
}

.page_test ul:before,
.page_test ul:after {
  content: "";
  display: flex;
  order: 999;
  width: 25vw;
  height: 25vw;
  margin: 20px 0;
}

.page_test ul li {
  width: 25vw;
  height: 25vw;
  margin: 20px 0;
}

.page_test ul li a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
}

.testdata,
.page_present_cont ul.cont_list li,
.page_map_cont ul.cont_list li,
.slide_inner dd {
  position: relative;
}

.testdata span,
.page_present_cont ul.cont_list li span,
.page_map_cont ul.cont_list li span,
.slide_inner dd span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  color: black;
  font-size: 200%;
  font-weight: bold;
}

@media screen and (max-width: 750px) {

  .testdata span,
  .page_present_cont ul.cont_list li span,
  .page_map_cont ul.cont_list li span,
  .slide_inner dd span {
    font-size: 120%;
  }
}




/* ==================
250206追加
================== */


#page_top2 {
 width: 100px;
  height: 100px;
  position: fixed;
  right: 100px;
  bottom: 200px;
  z-index: 101;

}

#page_top2 a {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 750px){
 footer #page_top2 {
    width: 60px;
    height: 60px;
    right: 10px;
    z-index: 101;
  }
  footer #page_top2 a {
    width: 60px;
    height: 60px;
  }
}


.tachi_yell_sec .lead_box .lead_txt span .color1 {
  color: #ff8aa2;
}

.tachi_yell_sec .lead_box .lead_txt span .color2 {
  color: #6fd3f2;
}

.tachi_yell_sec .lead_box .lead_txt span .color3 {
  color: #ff8d4f;
}

.tachi_yell_sec .lead_box .lead_txt span .color4 {
  color: #ffbc2e;
}

.tachi_yell_sec .lead_box .lead_txt span .color5 {
  color: #a498ee;
}

.tachi_yell_sec .lead_box .lead_txt span .color6 {
  color: #82d060;
}

.tachi_yell_sec .lead_box .lead_txt span .color7 {
  color: #5bc68f;
}


.confetti canvas {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

#MENU {
  position: relative;
  z-index: 110;
}
#MENU .humBtn {
  position: fixed;
  top: 35px;
  right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 103px;
  height: 100px;
  z-index: 11;
  background-image: url(../img/menu_btn_open.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
#MENU .humBtn.open {
  background-image: url(../img/menu_btn_close.svg);
}
#MENU .hd__nav {
  position: fixed;
  z-index: 2;
  right: -680px;
  width: 680px;
  padding: 150px 0px 80px 50px;
  background-color: #fc7d9a;
  border-radius: 0 0 0 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0;
  height: 95vh;
  overflow: auto;
}
#MENU .hd__nav.open {
  right: 0;
}
#MENU .hd__nav--link {
  margin-bottom: 5%;
  padding-left: 25px;
  text-indent: -25px;
}
#MENU .hd__nav--link a {
  padding-left: 25px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: -0.05rem;
  line-height: 1;
  font-size: 2.4rem;
  color: #fff;
  font-weight: bold;
  position: relative;
}
#MENU .hd__nav--link a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 10px;
  height: 20px;
  border-radius: 0 100% 100% 0%/50%;
  background: #fff;
}
#MENU .hd__nav--link:nth-of-type(1) a::before {
  background: #76ccef;
}
#MENU .hd__nav--link:nth-of-type(2) a::before {
  background: #b4e598;
}
#MENU .hd__nav--link:nth-of-type(3) a::before {
  background: #fae455;
}
#MENU .hd__nav--link:nth-of-type(4) a::before {
  background: #76ccef;
}
#MENU .hd__nav--link:nth-of-type(5) a::before {
  background: #b4e598;
}
#MENU .hd__nav--link:nth-of-type(6) a::before {
  background: #fae455;
}
#MENU .hd__nav--link:nth-of-type(7) a::before {
  background: #76ccef;
}
#MENU .hd__nav--link:nth-of-type(8) a::before {
  background: #b4e598;
}

@media screen and (max-width: 750px) {

 #MENU .humBtn {
    top: 10px;
    right: 10px;
    width: 51px;
    height: 50px;
  }
  #MENU .hd__nav {
    width: 100vw;
    right: -100vw;
    padding: 115px 25px 60px;
    border-radius: 0 0 0 50px;
    height: auto;
  }
  #MENU .hd__nav .hd__nav--link {
    padding-left: 0;
    text-indent: 0;
  }
  #MENU .hd__nav .hd__nav--link a {
    display: block;
    font-size: 1.8rem;
    line-height: 1.6;
    padding-left: 17px;
  }
  #MENU .hd__nav .hd__nav--link a::before {
    width: 6.5px;
    height: 13px;
  }
}