
:root{
  --sky-blue: #8fc9f0;
  --glass-blue: #dff4ff;
  --tower-blue: #5d89b3;
  --bay-blue: #3f6f99;
  --deep-blue: #274a78;
  --light-bg: #f7fbfe;
  --line-blue: #cfe3f2;
  --sunlight: #f3d77a;
  --text: #334455;
  --white-glass: rgba(255,255,255,0.90);
}

html{
    font-size: 62.5%;
}

body{
  font-size: 1.6rem;
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  line-height: 2;
  letter-spacing: 1px;
  color: var(--text);
  background:
    linear-gradient(180deg, #fafdff 0%, var(--light-bg) 45%, #eef7fd 100%);
}

/* ヘッダー領域 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

header {
    padding-bottom: 14px;
    background-image: linear-gradient(180deg, rgba(231,244,253,0.96) 0%, rgba(246,251,255,0.96) 58%, rgba(255,255,255,0.98) 100%);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-color: #edf7fd;
    border-bottom: 1px solid var(--line-blue);
    box-shadow: 0 3px 12px rgba(63,111,153,0.08);
}

@media screen and (max-width:768px) { /* スマホ */
  header {
    padding-bottom: 4px;
    background-size: cover;
  }
}




.header_information {
    color:#4a6380;
    display: inline-block;
    float: right;
    font-size:80%;
    vertical-align: middle;
    text-align:right;
    margin:12px 10px;
    line-height:1.5;
}

.header_information_refined{
    width:min(720px, calc(100% - 40px));
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:6px;
    margin:10px 10px 8px;
    font-size:1.2rem;
    letter-spacing:0.03em;
}

.header_information_copy{
    font-size:1.05rem;
    line-height:1.35;
    color:#5a7590;
    opacity:0.95;
}

.header_information_schedule{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    color:#294a70;
    white-space:nowrap;
}

.header_information_icon{
    font-size:2.0rem;
    line-height:1;
    color:#5a86ae;
}

.header_information_label{
    display:inline-flex;
    align-items:center;
    height:24px;
    padding:0 10px;
    border-radius:999px;
    font-size:1.2rem;
    font-weight:bold;
    letter-spacing:0.05em;
    background:rgba(255,255,255,0.78);
    border:1px solid rgba(130,176,210,0.8);
    color:#2d5d86;
    box-shadow:0 4px 12px rgba(63,111,153,0.08);
}

.header_information_term{
    display:inline-flex;
    align-items:center;
    height:24px;
    padding:0 9px;
    border-radius:999px;
    font-size:1.15rem;
    font-weight:bold;
    letter-spacing:0.04em;
    color:#416884;
    background:rgba(255,255,255,0.62);
    border:1px solid rgba(187,214,233,0.9);
}

.header_information_value{
    font-size:1.45rem;
    line-height:1.2;
    font-weight:600;
    letter-spacing:0.02em;
    color:#294a70;
}

.header_information_schedule.summer .header_information_icon{
    color:#65aebf;
}

.header_information_schedule.summer .header_information_label{
    border-color:rgba(120,201,214,0.9);
    color:#2a7a88;
    background:linear-gradient(180deg, rgba(245,252,253,0.98) 0%, rgba(231,247,249,0.98) 100%);
}

.header_information_schedule.winter .header_information_icon{
    color:#8ca0c2;
}

.header_information_schedule.winter .header_information_label{
    border-color:rgba(208,166,150,0.72);
    color:#8a5b47;
    background:linear-gradient(180deg, rgba(255,250,247,0.98) 0%, rgba(249,238,231,0.98) 100%);
}

.sp_header_info_menu{
    margin:18px 18px 14px;
    padding:14px 14px 6px;
    border-radius:16px;
    background:linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(238,247,252,0.98) 100%);
    border:1px solid rgba(169,201,224,0.9);
    box-shadow:0 10px 24px rgba(40,78,117,0.12);
}

.sp_header_info_copy{
    margin-bottom:10px;
    font-size:1.2rem;
    line-height:1.65;
    color:#58738d;
    letter-spacing:0.03em;
}

.sp_header_info_schedule{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:8px 0;
    border-top:1px solid rgba(205,225,239,0.8);
}

.sp_header_info_schedule:first-of-type{
    border-top:none;
    padding-top:0;
}

.sp_header_info_icon{
    margin-top:1px;
    font-size:2rem;
    line-height:1;
    color:#5b89b0;
}

.sp_header_info_title{
    font-size:1.3rem;
    line-height:1.5;
    font-weight:bold;
    color:#274a78;
}

.sp_header_info_title span{
    margin-left:6px;
    font-size:1.1rem;
    font-weight:bold;
    color:#6e879f;
}

.sp_header_info_value{
    font-size:1.3rem;
    line-height:1.6;
    color:#35536f;
}

.sp_header_info_schedule.summer .sp_header_info_icon{
    color:#65aebf;
}

.sp_header_info_schedule.winter .sp_header_info_icon{
    color:#8ca0c2;
}

@media screen and (max-width:768px) {
  .header_information_refined{
    display:none;
  }
}




.bread {
    background: linear-gradient(90deg, var(--tower-blue), var(--bay-blue));
    margin:0px 0px 14px 0px;
    padding:8px 12px;
    font-size:90%;
    color:#fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 8px rgba(63,111,153,0.12);
}

.bread a{
    color:#fff;
}


/* ナビゲーション ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.gnav_wrap{
  row-gap: 14px;
}

.gnav_link{
  display:block;
  margin:0;
  text-decoration:none;
}

.gnav{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:122px;
  height:100%;
  padding:18px 12px 16px;
  margin:0;
  text-align:center;
  color:#234a70;
  background:linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(233,245,252,0.95) 100%);
  border:1px solid rgba(164,199,224,0.9);
  border-radius:18px;
  box-shadow:0 8px 20px rgba(47,95,143,0.10);
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.gnav::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg, var(--sky-blue), var(--tower-blue), var(--sunlight));
}

.gnav:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(47,95,143,0.15);
  border-color:#8fbee0;
  background:linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(239,249,255,0.98) 100%);
}

.gnav_icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #9bd0ef 0%, #5e8ab2 100%);
  box-shadow:0 8px 16px rgba(63,111,153,0.20);
}

.gnav_icon .circle_icon{
  color:#fff;
  font-size:31px;
}

.gnav_text{
  font-size:1.7rem;
  line-height:1.35;
  font-weight:bold;
  letter-spacing:0.04em;
  color:#274a78;
}

.gnav_sub{
  font-size:1.1rem;
  line-height:1;
  font-weight:bold;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:#6b93b6;
}

@media screen and (max-width:768px) {
  .gnav_wrap{
    row-gap:10px;
  }

  .gnav{
    min-height:102px;
    padding:14px 10px 13px;
    border-radius:16px;
  }

  .gnav_icon{
    width:46px;
    height:46px;
    border-radius:15px;
  }

  .gnav_icon .circle_icon{
    font-size:26px;
  }

  .gnav_text{
    font-size:1.45rem;
    letter-spacing:0.02em;
  }

  .gnav_sub{
    font-size:1.0rem;
    letter-spacing:0.12em;
  }
}

/* 画像 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.introduction_picture {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  width: 100%;
  height: 280px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(63,111,153,0.12);
  font-family: 'object-fit: cover; object-position: center center;'
}


/* ハンバーガーメニュー ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.wrapper {
  height: 100%;
  overflow-x: hidden;
  position: relative;
}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(39, 74, 120, 0.28);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}
main {
  height: 100%;
  min-height: 100vh;
  padding: 0 50px;
  background-color: #eef7fc;
  transition: all .5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main.open {
  transform: translateX(-250px);
}
main h1 {
  text-align: center;
  font-weight: 500;
}
main p {
  text-align: center;
}
.menu-trigger {
  display: inline-block;
  width: 36px;
  height: 28px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 6000;
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--deep-blue);
  border-radius: 3px;
  transition: all .5s;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 12px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

.hamburger nav {
  width: 300px;
  height: 100%;
  overflow-y: scroll; /* ナビの中でのスクロールを可とする */
  -webkit-overflow-scrolling: touch; /* 慣性スクロールを追加 */
  -ms-overflow-style: none;  /* スクロールバー消す。IE、Edge 対応 */
  padding-top: 70px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 70px;
  background: linear-gradient(180deg, rgba(100,147,187,0.97), rgba(54,95,132,0.97));
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5000;
  transform: translate(300px);
  transition: all .2s;
  box-shadow: -6px 0 20px rgba(0,0,0,0.18);
}

.hamburger nav::-webkit-scrollbar {  /* スクロールバー消す。Chrome, Safari 対応 */
  display:none;
}

.hamburger nav.open {
  transform: translateZ(0);
}


.menulist{
  text-align:left;
  list-style: none;
}
.menulist ul{
  padding-left: 0px;
}
.menulist li{
  position: relative;
  margin-bottom: 8px;
  padding: 14px 14px 14px 20px;
  line-height: 1.7;
  font-weight: bold;
  color: #4d7ca5;
  border: solid 1px #cde1f0;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
.menulist li:before{
  font-family: FontAwesome;
  content: "";
  position: absolute;
  left: 0.5em;
  font-size: 1.2em;
  font-weight: normal;
}
.menulist li:after{
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  height:0;
  width: 100%;
  background : rgba(143,201,240,0.12);
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
.menulist li:hover a{
  color: #2f577a;
}
.menulist li:hover:after{
  height: 840%;
  opacity: 1;
}
.menulist li:active:after{
  height: 1000%;
  opacity: 1;
}





/* フッター領域 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
footer {
  width:100%;
  background: linear-gradient(180deg, #284b74 0%, #1d3655 100%);
  bottom:0px;
  color: #fff;
  text-align:center;
  padding: 56px 10px 28px;
  margin-top:60px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

footer a {
  color: #ffffff;
  font-weight:bold;
}
footer a:hover{
  color: #d9ecff;
  text-decoration: none;
}

#top_button{
  position:absolute;
  padding-top:10px;
  margin-top:-100px;
  font-size:40px;
  right:0;
  margin-right:15px;
  width:60px;
  height:60px;
  border-radius: 30px;
  text-align:center;
  background: linear-gradient(135deg, var(--bay-blue), var(--deep-blue));
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

#top_button:hover{
  cursor: pointer;
}

/* ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */


h1 {
  font-size: 3.0rem;
  font-weight:bold;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #8fc9f0 0%, #5d89b3 55%, #3f6f99 100%);
  padding: 0.65em 0.8em;
  color: white;
  border-radius: 10px;
  line-height:1.4;
  box-shadow: 0 6px 16px rgba(63,111,153,0.16);
}


.h1_introduction {
  margin: 0px 20px;
  text-align:left;
}


h2 {
  font-size: 2.8rem;
  font-weight: bold;
  color:var(--bay-blue);
  text-align:left;
  position: relative;
  margin:40px auto 15px auto;
  padding:0 0 12px 14px;
  letter-spacing: 2px;
  line-height:1.4;
  border-left: 5px solid var(--sky-blue);
}

h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--sky-blue), var(--glass-blue));
}


.h2_introduction {
  color:var(--deep-blue);
  font-size:2.2rem;
  font-weight:bold;
  margin: -10px auto 10px auto;
  text-align:left;
}


h3{
    color:#3f6f99;
    font-size: 2.0rem;
    font-weight:bold;
    text-align: left;
    margin: 20px auto 10px auto;
    padding-bottom: 6px;
    border-bottom: solid 2px #d4e7f4;
    letter-spacing: 1px;
    line-height:1.4;
}

.h3_introduction {
  color:#33557a;
  font-weight:bold;
  margin: 10px auto;
  text-align:right;
}


h4{
    font-weight: bold;
    text-align: left;
    border-left: solid 4px #9ac8e8;
    border-bottom: solid 1px #dbeaf5;
    padding:8px 0px 8px 10px;
    color: #4d7ea6;
    margin: 20px auto 10px auto;
    background: rgba(255,255,255,0.65);
    border-radius: 6px;
}



.h4_introduction {
  font-weight:bold;
  margin: 10px auto;
  text-align:right;
}

h5{
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
}

.page_introduction {
    margin: 40px 0px 20px 0px;
    text-align:left;
    font-size: 2.4rem;
    line-height: 1.5;
    color:#3f6f99;
}

.index_introduction_index {
  font-size: 2.0rem;
}
@media screen and (max-width:768px) { /* スマホ */
  .index_introduction_index {
    font-size: 1.8rem;
  }
}


p{
    margin:20px 10px;
    text-align:left;
}

.photo_caption{
    margin: 10px;
    font-size: 90%;
    text-align:left;
    color:#617b94;
}




.picture {
	text-align:center;
}

.picture img {
	height:auto;
	max-width:100%;
	margin: 0px auto 0px auto;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    box-shadow: 0 6px 14px rgba(63,111,153,0.10);
}


/* トップピックアップ上の文字用 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

/*トップ画像部のピックアップコンテンツ情報表示部*/
.topimage_contents_info{
	width:100%;
	position: absolute;
	bottom: 0;
	right: 0;
	margin:0px;
	padding: 34px 12px 12px 12px;
	background:linear-gradient(0deg, rgba(39, 74, 120, 0.72), rgba(39, 74, 120, 0));
	color:#fff;
}

.topimage_contents_info a{
	color:#fff;
}


/* 下部固定ボタン ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.footer_fix_btn {
  position:fixed;
  z-index: 1000;
  bottom:0;
  right:0;
  border-top:0px solid #ffffff;
  background: rgba(0,0,0,0);
}
.footer_fix_btn a {
  text-decoration:none;
  opacity:0.88;
}
.footer_fix_btn a:hover {
  opacity:1.0;
}



/* 下部固定ボタン（左） ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.footer_fix_btn_left {
  position:fixed;
  z-index: 1000;
  bottom:0;
  left:0;
  border-top:0px solid #ffffff;
  background: rgba(0,0,0,0);
}
.footer_fix_btn_left a {
  text-decoration:none;
  opacity:0.88;
}
.footer_fix_btn_left a:hover {
  opacity:1.0;
}

/* 文字に縁取り ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */


.text-outline {
  text-shadow    : 
       2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
       2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
       2px  0px 1px #ffffff,
       0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
       0px -2px 1px #ffffff;        /* 文字の影 */
}



/* 恋人の聖地枠 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.koibito {
    padding: 0.5em 0.8em;
    margin: 2em 1em;
    color: #565656;
    background: #fff8f0;
    box-shadow: 0px 0px 0px 6px #fff8f0;
    border: solid 1px #f4deb1;
    border-radius: 10px;
}
.koibito p {
    margin: 10px; 
    padding: 0;
}


/* リンク ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
a{
  color:#2f73ad;
  font-weight:bold;
  text-decoration: none;
  border-bottom: 0px solid #007bbb;
  margin:0px 5px 0px 5px;
}
a:focus{
  font-weight:bold;
  text-decoration: none;
}

a:hover{
  font-weight:bold;
  color:#1f5b8d;
}

/* スワイパー画像のリンクで隙間ができないように */
.swiper-slide a{
  margin:0px 0px 0px 0px;
}


@media screen and (max-width:768px) { /* スマホ */
  a:hover{
    text-decoration: none;
    font-weight:bold;
  }
}


.banner a img {
  padding: 3px;
  border: 1px solid #b8d4e8;
  border-radius: 8px;
  transition: 0.2s;
}

.banner a:hover img{
  border: 1px solid #6eaed8;
  background: #eef8fd;
  border-bottom: 0px solid #007bbb;
}



 {
  max-width: 80%;
  margin: 10px auto;
}


.link_btn {
    background: linear-gradient(135deg, #86bfe3, #5c88b3);
    border-radius: 999px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px auto;
    max-width: 90%;
    padding: 10px 16px;
    color: #FFF;
    transition: 0.25s ease-in-out;
    font-weight: 600;
    border-bottom: 3px solid #3f6f99;
    overflow: hidden;
    box-shadow: 0 5px 12px rgba(63,111,153,0.18);
}
.link_btn:active {
  transform: translateY(2px);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.16);
  border-bottom: none;
}
.link_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0px 6px 14px rgba(63,111,153,0.22);
  border-bottom: 3px solid #3f6f99;
  color:#fff;
}


.link_btn:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  animation: shine 3s infinite;
}
@keyframes shine {
  33% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.link_btn:after {
  content: '›';
  display: inline-block;
  color: #fff;
  padding-left: 10px;
  font-size: 20px;
}



.floor_btn {
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0px;
    color: #FFF;
    transition: 0.25s ease-in-out;
    border-bottom: 3px solid rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: absolute;
    width:100px;
    margin:auto;
    right:70px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.16);
  }
.floor_btn:active {
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.16);
  border-bottom: none;
}
.floor_btn:hover {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.18);
  color:#fff;
}

.floor_btn:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  animation: shine 3s infinite;
}
.floor_btn:after {
  content: '›';
  display: inline-block;
  color: #fff;
  padding-left: 10px;
  font-size: 20px;
}



/* ラベル ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.content_label {
  font-size:120%;
  position: relative;
  display: inline-block;
  margin: 1rem 0 1rem -20px;
  padding: 1rem 3rem;
  color: #fff;
  border-radius: 0 100vh 100vh 0;
  background: linear-gradient(135deg, var(--tower-blue), var(--bay-blue));
  -webkit-box-shadow: 3px 3px 8px rgba(0, 0, 0, .16);
  box-shadow: 3px 3px 8px rgba(0, 0, 0, .16);
}

.content_label:before {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  content: '';
  border-top: 10px solid #2a5274;
  border-left: 10px solid transparent;
}




/* アイコン ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

/* Google Material Iconsが上にずれる問題の解決 */
.material-icons-round {
  display: inline-flex;
  vertical-align: middle;
}

/* Google Material Iconsアイコンのサイズを変更するためのルール */
.material-icons.md-10 { font-size: 10px; }
.material-icons.md-20 { font-size: 20px; }
.material-icons.md-30 { font-size: 30px; }
.material-icons.md-40 { font-size: 40px; }

/* 明るい背景の場合に黒色でアイコンを表示するためのルール */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* 暗い背景の場合に白色でアイコンを表示するためのルール */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }



/* アニメーション ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.96);
  }
}




/* 必須項目 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.hissu{
  font-weight:bold;
  color: #d44a48;
}

/* フォームの記入補足 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
 .contact_hosoku{
   margin:10px;
   font-size:1.4rem;
   color: #6b7b8c;
 }


/* PCとスマホの表示分け ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.pc_only {
	display:block;
}
@media screen and (max-width:768px) {
.pc_only {
	display:none;
}
}
.pc_only_span {
	display:inline;
}
@media screen and (max-width:768px) {
.pc_only_span {
	display:none;
}
}

.sp_only {
	display:none;
}
@media screen and (max-width:768px) {
.sp_only {
	display:block;
}
}
.sp_only_span {
	display:none;
}
@media screen and (max-width:768px) {
.sp_only_span {
	display:inline;
}
}


/* ブートストラップグリッドの..containerと.row のpaddingとmarginを0にする ～～～～～～～～～～～～～～～～ */
.sukima-0 {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

/* 上記の中にあるカラムの左右の隙間も0にする ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.sukima-0 > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}


/* divをクリア ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.clear {
    clear: both;
}

/* センタリング ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.center {
    margin: 0 auto;	
    text-align:center;
}


/* 切り替えボタン ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.kirikae_button_on {
  position: relative;
  text-align: left;
  height:34px;
  font-size:1.4rem;
  color: #fff;
  font-weight: bold;
  padding: 5px 32px 5px 10px;
  display: inline-block;
  line-height: 1.4;
  background: #4fa85f;
  vertical-align: middle;
  border:2px solid #d6e9db;
  border-radius: 25px;
  outline: none;
}

.kirikae_button_on:after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 5px;
    right: 5px;
    background: #fff;
	border-radius: 20px;
	box-shadow: 0px 1px 2px #327a46;
}

.kirikae_button_on:hover {
	background: #63ba73;
	border:2px solid #fff;
}

.kirikae_button_off {
  position: relative;
  text-align: right;
  height:34px;
  font-size:1.4rem;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px 5px 32px;
  display: inline-block;
  line-height: 1.4;
  background: #d06779;
  vertical-align: middle;
  border:2px solid #efdae0;
  border-radius: 25px;
  outline: none;
}

.kirikae_button_off:after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 5px;
    left: 5px;
    background: #fff;
	border-radius: 20px;
	box-shadow: 0px 1px 2px #8a3f52;
}

.kirikae_button_off:hover {
	background: #dd7c8c;
	border:2px solid #fff;
}





/* ローディング画像 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

#loading {
  display: table;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.86;
}
 
#loading .loadingMsg {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding-top: 140px;
  background: url("../image_common/loading.gif") center center no-repeat;
  font-size:3.0rem;
  font-weight:bold;
  color: var(--bay-blue);
}



/* 各ページの次・前リンク ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.prev-next-link {
  margin-top: 40px;
}
.prev-next-link a {
  border: 1px #d6e7f4 solid;
  display: block;
  text-decoration: none;
  padding: 14px 20px;
  color: #2f73ad;
  font-size: 2.0rem;
  background: rgba(255,255,255,0.92);
}
.prev-next-link a:hover {
  background-color: #f2faff;
}
.prev-next-link a:first-child {
  border-top: 1px #d6e7f4 solid;
}

/* Arrows */
.prev-link {
  text-align:left;
}
.next-link {
  text-align:right;
}


/* Larger devices */
@media ( min-width: 600px) {
  .prev-next-link {
    display: flex;
    gap: 12px;
  }
  .prev-next-link a {
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(63,111,153,0.06);
  }
  .prev-next-link a,
  .prev-next-link a:first-child {
    border: 1px #d6e7f4 solid;
  }
  .next-link {
    text-align: right;
  }
}

/* ===============================
   index.php refresh
   =============================== */
.pt-home-section{
  margin:10px auto 28px;
  padding:20px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(239,247,252,0.96));
  box-shadow:0 10px 24px rgba(63,111,153,0.10);
}
.pt-home-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
  padding-bottom:14px;
  border-bottom:1px solid #d8e8f4;
}
.pt-home-section-head.compact{
  align-items:center;
}
.pt-home-section-head h2{
  margin:0;
  padding:0;
  border:none;
  font-size:2.8rem;
}
.pt-home-section-head h2:after{
  display:none;
}
.pt-home-section-head p{
  margin:0;
  max-width:34em;
  color:#607a92;
}
.pt-home-section-eyebrow{
  display:inline-block;
  margin-bottom:8px;
  padding:6px 10px;
  border-radius:999px;
  background:#e7f3fb;
  color:#5f8db1;
  font-size:1.15rem;
  font-weight:bold;
  letter-spacing:0.18em;
}
.pt-pass-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}
.pt-pass-card{
  display:grid;
  grid-template-columns:minmax(220px, 1.05fr) minmax(0, 1.25fr);
  gap:20px;
  padding:18px;
  border-radius:18px;
  background:#fff;
  border:1px solid #dbe9f4;
  box-shadow:0 8px 18px rgba(63,111,153,0.08);
  align-items:center;
}
.pt-pass-card.annual{
  background:linear-gradient(180deg,#ffffff,#f5fbff);
}
.pt-pass-image{
  width:100%;
  aspect-ratio:4 / 3;
  overflow:hidden;
  border-radius:14px;
  background:#eaf4fb;
}
.pt-pass-image img{
  width:100%;
  height:100%;
  min-height:0;
  object-fit:cover;
  border-radius:14px;
  display:block;
}
.pt-pass-label{
  display:inline-block;
  margin-bottom:8px;
  color:#7ca3c4;
  font-size:1.1rem;
  font-weight:bold;
  letter-spacing:0.16em;
}
.pt-pass-body{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
  padding:4px 2px 4px 0;
}
.pt-pass-body h3{
  margin:0 0 10px;
  color:#274a78;
  font-size:2.1rem;
  line-height:1.45;
}
.pt-pass-body p{
  margin:0 0 16px;
  line-height:1.85;
  color:#4f6b84;
}
.pt-mini-btn{
  max-width:260px;
  margin:0;
}
.pt-news-featured > .container{
  width:100%;
  margin:0;
  padding:0;
}
.pt-news-featured .row{
  margin-left:-8px;
  margin-right:-8px;
}
.pt-news-featured [class*="col-"]{
  padding-left:8px;
  padding-right:8px;
}
.pt-news-list-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:16px;
}
.pt-news-list-item{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:16px 18px;
  border-radius:16px;
  background:#fff;
  border:1px solid #dbe9f4;
  box-shadow:0 4px 12px rgba(63,111,153,0.06);
  margin:0;
}
.pt-news-list-item:hover{
  background:#f8fcff;
}
.pt-news-list-cat{
  display:inline-block;
  align-self:flex-start;
  padding:4px 10px;
  border-radius:999px;
  background:#dd7777;
  color:#fff;
  font-size:1.15rem;
  font-weight:bold;
}
.pt-news-list-title{
  color:#274a78;
  font-weight:bold;
  line-height:1.7;
}
.pt-news-list-date{
  color:#6c8398;
  font-size:1.2rem;
}
.pt-news-more-wrap{
  margin-top:18px;
}
.pt-feature-stack,
.pt-side-stack{
  height:100%;
}
.pt-feature-card{
  margin-bottom:18px;
  padding:18px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,247,252,0.98));
  box-shadow:0 8px 20px rgba(63,111,153,0.10);
}
.pt-feature-card:last-child{
  margin-bottom:0;
}
.pt-feature-card-logo{
  text-align:center;
  margin-bottom:12px;
}
.pt-feature-card-logo img{
  width:80%;
  max-width:300px;
}
.pt-feature-card-inner{
  display:grid;
  grid-template-columns:240px minmax(0,1fr);
  gap:18px;
  align-items:start;
}
.pt-feature-card-inner.portrait{
  grid-template-columns:180px minmax(0,1fr);
}
.pt-feature-card-image img{
  width:100%;
  height:210px;
  object-fit:cover;
  border-radius:16px;
}
.pt-feature-card-image.portrait-main img{
  height:260px;
}
.pt-feature-card-body.single{
  padding:4px 4px 0;
}
.pt-feature-card-body h3{
  margin:0 0 10px;
  color:#274a78;
  font-size:2.3rem;
}
.pt-feature-card-body p{
  margin:0 0 14px;
}
.pt-feature-card-body a{
  display:inline-flex;
  align-items:center;
  gap:4px;
  margin:0;
}
.pt-profile-box{
  margin:0 0 14px;
  padding:12px 14px;
  border-radius:14px;
  background:#f4f9fd;
  line-height:1.8;
  font-weight:bold;
}
.pt-portkun-intro{
  align-items:start;
}
.pt-portkun-profile-wide{
  grid-column:1 / -1;
  margin:2px 0 0;
}
.pt-portkun-shop-link-wrap{
  margin-top:14px;
}
.pt-portkun-shop-link-wrap a{
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.pt-portkun-gallery{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}
.pt-portkun-gallery img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:14px;
}
.pt-sns-timeline{
  overflow:hidden;
  border-radius:16px;
}
.pt-sns-link-box{
  width:100%;
  padding:10px;
  background:#fff;
  border-radius:28px;
  box-shadow:0 4px 12px rgba(63,111,153,0.08);
}
@media screen and (max-width:991px){
  .pt-pass-grid,
  .pt-news-list-grid{
    grid-template-columns:1fr;
  }
  .pt-feature-card-inner,
  .pt-feature-card-inner.portrait{
    grid-template-columns:1fr;
  }
  .pt-pass-card{
    grid-template-columns:minmax(210px, 0.95fr) minmax(0, 1.15fr);
  }
}
@media screen and (max-width:768px){
  .pt-home-section{
    padding:16px 14px;
    border-radius:18px;
  }
  .pt-home-section-head{
    display:block;
  }
  .pt-home-section-head p{
    margin-top:8px;
  }
  .pt-home-section-head h2{
    font-size:2.3rem;
  }
  .pt-feature-card{
    padding:14px;
    border-radius:18px;
  }
  .pt-feature-card-body h3{
    font-size:2.0rem;
  }
  .pt-feature-card-image img,
  .pt-feature-card-image.portrait-main img{
    height:200px;
  }
  .pt-pass-card{
    grid-template-columns:1fr;
    gap:14px;
    padding:14px;
  }
  .pt-pass-image{
    aspect-ratio:4 / 3;
  }
  .pt-pass-body{
    padding:0;
  }
  .pt-pass-body h3{
    font-size:2.0rem;
  }
  .pt-pass-body p{
    line-height:1.75;
  }
  .pt-mini-btn{
    max-width:none;
    width:100%;
  }
}

/* ===== グローバルナビ hover時の下線抑止 ===== */
.gnav_link,
.gnav_link:hover,
.gnav_link:focus,
.gnav_link:active,
.gnav_link .gnav,
.gnav_link:hover .gnav,
.gnav_link .gnav_text,
.gnav_link:hover .gnav_text,
.gnav_link .gnav_sub,
.gnav_link:hover .gnav_sub{
  text-decoration:none;
}


/* ===== ボタン統一 ===== */
.link_btn{
  min-height:48px;
  letter-spacing:0.04em;
}
.pt-text-link-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(135deg, #edf6fd 0%, #dcecf8 100%);
  color:#24476f;
  font-weight:bold;
  box-shadow:0 4px 12px rgba(63,111,153,0.10);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.pt-text-link-btn:hover{
  color:#24476f;
  transform:translateY(-1px);
  box-shadow:0 8px 16px rgba(63,111,153,0.14);
  background:linear-gradient(135deg, #f5fbff 0%, #e4f1fb 100%);
  text-decoration:none;
}

/* ===== CTA ===== */
.pt-ticket-cta{
  background:linear-gradient(135deg, #e9f5ff 0%, #fdfefe 48%, #eef7fc 100%);
  overflow:hidden;
}
.pt-ticket-cta-inner{
  display:grid;
  grid-template-columns:minmax(0,1.5fr) minmax(280px,1fr);
  gap:24px;
  align-items:center;
}
.pt-ticket-cta-copy h2{
  margin:0 0 12px;
  color:#24476f;
  font-size:3.0rem;
}
.pt-ticket-cta-copy p{
  margin:0;
  color:#567189;
}
.pt-ticket-cta-actions{
  display:grid;
  gap:12px;
}
.pt-cta-btn{
  max-width:none;
  width:100%;
  margin:0;
  padding:14px 18px;
  font-size:1.6rem;
}
.pt-cta-btn.sub{
  background:linear-gradient(135deg, #9ac9e8, #6d97bc);
}

/* ===== footer refresh ===== */
.site-footer-inner{
  max-width:1100px;
  margin:0 auto;
}
.site-footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:24px;
  align-items:start;
  text-align:left;
}
.site-footer-brand img{
  width:300px;
  max-width:100%;
  margin-bottom:14px;
}
.site-footer-brand p,
.site-footer-access,
.site-footer-links p{
  margin:0;
  color:rgba(255,255,255,0.88);
  line-height:1.9;
}
.site-footer-title{
  margin:0 0 12px;
  font-size:1.7rem;
  color:#fff;
}
.site-footer-links ul{
  margin:0;
  padding:0;
  list-style:none;
}
.site-footer-links li{
  margin:0 0 10px;
}
.site-footer-contact{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
}
.site-footer-contact:hover{
  background:rgba(255,255,255,0.16);
}
.site-footer-bottom{
  margin-top:28px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.16);
  color:rgba(255,255,255,0.78);
  font-size:1.3rem;
  line-height:1.8;
}
@media screen and (max-width:991px){
  .pt-ticket-cta-inner,
  .site-footer-grid{
    grid-template-columns:1fr;
  }
}
@media screen and (max-width:768px){
  .pt-ticket-cta-copy h2{
    font-size:2.4rem;
  }
  footer{
    padding-top:48px;
  }
  .site-footer-grid{
    text-align:center;
  }
  .site-footer-contact{
    justify-content:center;
  }
}


/* ===== 展望状況カード：状態ごとの色分け ===== */
.tophero-view-chip{
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.tophero-view-chip:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(79,126,168,0.10);
}
.tophero-view-chip.is-clear{
  background:linear-gradient(135deg,#eff7ff 0%,#e0f0ff 100%);
  border-color:#9ec9f8;
}
.tophero-view-chip.is-clear .tophero-view-chip-label{
  color:#1e5fa9;
}
.tophero-view-chip.is-good{
  background:linear-gradient(135deg,#f5fbff 0%,#edf7ff 100%);
  border-color:#bfdcf9;
}
.tophero-view-chip.is-good .tophero-view-chip-label{
  color:#356fae;
}
.tophero-view-chip.is-poor{
  background:linear-gradient(135deg,#f7f9fb 0%,#eef2f6 100%);
  border-color:#d6dde6;
}
.tophero-view-chip.is-poor .tophero-view-chip-label{
  color:#526274;
}
.tophero-view-chip.is-checking{
  background:linear-gradient(135deg,#fff7ef 0%,#ffefdd 100%);
  border-color:#f3c086;
}
.tophero-view-chip.is-checking .tophero-view-chip-label{
  color:#b56411;
}
.tophero-view-chip.is-empty{
  background:linear-gradient(135deg,#f4f6f8 0%,#eef2f5 100%);
  border-color:#d8e0e8;
}
.tophero-view-chip.is-empty .tophero-view-chip-label{
  color:#66788a;
}

/* ===== 展望状況アイコン：記号バッジ ===== */
.tophero-view-status{
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.55);
}
.tophero-view-status.is-clear{
  background:#eef6ff;
  border:2px solid #2d7fe8;
}
.tophero-view-status.is-clear:before{
  inset:5px;
  border-radius:999px;
  border:2px solid #2d7fe8;
}
.tophero-view-status.is-clear:after{
  inset:10px;
  border-radius:999px;
  background:#2d7fe8;
}
.tophero-view-status.is-good{
  background:#f1f8ff;
  border:2px solid #6aaef8;
}
.tophero-view-status.is-good:before{
  inset:7px;
  border-radius:999px;
  border:2px solid #6aaef8;
  background:transparent;
}
.tophero-view-status.is-poor{
  background:#f2f5f8;
  border:2px solid #b7c2cf;
}
.tophero-view-status.is-poor:before{
  left:50%;
  top:50%;
  width:14px;
  height:12px;
  background:#7f8fa3;
  clip-path:polygon(50% 0, 0 100%, 100% 100%);
  transform:translate(-50%,-50%);
}
.tophero-view-status.is-checking{
  background:#fff6ef;
  border:2px dashed #f0a056;
}
.tophero-view-status.is-checking:before{
  content:"?";
  left:50%;
  top:50%;
  transform:translate(-50%,-53%);
  color:#e27b10;
  font-size:1.5rem;
  font-weight:bold;
}
.tophero-view-status.is-empty{
  background:#eef2f6;
  border:2px solid #c9d4df;
}
.tophero-view-status.is-empty:before{
  content:"×";
  position:absolute;
  left:50%;
  top:50%;
  right:auto;
  width:auto;
  height:auto;
  background:none;
  border-radius:0;
  transform:translate(-50%,-50%);
  color:#94a3b5;
  font-size:1.6rem;
  font-weight:bold;
}

/* ===== 日没目安アイコン：海に半分沈む太陽 ===== */
.tophero-view-chip-sunset:before{
  background:
    linear-gradient(to bottom, transparent 0 56%, #7ec3ea 56% 100%),
    linear-gradient(to bottom, transparent 0 55%, rgba(255,255,255,0.82) 55% 57%, transparent 57% 100%),
    radial-gradient(circle at 50% 57%, #ffc64a 0 23%, #ec9200 24% 33%, transparent 34%),
    linear-gradient(180deg, #ffeeb8 0%, #ffd37a 42%, #ffbb4d 55%, #8ed1ef 56%, #6fbbe7 100%);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.6), 0 2px 6px rgba(214,161,51,0.12);
}


/* ===== デザイン統一調整（2026-03-25） ===== */
h1{
  margin:0 0 22px 0;
  padding:18px 20px;
  font-size:3.2rem;
  line-height:1.4;
  letter-spacing:0.05em;
  color:#ffffff;
  text-align:center;
}

h2{
  position:relative;
  margin:44px 0 14px 0;
  padding:0 0 12px 0;
  border:none;
  font-size:2.8rem;
  line-height:1.45;
  color:#214d7e;
  letter-spacing:0.03em;
}
h2:after{
  content:"";
  display:block;
  width:72px;
  height:4px;
  margin-top:10px;
  border-radius:999px;
  background:linear-gradient(90deg,#79b7df,#cde5f5);
}
.h2_introduction{
  margin:-4px 0 16px 0;
  color:#5d7891;
  font-size:1.7rem;
  line-height:1.8;
}

h3{
  color:#2b5886;
  font-size:2.1rem;
  font-weight:bold;
  text-align:left;
  margin:24px 0 12px 0;
  padding-bottom:8px;
  border-bottom:solid 2px #d6e8f4;
  letter-spacing:0.04em;
  line-height:1.5;
}
.h3_introduction{
  color:#5d7891;
  font-weight:bold;
  margin:0 0 12px 0;
  text-align:left;
  font-size:1.5rem;
}

p{
  margin:18px 0;
  text-align:left;
}

.table{
  overflow:hidden;
  border-radius:16px;
  box-shadow:0 8px 20px rgba(73,120,168,0.08);
}
.table tr:first-child td{
  background:#eef5fb;
  color:#355d83;
  font-weight:bold;
}
.table td{
  border-color:#dbe8f2 !important;
}

.link_btn{
  background:linear-gradient(135deg,#86bfe3,#5c88b3);
  border-bottom:3px solid #3f6f99;
  box-shadow:0 8px 18px rgba(63,111,153,0.18);
}
.link_btn:hover{
  box-shadow:0 10px 20px rgba(63,111,153,0.22);
}

.introduction_picture,
.floor-section-card img,
.guide-pass-photo img,
.guide-open-card img{
  box-shadow:0 8px 18px rgba(63,111,153,0.10);
}

@media screen and (max-width:768px){
  h1{
    font-size:2.6rem;
  }
  h1 .circle_icon{
    width:44px;
    height:44px;
    border-radius:15px;
    margin-right:10px !important;
  }
  h2{
    font-size:2.3rem;
  }
  h3{
    font-size:1.9rem;
  }
}


.price-table{
  width:100%;
  border-collapse:collapse;
  margin-top:15px;
  margin-bottom:25px;
  font-size:14px;
}

.price-table td{
  border:1px solid #cfd6e0;
  padding:10px 12px;
}

.price-table tr:first-child td{
  background:#f1f4f8;
  font-weight:bold;
}

.price-table tr:nth-child(even){
  background:#fafbfd;
}

.price-note{
  background:#f7f9fc;
  border-left:4px solid #0b3c78;
  padding:12px 16px;
  margin:20px 0;
}

.price-section-title{
  font-size:18px;
  font-weight:bold;
  margin-top:25px;
  margin-bottom:8px;
  border-left:5px solid #0b3c78;
  padding-left:10px;
}