/*header*/
#container{
    background: linear-gradient(to right, white 77%, #EFF1F5 77%);
}

.page-header {
    display: flex;
    float: left;
    width: 100%;
}

.background-top {
    background-color: rgba(239, 241, 245, 1);
    width: 100%;
    height: 252px;
}

.background1 {
    background-color: rgba(239, 241, 245, 1);
    width: 24%;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    height: 100%;
    right: 0;
}

.detail-area{
    float: left;
    max-width: 70%;
}

.pageTitle {
    margin-bottom: 0;
    position: relative;
    top: -24px;
}

.pageTitle .title {
    font-size: 48px;
    line-height: 56px;
    font-family: "adobe-garamond-pro",serif;
    font-weight: 600;
    color: rgba(0, 35, 104, 1);
    padding-bottom: 15px;
}

.pageTitle .sub-title {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: Helvetica,Arial, sans-serif;
}

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

    .detail-area{
        max-width: 100%;
    }

    #container{
        background: none;
    }

    .background-top {
        height: 165px;
    }

    .pageTitle {
        top: -30px;
        max-width: 100%;
    }

    .pageTitle .title {
        font-size: 38px;
    }

    .pageTitle .sub-title {
        font-size: 14px;
    }

}


/**
* 詳細部
**/

.contents{
    float: left;
}

.guide-section {
    margin-top: 64px;
    padding-bottom: 150px;
}

.guide-section .title-wrapper {
    position: relative;
    padding: 25px 0;
    border-bottom: rgba(216, 216, 216, 1) solid 2px;
    margin-bottom: 40px;
}

.guide-section .guide-title-international {
    font-family: "adobe-garamond-pro", serif;
    font-size: 30px;
    color: rgba(0, 35, 104, 1);
    font-weight: 600;
}

.guide-section .guide-title-international:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    background-color: rgba(0, 35, 104, 1);
    left: 0;
    top:5px;
}

.guide-section .inner-guide-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.guide-section .media {
    display: flex;
    border-bottom: rgba(216, 216, 216, 1) solid 1px;
    padding-bottom:20px;
}


.guide-section .media .media__figure {
    width: 40%;
}

.guide-section .media .header{
    width: 60%;
}

.guide-section .media .header .guide-title {
    font-size: 28px;
    font-family: "adobe-garamond-pro", serif;
    color: rgba(0, 35, 104, 1);
    font-weight: 600;
}

.guide-section .media .header .text01 {
    font-size: 16px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
}

.guide-section .button-v2 {
    text-align: initial;
    border: 1px solid rgba(216, 216, 216, 1);
    padding: 14px 75px;
    color: #003399;
    margin-bottom: 10px;
}

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

    .guide-section {
        margin-top: 30px;
        padding-bottom: 50px;
    }

    .contents{
        max-width:100% ;
    }

    .guide-section .inner-guide-section {
        gap: 20px;
    }

    .guide-section .guide-title-international {
        font-size: 22px;
        font-weight: 600;
        padding : 14px 0 10px 0;
    }

    .guide-section .guide-title-international:before {
        width: 20px;
    }

    .guide-section .media {
        display: block;
        margin-top: 10px;
    }

    .guide-section .media .media__figure {
        width: 100%;
    }

    .guide-section .media .header{
        width: 100%;
    }

    .guide-section .media .header .guide-title {
        padding-top: 20px;
        font-size: 22px;
    }

    .guide-section .media .header .text01 {
        padding-top: 20px;
        font-size: 14px;
    }

    .guide-section .button-container{
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .guide-section .button-container span {
        font-size: 14px;
    }
}

/* side */
.side {
    width: 348px;
    float: right;
    top: -50px;
    position: relative;
    left: 30px;
}

.side .navLocal {
    margin-top: 0;
}

.accordion {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.accordion-item:last-child {
    margin-bottom: 10px;
}

.accordion-toggle {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.accordion-toggle::after {
    content: url("../png/vectordown.png");
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -12px;
}

.active .accordion-toggle::after {
    content: url("../png/vectorup.png");
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -12px;
}

.accordion-content {
    display: none;
    padding-left: 10px;
}

.accordion-content > li > a.top-link {
  background: #EFF1F5;
}
.accordion-content > li > a {
  border-bottom: 1px solid #D8D8D8;
}

.accordion-item.active .accordion-content {
    display: block;
}

@media screen and (max-width: 860px) {
    .side {
        display: block;
        margin-bottom: 50px;
        width: 100%;
        position: static;
    }
}


