/* ---- PC styles ---- */
/* MAIN VISUAL */
#visual {
  width: 100%;
  height: auto !important;
  position: relative;
}
#visual .hd_cont{
  position: relative;
  background: #e7f6fa;
}
.mv {
  position: relative;
}

/* メインビジュアル背景画像 */
.mv-bg-img {
  width: 100%;
  max-height: 1000px;
  object-fit: cover;
}

/* タイトルロゴの配置用コンテナ */
.mv-title-wrap {
  position: absolute;
  top: 250px;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* タイトルロゴ画像 */
.mv-title-img {
  width: 30%;
  margin-top: -15%;
}

div.top_icn{
  position: absolute;
  top: 220px;
  width: 100%;
}

img.top_date{
  /* position: absolute;
  left: 50%;
  top: 20%;
  margin-left: -255px;
  width: 510px; */
  display: block;
  width: 30%;
  margin: 120px auto 0;
}

#visual .btn_docs p {
  text-align: center;
  margin-left: 10px;
}
#visual .btn_docs p+p {
  margin-top: 10px;
}

#visual .woman {
  position: absolute;
  left: 50%;
  bottom: 5px;
  margin-left: -500px;
}

#visual .woman a {
  display: block;
  width: 200px;
  height: 160px;
  overflow: hidden;
  text-indent: -1000%;
}

/* 画像下のボタンエリア（PC・iPad用） */
.mv-bottom-btns {
  width: 100%;
  padding: 20px 0 30px;
  box-sizing: border-box;
  background-color: #e7f6fa;
}
.btn_docs_flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.btn_docs_flex p {
  margin: 0 !important;
  flex: 1 1 400px; /* 余白に合わせて柔軟にサイズ調整 */
  text-align: center;
}
.btn_docs_flex p img {
  max-width: 100%; /* iPadなどのタブレットで縮小されるように */
  height: auto;
}

/* 画像下の資料請求・イベントボタン（PC/iPad用）のスタイル調整 */
.mv-bottom-btns .movie-banner-btn {
  width: 100%;        /* 縦並び用に幅を広げる */
  max-width: 807px;   /* 下部のバナー幅に合わせる */
  margin: 0;
}
.mv-bottom-btns .movie-banner-inner {
  padding: 15px 15px;
  min-height: auto;
}

/* 画像下の資料請求・イベントボタン（SP用）のスタイル調整 */
.btn_docs.sp {
  padding: 30px 0;
  width: 100%; /* 横幅を100%に */
  box-sizing: border-box;
}
.btn_docs.sp .movie-banner-btn {
  margin: 0 auto;
  width: 100%; /* 90%から100%に変更 */
}
.btn_docs.sp .movie-banner-btn:first-of-type {
  margin-bottom: 10px;
}
.btn_docs.sp .movie-title {
  font-size: 15px;
  margin-bottom: 5px;
}
.btn_docs.sp .movie-sub {
  font-size: 14px;
}

/* スマホ表示用レスポンシブ（956px以下）の追加調整 */
@media screen and (max-width: 956px) {
  /* PC用メインビジュアル画像をスマホでは非表示 */
  .mv-bg-img,
  .mv-title-img {
    display: none !important;
  }

  /* ナビゲーション以下のテキストを中央揃え */
  #totop, 
  #sns, 
  #header_contact, 
  #btn_out {
    text-align: center !important;
    justify-content: center !important; /* Flexboxで配置されている場合を考慮 */
  }
  #btn_out img {
    margin: 0 auto;
  }
}

/* SP visual */
@media screen and (max-width: 956px) {
  #visual {
    height: auto;
    position: relative;
    text-align: center;
    background: none;
  }
  #visual .btn_docs {
    position: relative;
    bottom: auto;
    left: 0;
    top: 10px;
    padding-top: 1px;
    margin-left: 0;
    height: auto;
    width: 90%;
  }
  #visual .woman {
    position: relative;
    left: 0;
    bottom: auto;
    margin-left: 0;
  }
  #visual .woman a {
    border-top: 2px solid #fff;
    background: #f49ac1;
    display: block;
    width: 100%;
    height: 122px;
    overflow: hidden;
    text-indent: 0;
  }
}

/* NEWS */
#news {
  width: 100%;
  padding: 40px 0 0;
  background: #e7f6fa;
  /* background: url(../images/bg_features_tp.png) bottom center no-repeat, #f6f6f6 url(../images/bg_news.gif) top center no-repeat; */
}

#news .wrapper {
  overflow: hidden;
}

#news .wrapper h2 {
  margin: 0;
  margin-bottom: 40px;
}

#news .wrapper dl {
  display: block;
  /* overflow: auto; */
  position: relative;
  padding-left: 20px;
  margin-left: 110px;
  box-sizing: border-box;
}

#news .wrapper dl dt {
  display: block;
  float: left;
  margin-bottom: 10px;
  padding-top: 5px;
  color: #2a6fa1;
  font-weight: bold;
}

#news .wrapper dl dd {
  padding-top: 5px;
  margin-bottom: 10px;
  margin-left: 80px;
}

#news .wrapper dl dd a {
  color: #333;
  text-decoration: none;
}

#news .wrapper dl dd a:hover {
  text-decoration: underline;
}

#news .wrapper dl span img {
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: 2px;
}

#news .wrapper ul{
  width: 70%;
  margin: auto;
}
#news .wrapper li{
  background-color: #fff;
  height: 30px;
  padding-top: 10px;
}
#news .wrapper li:nth-child(even){
  background-color: #f1fafc;
}
#news .wrapper li span.date{
  color: #029ed1;
  display: inline-block;
  margin: 0 10px;
}
#news .wrapper li span.date{
  color: #029ed1;
  display: inline-block;
  margin-right: 10px;
}
#news .wrapper li span.new_icn{
  color: #fff;
  background-color: #029ed1;
  display: inline-block;
  margin-right: 1em;
  padding: 10px 10px 8px;
  margin-top: -10px;
}
/* SP news */
@media screen and (max-width: 956px) {
  #news {
    padding: 20px 0 50px 0;
    background-color: #e7f6fa;
    background-image: none;
  }
  #news .wrapper h2 {
    float: none;
    text-align: left;
    margin:  10px 0 50px 0;
  }
  #news .wrapper dl {
    border-top: 4px solid #ebebeb;
    border-left: none;
    height: 260px;
    padding-left: 0;
    margin-left: 0;
    padding-top: 20px;
  }
  #news .wrapper dl dt {
    float: none;
    margin-bottom: 5px;
    padding: 0;
    color: #2a6fa1;
    font-weight: bold;
  }
  #news .wrapper dl dd {
    padding-bottom: 20px;
    margin-bottom: 20px;
    margin-left: 0;
    padding-top: 0;
    border-bottom: 2px solid #ebebeb;
  }
  #news .wrapper dl dd:last-of-type {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

/* about */
#about_top{
  width: 100%;
  /*background: url(../images/bg_about_top.png) bottom center no-repeat;
  min-height: 118px;*/
  margin: 0;
}
#about{
  width: 100%;
  min-height: 820px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg_about2026.jpg) top center no-repeat;
    background-size: cover;
    opacity: 0.65; 
    z-index: -1;
}
#about .wrapper{
  padding-top: 30px;
}

#run_walk{
  background: url(../images/bg_run2026.png) bottom center no-repeat;
  min-height: 947px;
}
#run_walk .wrapper{
  margin-top: -80px;
}
#merry{
  background: url(../images/bg_merry2026.png) bottom center no-repeat;
  min-height: 957px;
  margin-top: -19px;
}
#merry .wrapper{
  margin-top: -80px;
}
.wh_bord{
  border: 1px solid #fff;
  padding: 10px;
  background: rgba(255, 255, 255, 0);
  width: 670px;
  margin: auto;
  z-index: 2;
  position: relative;
}
div.wh_bord::after{
  content: "";
  width: 670px;
  background-color: #fff;
  position: absolute;
  top: 10;
  left: 10;
  z-index: 1;
}
.wh_box{
  width: 640px;
  margin: auto;
  padding: 20px 15px;
  background-color: rgba(255, 255, 255, 0.92);
  z-index: 3;
}
.wh_box p{
  font-size: 18px;
  line-height: 34px;
  padding: 0 50px;
}
.intro_box{
  color: #fff;
  margin: auto;
  padding-top: 100px;
}
.intro_box p{
  color: #fff;
  margin: 20px auto;
  text-align: center;
  text-shadow: 1px 1px 3px #000;
}
.attention{
  color: #ff0000;
  margin: 20px auto;
  text-align: center;
	font-size: 18px;
}

/* FEATURES */
#features {
  margin-top: -20px;
  min-height: 1608px;
}

#features .wrapper {
  box-sizing: border-box;
  overflow: hidden;
  padding: 150px 0 0;
}

#features .wrapper > ul {
  margin-bottom: 40px;
}

#features .wrapper > ul:after {
  content: '';
  display: block;
  clear: both;
}

#features .wrapper > ul li {
  display: block;
  float: left;
  width: 280px;
  height: 270px;
  margin-right: 20px;
  margin-left: 20px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding-top: 205px;
  font-size: 16px;
  color: #fff;
  text-decoration: underline;
}

#features .wrapper > ul li strong {
  font-size: 0;
  color: #fff;
  line-height: 1;
  display: block;
}

#features .wrapper > ul li:last-of-type {
  margin-right: 0;
}

#features .wrapper > ul li:nth-of-type(1) {
  background: #FFF url(../../honolulu2018/images/bg_point_02.png) center no-repeat;
  background-size: 280px 270px;
}

#features .wrapper > ul li:nth-of-type(2) {
  background: #FFF url(../../honolulu2018/images/bg_point_01.png) center no-repeat;
  background-size: 280px 270px;
}

#features .wrapper > ul li:nth-of-type(3) {
  background: #FFF url(../../honolulu2018/images/bg_point_03.png) center no-repeat;
  background-size: 280px 270px;
}

#features .special-bg {
  background: url(../images/bg_support2025.png) top center no-repeat;
  background-size: cover;
  width: 100%;
  padding: 60px 0; /* 上下に余白を追加 */
}

#features .special {
  background-color: rgba(255, 255, 255, 0.75); /* 中身の背景はうっすら白に */
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-sizing: border-box;
  padding: 30px 20px;
  margin: 0 auto;
  max-width: 920px; /* 画面が狭い場合にも対応 */
  width: 100%;
}


#features .special dl {
  width: 100%;
  background: #f0f0f0;
}

#features .special dl:after {
  content: '';
  display: block;
  clear: both;
}

#features .special dl dt {
  display: block;
  float: left;
  width: 50%;
  position: relative;
}

#features .special dl dt:after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 40px;
  margin-top: -20px;
  background: url(../../honolulu2018/images/pointer_left.png) center no-repeat;
}

#features .special dl dd {
  display: block;
  float: left;
  width: 50%;
  background: #f0f0f0;
  box-sizing: border-box;
  padding: 25px;
  padding-bottom: 0;
  font-size: 1.3rem;
  position: relative;
  max-height: 235px;
}

#features .special dl dd span {
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
}

#features .special dl dd h4 {
  margin-bottom: 20px;
  font-size: 1.7rem;
}

#features .special dl dd ul li {
  background: url("../common/images/bullet.png") 0 6px no-repeat;
  background-size: 8px 8px;
  padding-left: 20px;
  margin-bottom: 5px;
  text-align: left;
}

#features .special dl dd p:last-of-type {
  text-align: right;
  margin-top: 30px;
}

#features .special dl dd a {
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  text-decoration: none;
}

#features .special dl dd a.pdf {
  background: url("../common/images/link_pdf.png") 0 2px no-repeat;
  background-size: 13px 16px;
  padding-left: 20px;
}

#features .special dl dd a.link {
  background: url("../common/images/arrow_link.png") 100% 4px no-repeat;
  padding-right: 20px;
}

#features .special dl dd a:hover {
  text-decoration: underline;
}

#features .special dl:nth-of-type(2) dt {
  float: right;
}

#features .special dl:nth-of-type(2) dt:after {
  left: 0;
  right: inherit;
  background: url(../../honolulu2018/images/pointer_right.png) center no-repeat;
}

#features .special dl:nth-of-type(2) dd p:last-of-type {
  margin-top: 0px;
}

#features .special dl:nth-of-type(2) h4 {
  margin-bottom: 10px;
}

/* SP features */
@media screen and (max-width: 956px) {
  #features {
    background: #FFF;
  }
  #features .wrapper {
    box-sizing: border-box;
    height: auto;
    overflow: inherit;
    padding: 30px 0 1px 0;
  }
  #features .wrapper > ul {
    background: #FFF;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #features .wrapper > ul:after {
    content: '';
    display: block;
    clear: both;
  }
  #features .wrapper > ul li {
    float: none;
    width: 90%;
    margin: 5px auto 25px auto;
    box-sizing: border-box;
    padding-top: 185px;
    box-shadow: none; /* 下部にあった設定をここに統合 */
  }
  #features .wrapper > ul li:last-of-type {
    margin-right: auto;
  }
  #features .wrapper > ul li:nth-of-type(1) {
    background-size: contain;
  }
  #features .wrapper > ul li:nth-of-type(2) {
    background-size: contain;
  }
  #features .wrapper > ul li:nth-of-type(3) {
    background-size: contain;
  }
  #features .special-bg {
    background: #FFF url(../images/bg_support.png) top center no-repeat;
    background-size: cover;
    width: 100%;
    padding: 30px 0; /* SP版の上下余白 */
  }
  #features .special {
    background: rgba(255, 255, 255, 0.85); /* SPは少し白を濃く */
    border: none;
    padding: 20px 20px 10px 20px;
    width: 100%;
    box-sizing: border-box;
  }
  #features .special dl {
    width: 100%;
    background: none;
    margin-bottom: 20px;
  }
  #features .special dl dt {
    float: none;
    width: 100%;
    position: relative;
  }
  #features .special dl dt:after {
    display: block;
    content: '';
    position: absolute;
    top: inherit;
    right: inherit;
    left: 50%;
    bottom: 0;
    width: 35px;
    height: 18px;
    margin-top: 0;
    margin-left: -17px;
    background: url(../../honolulu2018/images/pointer_top_sp.png) center no-repeat;
    background-size: 35px 18px;
  }
  #features .special dl dd {
    display: block;
    float: none;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 20px;
    font-size: 1.3rem;
    position: relative;
    max-height: inherit;
  }
  #features .special dl dd span {
    display: block;
    position: absolute;
    top: -30px;
    right: -10px;
  }
  #features .special dl dd h4 {
    margin-bottom: 15px;
  }
  #features .special dl dd p:last-of-type {
    text-align: left;
    margin-top: 15px;
  }
  #features .special dl:nth-of-type(2) dt {
    float: none;
  }
  #features .special dl:nth-of-type(2) dt:after {
    top: inherit;
    right: inherit;
    left: 50%;
    bottom: 0;
    width: 35px;
    height: 18px;
    margin-top: 0;
    margin-left: -17px;
    background: url(../../honolulu2018/images/pointer_top_sp.png) center no-repeat;
    background-size: 35px 18px;
  }
  #features .special dl:nth-of-type(2) dd p:last-of-type {
    margin-top: 0px;
  }
  #features .special dl:nth-of-type(2) h4 {
    margin-bottom: 15px;
  }
}

/* LEAHI */
#leahi {
  padding: 80px 0;
  text-align: center;
	background-color: #e7f6fa;
}

/* SP LEAHI */
@media screen and (max-width: 956px) {
  #leahi {
    box-sizing: border-box;
    padding: 80px 0 0;
    width: 100%;
  }
  #leahi img {
    max-width: 560px;
  }
}


/* FLOW */
#flow {
  padding: 80px 0;
  text-align: center;
}

/* SP flow */
@media screen and (max-width: 956px) {
  #flow {
    box-sizing: border-box;
    padding: 80px 20px;
    width: 100%;
  }
  #flow img {
    max-width: 560px;
  }
}

/* PLANS */
#plans {
  background: #e7f6fa;
  padding: 60px 0 40px 0;
}

#plans h2 {
  margin-bottom: 0;
}

#plans p a.btn {
  display: block;
  text-align: center;
}

#plans .slideshow {
  margin: 0 auto;
}

#plans .slideshow div {
  box-sizing: border-box;
  padding: 12px 0;
}

#plans .slideshow div dl {
  background: #FFF;
  width: 225px;
  height: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
}

#plans .slideshow div dl a {
  text-decoration: none;
}

#plans .slideshow div dl a:hover {
  text-decoration: underline;
}

#plans .slideshow div dl dd {
  padding: 10px 15px;
  font-size: 1.3rem;
}

#plans .slideshow div dl dd p {
  margin: 0;
  line-height: 1.5;
}

#plans .slideshow div dl dd strong {
  color: #e85252;
}

#plans ul dd {
  background-color: #fff;
}

/* SP plans */
@media screen and (max-width: 956px) {
  .slideshow {
    width: 250px;
    margin-bottom: 15px;
  }
  .slideshow div {
    padding: 5px 0;
  }
  .slideshow div dl {
    background: #FFF;
    width: 225px;
    height: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 0 12px;
  }
  .slideshow div dl dd {
    padding: 10px 15px;
    font-size: 1.3rem;
  }
  .slideshow div dl dd p {
    margin: 0;
    line-height: 1.5;
  }
  .slideshow div dl dd strong {
    color: #e85252;
  }
}

/* Resources & Sponsors */
#resources {
  margin: 0 auto;
  padding: 60px 0 40px 0;
  background: #fff;
}

#resources ul {
  width: auto;
  display: table;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

#resources ul li {
  width: 225px;
  margin: 0 20px 20px 0;
  display: block;
  float: left;
}

#resources ul li:nth-of-type(4n) {
  margin-right: 0;
}

#sponsors {
  margin: 0 auto;
  text-align: center;
  background: #e7f6fa;
  overflow: hidden;
  margin-top: 20px;
}
#sponsors h2{
  margin-top: 60px;
}
#sponsors ul {
  width: auto;
  display: table;
  margin: 0 auto 60px;
  padding: 0;
  overflow: hidden;
}

#sponsors ul li {
  width: 460px;
  margin: 0 30px 20px 0;
  display: block;
  float: left;
}

#sponsors ul li:nth-of-type(2n) {
  margin-right: 0;
}

#supporters {
  margin: 0 auto;
  padding: 60px 0 60px 0;
  text-align: center;
}

#supporters ul {
  width: auto;
  display:table;
	margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

#supporters ul li {
  width: 300px;
  margin: 0 30px 20px 0;
  padding: 1px 0;
  display: block;
  float: left;
}

#supporters ul li:nth-of-type(3n) {
  margin-right: 0;
}

#supporters ul li:nth-of-type(4) {
  margin-left: 160px;
}

#supporters ul li img {
  border: 1px solid #e1e1e1;
}

/* SP resources & sponsors */
@media screen and (max-width: 956px) {
  #resources {
    padding: 50px 0 20px;
  }
  #resources ul {
    width: 100%;
  }
  #resources ul li {
    width: 44%;
    margin: 0 3% 20px 3%;
  }
  #resources ul li:nth-of-type(2n) {
    margin-right: 0;
  }
  #sponsors {
    margin: 0 auto;
    padding: 10px 0 0 0;
  }
  #sponsors ul {
    box-sizing: border-box;
    width: 100%;
    padding: 0 40px;
  }
  #sponsors ul li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #supporters {
    margin: 0 auto;
    padding: 20px 0 30px 0;
    text-align: center;
  }
  #supporters ul {
    box-sizing: border-box;
    width: 100%;
    padding: 0 20px;
  }
  #supporters ul li {
    width: 44%;
    margin: 0 3% 10px 3%;
  }
  #supporters ul li:nth-of-type(4) {
    margin-left: 3%;
  }
  #supporters ul li:nth-of-type(3n) {
    margin-right: 3%;
  }
  #supporters ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 956px){
  .btn_docs p{
    margin-left: 10px;
  }
/* sp_news */
  #news .wrapper ul{
    width: 100%;
  }
  #news .wrapper ul li{
    padding: 10px;
    margin: 0 -20px;    
    line-height: 30px;
    height: auto;
    text-align: left;
  }
  #news .wrapper li span.new_icn{
    padding: 0 10px;
  }
  /* sp_about */
  #about_top{
    display: none;
  }
  #about{
    padding: 0 0 60px;
    /* background-image: url(../images/bg_about_sp2025.png); */
    min-height: 880px;
  }
  #about::before {
    display: none;
  }
  .wh_bord{
    width: auto;
  }
  .wh_box{
    width: auto;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .wh_box p{
    font-size: 16px;
    line-height: 28px;
    padding: 0 10px;
  }
  #run_walk{
    background-image: url(../images/bg_run_sp2026.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 70% top;
    min-height: 945px;
    margin-top: -60px;
    background-size: cover;
  }
  #merry{
    background: url(../images/bg_merry_sp2026.png) top center no-repeat;
    min-height: 957px;
    margin-top: -90px;
  }
  
  .intro_box p{
    font-size: 19px;
  }

  #features .wrapper > ul li{
    box-shadow: none;
    padding-top: 205px;
  }
}
#flow, #resources, #supporters{
  background-color: #fafdfe;
}
a.supp_link{
  color: #fff;
}

/* copy18 */
#about, #run_walk, #merry{
  position: relative;
}
.copy18{
  position: absolute;
  bottom: 5px;
  left: 5px;
}
.copy18__{
  position: absolute;
  bottom: -40px;
  left: 5px;
  z-index: 1;
}


#hotels section .htl_point {
  display: inline-block;
  background: #029ed1;
  color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
  padding: 7px;
  width: auto;
  margin-right: 10px;  
  margin-bottom: 10px;
}


#hotels section p.w550 span {
    color: #333;
    background: #ffff00;
    display: inline;
	font-weight: bold;
}


@media screen and (max-width: 956px) {
  #hotels section .htl_point {
    display: block;
    float: none;
    margin-right: 0;
    margin-bottom: 5px;
  }
  #hotels section h4 .htl_point br {
    display: none;
  }
}

.gallery {
    padding: 60px 0 0
}
@media screen and (max-width: 956px) {
}

#movie {
    margin-top: 20px;
    text-align: center;
}
#movie .ytube {
    width: 560px;
    height: 340px;
}
@media screen and (max-width: 956px) {
  #movie {
	margin-top: 0;
    text-align: center;
}
  #movie .ytube {
    width: 90%;
    height: 240px;
}
}

/* ==============================================================
   Guest Info Banner (田中希実選手バナーのデザイン)
   ============================================================== */
#guest-info {
  margin: 40px auto 20px;
  text-align: center;
}

#guest-info .wrapper {
  max-width: 807px; /* 元の画像の幅に合わせています */
  margin: 0 auto;
}

.guest-banner {
  display: flex; /* 横並びにする指定 */
  flex-direction: row;
  align-items: stretch;
  border: 4px solid #029ed1; /* サイト全体の水色に合わせています */
  background-color: #fff;
  text-decoration: none;
  color: #333;
  text-align: left;
}

.guest-img {
  width: 45%; /* 画像領域の割合 */
  display: flex;
}

.guest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 比率を維持したまま枠を埋めます */
  display: block;
}

.guest-txt {
  width: 55%; /* テキスト領域の割合 */
  padding: 30px 20px 30px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guest-txt h3 {
  color: #029ed1;
  font-size: 26px;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: bold;
}

.guest-txt dl {
  margin: 0;
}

.guest-txt dt {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

.guest-txt dd {
  margin-left: 0;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.guest-txt dd:last-child {
  margin-bottom: 0;
}

.guest-btn {
  text-align: right;
  margin-top: 15px;
}

.guest-btn a {
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  text-decoration: none;
  color: #029ed1;
  background: url("../common/images/arrow_link.png") 100% 4px no-repeat;
  padding-right: 20px;
}

.guest-btn a:hover {
  text-decoration: underline;
}

.guest-img a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.guest-img a:hover {
  opacity: 0.8;
}

/* スマホ表示用のレスポンシブデザイン（956px以下） */
@media screen and (max-width: 956px) {
  #guest-info .wrapper {
    margin: 0 auto;
  }
  .guest-banner {
    flex-direction: column; /* 縦並びに変更 */
    border-width: 3px; /* 枠線を少し細く */
  }
  .guest-img {
    width: 100%;
  }
  .guest-img img{
    width: 100%;
    height: 200px;
    object-position: top;
  }
  .guest-txt {
    width: 100%;
    padding: 25px 20px;
  }
  .guest-txt h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .guest-txt dt {
    font-size: 15px;
  }
  .guest-txt dd {
    font-size: 15px;
  }
}

/* ==============================================================
   透明度のあるタイトルボックス（10Kラン＆ウォークなど）
   ============================================================== */
.transparent-title-box {
  max-width: 480px;
  margin: 50px auto 30px;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.85); /* 透明度のある白背景 */
  position: relative;
  box-sizing: border-box;
}

/* 内側の白い枠線 */
.transparent-title-box::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 2px solid #fff;
  pointer-events: none;
}

/* 見出しのスタイル */
.intro_box .transparent-title-box h2 {
  font-size: 34px;
  color: #029ed1;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 0px #ffea00; /* 黄色の影 */
  margin: 0 0 15px 0;
  padding: 0;
}

/* 日時のスタイル */
.intro_box .transparent-title-box p.start-time {
  font-size: 16px;
  color: #029ed1;
  text-align: center;
  margin: 0;
  text-shadow: none; /* intro_box内の既存の黒い影設定を打ち消し */
  font-weight: normal;
}

/* スマホ表示用のレスポンシブデザイン（956px以下） */
@media screen and (max-width: 956px) {
  .transparent-title-box {
    padding: 30px 15px;
    width: 90%;
  }
  .intro_box .transparent-title-box h2 {
    font-size: 26px;
  }
  .intro_box .transparent-title-box p.start-time {
    font-size: 14px;
  }
}
/* ==============================================================
   HISホスピタリティスペース バナー（HTML化）
   ============================================================== */
/* 最背面の風景画像の設定（用意した画像のパスに変更してください） */
.hospitality-bg {
  position: relative;
  background: url('../images/bg_leahi_hawaii.jpg') center/cover no-repeat;
  padding: 60px 20px;
  box-sizing: border-box;
  overflow: hidden; /* 横スクロール防止 */
}

.hospitality-banner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.hb-content {
  background-color: rgba(255, 255, 255, 0.9); /* 少し透明な白背景 */
  border: 4px solid #b3e5fc; /* 水色の枠線 */
  padding: 50px 30px 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  position: relative; /* バッジ配置の基準に変更 */
}

.hb-content img {
  width: 100%;
}

.hb-ill-diamondhead {
  margin: 30px 0;
}

/* 左右の吹き出し */
.hb-badge {
  position: absolute;
  top: 90px; /* タイトルの下付近に変更 */
  width: 110px;
  height: 110px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #029ed1;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 2;
  text-align: center;
}
.hb-badge::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 12px 0 12px;
  border-color: #fff transparent transparent transparent;
}

/* 左の吹き出しの三角形を少し右に傾ける */
.left-badge::after {
  transform: translateX(-50%) rotate(-15deg);
  transform-origin: top center;
}

/* 右の吹き出しの三角形を少し左に傾ける */
.right-badge::after {
  transform: translateX(-50%) rotate(15deg);
  transform-origin: top center;
}

/* 枠線の左右に半分はみ出すように設定 */
.left-badge { left: -55px; }
.right-badge { right: -55px; }

/* テキストや見出しのスタイル */
.hb-catch {
  color: #029ed1;
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.hb-title {
  font-size: 42px;
  color: #029ed1;
  margin: 0 0 20px;
  font-weight: normal;
  text-shadow: 2px 2px 0px #ffea00; /* 黄色の影 */
  letter-spacing: 0.05em;
}


.hb-ill-diamondhead img {
  max-width: 250px;
}

.hb-subtitle {
  color: #029ed1;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.5;
}
.hb-subtitle .highlight {
  font-size: 30px;
  display: inline-block;
  margin-top: 10px;
}

.hb-lead {
  font-size: 15px;
  line-height: 24px;
  color: #444;
  margin-bottom: 40px;
}

/* サービス内容の白いボックス */
.hb-service-box {
  background: #fff;
  margin: 0 auto 30px;
  max-width: 600px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.hb-service-ttl {
  background-color: #029ed1;
  color: #fff;
  padding: 15px 0;
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: normal;
  position: relative;
}

/* 見出しの下の逆三角形を追加 */
.hb-service-ttl::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 15px 15px 0 15px;
  border-style: solid;
  border-color: #029ed1 transparent transparent transparent;
  z-index: 2;
}

.hb-service-list-wrap {
  position: relative;
  padding: 30px 40px;
}

.hb-service-list {
  text-align: left;
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hb-service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  font-size: 15px;
  color: #333;
  font-weight: bold;
}
.hb-service-list li:last-child {
  margin-bottom: 0;
}
/* 青い四角のリストマーク */
.hb-service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: #029ed1;
}

.note-mark {
  font-size: 12px;
  color: #666;
  font-weight: normal;
  margin-left: 5px;
}

/* イラストの配置（はみ出すように調整） */
.ill-beer {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  z-index: 5;
}
.ill-cocktail {
  position: absolute;
  right: -40px;
  bottom: -10px;
  width: 70px;
  z-index: 5;
}
.ill-beer img, .ill-cocktail img {
  width: 100%;
  height: auto;
}

/* 下部注釈テキスト */
.hb-notes {
  text-align: left;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
/* 2行目以降のインデントを揃える */
.hb-notes p {
  margin: 0 0 10px;
  padding-left: 3em;
  text-indent: -3em;
}

/* スマホ表示用レスポンシブ（956px以下） */
@media screen and (max-width: 956px) {
  .hospitality-bg {
    padding: 40px 15px;
  }
  .hb-content {
    padding: 50px 15px 30px;
  }
  .hb-badge {
    width: 75px;
    height: 75px;
    font-size: 11px;
    top: 75px;
  }
  
  /* スマホ時は画面端にはみ出さないよう控えめに調整 */
  .left-badge { left: -10px; }
  .right-badge { right: -10px; }
  
  .hb-catch { font-size: 13px; }
  .hb-title { font-size: 26px; }
  .hb-subtitle { font-size: 16px; }
  .hb-subtitle .highlight { font-size: 22px; }
  .hb-lead { font-size: 13px; }
  
  .hb-service-list-wrap {
    padding: 20px 15px;
  }
  .hb-service-list li {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  /* スマホ表示でもイラストが枠からはみ出すように変更 */
  .ill-beer {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
  }
  .ill-cocktail {
    position: absolute;
    right: -20px;
    bottom: -10px;
    width: 55px;
  }

  .hb-service-list {
    display: block;
    margin-bottom: 15px;
  }
  .hb-notes p {
    padding-left: 2.5em;
    text-indent: -2.5em;
    font-size: 12px;
  }
}


/* ==============================================================
   Movie Banner (動画視聴申込バナー)
   ============================================================== */
#movie-banner-section {
  text-align: center;
  margin: 30px auto;
}

.movie-banner-btn {
  display: block;
  max-width: 807px; /* 元画像の幅 */
  margin: 0 auto;
  background-color: #029ed1; /* サイトのテーマカラー */
  box-shadow: 8px 8px 0px #ffea00; /* 右下にずらしたくっきりとした影を追加 */
  text-decoration: none;
  position: relative;
  box-sizing: border-box;
  padding: 5px; /* 外側の水色部分と内側の白線の間隔 */
  transition: opacity 0.3s ease;
}

.movie-banner-btn:hover {
  opacity: 0.8;
  text-decoration: none !important; /* ロールオーバー時の下線を強制的に消す */
}

.movie-banner-inner {
  border: 1px solid #fff; /* 内側の細い白枠 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px; /* テキストを広く見せるため左右の余白を少し狭める */
  box-sizing: border-box;
  min-height: 130px;
}

/* 左側の黄色の丸 */
.movie-badge {
  background-color: #ffea00;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.movie-badge span {
  color: #000;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}

/* 中央のテキストエリア */
.movie-text {
  flex-grow: 1;
  color: #fff;
  text-align: center;
  padding: 0 10px; /* 余白を減らして横幅いっぱいに近づける */
}

.movie-title {
  font-size: 26px; /* フォントサイズを大きく調整 */
  font-weight: bold;
  margin: 0 0 10px 0;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.movie-sub {
  font-size: 25px; /* フォントサイズを大きく調整 */
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.05em;
}

.movie-sub .text-yellow {
  color: #ffea00; /* 「コチラ」の部分を黄色に */
}

/* 右側の矢印アイコン（CSSで描画） */
.movie-arrow {
  width: 40px;
  height: 30px;
  position: relative;
  flex-shrink: 0;
}

.movie-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: translateY(-50%);
}

.movie-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* スマホ表示用レスポンシブ（956px以下） */
@media screen and (max-width: 956px) {
  .movie-banner-btn {
    box-shadow: 4px 4px 0px #ffea00; /* スマホ用に影のサイズを少し小さく調整 */
    padding: 3px;
  }
  .movie-banner-inner {
    padding: 15px 10px;
    min-height: auto;
  }
  .movie-badge {
    display: none; /* スマホ表示では非表示にする */
  }
  .movie-text {
    padding: 0 5px;
  }
  .movie-title {
    font-size: 16px; /* スマホ版も少し大きく */
    margin-bottom: 5px;
  }
  .movie-sub {
    font-size: 12px; /* 横幅いっぱいに収まるよう文字サイズを小さめに調整 */
  }
  .movie-arrow {
    width: 20px;
  }
  .movie-arrow::after {
    width: 8px;
    height: 8px;
  }
}/* ==============================================================
   ツアーボタン右側の矢印追加
   ============================================================== */
.tour_btn a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 矢印のベース設定*/
.tour-arrow {
  width: 25px; /* 矢印全体の幅 */
  height: 20px;
  position: relative;
  margin-left: 20px;
  flex-shrink: 0;
}

/* 矢印の横棒 */
.tour-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%);
}

/* 矢印の斜め線（三角部分） */
.tour-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* スマホ表示用レスポンシブ（956px以下） */
@media screen and (max-width: 956px) {
  .tour-arrow {
    width: 20px;
    margin-left: 8px;
  }
}