@charset "UTF-8";


/* ====================================
 *  Common
 * ==================================== */

html {
    font-size: 62.5%;
    min-width: 320px;
}

#container {
    position: relative;
}

a:hover {
    opacity: .5;
}

section:not(#firstView) {
    margin-bottom: 10px;
    padding-top: 30px;
}

.fadeInAnim {
    -webkit-transform: translateY(24px);
    transform: translateY(24px);
    -webkit-transition: opacity 1s cubic-bezier(0.23, 1, 0.47, 1),
                        transform 1s cubic-bezier(0.23, 1, 0.47, 1),
                        -webkit-transform 1s cubic-bezier(0.23, 1, 0.47, 1);
    transition: opacity 1s cubic-bezier(0.23, 1, 0.47, 1),
                        transform 1s cubic-bezier(0.23, 1, 0.47, 1),
                        -webkit-transform 1s cubic-bezier(0.23, 1, 0.47, 1);
}



/* ====================================
 *  Header
 * ==================================== */

header {
    position: relative;
    z-index: 10;
}
.header__sitelogo {
	display: none;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: 1 !important;
}
.header__sitelogo a {
    display: block;
    padding: 10px;
}
.header__sitelogo a svg {
    width: 164px;
    height: 20px;
    fill: #48322a;
}


.header__sticky {
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;  
    z-index: 1;
}


.headerSticky__sitelogo {
    width: 55%;
    height: 100%;
    float: left;
    background: rgba(255,255,255, .93);
}
.headerSticky__sitelogo a {
    display: block;
    text-align: center;
    padding: 16px 0;
}
.headerSticky__sitelogo a svg {
    width: 160px;
    height: 20px;
    fill: #48322a;
    vertical-align: middle;
}

.headerSticky__contact {
    width: 34%;
    width: calc(45% - 60px);
    height: 100%;
    float: left;
    background: #48322a;
}
.headerSticky__contact a {
    padding: 18px 0;
    color: #fff;
    display: block;
    font-size: 1.35rem;
    letter-spacing: .1em;
    text-align: center;
}

.headerSticky__menuBtn {
    width: 60px;
    height: 100%;
    background: #48322a;
    position: absolute;
    top: 0;
    right: 0;
}
.headerSticky__menuBtn a {
    display: block;
}
.headerSticky__menuBtn a:hover {
    opacity: 1;
}
.headerSticky__menuBtn:before {
    content: "";
    width: 1px;
    height: 70%;
    background: rgba(255,255,255, .5);
    position: absolute;
    top: 15%;
    left: -1px;
}

.headerSticky__menuBtn span {
    width: 40%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 30%;
    margin-top: -1px;
    -webkit-transition: .3s;
    transition: .3s;
}
.headerSticky__menuBtn span:nth-child(1) { margin-top: -7px; }
.headerSticky__menuBtn span:nth-child(2) { margin-top: -1px; }
.headerSticky__menuBtn span:nth-child(3) { margin-top:  5px; }

.headerSticky__menuBtn.-show span:nth-child(1) {
    margin-top: -1px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.headerSticky__menuBtn.-show span:nth-child(2) {
    opacity: 0;
}
.headerSticky__menuBtn.-show span:nth-child(3) {
    margin-top: -1px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}




/* ====================================
 *  FirstView
 * ==================================== */

#firstView {
    margin-bottom: 0;
    overflow: hidden;
}




/* ====================================
 *  Navigation
 * ==================================== */

section.section_menu {
    margin: 0 0 0 5%;
}
header section.section_menu {
    margin: 0;
    padding: 73px 0 20px 5%;
    background: rgba(72,50,42,.93);
    position: fixed;
    top: -30px;
    left: 0;
    z-index: -1;
    display: none;
}

header section.section_menu.-show {
}

.navList {
    text-align: center;
    overflow: hidden;
}

.navList li {
    float: left;
    font-size: 1.6rem;
    font-size: 4.3vw;
    letter-spacing: .0em;
    text-align: left;
}
.navList li {
    width: 100%;
}

.navList li a {
    display: block;
    padding: 10px 16px;
    position: relative;

}
header .navList li a {
    color: #fff;
}
.navList li a:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 7px solid #aaa;
    border-right: 5px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 5px solid transparent;
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-20%);
    -webkit-transform: translateY(-20%);
}
header .navList li a:before {
    border-top: 7px solid #a0847a;
}



/* ====================================
 *  Pamphlet List
 * ==================================== */

h2 {
    text-align: center;
}

h2 .sectionTitle__text.-ja {
    font-size: 1.3rem;
    letter-spacing: .05em;
    margin-bottom: 12px;
}
h2 .sectionTitle__text.-en {
    font-size: 3.2rem;
}


.wrap__bookshelf {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}


h3 {
    text-align: center;
    position: relative;
    margin-top: 32px;
}

.wrap__bookshelf:not(#hawaii) h3 {
    margin-top: 30px;
}

#chapelBook .wrap__bookshelf h3.myc {
    margin-top: 50px;
}

h3 .areaName__text.-ja {
    width: 100%;
    font-size: 1.6rem;
    letter-spacing: .3em;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-65%);
    -webkit-transform: translateY(-65%);
}
h3 .areaName__text.-en {
    font-size: 6.8rem;
    letter-spacing: -.1em;
}

#hawaii .areaName__text.-ja  { color: #289ca0; }
#guam .areaName__text.-ja    { color: #3f88c3; }
#okinawa .areaName__text.-ja { color: #6772ac; }
#bali .areaName__text.-ja    { color: #866c53; }

#hawaii .areaName__text.-en  { color: #ebf7f7; }
#guam .areaName__text.-en    { color: #e9f2fa; letter-spacing: -.05em; }
#okinawa .areaName__text.-en { color: #f1eff7; }
#bali .areaName__text.-en    { color: #f8f4f0; letter-spacing: -.03em; }


.pamphList {
    text-align: center;
    padding-top: 36px;
}

.pamphList li {
    width: 36.8%;
    width: 36.8vw;
    display: inline-block;
    margin-right: 20px;
}
#styleBook .pamphList li {
    width: 44%;
    width: 44vw;
}
#flyer .pamphList li {
    width: 36.8%;
    width: 36.8vw;
}
#styleBook .pamphList li {
    margin-right: 10px;
}
#flyer .pamphList li {
    margin-right: 10px;
}
.pamphList li + li {
    margin-right: 0;
}

.pamphList li a {
    text-align: center;
    display: block;
    position: relative;
}

.pamphList li a:hover {
    opacity: 1;
}

.pamphList li a.chapel__link {  
background: #41291f;    
color: #fff;
padding: 12px 8px;  
display: block; 
margin: 15px 2px 0 2px; 
font-weight: bold;
font-size: 10px;
}

.pamph__title.-ja {
    font-size: 1.3rem;
    letter-spacing: -.05em;
    line-height: 1.3;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 6px;
    min-height: 36px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center; /* for Safari */
    align-items: center;
    -webkit-justify-content: center; /* for Safari */
    justify-content: center;
}
.pamph__title.-en {
    font-size: 1.0rem;
    margin-bottom: 16px;
    white-space: nowrap;
    letter-spacing: .0em;
}
#hawaii .pamph__title.-en {
    height: 20px;
}
#okinawa .pamph__title.-ja {
    letter-spacing: 0em;
    line-height: 1.4;
    margin-bottom: 12px;
}

.pamph__img {
    position: relative;
    z-index: 1;
    perspective-origin: 0 100%;
}
.pamph__shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.pamph__shadow img {
    width: 155px;
}
#styleBook .pamph__shadow img {
    width: 100%;
}

.pamph__shadow:before,
.pamph__shadow:after {
    content: "";
    -webkit-transition: .3s;
    transition: .3s;
    position: absolute;
    z-index: -1;
}

.pamph__shadow:before {
    width: 40px;
    height: 92%;
    top: 2%;
    right: 13px;
    transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    box-shadow: 12px 16px 10px rgba(0,0,0, .3);
}
#styleBook .pamph__shadow:before {
    height: 96%;
    box-shadow: 13px 16px 10px rgba(0,0,0, .5);
}
#flyer .pamph__shadow:before {
    height: 96%;
    box-shadow: 13px 16px 10px rgba(0,0,0, .5);
}
.pamph__shadow.-hover:before {
    opacity: .2;
}

.pamph__shadow:after {
    width: 90%;
    height: 88%;
    top: 7%;
    left: 5%;
    box-shadow: 2px 8px 16px rgba(0,0,0, .55);
    opacity: .3;
}
.pamph__shadow.-hover:after {
    opacity: 1;
}



.pamph__img img {
    width: 150px;
    height: auto;
	vertical-align: bottom;
    -webkit-transition: all .8s ease .2s;
    transition: all .8s ease .2s;
}
#styleBook .pamph__img img {
    width: 100%;
    height: auto;
}

.pamph__img.-open img {
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotateY(-45deg);
    transform: rotateY(-45deg)
    z-index: 1;
}

.bookshelf {
    margin: 0 auto;
    height: 38px;
    background: #684132;
    background-image: url("/img/wcpdl/tex_wood.jpg");
    background-repeat: repeat-y;
    background-size: 100%;
    position: relative;
    z-index: 1;
}
#styleBook .bookshelf { background-position: center  80px; }
#areaBook .bookshelf  { background-position: center 230px; }
#hawaii .bookshelf    { background-position: center 470px; }
#guam .bookshelf      { background-position: center  80px; }
#okinawa .bookshelf   { background-position: center 230px; }
#bali .bookshelf      { background-position: center 470px; }
#flyer .bookshelf { background-position: center  80px; }


#styleBook .pamphList {
    position: relative;
}
#flyer .pamphList {
    position: relative;
}
#styleBook .pamphList li:before {
    content: "";
    width: 95px;
    height: 80px;
    background-image: url("/img/wcpdl/sp_all_pictureFrame1.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
	display:none;
}
#flyer .pamphList li:before {
    content: "";
    width: 95px;
    height: 80px;
    background-image: url("/img/wcpdl/sp_all_pictureFrame1.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
	display:none;
}
#styleBook .pamphList li:after {
    content: "";
    width: 110px;
    height: 122px;
    background-image: url("/img/wcpdl/sp_all_pictureFrame2.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
	display:none;
}
#flyer .pamphList li:after {
    content: "";
    width: 110px;
    height: 122px;
    background-image: url("/img/wcpdl/sp_all_pictureFrame2.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
	display:none;
}

#chapelBook .myc ul.pamphList {
    justify-content: space-evenly;
}

.swiper-no-swiping {
    text-align: center;
}



/* ====================================
 *  Contact
 * ==================================== */

#contact {
    margin: 0 auto 60px !important;
    padding-top: 0!important;
}
#contact .btn2 {
    margin-bottom: 40px;
}

.btn {
    margin-bottom: 20px;
}
.btn a {
    font-size: 1.35rem;
    padding: 20px 0;
}


.tel {
    width: 80%;
    margin: auto;
    padding: 22px 0 18px;
    border-top: 1px solid #48322a;
    border-bottom: 1px solid #48322a;
}

.tel__text {
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: .12em;
    margin-bottom: 11px;
}

.tel__num {
    text-align: center;
    font-size: 3.5rem;
    letter-spacing: .0em;
}
.tel__num span{
    text-align: center;
    font-size: 40%;
    letter-spacing: .0em;
    vertical-align: super;
    margin-right: 5px;
}

.btn1 {
	margin-top: 7%;
}
.btn.btn2 {
    margin-bottom: 60px;
}

/*固定フッター------------------------------------*/
.footGood {
    padding-bottom: 34px;
}