@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..700&family=Inter:opsz,wght@14..32,500..900&family=Birthstone+Bounce&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  font-size: 62.5%;
  min-height: 100vh;
}

html, body {
  height: 100%;
  width: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

main {
  display: block;
  margin: auto;
}

b {
  font-weight: bold;
}

input[type=submit], input[type=text],
input[type=email], input[type=button], input[type=password] {
  appearance: none;
}

/*------------------------------
	base
------------------------------*/
a {
  color: #454545;
  text-decoration: none;
}

.mb0 {
  margin: 0 0 0 0;
}

.mb5 {
  margin: 0 0 5px 0;
}

.mb10 {
  margin: 0 0 10px 0;
}

.mb15 {
  margin: 0 0 15px 0;
}

.mb20 {
  margin: 0 0 20px 0;
}

.mb30 {
  margin: 0 0 30px 0;
}

.mb40 {
  margin: 0 0 40px 0;
}

.mb50 {
  margin: 0 0 50px 0;
}

.mb60 {
  margin: 0 0 60px 0;
}

.mb70 {
  margin: 0 0 70px 0;
}

.mb80 {
  margin: 0 0 80px 0;
}

.mb90 {
  margin: 0 0 90px 0;
}

.mb100 {
  margin: 0 0 100px 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  background: #fff;
  color: #111;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

p {
  margin: 0 0 10px;
}

/*------------------------------
	header
------------------------------*/
header {
  padding: 30px 0;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
header .logo {
  width: 110px;
  margin: 0 auto;
}
header .lang {
  position: absolute;
  top: 45px;
  right: 20px;
}
header .lang a {
  color: #3ca4ff;
  font-weight: 700;
}

#gnav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, #ffffff 0%, #fff 75%, #91ccff 90%, #3ca4ff 100%);
  transition: all 0.3s;
  padding-top: 90px;
}
#gnav ul {
  display: none;
}
#gnav span#switch {
  display: none;
}
#gnav li {
  list-style: none;
  padding: 0 0 0 30px;
}
#gnav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#gnav.panelactive {
  opacity: 1;
  z-index: 8;
}
#gnav.panelactive ul {
  display: block;
}
#gnav.panelactive .app {
  margin-top: 15px;
}
#gnav.panelactive .app ul {
  display: flex;
  gap: 8px;
}
#gnav.panelactive .app li {
  padding: 0;
  width: 130px;
}
#gnav.panelactive .app a {
  padding: 0;
}
#gnav.panelactive #gnav-list { /*ナビゲーションの縦スクロール*/
  position: fixed;
  z-index: 8;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#gnav .acd dt {
  padding: 0 0 0 10px;
  font-weight: 700;
  margin: 0 0 10px;
  background: url("../img/arrow03.png") no-repeat 90% center;
  background-size: 20px;
  box-sizing: border-box;
}
#gnav .acd ul {
  padding: 0;
}
#gnav .acd li a {
  padding: 6px 0;
}
#gnav .acd li.title {
  font-size: 2rem;
  font-weight: 700;
  color: #3ca4ff;
  padding: 0 0 0 10px;
}
#gnav .btn1 {
  max-width: 85vw;
  margin: 10px 0;
}
#gnav .btn1 a {
  background: #fff;
  color: #3ca4ff;
  border: 1px solid #3ca4ff;
}
#gnav .btn1 span {
  background: url("../img/arrow04.png") no-repeat right center;
  background-size: 24px;
}

.openbtn {
  position: fixed;
  z-index: 9;
  top: 30px;
  left: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #3ca4ff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background: #3ca4ff;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background: #3ca4ff;
}

/*------------------------------
	header-destination
------------------------------*/
.travel {
  display: none;
  position: absolute;
  top: 400px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
  width: 1000px;
  z-index: 2;
}

.bg {
  display: none;
  background: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.open {
  display: block;
}

.destination {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: 200px 1fr;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 80px;
  box-sizing: border-box;
}
.destination .title {
  color: #3ca4ff;
  font-weight: 700;
  font-size: 2rem;
}

.area ul {
  margin: 0 0 40px;
}
.area ul:last-child {
  margin: 0;
}
.area li {
  margin: 0 0 5px;
}
.area li a:hover {
  text-decoration: underline;
}

.tabs-box .btn1 {
  margin: 40px 0 0;
}
.tabs-box .btn1 a {
  background: #fff;
  color: #3ca4ff;
  border: 1px solid #3ca4ff;
}
.tabs-box .btn1 span {
  background: url(../img/arrow04.png) no-repeat right 7px;
  background-size: 18px;
  padding: 0 22px 0 0;
  font-size: 1.6rem;
}

.tabs .title {
  float: left;
  margin: 0 30px 0 0;
}

/*タブのスタイル*/
.tab-item {
  width: calc(20% - 70px);
  font-size: 1.6rem;
  padding: 3px 10px;
  margin: 0 10px 0 0;
  border: 1px solid #3ca4ff;
  border-radius: 6px;
  display: block;
  float: left;
  text-align: center;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}
.tab-item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name=tab-item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab-content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}
.tab-content .where {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.tab-content li {
  margin: 0 0 5px;
}
.tab-content li a:hover {
  text-decoration: underline;
}

/*選択されているタブのコンテンツのみを表示*/
#a-ka:checked ~ #a-ka-content,
#sa-ta:checked ~ #sa-ta-content,
#na-ha:checked ~ #na-ha-content,
#ma-ya:checked ~ #ma-ya-content,
#ra-wa:checked ~ #ra-wa-content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab-item {
  background: #e5f3ff;
  color: #333;
}

/*スマホメニュー*/
/*------------------------------
	footer
------------------------------*/
footer {
  padding: 30px 20px 15px;
  background: linear-gradient(to bottom, #fff 40%, #fff 41%, #fff 42%, #3ca4ff 100%);
  text-align: left;
}
footer .catch {
  font-size: 1.8rem;
  line-height: 2;
  padding: 0 0 30px;
  margin: 0 0 45px;
}
footer .logo {
  font-family: "Inter", serif;
  font-size: 3.7rem;
  font-weight: 900;
  color: #3ca4ff;
}
footer .app {
  margin: 0 0 50px;
}
footer .app p {
  width: 180px;
}
footer .inner {
  background: url("../img/line.png") no-repeat right 100%, url("../img/airplane01.png") no-repeat right 92%;
  background-size: 100%, 60px;
  padding-bottom: 100px;
}
footer .footer-nav {
  color: #333;
}
footer a {
  color: #333;
}
footer a:hover {
  text-decoration: underline;
}
footer span {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  margin: 20px 0 0;
}

.app ul {
  display: flex;
  gap: 20px;
}
.app ul li {
  width: 130px;
}

.acd-check {
  display: none;
}

.acd-label {
  display: block;
  font-size: 1.8rem;
  margin: 0 0 16px;
  position: relative;
}
.acd-label::after {
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  background: url("../img/arrow05.png") no-repeat right center;
  background-size: 20px;
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -6px;
}

.acd-content {
  height: 0;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}
.acd-content ul {
  margin: 0 0 30px;
}
.acd-content li {
  font-size: 1.4rem;
  color: #3ca4ff;
  margin: 0 0 5px;
}

.acd-check:checked + .acd-label + .acd-content {
  height: 100%;
  opacity: 1;
  visibility: visible;
}

/*------------------------------
	top
------------------------------*/
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 120px;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin: 60px 0 40px;
}
h2 span {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}

.btn1 {
  text-align: center;
}
.btn1 a {
  display: block;
  color: #fff;
  background: #3ca4ff;
  padding: 8px;
  border-radius: 10px;
}
.btn1 span {
  background: url("../img/arrow02.png") no-repeat right center;
  background-size: 24px;
  padding: 0 30px 0 0;
}

.top {
  color: #fff;
  background: linear-gradient(180deg, #3ca4ff 0%, #d7ecff 100%);
  margin: 0 0 36px;
  padding: 60px 25px 40px;
  overflow: hidden;
}
.top .catch {
  font-size: 2.4rem;
  margin: 0 0 30px;
  line-height: 2;
}
.top .sub .text {
  display: none;
}
.top .brand {
  font-family: "Inter", serif;
  font-size: 1.2rem;
  margin: 0;
  padding-top: 50px;
  text-align: right;
  background: url("../img/line.png") no-repeat left 90%, url("../img/airplane01.png") no-repeat right top;
  background-size: 70%, 40px;
}

.read {
  margin: 0 -20px 50px 0;
  border-radius: 20px 0 0 20px;
  border: 1px solid #eee;
  padding: 25px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
}
.read .nav {
  margin-left: -25px;
}
.read .nav li {
  margin: 0 0 20px;
  font-size: 1.8rem;
  padding: 0 0 0 10px;
  border-left: 3px solid #3ca4ff;
  box-sizing: border-box;
}
.read p {
  font-size: 1.2rem;
  margin: 0 0 20px;
}

.tripーbox ul.country {
  display: grid;
  gap: 20px;
  margin: 0 0 40px;
}
.tripーbox ul.country > li {
  border-radius: 20px;
  border: 1px solid #eee;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
}
.tripーbox ul.country > li a {
  display: block;
  padding: 28px 20px;
}
.tripーbox ul.country .name {
  font-size: 2rem;
  font-weight: 500;
  background: url("../img/arrow01.png") no-repeat right 3px;
  background-size: 24px;
}
.tripーbox ul.country .name span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}
.tripーbox ul.country ul.info {
  font-family: "Inter", serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tripーbox ul.country ul.info li.price {
  font-size: 2.2rem;
  font-weight: 900;
}
.tripーbox ul.country ul.info li.price span {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 0 3px;
}

.flow {
  position: relative;
}
.flow dl {
  padding: 0 0 0 50px;
  margin: 0 0 16px;
}
.flow dt {
  color: #3ca4ff;
  font-weight: 700;
  margin: 0 0 12px;
}
.flow dd {
  font-size: 1.4rem;
}
.flow .num {
  display: block;
  background: #3ca4ff;
  color: #fff;
  border-radius: 50%;
  font-family: "Inter", serif;
  font-size: 1.4rem;
  text-align: center;
  padding: 2px 6px;
  width: 28px;
  box-sizing: border-box;
  z-index: 1;
  position: absolute;
  left: 8px;
}
.flow::after {
  content: "";
  display: block;
  height: 100%;
  width: 5px;
  background: #a9d7ff;
  position: absolute;
  top: 0;
  left: 20px;
}
.flow::before {
  content: "";
  display: block;
  background: url("../img/airplane02.png") no-repeat;
  background-size: 24px;
  width: 24px;
  height: 25px;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 20px;
  margin: 0 0 0 -9px;
}
.flow .photo {
  padding: 0 0 0 50px;
}

.point {
  margin: 0 -20px 50px 0;
  border-radius: 20px 0 0 20px;
  border: 1px solid #eee;
  padding: 40px 15px 40px 25px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
  display: grid;
  gap: 40px;
}
.point dt {
  color: #3ca4ff;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0 0 16px -25px;
  padding: 0 0 0 20px;
  border-left: 3px solid #3ca4ff;
}
.point dt img {
  width: 50px;
  margin: 0 10px 0 0;
}
.point dl:nth-of-type(2) dt img {
  width: 40px;
}
.point dd {
  font-size: 1.4rem;
}

.recommendation {
  margin: 0 0 50px -20px;
  border-radius: 0 20px 20px 0px;
  border: 1px solid #eee;
  padding: 40px 25px 40px 15px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
  display: grid;
  gap: 30px;
  font-size: 2rem;
}
.recommendation li {
  background: url("../img/icon-check.png") no-repeat left 10px;
  background-size: 24px;
  padding: 0 0 0 35px;
}

.faq {
  margin: 0 0 36px;
}
.faq dl {
  cursor: pointer;
  border: 1px solid #3ca4ff;
  border-radius: 6px;
  margin: 0 0 20px;
}
.faq dt {
  padding: 6px 32px 16px 16px;
  font-weight: 500;
  position: relative;
  color: #3ca4ff;
}
.faq dt::after {
  content: "";
  background: url("../img/arrow03.png") no-repeat;
  background-size: 24px;
  width: 24px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -12px;
}
.faq dt.watch {
  border-radius: 6px 6px 0 0;
}
.faq dt.watch::after {
  content: "";
  transform: rotate(-180deg);
}
.faq dd {
  padding: 16px 32px 16px 16px;
  border-radius: 0 0 10px 10px;
  position: relative;
  font-weight: 500;
  background: #e9f5ff;
  border-radius: 0 0 6px 6px;
}
.faq.faq-base dl {
  background: #e9f5ff;
}
.faq.faq-base dt {
  color: #333;
}

.acd dd {
  display: none;
}

/*------------------------------
	contact
------------------------------*/
.title-box {
  background: linear-gradient(0deg, #fff 30%, #97cfff 70%, #3ca4ff 100%);
  color: #fff;
  position: relative;
  min-height: 350px;
}
.title-box .send {
  color: #fff;
  max-width: 1200px;
  height: 300px;
  padding: 60px 20px 0;
  margin: 0 auto;
}
.title-box .send .title {
  font-size: 2.2rem;
}
.title-box .send img {
  display: block;
  width: 60%;
  margin: 0 auto;
}
.title-box .all {
  text-align: center;
  font-size: 2rem;
  padding: 60px 20px 0;
}

.country .title-box .all {
  padding: 80px 20px 0;
}

form {
  padding: 0 0 60px;
  margin: 0 auto;
}
form dt {
  font-weight: 500;
  font-size: 1.8rem;
  margin: 0 0 10px;
}
form dt.check::after {
  content: "*";
  color: #ff473a;
}
form dd {
  margin: 0 0 30px;
}
form dd input {
  border: 1px solid #3ca4ff;
  border-radius: 10px;
  padding: 4px;
  height: 30px;
  box-sizing: border-box;
  width: 100%;
}
form dd input[type=checkbox] {
  width: auto;
  height: auto;
}
form dd textarea {
  border: 1px solid #3ca4ff;
  border-radius: 10px;
  padding: 4px;
  box-sizing: border-box;
  width: 100% !important;
  height: 120px !important;
}
form .mailbtn {
  background: #3ca4ff;
  color: #fff;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  padding: 8px 30px;
  font-size: 2rem;
}

#mfp_overlay_inner h4 {
  color: #3ca4ff;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 16px;
}

.mfp_element_button {
  border: 0;
}

div.mfp_buttons button#mfp_button_send {
  background: #3ca4ff;
  color: #fff;
  text-shadow: none;
}
div.mfp_buttons button#mfp_button_cancel {
  background: #ccc;
  text-shadow: none;
}

.wrap-box {
  max-width: 800px;
  margin: 0 auto;
}

a.link {
  color: #ccc;
  text-decoration: underline;
}

/*------------------------------
	all
------------------------------*/
.country .appeal-point {
  margin: -220px auto 0;
}

.appeal-point {
  margin: -140px auto 0;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.appeal-point .pr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  justify-content: center;
  margin: 0 0 50px;
}
.appeal-point .pr li {
  background: #fff;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  text-align: center;
  padding: 16px 8px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.appeal-point .pr li b {
  display: block;
  font-size: 2rem;
}
.appeal-point .app {
  padding: 20px 0 0;
  clear: both;
  text-align: right;
}
.appeal-point .info {
  margin: 0 0 30px;
}
.appeal-point .info .pr {
  display: block;
}
.appeal-point .info .pr li {
  float: left;
  width: 25%;
  height: 110px;
  margin: 0 10px 10px 0;
  font-size: 1.2rem;
}
.appeal-point .info .pr li b {
  font-size: 1.8rem;
}
.appeal-point .info .photo {
  float: right;
  width: 150px;
}
.appeal-point .info p {
  position: relative;
  background: #fff;
  box-sizing: border-box;
  padding: 20px 15px 50px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
}
.appeal-point .info p span {
  color: #3ca4ff;
  font-family: "Birthstone Bounce", cursive;
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 4.2rem;
}

.title01 {
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 24px;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
}
.area-list li {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
  background: url("../img/bg01.png") no-repeat center bottom;
  background-size: contain;
}
.area-list li a {
  display: block;
}
.area-list li .name {
  padding: 12px 10px 0;
  font-size: 1.2rem;
  color: #3ca4ff;
}
.area-list li .name span {
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
}
.area-list li .price {
  font-family: "Inter", serif;
  color: #3ca4ff;
  padding: 0 10px 30px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  height: 30px;
}
.area-list li .price b {
  font-size: 2rem;
  font-weight: 900;
  -webkit-text-stroke-width: 2px;
}

/*------------------------------
	country
------------------------------*/
.price-plan {
  display: grid;
  gap: 24px;
}
.price-plan li {
  border-radius: 20px;
  border: 1px solid #3ca4ff;
  padding: 15px 18px;
  color: #3ca4ff;
}
.price-plan li a {
  display: block;
  color: #3ca4ff;
  border-radius: 20px;
  position: relative;
}
.price-plan li a::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url("../img/arrow04.png") no-repeat center right;
  background-size: 25px;
  position: absolute;
  bottom: 15px;
  right: 18px;
}
.price-plan li .gb {
  font-size: 3rem;
  font-weight: 900;
  font-family: "Inter", serif;
  margin: 0;
}
.price-plan li .gb b {
  font-size: 4.2rem;
}
.price-plan li .gb span {
  font-family: "Noto Sans JP", sans-serif;
}
.price-plan li .price {
  font-size: 2rem;
  font-weight: 900;
  font-family: "Inter", serif;
  margin: 0;
}
.price-plan li .price b {
  font-size: 3.5rem;
}

.merit {
  border-radius: 20px 0 0 20px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  margin: 0 -20px 0 0;
  padding: 32px 15px 32px 0;
}
.merit dl {
  margin: 0 0 28px;
}
.merit dt {
  color: #3ca4ff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 5px;
  position: relative;
}
.merit dt::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 18px;
  border-left: 3px solid #3ca4ff;
  position: absolute;
  top: 10px;
  left: 0;
}
.merit dt img {
  width: 50px;
  margin: 0 12px 0 0;
  padding: 0 0 0 15px;
  vertical-align: middle;
}
.merit dd {
  padding: 0 0 0 25px;
}

.use {
  position: relative;
}
.use::before {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  border-left: 5px solid #a9d7ff;
  position: absolute;
  top: 0;
  left: 15px;
  z-index: -1;
}
.use::after {
  content: "";
  background: url("../img/airplane02.png") no-repeat center left;
  background-size: 40px;
  width: 40px;
  height: 40px;
  position: absolute;
  left: -2px;
  bottom: 0px;
}
.use dl {
  margin: 0 0 30px;
}
.use dt {
  color: #3ca4ff;
  font-weight: 700;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
}
.use dt span {
  display: block;
  background: #3ca4ff;
  border-radius: 50%;
  width: 35px;
  height: 30px;
  color: #fff;
  text-align: center;
  padding: 5px 0 0 0;
  margin: 0 10px 0 0;
}
.use dd {
  font-size: 1.4rem;
  padding: 0 0 0 40px;
}

.caution {
  border-radius: 20px 0 0 20px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  margin: 0 -20px 0 0;
  padding: 32px 15px 32px 0;
}
.caution dl {
  display: grid;
  grid-template-rows: 1fr 150px;
  grid-template-columns: 80px 1fr;
  margin: 0 0 30px;
}
.caution dt {
  color: #3ca4ff;
  font-weight: 700;
  grid-row: 1/2;
  grid-column: 2/3;
  margin: 0 0 10px;
}
.caution dd {
  grid-row: 2/3;
  grid-column: 2/3;
}
.caution dd.photo {
  grid-row: 1/3;
  grid-column: 1/2;
  margin: 0 15px 0 0;
  padding: 0 0 0 10px;
  position: relative;
}
.caution dd.photo::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 18px;
  border-left: 3px solid #3ca4ff;
  position: absolute;
  top: 10px;
  left: 0;
}

/*------------------------------
	introduction
------------------------------*/
.introduction {
  position: relative;
}
.introduction dl {
  padding: 0 0 0 50px;
  margin: 0 0 16px;
}
.introduction dt {
  color: #3ca4ff;
  font-weight: 700;
  margin: 0 0 12px;
}
.introduction dd {
  font-size: 1.4rem;
}
.introduction .num {
  display: block;
  background: #3ca4ff;
  color: #fff;
  border-radius: 50%;
  font-family: "Inter", serif;
  font-size: 1.4rem;
  text-align: center;
  padding: 2px 6px;
  width: 28px;
  box-sizing: border-box;
  z-index: 1;
  position: absolute;
  left: 8px;
}
.introduction::after {
  content: "";
  display: block;
  height: 100%;
  width: 5px;
  background: #a9d7ff;
  position: absolute;
  top: 0;
  left: 20px;
}
.introduction::before {
  content: "";
  display: block;
  background: url("../img/airplane02.png") no-repeat;
  background-size: 24px;
  width: 24px;
  height: 25px;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 20px;
  margin: 0 0 0 -9px;
}
.introduction .photo {
  padding: 0 0 0 50px;
}

/*------------------------------
	law
------------------------------*/
.table01 {
  width: 100%;
}
.table01 th {
  font-weight: 500;
  width: 40%;
  padding: 15px 10px;
  background: #d7ecff;
  border-bottom: 1px solid #fff;
  text-align: left;
}
.table01 td {
  padding: 15px 10px;
  border-bottom: 1px solid #d9d9d9;
}

@media screen and (min-width: 768px) {
  br.sp {
    display: none;
  }
  /*------------------------------
  	header
  ------------------------------*/
  #gnav .btn1 span {
    font-size: 2rem;
  }
  /*------------------------------
  	footer
  ------------------------------*/
  footer {
    color: #fff;
    padding: 50px 30px 20px;
    background: linear-gradient(to top, #def0ff 0%, #fff 40%, #fff 41%, #fff 42%, #3ca4ff 100%);
  }
  footer .catch {
    font-size: 2.4rem;
    line-height: 2;
    background: url("../img/line.png") no-repeat right 100%, url("../img/airplane01.png") no-repeat right 50px;
    background-size: 60%, 100px;
    padding: 0 0 30px;
    margin: 0 0 55px;
  }
  footer .logo {
    font-size: 3.7rem;
    color: #fff;
  }
  footer .inner {
    background: none;
  }
  footer .footer-nav {
    display: flex;
    gap: 50px;
    color: #3ca4ff;
  }
  footer a {
    color: #3ca4ff;
  }
  footer span {
    color: #3ca4ff;
    margin-top: 0;
  }
  .acd-check {
    display: none;
    pointer-events: none;
  }
  .acd-label {
    display: block;
    pointer-events: none;
  }
  .acd-label::after {
    content: none;
  }
  .acd-content {
    margin: 20px 0 0px;
    height: auto;
    opacity: 1;
    transition: none;
    visibility: visible;
  }
  .acd-check:checked + .acd-label + .acd-content {
    height: auto;
    opacity: 1;
  }
  /*------------------------------
  	top
  ------------------------------*/
  h2 {
    font-size: 3.4rem;
    margin: 120px 0 100px;
  }
  h2 span {
    font-size: 2.2rem;
  }
  .btn1 span {
    background: url("../img/arrow02.png") no-repeat right 10px;
    background-size: 30px;
    padding: 0 35px 0 0;
    font-size: 3rem;
  }
  .top {
    padding: 50px;
    margin: 0 0 32px;
  }
  .top .catch {
    font-size: 5.4rem;
  }
  .top .sub {
    float: right;
    max-width: 670px;
  }
  .top .sub .text {
    display: block;
  }
  .top .brand {
    padding-top: 100px;
    font-size: 3.6rem;
    background: url("../img/line.png") no-repeat left 85%, url("../img/airplane01.png") no-repeat right top;
    background-size: 383px, 100px;
  }
  .read {
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
  }
  .read .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-content: center;
    margin: 0;
  }
  .read .nav li {
    margin: 0 0 30px;
    font-size: 2rem;
    padding: 12px 0px;
    border-left: 0;
    border-top: 5px solid #3ca4ff;
  }
  .read p {
    display: none;
  }
  .tripーbox h2 {
    font-size: 3.6rem;
  }
  .tripーbox ul.country {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px 52px;
    margin: 0 0 35px;
  }
  .tripーbox .name {
    font-size: 3rem;
  }
  .tripーbox .name span {
    font-size: 1.6rem;
  }
  .tripーbox ul.info li.price {
    font-size: 3.6rem;
  }
  .tripーbox ul.info li.price span {
    font-size: 2.4rem;
  }
  .flow {
    margin: 0 0 300px;
  }
  .flow dl {
    padding: 0 0 0 100px;
  }
  .flow dt {
    font-size: 2.4rem;
    margin: 0 0 16px;
  }
  .flow dd {
    font-size: 2.4rem;
  }
  .flow .num {
    font-size: 2.4rem;
    padding: 2px 10px 1px;
    width: 42px;
    position: absolute;
    left: 60px;
    margin: 0 0 0 -18px;
  }
  .flow::after {
    left: 60px;
  }
  .flow::before {
    background: url("../img/airplane02.png") no-repeat;
    background-size: 48px;
    width: 48px;
    height: 50px;
    bottom: -3px;
    left: 60px;
    margin: 0 0 0 -21px;
  }
  .flow .box {
    margin: 0 0 60px;
  }
  .flow .photo {
    width: 560px;
    padding: 0 0 0 100px;
  }
  .point {
    width: 85%;
    margin: 0 auto;
    border: 0;
    padding: 0;
    box-shadow: none;
  }
  .point dt {
    font-size: 2.6rem;
    padding: 0;
    margin: 0 0 16px;
    border-left: 0;
  }
  .point dd {
    font-size: 1.6rem;
  }
  .recommendation {
    margin: 0;
    border: 0;
    padding: 0;
    box-shadow: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    font-size: 2.2rem;
  }
  .faq {
    font-size: 1.8rem;
  }
  .faq dt {
    padding: 24px 16px 24px 55px;
  }
  .faq dt::after {
    right: 20px;
    margin-top: -12px;
  }
  .faq dd {
    padding: 24px 16px 24px 55px;
  }
  /*------------------------------
  	contact
  ------------------------------*/
  .title-box {
    min-height: 400px;
  }
  .title-box .send {
    color: #3ca4ff;
    height: 250px;
    display: grid;
    grid-template-columns: 1fr 280px;
    justify-content: space-between;
    font-size: 1.8rem;
  }
  .title-box .send .title {
    font-size: 2.8rem;
  }
  .title-box .send img {
    display: inline-block;
    width: auto;
    margin: 0;
  }
  .title-box .all .photo {
    max-width: 900px;
    margin: 30px auto 0px;
  }
  form {
    padding: 0 0 120px;
  }
  form dt {
    font-size: 2.2rem;
    margin: 0 0 18px;
  }
  /*------------------------------
  	all
  ------------------------------*/
  .appeal-point {
    margin: -160px auto 0;
    max-width: 1200px;
  }
  .appeal-point .pr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  .appeal-point .pr li {
    width: auto;
    border-radius: 32px;
    padding: 32px 4px;
    font-size: 1.8vw;
  }
  .appeal-point .pr li b {
    font-size: 2.8vw;
  }
  .appeal-point .app {
    padding: 0;
  }
  .appeal-point .app ul {
    justify-content: end;
  }
  .appeal-point .info {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 30px;
    margin: 0;
  }
  .appeal-point .info .pr {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 20px;
    order: 1;
  }
  .appeal-point .info .pr li {
    display: flex;
    float: none;
    width: auto;
    height: auto;
    margin: 0;
    font-size: 2.6rem;
  }
  .appeal-point .info .pr li b {
    font-size: 3.8rem;
  }
  .appeal-point .info .photo {
    order: 2;
    float: none;
    width: auto;
  }
  .appeal-point .info p {
    padding: 20px 20px 60px;
  }
  .appeal-point .info p span {
    font-size: 6.2rem;
  }
  .title01 {
    font-size: 3.6rem;
    margin: 0 0 30px;
  }
  .area-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px 40px;
    margin: 80px 0 100px;
  }
  .area-list li {
    background: url("../img/bg01.png") no-repeat center bottom;
    background-size: cover;
  }
  .area-list li .name {
    font-size: 1.6rem;
    padding: 10px 15px 20px;
    margin: 0;
  }
  .area-list li .name span {
    font-size: 2.3rem;
  }
  .area-list li .price {
    color: #3ca4ff;
    padding: 0 15px 30px;
    font-size: 2.4rem;
    -webkit-text-stroke-width: 2px;
    height: 50px;
  }
  .area-list li .price b {
    font-size: 3.6rem;
    -webkit-text-stroke-width: 3px;
  }
  /*------------------------------
  	country
  ------------------------------*/
  .price-plan {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .price-plan .gb {
    font-size: 3.2rem;
  }
  .price-plan .gb b {
    font-size: 4.6rem;
  }
  .price-plan .price {
    font-size: 2.4rem;
  }
  .price-plan .price b {
    font-size: 4rem;
  }
  .merit {
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .merit dt {
    border: 0;
    margin: 0 0 10px;
    text-align: center;
    font-size: 2.4rem;
  }
  .merit dt::before {
    content: none;
  }
  .merit dt img {
    width: 134px;
    display: block;
    margin: 0 auto 10px;
  }
  .merit dd {
    padding: 0;
  }
  .use dt {
    font-size: 2.2rem;
  }
  .use dt span {
    height: 35px;
    padding: 0;
  }
  .use dd {
    font-size: 1.6rem;
  }
  .use dd:last-child {
    width: 80%;
  }
  .caution {
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
  }
  .caution dl {
    display: grid;
    grid-template-rows: 1fr 150px;
    grid-template-columns: 100px 1fr;
    margin: 0;
  }
  .caution dd.photo::before {
    content: none;
  }
  /*------------------------------
  	introduction
  ------------------------------*/
  .introduction dl {
    padding: 0 0 0 100px;
  }
  .introduction dt {
    font-size: 2.4rem;
    margin: 0 0 16px;
  }
  .introduction dd {
    font-size: 2.4rem;
  }
  .introduction .num {
    font-size: 2.4rem;
    padding: 2px 10px 1px;
    width: 42px;
    position: absolute;
    left: 60px;
    margin: 0 0 0 -18px;
  }
  .introduction::after {
    left: 60px;
  }
  .introduction::before {
    background: url("../img/airplane02.png") no-repeat;
    background-size: 48px;
    width: 48px;
    height: 50px;
    bottom: -3px;
    left: 60px;
    margin: 0 0 0 -21px;
  }
  .introduction .box {
    margin: 0 0 60px;
  }
  .introduction .photo {
    width: 560px;
    padding: 0 0 0 100px;
  }
}
@media screen and (min-width: 1024px) {
  header {
    padding: 45px 24px 25px;
    position: relative;
    overflow: hidden;
    background: #fff;
  }
  header .logo {
    width: 180px;
    padding: 0;
    margin: -20px 0 0;
    float: left;
  }
  header .lang {
    font-size: 1.6rem;
    position: absolute;
    top: 55px;
    right: 40px;
  }
  #gnav {
    position: static;
    z-index: 1;
    opacity: 1;
    float: right;
    width: auto;
    height: auto;
    background: none;
    padding: 16px 100px 0 0;
    box-sizing: border-box;
  }
  #gnav ul {
    display: block;
    width: 100%;
    position: static;
    z-index: 1;
    transform: none;
    text-align: right;
    line-height: 0.9;
  }
  #gnav span#switch {
    display: block;
    color: #3ca4ff;
    font-weight: 700;
    background: url("../img/arrow03.png") no-repeat right center;
    background-size: 26px;
    padding: 0 32px 0 0;
    cursor: pointer;
  }
  #gnav .sp {
    display: none;
  }
  #gnav li {
    display: inline-block;
    border-bottom: 0;
    font-size: 1.6rem;
    margin: 0 20px 0 0;
  }
  #gnav li:last-child {
    margin: 0;
  }
  #gnav li.sp {
    display: none;
  }
  #gnav li a {
    padding: 0px;
    color: #3ca4ff;
  }
  #gnav li a::before {
    content: none;
  }
  #gnav li a.sp {
    display: none;
  }
  #gnav .button {
    position: absolute;
    top: 15px;
    right: 24px;
  }
  #gnav .button ul {
    display: flex;
    gap: 20px;
  }
  #gnav .button ul li {
    width: 200px;
    font-size: 1.3rem;
    margin: 0;
  }
  #gnav .button ul li a {
    display: block;
    padding: 10px 15px;
    border-radius: 27px;
  }
  #gnav .button ul li.btn {
    display: none;
  }
  #gnav .panelactive {
    opacity: 1;
    z-index: 8;
  }
  #gnav .panelactive ul {
    display: block;
  }
  #gnav .panelactive #gnav-list { /*ナビゲーションの縦スクロール*/
    position: fixed;
    z-index: 8;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .openbtn {
    display: none;
  }
  /*------------------------------
  	footer
  ------------------------------*/
  footer {
    padding: 75px 100px 20px;
  }
  footer .catch {
    font-size: 2.4rem;
    background: url("../img/line.png") no-repeat right 90%, url("../img/airplane01.png") no-repeat right 50px;
    background-size: 45%, 100px;
    padding: 0;
    margin: 0 0 75px;
  }
  footer .app {
    margin: 0;
  }
  footer .inner {
    display: flex;
    justify-content: space-between;
  }
  footer .footer-nav ul {
    margin: 0;
  }
  /*------------------------------
  	top
  ------------------------------*/
  .read {
    padding: 0;
  }
  .read .nav {
    display: flex;
    grid-template-columns: auto;
    gap: 55px;
  }
  .read .nav li {
    margin: 0;
  }
  .flow {
    margin: 0 0 300px;
  }
  .flow dl {
    width: 46%;
    padding: 0;
  }
  .flow dt {
    font-size: 3rem;
  }
  .flow dd {
    font-size: 3rem;
  }
  .flow .num {
    font-size: 2.4rem;
    padding: 2px 10px 1px;
    width: 42px;
    left: 50%;
    margin: 0 0 0 -18px;
  }
  .flow::after {
    left: 50%;
  }
  .flow::before {
    left: 50%;
  }
  .flow .box {
    position: relative;
    margin: 0 0 60px;
  }
  .flow .box:nth-of-type(odd) dl {
    float: right;
  }
  .flow .box:nth-of-type(even) .photo {
    position: absolute;
    top: -60px;
    right: 0;
  }
  .flow .box:last-child .photo {
    width: 510px;
  }
  .flow .photo {
    width: 560px;
    padding: 0;
  }
  .point {
    width: 94%;
    grid-template-columns: 1fr 1fr;
    gap: 40px 65px;
  }
  .point dt {
    text-align: center;
  }
  .point dt img {
    width: 10%;
  }
  .point dl:nth-of-type(2) dt img {
    width: 8%;
  }
  .recommendation {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px 64px;
    font-size: 2.4rem;
    width: auto;
  }
  /*------------------------------
  	contact
  ------------------------------*/
  .title-box {
    min-height: 500px;
  }
  .title-box .send {
    height: 360px;
    grid-template-columns: 1fr 450px;
    padding: 170px 20px 0;
    font-size: 3.2rem;
  }
  .title-box .send .title {
    font-size: 4rem;
  }
  .title-box .all {
    font-size: 3.2rem;
  }
  .country .title-box .all {
    padding: 110px 20px 0;
  }
  form dt {
    font-size: 3.6rem;
    line-height: 1.2;
    margin: 0 0 26px;
  }
  form dd {
    margin: 0 0 60px;
  }
  form dd input {
    height: 50px;
  }
  form .mailbtn {
    font-size: 3rem;
  }
  /*------------------------------
  	all
  ------------------------------*/
  .appeal-point {
    margin: -240px auto 0;
  }
  .appeal-point .pr {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 52px;
  }
  .appeal-point .pr li {
    width: auto;
    padding: 32px 4px;
    font-size: 1.4vw;
  }
  .appeal-point .pr li b {
    font-size: 2.2vw;
  }
  .appeal-point .info {
    grid-template-columns: 1fr 300px;
    gap: 80px;
  }
  .appeal-point .info .pr {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
  }
  .area-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 80px 66px;
    margin: 80px 0 100px;
  }
  .area-list li .name {
    font-size: 1.6rem;
  }
  .area-list li .name span {
    font-size: 2.1vw;
  }
  /*------------------------------
  	country
  ------------------------------*/
  .price-plan {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .price-plan li .gb {
    font-size: 3.2rem;
  }
  .price-plan li .gb b {
    font-size: 4.7rem;
  }
  .merit {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
  }
  .use {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
  }
  .use::before {
    content: "";
    width: 100%;
    height: 5px;
    border-left: 0;
    border-top: 5px solid #a9d7ff;
    position: absolute;
    top: 15px;
    left: 0;
  }
  .use::after {
    content: "";
    background: url("../img/airplane04.png") no-repeat center right;
    background-size: 40px;
    width: 40px;
    height: 35px;
    position: absolute;
    right: 0;
    top: 0px;
    left: auto;
    bottom: auto;
  }
  .use dl {
    margin: 0;
  }
  .use dt {
    text-align: center;
    display: block;
  }
  .use dt span {
    margin: 0 auto 30px;
  }
  .use dd {
    padding: 0;
  }
  .use dd:last-child {
    width: auto;
  }
  .caution dt {
    font-size: 2.4rem;
  }
  /*------------------------------
  	introduction
  ------------------------------*/
  .introduction dl {
    width: 46%;
    padding: 0;
  }
  .introduction dt {
    font-size: 3rem;
  }
  .introduction dd {
    font-size: 3rem;
  }
  .introduction .num {
    font-size: 2.4rem;
    padding: 2px 10px 1px;
    width: 42px;
    left: 50%;
    margin: 0 0 0 -18px;
  }
  .introduction::after {
    left: 50%;
  }
  .introduction::before {
    left: 50%;
  }
  .introduction .box {
    position: relative;
    margin: 0 0 60px;
  }
  .introduction .box:nth-of-type(odd) dl {
    float: right;
  }
  .introduction .box:nth-of-type(even) .photo {
    position: absolute;
    top: -60px;
    right: 0;
  }
  .introduction .box:last-child .photo {
    width: 510px;
  }
  .introduction .photo {
    width: 560px;
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  /*------------------------------
  	top
  ------------------------------*/
  .wrapper {
    padding: 0 0 120px;
  }
  .flow dl {
    width: 560px;
  }
  /*------------------------------
  	introduction
  ------------------------------*/
  .introduction dl {
    width: 560px;
  }
}