@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'YujiSyuku-Regular';
    src: url(../font/Yuji_Syuku/YujiSyuku-Regular.ttf);
}

html {
    scroll-behavior: smooth;
}

/*グローバルメニュー*/

header {
    display: flex;
    position: fixed;
    width: 100%;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    z-index: 999;
}

header h1 {
    width: 33%;
    margin-left: 35%;
    padding-top: 1vw;
}

header h1 img {
    width: 100%;
}

header nav {
    position: relative;
}

header nav ul {
    display: none;
    position: absolute;
    top: 11.5vw;
    left: -68vw;
    width: 100vw;
}

header nav ul li {
    position: relative;
    width: 100%;
    list-style-type: none;
    border-top: 0.5px solid #ddd;
}

header nav ul li:nth-child(4) {
    border-bottom: 0.5px solid #ddd;
}

header nav ul li a {
    display: block;
    line-height: 3;
    font-size: 4vw;
    text-align: center;
    text-decoration: none;
    color: #222;
    transition: 0.3s;
    background-color: #fff;
    font-family: 'YujiSyuku-Regular';
}

header nav ul li:hover a {
    color: blue;
    background-color: rgb(223, 247, 249);
    transition: 0.3s;
}

/*トグルボタンが押されたときに付与するクラス*/

nav.NavMenu.active ul {
	display: block;
    background-color: rgba(255,255,255,1);
    animation: humbarger 0.8s;
}

@keyframes humbarger {
	0% { width: 10vw; }
  100% { width: 100vw; }
}

/*トグルボタンのスタイルを指定*/

.Toggle {
	position: fixed;    /* bodyに対しての絶対位置指定 */
    top: 1.5vw;
    left: 12px;
    width: 42px;
	height: 42px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 3;/*ボタンを一番上にしている(押せなくなるから)*/
}

.Toggle span {
	display: block;
	position: absolute;
	width: 22px;
	border-bottom: solid 3px #000;
	transition: .35s ease-in-out;			/*変化の速度を指定*/
	left: 6px;
}

.Toggle span:nth-child(1) {
	top: 9px;
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

.magnifying-glass {
    width: 5%;
    margin-left: auto;
    margin-right: 3%;
}

.magnifying-glass i {
    line-height: 2.5;
    font-size: 4.5vw;
}

/*トップイメージ*/

.top-image1 {
    position: relative;
    padding-top: 8.4%;
}

.top-image1::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vw;
    content: "";
    background: linear-gradient(180deg, transparent, #ffffff);
}

.top-image1 img {
    width: 100%;
}

.top-image1 p:nth-of-type(1) {
    position: absolute;
    top: 27vw;
    left: 10%;
    font-size: 2.5vw;
    line-height: 3;
    letter-spacing: 0.3;
    color: #fff;
    text-shadow: 0 0 5px blue;
}

.top-image1 p:nth-of-type(2) {
    position: absolute;
    top: 30vw;
    left: 10%;
    font-size: 2.5vw;
    line-height: 3;
    letter-spacing: 0.3;
    color: #fff;
    text-shadow: 0 0 5px blue;
}

.top-image1 h2 {
    position: absolute;
    top: 20vw;
    left: 10%;
    font-size: 5vw;
    line-height: 2;
    letter-spacing: 0.5;
    color: #fff;
    text-shadow: 0 0 10px blue;
    font-family: 'YujiSyuku-Regular';
}

/*利尻・礼文ツアー*/

.rishiri-tour {
    position: relative;
    width: 86%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 14vw;
}

.top-image2 {
    position: absolute;
    top: -18vw;
    left: -0.5%;
    width: 100%;
}

.top-image2 img {
    width: 100%;
    border: 5px solid #fff;  
}

.rishiri-tour h2 {
    position: absolute;
    top: -18vw;
    left: 48%;
    font-size: 4vw;
    line-height: 2;
    letter-spacing: 0.2;
    color: #fff;
    text-shadow: 0 0 10px green;
    font-family: 'YujiSyuku-Regular';
}

.rishiri-tour p {
    line-height: 1.6;
    letter-spacing: 0.15em;
    font-size: 2.8vw;
    font-weight: 500;
    text-align: center;
}

.rishiri-tour p:nth-of-type(1) {
    margin-top: 2%;
    margin-left: 1%;
    text-align: left;
}

.rishiri-tour p:nth-of-type(2) {
    margin-top: 10%;
}

.line {
    width: 40%;
    margin: 3% auto;
    transition: 0.2s;
}

.line:hover {
    opacity: 0.8;
    transition: 0.2s;
}

.line img {
    width: 100%;
}

.rishiri-tour p:nth-of-type(5) {
    margin-top: 8%;
}

.rishiri-tour-list {
    width: 40%;
    margin: 5% auto 10%;
    border-radius: 0.5em;
    background-color: rgb(0, 188, 42);
    transition: 0.2s;
}

.rishiri-tour-list:hover {
    opacity: 0.8;
    transition: 0.2s;
}

.rishiri-tour-list a {
    display: block;
    line-height: 4;
    text-align: center;
    text-decoration: none;
    font-size: 3vw;
    font-weight: 600;
    color: #fff;
}

.how-flex {
    display: flex;
    padding: 2%;
    background-image: url(../images/cont_bg01.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.rishiri-tour-box {
    width: 42%;
}

.rishiri-tour-box h3 {
    font-size: 3.5vw;
    color: rgb(0, 102, 159);
 
}

.rishiri-tour-box p {
    margin-top: 2%;
    line-height: 1.6;
    letter-spacing: 0.15em;
    font-size: 2.8vw;
    color: #222;
}

.rishiri-tour-map {
    width: 56%;
    margin-left: 2%;
}

.rishiri-tour-map iframe {
    width: 100%;
    height: 60vw;
}


/*トップに戻る*/

.top {
    position: sticky;
    top: 80vh;
    width: 8%;
    margin-left: auto;
    margin-right: 1%;
    overflow: hidden;
    border-radius: 0.5em;
    z-index: 900;
}

.top a {
    display: block;
    padding-top: 0.8%;
    text-align: center;
    line-height: 1.8;
    font-size: 5vw;
    color: #fff;
    background-color: rgb(0, 132, 205);
}

/*【礼文島・利尻島】限られた季節に一斉に咲き誇る花々が美しい*/

.rishiri-content {
    width: 86%;
    margin-top: 6%;
    margin-left: 7%;
}

.rishiri-content section:nth-of-type(1) {
    margin-bottom: 8%;
}

.rishiri-content p:nth-child(1) {
    font-size: 3.5vw;
    font-weight: 600;
    color: rgb(0, 102, 159);
}

.rishiri-content h2 {
    width: fit-content;
    font-size: 3.5vw;
    border-bottom: 2px dotted #222;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.content1 {
    width: 98%;
    margin-top: 3%;
}

.content1 img {
    width: 100%;
}

.content1 figcaption {
    font-size: 2.3vw;
    text-align: center;
    color: #666;
}

.rishiri-content h3 {
    margin-top: 1%;
    font-size: 3.5vw;
    font-weight: 600;
    color: rgb(0, 102, 159);
}

.rishiri-content p {
    margin-top: 1%;
    padding-bottom: 3%;
    line-height: 1.8;
    letter-spacing: 0.15em;
    font-size: 2.8vw;
    font-weight: 500;
    color: #222;
}

/*まだまだある利尻島・礼文島の見どころ*/

.rishiri-content2 {
    width: 86%;
    margin-top: 6%;
    margin-left: 6%;
}

.rishiri-content2 h2 {
    width: fit-content;
    font-size: 3.5vw;
    border-bottom: 2px dotted #222;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.point-flex1 {
    display: block;
}

.point-flex1-box1 {
    width: 100%;
    margin-bottom: 10%;
}

.point-flex1-box2 {
    width: 100%;
}

.rishiri-content2 h3 {
    margin-top: 1%;
    font-size: 3.5vw;
    font-weight: 600;
    color: rgb(0, 102, 159);
}

.rishiri-content2 p {
    margin-top: 1%;
    line-height: 1.8;
    letter-spacing: 0.15em;
    font-size: 2.8vw;
    font-weight: 500;
    color: #222;
}

.point-flex2 {
    display: block;
    margin-top: 10%;
}

.point-flex2-box1 {
    width: 48%;
}

.point-flex2-box2 {
    width: 48%;
    margin-left: 4%;
}

/*食べ物・特産品*/

.food {
    margin-top: 10%;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 2%;
    background-image: url(../images/cont_bg01.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.food h3 {
    line-height: 3;
    font-size: 3.5vw;
    font-weight: 600;
    color: rgb(0, 102, 159);
}

.food p {
    margin-top: 0;
    line-height: 1.8;
    letter-spacing: 0.1em;
    font-size: 2.8vw;
    color: #222;
}

.food p span {
    margin-right: 2%;
    font-weight: 600;
    color: rgb(0, 102, 159);
}

/*宿泊施設*/

.lodging {
    width: 86%;
    margin-top: 10%;
    margin-left: 7%;
}

.lodging h2 {
    width: fit-content;
    font-size: 3.5vw;
    border-bottom: 2px dotted #222;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.lodging p {
    line-height: 3;
    font-size: 2.8vw;
    font-weight: 600;
    color: rgb(0, 102, 159);
}

.lodging ul li {
    margin-left: 4%;
    line-height: 1.8;
    letter-spacing: 0.15em;
    font-size: 2.8vw;
    font-weight: 500;
    color: #222;
}

/*イベント・祭り*/

.event {
    width: 86%;
    margin-top: 10%;
    margin-left: 7%;
}

.event h2 {
    width: fit-content;
    font-size: 3.5vw;
    border-bottom: 2px dotted #222;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.event table {
    width: 100%;
    margin-top: 2%;
    border-collapse: collapse;
}

.event table th {
    line-height: 3;
    letter-spacing: 0.15em;
    font-size: 2.8vw;
    font-weight: 600;
    color: #222;
    border: 2px solid #aaa;
    background-color: #eee;
}

.event table td {
    padding-left: 2%;
    line-height: 3;
    letter-spacing: 0.15em;
    font-size: 2.8vw;
    font-weight: 500;
    color: #222;
    border: 2px solid #aaa;
}

/*ツアー一覧*/

.tour-list {
    width: 86%;
    margin-top: 10%;
    margin-left: 7%;
}

.tour-list h2 {
    width: fit-content;
    margin-bottom: 2%;
    font-size: 3.5vw;
    border-bottom: 2px dotted #222;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.tour-list p {
    line-height: 1.8;
    letter-spacing: 0.15em;
    font-size: 2.8vw;
    font-weight: 500;
    color: #222;
}

.tour-list p a {
    color: rgb(0, 102, 159);
}

.tour-list p a:hover {
    text-decoration: none;
}

/*パッケージツアー*/

.package-tour {
    width: 100%;
    margin-top: 8%;
    padding-top: 1%;
    padding-bottom: 5%;
    background-image: url(../images/cont_bg01.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.package-tour h3 {
    margin: 1% auto;
    width: 26%;
}

.package-tour h3 img {
    width: 100%;
}

.package-tour-flex {
    display: flex;
    justify-content: center;
}

.package-tour-left {
    width: 43%;
    padding: 2%;
    background-color: #fff;
}

.package-tour-left-tittle {
    margin-top: 3%;
    margin-bottom: 0.5%;
}

.package-tour-left-tittle a {
    font-size: 3.5vw;
    font-weight: 600;
    color: #666;
}

.package-tour-left-tittle a:hover {
    text-decoration: none;
}

.package-tour-left-text {
    display: flex;
    flex-wrap: wrap;
}

.package-tour-left-text a {
    margin-right: 2%;
    line-height: 2;
    font-size: 2.8vw;
    color: rgb(0, 102, 159);
}

.package-tour-left-text a::before {
    content: url(../images/ico_arrow.gif);
}

.package-tour-left-text a:hover {
    text-decoration: none;
}

.package-tour-right {
    width: 43%;
    padding-top: 5%;
    padding-left: 2%;
    padding-right: 2%;
    background-color: #fff;
}

.package-tour-right p {
    line-height: 1.8;
    letter-spacing: 0.1em;
    font-size: 2.8vw;
    font-weight: 500;
    color: #222;
}

.package-tour-right p a {
    color: rgb(0, 102, 159);
}

.package-tour-right p a:hover {
    text-decoration: none;
}

.package-tour-right-button {
    width: 90%;
    margin: 10% auto;
    border-radius: 0.5em;
    background-color: rgb(0, 188, 42);
    transition: 0.2s;
}

.package-tour-right-button:hover {
    opacity: 0.8;
    transition: 0.2s;
}

.package-tour-right-button a {
    display: block;
    line-height: 4;
    text-align: center;
    text-decoration: none;
    font-size: 2.8vw;
    font-weight: 600;
    color: #fff;
}


/*フッター*/

footer {
    width: 98%;
    padding: 1%;
    background-color: #222;
}

footer nav ul {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

footer nav ul li {
    width: 20%;
    list-style: none;
}

footer nav ul li a {
    display: block;
    line-height: 3;
    text-align: center;
    text-decoration: none;
    color: #eee;
    font-size: 1.8vw;
}

footer nav ul li a:hover {
    text-decoration: underline;
}

.footer-logo {
    margin: 1% auto;
    width: 40%;
}

.footer-logo img {
    width: 100%;
}

footer address {
    text-align: center;
    font-size: 2.5vw;
    color: #eee;
}

footer P {
    text-align: center;
    font-size: 2.5vw;
    color: #eee;
}