* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
  letter-spacing: 1.2px;
}
li {
  list-style: none;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.7;
  letter-spacing: 1.2px;
}
/*header*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  color: #fff;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  width: 90%;
  margin: 0 auto;
  transition: height 0.3s ease;
  position: relative;
}
.header-nav ul {
  display: flex;
  align-items: center;
}
.header-nav li:not(:first-of-type) {
  margin-left: 1rem;
}
.header-nav a {
  transition: color 0.3s ease;
}
.header-nav a:hover {
  color: #ffa445;
}
.site-title {
  font-size: 1.7rem;
  transition: font-size 0.3s ease;
}
/*header アニメーション系*/
header.active {
  background-color: #013437;
}
header.active .header-inner {
  height: 70px;
}
header.active .site-title {
  font-size: 1.3rem;
}
/*fv*/
.fv {
  width: 100%;
  height: 100vh;
  background: url(../img/hero.webp) no-repeat center / cover;
  position: relative;
}
.fv::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
}

.fv-textwrap {
  position: absolute;
  left: 10%;
  width: 90%;
  top: 30%;
  z-index: 3;
  color: #fff;
}
.fv-subtitle {
  color: #ffa445;
  font-weight: bold;
  font-size: 2rem;
  font-style: italic;
  display: flex;
  align-items: center;
}
.fv-subtitle::before {
  content: "";
  width: 50px;
  height: 4px;
  background-color: #ffa445;
  margin-right: 0.5rem;
}
.fv-title {
  font-size: 2.5rem;
}
.fv-text-ja {
  font-size: 1.1rem;
  margin-top: 2rem;
  font-weight: bold;
}
.fv-text-en {
  margin-top: 0.5rem;
}

.dli-chevron-round-right {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  position: relative;
  width: 0.7em;
  height: 0.7em;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  right: 1.5rem;
  top: 25px;
  transition: 0.3s;
}

.dli-chevron-round-right::before,
.dli-chevron-round-right::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}
.more-btn {
  background-color: #fff;
  border-radius: 999rem;
  padding: 1rem 5rem;
  display: inline-block;
  margin-top: 2rem;
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  position: relative;
  transition: 0.3s;
}

.more-btn:hover {
  color: #fff;
  background-color: #013436;
}
.more-btn:hover .dli-chevron-round-right {
  color: #fff;
}

/*section共通*/
section {
  padding: 4rem 0;
}
/*top-content*/
.top-content-item {
  display: flex;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
.top-content-item + .top-content-item {
  margin-top: 4rem;
}
.top-content-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.top-content-item-textwrap {
  width: 50%;
  padding: 1rem 2rem;
}
.top-content-item-subtitle {
  color: #ffa445;
  font-weight: bold;
  font-size: 1.5rem;
  font-style: italic;
  display: flex;
  align-items: center;
}
.top-content-item-subtitle::before {
  content: "";
  width: 50px;
  height: 4px;
  background-color: #ffa445;
  margin-right: 0.5rem;
}
.top-content-item-title {
  font-size: 1.75rem;
  margin-top: 0.5rem;
}
.top-content-item-text {
  margin-top: 2rem;
}
.top-content-item-img {
  width: 50%;
  padding: 1rem;
}
.top-content-item-img img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

/*footer*/
footer {
  padding: 4rem 0;
  background-color: #013437;
  color: #fff;
}
.footer-inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer-menu {
  margin-top: 2rem;
}
.footer-menu li + li {
  margin-top: 0.5rem;
}
.footer-menu a {
  text-transform: capitalize;
  font-weight: bold;
  padding-left: 0.2rem;
  display: inline-block;
  transition: color 0.3s ease;
}
.footer-menu a:hover {
  color: #ffa445;
}
.footer-item-title {
  font-weight: bold;
  font-size: 1.2rem;
}
.footer-sns-lists ul {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.footer-sns-lists li {
  margin: 0 0.2rem;
}
.footer-sns-lists img {
  display: block;
  width: 50px;
  transition: transform 0.3s ease;
}

.footer-sns-lists a:hover img {
  transform: scale(1.1);
}
.footer-sns-facebook img {
  width: 55px;
}

.copyright {
  padding: 2rem 1rem;
  color: #fff;
  background-color: #002020;
  text-align: center;
}

/*ハンバーガーメニュー*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: none;
  z-index: 99;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  background: #fff;
  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;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.open span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.open span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.openbtn.open span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*under*/
.u-fv {
  height: 400px;
  width: 100%;
  background: url("../img/u-fv-bg.jpg") no-repeat top / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #013437;
}
.u-fv-title {
  font-size: 3rem;
  padding: 0 1rem;
  text-transform: capitalize;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff,
    2px -2px 0 #fff, 0px 2px 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff;
}

/*concept*/
.u-concept-contents {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  font-size: 1.1rem;
}
.u-concept-contents p + p {
  margin-top: 1.5rem;
}
/*tourdetail*/
.tourdetail-top {
  text-align: center;
  font-size: 1.1rem;
}
.tourdetail-item {
  display: flex;
  margin: 3rem auto 0;
  width: 90%;
  max-width: 1000px;
}
.tourdetail-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.tourdetail-item-img {
  width: 50%;
  padding: 1rem;
}
.tourdetail-item-img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.tourdetail-item-textwrap {
  width: 50%;
  padding: 1rem 2rem;
}
.tourdetail-item-title {
  color: #013437;
  display: flex;
  align-items: center;
}
.tourdetail-item-title::before {
  content: "";
  width: 5px;
  height: 40px;
  background-color: #013437;
  margin-right: 1rem;
}
.tourdetail-item-price {
  margin-top: 2rem;
  font-weight: bold;
  font-size: 1.1rem;
  border: 2px solid #013437;
  padding: 1rem;
}
.tourdetail-item-text {
  margin-top: 1rem;
}

/*contact*/
/*ContactForm7カスタマイズ*/
table.CF7_table {
  width: 80%;
  margin: 0 auto;
}

table.CF7_table tr {
  border-top: 1px solid #e5e5e5;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table {
  display: table;
}

/*入力欄*/
.CF7_table input,
.CF7_table textarea {
  border: 1px solid #d8d8d8;
}

.CF7_table ::placeholder {
  color: #797979;
}

/*「必須」文字*/
.CF7_req {
  font-size: 0.9em;
  padding: 5px;
  background: #c10f19; /*オレンジ*/
  color: #fff;

  margin-right: 1em;
}

/*「任意」文字*/
.CF7_unreq {
  font-size: 0.9em;
  padding: 5px;
  background: #bdbdbd; /*グレー*/
  color: #fff;

  margin-right: 1em;
}

.CF7_table td,
.CF7_table th {
  padding: 1rem;
  text-align: left;
}
.CF7_table th {
  vertical-align: top;
  padding-top: 1.6rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}
/* タイトル列 */
@media screen and (min-width: 768px) {
  .CF7_table th {
    width: 30%; /*横幅*/
    background-color: #00575c;
    color: #fff;
  }
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  table.CF7_table {
    width: 95%;
  }
  .CF7_table tr,
  .CF7_table td,
  .CF7_table th {
    display: block;
    width: 100%;
    line-height: 2.5em;
  }
  .CF7_table th {
    background-color: #00575c;
    color: #fff;
  }
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
  background-color: #000; /* オレンジ*/
  border: 0;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 auto;
  padding: 1rem 3rem;
  cursor: pointer;
}

.CF7_btn {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.wpcf7-response-output {
  max-width: 800px;
  margin: 1rem auto 0 !important;
}

.wpcf7-spinner {
  width: 0;
  margin: 0;
}
.screen-reader-response {
  display: none;
}
.wpcf7-not-valid-tip {
  color: #c10f19;
  margin-top: 0.25rem;
  display: block;
}
.wpcf7-response-output {
  text-align: center;
  width: 90%;
  margin: 2rem auto;
}

.u-privacy-contents {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 2;
}
.u-privacy-contents p {
  margin-top: 1rem !important;
}
.u-privacy-contents h3 {
  margin-top: 2rem;
}
.u-privacy-contents li {
  list-style: initial;
  list-style-type: decimal;
}
.wp-block-list {
  margin-left: 1rem;
  margin-top: 1rem;
}
.u-rs-contents {
  text-align: center;
  width: 95%;
  margin: 0 auto;
}
.u-rs-contents p + p {
  margin-top: 1rem;
}
/*計算*/
.u-rs-contents {
  width: 90%;
  max-width: 1200px;
}
#rs-calcbox {
  width: 40%;
  text-align: left;
}
.calc-item {
  margin-top: 2rem;
}
.calc-item:first-of-type {
  margin-top: 3.5rem;
}

.calc-item h4 {
  color: #fff;
  background-color: #00575c;
  font-size: 1.15rem;
  padding: 0.25rem 1rem;
  text-align: center;
}
.calc-item-box {
  margin-top: 1rem;
  font-size: 1rem;
}
input[type="date"] {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  appearance: none; /* ブラウザのデフォルトスタイルを無効化 */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  border: 1px solid #000;
}
.calc-result {
  margin-top: 4rem;
}
.calc-result h4 {
  background-color: #00575c;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.25rem 1rem;
  text-align: center;
}
.calc-result-text {
  margin-top: 1rem;
}
.calc-result p {
}
.clac-item-title {
  font-weight: bold;
  color: #00575c;
}
.calc-result p {
  font-weight: bold;
  color: #00575c;
  font-size: 1.05rem;
}
.u-rs-contents {
  display: flex;
  justify-content: space-between;
}
.rs-form {
  width: 55%;
}
.rs-form table.CF7_table {
  width: 100%;
  margin-top: 2rem;
}
.rs-form .CF7_table tr {
  display: flex;
  flex-direction: column;
}

.rs-form .CF7_table th {
  width: 100%;
  padding-top: 1rem;
  background-color: #002020;
}
.calc-title {
  text-align: center;
}
.calc-title span {
  font-style: italic;
}
.rs-top {
  margin: 2rem auto 4rem;
  text-align: center;
  width: 95%;
}
.rs-top-depo {
  padding: 1rem;
  border: 3px solid #c10f19;
  width: fit-content;
  margin: 0 auto 2rem;
}
.rs-depo-price {
  color: #c10f19;
  font-weight: bold;
  margin-top: 2rem;
}
.deposit-table{
	border-collapse:collapse;
	margin:0 auto 2rem;

}
.deposit-table th,
.deposit-table td{
	border:2px solid #000;
	padding:0.5rem;
}
.deposit-table tr:first-of-type th,
.deposit-table tr:first-of-type td{
	background:#000;
	color:#fff;
}
.deposit-table tr:first-of-type td{
	background:#000;
	color:#fff;
	border-left:3px solid #fff;
}
@media (max-width: 1200px) {
  .top-content-item-title {
    font-size: 1.5rem;
  }
  .top-content-item-subtitle {
    font-size: 1.3rem;
  }
  .top-content-item-textwrap {
    padding: 1rem;
  }
}
@media (max-width: 1024px) {
}
@media (max-width: 992px) {
  .openbtn {
    display: block;
  }
  .header-nav {
    background-color: #00575c;
    color: #000;
    height: 100vh;
    width: 300px;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .header-nav.open {
    transform: translateX(0);
  }
  .header-nav ul {
    margin-top: 7rem;
    flex-direction: column;
    align-items: center;
    color: #fff;
  }
  .header-nav a {
    padding: 1rem 0;
    display: block;
  }
  .header-nav li:not(:first-of-type) {
    margin-left: 0;
  }
  .fv-title {
    font-size: 2rem;
  }
  .tourdetail-item,
  .tourdetail-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
  .tourdetail-item-textwrap {
    width: 100%;
    padding: 0;
    margin-top: 2rem;
  }
  .tourdetail-item-img {
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
  }
  .u-rs-contents {
    flex-direction: column;
  }
  #rs-calcbox,
  .rs-form {
    width: 100%;
  }
  .rs-form {
    margin-top: 3rem;
  }
}
@media (max-width: 800px) {
  .top-content-item {
    flex-direction: column-reverse;
  }
  .top-content-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
  .top-content-item-textwrap {
    width: 100%;
    margin-top: 2rem;
    padding: 0;
  }
  .top-content-item-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .fv-title {
    font-size: 1.75rem;
  }
  .fv-textwrap {
    left: 5%;
  }
  .site-title {
    font-size: 1.5rem;
  }
  .fv-subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .fv-title {
    font-size: 1.5rem;
  }
  .u-fv {
    height: 250px;
  }
  .u-fv-title {
    font-size: 2rem;
    position: relative;
    top: 2rem;
  }
}
@media (max-width: 480px) {
  .site-title {
    font-size: 1.2rem;
  }
  header.active .site-title {
    font-size: 1.1rem;
  }
  .fv-text-ja,
  .fv-text-en {
    font-size: 0.9rem;
  }
  .fv-textwrap {
    top: 25%;
  }
  .more-btn-wrap {
    text-align: center;
    margin-top: 1rem;
  }
  .more-btn-wrap .more-btn {
    font-size: 1rem;
  }
  .top-content-item-title {
    font-size: 1.3rem;
  }
  .top-content-item-subtitle {
    font-size: 1.2rem;
  }
  .top-content-item-subtitle::before {
    width: 30px;
    height: 3px;
  }
  .top-content-item-text {
    margin-top: 1.5rem;
  }
  .footer-inner {
    flex-direction: column-reverse;
    align-items: center;
  }
  .footer-item-title {
    text-align: center;
  }
  .footer-menu-wrap {
    margin-top: 3rem;
  }
  .footer-menu-wrap {
    width: 100%;
    text-align: center;
  }
  .u-concept-contents {
    font-size: 1rem;
  }
  .tourdetail-top {
    font-size: 1rem;
    width: 95%;
    margin: 0 auto;
  }
  .tourdetail-item-title {
    font-size: 1.2rem;
  }
  .tourdetail-item-title::before {
    height: 30px;
  }
  .tourdetail-item-price {
    font-size: 1rem;
  }
  .u-privacy-contents h2 {
    font-size: 1.3rem;
  }
	.thanks-modal{
		padding:2rem 1rem;
	}
	.deposit-table th,
.deposit-table td{
	font-size:0.9rem;
}
}
@media (max-width: 400px) {
}
