@charset "UTF-8";
//@import url('https://fonts.googleapis.com/css?family=Montserrat');
//@import url('https://fonts.googleapis.com/css?family=Montserrat:300');
@import url('https://fonts.googleapis.com/css?family=Vollkorn+SC');

@font-face {
    font-family: 'SerifJapanese';
    font-style: normal;
    font-weight: 200;
    src: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/fonts/SourceHanSerifJP-Bold.woff') format('woff'),
        /* Modern Browsers */
        url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/fonts/SourceHanSerifJP-Bold.TTF') format('truetype');
    /* Safari, Android, iOS */
}




html {
    height: 100%;
    overflow-y: scroll;
    margin-bottom: 1px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    padding: 0 0 53px 0;
    height: 100%;
    color: #222;
    font-size: 17px;
    text-align: left;
    line-height: 1.5em;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    background: #fff;
}

.inner {
    width: 1000px;
    margin: 0 auto;
}

.column {
    -js-display: flex;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.PC {
    display: block;
}

.SP {
    display: none;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    body {
        padding: 0 0 54px 0;
    }

    .inner {
        width: 90%;
    }

    .column {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .PC {
        display: none;
    }

    .SP {
        display: block;
    }

    img.SP {
        width: 100%;
    }
}


/* -----------------------------------------------
	クリア
----------------------------------------------- */
*,
*:before,
*:after {
    box-sizing: border-box;
}

a {
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}

a:link,
a:visited {
    color: #222;
}

a:hover {
    color: #aaa;
}

a img:hover {
    opacity: 0.8;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
    font-size: 1em;
    font-weight: normal;
}

img {
    border: 0;
    margin: 0;
    padding: 0;
    max-width: 100%;
    line-height: 100%;
    vertical-align: bottom;
}

ul,
ol {
    margin: 0;
    padding: 0;
    clear: both;
    display: block;
    overflow: hidden;
    list-style-type: none;
}

li {
    overflow: hidden;
}

i {
    font-style: normal;
}


/* -----------------------------------------------
	Header
----------------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 74px;
    padding: 0;
    z-index: 100000;
}

.header_bg,
.header_bg2 {
    background-color: rgba(255, 255, 255, 0.85);
}

header .wrapper {
    position: relative;
}

header nav {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    padding: 20px;
    z-index: 1000;
}

header nav.column {
    align-items: center;
    -webkit-align-items: center;
}


header nav li+li {
    padding: 0;
    margin-left: 30px;
}

header nav li:last-child {
    margin-right: 10px;
}

header nav li a:link,
header nav a:visited {
    margin-bottom: 5px;

    color: #222;
    font-size: 15px;
    line-height: 100%;
    font-family: 'Montserrat', sans-serif;
}


.header_bg nav li a:link,
.header_bg nav li a:visited {
    color: #222;
}

header nav li a:hover {
    color: #222;
    border-bottom: 2px solid #222;
}


header nav li a.current {
    /*border-bottom: 2px solid #222;*/
}



/* -----------------
	SP
----------------- */
#sp_btn {
    display: none;
}

@media only screen and (max-width: 1024px) {
    header nav li+li {
        margin-left: 20px;
    }
}

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

    #sp_btn,
    #sp_btn span {
        display: inline-block;
        cursor: pointer;
        transition: all .4s;
        box-sizing: border-box;
    }

    #sp_btn {
        position: absolute;
        top: 13px;
        right: 10px;
        margin: 0;
        padding: 8px;
        z-index: 100;
    }

    #sp_btn label {
        position: relative;
        display: block;
        width: 29px;
        height: 25px;

        overflow: hidden;
    }

    #sp_btn span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #000;
    }

    .header-Flg #sp_btn span {
        background-color: #fff;
    }

    .header_bg #sp_btn span {
        background-color: #000;
    }

    #sp_btn span:nth-of-type(1) {
        top: 0;
    }

    #sp_btn span:nth-of-type(2) {
        top: 11px;
    }

    #sp_btn span:nth-of-type(3) {
        bottom: 0;
    }

    #sp_btn.active span:nth-of-type(1) {
        -webkit-transform: translateY(11px) rotate(-44deg);
        transform: translateY(11px) rotate(-44deg);
    }

    #sp_btn.active span:nth-of-type(2) {
        opacity: 0;
    }

    #sp_btn.active span:nth-of-type(3) {
        -webkit-transform: translateY(-11px) rotate(45deg);
        transform: translateY(-11px) rotate(45deg);
    }

    .fixed {
        position: fixed;
        width: 100%;
        height: 100%;
    }

    #SlideMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        border: none;
    }

    #SlideMenu .SlideMenu-Content {
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.9);

        -webkit-align-content: flex-start;
        align-content: flex-start;
    }

    header nav ul {
        border-top: 1px solid #fff;
        border-left: 1px solid #fff;

        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;

        -webkit-align-content: flex-start;
        align-content: flex-start;

        width: 100%;
        padding: 74px 0 0 10%;
    }

    header nav ul li {
        display: block;
        width: 50%;
        height: 120px;

        margin: 0;
        padding: 0;

        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }

    header nav li:last-child {
        margin: 0;
    }

    header nav li+li {
        margin: 0;
    }

    header nav ul li a:link,
    header nav ul li a:visited {
        display: block;
        margin: 0;
        padding: 0;

        color: #fff !important;
        font-size: 24px;
        text-align: center;
        line-height: 130px;
    }

    .Nav-Home {
        background: #fff url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Nav-Home.jpg') no-repeat left top;
        background-size: cover;
    }

    .Nav-Concept {
        background: #fff url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Nav-Concept.jpg') no-repeat left top;
        background-size: cover;
    }

    .Nav-Fair {
        display: none;
    }

    .Nav-Chapel {
        background: #fff url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Nav-Chapel.jpg') no-repeat left top;
        background-size: cover;
    }

    .Nav-Stage {
        background: #fff url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Nav-Stage.jpg') no-repeat left top;
        background-size: cover;
    }

    .Nav-Cuisine {
        background: #fff url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Nav-Cuisine.jpg') no-repeat left top;
        background-size: cover;
    }

    .Nav-Plan {
        background: #fff url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Nav-Plan.jpg') no-repeat left top;
        background-size: cover;
    }

    .Nav-Blog {
        background: #fff url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Nav-Blog.jpg') no-repeat left top;
        background-size: cover;
    }

    .Nav-Report {
        background: #fff url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Nav-Report.jpg') no-repeat left top;
        background-size: cover;
    }

    .Nav-News {
        background: #fff url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Nav-News.jpg') no-repeat left top;
        background-size: cover;
    }

    .Nav-Access {
        background: #fff url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Nav-Access.jpg') no-repeat left top;
        background-size: cover;
    }

    .Slide_Reservation {
        width: 100%;
        padding: 20px 50px;
    }

    .Slide_Reservation a {
        display: block;
        padding: 20px;

        color: #fff !important;
        font-size: 18px;
        text-align: center;
        background: #2c2d2c;
    }

    .Slide_Reservation a+a {
        margin-top: 15px;
    }

    .Slide_Reservation a strong {
        font-size: 24px;
        font-weight: normal;
        font-family: 'Montserrat', sans-serif;
    }
}

@media only screen and (max-width: 420px) {
    header h1 {
        width: 200px;
    }

    header nav ul li {
        height: 75px;
    }

    header nav ul li a:link,
    header nav ul li a:visited {
        font-size: 18px !important;
        line-height: 75px;
    }

    .Slide_Reservation {
        padding: 30px;
    }

    .Slide_Reservation a {
        padding: 10px;
        font-size: 14px;
    }

    .Slide_Reservation a strong {
        font-size: 16px;
    }

    .Slide_Reservation a img {
        width: 20px;
        height: 20px;
        margin-bottom: 4px;
    }
}

@media only screen and (max-width: 380px) {
    .Slide_Reservation {
        padding: 15px;
    }

    header nav ul li {
        height: 70px;
    }

    header nav ul li a:link,
    header nav ul li a:visited {
        line-height: 70px;
    }

    .Slide_Reservation a+a {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 375px) {
    header nav ul {
        /*padding: 19.6% 0 0 10%;*/
    }
}

@media only screen and (max-width: 360px) {
    header nav ul li {
        height: 50px;
    }

    header nav ul li a:link,
    header nav ul li a:visited {
        line-height: 50px;
    }

    .Slide_Reservation a+a {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 320px) {
    header nav h1 {
        width: 200px;
    }

    header nav ul {
        padding: 22.5% 0 0 10%;
    }

    header nav ul li a:link,
    header nav ul li a:visited {
        font-size: 18px;
    }

    .Slide_Reservation a:link,
    .Slide_Reservation a:visited {
        font-size: 12px;
    }

    .Slide_Reservation a img {
        width: 15px;
        height: 15px;
        margin-bottom: 8px;
    }
}


/* -----------------------------------------------
	Nav-Reservation
----------------------------------------------- */
.Nav-Reservation {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;

    background: #2c2d2c;
    z-index: 1000;
}

.Nav-Reservation a:link,
.Nav-Reservation a:visited {
    display: block;
    width: 50%;
    padding: 20px 0;

    color: #fff;
    font-size: 14px;
    line-height: 1em;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.Nav-Reservation a i {
    margin-left: 20px;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

.Nav-Reservation a img {
    margin-right: 20px;
}

.Nav-Reservation a+a {
    border-left: 1px solid #535453;
}

.Nav-Reservation a:hover {
    color: #aaa;
}

@media only screen and (max-width: 768px) {
    .Nav-Reservation {
        display: none;
    }
}


/* -----------------------------------------------
	Nav-Reservation SP
----------------------------------------------- */
.Nav-Reservation_sp {
    display: none;
}

@media only screen and (max-width: 768px) {
    .Nav-Reservation_sp {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;

        -js-display: flex !important;
        display: -webkit-flex !important;
        display: flex !important;

        -webkit-justify-content: space-between !important;
        justify-content: space-between !important;

        display: block;
        margin-top: -42px;

        background: #282828;
        z-index: 100000;
    }

    .Nav-Reservation_sp a:link,
    .Nav-Reservation_sp a:visited {
        width: 50%;
        /* width: 33.3%; */
        padding: 8px 0;

        color: #fff;
        font-size: 13px;
        line-height: 1em;
        text-align: center;
        font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    }

    .Nav-Reservation_sp a i {
        display: block;
        margin-top: 10px;
    }

    .Nav-Reservation_sp a+a {
        border-left: 1px solid #535453;
    }

    .Nav-Reservation_sp a:hover {
        color: #aaa;
    }

    .Nav-Reservation_sp img {
        width: 23px;
        height: 23px;
    }
}

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

    .Nav-Reservation_sp a:link,
    .Nav-Reservation_sp a:visited {
        padding: 5px 0;
        font-size: 12px;
    }
}


/* -----------------------------------------------
	Top-MainImage
----------------------------------------------- */
.Top-MainInage {}

.Top-MainInage .Info {
    position: absolute;
    right: 20px;
    /* bottom: 11%; */
    bottom: 55px;

    width: 300px;
    padding: 10px;
    text-align: center;

    background: #fff;
    border: 2px solid #b8a748;
    z-index: 1000;
}

.Top-MainInage .Info p {
    font-size: 14px;
}

.Top-MainInage a:link,
.Top-MainInage a:visited {
    display: block;
    margin: 10px auto 10px auto;
    padding: 5px;
    width: 220px;

    font-size: 14px;
    border: 1px solid #222;
}

.Top-MainInage a:hover {
    border: 1px solid #aaa;
}

.Top-MainInage .Info-Content {
    position: relative;
}

.Top-MainInage .Info #Btn_hidden {
    cursor: pointer;
    position: absolute;
    top: -25px;
    right: -25px;
}

.Top-MainInage #simple .pc-catch {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    z-index: 5;
    text-align: center;
    font-family: 'SerifJapanese', serif;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.25em;
    text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 10px #fff;
}

.Top-MainInage #simple2.slider-pro img.sp-image {
    height: calc(100vh - 167px) !important;
    object-fit: cover;
}

.Top-MainInage #simple2 .catch {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    text-align: center;
}

.Top-MainInage #simple2 .catch img {
    width: auto;
    max-width: 320px;
    height: auto;
}

.Top-MainInage #simple2 .sp-catch {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 5;
    text-align: center;
    font-family: 'SerifJapanese', serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.15em;
    text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 10px #fff;
}


/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Top-MainInage .Info {
        display: none;
    }

    .Top-MainInage img.PC {
        display: none !important;
    }

    .Top-MainInage img.SP {
        display: inline !important;
    }

    .sp-image {
        border: 1px solid red;
    }
}

/* -----------------------------------------------
	TOP prevention_movie
----------------------------------------------- */
#prevention_movie {
    max-width: 520px;
    margin: 50px auto 0;
    padding: 0 10px;
    text-align: center;
}

#prevention_movie h2 {
    margin-bottom: 10px;
    font-size: 24px;
    font-family: 'SerifJapanese', serif;
}

#prevention_movie .movie {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

#prevention_movie .movie video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    outline: 0;
}


/* -----------------------------------------------
	Top-Bestrate
----------------------------------------------- */
.Top-Bestrate {
    margin-top: 50px;
    text-align: center;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Top-Bestrate {
        margin-bottom: 50px;
    }
}

/* -----------------------------------------------
	Top-Concept
----------------------------------------------- */
.Top-Concept {
    align-items: flex-start;
    padding: 100px 0;
}

.Top-Concept.PC {
    display: flex;
}

.Top-Concept h2 {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
}

.Top-Concept h2 i {
    display: block;
    margin-top: 20px;
    margin-bottom: 50px;

    color: #b09d34;
    font-size: 12px;
}

.Top-Concept p {
    font-size: 18px;
    line-height: 2.2em;
    font-family: 'SerifJapanese', serif;
}

.Top-Concept strong {
    display: block;
    margin: 40px 0;
    line-height: 1.8em;
    font-size: 30px;
    font-weight: normal;
    font-family: 'SerifJapanese', serif;
    letter-spacing: 1px;
}

.Top-Concept a:link,
.Top-Concept a:visited {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 50px;

    font-size: 15px;
    font-family: 'Montserrat', sans-serif;

    border: 1px solid #222;
}

.Top-Concept a:hover {
    border: 1px solid #aaa;
}

.Top-Concept img.PC {
    display: inline;
}

.Top-Concept img.SP {
    display: none;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Top-Concept {
        padding: 0 0 50px;
        text-align: center;
    }

    .Top-Concept.PC {
        display: none;
    }

    .Top-Concept div {
        width: 100%;
    }

    .Top-Concept strong {
        margin-top: 0;
    }

    .Top-Concept img.PC {
        display: none;
    }

    .Top-Concept img.SP {
        display: block;
        margin: 0 auto 3em auto;
    }
}

@media only screen and (max-width: 420px) {
    .Top-Concept h2 i {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .Top-Concept strong {
        font-size: 25px;
    }

    .Top-Concept a:link,
    .Top-Concept a:visited {
        display: block;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .Top-Concept a:link,
    .Top-Concept a:visited {
        display: block;
        width: 84.5%;
    }

    .Top-Concept p {
        font-size: 15px;
    }

}

@media only screen and (max-width: 380px) {
    .Top-Concept strong {
        letter-spacing: -1px;
    }
}

@media only screen and (max-width: 320px) {
    .Top-Concept strong {
        font-size: 21px;
    }

    .Top-Concept p {
        font-size: 17px;
    }
}


/* -----------------------------------------------
	Top-Review
----------------------------------------------- */
.Top-Location,
.Top-Review {
    width: 50%;
    padding: 120px 0 100px 0;

    color: #fff;
    text-align: center;
    text-shadow: 0px 0px 3px #000;
}

.Top-Location {
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Top-Location.jpg') no-repeat center center;
    background-size: cover;
}

.Top-Review {
    padding: 80px 0 70px 0;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Top-Review.jpg') no-repeat center center;
    background-size: cover;
}

.Top-Location h2,
.Top-Review h2 {
    margin-bottom: 50px;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
}

.Top-Review h2 {
    margin-bottom: 7px;
}

.Top-Location h2 i,
.Top-Review h2 i {
    display: block;
    margin-top: 1em;
    font-size: 12px;
}

.Top-Location p,
.Top-Review p {
    font-size: 16px;
    line-height: 2em;
    font-weight: bold;
    font-family: 'SerifJapanese', serif;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {

    .Top-Location,
    .Top-Review {
        width: 100%;
    }

    .Top-Location {
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Top-Location_sp.jpg') no-repeat center center;
        background-size: cover;
    }

    .Top-Review {
        padding: 45px 0 70px 0;
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Top-Review_sp.jpg') no-repeat center center;
        background-size: cover;
    }
}


/* -----------------------------------------------
	Top-nav 2
----------------------------------------------- */
.Top-Nav2 {
    margin: 100px auto 20px auto;
}

.Top-Nav2 ul li {
    position: relative;

    width: 32%;
    padding-bottom: 120px;
    margin-bottom: 30px;
}

.Top-Nav2 ul li h2 {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 0 30px;
    z-index: 100;
}

.Top-Nav2 ul li h2 span {
    display: block;
    padding: 50px 0;
    color: #b09d34;
    font-size: 28px;
    text-align: center;
    background: #fff;
}

.Top-Nav2 ul li h2 i {
    display: block;
    margin-top: 30px;

    color: #222;
    font-size: 12px;
    line-height: 1.4em;
}

.Top-Nav2 ul li a:hover h2 {
    color: #222;
    opacity: 1;
}

.Top-Nav2 img {
    max-width: 100%;
    vertical-align: top;

    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
}

.Top-Nav2 a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Top-Nav2 {
        margin: 50px auto 20px auto;
    }

    .Top-Nav2 ul li {
        width: 100%;
        margin-bottom: 0;
    }
}


/* -----------------------------------------------
	Top-BridalFair
----------------------------------------------- */
.Top-BridalFair {
    position: relative;
    margin-bottom: 100px;
}

.Top-BridalFair-bg {
    padding-top: 370px;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Top-BridalFair.jpg') no-repeat right top;
    background-size: 100% auto;
}

.Top-BridalFair-Content {
    width: 1200px;
    margin-bottom: 25px;
    border: 8px solid #fff;
    background-color: rgba(255, 255, 255, 1);
}

.Top-BridalFair-text {
    padding: 90px 60px;

    color: #212121;
    font-size: 18px;
    text-align: center;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}

.Top-BridalFair-text a:link,
.Top-BridalFair-text a:visited {
    display: inline-block;
    padding: 10px 50px;
    margin-top: 3em;
    font-size: 14px;
    text-align: center;
    border: 1px solid #8c7d2a;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    background-color: #b09d34;
    color: #FFF;
}

.Top-BridalFair-text a:hover {
    border: 1px solid #aaa;
}

.Top-BridalFair-text h2 {
    color: #b09d34;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
}

.Top-BridalFair-text h2 i {
    display: block;
    margin: 20px 0 0 0;

    color: #b09d34;
    font-size: 12px;
    font-weight: normal;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

.Top-BridalFair-text h3 {
    margin: 50px auto 60px auto;
    font-size: 20px;
    font-family: 'SerifJapanese', serif;
}

.Top-BridalFair-text p {
    font-size: 15px;
    line-height: 2.2em;
}

.Top-BridalFair-text .wrap {
    width: 63%;
}

.Top-BridalFair01 {
    width: 32.5%;
    text-align: left;
}

.Top-BridalFair01 h3 {
    margin: 30px auto 30px 5px;
    font-size: 22px;
}

.Top-BridalFair01 p {
    font-size: 15px;
    line-height: 2em;
    margin-left: 5px;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

.Top-BridalFair02 {
    overflow: hidden;
    position: relative;

    width: 100%;
    height: 240px;

    text-align: left;
}

.Top-BridalFair02 h3 {
    margin: 25px auto 20px 260px;
}

.Top-BridalFair02 p {
    font-size: 15px;
    line-height: 2em;
    margin: 0 auto 0 260px;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

.Top-BridalFair02 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 270px;
}

.Top-BridalFair03 {
    position: relative;

    width: 100%;
    height: 240px;

    text-align: left;
}

.Top-BridalFair03 h3 {
    margin: 25px auto 20px auto;
}

.Top-BridalFair03 p {
    font-size: 15px;
    line-height: 2em;
    margin: 0 250px 0 auto;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

.Top-BridalFair03 img {
    position: absolute;
    top: 0;
    right: 0;
    width: 235px;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Top-BridalFair-bg {
        overflow: hidden;
        padding-top: 0;
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Top-BridalFair_sp.jpg') no-repeat center top;
        background-size: 100% auto;
    }

    .Top-BridalFair-Content {
        position: static;

        width: 90%;
        margin: 515px auto 80px auto;
        text-align: center;
    }

    .Top-BridalFair-text {
        padding: 40px 5%;
    }

    .Top-BridalFair-text h2 i {
        margin: 10px 0 30px 0;
    }

    .Top-BridalFair-text h2+h3 {
        display: none;
    }

    .Top-BridalFair-text a:link,
    a:visited {
        margin: 0 auto;
    }

    .Top-BridalFair-text p {
        position: relative;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        padding-left: 5px;
    }

    .Top-BridalFair-text p.point {
        width: 100%;
        text-align: center;
    }

    .Top-BridalFair-text p:before {
        position: absolute;
        top: 0;
        left: 0;

        display: block;
        width: 1.5em;
    }

    .Top-BridalFair-text p:after {
        position: absolute;
        bottom: 0;
        right: 0;

        display: block;
        width: 1.5em;
    }

    .Top-BridalFair01 {
        width: 100%;
        margin-bottom: 30px;
    }

    .Top-BridalFair01+div {
        width: 100% !important;
    }

    .Top-BridalFair01 img {
        width: 100%;
    }

    .Top-BridalFair02 {
        height: 260px;
    }

    .Top-BridalFair02 h3,
    .Top-BridalFair02 p {
        width: 56%;
        margin-left: 44%;
    }

    .Top-BridalFair02 img {
        position: absolute;
        top: 0;
        left: 0;
        width: 48%;
    }

    .Top-BridalFair03 {
        height: 330px;
    }

    .Top-BridalFair03 h3,
    .Top-BridalFair03 p {
        width: 55%;
        margin-right: 45%;
    }

    .Top-BridalFair03 img {
        width: 44%;
    }
}

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

    .Top-BridalFair02 h3,
    .Top-BridalFair03 h3 {
        margin-top: 10px
    }
}

@media only screen and (max-width: 420px) {
    .Top-BridalFair {
        margin-bottom: 0;
    }

    .Top-BridalFair-Content {
        margin-top: 255px;
        margin-bottom: 40px;
    }

    .Top-BridalFair-text h2 i {
        margin: 10px 0 20px 0;
    }

    .Top-BridalFair-text p {
        width: 100%;
    }

    .Top-BridalFair-text p.point {
        width: 100%;
    }

    .Top-BridalFair01 h3,
    .Top-BridalFair02 h3,
    .Top-BridalFair03 h3 {
        font-size: 17.5px;
    }

    .Top-BridalFair01 p,
    .Top-BridalFair02 p,
    .Top-BridalFair03 p {
        font-size: 14px;
        line-height: 1.7em;
    }

    .Top-BridalFair02 {
        height: 270px;
    }

    .Top-BridalFair02 img {
        width: 150px;
    }

    .Top-BridalFair03 {
        height: 250px;
    }

    .Top-BridalFair02 h3 {
        width: 50%;
        margin-left: 50%;
    }

    .Top-BridalFair02 p {
        width: 50%;
        margin-left: 50%;
    }

    .Top-BridalFair03 img {
        width: 150px;
    }

    .Top-BridalFair03 h3 {
        width: 50%;
        margin-right: 50%;
    }

    .Top-BridalFair03 p {
        width: 50%;
        margin-right: 50%;
    }

    .Top-BridalFair-text a:link,
    .Top-BridalFair-text a:visited {
        display: block;
        padding: 10px;
    }
}

@media only screen and (max-width: 380px) {
    .Top-BridalFair02 img {
        width: 130px;
    }

    .Top-BridalFair03 {
        height: 270px;
    }

    .Top-BridalFair03 img {
        width: 130px;
    }
}

@media only screen and (max-width: 360px) {
    .Top-BridalFair02 {
        height: 280px;
    }

    .Top-BridalFair03 {
        height: 320px;
    }
}

@media only screen and (max-width: 320px) {
    .Top-BridalFair02 img {
        width: 110px;
    }

    .Top-BridalFair03 img {
        width: 110px;
    }

    .Top-BridalFair03 {
        height: 340px;
    }

    .Top-BridalFair-text a:link,
    .Top-BridalFair-text a:visited {
        font-size: 13.5px;
        letter-spacing: -1px;
    }
}


/* -----------------------------------------------
	Top-News
----------------------------------------------- */
.Top-News {
    padding: 80px 0;
    text-align: center;
    background: #fcfcfc;
}

.Top-News .inner {
    padding: 75px;
    background: #fff;
}

.Top-News h2 {
    font-size: 30px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.Top-News dl {
    overflow: hidden;
    margin-top: 20px;
    text-align: left;
}

.Top-News dt {
    clear: both;
    float: left;
    margin: 0;
    padding: 30px 0;
    width: 15%;

    color: #b09d34;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid #eee;
}

.Top-News dd {
    float: left;
    margin: 0;
    padding: 30px 0;
    width: 85%;

    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.Top-News .more:link,
.Top-News .more:visited {
    display: inline-block;
    padding: 10px 90px;
    margin-top: 3em;

    font-size: 14px;
    text-align: center;
    border: 1px solid #222;
}

.Top-News .more:hover {
    border: 1px solid #aaa;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Top-News .inner {
        padding: 50px 30px;
    }

    .Top-News dt,
    .Top-News dd {
        float: none;
        width: 100%;
    }

    .Top-News dt {
        padding: 20px 0 0 0;
        border: none;
        letter-spacing: 1px;
    }

    .Top-News dd {
        padding: 0 0 20px 0;
    }

    .Top-News a.more:link,
    .Top-News a.more:visited {
        display: block;
        margin-top: 3em auto;
    }
}

@media only screen and (max-width: 420px) {
    .Top-News {
        padding: 40px 0;
    }

    .Top-News .inner {
        padding: 30px;
    }

    .Top-News dd {
        font-size: 15px;
    }

}


/* -----------------------------------------------
	Top-Access
----------------------------------------------- */
.Top-Access .Access {
    width: 40%;
    padding: 50px 0;
    margin-left: 11%;
}

.Top-Access h2 {
    margin-bottom: 40px;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
}

.Top-Access strong {
    display: block;
    margin: 20px 0 0 0;

    color: #b09d34;
    font-size: 24px;
    font-weight: normal;
    font-family: 'SerifJapanese', serif;
}

.Top-Access p {
    font-size: 15px;
    line-height: 1.8em;
}

.Top-Access .Access a:link,
.Top-Access .Access a:visited {
    display: inline-block;
    padding: 10px 90px;
    margin-top: 1.5em;

    font-size: 14px;
    text-align: center;
    border: 1px solid #222;
}

.Top-Access .Access a:hover {
    border: 1px solid #aaa;
}

.Top-Access #Map {
    width: 50%;
    height: 500px;
    margin: 0 auto;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Top-Access .Access {
        width: 100%;
        margin-left: 6%;
        padding-bottom: 15px;
    }

    .Top-Access strong {
        margin: 30px 0 0 0;
    }

    .Top-Access #Map {
        width: 100%;
        height: 400px;
    }
}


/* -----------------------------------------------
	Top-Instagram
----------------------------------------------- */
.Top-Instagram {
    ovefflow: hidden;
    width: 100%;

    padding: 100px 0 70px 0;
    text-align: center;
}

.Top-Instagram h2 {
    font-size: 30px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .snapwidget-widget {
        height: 195px !important;
    }
}

@media only screen and (max-width: 420px) {
    .Top-Instagram {
        margin-bottom: 50px;
        padding: 50px 0 0 0;
    }

    .snapwidget-widget {
        margin-top: 50px !important;
        height: 105px !important;
    }
}

@media only screen and (max-width: 380px) {
    .snapwidget-widget {
        height: 95px !important;
    }
}

@media only screen and (max-width: 320px) {
    .snapwidget-widget {
        height: 80px !important;
    }
}


/* -----------------------------------------------
	ズーム
----------------------------------------------- */
.Opening {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.Opening ul li {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.Opening ul li img.Opening__img {
    max-width: inherit;
    width: 100%;
    height: auto;
}

.Concept-text01,
.Concept-text02,
.Concept-text03 {
    position: absolute;
    top: 25%;
    left: 0;

    z-index: 1000;

    width: 100%;
    margin: 0 auto;

    font-size: 18px;
    font-family: 'SerifJapanese', serif;
}

.Concept-text01 strong,
.Concept-text02 strong,
.Concept-text03 strong {
    display: block;
    margin-bottom: 1.2em;

    font-size: 32px;
    line-height: 1.5em;
    font-family: 'Montserrat', sans-serif;
}

.Concept-text01 strong.Serif,
.Concept-text02 strong.Serif,
.Concept-text03 strong.Serif {
    letter-spacing: 0;
    font-family: 'SerifJapanese', serif;
}

.Concept-text01 p,
.Concept-text02 p,
.Concept-text03 p {
    width: 75%;
    margin: 0 auto;
    line-height: 2em;
}

.Concept-text01 p.Right,
.Concept-text02 p.Right,
.Concept-text03 p.Right {
    text-align: right;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Opening ul li img.PC {
        display: none;
    }

    .Opening ul li img.SP {
        max-width: inherit;
        width: 100%;
        height: auto;
    }

    .Concept-text01,
    .Concept-text02,
    .Concept-text03 {
        top: 120px;
        text-align: center;
    }

    .Concept-text01 strong,
    .Concept-text02 strong,
    .Concept-text03 strong {
        margin-bottom: 1em;
    }

    .Concept-text01 p.Right,
    .Concept-text02 p.Right,
    .Concept-text03 p.Right {
        text-align: center;
    }
}

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

    .Concept-text01,
    .Concept-text03 {
        top: 60px;
        font-size: 15px;
    }

    .Concept-text02 {
        top: 80px;
        font-size: 15px;
    }

    .Concept-text01 strong,
    .Concept-text02 strong,
    .Concept-text03 strong {
        font-size: 21px;
        line-height: 1.2em;
    }

    .Concept-text01 p,
    .Concept-text02 p,
    .Concept-text03 p {
        width: 90%;
        line-height: 1.5em;
    }
}

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

    .Concept-text01,
    .Concept-text03 {
        top: 60px;
        font-size: 12.5px;
    }

    .Concept-text02 {
        top: 80px;
        font-size: 12.5px;
    }

    .Concept-text01 strong,
    .Concept-text02 strong,
    .Concept-text03 strong {
        font-size: 18px;
    }
}


/* -----------------------------------------------
	LOCATION
----------------------------------------------- */
.Concept-Location {
    position: relative;
    padding: 100px 0 200px 0;
}

.Concept-Location-bg {
    height: 700px;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/concept04.jpg') no-repeat left bottom;
    background-size: 67% auto;
}

.Concept-Location-Content {
    position: absolute;
    bottom: 100px;
    left: 60%;

    width: 400px;
    border: 8px solid #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.Concept-Location-text {
    padding: 55px 60px;

    color: #222;
    font-size: 18px;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}

.Concept-Location-text h2,
.Concept-Chapel-text h2,
.Concept-Rewiew-text h2 {
    display: inline-block;
    padding-bottom: 5px;

    border-bottom: 1px solid #909090;
}

.Concept-Location-text strong,
.Concept-Chapel strong,
.Concept-Rewiew-text strong {
    display: block;
    margin: 45px 0 35px 0;

    font-size: 32px;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
}

.Concept-Location-text p,
.Concept-Chapel p,
.Concept-Rewiew-text p {
    font-size: 15px;
    line-height: 2.2em;
}

.Concept-Rewiew-Photo img {
    width: 100%;
    height: auto;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Concept-Location {
        padding: 0 0 100px 0;
    }

    .Concept-Location-bg {
        overflow: hidden;
        height: 1200px;

        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/concept04_sp.jpg') no-repeat left top;
        background-size: 100% auto;
    }

    .Concept-Location-Content {
        left: 0;
        bottom: 50px;

        width: 90%;
        margin: 0 5%;
        text-align: center;
    }
}


/* -----------------------------------------------
	CHAPEL
----------------------------------------------- */
.Concept-Chapel {
    position: relative;
    padding: 100px 0 200px 0;
    background: #fafafa;
}

.Concept-Chapel-bg {
    height: 700px;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/concept05.jpg') no-repeat right top;
    background-size: 67% auto;
}

.Concept-Chapel-Content {
    position: absolute;
    bottom: 100px;
    right: 60%;

    width: 400px;
    border: 8px solid #fff;
    background-color: rgba(255, 255, 255, 1);
}

.Concept-Chapel-text {
    padding: 55px 60px;

    color: #222;
    font-size: 18px;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}

.Concept-Chapel-text a:link,
a:visited {
    display: block;
    width: 220px;
    padding: 10px;
    margin-top: 2em;

    font-size: 14px;
    text-align: center;
    border: 1px solid #222;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

.Concept-Chapel-text a:hover {
    border: 1px solid #aaa;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Concept-Chapel {
        padding: 0;
        background: #fff;
    }

    .Concept-Chapel-bg {
        overflow: hidden;
        height: 1350px;

        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/concept05_sp.jpg') no-repeat right top;
        background-size: 100% auto;
    }

    .Concept-Chapel-Content {
        left: 0;
        bottom: 50px;

        width: 90%;
        margin: 0 5%;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .Concept-Chapel-text a:link,
    a:visited {
        margin: 0 auto;
    }
}


/* -----------------------------------------------
	REVIEW
----------------------------------------------- */
.Concept-Rewiew {
    position: relative;

    padding-top: 320px;
    margin-bottom: 100px;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/concept06.jpg') no-repeat right top;
    background-size: 100% auto;
}

.Concept-Rewiew-Content {
    margin-top: -50px;
    margin-bottom: 25px;
    border: 8px solid #fff;
    background-color: rgba(255, 255, 255, 1);

    z-index: 100;
}

.Concept-Rewiew-text {
    padding: 55px 60px;

    color: #212121;
    font-size: 18px;
    text-align: center;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}

.Concept-Rewiew-text p:before {
    content: "「";
}

.Concept-Rewiew-text p:after {
    content: "」";
}

.Concept-Rewiew-text p.point {
    color: #b09d34;
    font-size: 14px;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

.Concept-Rewiew-text p.point:before,
.Concept-Rewiew-text p.point:after {
    content: "";
}

.Concept-Rewiew-text img {
    display: block;
    margin: 1em auto -1em auto;
}

.Concept-Rewiew-text a:link,
.Concept-Rewiew-text a:visited {
    display: inline-block;
    padding: 10px 50px;
    margin-top: 2em;

    font-size: 14px;
    text-align: center;
    border: 1px solid #222;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

.Concept-Rewiew-text a:hover {
    border: 1px solid #aaa;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Concept-Rewiew {
        overflow: hidden;
        padding-top: 0;
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/concept06_sp.jpg') no-repeat center top;
        background-size: 100% auto;
    }

    .Concept-Rewiew-Content {
        position: static;

        width: 90%;
        margin: 710px auto 80px auto;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .Concept-Rewiew-text a:link,
    a:visited {
        margin: 0 auto;
    }

    .Concept-Rewiew-text p {
        position: relative;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        padding-left: 1.5em;
    }

    .Concept-Rewiew-text p.point {
        width: 100%;
        text-align: center;
    }

    .Concept-Rewiew-text p:before {
        position: absolute;
        top: 0;
        left: 0;

        display: block;
        width: 1.5em;
    }

    .Concept-Rewiew-text p:after {
        position: absolute;
        bottom: 0;
        right: 0;

        display: block;
        width: 1.5em;
    }
}

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

    .Concept-Location,
    .Concept-Chapel,
    .Concept-Rewiew {
        position: static;
        overflow: hidden;
        margin: 0;
        padding: 0 0 50px 0;
    }

    .Concept-Location {
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/concept04_sp.jpg') no-repeat left top;
        background-size: 100% auto;
    }

    .Concept-Chapel {
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/concept05_sp.jpg') no-repeat left top;
        background-size: 100% auto;
    }

    .Concept-Rewiew {
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/concept06_sp.jpg') no-repeat left top;
        background-size: 100% auto;
    }

    .Concept-Location-bg,
    .Concept-Chapel-bg {
        height: 0;
        background: none;
    }

    .Concept-Location-Content,
    .Concept-Chapel-Content,
    .Concept-Rewiew-Content {
        position: static;
        margin: 89% auto 0 auto;
    }

    .Concept-Rewiew-Content {
        margin-bottom: 40px;
    }

    .Concept-Location-text,
    .Concept-Chapel-text,
    .Concept-Rewiew-text {
        padding: 35px 5px;
        font-size: 16px;
    }

    .Concept-Location-text h2,
    .Concept-Chapel-text h2,
    .Concept-Rewiew-text h2 {
        line-height: 1.2em;
    }

    .Concept-Rewiew-text p {
        width: 100%;
    }

    .Concept-Rewiew-text p.point {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
        font-size: 13px;
        line-height: 1.5em;
        text-align: center;
    }

    .Concept-Rewiew-text p.point img {
        margin-bottom: 0.9em;
    }

    .Concept-Rewiew-text a:link,
    .Concept-Rewiew-text a:visited {
        display: block;
        width: 88%;

        margin: 2em auto 0 auto;
        padding: 10px;
    }
}

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

    .Concept-Location-text,
    .Concept-Chapel-text {
        padding: 30px 20px;
    }

    .Concept-Rewiew-text p.point {
        font-size: 12px;
    }
}

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

    .Concept-Location-text,
    .Concept-Chapel-text {
        padding: 25px 10px;
    }

    .Concept-Location-text p,
    .Concept-Chapel p,
    .Concept-Rewiew-text p {
        font-size: 14px;
        line-height: 2em;
    }

    .Concept-Rewiew-Content h2 {
        font-size: 16px;
    }
}


/* -----------------------------------------------
	Concept-Fair
----------------------------------------------- */
.Concept-Fair {
    margin-left: ;
    padding: 100px 0;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Concept-Fair.jpg') no-repeat center center;
    background-size: cover;
}

.Concept-Fair .inner {
    width: 1150px;
}

.Concept-Fair-Content {
    width: 400px;
    border: 8px solid #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.Concept-Fair-text {
    padding: 55px 50px;

    color: #222;
    font-size: 18px;
    text-align: center;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}

.Concept-Fair-text a:link,
a:visited {
    display: inline-block;
    padding: 10px 30px;

    font-size: 14px;
    text-align: center;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    border: 1px solid #222;
}

.Concept-Fair-text a:hover {
    border: 1px solid #aaa;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 1280px) {
    .Concept-Fair .inner {
        width: 1050px;
    }
}

@media only screen and (max-width: 768px) {
    .Concept-Fair {
        padding: 400px 0 100px 0;
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Concept-Fair_sp.jpg') no-repeat top right;
        background-size: cover;
    }

    .Concept-Fair .inner {
        width: 90%;
    }

    .Concept-Fair-Content {
        width: 100%;
    }
}

@media only screen and (max-width: 420px) {
    .Concept-Fair {
        padding: 200px 0 30px 0;
    }

    .Concept-Fair-text {
        padding: 25px;
    }

    .Concept-Fair h2 {
        font-size: 18px;
        line-height: 2em;
    }
}

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

    .Concept-Fair-text a:link,
    a:visited {
        padding: 10px;
    }
}



/* -----------------------------------------------
	Chapel-MainImage
----------------------------------------------- */
.Chapel-MainImage {
    position: relative;
}

.Chapel-MainImage img {
    width: 100%;
}

.Chapel-MainImage h1 {
    position: absolute;
    top: 18.5%;
    left: 37.5%;

    font-size: 40px;
    font-family: 'Montserrat', sans-serif;
}

.Chapel-MainImage h1 i {
    display: block;
    font-size: 14px;
    text-align: center;
}

.Chapel-MainImage h2 {
    position: absolute;
    top: 32%;
    left: 37%;

    font-size: 22px;
    font-family: 'SerifJapanese', serif;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Chapel-MainImage h1 {
        position: absolute;
        top: 77.5%;
        left: 0%;

        width: 100%;

        font-size: 48px;
        text-align: center;
    }

    .Chapel-MainImage h1 i {
        margin-top: 15px;
        font-size: 25px;
        text-align: center;
        letter-spacing: 3px;
    }

    .Chapel-MainImage h2 {
        position: absolute;
        top: 88%;
        left: 0%;

        width: 100%;
        font-size: 26px;
        text-align: center;
    }
}

@media only screen and (max-width: 420px) {
    .Chapel-MainImage h1 {
        top: 76.5%;
        font-size: 26px;
        letter-spacing: 1px;
    }

    .Chapel-MainImage h1 i {
        margin-top: 10px;
        font-size: 13px;

    }

    .Chapel-MainImage h2 {
        top: 89%;
        font-size: 15px;
    }
}

@media only screen and (max-width: 320px) {
    .Chapel-MainImage h1 {
        top: 77%;
        font-size: 20px;
    }

    .Chapel-MainImage h1 i {
        font-size: 10px;
    }

    .Chapel-MainImage h2 {
        top: 88%;
        font-size: 13px;
    }
}


/* -----------------------------------------------
	Chapel-Message
----------------------------------------------- */
.Chapel-Message {
    padding: 7px;
}

.Chapel-Message-Content {
    padding: 200px 0;

    font-size: 20px;
    text-align: center;
    line-height: 3em;
    font-family: 'SerifJapanese', serif;

    border: 1px solid #e7e1c2;
}

.Chapel-Message-Content p+p {
    margin-top: 3em;
}

.Chapel-Message-Content .Red {
    color: #ff0000;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Chapel-Message-Content {
        padding: 100px 0;
    }
}

@media only screen and (max-width: 420px) {
    .Chapel-Message-Content {
        padding: 50px 0;
    }

    .Chapel-Message-Content p {
        font-size: 18px;
        line-height: 2.5em;
    }
}

@media only screen and (max-width: 380px) {
    .Chapel-Message-Content {
        padding: 30px 0;
    }
}

@media only screen and (max-width: 320px) {
    .Chapel-Message-Content p {
        font-size: 16px;
    }
}


/* -----------------------------------------------
	Chapel-Photo
----------------------------------------------- */
.Chapel-Photo ul {
    overflow: hidden;
}

.Chapel-Photo li {
    width: 33.333%;
}

.Chapel-Photo li img {
    width: 100%;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Chapel-Photo li {
        width: 50%;
    }
}


/* -----------------------------------------------
	Chapel-01
----------------------------------------------- */
.Chapel-01 {
    overflow: hidden;
    position: relative;
    padding: 100px 0 200px 0;
}

.Chapel-01-bg {
    height: 650px;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Chapel02.jpg') no-repeat right top;
    background-size: 67% auto;

    visibility: hidden;
}

.Chapel-01-Content {
    position: absolute;
    bottom: 100px;
    right: 60%;

    width: 400px;
    border: 8px solid #fff;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 100;
}

.Chapel-01-text {
    padding: 55px 50px;

    color: #222;
    font-size: 18px;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
    z-index: 100;
}

.Chapel-01-text h2,
.Chapel-02-text h2,
.Chapel-03-text h2,
.Chapel-Fair h2,
.Chapel-Concept-Content h2 {
    margin-bottom: 40px;
    font-size: 23px;
    line-height: 1.55em;
    font-family: 'SerifJapanese', serif;
}

.Chapel-01-text p,
.Chapel-02-text p,
.Chapel-03-text p {
    font-size: 15px;
    line-height: 2.2em;
}


/* -----------------------------------------------
	Chapel-02
----------------------------------------------- */
.Chapel-02 {
    position: relative;
    padding: 100px 0 200px 0;
    background: #fafafa;
}

.Chapel-02-bg {
    height: 650px;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Chapel03.jpg') no-repeat left top;
    background-size: 67% auto;
}

.Chapel-02-Content {
    position: absolute;
    bottom: 100px;
    left: 60%;

    width: 400px;
    border: 8px solid #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.Chapel-02-text {
    padding: 55px 50px;

    color: #222;
    font-size: 18px;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}

.Chapel-02-text p+p {
    color: #888888;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;

}


/* -----------------------------------------------
	Chapel-03
----------------------------------------------- */
.Chapel-03 {
    position: relative;
    padding: 100px 0 200px 0;
}

.Chapel-03-bg {
    height: 700px;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Chapel04.jpg') no-repeat right top;
    background-size: 67% auto;
}

.Chapel-03-Content {
    position: absolute;
    bottom: 100px;
    right: 60%;

    width: 400px;
    border: 8px solid #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.Chapel-03-text {
    padding: 55px 50px;

    color: #222;
    font-size: 18px;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {

    .Chapel-01,
    .Chapel-02,
    .Chapel-03 {
        position: static;
        overflow: hidden;
        padding: 50px 0;
    }

    .Chapel-01 {
        padding: 50px 0 40px 0;
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Chapel02_sp.jpg') no-repeat right 50px;
        background-size: 100% auto;
    }

    .Chapel-02 {
        background: #fafafa url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Chapel03_sp.jpg') no-repeat right 50px;
        background-size: 100% auto;
    }

    .Chapel-03 {
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Chapel04_sp.jpg') no-repeat right 50px;
        background-size: 100% auto;
    }

    .Chapel-01-bg,
    .Chapel-02-bg,
    .Chapel-03-bg {
        height: 0;
        background: none;
    }

    .Chapel-01-Content,
    .Chapel-02-Content,
    .Chapel-03-Content {
        position: static;
        margin: 88% auto 0 auto;
        width: 90%;
    }

    .Chapel-01-text,
    .Chapel-02-text,
    .Chapel-03-text {
        padding: 80px 50px;
        text-align: center;
    }
}

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

    .Chapel-01-Content,
    .Chapel-02-Content,
    .Chapel-03-Content {
        margin: 89% auto 0 auto;
    }

    .Chapel-01-text,
    .Chapel-02-text,
    .Chapel-03-text {
        padding: 30px 10px;
    }

    .Chapel-01-text h2,
    .Chapel-02-text h2,
    .Chapel-03-text h2,
    .Chapel-Fair h2 {
        margin-bottom: 20px;
    }

    /* 着席 */
    .Chapel-02-text p+p {
        font-size: 85% !important;
        line-height: 1.8em;
    }
}

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

    .Chapel-01-text h2,
    .Chapel-02-text h2,
    .Chapel-03-text h2,
    .Chapel-Fair h2 {
        font-size: 20px;
    }

    .Chapel-01-text p,
    .Chapel-02-text p,
    .Chapel-03-text p {
        font-size: 13px;
        line-height: 2em;
    }
}


/* -----------------------------------------------
	Chapel-Fair
----------------------------------------------- */
.Chapel-Fair {
    margin-left: ;
    padding: 100px 0;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Chapel05.jpg') no-repeat center center;
    background-size: cover;
}

.Chapel-Fair .inner {
    width: 1150px;
}

.Chapel-Fair-Content {
    width: 400px;
    margin-left: auto;
    border: 8px solid #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.Chapel-Fair-text {
    padding: 55px 50px;

    color: #222;
    font-size: 18px;
    text-align: center;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}

.Chapel-Fair-text a:link,
a:visited {
    display: inline-block;
    padding: 10px 30px;

    font-size: 14px;
    text-align: center;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    border: 1px solid #222;
}

.Chapel-Fair-text a:hover {
    border: 1px solid #aaa;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 1280px) {
    .Chapel-Fair .inner {
        width: 1050px;
    }
}

@media only screen and (max-width: 768px) {
    .Chapel-Fair {
        padding: 400px 0 100px 0;
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Chapel05_sp.jpg') no-repeat top right;
        background-size: cover;
    }

    .Chapel-Fair .inner {
        width: 90%;
    }

    .Chapel-Fair-Content {
        width: 100%;
    }
}

@media only screen and (max-width: 420px) {
    .Chapel-Fair {
        padding: 200px 0 30px 0;
    }

    .Chapel-Fair-text {
        padding: 25px;
    }

    .Chapel-Fair h2 {
        font-size: 18px;
        line-height: 2em;
    }
}

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

    .Chapel-Fair-text a:link,
    a:visited {
        padding: 10px;
    }
}

/* -----------------------------------------------
	Chapel-Concept
----------------------------------------------- */
.Chapel-Concept {
    margin-left: ;
    padding: 100px 0;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Chapel06.jpg') no-repeat center center;
    background-size: cover;
}

.Chapel-Concept .inner {
    width: 1150px;
}

.Chapel-Concept-Content {
    width: 400px;
    border: 8px solid #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.Chapel-Concept-text {
    padding: 55px 25px;

    color: #222;
    font-size: 18px;
    text-align: center;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}

.Chapel-Concept-Content h2 small {
    font-size: 18px;
}

.Chapel-Concept-text a:link,
a:visited {
    display: inline-block;
    padding: 10px 30px;

    font-size: 14px;
    text-align: center;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    border: 1px solid #222;
}

.Chapel-Concept-text a:hover {
    border: 1px solid #aaa;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 1280px) {
    .Chapel-Concept .inner {
        width: 1050px;
    }
}

@media only screen and (max-width: 768px) {
    .Chapel-Concept {
        padding: 400px 0 100px 0;
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Chapel06_sp.jpg') no-repeat top right;
        background-size: cover;
    }

    .Chapel-Concept .inner {
        width: 90%;
    }

    .Chapel-Concept-Content {
        width: 100%;
    }
}

@media only screen and (max-width: 420px) {
    .Chapel-Concept {
        padding: 200px 0 30px 0;
    }

    .Chapel-Concept-text {
        padding: 25px 15px;
    }

    .Chapel-Concept h2 {
        font-size: 18px;
        line-height: 2em;
    }

    .Chapel-Concept h2 small {
        font-size: 14px;
    }

}

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

    .Chapel-Concept-text a:link,
    a:visited {
        padding: 10px;
    }
}

/* ===============================================

	PLAN

=============================================== */
/* -----------------------------------------------
	MainImage
----------------------------------------------- */
.Plan-MainImage {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;

    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Plan-MainImage.jpg') no-repeat bottom center;
    background-size: cover;
}

.Plan-MainImage h1 {
    position: absolute;
    top: 42.5%;
    left: 0;

    width: 100%;
    text-align: center;
}


/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Plan-MainImage {
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Plan-MainImage_sp.jpg') no-repeat center center;
        background-size: cover;
    }

    .Plan-MainImage h1 {
        position: absolute;
        top: 41%;
        left: 0;

        padding: 0 22%;
    }
}

/* -----------------------------------------------
	Plan-List
----------------------------------------------- */
.Plan-List {
    margin: 50px auto;
}

.Plan-List ul li {
    padding: 70px 0;
}

.Plan-List ul li:nth-child(even) {
    background: #fafafa;
}

.Plan-List .inner {
    -js-display: flex;
    display: -webkit-flex;
    display: flex;

    -webkit-justify-content: space-between;
    justify-content: space-between;

    -webkit-box-align: start;
    align-items: flex-start;

    width: 1280px;
}

.Plan-List ul li:nth-child(even) .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}


.Plan-List .inner .Plan-List-Content {
    width: 50%;
    padding: 0px 35px 0 35px;
}

.Plan-List ul li:nth-child(even) .inner .Plan-List-Content {
    padding: 0px 0 0 35px;
}

@media only screen and (min-width: 1600px) {
    .Plan-List .inner {
        -js-display: flex;
        display: -webkit-flex;
        display: flex;

        -webkit-justify-content: space-between;
        justify-content: space-between;

        -webkit-box-align: start;
        align-items: flex-start;

        width: 1600px;


    }

    .Plan-List .inner .Plan-List-Content {
        width: 50%;
        padding: 25px 35px 0 295px;
    }

    .Plan-List ul li:nth-child(even) .inner .Plan-List-Content {
        /* padding: 45px 0 0 35px; */
        padding: 25px 0 0 35px;
    }

}

.Plan-List .inner .Plan-List-Content h2 {
    margin-bottom: 15px;

    color: #35a626;
    font-size: 30px;
    line-height: 1.75em;
    letter-spacing: 3px;
    font-family: 'SerifJapanese', serif;
}

.Plan-List .inner .Plan-List-Content h3 {
    margin-bottom: 23px;

    font-size: 22px;
    line-height: 1.65em;
    letter-spacing: 1px;
    font-family: 'SerifJapanese', serif;
}

.Plan-List .inner .Plan-List-Content p {
    color: #888;
    font-size: 14px;
    line-height: 2.4em;
}

.Plan-List .inner .Plan-List-Content .Plan-List-Price {
    margin-bottom: 35px;

    color: #eb6877;
    font-size: 13px;
    letter-spacing: 1px;
}

.Plan-List .inner .Plan-List-Content .Plan-List-Price i {
    font-style: italic;
    font-size: 20px;
    font-family: 'SerifJapanese', serif;
}

.Plan-List .inner .Plan-List-Content .Plan-List-Price .Capacity i {
    margin-right: 3px;
}

.Plan-List .inner .Plan-List-Content .Plan-List-Price .Price i {
    margin-right: 3px;
    text-decoration: line-through;
}

.Plan-List .inner .Plan-List-Content .Plan-List-Price .New_Price {
    font-size: 25px;
}

.Plan-List .inner .Plan-List-Content .Plan-List-Price .New_Price:before {
    content: "→";
    margin: 0 10px;

    font-size: 15px;
    vertical-align: middle;
}

.Plan-List .inner .Plan-List-Content .Plan-List-Price .New_Price i {
    font-size: 35px;
    margin-right: 4px;
}

.Plan-List .inner .Plan-List-Content a:link,
.Plan-List .inner .Plan-List-Content a:visited {
    display: block;

    width: 220px;
    padding: 7px 0;

    font-size: 14px;
    text-align: center;
    border: 1px solid #222;
}

.Plan-List .inner .Plan-List-Content a:hover {
    color: #aaa;
    border: 1px solid #aaa;
}

.Plan-List .inner img {
    width: 50%;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Plan-List {
        position: relative;
        margin: -17% auto 0 auto;
    }

    .Plan-List ul {
        margin: 0 auto;
    }

    .Plan-List ul li {
        padding: 45px 0;
    }

    .Plan-List ul li:nth-child(even) {
        padding: 50px 0;
    }

    .Plan-List .inner {
        display: block;
        width: 90%;
        padding: 0;

        text-align: center;
        border: 8px solid #fff;
        background-color: rgba(255, 255, 255, 0.95);
    }

    .Plan-List .inner .Plan-List-Content,
    .Plan-List ul li:nth-child(even) .inner .Plan-List-Content {
        width: 100%;
        padding: 30px 30px 45px 30px;
        border: 1px solid #cee5cb;
    }

    .Plan-List .inner .Plan-List-Content h2 {
        margin-bottom: 30px;
        font-size: 180%;
        line-height: 1.5em;
    }

    .Plan-List .inner .Plan-List-Content h3 {
        margin: 23px auto;
        text-align: left;
    }

    .Plan-List .inner .Plan-List-Content p {
        line-height: 1.8em;
        text-align: left;
    }

    .Plan-List .inner .Plan-List-Content .Plan-List-Price .New_Price:before {
        display: block;
        content: "↓";
        margin: 0 0 10px 0;
    }

    .Plan-List .inner .Plan-List-Content a:link,
    .Plan-List .inner .Plan-List-Content a:visited {
        width: 260px;
        padding: 15px 0;
        margin: 0 auto;
    }

    .Plan-List .inner img.SP {
        display: block;
        margin: 0 auto;
        width: 100%;
    }
}

@media only screen and (max-width: 420px) {
    .Plan-List {
        position: relative;
        margin: -24% auto 0 auto;
    }

    .Plan-List ul li {
        padding: 35px 0;
    }

    .Plan-List ul li:nth-child(even) {
        padding: 40px 0;
    }

    .Plan-List .inner .Plan-List-Content,
    .Plan-List ul li:nth-child(even) .inner .Plan-List-Content {
        padding: 20px 25px 40px 25px;
    }

    .Plan-List .inner .Plan-List-Content h2 {
        margin-bottom: 20px;
        font-size: 130%;
    }

    .Plan-List .inner .Plan-List-Content h3 {
        margin: 20px auto;
        font-size: 80%;
        letter-spacing: 0;
    }

    .Plan-List .inner .Plan-List-Content p {
        font-size: 70%;
    }

    .Plan-List .inner .Plan-List-Content a:link,
    .Plan-List .inner .Plan-List-Content a:visited {
        padding: 10px 0;
        font-size: 70%;
    }
}

@media only screen and (max-width: 380px) {
    .Plan-List {
        margin: -26.5% auto 0 auto;
    }
}

@media only screen and (max-width: 360px) {
    .Plan-List .inner .Plan-List-Content h2 {
        font-size: 120%;
    }

    .Plan-List .inner .Plan-List-Content .Plan-List-Price .New_Price i {
        font-size: 30px;
    }

    .Plan-List .inner .Plan-List-Content a:link,
    .Plan-List .inner .Plan-List-Content a:visited {
        width: 90%;
    }
}

@media only screen and (max-width: 320px) {
    .Plan-List {
        margin: -29.5% auto 0 auto;
    }
}


/* -----------------------------------------------
	Plan_Detail
----------------------------------------------- */
.lightbox {
    display: none;
    padding: 35px !important;
}

.Plan_Detail {
    width: 750px;
    margin: 0 auto;
    max-height: 94vh;
    overflow-y: auto;
    background: #fff;
    border: 2px solid #5ea854;
}

.Plan_Detail h2 {
    margin-bottom: 30px;

    color: #35a626;
    font-size: 25px;
    text-align: center;
    font-family: 'SerifJapanese', serif;
}

.Plan_Detail h3 {
    margin-bottom: 35px;

    color: #eb6877;
    text-align: center;
    letter-spacing: 2px;
    font-family: 'SerifJapanese', serif;
}

.Plan_Detail_Description {
    overflow: hidden;

    width: 625px;
    margin: 0 auto;
    border-bottom: 1px solid #f4f4f4;
}

.Plan_Detail_Description dt {
    clear: both;
    float: left;
    width: 100px;
    padding: 10px 0 10px 25px;

    color: #35a626;
    font-size: 15px;
    border-top: 1px solid #f4f4f4;
}

.Plan_Detail_Description dd {
    float: left;
    width: 523px;
    margin: 0;
    padding: 10px 20px 10px 0;

    font-size: 14px;
    border-top: 1px solid #f4f4f4;
}

.Plan_Detail_Description:after {
    clear: both;
}

.Plan_Detail_Table {
    width: 100%;
    margin: 27px auto 0 auto;

    border-bottom: 1px solid #b9b9b9;
    border-right: 1px solid #b9b9b9;
}

.Plan_Detail_Table dl {
    width: 33.33%;
    margin: 0;

    background: #eee;
    border-top: 1px solid #b9b9b9;
    border-left: 1px solid #b9b9b9;
}

.Plan_Detail_Table dt {
    float: left;
    width: 48%;
    height: 32px;

    margin: 0;
    padding: 0 8px;

    color: #6d6d6d;
    font-size: 11px;
    font-weight: normal;
    line-height: 32px;
}

.Plan_Detail_Table dd {
    float: right;
    width: 52%;
    height: 32px;

    margin: 0;
    padding: 0 8px;

    color: #35a626;
    font-size: 20px;
    text-align: center;
    line-height: 32px;

    background: #fff;
    border-left: 1px solid #b9b9b9;
}

.Plan_Detail_Etc {
    overflow: hidden;
    width: 100%;
    margin: 0 auto 35px auto;

    background: #eee;
    border-right: 1px solid #b9b9b9;
    border-left: 1px solid #b9b9b9;
    border-bottom: 1px solid #b9b9b9;
}

.Plan_Detail_Etc:after {
    content: "";
    clear: both;
}

.Plan_Detail_Etc dt {
    float: left;
    width: 104px;

    margin: 0;
    padding: 8px;

    color: #6d6d6d;
    font-size: 11px;
    font-weight: normal;
    line-height: 1.8em;
}

.Plan_Detail_Etc dd {
    float: right;
    width: 566px;

    margin: 0;
    padding: 8px;

    color: #6d6d6d;
    font-size: 11px;
    line-height: 1.8em;

    background: #fff;
    border-left: 1px solid #b9b9b9;
}

.Plan_Link {
    width: 75%;
    margin: 0 auto 10px auto;
}

.Plan_Link a:link,
.Plan_Link a:visited {
    padding: 7px;
    width: 230px;

    font-size: 14px;
    text-align: center;
    border: 1px solid #222;
}

.Plan_Link a:hover {
    border: 1px solid #aaa;
}


@media only screen and (max-width: 768px) {
    .Plan_Detail {
        width: 100%;
    }

    .Plan_Detail h2 {
        margin-bottom: 10px;
        color: #35a626;
        line-height: 1.4em;
    }

    .Plan_Detail .Plan_Detail_Description {
        width: 100%;
        margin: 0 auto;
    }

    .Plan_Detail .Plan_Detail_Description dt {
        float: none;
        width: 100%;
        padding: 5px 15px 0 15px;
    }

    .Plan_Detail .Plan_Detail_Description dd {
        float: none;
        width: 100%;
        padding: 0 15px 5px 15px;
        border: none;
    }

    .Plan_Detail_Table {
        margin: 27px auto 0 auto;

        border-bottom: 1px solid #b9b9b9;
        border-right: 1px solid #b9b9b9;
    }

    .Plan_Detail_Table dl {
        width: 50%;
    }

    .Plan_Detail_Etc dt {
        width: 49.9%;

        margin: 0;
        padding: 8px;

        color: #6d6d6d;
        font-size: 11px;
        font-weight: normal;
        line-height: 1.8em;
    }

    .Plan_Detail_Etc dd {
        width: 50.1%;
    }

    .Plan_Link {
        display: block;
    }

    .Plan_Link a:link,
    .Plan_Link a:visited {
        display: block;
        width: 100%;
    }

    .Plan_Link a+a {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 420px) {
    .lightbox {
        padding: 0 !important;
        /* height: 500px !important; */
    }

    .Plan_Detail_Content {
        overflow-y: scroll;
        height: 100%;
        padding: 20px;
    }

    .Plan_Detail h2 {
        font-size: 20px;
    }

    .Plan_Detail h3 {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .Plan_Detail_Description dt {
        padding: 5px 0 5px 20px;
        font-size: 12px;
        line-height: 1.5em;
    }

    .Plan_Detail_Description dd {
        padding: 0 20px 5px 0;
        font-size: 12px;
        line-height: 1.5em;
    }

    .Plan_Detail_Table {
        margin: 20px auto 0 auto;
    }

    .Plan_Detail_Table dt {
        height: 28px;
        font-size: 10px;
        line-height: 28px;
    }

    .Plan_Detail_Table dd {
        height: 28px;
        font-size: 18px;
        line-height: 28px;
    }

    .Plan_Detail_Etc dt {
        padding: 5px;
        font-size: 10px;
        line-height: 1.5em;
    }

    .Plan_Detail_Etc dd {
        padding: 5px;
        font-size: 10px;
        line-height: 1.5em;
    }

    .Plan_Link {
        width: 90%;
    }
}

/* @media only screen and (max-width: 320px) {
	.lightbox {
		height: 450px !important;
	}
} */

/* -----------------------------------------------
	Chapel-Stage
----------------------------------------------- */
.Chapel-Stage {
    padding: 100px 0;

    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Chapel-Stage.jpg') no-repeat center center;
    background-size: cover;
}

.Chapel-Stage .inner {
    width: 1150px;
}

.Chapel-Stage-Content {
    width: 460px;
    /* margin-left: auto; */

    border: 8px solid #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.Chapel-Stage-text {
    padding: 55px 50px;
    text-align: center;
    border: 1px solid #e7e1c2;
}

.Chapel-Stage-text h2 {
    margin-bottom: 40px;

    font-size: 23px;
    line-height: 1.7em;
    font-family: 'SerifJapanese', serif;
}

.Chapel-Stage-text a:link,
.Chapel-Stage-text a:visited {
    display: inline-block;
    padding: 10px 100px;

    font-size: 14px;
    text-align: center;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    border: 1px solid #222;
}

.Chapel-Stage-text a:hover {
    border: 1px solid #aaa;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 1280px) {
    .Chapel-Stage .inner {
        width: 1050px;
    }
}

@media only screen and (max-width: 768px) {
    .Chapel-Stage {
        padding: 400px 0 100px 0;
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Chapel-Stage_sp.jpg') no-repeat top right;
        background-size: cover;
    }

    .Chapel-Stage .inner {
        width: 90%;
    }

    .Chapel-Stage-text {
        padding: 55px 50px;
    }

    .Chapel-Stage-Content {
        width: 100%;
    }

    .Chapel-Stage-text h2 {
        margin-bottom: 3%;
    }
}

@media only screen and (max-width: 420px) {
    .Chapel-Stage {
        padding: 200px 0 30px 0;
    }

    .Chapel-Stage-text {
        padding: 25px;
    }

    .Chapel-Stage h2 {
        font-size: 18px;
        line-height: 2em;
        margin-bottom: 20px;
    }

    .Chapel-Stage-text a:link,
    .Chapel-Stage-text a:visited {
        padding: 10px 60px;
    }
}

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

    .Chapel-Stage-text a:link,
    .Chapel-Stage-text a:visited {
        padding: 10px 60px;
    }
}


/* ===============================================

	Stage

=============================================== */
/* -----------------------------------------------
	MainImage
----------------------------------------------- */
.Stage-MainImage {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;

    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Stage-MainImage.jpg') no-repeat top center;
    background-size: cover;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Stage-MainImage {
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Stage-MainImage_sp.jpg') no-repeat top center;
        background-size: cover;
    }
}

/* -----------------------------------------------
	Stage-Message
----------------------------------------------- */
.Stage-Message {
    padding: 7px;
}

.Stage-Message-Content {
    padding: 165px 0 110px 0;

    font-size: 20px;
    text-align: center;
    line-height: 3em;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}


/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Stage-Message-Content {
        padding: 50px 0;
        font-size: 140%;
    }
}

@media only screen and (max-width: 420px) {
    .Stage-Message-Content {
        padding: 40px 0;
        font-size: 90%;
        line-height: 2.5em;
    }
}

@media only screen and (max-width: 380px) {
    .Stage-Message-Content {
        padding: 30px 0;
        font-size: 80%;
    }
}

@media only screen and (max-width: 360px) {
    .Stage-Message-Content {
        font-size: 80%;
    }
}

@media only screen and (max-width: 320px) {
    .Stage-Message-Content {
        font-size: 70%;
    }
}

/* -----------------------------------------------
	Stage-Photo
----------------------------------------------- */
.Stage-Photo ul {
    overflow: hidden;
    margin-bottom: 0;
}

.Stage-Photo li {
    width: 33.333%;
}

.Stage-Photo li img {
    width: 100%;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Stage-Photo li {
        width: 50%;
    }

    .Stage-Photo li.Wide {
        width: 100%;
    }
}

/* -----------------------------------------------
	Stage-Message 2
----------------------------------------------- */
.Stage-Message2 {
    padding: 7px;
}

.Stage-Message2-Content {
    padding: 140px 0 150px 0;

    font-size: 18px;
    text-align: center;
    line-height: 3em;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}

.Stage-Message2-Content h2 {
    font-size: 30px;
    line-height: 1.7em;
    margin: 0 auto 45px auto;
}

.Stage-Message2-Content p {
    line-height: 2.2em;
}


/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Stage-Message2-Content {
        padding: 50px 0;
        font-size: 140%;
    }

    .Stage-Message2-Content h2 {
        line-height: 1.8em;
        margin: 30px auto 15px auto;
    }
}

@media only screen and (max-width: 420px) {
    .Stage-Message2-Content {
        padding: 40px 0;
        font-size: 90%;
        line-height: 2.5em;
    }

    .Stage-Message2-Content h2 {
        margin-top: 10px;
        font-size: 22px;
    }
}

@media only screen and (max-width: 380px) {
    .Stage-Message2-Content {
        padding: 30px 0;
        font-size: 80%;
    }

    .Stage-Message2-Content h2 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 360px) {
    .Stage-Message2-Content {
        font-size: 80%;
    }
}

@media only screen and (max-width: 320px) {
    .Stage-Message2-Content {
        font-size: 70%;
    }

    .Stage-Message2-Content h2 {
        font-size: 18px;
    }
}


/* -----------------------------------------------
	Stage-Style
----------------------------------------------- */
.Stage-Style-Container {
    overflow: hidden;
    position: relative;
    padding: 100px 0 145px 0;
}

.Stage-Style-Container:nth-child(even) {
    background-color: #fafafa;
}

.Stage-Style-bg {
    width: 67%;
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
}

.Stage-Style-Container:nth-child(odd) .Stage-Style-bg {
    margin-left: auto;
}

/* パリスタイル */
.Stage-ParisStyle .Stage-Style-bg {
    background-image: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Stage-ParisStyle.jpg');
}

/* ニューヨークスタイル */
.Stage-NewYorkStyle .Stage-Style-bg {
    background-image: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Stage-NewYorkStyle.jpg');
}

/* バリスタイル */
.Stage-BaliStyle .Stage-Style-bg {
    background-image: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Stage-BaliStyle.jpg');
}

.Stage-Style-Content {
    position: absolute;
    bottom: 90px;
    right: 62%;

    width: 470px;
    border: 8px solid #fff;
    background: rgba(255, 255, 255, 0.95);
}

.Stage-Style-Container:nth-child(even) .Stage-Style-Content {
    position: absolute;
    bottom: 90px;
    right: auto;
    left: 62%;
}

.Stage-Style-text {
    padding: 20px 60px 100px 60px;
    color: #222;
    font-size: 18px;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}

.Stage-Style-text h2 {
    display: block;
    margin: 50px 0 25px 0;

    font-size: 30px;
    font-weight: normal;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.Stage-Style-text h2 i {
    display: block;
    margin-top: 10px;

    color: #b09d34;
    font-size: 12px;
}

.Stage-Style-text strong {
    display: block;
    font-size: 30px;
    line-height: 1.7em;
    font-weight: normal;
}

.Stage-Style-text p i {
    display: block;
    margin: 20px 0 0 0;
    color: #888;
    font-size: 14px;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    line-height: 1em;
}

.Stage-Style-text a:link,
.Stage-Style-text a:visited {
    display: block;
    margin-top: 60px;
    padding: 8px 0;
    width: 230px;

    color: #fff;
    font-size: 13px;
    text-align: center;
    background: #b09d34;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

.Stage-Style-text a:hover {
    background: #c1af4b;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Stage-Style-Container {
        padding: 0 0 60px 0;

        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: top center;
    }

    .Stage-Style-Container:nth-child(even) {
        background-position: center 70px;
    }

    .Stage-Style-bg {
        display: none;
    }

    .Stage-Style-Container:nth-child(odd) .Stage-Style-bg {
        margin: 0;
    }

    /* パリスタイル */
    .Stage-ParisStyle {
        background-image: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Stage-ParisStyle_sp.jpg');
    }

    /* ニューヨークスタイル */
    .Stage-NewYorkStyle {
        background-image: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Stage-NewYorkStyle_sp.jpg');
    }

    /* バリスタイル */
    .Stage-BaliStyle {
        background-image: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Stage-BaliStyle_sp.jpg');
    }

    .Stage-Style-Content {
        position: static;
        width: 90%;
        margin: 90.5% auto 0 auto;
        text-align: center;
    }

    .Stage-Style-Container:nth-child(even) .Stage-Style-Content {
        position: static;
        width: 90%;
        margin: 99.5% auto 0 auto;
        text-align: center;
    }

    .Stage-Style-text {
        padding: 20px 60px 60px 60px;
    }

    .Stage-Style-text h2 {
        font-size: 180%;
    }

    .Stage-Style-text strong {
        font-size: 170%;
    }

    .Stage-Style-text a:link,
    .Stage-Style-text a:visited {
        width: 80%;
        padding: 25px;
        margin: 50px auto 0 auto;
        font-size: 17px;
    }
}

@media only screen and (max-width: 420px) {
    .Stage-Style-Container {
        padding: 0 0 40px 0;
    }

    .Stage-Style-Container:nth-child(even) {
        background-position: center 50px;
    }

    .Stage-Style-Container:nth-child(even) .Stage-Style-Content {
        margin: 102% auto 0 auto;
    }

    .Stage-Style-text {
        padding: 0 10px 50px 10px;
    }

    .Stage-Style-text h2 {
        margin: 35px 0 25px 0;
        font-size: 130%;
    }

    .Stage-Style-text h2 i {
        font-size: 11px;
    }

    .Stage-Style-text strong {
        font-size: 140%;
    }

    .Stage-Style-text a:link,
    .Stage-Style-text a:visited {
        width: 90%;
        padding: 15px;
        margin: 30px auto 0 auto;
        font-size: 14px;
    }
}

@media only screen and (max-width: 380px) {
    .Stage-Style-Container {
        padding: 0 0 30px 0;
    }

    .Stage-Style-Container:nth-child(even) {
        background-position: center 40px;
    }

    .Stage-Style-Container:nth-child(even) .Stage-Style-Content {
        margin: 101% auto 0 auto;
    }

    .Stage-Style-text {
        padding: 0 10px 40px 10px;
    }

    .Stage-Style-text h2 {
        margin: 30px 0 25px 0;
        font-size: 100%;
    }

    .Stage-Style-text h2 i {
        font-size: 10px;
    }

    .Stage-Style-text strong {
        font-size: 110%;
    }

    .Stage-Style-text a:link,
    .Stage-Style-text a:visited {
        padding: 8px;
        margin: 30px auto 0 auto;
        font-size: 12px;
    }

}

/* -----------------------------------------------
	Stage-Fair
----------------------------------------------- */
.Stage-Fair {
    padding: 90px 0;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Stage-Fair.jpg') no-repeat center center;
    background-size: cover;
}

.Stage-Fair-Content {
    width: 460px;

    border: 8px solid #fff;
    background: #fff;
}

.Stage-Fair-text {
    padding: 45px 45px 50px 45px;
    border: 1px solid #e7e1c2;
}

.Stage-Fair-text h2 {
    margin-bottom: 20px;

    font-size: 24px;
    line-height: 2em;
    letter-spacing: 1px;
    font-family: 'SerifJapanese', serif;
}

.Stage-Fair-text p {
    font-size: 15px;
    line-height: 2em;
    text-align: left;
}

.Stage-Fair-text a:link,
.Stage-Fair-text a:visited {
    display: block;
    padding: 7px;
    margin: 25px auto 0 auto;

    font-size: 14px;
    text-align: center;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    border: 1px solid #222;
}

.Stage-Fair-text a:hover {
    border: 1px solid #aaa;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 1280px) {
    .Stage-Fair .inner {
        width: 1050px;
    }
}

@media only screen and (max-width: 768px) {
    .Stage-Fair {
        padding: 62% 0 6.5% 0;
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Stage-Fair_sp.jpg') no-repeat top right;
        background-size: cover;
    }

    .Stage-Fair .inner {
        width: 90%;
    }

    .Stage-Fair-text {
        padding: 5% 7% 8% 7%;
    }

    .Stage-Fair-Content {
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
    }

    .Stage-Fair-text h2 {
        margin-bottom: 3%;
        font-size: 180%;
        line-height: 1.5em;
    }

    .Stage-Fair-text p {
        margin: 20px auto 0 auto;
        font-size: 120%;
    }

    .Stage-Fair-text a:link,
    .Stage-Fair-text a:visited {
        width: 70%;
        padding: 25px 40px;
        margin: 25px auto 0 auto;
        font-size: 110%;
    }
}

@media only screen and (max-width: 420px) {
    .Stage-Fair-text h2 {
        font-size: 22px;
    }

    .Stage-Fair-text p {
        font-size: 90%;
        margin: 10px auto 0 auto;
    }

    .Stage-Fair-text a:link,
    .Stage-Fair-text a:visited {
        padding: 10px 20px;
        font-size: 85%;
    }
}

@media only screen and (max-width: 380px) {
    .Stage-Fair-text h2 {
        font-size: 20px;
    }

    .Stage-Fair-text p {
        font-size: 13px;
    }

    .Stage-Fair-text a:link,
    .Stage-Fair-text a:visited {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 360px) {
    .Stage-Fair-text p {
        margin: 10px auto 0 auto;
    }
}

@media only screen and (max-width: 320px) {
    .Stage-Fair-text h2 {
        font-size: 18px;
    }

    .Stage-Fair-text p {
        font-size: 12px;
    }

    .Stage-Fair-text a:link,
    .Stage-Fair-text a:visited {
        font-size: 11px;
    }
}

/* -----------------------------------------------
	Stage-Chapel
----------------------------------------------- */
.Stage-Chapel {
    padding: 100px 0;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Stage-Chapel.jpg') no-repeat center center;
    background-size: cover;
}

.Stage-Chapel-Content {
    width: 460px;
    margin-left: auto;

    border: 8px solid #fff;
    background: #fff;
}

.Stage-Chapel-text {
    padding: 45px 45px 60px 45px;
    border: 1px solid #e7e1c2;
}

.Stage-Chapel-text h2 {
    margin-bottom: 20px;

    font-size: 24px;
    line-height: 2em;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'SerifJapanese', serif;
}

.Stage-Chapel-text a:link,
.Stage-Chapel-text a:visited {
    display: block;
    padding: 7px;
    margin: 40px 40px 0 40px;

    font-size: 14px;
    text-align: center;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    border: 1px solid #222;
}

.Stage-Chapel-text a:hover {
    border: 1px solid #aaa;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 1280px) {
    .Stage-Chapel .inner {
        width: 1050px;
    }
}

@media only screen and (max-width: 768px) {
    .Stage-Chapel {
        padding: 62% 0 6.5% 0;
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Stage-Chapel_sp.jpg') no-repeat top right;
        background-size: cover;
    }

    .Stage-Chapel .inner {
        width: 90%;
    }

    .Stage-Chapel-text {
        padding: 5% 5% 8% 5%;
    }

    .Stage-Chapel-Content {
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
    }

    .Stage-Chapel-text h2 {
        margin-bottom: 3%;
        font-size: 180%;
        line-height: 1.8em;
    }

    .Stage-Chapel-text a:link,
    .Stage-Chapel-text a:visited {
        width: 70%;
        padding: 25px 40px;
        margin: 15px auto 0 auto;
        font-size: 110%;
    }
}

@media only screen and (max-width: 420px) {
    .Stage-Chapel-text h2 {
        font-size: 20px;
    }

    .Stage-Chapel-text a:link,
    .Stage-Chapel-text a:visited {
        padding: 10px 20px;
        font-size: 85%;
    }
}

@media only screen and (max-width: 380px) {
    .Stage-Chapel-text h2 {
        font-size: 18px;
    }

    .Stage-Chapel-text a:link,
    .Stage-Chapel-text a:visited {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 320px) {
    .Stage-Chapel-text h2 {
        font-size: 16px;
    }

    .Stage-Chapel-text a:link,
    .Stage-Chapel-text a:visited {
        font-size: 11px;
    }
}


/* ===============================================

	Footer

=============================================== */
/* -----------------------------------------------
	Information
----------------------------------------------- */
.Information {
    margin: 0 0 80px 0;
    padding: 100px 0;

    color: #fff;
    text-align: center;
    font-size: 15px;
    font-family: 'SerifJapanese', serif;

    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Information.jpg') no-repeat left top;
    background-size: cover;
}

.Information .inner {
    width: 460px;
}

.Information .logo {
    display: block;
    margin: 0 auto 70px auto;
    width: 280px;
}

.Information p {
    line-height: 2.2em;
}

.Information p.Tel {
    font-size: 24px;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Information {
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Information_sp.jpg') no-repeat left top;
        background-size: cover;
    }

    .Information p.Tel {
        letter-spacing: 1px;
    }
}

@media only screen and (max-width: 420px) {
    .Information {
        margin: 0 0 50px 0;
        padding: 60px 0 45px 0;
    }

    .Information .logo {
        margin: 0 auto 40px auto;
    }

    .Information .inner {
        width: 90%;
    }

    .Information p {
        line-height: 1.8em;
    }

    .Information .column a {
        width: 48%;
    }
}


/* -----------------------------------------------
	Link
----------------------------------------------- */
section.Link {
    display: flex;
    justify-content: space-between;
}

section.Link a {
    display: block;
    width: 32%;
}

section.Link img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    section.Link {
        display: block;
    }

    section.Link a {
        width: 100%;
        text-align: center;
    }

    section.Link a+a {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 420px) {
    section.Link a+a {
        margin-top: 20px;
    }
}





/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .footer-Link {
        text-align: center;
    }

    .footer-Link div {
        margin: 0 auto;
    }

    .footer-Link div+div {
        margin-top: 50px;
    }
}


/* -----------------------------------------------
	Footer
----------------------------------------------- */
footer {
    padding: 0;
    margin-top: 70px;
}

footer .footer-nav1 {
    padding: 45px 0;
    margin-bottom: 50px;
    background: #fafafa;
}

footer .footer-nav1 ul {
    width: 840px;
    margin: 0 auto;
}

footer .footer-nav1 a:link,
a:visited {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

footer .logo {
    display: block;
    margin: 0 auto;
}

footer .footer-nav2 {
    margin: 50px auto;
    width: 800px;
}

footer .footer-nav2 div {
    width: 48%;
}

footer .footer-nav2 strong {
    display: block;
    padding-left: 10px;
    padding-bottom: 5px;

    font-size: 15px;
    font-family: 'SerifJapanese', serif;
    border-bottom: 1px solid #eee;
}

footer .footer-nav2 ul+ul {
    margin-top: 50px;
}

footer .footer-nav2 li {
    padding: 5px 10px;

    font-size: 13px;
    line-height: 2.2em;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

footer .footer-nav2 li a:before {
    content: "-";
    margin-right: 3px;
}

footer .footer-nav2 .AccordionList {
    width: 100%;
}

footer .footer-nav3 {
    padding: 50px 0;
    margin: 50px auto 0 auto;

    font-size: 12px;
    border-top: 1px solid #eee;
}

footer .footer-nav3 a+a {
    margin-left: 35px;
}

footer .footer-nav3 .PC {
    display: inline-block;
}

footer .copy {
    margin: 0;
    padding: 20px;

    color: #fff;
    font-size: 13px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    background: #222;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    footer .footer-nav1 {
        padding: 0;
        background: none;
    }

    footer .footer-nav1 ul {
        width: 100%;
        background: #fafafa;
        border-top: 1px solid #ebebeb;
    }

    footer .footer-nav1 ul li {
        width: 50%;
        padding: 40px;
        border-bottom: 1px solid #ebebeb;
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/link.png') no-repeat right center;
    }

    footer .footer-nav1 ul li a:link,
    footer .footer-nav1 ul li a:visited {
        font-size: 24px;
    }

    footer .footer-nav1 ul li:nth-child(odd) {
        border-right: 1px solid #ebebeb;
    }

    footer .footer-nav2 {
        width: 100%;
        margin-bottom: 0;
        border-top: 1px solid #ebebeb;
    }

    footer .footer-nav2 div {
        width: 100%;
    }

    footer .footer-nav2 strong {
        padding: 30px;
        font-size: 24px;
    }

    footer .footer-nav2 .AccordionList {
        display: none;
    }

    footer .footer-nav2 ul+ul {
        margin-top: 0;
    }

    footer .footer-nav2 li {
        padding: 15px 15px 15px 30px;
        font-size: 20px;
        background: #fafafa;
        border-bottom: 1px solid #eee;
    }

    footer .footer-nav3 {
        padding: 35px 0 20px 0;
        margin: 0 auto;
        border: none;
        font-size: 20px;
    }

    footer .footer-nav3 div {
        width: 100%;
        text-align: center;
    }

    footer .footer-nav3 div+div {
        margin-top: 30px;
        padding-top: 30px;
        padding-bottom: 10px;
        border-top: 1px solid #eee;
    }

    footer .footer-nav3 .PC {
        display: none;
    }

    footer .footer-nav3 a {
        display: inline-block;
    }
}

@media only screen and (max-width: 420px) {
    footer {
        margin-top: 50px;
    }

    footer .footer-nav1 ul li {
        padding: 20px;
        background-position: 160px center;
    }

    footer .footer-nav1 ul li a:link,
    footer .footer-nav1 ul li a:visited {
        font-size: 95%;
    }

    footer .footer-nav2 strong {
        font-size: 95%;
        padding: 20px;
    }

    footer .footer-nav2 li {
        padding: 15px;
        font-size: 90%;
    }

    footer .footer-nav3 {
        font-size: 88%;
    }

    footer .footer-nav3 div+div a+a {
        margin-top: 8px;
        margin-left: 10px;
    }

    footer .footer-nav3 img {
        width: 25px;
        height: 26px;
    }
}

@media only screen and (max-width: 320px) {
    footer .footer-nav1 ul li {
        padding: 30px 20px;
        background-position: 140px center;
    }

    footer .footer-nav2 strong {
        padding: 20px;
    }

    footer .footer-nav3 {
        padding: 35px 0 20px 0;
        line-height: 1.8em;
    }
}


/* -----------------------------------------------
	PageTop
----------------------------------------------- */
#pageTop {
    position: fixed;
    bottom: 75px;
    right: 20px;

    color: #555;
    font-size: 4em;

    -webkit-transition: all .3s;
    transition: all .3s;

    cursor: pointer;
    z-index: 1000;
}

#pageTop:hover {
    color: #aaa;
}


/* -----------------------------------------------
	animation
----------------------------------------------- */
.animation {
    visibility: hidden;
}

/* 左から右 */
.fadeInDown {
    display: block;

    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -ms-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.animation2 {
    visibility: hidden;
}

/* 下から上 */
.fadeInDown2 {
    display: block;

    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -ms-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInDown2;
    animation-name: fadeInDown2;
    visibility: visible !important;
}

@-webkit-keyframes fadeInDown2 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown2 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}


.delay-show .show,
.delay-show2 .show,
.delay-show3 .show {
    position: relative;
    top: 40px;
    opacity: 0;
}


.fadeIn {
    display: none;
}


.Accordion_icon,
.Accordion_icon span {
    display: none;
}


/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {

    .Accordion_icon,
    .Accordion_icon span {
        display: inline-block;
        margin: 0;
        padding: 0;

        transition: all .4s;
        box-sizing: border-box;
        cursor: pointer;
    }

    .Accordion_icon {
        position: relative;
        float: right;

        width: 18px;
        height: 18px;
        margin-left: 5px;
    }

    .Accordion_icon span {
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;
        height: 1px;
        margin-top: 7px;

        background-color: #222;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -ms-border-radius: 4px;
        -moz-border-radius: 4px;
        -o-border-radius: 4px;
    }

    .Accordion_icon span:nth-of-type(1) {
        top: 5px;
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    .Accordion_icon span:nth-of-type(2) {
        top: 5px;
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    }

    /*＋、－切り替え*/
    .Accordion_icon.active span:nth-of-type(1) {
        display: none;
    }

    .Accordion_icon.active span:nth-of-type(2) {
        top: 5px;
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }
}




/*news_box------------------------------------------------------*/
@media screen and (min-width: 1025px) {
    #news_top_content .img {
        display: none;
    }

    #news_top_content .txt {
        display: none;
    }

    #news_top_content #news_list {
        margin: 0;
        padding: 5px;
        height: auto;
        overflow: hidden;
        background-color: #fff;
        margin-bottom: 10px;
        border-bottom: 1px solid #CFCFCF;
    }

    #news_top_content h3 span {
        text-align: center;
        margin-right: 20px;
        padding: 5px;
        font-size: 12px;
        float: left;
        background-color: #216FCC;
        color: #FFFFFF;
        margin-top: -5px;
    }

    #news_top_content {
        clear: both;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    #news_top_content .date {
        color: #b09d34;
        float: left;
        padding-left: 0px;
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0px;
        padding-top: 0px;
        padding-right: 20px;
        padding-bottom: 0px;
        margin-top: 0;
    }

    #news_top_content h3 {
        display: block;
        font-size: 14px;
        line-height: 100% !important;
        padding: 0 0 0 20px !important;
        margin: 0 !important;
        overflow: auto;
    }

    #news_top_content p {
        line-height: 100% !important;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    #news_top_content li .date {
        font-size: 12px;
    }

    #news_top_content #news_list .pick {
        display: none;
    }

    .wrap-gold-l {
        width: 100%;
        background: url(../img/wrap-g-l.jpg) repeat-y left;
    }

    .wrap-gold-r {
        width: 100%;
        background: url(../img/wrap-g-r.jpg) repeat-y right;
    }

    .wrap-silver-l {
        width: 100%;
        background: url(../img/wrap-s-l.jpg) repeat-y left;
    }

    .wrap-silver-r {
        width: 100%;
        background: url(../img/wrap-s-r.jpg) repeat-y right;
    }

}

@media screen and (min-width: 640px) and (max-width: 1024px) {
    #news_top_content .img {
        display: none;
    }

    #news_top_content .txt {
        display: none;
    }

    #news_top_content #news_list {
        margin: 0;
        padding: 0px;
        width: 95%;
        height: 100%;
        overflow: hidden;
        background-color: #fff;
        margin-bottom: 10px;
        border-bottom: 1px solid #CFCFCF;
    }

    #news_top_content h3 span {
        text-align: center;
        margin-right: 20px;
        padding: 5px;
        font-size: 12px;
        float: left;
        background-color: #216FCC;
        color: #FFFFFF;
        margin-top: -5px;
    }

    #news_top_content {
        clear: both;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }


    #news_top_content .date {
        color: #b09d34;
        float: left;
        padding-left: 0px;
        font-size: 12px;
        line-height: 24px;
        margin-bottom: 0px;
        padding-top: 0px;
        padding-right: 20px;
        padding-bottom: 0px;
        margin-top: 0;
    }

    #news_top_content #news_list h3 {
        display: block;
        font-size: 12px;
        line-height: 100% !important;
        padding: 0 0 0 20px !important;
        margin: 0 !important;
        overflow: auto;

    }

    #news_top_content p {
        line-height: 100% !important;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    #news_top_content h3 p {
        line-height: 100%;
    }

    #news_top_content li .date {
        font-size: 12px;
    }

    #news_top_content #news_list .pick {
        display: none;
    }

    .wrap-gold-l {
        width: 100%;
        background: url(../img/wrap-g-l.jpg) repeat-y left;
    }

    .wrap-gold-r {
        width: 100%;
        background: url(../img/wrap-g-r.jpg) repeat-y right;
    }

    .wrap-silver-l {
        width: 100%;
        background: url(../img/wrap-s-l.jpg) repeat-y left;
    }

    .wrap-silver-r {
        width: 100%;
        background: url(../img/wrap-s-r.jpg) repeat-y right;
    }

}

@media screen and (max-width: 640px) {
    #news_top_content .img {
        display: none;
    }

    #news_top_content .txt {
        display: none;
    }

    #news_top_content #news_list {
        text-align: left;
        margin: 0;
        padding: 0px;
        width: 95%;
        height: 100%;
        overflow: hidden;
        background-color: #fff;
        margin-bottom: 10px;
        border-bottom: 1px solid #CFCFCF;
    }

    #news_top_content h3 span {
        text-align: left;
        margin-right: 20px;
        padding: 5px;
        font-size: 11px;
        float: left;
        background-color: #216FCC;
        color: #FFFFFF;
        margin-top: -5px;
    }

    #news_top_content {
        clear: both;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    #news_top_content .date {
        color: #b09d34;
        clear: both;
        padding-left: 0px;
        font-size: 12px;
        line-height: 28px;
        margin-bottom: 0px;
        padding-top: 4px;
        padding-right: 4px;
        padding-bottom: 0px;
    }

    #news_top_content #news_list h3 {
        font-size: 12px;
        line-height: 18px;
        padding: 0 5px 20px 0;
        margin: 0;
        width: 90%;
        text-align: left;
        display: block;

    }

    #news_top_content h3 p {
        line-height: 160%;
    }

    #news_top_content li .date {
        font-size: 12px;
    }

    #news_top_content .pick {
        display: none;
    }

    .wrap-gold-l {
        width: 100%;
        background: url(../img/wrap-g-l-sm.jpg) repeat-x left;
        background-position: top;
        margin-top: -15px;
    }

    .wrap-gold-r {}

    .wrap-silver-l {
        width: 100%;
        background: url(../img/wrap-s-l-sm.jpg) repeat-x left;
        background-position: top;
        margin-top: -15px;
    }

    .wrap-silver-r {}




}

/*------------------------------------------------------------------------------
#
#  plan詳細ポップアップ 20181222 add
#
----------------------------------------------------------------------------- */
.plan_detail_conditions {
    overflow: hidden;
    width: 625px;
    margin: 0 auto;
    border-bottom: 1px solid #f4f4f4;
}

.plan_detail_conditions table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.plan_detail_conditions table th {
    width: 100px;
    padding: 10px 0 10px 25px;
    color: #35a626;
    font-size: 15px;
    border-top: 1px solid #f4f4f4;
    font-weight: 400;
}

.plan_detail_conditions table td {
    width: 525px;
    margin: 0;
    padding: 10px 20px 10px 0;
    font-size: 14px;
    border-top: 1px solid #f4f4f4;
}

.plan_detail_detail {
    width: 100%;
    margin: 27px auto 35px auto;
}

.plan_detail_detail table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.plan_detail_detail tr {}

.plan_detail_detail th {
    width: 9em;
    height: 32px;
    margin: 0;
    padding: 0 8px;
    color: #6d6d6d;
    font-size: 11px;
    font-weight: normal;
    line-height: 32px;
    border: 1px solid #b9b9b9;
    background: #eee;
}

.plan_detail_detail td {
    width: auto;
    height: 32px;
    margin: 0;
    padding: 0 8px;
    color: #35a626;
    font-size: 20px;
    text-align: center;
    line-height: 32px;
    background: #fff;
    border: 1px solid #b9b9b9;
}

.plan_detail_detail tr.plan_detail_detail_wide th {
    margin: 0;
    padding: 8px;
    color: #6d6d6d;
    font-size: 11px;
    font-weight: normal;
    line-height: 1.8em;
}

.plan_detail_detail tr.plan_detail_detail_wide td {
    text-align: left;
    margin: 0;
    padding: 8px;
    color: #6d6d6d;
    font-size: 11px;
    font-weight: normal;
    line-height: 1.8em;
}

.plan_detail_detail tr.plan_detail_detail_wide td p {
    padding: 0;
    margin: 0;
}

.plan_detail_detail::after {
    content: "";
    clear: both;
}

@media only screen and (max-width: 768px) {
    .plan_detail_conditions {
        width: 100%;
    }

    .plan_detail_conditions table th {
        width: 100%;
        padding: 5px 15px 0 15px;
        display: block;
    }

    .plan_detail_conditions table td {
        width: 100%;
        padding: 0 15px 5px 15px;
        border: none;
        display: block;
    }

    .plan_detail_detail tr {
        display: block;
    }

    .plan_detail_detail th,
    .plan_detail_detail td {
        box-sizing: border-box;
        display: block;
        float: left;
        width: 25%;
        border-bottom: none;
    }

    .plan_detail_detail th {
        border-right: none;
    }

    .plan_detail_detail tr.plan_detail_detail_wide {
        display: table;
        width: 100%;
    }

    .plan_detail_detail tr.plan_detail_detail_wide th,
    .plan_detail_detail tr.plan_detail_detail_wide td {
        display: table-cell;
        float: none;
        width: 50%;
    }

    .plan_detail_detail tr:last-child>* {
        border-bottom: 1px solid #b9b9b9;
    }
}

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

    .plan_detail_conditions table th,
    .plan_detail_conditions table td {
        font-size: 12px;
        line-height: 1.5em;
    }

    .plan_detail_detail {
        margin: 20px auto 35px auto;
    }

    .plan_detail_detail th {
        height: 28px;
        font-size: 10px;
        line-height: 28px;
    }

    .plan_detail_detail td {
        height: 28px;
        font-size: 18px;
        line-height: 28px;
    }

    .plan_detail_detail tr.plan_detail_detail_wide th {
        padding: 5px;
        font-size: 10px;
        line-height: 1.5em;
    }

    .plan_detail_detail tr.plan_detail_detail_wide td {
        padding: 5px;
        font-size: 10px;
        line-height: 1.5em;
    }
}


.mitumori {
    position: relative;
    width: 100%;
    background-color: #F5F5F5;
    margin: 0;
    padding: 0;
}


.mitumori-box {
    position: relative;
    max-width: 1000px;
    margin: auto;
    padding: 40px 0;
    text-align: center;
}

.mitumori .mitumori-box h2 {
    margin-bottom: 15px;

    color: #666;
    font-size: 22px;
    line-height: 1.75em;
    letter-spacing: 3px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.mitumori .mitumori-box h3 {
    margin-bottom: 15px;

    color: #666;
    font-size: 18px;
    line-height: 1.75em;
    letter-spacing: 3px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


.mitumori .mitumori-box h4 {
    margin-bottom: 15px;

    color: #666;
    font-size: 15px;
    line-height: 1.75em;
    letter-spacing: 3px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


.mitumori .mitumori-box p {
    color: #666;
    font-size: 14px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.mitumori .list3 {
    width: 100%;
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    text-align: left;


}

.mitumori .list3 li {
    list-style: none;
    float: left;
    margin: 0 0 0 5% !important;
    padding: 20px 0 20px 0 !important;
    width: 30%;
    border-bottom: 1px solid #676767;
    border-top: 1px solid #676767;
    height: 220px;
    background-color: #F5F5F5 !important;

}

.mitumori .list3 .top {
    margin: 0 !important;
    padding: 20px 0 20px 0 !important;
}

.mitumori .list3 .right {
    float: right;

}


.clear {
    clear: both;
}

.clear:after {
    display: block;
    clear: both;
    content: "";
}

.mitumori-box2 {
    position: relative;
    max-width: 800px;
    margin: auto;
    padding: 40px 0 0 0;
}

.mitumori .left {
    width: 17%;
    height: auto;
    float: left;
    padding-top: 10px;
    padding-right: 3%;

}

.mitumori .left img {
    width: 100%;
    height: auto;

}

.mitumori .right {
    width: 80%;
    height: auto;
    float: left;
    text-align: left;
    padding: 0;
    margin: 0;

}

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

    .mitumori .mitumori-box h2 {
        display: block;
        width: 80%;
        margin: auto;
    }

    .mitumori .mitumori-box h4 {
        display: block;
        width: 90%;
        margin: auto;
    }


    .mitumori .list3 {
        width: 100%;
        list-style: none;
        margin: 30px 0 0;
        padding: 0;
        text-align: left;


    }

    .mitumori .list3 li {
        list-style: none;
        float: none;
        margin: 0 auto 20px auto !important;
        padding: 20px 0 0px 0 !important;
        width: 90%;
        border-bottom: 0;
        border-top: 1px solid #676767;
        height: auto !important;
        background-color: #F5F5F5 !important;

    }

    .mitumori .list3 .top {
        margin: 0 auto !important;
        padding: 20px 0 20px 0 !important;
    }

    .mitumori .list3 .right {
        float: none;

    }

    .mitumori .tyu {
        margin-top: 0px;

    }

    .mitumori .left {
        width: 60%;
        margin: auto;
        height: auto;
        float: none;

    }

    .mitumori .right {
        width: 90%;
        height: auto;
        float: none;
        text-align: left;
        padding: 10px 0 0 0;
        margin: auto;

    }

    .mitumori-box2 {

        padding: 0;
    }

}





/*====================================
#
#			Renewal Topics
#
=====================================*/
.Renewal-midasi-square {
    margin-top: 120px;
    margin-bottom: 50px;
    text-align: center;
}

.Renewal-midasi-square .inner {
    display: inline-block;
    border: 1px solid #000;
    padding: 22px 10px 20px;
    font-size: 26px;
    font-weight: bold;
    color: #000;
    letter-spacing: 0.1em;
    font-family: 'Geometric706W01-Medium';
}

.Renewal-midasi-square .inner small {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-family: "Times New Roman", YuMincho, "Hiragino Mincho Pro", "MS PMincho", Meiryo, serif;
    color: #7f6000;
}


.Renewal-Message-Content {
    padding: 0 10px;
    font-size: 20px;
    text-align: center;
    line-height: 3em;
    font-family: 'SerifJapanese', serif;
}


.Renewal-01 {
    overflow: hidden;
    position: relative;
    padding: 100px 0 200px 0;
}

.Renewal-02 {
    position: relative;
    padding: 100px 0 200px 0;
    background: #fafafa;
}

.Renewal-01-bg {
    height: 530px;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/renewal-bg1.jpg') no-repeat right top;
    background-size: 67% auto;
    visibility: hidden;
}

.Renewal-02-bg {
    height: 538px;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/renewal-bg2.jpg') no-repeat left top;
    background-size: 67% auto;
}

.Renewal-01-Content {
    position: absolute;
    bottom: 100px;
    right: 60%;
    width: 400px;
    border: 8px solid #fff;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 100;
}

.Renewal-02-Content {
    position: absolute;
    bottom: 100px;
    left: 60%;
    width: 400px;
    border: 8px solid #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.Renewal-01-text {
    padding: 55px 50px;
    color: #222;
    font-size: 18px;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
    z-index: 100;
}

.Renewal-02-text {
    padding: 55px 50px;
    color: #222;
    font-size: 18px;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}

.Renewal-01-text h2,
.Renewal-02-text h2 {
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 1.55em;
    font-family: 'SerifJapanese', serif;
    color: #7f6000;
}

.Renewal-01-text p,
.Renewal-02-text p {
    font-size: 15px;
    line-height: 2.2em;
}

.Renewal-Message2 {
    padding: 7px;
}

.Renewal-Message2-Content {
    padding: 140px 0 150px 0;
    font-size: 18px;
    text-align: center;
    line-height: 3em;
    font-family: 'SerifJapanese', serif;
    border: 1px solid #e7e1c2;
}

.Renewal-Message2-Content h2 {
    font-size: 30px;
    line-height: 1.7em;
    margin: 0 auto 45px auto;
}

.renewal-btns {
    display: flex;
    justify-content: center;
    line-height: 1.6;
}

.renewal-btns a {
    display: block;
    width: 250px;
    padding: 10px 30px;
    font-size: 14px;
    text-align: center;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    border: 1px solid #222;
}

.renewal-btns a+a {
    margin-left: 20px;
}


@media screen and (max-width: 768px) {
    .Renewal-Message-Content {
        font-size: 16px;
    }

    .Renewal-01,
    .Renewal-02 {
        position: static;
        overflow: hidden;
        padding: 50px 0;
    }

    .Renewal-01 {
        padding: 50px 0 40px 0;
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/renewal-bg1.jpg') no-repeat right 50px;
        background-size: 100% auto;
    }

    .Renewal-02 {
        background: #fafafa url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/renewal-bg2.jpg') no-repeat right 50px;
        background-size: 100% auto;
    }

    .Renewal-01-bg,
    .Renewal-02-bg {
        height: 0;
        background: none;
    }

    .Renewal-01-Content,
    .Renewal-02-Content {
        position: static;
        margin: 44% auto 0 auto;
        width: 90%;
    }

    .Renewal-01-text,
    .Renewal-02-text {
        padding: 50px;
        text-align: center;
    }


    .Renewal-Message2-Content {
        padding: 50px 0;
        font-size: 140%;
    }

    .Renewal-Message2-Content h2 {
        line-height: 1.8em;
        margin: 30px auto 15px auto;
    }

    .renewal-btns {
        flex-direction: column;
        align-items: center;
    }

    .renewal-btns a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        margin-top: 20px;
        text-align: center;
    }

    .renewal-btns a+a {
        margin-left: 0;
    }
}

@media only screen and (max-width: 420px) {
    .Renewal-Message-Content p {
        font-size: 18px;
        line-height: 2.5em;
    }

    .Renewal-01-text,
    .Renewal-02-text {
        padding: 30px 10px;
    }

    .Renewal-01-text h2,
    .Renewal-02-text h2 {
        margin-bottom: 20px;
    }

    .Renewal-Message2-Content {
        padding: 40px 0;
        font-size: 90%;
        line-height: 2.5em;
    }

    .Renewal-Message2-Content h2 {
        margin-top: 10px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 320px) {
    .Renewal-Message-Content p {
        font-size: 16px;
    }

    .Renewal-01-text h2,
    .Renewal-02-text h2 {
        font-size: 20px;
    }

    .Renewal-01-text p,
    .Renewal-02-text p {
        font-size: 13px;
        line-height: 2em;
    }

    .Renewal-Message2-Content {
        padding: 30px 0;
        font-size: 80%;
    }

    .Renewal-Message2-Content h2 {
        font-size: 18px;
    }
}


/* -----------------------------------------------
Report
----------------------------------------------- */
.Report-MainImage {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Report-MainImage.jpg') no-repeat bottom center / cover;
}

.Report-MainImage h1 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

.Report-Lead {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 385px;
    margin: 7px;
    padding: 10px;
    border: 1px solid #F9D1D6;
}

.Report-Lead-inner {
    color: #1f1f1f;
    font-family: 'SerifJapanese', serif;
    font-size: 20px;
    line-height: 3;
    text-align: center;
}

.Report-List {
    padding-bottom: 100px;
}

.Report-Wrapper {
    background: #F6F6F6;
}

/* -----------------
	SP
----------------- */
@media only screen and (max-width: 768px) {
    .Report-MainImage {
        background: url('https://cdn.clipkit.co/tenants/1082/migration_data/assets/minamiaoyama/themes/theme_aoyama/aoyama/img/Report-MainImage_sp.jpg') no-repeat center center / cover;
    }

    .Report-Lead {
        min-height: 0;
        padding: 50px 10px;
    }

    .Report-Wrapper {
        background: #fff;
    }

}