/* --- Reset CSS --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "YuGothic", "Meiryo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
}

img,
video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    display: block;
    text-align: center;
    font-weight: 500;
}

button,
input,
select,
textarea {
    font: inherit;
    border: none;
    background: none;
    outline: none;
}

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

h3 {
    font-size: clamp(22px, 4vw, 32px);
}

h4 {
    font-size: 24px;
}

p {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.8;
}


/*共通のパーツ*/
@media screen and (max-width:600px) {
    .only-pc {
        display: none;
    }
}

@media screen and (min-width:600px) {
    .only-sp {
        display: none;
    }
}

@media screen and (max-width:800px) {
    .only-pc2 {
        display: none;
    }
}

@media screen and (min-width:800px) {
    .only-sp2 {
        display: none;
    }
}

.section {
    min-height: 100vh;
    padding: 15vh 0;
    box-sizing: border-box;
}

.wrap {
    width: 92%;
    max-width: 1000px;
    margin: auto;

}

.title {
    height: clamp(50px, 10vw, 90px);
    margin-bottom: 50px;
}

a.blue-button,
a.white-button {
    width: 100%;
    font-size: 1.2em;
    border-radius: 30px;
    padding-top: 0.5em;
    padding-bottom: 0.6em;
    line-height: 2;
    transition: 0.3s;
}

a.blue-button {
    background: #0050E9;
    color: #fff;
}

a.white-button {
    background: #fff;
    color: #0050E9;
}

a.blue-button:hover,
a.white-button:hover {
    background: #1982eb;
    color: #fff;
}

a.link-button {
    transition: 0.3s;
}

a.link-button:hover {
    opacity: 0.6;
}

a.fv-button {
    background: #fff;
    margin: auto;
    color: #E13284;
    line-height: 70px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 0 #000;
    font-size: clamp(22px, 4vw, 32px);
    border-radius: 40px;
    transition: 0.3s;
    padding-bottom: 2px;
}

a.fv-button:hover {
    transform: translateY(5px);
    box-shadow: 0 4px 0 #000;
}


/*個別のパーツ*/
/*TOP*/
.top {
    height: 98vh;
    min-height: 600px;
    background-image: url('./img/bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;

}

.top .top-copy {
    width: 90vw;
    margin-top: 2%;
    margin-left: 5vw;
    height: 15%;
    margin-bottom: -8%;
}

.top .top-title {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 80vw;
    max-height: 75%;
    margin: 0 auto;
}

.top .top-logo {
    display: flex;
    width: 70vw;
    height: 20%;
    margin: auto;
    align-items: center;
    justify-content: center;
    gap: 10px 5%;
}

.top .top-logo img {
    height: 30%;
    width: auto;
}

@media(max-width:600px) {
    .top .top-title {
        max-width: 96vw;
    }

    .top .top-logo {
        flex-direction: column;
    }
}

@media(max-width:400px) {
    .top .top-copy {
        margin-bottom: -12%;
    }

    .top .top-logo {
        margin-bottom: 10%;
    }
}

/*intro*/
.intro {
    min-height: 100vh;
    background: #0050E9;
}

.intro p {
    color: #fff;
    text-align: center;
    font-size: clamp(16px, 2.5vw, 28px);
    line-height: 2;
    letter-spacing: 0.1em;
}




/*campaign*/
.campaign {
    min-height: 100vh;
    background: #F7D62E;
}

.campaign .wrap> p{
    margin-bottom: 1.5em;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
}

h4.campaign-item {
    display: flex;
    align-items: center;
    gap: 0.5em;
    width: 40%;
}

h4.campaign-item::before {
    display: block;
    content: '';
    position: relative;
    width: 0.8em;
    height: 0.8em;
    margin-right: 0.2em;
    background: #F7D62E;
    transform: rotate(45deg);
}

.campaign-term > div{
    flex: 1;
}

.campaign-term,
.campaign-target {
    background: #fff;
    display: flex;
    margin-bottom: 10px;
    padding: 15px 4%;
    gap: 15px 0;
}

@media(max-width:600px) {

    .campaign-term,
    .campaign-target {
        flex-direction: column;
    }

    h4.campaign-item,
    .campaign-target p {
        width: 100%;
    }
}

.campaign-term {
    align-items: baseline;
}

.campaign-term h3 {
    letter-spacing: 0.1em;
    margin-bottom: 0.8em;
}

.campaign-target {
    align-items: center;
}

.campaign-join {
    background: #fff;
    padding: 15px 4% 3em 4%;
}

.campaign-join h4 {
    margin-bottom: 1em;
}

.campaign-join-content {
    display: flex;
    gap: 1.5em 2%;
    margin-bottom: 1em;
}

@media(max-width:600px) {
    .campaign-join-content {
        flex-direction: column;
    }
}

.campaign-join-content>div {
    flex: 1;
    border: solid 1px #000;
    border-radius: 10px;
    padding: 2em 2%;
    position: relative;
}

@media(min-width:600px) {
    .campaign-join-content>div:not(:last-child)::after {
        content: '';
        display: block;
        position: absolute;
        right: -2.05em;
        top: 35%;
        background: #F7D62E;
        width: 2em;
        height: 30%;
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        z-index: 1;
    }
}

@media(max-width:600px) {
    .campaign-join-content>div:not(:last-child)::after {
        content: '';
        display: block;
        position: absolute;
        left: 35%;
        bottom: -2.55em;
        background: #F7D62E;
        width: 30%;
        height: 2.5em;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        z-index: 1;
    }
}

.campaign-join-content>div h4 {
    text-align: center;
}

.campaign-join-content>div img {
    height: 200px;
    margin-bottom: 1em;
}

.campaign-act {
    background: #E13284;
    padding: 3em 6%;
    position: relative;
}

.campaign-act::before {
    position: absolute;
    top: -2em;
    left: 40%;
    content: '';
    display: block;
    background-image: url('./img/arrow.svg');
    width: 20%;
    height: 4em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.campaign-act h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 1em;
    letter-spacing: 0.1em;
}

.campaign-act > p{
    background: #fff;
    padding: 20px 5%;
    margin-bottom: 2em;
    color: #e13284;
}

.campaign-act > p span{
    text-align: center;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.campaign-act-additional {
    margin-top: 4em;
    color: #fff;
    border: solid 1px #fff;
    padding: 1em;
}

.campaign-act-additional>div {
    margin-top: 25px;
}

.campaign-act-additional>div a {
    flex: 1;
    max-width: 500px;
    margin: 0.5em auto;
}


.campaign-attention{
    border:solid 1px #e13284;
    padding: 30px 5%;
    margin-top: 60px;
}

.campaign-attention h3{
    text-align: center;
    margin-bottom: 1em;
}


/*flight*/
.flight {
    min-height: 100vh;
    background: #0050E9;
}

.flight .title {
    height: clamp(100px, 20vw, 180px);
}

/* 基本設定 */
.flight-content {
    display: flex;
    gap: 10px;
    background: #fff;
    color: #0050E9;
    padding: 10px 4%;
    font-size: 18px;
    letter-spacing: 0.1em;
}

/* テーブル全般設定 */
.flight-content table {
    border-collapse: separate;
    border-spacing: 0 5px;
}

.flight-content table:first-child {
    width: 130px;
}

.flight-content table:not(:first-child) {
    flex: 1;
}

/* 行の高さ設定 */
.flight-content table tr:first-child {
    height: 60px;
}

.flight-content table tr:not(:first-child) {
    height: 56px;
}

/* 特定セルのスタイル設定 */
.flight-content table tr:not(:first-child) td span {
    display: block;
    font-size: 0.8em;
}

.flight-content table:not(:first-child) th span {
    font-size: 1.4em;
    margin-right: 0.2em;
    display: inline-block;
}

.flight-content table:not(:first-child) th span::before {
    content: '';
    display: inline-block;
    background-image: url(./img/plane.svg);
    width: 1em;
    height: 0.9em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 0.2em;
}

.flight-content table tr td:last-child:not(:first-child) {
    background: #E6F2FF;
    text-align: center;
}

.flight-content table:not(:first-child) tr:last-child td:last-child {
    display: flex;
    justify-content: center;
    height: 60px;
    padding: 10px;
}

.flight-content table:not(:first-child) tr:last-child td:last-child img {
    width: 50%;
}

/* レスポンシブ設定 */
@media(max-width: 600px) {
    .flight-content {
        flex-direction: column;
    }

    .flight-content table:first-child {
        display: none;
    }

    .flight-content table:not(:first-child) td:first-child {
        width: 110px;
    }

    .flight-content table:not(:first-child):not(:last-child) {
        padding-bottom: 20px;
        border-bottom: 3px solid #eee;
    }
}

@media(min-width: 600px) {
    .flight-content table tr td:first-child:not(:last-child) {
        display: none;
    }
}



.flight-links {
    margin-top: 50px;
}

.flight-links p {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.flight-links div {
    display: flex;
    gap: 10px 5%;
}

@media(max-width: 600px) {
    .flight-links div {
        flex-direction: column;
    }
}

.flight-links div a {
    background: #fff;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 3%;
    min-height: 100px;
    gap: 10%;
}

.flight-links div a img {
    width: 30%;
}

.flight-links div a span {
    background: #e9da03;
    padding: 15px 25px 15px 10px;
    clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%);
    width: 100%;
    transition: 0.3s;
}

.flight-links div a span:hover {
    background: #fff45a;
}


.flight-campaign{
    margin-top: 100px;
    background: #fbffaf;
    padding: 50px 4% 20px 4%;
}

.flight-campaign .title{
    height: clamp(90px, 20vw, 120px);
    margin-bottom: 30px;
}

.flight-campaign a{
    margin-bottom: 10px;
    width: 100%;
}

.flight-campaign a img{
    max-width: 600px;
    margin: auto;
}


/*airport*/
.airport-content,
.airport-access {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.airport-content img {
    border-radius: 1em;
    box-shadow: 0 4px 20px #0003;
    margin: 2em 0;
}

.airport-content a {
    margin: auto;
    max-width: 550px;
}

.airport .wrap>img {
    margin-bottom: 3em;
}

.airport-access{
    margin-top: 120px;
}

.airport-access h3 {
    font-size: clamp(36px, 5vw, 46px);
    text-align: center;
    margin-bottom: 1em;
}

.airport-access h4 {
    font-size: 20px;
    color: #0050E9;
    margin-top: 30px;
    margin-bottom: 10px;
}

.airport-access>div {
    background: #edf4ff;
    display: flex;
    padding: 10px 3%;
    margin-bottom: 5px;
}

.airport-access>div>div {
    flex: 1;
}

@media(min-width:600px){
    .airport-access>div>div {
        display: flex;
        align-items: center;
    }
}

.airport-access div p {
    font-size: 18px;
    font-weight: 600;
}

@media(min-width:600px){
    .airport-access div p {
        width: 36%;
        margin: 0;
    }
}

.airport-access div a {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.1em;
    color: #fff;
    width: 24%;
    max-width: 120px;
    text-align: center;
    background: #0050E9;
    border-radius: 5px;
    box-shadow: 0 4px 4px #0003;
    transition: 0.3s;
}

.airport-access div a:hover{
    background: #1982eb;
}

.airport-access div span {
    display: inline-block;
    padding: 0 3%;
    font-size: 0.9em;
    border-left: solid 1px #ccc;
}

@media(max-width:600px){
    .airport-access div span:nth-child(2) {
        border: none;
        padding-left: 0;
    }
}

/*sightseeing*/
.sightseeing {
    min-height: 100vh;
    background: #0050E9;
}

.sightseeing a {
    max-width: 550px;
    margin: auto;
    border-radius: 0;
    min-height: 300px;
}

.sightseeing a span {
    display: block;
    margin-top: 0.1em;
    font-size: 0.6em;
}


/*qa*/
.qa h4 {
    margin-bottom: 0.5em;
}

.qa .wrap>div {
    border-bottom: solid 1px #ccc;
    padding: 0.6em 0;
}

.qa .q {
    margin-bottom: 0.4em;
}

.qa .q,
.qa .a {
    padding-left: 2em;
    position: relative;
}

.qa .q::before,
.qa .a::before {
    position: absolute;
    top: 0.1em;
    left: 0;
    content: '';
    display: block;
    width: 1.5em;
    height: 1.5em;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.qa .q::before {
    background-image: url('./img/q.svg');
}

.qa .a::before {
    background-image: url('./img/a.svg');
}



.contact.section {
    background: #666666;
    min-height: auto;
}

.contact .wrap div{
    background: #fff;
    padding: 10px 4%;
}

.contact .wrap div p{
    font-size: 1.1em;
}


footer {
    text-align: center;
    color: #fff;
    background: #000;
    padding: 1.5em 0;
}

footer p {
    font-size: 0.8em;
}