﻿@charset "utf-8";

/*----- 汎用 -----*/

main section {
    margin: 0 0 60px;
}

.util__inner p {
    line-height: 1.7;
    margin: 0 0 20px;
}

.util__inner a {
    transition: 0.3s;
}

.util__inner a:hover {
    opacity: 0.5;
}

.util__inner h2 {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
    text-align: center;
    line-height: 1.2;
    position: relative;
    margin: 0 auto 30px;
}

.day1 .util__inner h2,
.day2 .util__inner h2 {
    padding: 0 10px 8px;
}

.day1 .util__inner h2::before,
.day2 .util__inner h2::before {
    content: "";
    width: 30px;
    height: 25px;
    background: url(../images/tour/icon_camera_red.svg) no-repeat center center / contain;
    transform: rotate(-20deg);
    position: absolute;
    top: 10px;
    left: -40px;
}

.day1 .util__inner h2::after,
.day2 .util__inner h2::after {
    content: "";
    width: 30px;
    height: 25px;
    background: url(../images/tour/icon_camera_red.svg) no-repeat center center / contain;
    transform: rotate(20deg);
    position: absolute;
    top: 10px;
    right: -40px;
}

.day1 .util__inner h2 {
    background: linear-gradient(transparent 60%, #5db4cc 50%);
}

.day2 .util__inner h2 {
    background: linear-gradient(transparent 60%, #96bc42 50%);
}

.util__inner>ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 0 0 20px;
}

.util__inner>ul li img {
    border-radius: 10px;
}

.util__inner>ul li>p:nth-of-type(1) {
    margin: 0 0 10px;
}

.util__inner>ul li p:last-of-type {
    font-size: 0.8rem;
    margin: 0;
}

.util__inner p.title_day {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px dashed #f98787;
    border-bottom: 2px dashed #f98787;
    position: relative;
    padding: 5px 10px;
    margin: 0 0 60px;
}

.util__inner p.title_day span {
    display: flex;
    align-items: center;
    color: #f98787;
    font-size: 1.6rem;
    font-weight: bold;
    position: relative;
}

.day1 .util__inner p.title_day span::before {
    content: "⚫︎";
    color: #5db4cc;
    margin: 0 10px 0 0;
}

.day1 .util__inner p.title_day span::after,
.day2 .util__inner p.title_day span::after {
    content: "";
    width: 80px;
    height: 25px;
    background: url(../images/tour/icon_bus.svg) no-repeat center center / contain;
    margin: 0 0 0 10px;
}

.day2 .util__inner p.title_day span::before {
    content: "⚫︎";
    color: #96bc42;
    margin: 0 10px 0 0;
}

/*----- 汎用ここまで -----*/


.hero_box {
    max-height: 330px;
    background: #f98787;
    margin: 0 0 60px;
}

.hero_box>div {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    justify-items: center;
    gap: 20px 10px;
}

.hero_box>div h1 {
    width: fit-content;
    font-size: 2rem;
    line-height: 1.5;
    position: relative;
    padding: 0 0 0 20px;
}

.hero_box>div h1::after {
    content: "";
    width: 30px;
    height: 25px;
    background: url(../images/tour/icon_camera_white.svg) no-repeat center center / contain;
    transform: rotate(20deg);
    position: absolute;
    top: -20px;
    right: 0;
}

.hero_box>div h1 span {
    color: #fff;
    font-size: 1.6rem;
}

.hero_box>div h1 img {
    max-width: 130px;
    border-left: 6px solid;
    padding: 0 10px 0 5px;
}

.hero_box>div>div:nth-of-type(2) img {
    max-height: 330px;
    object-fit: contain;
}

.hero_box+div img {
    max-height: 250px;
    object-fit: cover;
}

.hero_box+div {
    margin: 0 auto 60px;
}

.koutei_box {
    margin: 0 0 60px;
}

.koutei_box .util__inner {
    background: #fee7e7;
    border-radius: 10px;
    padding: 60px;
    margin: 0 auto;
}

.koutei_box .util__inner h2::before {
    content: "";
    width: 80px;
    height: 25px;
    background: url(../images/tour/icon_bus.svg) no-repeat center center / contain;
}

.koutei_box .util__inner h2::after {
    content: "";
    width: 80px;
    height: 25px;
    background: url(../images/tour/icon_bus.svg) no-repeat center center / contain;
    margin: 0 0 0 10px;
}

.koutei_box .util__inner>div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 30px;
}

.koutei_box .util__inner>div>div {
    width: 100%;
    max-width: 400px;
}

.koutei_box .util__inner>div>div>p {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 100vw;
    position: relative;
    padding: 10px;
    margin: 0 0 20px;
}

.koutei_box .util__inner>div>div>p::after {
    content: "";
    width: 15px;
    height: 12px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    right: 20px;
}

.koutei_box .util__inner>div>div:nth-of-type(1)>p {
    background: #5db4cc;
}

.koutei_box .util__inner>div>div:nth-of-type(2)>p {
    background: #96bc42;
}

.koutei_box .util__inner>div>div>p span {
    font-size: 1.2rem;
    border-right: 1px solid;
    padding: 0 10px 0 0;
    margin: 0 10px 0 0;
}

.koutei_box .util__inner>div>div>ul {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.koutei_box .util__inner>div>div>ul li {
    position: relative;
}

.koutei_box .util__inner>div>div:nth-of-type(1)>ul li::before {
    content: "⚫︎";
    color: #5db4cc;
}

.koutei_box .util__inner>div>div:nth-of-type(2)>ul li::before {
    content: "⚫︎";
    color: #96bc42;
}

.koutei_box .util__inner>div>div>ul li a {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.koutei_box .util__inner>div>div:nth-of-type(2)>ul {
    border-bottom: 2px dashed #f98787;
    padding: 0 0 30px;
    margin: 0 0 20px;
}

.koutei_box .util__inner>div>div:nth-of-type(2)>a {
    display: flex;
    align-items: center;
    text-decoration: underline;
    text-underline-offset: 5px;
    position: relative;
}

.koutei_box .util__inner>div>div:nth-of-type(2)>a::before {
    content: "";
    width: 30px;
    height: 24px;
    background: url(../images/tour/icon_bag.svg) no-repeat center center / contain;
    margin: 0 10px 0 0;
}

.koutei_box .util__inner>div>div:nth-of-type(2)>a::after {
    content: "";
    width: 15px;
    height: 12px;
    background: #f98787;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin: 0 0 0 10px;
}

.sanka_box {
    display: flex;
    flex-flow: column;
    gap: 20px;
    margin: 50px 0 0;
}

.sanka_box>div {
    background: #fee7e7;
    padding: 0 30px 30px;
}

.sanka_box>div>p {
    width: fit-content;
    color: #fff;
    font-weight: bold;
    background: #f98787;
    border-radius: 0 0 10px 10px;
    padding: 10px 20px;
    margin: 0 0 10px;
}

.sanka_box>div>ul {
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.sanka_box>div>ul li {
    border-bottom: 1px dashed;
    padding: 0 10px 5px;
}

.matome_box .util__inner {
    background: #fee7e7;
    border-radius: 10px;
    padding: 30px;
}

.matome_box .util__inner>h2 {
    flex-flow: column;
    color: #f98787;
}

.matome_box .util__inner>h2::before {
    content: "";
    width: 30px;
    height: 24px;
    background: url(../images/tour/icon_bag.svg) no-repeat center center / contain;
    margin: 0 10px 0 0;
}

.demae_box {
    background: #f98787;
    padding: 30px 0
}

.demae_box>div {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.demae_box>div>div {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-flow: column;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px 20px;
    margin: 0 0 10px;
}

.demae_box>div>a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.demae_box>div>div a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f98787;
    text-decoration: underline;
    text-underline-offset: 3px;
    position: relative;
    margin: 0 0 10px;
}

.demae_box>div>div a::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../images/index/icon_pencil.svg) no-repeat center center / contain;
}

.demae_box>div>div img {
    max-width: 300px;
}


@media only screen and (max-width:1400px) {

    .hero_box>div h1 {
        font-size: 1.2rem;
    }

    .hero_box>div h1 img {
        display: block;
    }

    .hero_box>div h1 span {
        font-size: 1.2rem;
    }

    .hero_box>div h1::after {
        top: 10px;
    }
}

@media only screen and (max-width:767px) {

    /*----- 汎用 -----*/

    .util__inner h2 {
        font-size: 1.4rem;
    }

    .util__inner>ul {
        grid-template-columns: 1fr;
    }

    .util__inner p.title_day {
        flex-flow: column;
    }

    .day1 .util__inner h2,
    .day2 .util__inner h2 {
        padding: 0 5px 2px;
    }

    .day1 .util__inner h2 {
        background: linear-gradient(transparent 80%, #5db4cc 50%);
    }

    .day2 .util__inner h2 {
        background: linear-gradient(transparent 80%, #96bc42 50%);
    }

    /*----- 汎用ここまで -----*/

    .hero_box {
        max-height: 100%;
        padding: 30px 0;
    }

    .hero_box>div {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .hero_box>div>div:nth-of-type(2) img {
        max-height: 100%;
    }

    .koutei_box .util__inner {
        border-radius: 0;
        padding: 30px 20px;
    }

    .koutei_box .util__inner>div {
        grid-template-columns: 1fr;
    }

    .sanka_box>div {
        padding: 0 20px 20px;
    }

    .demae_box>div>div {
        padding: 15px 10px 20px;
    }
}