@charset "UTF-8";
.noto-sans {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.jost, .service .box h3, #gnav .copyright, #gnav .h_nav li a em, .menu .icon:before, .coming_soon, .subject em {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}

.reem-kufi {
  font-family: "Reem Kufi", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --header-height: 60px;
}
@media screen and (min-width: 768px) {
  :root {
    --header-height: 90px;
  }
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: #3B3938;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  body.wrap {
    overflow: visible;
  }
}
body.wrap {
  overflow: hidden;
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 200;
}

@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover {
    color: inherit;
    opacity: 0.7;
    text-decoration: none !important;
  }
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
.container.sm {
  padding: 0 25px;
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.fadeInUp.animate {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.fadeInUp.animate.active {
  -webkit-animation: fadeInUp 0.8s ease-in-out forwards;
          animation: fadeInUp 0.8s ease-in-out forwards;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ▼ タイトル
--------------------------------------- */
.page_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 90px;
  color: #276BB9;
  font-size: 26px;
  font-weight: bold;
  background: url(https://ko.dailyservice.co.jp/assets/Expo2025JRWG/img/title_bg.webp) no-repeat center center/100% 100%;
}
@media screen and (min-width: 768px) {
  .page_title {
    height: 140px;
    font-size: 36px;
  }
}

.subject {
  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;
  background: url(https://ko.dailyservice.co.jp/assets/Expo2025JRWG/img/ttl_default_bg.png) no-repeat center/cover;
  padding-bottom: 29px;
  height: 200px;
  position: relative;
}
.subject::after {
  content: "";
  background: url(https://ko.dailyservice.co.jp/assets/Expo2025JRWG/img/ttl_bg_circle.svg) no-repeat center top/100% 100%;
  width: 100%;
  height: 29px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.subject .ttl {
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}
.subject em {
  display: block;
  font-size: 38px;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.2;
}

/* ▼ ボタン
--------------------------------------- */
.more {
  width: min(100%, 219px);
  margin: 35px auto 0;
}
.more a {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(153, 232, 247)), to(rgb(85, 170, 255)));
  background: linear-gradient(180deg, rgb(153, 232, 247) 0%, rgb(85, 170, 255) 100%);
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 59px;
  padding: 0 53px 0 24px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.01em;
  position: relative;
  -webkit-box-shadow: 0 3px 15px rgba(0, 87, 170, 0.1);
          box-shadow: 0 3px 15px rgba(0, 87, 170, 0.1);
}
.more a::before, .more a::after {
  content: "";
  width: 46px;
  aspect-ratio: 1/1;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 6px;
}
.more a::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(127, 232, 252)), to(rgb(39, 146, 253)));
  background: linear-gradient(180deg, rgb(127, 232, 252) 0%, rgb(39, 146, 253) 100%);
  border-radius: 50%;
}
.more a::after {
  background: url(https://ko.dailyservice.co.jp/assets/Expo2025JRWG/img/arrow.svg) no-repeat center/auto;
}
.more a:hover {
  opacity: 1;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.more.bk a {
  border: 3px solid currentColor;
  background: #3B3938;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.more.bk a::before {
  display: none;
}
.more.bk a:hover {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  background: #fff;
  color: #3B3938;
}
.more.bk a:hover::after {
  background-image: url(https://ko.dailyservice.co.jp/assets/Expo2025JRWG/img/arrow_bk.svg);
}
.more.bl a {
  border: 3px solid currentColor;
  background: #12B8D7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.more.bl a::before {
  display: none;
}
.more.bl a:hover {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  background: #fff;
  color: #12B8D7;
}
.more.bl a:hover::after {
  background-image: url(https://ko.dailyservice.co.jp/assets/Expo2025JRWG/img/arrow_bl.svg);
}
.more.wh a {
  background: #fff;
  color: #12B8D7;
}

.btn {
  width: min(100%, 265px);
  margin: 25px auto 0;
}
.btn a {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border: 4px solid #7CE2F5;
  border-radius: 50px;
  height: 85px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  color: #0065B1;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.btn a span {
  font-size: 14px;
  font-weight: bold;
}
.btn a:hover {
  opacity: 1;
  background: #C1EDF5;
}

.notes {
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
}

.btn_disable {
  position: relative;
}
.btn_disable::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.btn_disable::after {
  content: "3/14頃公開";
  background: #FF0000;
  width: 146px;
  height: 38px;
  color: #fff;
  font-size: 19px;
  line-height: 36px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: -20px;
}

.coming_soon {
  border: 3px solid currentColor;
  border-radius: 10px;
  width: 265px;
  padding: 5px 0 4px;
  margin: 57px auto 0;
  color: #A8E2F0 !important;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em !important;
}

/* ▼▼▼ ヘッダー
====================================================== */
#site_title {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 0 13px;
  padding: 0 10px;
  height: 66px;
  overflow: hidden;
  position: relative;
  z-index: 3000;
}

header {
  background: #fff;
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 66px;
  z-index: 99999;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  header {
    display: none;
  }
}
header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.menu {
  width: 103px;
  height: 48px;
  display: block;
  border-radius: 40px;
  background: linear-gradient(-45deg, rgb(50, 151, 252) 0%, rgb(41, 221, 255) 100%);
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3000;
}
.menu .icon {
  display: block;
  width: 14.99px;
  height: 2px;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .icon:before {
  content: "MENU";
  width: 4em;
  font-size: 12px;
  position: absolute;
  top: -8px;
  right: 100%;
}
.menu .icon span::before, .menu .icon span::after {
  content: "";
  width: 14.99px;
  height: 2px;
  background: currentColor;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
.menu .icon span::before {
  top: -5px;
}
.menu .icon span::after {
  bottom: -5px;
}
.menu .icon.active {
  background: transparent;
}
.menu .icon.active:before {
  content: "CLOSE";
}
.menu .icon.active span::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 0;
}
.menu .icon.active span::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .menu {
    display: none;
  }
}

/* グローバルナビゲーション */
#gnav {
  display: block !important;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  float: none;
  width: 100%;
  max-height: 100vh;
  padding: 90px 25px;
  margin: 0;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#gnav.open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 768px) {
  #gnav {
    background: none;
    padding-top: 0;
    -webkit-transition: 0s;
    transition: 0s;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    overflow: hidden;
  }
}
#gnav .h_nav {
  margin-bottom: 45px;
}
#gnav .h_nav li:not(:last-child) {
  margin-bottom: 28px;
}
#gnav .h_nav li a {
  display: block;
  color: #3B3938;
  letter-spacing: 0.05em;
}
#gnav .h_nav li a em {
  display: block;
  color: #0065B1;
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0.01em;
}
#gnav .sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  margin-bottom: 45px;
}
#gnav .logo {
  margin-bottom: 20px;
  text-align: center;
}
#gnav .copyright {
  color: #606060;
  font-size: 11px;
  text-align: center;
}

.pc_loop {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc_loop {
    background: #0065B1;
    display: block;
    padding: 7px 0;
    font-size: 0;
    line-height: 1;
  }
  .pc_loop li {
    margin: 0 35px;
  }
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  padding-top: 66px;
  margin: 0 auto;
  clear: both;
}
@media screen and (min-width: 768px) {
  #main {
    background: url(https://ko.dailyservice.co.jp/assets/Expo2025JRWG/img/pc_bg.jpg) no-repeat center/cover;
    background-attachment: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    position: relative;
    z-index: 2;
  }
  #main::before, #main::after {
    content: "";
    pointer-events: none;
  }
  #main::before {
    background: url(https://ko.dailyservice.co.jp/assets/Expo2025JRWG/img/pc_bg_line.png) no-repeat center top 80%/max(100%, 1366px);
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #main::after {
    background: #88ECFF;
    border-radius: 50%;
    width: 387px;
    height: 251px;
    position: fixed;
    top: 44%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 68.5%;
    z-index: -1;
    -webkit-filter: blur(34px);
            filter: blur(34px);
    mix-blend-mode: multiply;
  }
}
@media screen and (max-width: 1200px) {
  #main::before {
    background-position: center;
  }
}

.menu_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .menu_fixed {
    position: relative;
    width: auto;
    height: auto;
  }
}

.main_wrap {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .main_wrap {
    width: 375px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
  }
}

.pc_left, .pc_right {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc_left, .pc_right {
    display: block;
    background-attachment: fixed;
    width: calc((100% - 375px) / 2);
  }
}

.officialstore_banner {
  width: 200px;
  margin: 40px auto 0;
}
.officialstore_banner .bnr_img {
  display: block;
  padding: 10px 15px;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
}
.officialstore_banner .bnr_img img {
  width: 100%;
}
.officialstore_banner .bnr_txt {
  display: block;
  text-align: center;
  margin-top: 3px;
  font-size: 14px;
  color: #0065B1;
  font-weight: 700;
  text-shadow: 0 0 4px #fff, 0 0 8px #fff, 0 0 12px #fff;
}
.officialstore_banner.sp {
  position: fixed;
  left: 8px;
  bottom: 8px;
  z-index: 2100;
}
.officialstore_banner.sp .bnr_txt {
  margin-bottom: 3px;
}

@media screen and (min-width: 768px) {
  .pc_left {
    padding: 110px 10px 0;
  }
  .pc_left p {
    text-align: center;
  }
  .pc_left .sticky {
    background: #fff;
    border: 7px solid #1DB5D9;
    border-radius: 30px;
    width: min(100%, 309px);
    padding: 40px 25px;
    margin: 0 auto;
    position: sticky;
    top: 110px;
    z-index: 2;
    -webkit-box-shadow: 11px 11px 0 #0065B1;
            box-shadow: 11px 11px 0 #0065B1;
  }
  .pc_left .sticky .d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .pc_left .pc_nav {
    margin-top: 30px;
    letter-spacing: 0.03em;
  }
  .pc_left .pc_nav li {
    padding-bottom: 24px;
    padding-left: 30px;
    color: #aaa;
    font-size: 15px;
    font-weight: bold;
    position: relative;
    z-index: 1;
  }
  .pc_left .pc_nav li::before {
    content: "";
    background: #fff;
    border: 3px solid #DEDEDE;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 17px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 6px;
    left: 0;
  }
  .pc_left .pc_nav li::after {
    content: "";
    height: 100%;
    position: absolute;
    top: 10px;
    left: 5px;
    z-index: -1;
  }
  .pc_left .pc_nav li:not(:last-child)::after {
    border-left: 7px solid #DEDEDE;
  }
  .pc_left .pc_nav li:last-child::after {
    background: url(https://ko.dailyservice.co.jp/assets/Expo2025JRWG/img/pc_line.svg) no-repeat center bottom 10px/7px;
    width: 7px;
  }
  .pc_left .pc_nav li.active {
    color: #0065B1;
    font-size: 16px;
    font-weight: 900;
  }
  .pc_left .pc_nav li.active::before {
    background: #E60012;
    width: 23px;
    top: 2px;
    left: -3px;
  }
  .pc_left .pict {
    position: absolute;
    width: min(14vw, 192px);
    bottom: -55px;
    left: 195px;
    -webkit-animation: yurayura 2s ease-in-out infinite;
            animation: yurayura 2s ease-in-out infinite;
  }
}
@media screen and (max-width: 1200px) {
  .pc_left {
    width: calc(100% - 375px);
  }
  .pc_left .pict {
    width: 192px;
  }
}

@-webkit-keyframes yurayura {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes yurayura {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@media screen and (min-width: 768px) {
  .pc_right .txt_area {
    width: calc((100% - 375px) / 2);
    position: fixed;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    right: 0;
    text-align: center;
    z-index: 3;
  }
  .pc_right .txt_area p {
    text-align: center;
  }
  .pc_right .txt_area p.jost, .pc_right .txt_area p.coming_soon, .pc_right .txt_area .menu p.icon:before, .menu .pc_right .txt_area p.icon:before, .pc_right .txt_area #gnav p.copyright, #gnav .pc_right .txt_area p.copyright {
    font-size: 49px;
    color: #fff;
    letter-spacing: 0.02em;
  }
  .pc_right .txt_area p.bg {
    background: #fff;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 32px;
    width: 202px;
    height: 34px;
    line-height: 34px;
    color: #0065B1;
    font-weight: bold;
    position: relative;
  }
  .pc_right .txt_area p.bg::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 3px 0 3px;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    bottom: -3px;
  }
  .pc_right .txt_area .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 20px;
  }
  .pc_right .txt_area .sns li {
    background: #0065B1;
    border-radius: 50%;
  }
  .pc_right .txt_area .sns li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 88px;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 1200px) {
  .pc_right {
    display: none;
  }
}

.inner_bg {
  padding-bottom: 100px;
}

.pc_loop, .loop_slide {
  display: none;
}
.pc_loop.slick-initialized, .loop_slide.slick-initialized {
  display: block;
}

/* ▼▼▼ 便利なサービス
=====================================*/
.service .box {
  background: url(https://ko.dailyservice.co.jp/assets/Expo2025JRWG/img/top/service_bg.png) no-repeat center top/100%, rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 3px 15px rgba(0, 87, 170, 0.1);
          box-shadow: 0 3px 15px rgba(0, 87, 170, 0.1);
  border-radius: 30px;
  padding: 130px 29px 50px;
  color: #3B3938;
  position: relative;
}
.service .box .img {
  display: block;
  text-align: center;
  position: absolute;
  width: 100%;
  top: -36px;
  left: 0;
}
.service .box .img p {
  background: #0065B1;
  border-radius: 20px;
  width: 170px;
  height: 26px;
  line-height: 26px;
  margin: -9px auto 15px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 12.5px;
  position: relative;
}
.service .box .img p::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 3px 0 3px;
  border-color: #0065B1 transparent transparent transparent;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  bottom: -3px;
}
.service .box h3 {
  color: #0065B1;
  font-size: 41px;
  letter-spacing: 0.03em;
  text-align: center;
}
.service .box h3 + p {
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.service .box .mask {
  color: #0065B1;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.47;
}
.service .box .mask span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ADF2FF));
  background: linear-gradient(transparent 50%, #ADF2FF 50%);
}
.service .box .item_wrap:first-of-type h4 {
  margin-top: 35px;
}
.service .box h4 {
  border-left: 3px solid #12B8D7;
  margin: 45px 0 20px;
  font-size: 18px;
  padding-left: 8px;
  line-height: 1;
}
.service .box h4 + img {
  margin-bottom: 20px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 87, 170, 0.16);
          box-shadow: 0 3px 10px rgba(0, 87, 170, 0.16);
}
.service .box h4 + img.round {
  border-radius: 15px;
}
.service .box a img {
  -webkit-box-shadow: 0 3px 10px rgba(0, 87, 170, 0.16);
          box-shadow: 0 3px 10px rgba(0, 87, 170, 0.16);
}
.service .box a img.round {
  border-radius: 15px;
  margin-bottom: 20px;
}
.service .box .grid {
  display: grid;
  grid-template-columns: 70px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  margin-bottom: 16px;
  color: #0065B1;
  font-size: 15px;
  font-weight: bold;
}
.service .box .notes {
  margin-top: 15px;
}
.service .box .btn {
  margin-top: 40px;
}

/* ▼▼▼ インスタグラム
=====================================*/
.insta_wrap {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 20px;
}
.insta_wrap li {
  -ms-flex: 0 0 32%;
  -webkit-box-flex: 0;
          flex: 0 0 32%;
  width: 32%;
  max-width: 32%;
  aspect-ratio: 4/5;
}
.insta_wrap li:not(:nth-child(3n)) {
  margin-right: 2%;
}
.insta_wrap li:nth-last-of-type(n+4) {
  margin-bottom: 2%;
}
.insta_wrap li a {
  display: block;
  padding-top: 125%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* ▼ パンくず
--------------------------------------- */
#path {
  padding: 0 20px;
  margin-top: 25px;
}
#path ol {
  background: #E1F5F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
}
#path li {
  color: #0065B1;
}
#path li:not(:last-child) a::after {
  content: "・";
  display: inline-block;
  color: #B4B4B4;
  padding: 0 10px;
  font-size: 12px;
}
#path li a {
  color: #B4B4B4;
}

/* ▼ システム
--------------------------------------- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pager_wrap {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .pager_wrap {
    margin-bottom: 60px;
  }
}
.pager_list {
  --size:36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(var(--size) / 2);
}
@media screen and (min-width: 768px) {
  .pager_list {
    --size:50px;
    font-size: 20px;
  }
}
.pager_list_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: #F0F0F0;
  font-weight: bold;
}
.pager_list_inner.active {
  background: #266BB9;
  color: #fff !important;
}

/* ▼▼▼ フッター
===================================== */
footer {
  position: relative;
  z-index: 3;
}
footer::before {
  content: "";
  background: url(https://ko.dailyservice.co.jp/assets/Expo2025JRWG/img/bg_circle.svg) no-repeat center top/100% 100%;
  width: 100%;
  height: 67px;
  position: absolute;
  top: -30px;
  left: 0;
  -webkit-filter: drop-shadow(0 3px 30px rgba(18, 184, 215, 0.16));
          filter: drop-shadow(0 3px 30px rgba(18, 184, 215, 0.16));
}
footer > div {
  background: #fff;
  padding: 40px 0 27px;
  position: relative;
  z-index: 1;
}
footer .bnr {
  padding: 0 20px;
}
footer .bnr a {
  display: block;
}
footer .bnr a:not(:last-of-type) {
  margin-bottom: 24px;
}
footer .sns {
  background: url(https://ko.dailyservice.co.jp/assets/Expo2025JRWG/img/f_bg.jpg) no-repeat center/cover;
  padding: 70px 0 60px;
  margin: 45px 0 34px;
  color: #fff;
}
footer .sns_ttl {
  font-size: 44px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
}
footer .sns_txt {
  background: #fff;
  border-radius: 20px;
  width: 186px;
  font-weight: bold;
  margin: 0 auto 35px;
  height: 34px;
  line-height: 34px;
  color: #3B3938;
  text-align: center;
}
footer .sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 30px;
}
footer .f_logo {
  text-align: center;
  margin-bottom: 50px;
}
footer .copyright {
  color: #606060;
  font-size: 11px;
  text-align: center;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  width: 71px;
  height: 71px;
  border-radius: 50%;
  z-index: 2000;
  position: fixed;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: 84px;
    height: 84px;
    right: 20px;
    bottom: 20px;
  }
  .pagetop:hover {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

/* ▼▼▼ 404
====================================================== */
#not_found {
  padding: 100px 20px 60px;
}
@media screen and (min-width: 768px) {
  #not_found {
    padding: 8vw 20px;
  }
}
#not_found p {
  font-size: 14px;
  text-align: center;
}
#not_found p.arial {
  margin-bottom: 10px;
  font-size: 39px;
  font-family: "Arial", "メイリオ";
}
@media screen and (min-width: 768px) {
  #not_found p.arial {
    margin-bottom: 10px;
    font-size: 42px;
  }
}
#not_found p.arial + p {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #not_found p.arial + p {
    font-size: 18px;
  }
}
#not_found p.txt {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #not_found p.txt {
    line-height: 1.9;
  }
}
#not_found .top_btn a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ccc;
}

/* ▼ language
--------------------------------------- */
.language_change {
  position: fixed;
  top: 56px;
  right: 18px;
  width: 125px;
}
.language_change p {
  background-color: #000;
  height: 40px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  border-radius: 20px 20px 0 0;
  position: relative;
}
.language_change p::before {
  content: "";
  position: absolute;
  background: url(https://ko.dailyservice.co.jp/assets/Expo2025JRWG/img/icon_lang.svg) no-repeat center/contain;
  width: 14px;
  height: 14px;
  top: 13px;
  left: 12px;
}
.language_change p::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 12px;
}
.language_change p.open {
  border-radius: 20px;
}
.language_change p.open::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  margin-top: -4px;
}
.language_change .lang_list {
  display: none;
}
.language_change .lang_list li a {
  background-color: #fff;
  height: 43px;
  width: 100%;
  line-height: 43px;
  padding-left: 29px;
  position: relative;
}
.language_change .lang_list li a:hover {
  background-color: #E2EFF2;
  opacity: 1;
}
.language_change .lang_list li a::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #1DB5D9;
  border-right: solid 2px #1DB5D9;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  margin: auto;
}
.language_change .lang_list li:last-child a {
  border-top: 1px solid #ddd;
  border-radius: 0 0 20px 20px;
}

.language_btn {
  max-width: 234px;
  border-radius: 100vmax;
  margin: 0 auto 40px;
  background-color: #D0D0D0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.language_btn a {
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  border-radius: 100vmax;
}