@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
#page-top {
    position: fixed;
    bottom: 5%;
    right: 2%;
    width: 5%;
    height: 5vw;
    border-radius: 40px;
    z-index: 1000;
}

#page-top a {
    display: block;
    line-height: 6;
    font-size: 5%;
    color: #fff;
    text-align: center;
    text-decoration: none;
}
#page-top a:hover {
    width: 100%;
    height: 5vw;
    border-radius: 40px;
    color: #111;
    background-color: rgba(17, 50, 133, 0.5);
}
#page-top a img {
    display: block;
    width: 100%;
}

header {
    display: flex;
    width: 100%;
    position: fixed;
    background-color: rgba(148, 122, 109, 0.9);
    z-index: 10000;
}

h1 {
    width: 15%;
    height: 6vw;
}
h1 a img {
    width: 100%;
    margin-top: -20%;
} 
nav {
    width: 100%;
    height: 4vw;
    padding-top: 2%;
  }
  
nav ul {
    display: flex;
    width: 75%;
    margin-left: 20%;
    list-style-type: none;
}

nav ul li {
    width: 100%;
    text-align: center;
}

nav ul li a {
    position: relative;
    font-size: 1vw;
    font-weight: 600;
    line-height: 2.6;
    text-decoration: none;
    color:white;
    font-family: "Noto Sans JP", sans-serif;
}
  
/*ヘッダー動く下線部分*/
nav ul li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #AB3B3A;
    bottom: -1px;               /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
}
      
nav ul li a:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}
.search-form-4 {
    display: flex;
    margin-top: -3%;
    margin-left: 7%;
    width: 85%;
    height: 3vw;
    align-items: center;
    overflow: hidden;
    border: 1px solid #777777;
    background-color: white;
    border-radius: 3px;
}

.search-form-4 input {
    padding: 2%;
    border: none;
    box-sizing: border-box;
    font-size: 1em;
    outline: none;
    font-family: "Noto Sans JP", sans-serif;
}

.search-form-4 input::placeholder {
    color: #777777;
}

.search-form-4 button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    padding: 1%;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.search-form-4 button::before {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23777777'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: '';
}


/* メインスライダー */
.swiper-box1 {
    position: relative;
}
.swiper-box1 .swiper-slide {
    height: 55vw;
    background-color: #202020;

}
.swiper-box1 .swiper-slide img {
    height: auto;
    width: 100%;
    opacity: 0.7;
}
.box {
    position: absolute;
    top: 40%;
    left: 15%;
    z-index: 100;
}
.box:nth-last-of-type(2) {
    position: absolute;
    top: 50%;
    left: 10%;
    z-index: 100;
}
.box .text-animation {
    font-size: 4vw;
    font-weight: 600;
    color: #fff;
    font-family: "Nanum Myeongjo", serif;
    opacity: 0;
    

    &.show {
      opacity: 1;

      .text-animation-span {
        display: inline-block;
        overflow: hidden;

      }
      span {
        display: inline-block;
        letter-spacing: 0.1em;
        animation: showText .5s backwards;
      }
    }
}
  
@keyframes showText {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* メインスライダー */


/*予約フォーム */
.tab_box-1 {
    width: 60%;
    margin: 5% auto;
} 
.tab_box-1 .btn_area {
     display: flex;
}
.tab_box-1 .tab_btn {
     width: 20%;
     text-align: center;
     border-top: 1px solid silver;
     border-right: 1px solid silver;
     border-bottom: 1px solid silver;
     border-left: 1px solid silver;
}
.tab_box-1 .tab_btn.active {
     background: #AB3B3A;
     color: #fff;
     border: none;
}
.tab_box-1 .tab_panel {
     display:none;
} 
.tab_box-1 .tab_panel.active {
     display:block;
}
.selectbox-5 {
    width: 20%;
    margin-left: 3%;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.selectbox-5::after {
    position: absolute;
    right: 15px;
    width: 5%;
    height: 0.5vw;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.selectbox-5 select {
    appearance: none;
    width: 100%;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: none;
    border-bottom: 2px solid #d0d0d0;
    background-color: #fff;
    color: #333;
    font-size: 1.5em;
    font-family: "Noto Sans JP", sans-serif;
    cursor: pointer;
}

.selectbox-5 select:focus {
    outline: none;
}
.selectbox-5 option {
    font-size: 1vw;
    color: #333; 
    font-family: "Noto Sans JP", sans-serif;
}
.dey {
    margin-left: 3%;
    font-size: 1.2vw; 
    color: #333; 
    font-family: "Noto Sans JP", sans-serif;
    background-color: #fff; 
}
.dey-in {
    width: 20%;
    border: none;
    height: 2.9em;
    padding: 1%;
}
/* WebKit ブラウザで、input type="number" のスピンボタンを非表示にする。 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Firefox で、input type="number" のスピンボタンを非表示にする。また、入力欄の値表示を中央寄せにし、高さをボタンのサイズに合わせる。 */
input[type="number"] {
  -moz-appearance: textfield;
  text-align: center;
  height: 44px;
}

/*ボタンのサイズを 44 × 44 CSS ピクセルにする。*/
button.btn-number {
  width: 44px;
  height: 44px;
}

/* ステッパーコンポーネントの横幅を指定する。 */
div.input-group {
  width: 160px;
}

.keyword {
    font-size: 1.1vw;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
}

/*予約フォーム */


/* ガイド */
.guide {
    width: 80%;
    margin-left: 8.5%;
    margin-top: 3%;

}
.guide ul {
    display: flex;
    list-style-type: none;
}
.guide ul li {
    width: 100%;
    height: 5vw;
    padding: 2%;
    margin-left: 3%;
    background-color: rgba(192, 192, 192, 0.2);
    border-radius: 5px;
    transition: .3s;
}
.guide ul li:hover {
    background-color: rgba(192, 192, 192, 0.5);
    transition: .3s;
}
.guide ul li a {
    font-size: 1vw;
    text-align: center;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
}
.guide ul li a:hover {
    text-decoration: none;
}
.guide ul li a img {
    display: block;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
/* ガイド */


/* キーワード */
.keyword {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.keyword h2 {
    margin-top: 5%;
    margin-bottom: 2%;
    font-size: 2vw;
    color: #333;
    font-family: "Nanum Myeongjo", serif;
    border-bottom: 1px solid#AB3B3A;
}
.keyword ul {
    display: flex;
    width: 90%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-left: auto;
    list-style-type: none;
   
}
.keyword ul li {
    width: 20%;
    margin: 0.5%;
    line-height: 2.5;
    text-align: center;
    font-size: 1.2vw;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    border: 2px solid #113285;
    border-radius: 5px; 
    transition: 0.3s;
}
.keyword ul li:hover {
    background-color: #113285;
    transition: 0.3s;
}
.keyword ul li:hover a {
    color: #fff;
}
.keyword ul li a {
    text-decoration: none;
    color: #333;
}
.keyword ul li span {
    color: #AB3B3A;
}
/* キーワード */


/* バナースライダー */
.swiper-box2 {
    width: 80%;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
}
.swiper-box2 .swiper-slide img {
    height: auto;
    width: 100%;
}
/* バナースライダー */


/* お知らせ */
.osirase {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.osirase h2 {
    margin-top: 5%;
    margin-bottom: 2%;
    text-align: center;
    font-size: 2vw;
    font-family: "Nanum Myeongjo", serif;
}
.osirase ul {
    width: 60%;
    margin-right: auto;
    margin-left: auto;
    list-style-type: none;
}
.osirase ul li {
    text-align: left;
    line-height: 3;
    border-bottom: 1px solid silver;

}
.osirase ul li:nth-of-type(1) {
    border-top: 1px solid silver;
}
.osirase ul li a {
    font-size: 1.2vw;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
}
.osirase ul li a:hover {
    text-decoration: none;
}
.osirase ul li time {
    font-weight: 700;
    font-size: 1.2vw;
    font-family: "Noto Sans JP", sans-serif;
    margin-right: 5%;
    color: #AB3B3A;
}
.osirase .osirase-more {
    display: block;
    font-size: 1.2vw;
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 3%;
    margin-left: 72%;
    color: #113285;
}
.osirase .osirase-more:hover {
    text-decoration: none;
}
/* お知らせ */

/* タブ切り替え */
.tabu h2 {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    margin-bottom: 2%;
    font-size: 2vw;
    color: #333;
    font-family: "Nanum Myeongjo", serif;
    border-bottom: 1px solid#AB3B3A;
}
.tab_box {
    width: 80%;
    margin: 5% auto;
}
 
.btn_area {
    display: flex;
}
.tab_btn {
    width: 30%;
    font-size: 1.1vw;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    padding: 1%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    /* border-right: 1px solid #000; */
    border-left: 1px solid silver;
    cursor: pointer;
}
.tab_btn:nth-of-type(10) {
    border-right: 1px solid silver;
}

.tab_btn.active {
    background-color: #777777;
    color: #fff;
    border: none;
}
.tab_panel {
    display:none;
}
.tab_panel.active {
    display:block;
}
.tab_panel.active ul {
    display: flex;
    list-style-type: none;
}
.tab_panel.active ul li {
    width: 100%;
    border-top: 0.5px solid #777777;
    border-left: 0.5px solid #777777;
    border-bottom: 0.5px solid #777777;
    background-color: rgba(233, 233, 233, 0.5);
    transition: 0.3s;
}
.tab_panel.active ul li:hover {
    background-color: rgb(214, 214, 214);
    transition: 0.3s;
}
.tab_panel.active ul li:nth-of-type(5) {
    background-color: rgba(135, 206, 235, 0.3);
}
.tab_panel.active ul li:nth-of-type(5):hover {
    background-color: rgba(135, 206, 235, 0.6);
}
.tab_panel.active ul li:nth-of-type(6) {
    background-color:rgba(255, 192, 203, 0.5);
}
.tab_panel.active ul li:nth-of-type(6):hover {
    background-color:rgba(255, 192, 203, 1);
}
.tab_panel.active ul li:nth-of-type(8) {
    border-right: 0.5px solid #777777;
}

.tab_panel.active ul li a {
    font-size: 1.1vw;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    color: #333 ;
    text-decoration: none;
}
.tab_panel.active ul li a p span {
    font-weight: 600;
    color: #AB3B3A;
}
.border-1 {
    padding: 10%;
    border-bottom: 1px solid#777777;
}
.border-2 {
    padding: 10%;
}
.hiniti {
    font-size: 2.3vw;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    color: #333;
}
.hiniti-do {
    font-size: 2.3vw;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    color:rgb(63, 145, 203);
}
.hiniti-niti {
    font-size: 2.3vw;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    color:rgb(192, 97, 97);
}
.youbi {
    font-size: 1.1vw;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    text-align: center;
    background-color: #777777;
    border-radius: 10px;
}
.youbi-do {
    font-size: 1.1vw;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    text-align: center;
    background-color:rgb(63, 145, 203);
    border-radius: 10px;
}
.youbi-niti {
    font-size: 1.1vw;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    text-align: center;
    background-color:rgb(192, 97, 97);
    border-radius: 10px;
}
.panel_area {
    margin-top: 2%;
}
/* タブ切り替え */


/* 長いバナー */
.long-1 img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.long-1 img:hover{ 
	opacity:0.5;
	transition:0.3s;
}
/* 長いバナー */


/* エリア覧 */
.aria {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.aria h2 {
    margin-top: 5%;
    margin-bottom: 2%;
    font-size: 2vw;
    color: #333;
    font-family: "Nanum Myeongjo", serif;
    border-bottom: 1px solid#AB3B3A;
}
.flex-1 {
    display: flex;
    flex-wrap: wrap;
}
.flex-1 a {
    width: 20%;
    text-align: center;
    font-size: 1.2vw;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    text-decoration: none;
}
.flex-1 a:hover{ 
	opacity:0.5;
	transition:0.3s;
}
.flex-1 a img {
    width: 100%;
    clip-path: circle(80px at center);
}
/* エリア覧 */

/* 出発地別旅行情報 */
.aria-betu {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.aria-betu h2 {
    margin-top: 5%;
    margin-bottom: 2%;
    font-size: 1.5vw;
    font-family: "Nanum Myeongjo", serif;
    text-align: center;
    color: #333;
}
.aria-betu ul {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    list-style-type: none;
}
.aria-betu ul li {
    width: 100%;
    text-align: center;
    border-right: 1px solid silver;
}
.aria-betu ul li a {
    font-size: 1vw;
    color: #333;
    text-decoration: none;
}
.aria-betu ul li a:hover {
    text-decoration: underline;
}
/* 出発地別旅行情報 */


/* おすすめツアー */
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
.tour {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
}
.tour h2 {
    margin-top: 5%;
    margin-bottom: 2%;
    font-size: 2vw;
    color: #333;
    font-family: "Nanum Myeongjo", serif;
    border-bottom: 1px solid#AB3B3A;
}
.tour-in {
    width: 90%;
    margin: 2% 0%;
    margin-left: auto;
    margin-right: auto;
    padding: 1%;
    border: 1px solid silver;
    border-radius: 5px;
    transition: 0.3s;

}
.tour-in:hover {
    background-color: rgba(17, 50, 133, 0.3);
    transition: 0.3s;
}
.flex-3 {
    display: flex;
}

.flex-3 img {
    width: 25%;
    padding: 1%;
}
.flex-3 a {
    display: block;
    padding: 1%;
    font-size: 1.5vw;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}
.flex-3 a:hover {
    text-decoration: 2px #404040 underline;
}
.p-1 {
    font-size: 1.1vw;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
}
.flex-3 a p ul {
    display: flex;
}
.timei {
    display: block;
    width: 6%;
    margin-top: -5%;
    margin-left: 27%;
    padding: 0.5%;
    text-align: center;
    font-size: 1.1vw;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    border: 1px solid silver;
    background-color: #fff;
    text-decoration: none;
}
.timei img {
    width: 20%;
    margin-right: 5%;
}
.timei-left {
    display: block;
    width: 6%;
    margin-top: -5%;
    margin-left: 65%;
    padding: 0.5%;
    text-align: center;
    font-size: 1.1vw;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    border: 1px solid silver;
    background-color: #fff;
    text-decoration: none;
}
.timei-left img {
    width: 20%;
    margin-right: 5%;
}
.tour-in-a {
    width: 50%;
    display: flex;
    margin-top: 1%;
    margin-left: 25%;
}

.tour-in-a a {
    display: block;
    width: 25%;
    margin: 1%;
    font-size: 1vw;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    color: #333;
    text-decoration: none;
}
.tour-in-a a:hover {
    text-decoration: underline;
}
.tour-in-a a span {
    font-size: 1.1vw;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #AB3B3A;
}

.tour-in-a-left {
    width: 50%;
    display: flex;
    margin-top: 1%;
    margin-left: 25%;
}
.tour-in-a-left a {
    display: block;
    width: 20%;
    margin: 1%;
    font-size: 1vw;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    color: #202020;
    text-decoration: none;
}
.tour-in-a-left  a:hover {
    text-decoration: underline;
}
.tour-in-a-left  a span {
    font-size: 1.1vw;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #AB3B3A;
}

/* ボタン */
.btn {
    margin-top: 2%;
    margin-left: 67%;
}
a.btn-flat {
    overflow: hidden;
    padding: 1.5rem 6rem;
    color: #fff;
    border-radius: 0;
    background: #333;
  }
  
  a.btn-flat span {
    position: relative;
  }
  
  a.btn-flat:before {
    position: absolute;
    top: 0;
    left: 0;
  
    width: 20%;
    height: 7.5vw;
  
    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(-80%) translateY(-25px);
    transform: translateX(-80%) translateY(-25px);
  
    border-radius: 50%;
    background: #AB3B3A;
  }
  
  a.btn-flat:hover:before {
    width: 400px;
    height: 400px;
  
    -webkit-transform: translateX(-1%) translateY(-175px);
  
    transform: translateX(-1%) translateY(-175px);
  }
  
  

/* おすすめツアー */


/* おすすめ特集 */
.osusume {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
}
.osusume h2 {
    margin-top: 5%;
    margin-bottom: 2%;
    font-size: 2vw;
    color: #333;
    font-family: "Nanum Myeongjo", serif;
    border-bottom: 1px solid#AB3B3A;
}
.flex-2 {
    display: flex;
    flex-wrap: wrap;
}
.flex-2 a {
    display: block;
    width: 20%;
    text-align: center;
    font-size: 1.2vw;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    text-decoration: none;
}
.flex-2 a:hover{ 
	opacity:0.5;
	transition:0.3s;
}
.flex-2 a img {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.flex-2 p {
    margin-bottom: 5%;
}
/* おすすめ特集 */


/* その他特集 */
.accordion {
    margin: 3em auto;
    max-width: 60vw;
}
.accordion h2 {
    font-size: 2vw;
    color: #333;
    font-family: "Nanum Myeongjo", serif;
    text-align: center;
    text-decoration:2px #AB3B3A solid underline;
}
.toggle {
    display: none;
}
.option {
    position: relative;
    margin-bottom: 1em;
}
.title,
.content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
.title {
    border-bottom: solid 1px #ccc;
    padding: 1em;
    display: block;
    color: #333;
    font-size: 1.1vw;
    font-weight: bold;
}
.title::after,
.title::before {
    content: "";
    position: absolute;
    right: 1.25em;
    top: 1.25em;
    width: 2px;
    height: 0.75em;
    background-color: #999;
    transition: all 0.3s;
}
.title::after {
    transform: rotate(90deg);
}
.content {
    display: flex;
    max-height: 0;
    overflow: hidden;
}
.content a {
    display: block;
    width: 50%;
    margin: 1%;
    padding: 1%;
    border: 1px solid silver;
    text-decoration: none;
}
.content a:hover {
    text-decoration: underline;
    opacity:0.5;
	transition:0.3s;
}
.content a img {
    width: 100%;

}
.content a h4 {
    font-size: 1.2vw;
    color: #333;
}
.content p {
    font-size: 1vw;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.5;
}
.toggle:checked + .title + .content {
    max-height: 500px;
    transition: all 1.5s;
}
.toggle:checked + .title::before {
    transform: rotate(90deg) !important;
}
/* その他特集 */


/* バナーМサイズ */
.m-banner {
    margin-top: 5%;
}
.flex-4 {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    margin-left: 6%;
}
.flex-4 img {
    display: block;
    background-color: #AB3B3A;
    width: 30%;
    margin-top: 2%;
    margin-left: 2%;
}
.flex-4 img:hover{ 
	opacity:0.5;
	transition:0.3s;
}
/* バナーМサイズ */

/* 特徴 */
.tokutyou {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.tokutyou h2 {
    margin-top: 5%;
    margin-bottom: 2%;
    font-size: 1.5vw;
    color: #333;
    font-family: "Nanum Myeongjo", serif;
    text-align: center;
}
.tokutyou ul {
    width: 90%;
    display: flex;
    list-style-type: none;
    margin-left: auto;
    margin-right: auto;
}
.tokutyou ul li {
    width: 70%;
    padding: 1%;
}
.tokutyou ul li img {
    display: block;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.tokutyou ul li p {
    text-align: center;
    font-size: 1vw;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
}
.tokutyou ul li p span {
    display: block;
    margin-top: 5%;
    margin-bottom: 3%;
    font-size: 1.1vw;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
}
/* 特徴 */

/* 電話問い合わせ */
.tel-contact {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.tel-contact h2 {
    display: flex;
    width: 30%;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2%;
    font-size: 1.5vw;
    color: #333;
    font-family: "Nanum Myeongjo", serif;
    text-align: center;
}
.tel-contact h2 img {
    display: block;
    width: 8%;
}
.tel-contact p {
    font-size: 1.1vw;
    color: #333;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
}
.all-contact {
    width: 90%;
    display: flex;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
}
.plane {
    width: 25%;
    padding: 2%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid silver;
    border-radius: 5px;
}
.plane h3 {
    font-size: 1.3vw;
    color: #333;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
}
.plane p {
    padding-top: 3%;
    padding-bottom: 3%;
    font-size: 1.1vw;
    color: #333;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    border-bottom: 1px solid #888;
}
.plane a {
    margin-top: 5%;
    display: block;
    font-size: 1.5vw;
    font-weight: 700;
    color: #AB3B3A;
    text-align: center;
    text-decoration: none;
}
/* 電話問い合わせ */


/* 国内旅行 */
.jp {
    width: 100%;
    padding-bottom: 5%;
    margin-top: 5%;
    border-top: 3px solid #AB3B3A;
    background-color: rgba(148, 122, 109, 0.2);
}
.jp h3 {
    text-align: left;
    margin-top: 5%;
    margin-left: 13%;
    margin-bottom: 0.5%;
    font-size: 1.5vw;
    color: #333;
    font-weight: 700;
    text-indent: 0.5em;
    border-left: 8px solid #AB3B3A;
    font-family: "Nanum Myeongjo", serif;
}
.jp-tour {
    width: 85%;
    margin-left: 13%;
}
.jp-tour ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
}
.jp-tour ul li {
    margin: 0.5%;
    width: 12%;
    border-right: 1px solid silver;
}
.jp-tour ul li a {
    display: block;
    font-size: 1vw;
    text-align: center;
    color: #333;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
}
.jp-tour ul li a:hover {
    text-decoration: underline;
}
/* 国内旅行 */

/* フッター */
footer {
    background-color: rgba(148, 122, 109, 0.1);
}
.all-inc {
    display: flex;
    border-top: 3px solid #AB3B3A;
}
.inc-in {
    width: 25%;
    margin-top: 3%;
    margin-bottom: 3%;
    margin-left: auto;
    margin-right: auto;
    border-right: 1px solid silver;
}
.inc-in:nth-of-type(1) {
    border-right:rgba(0, 0, 0, 0) ;
}
.inc-in:nth-of-type(5) {
    border-right:rgba(0, 0, 0, 0) ;
}
.inc-in img {
    display: block;
    width: 90%;
    margin-top: -10%;
}
.inc-in h4 {
    text-align: left;
    font-size: 1.4vw;
    color: #333;
    font-weight: 700;
    margin-left: 5%;
    font-family: "Noto Sans JP", sans-serif;
}
.inc-in ul {
    width: 70%;
    margin-left: 5%;
    list-style-type: none;
}
.inc-in ul li {
    width: 100%;
}
.inc-in ul li a {
    display: block;
    text-align: left;
    font-size: 1.1vw;
    line-height: 2;
    text-decoration: none;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
}
.inc-in ul li a:hover {
    text-decoration: underline;
}
.inc-in ul .otoiawase {
    margin: 5%;
    padding: 2%;
    background-color: #113285;
    border-radius: 10px;
}
.inc-in ul .otoiawase a {
    font-size: 1.2vw;
    text-align: center;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
}
.inc-in ul .kaiin {
    margin: 5%;
    padding: 2%;
    background-color: #113285;
    border-radius: 10px;
}
.inc-in ul .kaiin a {
    font-size: 1.2vw;
    text-align: center;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
}

.copy {
    padding: 1%;
    background-color: #AB3B3A;
}
.copy p {
    text-align: center;
    color: #fff;
}
/* フッター */

