html, body {
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

body {
    margin:0px;
	padding:0px;
	background-color: #fff;
	color:#000;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
}

.up_content {
    margin-top: 600px; /* MVと同じ高さ */
    background: #fff;
}

p{
    font-size: 20px;
    line-height: 2.3em;
}


img{
    width: 100%;
}

h1{
    font-size: 20px;
    font-weight: 600;
    margin: 0px auto 25px;
    max-width: 1130px;
    padding: 0 5px;
}

h2{
    text-align: center;
    font-size: 30px;
    margin: 39px auto 32px;
    font-weight: 600;
}

img {
  user-select: none;     /* 選択不可 */
  -webkit-user-drag: none; /* Safariなどでドラッグ不可 */
  pointer-events: none;  /* クリックも無効化 */
}

a img {
  pointer-events: auto;
}

.tap_img{
    pointer-events: auto;
}

.inner{
    max-width: 1100px;
    margin:auto;
}

.fontbold{
    font-weight: bold;
}


.sp_vis{
    display: none;
}

.pc_vis{
    display: block;
}

.link_touch{
    text-decoration: underline!important;
}

.position_base{
    position: relative;
}

.position_in{
    position: absolute;
}



/*** 固定 ***/
.fixed_menu {
    position: fixed;
    bottom: 0;               /* 上に固定したい場合はこれでOK。中央に上下もしたいなら変更可 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 100vw;
    max-width: 1200px;

}

.fixed_menu {
    height: 100vh;
    transition: height 0.4s ease;
    pointer-events: auto;
}

/* スクロール後：隙間ゼロ */
.fixed_menu.full .logo {
    top: -125px;
}


.logo{
    position: absolute;
    margin-top: 208px;
    left: 0;
    width: 135px;
}

.next{
    position: absolute;
    right: 0;
    width: 239px;
    bottom: 137px;
}

.fixed_menu {
  pointer-events: none; /* ← 背景として無効化 */
}

/* 中のボタンはタップOKにする */
.fixed_menu a,
.fixed_menu img {
  pointer-events: auto;
}


.lang-switch {
    position: absolute;
    right: 12px;
    margin-top: 192px;
}

/* ドロップダウン全体 */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

/* ボタン */
.lang-btn {
    background: linear-gradient(to bottom, #03412A, #0A7C67);
    color: #fff;
    padding: 6px 14px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* メニュー */
.lang-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    list-style: none;
    padding: 6px 0;
    margin: 0;
    border-radius: 6px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
    display: none; /* 最初は非表示 */
}

.lang-menu li a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}
.lang-menu li a:hover {
    background: #eee;
}

/* fixed_menu.full の時の位置調整 */
.fixed_menu.full .lang-switch {
    top: -87px;
}

.fixed_menu .lang-switch,
.fixed_menu .lang-switch * {
    pointer-events: auto;
}




/*** mv ***/
.mv{
    width: 100%;
    position: relative;
    overflow: hidden;
    max-width: 1980px;
    margin: auto;
}

.mv {
  position: fixed;
  top: 219px;
  left: 0;
  width: 100%;
  z-index: -1;   /* 下に配置して重ねられるように */
    margin: auto;
    text-align: center;
}

.mv_inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*** nav ***/

.nav {
	max-width: 1160px;
	margin: 80px auto 0;
	height: 130px;
	display: flex;
	align-items: center;
	position: relative;
	color: white;
	padding: 1rem;
	text-align: center;
	transition: bottom 0.3s ease, top 0.3s ease;
}

/* ul */
.nav ul {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	margin: 11px;
	gap: 10px;
	height: 90px;
	align-items: center;
	width: 1160px;
}

/* li */
.nav li {
	position: relative;
	margin: 0;
	height: 90px;
	flex: 1;
	background: linear-gradient(to bottom, #03412A, #0A7C67);
	border-radius: 10px;
	overflow: hidden;
}

/* a：中央ちょい上に固定 */
.nav a {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* ← 常に中央揃え（1行でも2行でもOK） */
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    height: 90px;
    line-height: 1.5em;
    position: relative;
    padding-top: 0;            /* ← 中央揃えにするので不要 */
}

/* fixed状態でもずれないように同じ指定 */
.nav.fixed a,
.nav.stop a {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* ← 中央揃え */
    align-items: center;
    padding-top: 0;
}


/* アイコン位置 */
.icon-wrap {
	width: 20px;
	height: auto;
	overflow: hidden;
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
}

/* アイコン画像 */
.nav a img {
	width: 100%;
	height: auto;
	display: block;
}

/* hover */
.nav a:hover {
	opacity: 0.6;
}

/* fixed */
.nav.fixed {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
}

/* stop（フッター手前で止まる） */
.nav.stop {
	position: absolute;
}

/* placeholder */
.nav-placeholder {
	display: none;
}

/*** news ***/
.news{
    position: relative;
    max-width: 814px;
    margin: auto;
}

.news .shape_first{
    top: 30px;
    left: -50px;
}

.news .shape_second{
    bottom: -66px;
    right: -195px;
}

.news_in {
	margin-top:70px;
    height: 290px;
    position: relative;
}

.news_box{
    overflow-y: scroll;
    direction: rtl;
    height: 116px;/*スクロールの高さ*/
    scrollbar-color: #999 transparent;
    scrollbar-width: thin;
    border-top: solid 3px #158E7E;
    border-bottom: solid 3px #158E7E;
    padding: 36px 0 24px;
    padding: 25px;
}

.news_box::-webkit-scrollbar {
    width: 5px; /* 横スクロールの場合は height に変更 */
}

.news_box::-webkit-scrollbar-track {
    background: transparent; /* トラック部分（背景） */
    border-radius: 4px;
}

.news_box::-webkit-scrollbar-thumb {
    background-color: #999; /* 緑のスクロールバー */
    border-radius: 4px;
}


.news_box dl{
    display: flex;
    flex-wrap: wrap;
    direction: ltr;
    margin-bottom: 12px;
    align-items: center;
    justify-content: space-between;
    
}

.news_box .second{
    align-items: flex-start;
}

.news_box dt{
    width: 15%;
    font-weight: 600;
    font-size: 27px;
    color: #158E7E;
}

.news_box dd{
    width:70%;
    margin-inline-start: 0;
    padding-left:40px;
    font-size: 22px;
}

.news_box .second dt{
    margin-top: -3px;
}

/*** about ***/

.about{
    padding: 109px 0 ;
    background: linear-gradient(to bottom, #03412A, #0A7C67);
    margin: 282px 0 298px;
}

.about h2{
    font-size: 60px;
    font-weight: 600;
    text-align: left;
    color: #fff;
}

.about p{
    color: #fff;
}

.about .position_in{
    width: 487px;
    bottom: -251px;
    right: 38px;
}


/*** point ***/

.point{
    margin-top: 300px;
}

.point_title{
    max-width: 1100px;
    margin: auto;
}

.point_img{
    border-bottom: solid 3px #000;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.point_img img{
    width: 700px;
    margin:  10px auto;
}


/*** using ***/

.using{
    background: #E9F7F5;
    padding: 170px 0 311px;
}

.using_inner{
    max-width: 800px;
    margin: auto;
}

h3{
    font-size: 25px;
    color: #158E7E;
    text-align: left;
    margin-bottom: 97px;
}


/*** using ***/

.using{
    margin: 136px 0 223px;
}

.using_inner{
    max-width: 800px;
    margin: auto;
}



/*** contact ***/

.contact{
    margin: 223px auto 0px;
    padding-bottom: 213px;
}

.contact{
    line-height: 1.7em;
    text-align: center;
}

#JTBGF-ly_footer.JTBGF-ly_footer {
    margin-top: 0px !important;
    padding-top: 100px;
}



/***             ***/
/***   Okinawa   ***/
/***             ***/

/*** nav ***/

.okinawa .nav {
	max-width: 1160px;
	margin: 80px auto 0;
	height: 140px;
	align-items: center;
	position: relative;
	color: white;
	padding: 1rem;
	text-align: center;
	transition: bottom 0.3s ease, top 0.3s ease;
    display: block;
    
}

/* ul */
.okinawa .nav ul {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	margin-bottom: 10px;
	gap: 10px;
	height: 63px;
	align-items: center;
	width: 1160px;
    margin: 0;
}

/* li */
.okinawa .nav li {
	position: relative;
	margin: 0;
	height: 63px;
	flex: 1;
	background: linear-gradient(to bottom, #03412A, #0A7C67);
	border-radius: 10px;
	overflow: hidden;
}

/* a：中央ちょい上に固定 */
.okinawa .nav a {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* ← 常に中央揃え（1行でも2行でもOK） */
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    height: 63px;
    line-height: 1.5em;
    position: relative;
    padding-top: 0;            /* ← 中央揃えにするので不要 */
}

/* fixed状態でもずれないように同じ指定 */
.okinawa .nav.fixed a,
.okinawa .nav.stop a {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* ← 中央揃え */
    align-items: center;
    padding-top: 0;
}


/* アイコン位置 */
.okinawa .icon-wrap {
	width: 20px;
	height: auto;
	overflow: hidden;
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
}

/* アイコン画像 */
.okinawa .nav a img {
	width: 100%;
	height: auto;
	display: block;
}

/* hover */
.okinawa .nav a:hover {
	opacity: 0.6;
}

/* fixed */
.okinawa .nav.fixed {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
}

/* stop（フッター手前で止まる） */
.okinawa .nav.stop {
	position: absolute;
}

/* placeholder */
.okinawa .nav-placeholder {
	display: none;
}

.okinawa av .order{
    position: relative;
    margin: 0;
    height: 60px;
    flex: 1;
    background: linear-gradient(to bottom, #03412A, #0A7C67);
    overflow: hidden;
    width: 100%;
    border-radius: 9999px;
}

.okinawa nav .order .icon-wrap{
    top: 50%;
    left: 54%;
    transform: translateY(-50%);
    bottom: inherit;

}


.okinawa h3 {
    font-size: 25px;
    color: #158E7E;
    text-align: left;
    margin-bottom: 27px;
}

/*** about ***/

.okinawa .about{
    padding: 0px 0;
    background: #fff;
    margin: 114px 0 164px;
}

.okinawa .about h2{
    font-size: 60px;
    font-weight: 600;
    text-align: left;
    color: #fff;
}

.okinawa .about p{
    color: #fff;
}

.okinawa .about .position_in{
    width: 500px;
    top: 60px;
    right: 117px;
    bottom: inherit;
}


.okinawa nav .order{
    position: relative;
    margin: 0;
    height: 60px;
    flex: 1;
    background: linear-gradient(to bottom, #03412A, #0A7C67);
    overflow: hidden;
    width: 100%;
    border-radius: 9999px;
    margin-top: 10px;
}

nav .order .icon-wrap{
    top: 50%;
    left: 52%;
    transform: translateY(-50%);
    bottom: inherit;

}


/*** hotel ***/

.okinawa .tab_buttons {
    display: flex;
    gap: 28px;
    margin:32px auto 60px;
    justify-content: center;
}

.okinawa .tab_buttons button {
    width: 282px;
    background: #C3C3C3;
    cursor: pointer;
    border-radius: 9999px;
    transition: 0.3s;
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 9px 0 11px;
}

/* 選択中ボタン */
.okinawa .tab_buttons button.active {
    background: #009E90;
    color: #fff;
}

.okinawa .tab_image img {
    width: 100%;
}

.hotel_sub{
    width: 100%;
    text-align: center;
    border: solid 1.6px #009E90;
    color: #009E90;
    border-radius: 9999px;
    font-size: 23px;
}

.hotel_pdf{
    margin: 96px 0 224px;
}

.hotel_sub_sub{
    text-align: center;
}

.okinawa .tab_buttons a{
    width: 282px;
    background: #C3C3C3;
    cursor: pointer;
    border-radius: 9999px;
    transition: 0.3s;
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 9px 0 11px;
        text-align: center;
}

/* 選択中ボタン */
.okinawa .tab_buttons a:hover {
    background: #009E90;
    color: #fff;
    text-decoration: none;
}

.tab_content {
    display: none;
}

.tab_content.active {
    display: block;
}

.tab_content ul{
    
}

.tab_content li{
    font-size: 20px;
}

.tab_content .link_touch{
    color: #000;
}

.tab_content .link_touch:hover{
    color: #158E7E;
}

.tab_content .link_touch {
    position: relative;
    padding-right: 12px; /* 文字とかぶらないように余白 */
    text-decoration: none !important;
    pointer-events: none;
}

/*
.tab_content .link_touch::after {
    content: ">"; 
    color: #158E7E;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}
 */



/*** using ***/

.using {
	background: #E9F7F5;
    padding: 86px 0 95px;
}

.using h3{
    color: #000;
}


/*** question ***/

.question {
	position: relative;
    padding: 28px 0 60px;
}

.question_title {
	text-align: center;
    font-size: 35px;
    margin-bottom: 52px;
    color: #158E7E;
}

/* 左の棒 */
.question_title_sub::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px; 
    width: 8px;
    height: 30px;
    background: #2B7FF4;
    
}

.qa-list {
	text-align: left;
	margin-top: 50px;
}

@media screen and (max-width: 750px) {
	.qa-list {
		margin: 20px 0 0;
	}
}

.qa-list dl {
	position: relative;
	margin: 20px 0;
	cursor: pointer;
}

.qa-list dl:last-child {
	margin-bottom: 30px;
}

.qa dt::before,
.qa dt::after {
	content: "";
	position: absolute;
	background: #fff;
	right: 27px;
	top: 50%;
	width: 36px;
	height: 3px;
	transform: translateY(-50%);
	transition: 0.3s;
	z-index: 1;
}

.qa dt::after {
	transform: translateY(-50%) rotate(90deg);
	opacity: 1;
}

.open dt::after {
	transform: translateY(-50%) rotate(0deg);
}

@media screen and (max-width: 750px) {
	.qa dt::before,
	.qa dt::after {
		right: 17px;
		width: 12px;
		height: 2px;
	}
}

/* 質問（Q） */
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 8px 60px 8px 15px;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(to bottom, #03412A, #0A7C67);;
    letter-spacing: 0.2em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
}

.qa-list dl dt img {
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: auto;
	margin-right: 20px;
}

@media screen and (max-width: 750px) {
	.qa-list dl dt {
		padding: 9px 50px 9px 9px;
		font-size: 18px;
		letter-spacing: 0.05em;
	}

	.qa-list dl dt img {
		width: 30px;
	}
}

/* 回答（A） */
.qa-list dl dd {
	position: relative;
	display: none; /* JSで flex に切り替える */
	margin: 0;
	background: #fff;
    letter-spacing: 0.05em;
	color: #000;
	padding: 30px 26px 40px 15px;
	border-top: none;
	font-size: 18px;
    display: flex; /* JSで付与される想定 */
	align-items: flex-start;
	gap: 20px;
}

.qa-list dl dd img {
	flex-shrink: 0;
	width: 40px;
	height: auto;
}

.qa-list dl dd span {
	display: inline-block;
    margin-top: -5px;
}

.qa-list dl dd span strong{
	font-weight: bold;
}

.qa-list dl dd:nth-of-type(odd)  {
    padding: 30px 26px 10px 15px;
    color: #158E7E; 
}

.qa-list dl dd:nth-of-type(even) {
    border-bottom: 0.5px solid #158E7E;
    padding-bottom: 20px;
}


.last_logo{
    display: block;
    width: 147px;
    margin: auto;
    padding-bottom: 204px;
}



@media screen and (max-width: 750px) {
	.qa-list dl dd {
		padding: 30px 26px 40px 26px;
		font-size: 16px;
	}

	.qa-list dl dd img {
		width: 30px;
	}
}

.worning{
    margin-top: 2px;
    font-size: 14px;
}




@media (max-width: 768px) {

html, body {
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

body {
    margin:0px;
	padding:0px;
	background-color: #fff;
	color:#000;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
}

.up_content  {
    margin-top: 36vh; /* MVと同じ高さ */
    background: #fff;
}

p{
    font-size: 13px;
    line-height: 2.3em;
}


img{
    width: 100%;
}

h1{
    font-size: 20px;
    font-weight: 600;
    margin: 0px auto 25px;
    max-width: 1130px;
    padding: 0 5px;
}

h1{
    font-size: 12px;
    font-weight: 600;
    padding-left: 5px;
    padding-top: 8px;
    padding-bottom: 8px;
    background: #EAF0F7;
}

h2 {
    text-align: center;
    font-size: 20px;
    margin: 39px auto 32px;
    font-weight: 600;
}

img {
  user-select: none;     /* 選択不可 */
  -webkit-user-drag: none; /* Safariなどでドラッグ不可 */
  pointer-events: none;  /* クリックも無効化 */
}

a img {
  pointer-events: auto;
}


.inner{
    max-width: 350px;
    margin:auto;
}

.fontbold{
    font-weight: bold;
}


.sp_vis{
    display: block;
}

.pc_vis{
    display: none;
}

.link_touch{
    text-decoration: underline!important;
    color: #000;
}

.position_base{
    position: relative;
}

.position_in{
    position: absolute;
}


/*** 固定 ***/
.fixed_menu {
    position: fixed;
    bottom: 0;               /* 上に固定したい場合はこれでOK。中央に上下もしたいなら変更可 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 100vw;
    max-width: 1200px;

}

.fixed_menu {
    height: 100vh;
    transition: height 0.4s ease;
    pointer-events: auto;
}

.fixed_menu {
  pointer-events: none; /* ← 背景として無効化 */
}

/* 中のボタンはタップOKにする */
.fixed_menu a,
.fixed_menu img {
  pointer-events: auto;
}

/* スクロール後：隙間ゼロ */
.fixed_menu.full .logo {
    top: -69px;
}


.logo {
    position: absolute;
    margin-top: 104px;
    left: 11px;
    width: 88px;
}

.next {
    position: absolute;
    right: 10px;
    width: 111px;
    bottom: 119px;
}




/*** mv ***/
.mv{
    width: 100%;
    position: relative;
    overflow: hidden;
    max-width: 1980px;
    margin: auto;
    
}

.mv {
  position: fixed;
  top: 120px;
  left: 0;
  width: 100%;
  z-index: -1;   /* 下に配置して重ねられるように */
}



/*** nav ***/

.nav {
    max-width: 350px;
    margin: 45px auto 0;
    height: 100px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    padding: 1rem;
    text-align: center;
    transition: bottom 0.3s ease, top 0.3s ease;
}

/* ul */
.nav ul {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	gap: 5px;
	height: 90px;
	align-items: center;
	width: 350px;
}

/* li */
.nav li {
	position: relative;
	margin: 0;
	height: 70px;
	flex: 1;
	background: linear-gradient(to bottom, #03412A, #0A7C67);
	border-radius: 10px;
	overflow: hidden;
}

/* a：中央ちょい上に固定 */
.nav a {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* ← 常に中央揃え（1行でも2行でもOK） */
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 7.5px;
    height: 70px;
    line-height: 1.5em;
    position: relative;
    padding-top: 0;  /* ← 中央揃えにするので不要 */
}

/* fixed状態でもずれないように同じ指定 */
.nav.fixed a,
.nav.stop a {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* ← 中央揃え */
    align-items: center;
    padding-top: 0;
}


/* アイコン位置 */
.icon-wrap {
	width: 10px;
	height: auto;
	overflow: hidden;
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
}

/* アイコン画像 */
.nav a img {
	width: 100%;
	height: auto;
	display: block;
}

/* hover */
.nav a:hover {
	opacity: 0.6;
}

/* fixed */
.nav.fixed {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
}

/* stop（フッター手前で止まる） */
.nav.stop {
	position: absolute;
}

/* placeholder */
.nav-placeholder {
	display: none;
}


/*** news ***/
.news{
    position: relative;
    max-width: 350px;
    margin: auto;
    margin-top: -82px;
}

.news .shape_first{
    top: 30px;
    left: -50px;
}

.news .shape_second{
    bottom: -66px;
    right: -195px;
}

.news_in {
	margin-top:70px;
    height: 230px;
    position: relative;
}

.news_box{
    overflow-y: scroll;
    direction: rtl;
    height: 80px;/*スクロールの高さ*/
    scrollbar-color: #2B7FE0 transparent;
    scrollbar-width: thin;
    border-top: solid 1.5px #158E7E;
    border-bottom: solid 1.5px #158E7E;
    padding: 36px 0 24px;
    padding: 10px;
}

.news_box::-webkit-scrollbar {
    width: 5px; /* 横スクロールの場合は height に変更 */
}

.news_box::-webkit-scrollbar-track {
    background: transparent; /* トラック部分（背景） */
    border-radius: 4px;
}

.news_box::-webkit-scrollbar-thumb {
    background-color: #2B7FE0; /* 緑のスクロールバー */
    border-radius: 4px;
}


.news_box dl{
    display: flex;
    flex-wrap: wrap;
    direction: ltr;
    margin-bottom: 12px;
    align-items: center;
    justify-content: space-between;
    
}

.news_box .second{
    align-items: flex-start;
}

.news_box dt{
    width: 15%;
    font-weight: 600;
    font-size: 12px;
    color: #158E7E;
}

.news_box dd{
    width:73%;
    margin-inline-start: 0;
    font-size: 12px;
}



/*** about ***/

.about{
    padding: 56px 0 107px;
    background: linear-gradient(to bottom, #03412A, #0A7C67);
    margin: 55px 0 123px;
}

.about h2{
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    color: #fff;
}

.about p{
    color: #fff;
    
    font-size: 12px;
}

.about .position_in{
    width: 170px;
    bottom: -198px;
    left: 13px;
}


/*** point ***/

.point{
    margin-top: 113px;
}

.point_title{
    max-width: 350px;
    margin: auto;
}

.point_img{
    border-bottom: solid 1.5px #000;
    max-width: 350px;
    margin: auto;
    text-align: center;
}

.point_img img{
    width: 350px;
    margin:  10px auto;
}


/*** using ***/

.using{
    background: #E9F7F5;
    padding: 126px 0 154px;
}

.using_inner{
    max-width: 800px;
    margin: auto;
}

h3{
    font-size: 18px;
    color: #158E7E;
    text-align: center;
    margin-bottom: 61px;
}


/*** using ***/

.using{
    margin: 57px 0 178px;
}

.using_inner{
    max-width: 350px;
    margin: auto;
}



/*** contact ***/

.contact{
    text-align: center;
    margin: 130px auto 0px;
    padding-bottom: 267px;
}

.contact{
    line-height: 1.7em;
}





/***             ***/
/***   Okinawa   ***/
/***             ***/

.okinawa h3 {
    font-size: 18px;
    color: #158E7E;
    text-align: center;
    margin-bottom: 36px;
    line-height: 1.1em;
}

/*** about ***/

.okinawa .about{
    padding: 0;
    background: #fff;
    margin: 0 0 327px;
}

.okinawa .about h2{
    font-size: 60px;
    font-weight: 600;
    text-align: left;
    color: #fff;
}

.okinawa .about p{
    color: #fff;
}

.okinawa .about .position_in{
    width: 205px;
    top: inherit;
    right: 117px;
    bottom: -257px;
}


/*** hotel ***/

.okinawa .tab_buttons {
    display: flex;
    gap: 28px;
    margin: 13px auto 16px;
    justify-content: center;
}

.okinawa .tab_buttons button {
    width: 263px;
    background: #C3C3C3;
    cursor: pointer;
    border-radius: 9999px;
    transition: 0.3s;
    color: #fff;
    border: none;
    font-size: 13px;
    padding: 5px 0 6px;
}

/* 選択中ボタン */
.okinawa .tab_buttons button.active {
    background: #009E90;
    color: #fff;
}

.okinawa .tab_image img {
    width: 100%;
}

.hotel_sub{
    width: 100%;
    text-align: center;
    border: solid 1.6px #009E90;
    color: #009E90;
    border-radius: 9999px;
    font-size: 13px;
}

.hotel_pdf{
    margin: 51px 0 111px;
}

.okinawa .tab_buttons a{
    width: 263px;
    background: #C3C3C3;
    cursor: pointer;
    border-radius: 9999px;
    transition: 0.3s;
    color: #fff;
    border: none;
    font-size: 13px;
    padding: 5px 0 6px;
    text-align: center;
}

/* 選択中ボタン */
.okinawa .tab_buttons a:hover {
    background: #009E90;
    color: #fff;
    text-decoration: none;
}

.tab_content {
    display: none;
}

.tab_content.active {
    display: block;
}

.tab_content ul{
    
}

.tab_content li{
    font-size: 12px;
}

.tab_content .link_touch{
    color: #000;
}

.tab_content .link_touch:hover{
    color: #158E7E;
}

.tab_content .link_touch {
    position: relative;
    padding-right: -2px; /* 文字とかぶらないように余白 */
    text-decoration: none !important;
}

.tab_content .link_touch::after {
    content: ">"; /* 好みで › や > でもOK */
    color: #158E7E;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}


/*** using ***/

.using {
	background: #E9F7F5;
    padding: 86px 0 95px;
}

.using h3{
    color: #000;
}


/*** question ***/

.question {
	position: relative;
    padding: 0px 0 0px;
}

.question_title {
	text-align: center;
    font-size: 16px;
    margin-bottom: 52px;
    color: #158E7E;
}

/* 左の棒 */
.question_title_sub::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px; 
    width: 8px;
    height: 30px;
    background: #2B7FF4;
    
}

.qa-list {
	text-align: left;
	margin-top: 50px;
}


	.qa-list {
		margin: 20px 0 0;
	}


.qa-list dl {
	position: relative;
	margin: 20px 0;
	cursor: pointer;
}

.qa-list dl:last-child {
	margin-bottom: 30px;
}

.qa dt::before,
.qa dt::after {
	content: "";
	position: absolute;
	background: #fff;
	right: 27px;
	top: 50%;
	width: 36px;
	height: 3px;
	transform: translateY(-50%);
	transition: 0.3s;
	z-index: 1;
}

.qa dt::after {
	transform: translateY(-50%) rotate(90deg);
	opacity: 1;
}

.open dt::after {
	transform: translateY(-50%) rotate(0deg);
}


	.qa dt::before,
	.qa dt::after {
		right: 17px;
		width: 12px;
		height: 2px;
	}


/* 質問（Q） */
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 8px 60px 8px 15px;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(to bottom, #03412A, #0A7C67);;
    letter-spacing: 0.2em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.qa-list dl dt img {
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: auto;
	margin-right: 20px;
}


	.qa-list dl dt {
        padding: 5px 50px 5px 9px;
        font-size: 16px;
        letter-spacing: 0.05em;
	}

	.qa-list dl dt img {
		width: 30px;
	}


/* 回答（A） */
.qa-list dl dd {
	position: relative;
	display: none; /* JSで flex に切り替える */
	margin: 0;
	background: #fff;
    letter-spacing: 0.05em;
	color: #000;
	padding: 30px 26px 40px 15px;
	border-top: none;
	font-size: 18px;
    display: flex; /* JSで付与される想定 */
	align-items: flex-start;
	gap: 20px;
}

.qa-list dl dd img {
	flex-shrink: 0;
	width: 40px;
	height: auto;
}

.qa-list dl dd span {
	display: inline-block;
    margin-top: -5px;
}

.qa-list dl dd span strong{
	font-weight: bold;
}

.qa-list dl dd:nth-of-type(odd)  {
        padding: 10px 26px 0px 15px;
    color: #158E7E;
    color: #158E7E; 
}

.qa-list dl dd:nth-of-type(even) {
    border-bottom: 0.5px solid #158E7E;
    padding-bottom: 20px;
}





	.qa-list dl dd {
		font-size: 16px;
	}

	.qa-list dl dd img {
		width: 30px;
	}



.last_logo{
    width: 147px;
    margin: auto;
    padding-bottom: 269px;
    display: block;
}


.change_pc{
    background: #fff!important;
}

#JTBGF-ly_footer.JTBGF-ly_footer {
        margin-top: 0px !important;
        padding-top: 50px;
    }


.worning{
    margin-top: 2px;
    font-size: 11px;
}

.hotel_sub_sub{
    text-align: center;
}



/*** nav ***/

.okinawa .nav {
    max-width: 350px;
    margin: 45px auto 0;
    height: 85px;
    align-items: center;
    position: relative;
    color: white;
    padding: 1rem;
    text-align: center;
    transition: bottom 0.3s ease, top 0.3s ease;
    display: block;
}

/* ul */
.okinawa .nav ul {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	gap: 5px;
	height: 50px;
	align-items: center;
	width: 350px;
}

/* li */
.okinawa .nav li {
	position: relative;
	margin: 0;
	height: 46px;
	flex: 1;
	background: linear-gradient(to bottom, #03412A, #0A7C67);
	border-radius: 10px;
	overflow: hidden;
}

/* a：中央ちょい上に固定 */
.okinawa .nav a {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* ← 常に中央揃え（1行でも2行でもOK） */
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 7.5px;
    height: 40px;
    line-height: 1.5em;
    position: relative;
    padding-top: 0;  /* ← 中央揃えにするので不要 */
}

/* fixed状態でもずれないように同じ指定 */
.okinawa .nav.fixed a,
.okinawa .nav.stop a {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* ← 中央揃え */
    align-items: center;
    padding-top: 0;
}


/* アイコン位置 */
.okinawa .icon-wrap {
	width: 10px;
	height: auto;
	overflow: hidden;
	position: absolute;
	bottom: 1px;
	left: 50%;
	transform: translateX(-50%);
}

/* アイコン画像 */
.okinawa .nav a img {
	width: 100%;
	height: auto;
	display: block;
}

/* hover */
.okinawa .nav a:hover {
	opacity: 0.6;
}

/* fixed */
.okinawa .nav.fixed {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
}

/* stop（フッター手前で止まる） */
.okinawa .nav.stop {
	position: absolute;
}

/* placeholder */
.okinawa .nav-placeholder {
	display: none;
}


.okinawa nav .order{
    position: relative;
    margin: 0;
    height: 38px;
    flex: 1;
    background: linear-gradient(to bottom, #03412A, #0A7C67);
    overflow: hidden;
    width: 100%;
    border-radius: 9999px;
}

.okinawa nav .order .icon-wrap{
    top: 50%;
    left: 57%;
    transform: translateY(-50%);
    bottom: inherit;

}


}

