/* 2019年リニューアル */
/* 各画面の共通CSS */

/* =========================================================
NotoSansフォントの使い方
Regular: font-weightに400を指定する
Medium: font-weightに500を指定する
Bold: font-weightに700を指定する
========================================================= */

@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap&subset=japanese");

html {
  font-size: 62.5%;
}

/* IEのinput,selectの右側ボタンを非表示 */
input::-ms-clear,
input::-ms-reveal,
select::-ms-expand {
  display: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

textarea,
select,
button,
input,
a {
  font-family: "Noto Sans JP", sans-serif;
}

/* common廃止時削除 */
body:before {
  display: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #f1f1f1;
}

.cursor_over:hover {
  opacity: 0.75;
  transition: ease-in 0.1s;
}

#wrapper {
  box-sizing: border-box;
}

#main {
  padding: 0;
}

input[type="submit"].button_pressed {
  background-color: #BABABA;
}

@media screen and (min-width: 737px) {
  #contents {
    width: 674px;
  }

  #wrapper {
    padding-bottom: 220px;
  }
}

@media screen and (max-width: 736px) {
  #wrapper {
    min-height: 100vh;
    padding-bottom: 50%;
  }
}

.image_container,
.modal_image_container {
  overflow: hidden !important;
  position: relative !important;
}

.image_container {
  background-color: #f5f5f5;
}

.modal_image_container_background {
  background-color: transparent !important;
}

.modal_image_container img {
  margin-top: 0 !important;
}

.outer_fit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
}

.outer_fit.height_side {
  max-height: 100%;
  max-width: none !important;
}

.outer_fit.width_side {
  max-height: none !important;
  max-width: 100%;
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .outer_fit {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
    /* IE打ち消しのため */
    top: 0;
    left: 0;
    position: unset;
    transform: none;
  }
}

.inner_fit,
.modal_fit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  max-height: 100%;
  max-width: 100%;
}

@supports ((-o-object-fit: contain) or (object-fit: contain)) {
  .inner_fit,
  .modal_fit {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100% !important;
    /* IE打ち消しのため */
    top: 0;
    left: 0;
    position: unset;
    transform: none;
  }

  .inner_fit {
    width: 100% !important;
  }
}

/* =========================================================
Content Header
========================================================= */

#measure_upper {
  background-image: url(/../assets/global/measure_upper.png);
  background-repeat: no-repeat;
  /* 画像の繰り返しを指定  */
  width: auto;
  /* 横幅のサイズを指定    */
  height: 6px;
  background-size: 150% auto;
}

#measure_lower {
  background-image: url(/../assets/global/measure_lower.png);
  background-repeat: no-repeat;
  /* 画像の繰り返しを指定  */
  width: auto;
  /* 横幅のサイズを指定    */
  height: 6px;
  background-size: 100% auto;
}

#measure_tip {
  display: inline-block;
  background-image: url(/../assets/global/measure_tip.png);
  background-repeat: no-repeat;
  /* 画像の繰り返しを指定  */
  background-size: 100% 100%;
}

#title {
  display: flex;
  align-items: center;
}

#title_text {
  display: inline-block;
  width: 100%;
  text-align: left;
  font-weight: bold;
}

#head {
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}

.slogan {
  width: 100%;
  text-align: center;
  color: black;
}
.slogan.notice{
  color: #DC000C;
  font-weight: bold;
}

/* PC */
@media screen and (min-width: 737px) {
  #measure_upper {
    margin-left: 60px;
  }

  #measure_lower {
    margin-left: 60px;
  }

  #measure_tip {
    min-width: 11.11px;
    height: 50px;
    margin: 6px 8px 6px 0;
  }

  #title .icon {
    height: 25px;
    width: 25px;
    margin-left: 10px;
  }

  #title_text {
    padding: 10px;
    font-size: 2rem;
  }

  #head {
    margin-bottom: 10px;
  }

  .slogan {
    margin-top: 10px;
    font-size: 1.2rem;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 4;
    -ms-grid-column-span: 2;
    grid-column: 4/6;
  }
}

/* SP */
@media screen and (max-width: 736px) {
  #measure_upper {
    margin-left: 15%;
    background-size: 200% auto;
  }

  #measure_lower {
    margin-left: 15%;
    background-size: 200% auto;
  }

  #measure_tip {
    min-width: 10px;
    height: 45px;
    margin: 2px 0;
  }

  #title .icon {
    height: 20px;
    width: 20px;
    margin-left: 3%;
  }

  #title_text {
    padding: 3%;
    font-size: 1.8rem;
  }

  #head {
    margin-bottom: 1%;
  }

  .slogan {
    font-size: 1.1rem;
    margin-bottom: 5px;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-column: 1/7;
  }
}

/* =========================================================
Centering
========================================================= */

.element_center {
  height: 100%;
  position: relative;
}

.element_center a,
.element_center p {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* =========================================================
Header
========================================================= */
header {
  background: #fff100;
  overflow: hidden;
  width: 100%;
}

header#ym {
  background: #fff;
  overflow: hidden;
  width: 100%;
}

header .hidden {
  display: none;
}

header .header_contents {
  display: block;
  margin: 20px 0 10px;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

header .button_margin_left {
  margin-left: 8px;
}


header .top_banner {
  width: 100%;
  text-align: center;
}

#redirect_link_list {
  display: flex;
  color: #ffffff;
}

#redirect_link_list li {
  height: -moz-fit-content;
  height: fit-content;
}

header .grid {
  display: grid;
  align-items: center;
}

/* Header(PC) */
@media screen and (min-width: 737px) {
  header {
    position: relative;
    overflow: hidden;
  }

  header .header_contents {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 4;
    -ms-grid-column-span: 2;
    grid-column: 4/6
  }

  header p {
    font-size: 1.1rem;
  }

  header .inside {
    margin: 0 auto;
    width: 980px !important;
  }

  #wrapper div.yamaria {
    width: 1080px !important;
  }

  header .banner {
    text-align: center;
  }

  header .top_banner a img {
    height: 31px;
    width: 116px;
  }

  header .banner a img {
    /* height: 55px;
    width: 200px; */
    height: 31px;
    width: 116px;
  }

  header .other_contents {
    margin: 20px 0;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 6;
    -ms-grid-column-span: 4;
    grid-column: 6/10;
    display: flex;
  }

}

/* Header(SP) */
@media screen and (max-width: 736px) {
  header {
    /* position: fixed; */
    z-index: 9000;
  }

  header p {
    font-size: 1rem;
  }

  header .inside {
    width: auto;
    padding: 0 11px;
  }

  header .header_contents {
    margin: 7px 0;
    flex-wrap: wrap;
    width: 100%;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/5;
    margin-left: 35%;
  }

  header .banner {
    order: 1;
  }

  header .banner {
    margin-right: 3%;
    flex: 3;
    max-width: 88px;
  }

  header .banner a img {
    width: 100%;
    height: 24px;
  }

  header .top_banner a img {
    height: 26px;
  }

}

/* =========================================================
Footer
========================================================= */

footer {
  background: white;
  width: 100%;
  position: absolute;
  bottom: 0;
}

footer .footer_links li {
  display: inline-block;
}

footer .footer_links li a {
  color: #333333;
}

footer .copyright {
  text-align: center;
  padding: 5px;
  font-size: 0.8rem;
}

footer .footer_logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

/* Footer(PC) */
@media screen and (min-width: 737px) {
  footer {
    position: absolute;
  }

  footer .inside {
    padding: 60px 0;
  }

  footer .footer_links {
    float: right;
    padding-left: 10px;
  }

  footer .footer_links li {
    padding: 0 10px;
  }

  footer .footer_links li a {
    font-size: 1.3rem;
  }

  footer .copyright {
    background-color: #666666;
    color: white;
  }

  footer .footer_logo {
    position: absolute;
    top: 2.6em;
    left: 0;
  }

  footer .footer_logo img {
    width: 120px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer .footer_logo img#yamaria {
    width: 220px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }

  footer .footer_logo#yamaria-ft {
    position: absolute;
    top: 3.6em;
    left: 0;
  }
}

/* Footer(SP) */
@media screen and (max-width: 736px) {
  footer {
    text-align: center;
  }

  footer .inside {
    padding: 3.25% 3.25% 0;
  }

  footer .footer_links {
    float: none;
    margin-bottom: 3%;
    border-left: none;
    line-height: 1;
    font-size: 0;
  }

  footer .footer_links li {
    border-right: 1px solid #666;
    padding: 0 8px;
  }

  footer .footer_links li:last-child {
    border-right: none;
  }

  footer .footer_links li a {
    font-size: 1rem;
  }

  footer .copyright {
    background-color: #fff;
    color: #333;
    position: relative;
  }

  footer .footer_logo {
    position: relative;
    top: auto;
  }

  footer .footer_logo img {
    max-width: 90px;
  }

  .to_top {
    display: none;
  }

  .return_top {
    text-align: center;
    width: 100%;
    background: #666666;
    line-height: 25px;
    display: inline-block;
  }

  .return_top a {
    display: flex;
    width: 100%;
    height: 41px;
    align-items: center;
  }

  #top_anchor {
    content: "";
    background-image: url(/../assets/global/top_anchor.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 31px;
    height: 14.39px;
    cursor: pointer;
    margin: 0 auto;
  }
}

/* =========================================================
Drawer
========================================================= */
#menu_drawer {
  position: fixed;
  right: -380px;
  background: #ffffff;
  width: 380px;
  color: #333333;
  box-sizing: border-box;
  height: 100%;
  display: block;
  overflow: hidden;
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#menu_drawer::-webkit-scrollbar {
    display:none;
}

#drawer_inside {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 20px;
}

#menu_drawer .back {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  background-color: #fff100;
  padding: 14px 15px;
}

#drawer_inside .search {
  flex: 2;
  height: 40px;
  margin-bottom: 10px;
}

#drawer_inside .search input {
  display: inline-block;
  box-sizing: border-box;
}

#drawer_inside .search input.search_box {
  padding: 8px 0 8px 13px;
  display: block;
  height: 100%;
  border: 1px solid #333333;
  box-shadow: 0 0;
  font-weight: 500;
  float: left;
  font-size: 1.2rem;
  width: 75%;
}

#drawer_inside .search input.search_submit {
  height: 100%;
  display: block;
  background-color: #333333;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  width: 25%;
}

#drawer_navi {
  width: 100%;
  float: none;
  clear: both;
}

#drawer_navi li a {
  text-align: left;
  position: relative;
  /* display: block; */
  display: flex;
  align-items: center;
  padding: 6% 0;
  color: #333333;
  font-weight: bold;
  font-size: 1.3rem;
  border-bottom: 1px solid #dadada;
  background: #ffffff;
}

#drawer_navi li a::after {
  content: "\f061";
  font-family: "fontAwesome";
  position: absolute;
  color: #333333;
  font-size: 1.2rem;
  right: 10px;
  top: 30%;
  pointer-events: none;
}

#drawer_navi li a .new{
  display: inline-block;
  margin-left: 10px;
  padding: 4px 8px;
  color: #fff;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  border-radius: 60px;
  background-color: #DC000C;
}
#drawer_navi li.nav_turi a {
  background: #ff0066;
}

#header_link {
  position: relative;
  right: auto;
  bottom: auto;
  padding: 3.25% 0;
  margin-bottom: 3%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}

#header_link li {
  padding-bottom: 3%;
  margin-right: 3.25%;
  border-bottom: 1px solid #fff;
}

#header_link li:last-child {
  margin-bottom: 6%;
}

#header_link a {
  line-height: 1;
  font-size: 1.5rem;
  padding: 3% 0;
  display: block;
}

#menu_drawer .logout {
  margin: 0 auto;
  width: 260px;
  height: 50px;
}

#menu_drawer .logout a {
  padding: 10px 0;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  border: 1px solid #333333;
  color: #333333;
  background: #ffffff;
}

#menu_drawer .logout a.regist {
  background: #f03;
  margin-bottom: 3%;
}

#menu_drawer .catches_icon {
  background: url(/assets/contents_header/catch_index-27af535440e04527a13358cf6ccf70dd48b46920592c869a92806a1a6f9ca217.webp) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-bottom: 3px;
  vertical-align: middle;
}

#menu_drawer .tackles_icon {
  background: url(/assets/contents_header/tackle_index_black-e055f6a7adf9dc62e4c0c4f9513239c87579ecd2db095e24c989c6f0da7bda14.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 15px;
  height: 13px;
  margin-bottom: 1px;
  vertical-align: middle;
}

#menu_drawer .shopping_icon {
  background: url(/assets/contents_header/shopping-72b3013cf1c8f8de99f073703228f5c2b1675c28538ce3f720630e6a80ae2311.webp) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 17px;
  height: 12px;
  margin-bottom: 1px;
  vertical-align: middle;
}

#menu_drawer .member_icon {
  background: url(/assets/contents_header/member-49d925ecee5a52aa2e560498da7038ef2b0b1bf6588a7308ee5fe6cf068aa51f.webp) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 15px;
  height: 13px;
  margin-bottom: 1px;
  vertical-align: middle;
}

#menu_drawer .message_icon {
  background: url(/assets/global/message-c9ad072ff7b3f0507cd3b9e04e3422aadcac847463860e8ed1cc6af706679d6b.webp) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 18px;
  height: 12px;
  margin-bottom: 1px;
  vertical-align: middle;
}

#menu_drawer .circles_icon {
  background: url(/assets/egiou/circle_black-6e75df03e646bc5287cd39a67b28975350f5e6ed10c3a43da062e1008116f001.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-bottom: 1px;
  vertical-align: middle;
}

#menu_drawer .beginner_icon {
  background: url(/assets/global/icon_beginner-65ee73bb9bbf12ebf2db0d496dd7a72fb5660325d6157b0469b06580de352f49.webp) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-bottom: 1px;
  vertical-align: middle;
}

#menu_drawer .ranking_icon {
  background: url(/assets/global/icon_ranking-65648d9cb182205ddce5b712a76bf0276f9820341a04956df97ff894b2210c53.webp) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-bottom: 1px;
  vertical-align: middle;
}

#menu_drawer .information_icon {
  background: url(/assets/global/notice_black-ecd5257fca57019a3e7c165ec671c7355a81e0bbbaedea57bca37b6e0cd7e403.webp) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 13px;
  height: 17px;
  margin-bottom: 2px;
  vertical-align: middle;
}

#menu_drawer .manual_icon {
  background: url(/assets/contents_header/provision-eb1e6fece51fc70714ee497e25b144aa23e61b82ba2c655ed022200e7e8ab3c2.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 13px;
  height: 16px;
  margin-bottom: 3px;
  vertical-align: middle;
}

#menu_drawer .faq_icon {
    background: url(/assets/global/icon_faq-4f47cff6c786483696b9dc2db3c296188a5084b47c731373b2112be3d9668077.svg) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-bottom: 1px;
    vertical-align: middle;
}

#menu_drawer .movie_icon {
    background: url(/assets/global/icon_movie-583fc6794104696156920557510eb7d06409f173cc195604b1c732656a8a1154.webp) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-bottom: 1px;
    vertical-align: middle;
}

#menu_drawer .egingdata_icon {
    background: url(/assets/global/icon_egingdata-f91db2c2a50439eec69059e7da2f62d2ba2dacc64d6faf2421643ec1d9f1f04d.svg) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-bottom: 1px;
    vertical-align: middle;
}


#menu_drawer .close_button {
  color: #303030;
  line-height: 1.2;
  padding: 0;
  width: 75px;
  height: 50px;
  display: block;
  border: 1px solid #303030;
  border-radius: 5px;
  cursor: pointer;
}

#menu_drawer .close_button p {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 1px;
  margin-bottom: 0;
}

#menu_drawer .close_button::before {
  content: "";
  background-image: url(/assets/modal/modal_close-09e0a10a8441bab23030d1bc175ba085d6fd5a7ccffe00983adb61c3acf474be.webp);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 15px;
  height: 15px;
  font-size: 1.6rem;
  margin: 11px 30px 0;
}

#wrapper .dimmer {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: #333333;
  opacity: 0.8;
  z-index: 9999;
}

@media screen and (min-width: 737px) {
  #drawer_inside .search input.search_box {
    border-radius: 6px 0 0 6px;
  }

  #drawer_inside .search input.search_submit {
    border-radius: 0 6px 6px 0;
  }

  #menu_drawer .logout a {
    border-radius: 4px;
  }
}

@media screen and (max-width: 736px) {
  #menu_drawer {
    right: -300px;
    width: 300px;
  }

  #menu_drawer .back {
    padding: 8px 11px;
  }

  #menu_drawer .close_button {
    width: 50px;
    height: 38px;
  }

  #menu_drawer .close_button::before {
    width: 12px;
    height: 12px;
    margin: 8px 19px 0;
  }

  #menu_drawer .close_button p {
    font-size: 0.9rem;
  }

  #menu_drawer .logout {
    width: 230px;
    height: 40px;
  }

  #drawer_inside .search {
    height: 35px;
  }

  #drawer_inside .search input.search_box {
    border-radius: 5px 0 0 5px;
    line-height: 18px;
  }

  #drawer_inside .search input.search_submit {
    border-radius: 0 5px 5px 0;
    line-height: 18px;
  }

  #menu_drawer .logout a {
    border-radius: 3px;
  }
}

/* =========================================================
TOP
========================================================= */

#top_main_field p {
  margin-bottom: 0;
}

#top_main_field .p_center {
  text-align: center;
}

#top_main_field .image_field {
  text-align: center;
}

#top_main_field .main_lower .access_field {
  background: url(/assets/global/profile_background-c1b6c441b9e0bcdbf3d956693911b3d672bedec3ae9a6ebfb85516f3deda653a.webp) center top scroll no-repeat;
  background-size: 100% 100%;
}

#top_main_field .main_upper .access_field {
  background: url(/assets/global/top_upper_access_field_background-a789e052c437086b2952030e6191340ea08964c198b6bb749d420885533e4a7b.webp) center top scroll no-repeat;
  background-size: 100% 100%;
}

#top_main_field .access_field_content,
#top_main_field .access_field_box {
  display: flex;
  flex-direction: column;
}

footer .access_field_content {
  padding: 0;
}

#top_main_field .access_field_content p,
#top_main_field .access_field_box p {
  font-weight: bold;
  color: #FFFFFF;
}

#top_main_field .access_field_content p {
  line-height: normal;
  text-align: center;
}

#top_main_field .custom_field {
  width: 100%;
  text-align: center;
}

#top_main_field .custom_color {
  color: #fff100;
}

#top_main_field .access_buttons {
  display: flex;
}

#top_main_field .access_buttons a {
  text-align: center;
  font-weight: 700;
  display: block;
  border-radius: 4px;
  color: #ffffff;
}

#top_main_field .login_button {
  background: #4a70eb;
}

#top_main_field .signup_button {
  background: #e3963a;
}

#top_main_field .access_buttons a {
  flex: 1;
}

#top_main_field .login_icon {
  background: url(/assets/top/password_key_white-ac8f8027ac660cb7dc8fd04711b91bb10f269326df0d020a3d74312c6baa1be7.webp) no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
}

#top_main_field .signup_icon {
  background: url(/assets/top/member_white-8f27b9ab75908b26576df3ea71092da914e9caa08f2d19476119ad1ee135664b.webp) no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
}

#map {
  padding: 60px 30px 30px !important;
}

#top_post_info,
#top_post_map #map {
  background-color: #ffffff;
  margin-bottom: 5px;
}

#contents {
  position: relative;
}
.mypage_lower #contents {
    position: relative;
    float: none;margin: auto;
}

#top_post_map {
  z-index: 8888;
}

#top_sub_field .post_field_title,
#top_post_map #map_area {
  color: #333333;
}

#top_post_map #map_area h6 {
  border-color: #333333;
}

#top_post_map #map_area a {
  text-decoration: none;
  color: #4a70eb;
}

#top_post_map #map_side,
#top_post_map #map_inside {
  padding: 0;
}

#top_post_map #map_side {
  position: relative;
  background: none;
}

#top_post_map #map_side label {
  background-color: #f5f5f5;
  font-weight: 300;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  color: #333333;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#top_post_map #map_side label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#top_post_map #map_side .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 2px;
  background-color: #eee;
}

#top_post_map #map_side label input~.checkmark {
  background-color: #FFFFFF;
  border: 1px #BABABA solid;
}

#top_post_map #map_side label input:checked~.checkmark {
  background-color: #4a70eb;
  border: 1px #4a70eb solid;
}

#top_post_map #map_side .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

#top_post_map #map_side label input:checked~.checkmark:after {
  display: block;
}

#top_post_map #map_side label .checkmark:after {
  border: solid white;
  transform: rotate(45deg);
}

#top_post_map #map_side .search_bt {
  background: #4a70eb;
  position: absolute;
  bottom: 0;
  border-radius: 4px;
}

#top_post_map #map_side .search_bt a {
  text-align: center;
  font-weight: 700;
  display: block;
  color: #ffffff;
}

#top_post_map #map_side .search_bt a {
  box-shadow: none;
  position: static;
  background: none;
}

.post_field_title {
  font-weight: 700;
  color: #333333;
}

#top_post_info {
  padding: 20px;
}

#top_post_map #map_main a {
  background-color: #2cb392 !important;
}

#top_post_map #map_main dl {
  width: auto;
  white-space: nowrap;
}

#top_post_map #map_main dl dt {
  background-color: #ffffff !important;
  color: #333333;
}

#top_post_map #map_main dl dd {
  padding: 0 4px 0 !important;
  text-align: center !important;
  text-shadow: none !important;
}

/* Top(PC) */
@media screen and (min-width: 737px) {
  .sp_only {
    display: none;
  }

  #top_main_field .main_upper {
    display: flex;
    height: 400px;
    width: 1400px;
    margin: 0 auto;
    /* margin-top: 5.8em; */
  }

  #top_main_field .main_upper .access_field,
  #top_main_field .main_upper .image_field {
    width: 50%;
  }

  #top_main_field .main_lower .access_field {
    padding: 64px 0;
  }

  #top_main_field .access_field_box {
    width: 420px;
    padding: 60px 0 0 70px;
  }

  #top_main_field .access_field_box p {
    font-size: 2rem;
  }

  #top_main_field .access_field_content p {
    font-size: 2.8rem;
  }

  #top_main_field .access_field_content p,
  #top_main_field .access_field_box p {
    margin-bottom: 10px;
  }

  #top_main_field .access_field_text {
    margin-bottom: 20px;
  }

  #top_main_field .custom_field {
    margin: 25px 0 !important;
  }

  #top_main_field .custom_field span {
    font-size: 1.6rem;
  }

  #top_main_field .access_buttons {
    height: 50px;
  }

  #top_main_field .access_buttons a {
    padding: 13px 0;
    font-size: 1.6rem;
  }

  #top_main_field .main_lower .access_buttons {
    width: 540px;
    margin: 0 auto;
  }

  #top_main_field .button_gap {
    margin-left: 20px;
  }

  #top_main_field .login_icon {
    width: 20px;
    height: 24px;
    margin-bottom: 5px;
  }

  #top_main_field .signup_icon {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
  }

  #top_main_field .main_image {
    height: 100%;
    width: 100%;
  }

  #top_post_map {
    margin-top: -60px;
  }

  #top_post_info {
    margin-bottom: 50px;
  }

  #top_post_map #map_main a {
    padding: 4px !important;
    border-radius: 4px;
  }

  #top_post_map #map_main dl dt {
    font-size: 1.6rem;
  }

  #top_post_map #map_main dl dd {
    font-size: 2rem !important;
  }

  #top_post_map #map_area h6 {
    margin-right: 10px;
    font-size: 1.4rem;
  }

  #top_post_map #map_side {
    width: 220px;
    height: 390px;
  }

  #top_post_map #map_main .total,
  #top_post_map #map_main .total dt {
    background-color: #2cb392 !important;
  }

  #top_post_map #map_main .total dt {
    font-size: 1.6rem;
    color: #FFFFFF;
  }

  #top_post_map #map_side label {
    font-size: 1.6rem;
    width: auto;
  }

  #top_post_map #map_side label .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border-width: 0 3px 3px 0;
  }

  #top_post_map #map_side label {
    padding: 10px 20px 10px 32px;
  }

  #top_post_map #map_side .checkmark {
    height: 17px;
    width: 17px;
    margin: 13px 0 10px 10px;
  }

  #top_post_map #map_side label .checkmark:after {
    left: 5px;
    top: 3px;
    width: 4px;
    height: 8px;
  }

  #top_post_map #map_side .search_bt {
    height: 50px;
    width: 100%;
  }

  #top_post_map #map_side .search_bt a {
    width: 100%;
    padding: 15px 0;
    font-size: 1.6rem;
    line-height: 20px;
  }

  .post_field_title {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }

  .top_pattern {
    padding: 10px 0 !important;
  }

  #top_post_info {
    padding: 60px 60px 20px;
  }

  /* .top_main_padding {
    padding: 0 !important;
  } */

  .introduction_image_pc {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .introduction_image_sp {
    display: none;
  }

  #wrapper.wrapper_footer_extend_field {
    padding-bottom: 480px;
  }
}

/* Top(SP) */
@media screen and (max-width: 736px) {
  #top_main_field .main_upper {
    display: block;
  }

  #top_main_field .main_upper .access_field,
  #top_main_field .main_upper .image_field {
    width: 100%;
  }

  #top_main_field .main_upper .image_field {
    line-height: 0;
  }

  #top_main_field .access_field_box {
    width: 90%;
  }

  #top_main_field .access_field_box {
    padding: 8% 5% 8% 5%;
  }

  #top_main_field .access_field_content {
    padding: 22px;
  }

  #top_main_field .access_field_box p {
    font-size: 1.4rem;
  }

  #top_main_field .access_field_content p {
    font-size: 1.6rem;
  }

  #top_main_field .access_field_content p,
  #top_main_field .access_field_box p {
    line-height: 1.7;
  }

  #top_main_field .custom_field {
    margin: 8px 0 !important;
  }

  #top_main_field .custom_field span {
    font-size: 1.2rem;
  }

  #top_main_field .access_buttons {
    height: 35px;
  }

  #top_main_field .access_buttons a {
    padding: 6px 0;
    font-size: 1.2rem;
  }

  #top_main_field .main_lower .access_buttons {
    width: 100%;
    margin-top: 17px;
  }

  #top_main_field .button_gap {
    margin-left: 3%;
  }

  #top_main_field .login_icon {
    width: 14px;
    height: 17px;
    margin-bottom: 2px;
  }

  #top_main_field .signup_icon {
    width: 17px;
    height: 17px;
    margin-bottom: 2px;
  }

  #top_main_field .main_image {
    width: 100%;
  }

  #top_sub_field,
  #top_post_map {
    padding: 0 3.25%;
  }

  #top_post_map {
    margin-top: -60px;
  }

  #top_post_map section {
    padding: 20px 10px !important;
  }

  #top_post_info {
    margin-bottom: 10%;
  }

  #top_post_map #map_area {
    margin-bottom: 10px;
  }

  #top_post_map #map_area h6 {
    margin-right: 10px;
    font-size: 1.1rem;
  }

  #top_post_map #map_area a {
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 3px;
  }

  #top_post_map #map_side {
    width: 100%;
  }

  #top_post_map #map_main a {
    padding: 2px !important;
    border-radius: 2px;
  }

  #top_post_map #map_main dl dt {
    font-size: 1rem;
  }

  #map #map_main dl dd {
    font-size: 1.2rem !important;
  }

  #top_post_map #map_main .total {
    top: 25px;
    margin-top: 0;
    background: none;
  }

  #top_post_map #map_main .total dd,
  #top_post_map #map_main .total dt {
    font-size: 1.4rem !important;
    color: #333333;
    font-weight: 400;
  }

  #top_post_map #map_main .total dd {
    text-shadow: none;
  }

  #top_post_map #map_side #map_side_list {
    padding: 40px 0 50px;
  }

  #top_post_map #map_side label {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.1rem;
    padding: 5px 10px 5px 27px;
    display: inline-block;
    margin-bottom: 10px;
  }

  #top_post_map #map_side label .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border-width: 0 2px 2px 0;
  }

  #top_post_map #map_side .checkmark {
    height: 11px;
    width: 11px;
    margin: 8px 0 10px 10px;
  }

  #top_post_map #map_side label .checkmark:after {
    left: 3px;
    top: 1px;
    width: 3px;
    height: 6px;
  }

  #top_post_map #map_side .search_bt {
    height: 40px;
    width: 230px;
    left: 50%;
    transform: translateX(-50%);
  }

  #top_post_map #map_side .search_bt a {
    width: 100%;
    padding: 9px 0;
    font-size: 1.3rem;
    line-height: 20px;
  }

  .post_field_title {
    font-size: 1.8rem;
  }

  .new_catches {
    margin: 10px 15px;
  }

  #top_post_info {
    padding: 15px 0;
  }

  .top_pattern {
    padding: 10px 15px !important;
  }

  .top_main_margin {
    margin: 0 !important;
  }

  .introduction_image_pc {
    display: none;
  }

  .introduction_image_sp {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  #wrapper.wrapper_footer_extend_field {
    padding-bottom: 350px;
  }
}


.header-container{
  padding: .6em 0 .7em;
}

@media screen and (max-width: 736px) {
  header .header-container{
    padding: .5em 11px;
  }
}


/* 202108 */
header {
  width: 100%;
  /* position: fixed;
  top: 0;
  left: 0; */
  /* z-index: 3; */
  z-index: 9000;
  transition: all .3s ease;
}
@media screen and (max-width: 736px) {
  header .inside.header-container{
    padding: .2em .8em .6em;
  }
}

.header-logo{
  grid-row: 1/2;
  grid-column: 3/6;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .header-logo{
    grid-row: 1/2;
    grid-column: 1/2;
    text-align: initial;
  }
}
.header-logo img{
  width: 116px;
  height: auto;
}

.header-logo img#ym{
  width: 270px;
  height: auto;
  vertical-align: middle;
}
@media screen and (max-width: 736px) {
  .header-logo img{
    width: 100px;
    height: auto;
  }
  .header-logo img#ym{
    vertical-align: middle;
  }
}
.header-logo p{
  margin: 0;
  color: #DC000C;
  font-weight: bold;
}
@media screen and (max-width: 736px) {
  .header-logo p{
    display: none;
  }
}

.nologin .header-logo{
  grid-row: 1/2;
  grid-column: 1/2;
  width: 100%;
}
@media screen and (max-width: 736px) {
  .nologin .header-logo{
    grid-row: 1/2;
    grid-column: 1/2;
    width: 100%;
    text-align: center;
  }
}

.header-discription{
  display: none;
}
@media screen and (max-width: 736px) {
  .header-discription{
    display: block;
    grid-row: 3/4;
    grid-column: 1/3;
  }
  .header-discription p{
    margin: .4em 0 0;
    text-align: center;
    color: #DC000C;
    font-size: 1.15rem;
    font-weight: bold;
  }
}

@media screen and (max-width: 736px) {
  .nologin .header-discription{
    grid-row: 2/3;
    grid-column: 1/2;
    width: 100%;
  }
}


.header-post{
  grid-row: 1/2;
  grid-column: 1/3;
}
@media screen and (max-width: 736px) {
  .header-post{
    margin-top: .2em;
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
.header-post a{
  position: relative;
  display: block;
  padding: .5em;
  background: #4a70eb;
  border-radius: 5px;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 736px) {
  .header-post a{
    padding: .5em .3em .6em;
    font-size: .9em;
  }
}

.header-post a.post-learn:before,
.header-post a.post-new:before,
.header-post a.post-show:before{
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
@media screen and (max-width: 736px) {
  .header-post a.post-learn:before,
  .header-post a.post-new:before,
  .header-post a.post-show:before{
    width: 20px;
    height: 20px;
  }
}
.header-post a.post-learn:before{
  background: url(/assets/header/icon_beginner_white-ad6118d3c6969f226baabdf4ead168a21f67a6fac355742b70b697fb801d9da4.webp) no-repeat 0 0 ;
  background-size: contain;
}
.header-post a.post-new:before{
  background: url(/assets/header/catch_new-06dce890c91f6f7efdf8eca419dccf9310c4891ff85cd325c0d3fe6234748cfe.svg) no-repeat 0 0 ;
  background-size: contain;
}
.header-post a.post-show:before{
  background: url(/assets/header/catches_show-d82b1ee3209ef0e53d60d70205ff44fced7bc7af26ca0bfa4d6d09d1722fb4b9.svg) no-repeat 0 0 ;
  background-size: contain;
}

.header-post span{
  display: inline-block;
  vertical-align: middle;
  padding-left: .3em;
}
.header-navi{
  grid-row: 1/2;
  grid-column: 6/8;
}
@media screen and (max-width: 736px) {
  .header-navi{
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
.header-navi .btn-shopping,
.header-navi .btn-mypage,
.header-navi .btn-menubar{
  position: relative;
}


.header-navi .btn-shopping::before,
.header-navi .btn-mypage::before,
.header-navi .btn-menubar::before{
  content: "";
  display: block;
  margin: auto;
}
@media screen and (max-width: 736px) {
  .header-navi .btn-shopping::before,
  .header-navi .btn-mypage::before,
  .header-navi .btn-menubar::before{
    width: 24px;
    height: 24px;
  }
}

.header-navi .btn-shopping::before{
  width: 36px;
  height: 36px;
  background: url(/assets/header/icon_shopping-0fc8e06fc2ccca79787052e5bde9b7894b2c5d1894bda8196882d64540183755.svg) no-repeat 50% 50%;
  background-size: contain;
}
.header-navi .btn-mypage::before{
  width: 30px;
  height: 36px;
  background: url(/assets/header/icon_mypage-e05111f458a11b57dfcc448be19648d1e28b8abe79ba560f0c94b86bb875cc93.svg) no-repeat 50% 50%;
  background-size: contain;
}
.header-navi .btn-menubar::before{
  width: 30px;
  height: 36px;
  background: url(/assets/header/hamburger_menu-eab556c9e36079e3a4ac4c4727f800587d149da010e81f57ca864e0dc21d964b.svg) no-repeat 50% 50%;
  background-size: contain;
}

.header-navi .link-btn > div{
  display: block;
  text-align: center;
  font-size: 12px;
  color: #000;
}
@media screen and (max-width: 736px) {
    .header-navi .link-btn > div{
    margin-top: 0;
    font-size: .8em;
  }
}
.header-navi .link-btn .label-shopping{
    display: block;
    padding: 0 0 .1em;
    background: red;
    border-radius: 60px;
    color: #FFF;
}

/* .top_main_padding {
    padding-top: 85px !important;
  }
  @media screen and (max-width: 736px) {
    .top_main_padding {
        padding-top: 0 !important;
      }
  } */

.pagetop {
  position: fixed;
  right: 3%;
  bottom: 8%;
  z-index: 999;
}
@media screen and (max-width: 736px) {
  .pagetop {
    right: 3%;
    bottom: 5%;
  }
}

.pagetop a {
  display: block;
  margin: auto;
  width: 50px;
  height: 50px;
  background-color: #4a70eb;
  border-radius: 60px;
}

@media screen and (max-width: 736px) {
  .pagetop a {
    width: 40px;
    height: 40px;
  }
}

.pagetop span {
  position: relative;
  display: block;
  padding-top: 100%;
  height: 0;
  overflow: hidden;
}

.pagetop span:before {
  display: block;
  content: '';
  position: absolute;
  margin: auto;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-50%, -20%) rotate(45deg);
  transition: .2s;
}



.flex {
  display: flex;
}

@media (max-width: 767px) {
  .flex.sp-col1, .flex.sp-col2, .flex.sp-col3 {
    flex-wrap: wrap;
  }
}

.flex + .flex {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .pc-flex {
    display: flex;
  }
}

@media (max-width: 767px) {
  .sp-flex {
    display: flex;
  }
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-center {
  justify-content: center;
}

.flex-align-baseline {
  align-items: baseline;
}

.flex-align-center {
  align-items: center;
}

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

.flex-end-center {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

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

.reverse {
  flex-direction: row-reverse;
}

.flex-3 {
  display: flex;
}

.flex-3 > .col {
  width: calc(100% / 3);
}

@media (max-width: 767px) {
  .flex-3 > .col {
    width: 100%;
  }
}

.span-1 {
  width: 8.33333%;
}

.span-2 {
  width: 16.66667%;
}

.span-3 {
  width: 25%;
}

.span-4 {
  width: 33.33333%;
}

.span-5 {
  width: 41.66667%;
}

.span-6 {
  width: 50%;
}

.span-7 {
  width: 58.33333%;
}

.span-8 {
  width: 66.66667%;
}

.span-9 {
  width: 75%;
}

.span-10 {
  width: 83.33333%;
}

.span-11 {
  width: 90.66667%;
}

.span-12 {
  width: 100%;
}

.flex.gutter-10 {
  margin-left: -10px;
}

.flex.gutter-10 > [class*="span-"] {
  margin-left: 10px;
}

.flex.gutter-10 > .span-1 {
  width: calc(8.33333% - 10px);
}

.flex.gutter-10 > .span-2 {
  width: calc(16.66667% - 10px);
}

.flex.gutter-10 > .span-3 {
  width: calc(25% - 10px);
}

.flex.gutter-10 > .span-4 {
  width: calc(33.33333% - 10px);
}

.flex.gutter-10 > .span-5 {
  width: calc(41.66667% - 10px);
}

.flex.gutter-10 > .span-6 {
  width: calc(50% - 10px);
}

.flex.gutter-10 > .span-7 {
  width: calc(58.33333% - 10px);
}

.flex.gutter-10 > .span-8 {
  width: calc(66.66667% - 10px);
}

.flex.gutter-10 > .span-9 {
  width: calc(75% - 10px);
}

.flex.gutter-10 > .span-10 {
  width: calc(83.33333% - 10px);
}

.flex.gutter-10 > .span-11 {
  width: calc(90.66667% - 10px);
}

.flex.gutter-10 > .span-12 {
  width: calc(100% - 10px);
}


#contents .banner-block.top{
  margin: 0 auto 1em;
  padding: 1em 1em;
  width: 100%;
  max-width: 500px;
  background: #FFF;
  color: #000;
}
@media screen and (max-width: 736px) {
    #contents .banner-block.top{
      max-width: 94%;
      box-sizing: border-box;
    }
  }
#contents .banner-block.mypage{
  margin: 0 auto 1em;
  width: 100%;
  max-width: 500px;
}


/* 期間で表示・非表示 */
.js-time_limited{
    display: none;
}
.js-time_limited_fire{
    display: block;
}


.embed-container{
    margin: 2em auto 0 !important;
    padding: 0 !important;
    width: 100%;
    max-width: 980px;
    background: transparent !important;
}
.embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.embed iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
/*   border-radius: 10px;
    -webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16); */
}

.qr_code{
    position: absolute;
    bottom: 8vw;
    right: 0;
    display: block;
    padding: 0 0 0 0.5em;
}
@media screen and (min-width: 737px) {
    .qr_code{
        position: relative;
        bottom: inherit;
        right: inherit;
        padding-left: 1em;
    }
}
.qr_code #img-qr{
    display: flex;
    align-items: center;
    justify-content: center;
}
.qr_code .title{
    color: #FFF;
    font-size: 10px;
    margin: 0;
}
#modal_list_box .qrcode{
padding: 3em 2em;
text-align: center;
}


/* secret投稿 */
#post_input_term #radio_field .radio_content.secret .radio_label{
  padding:0 0 0 20px;
  margin: 5px 5px 5px 0;
  background-color: #FFF;
}
@media screen and (min-width: 737px) {
  #post_input_term #radio_field .radio_content.secret .radio_label{
    padding: 6px 0 0 34px;
  }
}

.secret-info{
  margin-top: 20px;
  padding: 16px 16px;
  background-color: #f5f5f5;
  border-radius: 16px;
}

.secret-info p span{
  font-size: 1.1rem;
}

.radio_content.secret li:nth-child(2){
  position: relative;
}
.radio_content.secret li:nth-child(2) .radio_label:after{
  content: "";
  position: absolute;
  top: 5px;
  bottom: 0;
  /* left: 0; */
  right: -20px;
  width: 18px;
  height: 18px;
  background-image: url(/assets/common/icon_secret-78c5ae6ccace8d3013558a4e55fcc4bfc91e2278f4540e47c7dcbbed434add5a.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
#post_input_term .radio_content.secret li:nth-child(2) .radio_label:after{
    top: 0;
}

.post-secret span{
  position: relative;
  padding-left: 20px;
  font-size: 12px;
  font-weight: normal;
}
.post-secret span:before{
  content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    /* right: -20px; */
    width: 18px;
    height: 18px;
    background-image: url(/assets/common/icon_secret-78c5ae6ccace8d3013558a4e55fcc4bfc91e2278f4540e47c7dcbbed434add5a.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

#my_post .post-secret span{
  position: relative;
  padding-left: 0;
  font-size: 12px;
  font-weight: normal;
  color: transparent;
}
#my_post .post-secret span:before{
  content: "";
    position: absolute;
    top: .3vw;
    bottom: 0;
    left: 3vw;
    /* right: -20px; */
    width: 18px;
    height: 18px;
    background-image: url(/assets/common/icon_secret-78c5ae6ccace8d3013558a4e55fcc4bfc91e2278f4540e47c7dcbbed434add5a.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

/* PCの時 */
@media screen and (min-width: 737px) {
  #my_post .post-secret span{
    padding: 6px;
  }
  #my_post .post-secret span:before{
    left: 1vw;
  }
}

/* SPの時 */
@media screen and (max-width: 736px) {
  #my_post .post-secret-under span:before{
    top: -0.5vw;
  }
}

#post_input_term #term_contents .post-secret span{
  position: relative;
  padding-right: 20px;
  padding-left: 0;
  font-size: 12px;
  font-weight: bold;
}
#post_input_term #term_contents .post-secret span:before{
  content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: inherit;
    width: 18px;
    height: 18px;
    background-image: url(/assets/common/icon_secret-78c5ae6ccace8d3013558a4e55fcc4bfc91e2278f4540e47c7dcbbed434add5a.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.header-post .col{
  position: relative;
}
.header-post span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 0.3em;
}
.header-post .badge{
    position: absolute;
    top: -.5vw;
    right: -.5vw;
    display: inline-block;
    font-weight: bold;
    background-image: url(/assets/common/icon_attention-28af4a5287b3fd2ba310fe8de64169c66d9dee5af9fe9350998a071a2b7d1832.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.8em;
    height: 1.8em;
    z-index: 1;
}
@media screen and (max-width: 736px) {
    .header-post .badge{
        top: -2vw;
        right: -2.5vw;
    }
  }

.notice-secret{
  padding: 8px 8px;
  margin: 10px 0;
  text-align: center;
  color: #EB5430;
  border: 1px solid #EB5430;
  border-radius: 8px;
}

@media screen and (min-width: 737px) {
  .responsive-container {
    display: flex;
  }
  .responsive-container > .col + .col {
    margin-left: 15px;
  }
}

.time-place {
  font-size: 1.2rem;
  color: #666666;
}
