/*
Theme Name: panolabo basic
Theme URI: http://panolabollc.com/
Author: Kenichiro Numa.
Author URI: http://panolabollc.com/
Description: シンプルなテーマ
Version: 0.1
License: Don't use.


@import url("https://www.panolabollc.com/common/cocople2020/style.css");

*/

/* 行間を調整 */
p {
    line-height: 1.8;
    margin-bottom: 1.2em;
}

/* 段落間のスペースを調整 */
p+p {
    margin-top: 1em;
}

/* 日本語のワードラップを適切に行う */
p {
    word-break: break-all;
    white-space: pre-wrap;
}

/* フォントサイズを調整（必要に応じて） */
p {
    font-size: 16px;
}

/* パララックスセクションのスタイル */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.uk-navbar-item,
.uk-navbar-nav>li>a,
.uk-navbar-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: 80px;
    width: 80px;
    padding: 0 15px;
    font-size: .875rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-decoration: none;
    background-color: #000;
}

[class*=uk-position-bottom],
[class*=uk-position-center],
[class*=uk-position-left],
[class*=uk-position-right],
[class*=uk-position-top] {
    position: absolute !important;
    max-width: 100%;
    z-index: 1;
}

.quadrangle-right {
    position: relative;
    z-index: 1;
}

.quadrangle-right::after {
    position: absolute;
    left: 100%;
    top: 45%;
    content: ' ';
    width: 0;
    height: 0;
    border: solid transparent;
    pointer-events: none;
    border-width: 2rem;
    border-left-color: #fff;
    margin-top: 0;
}

.quadrangle-left {
    position: relative;
    /*z-index: 1;*/
}

.quadrangle-left::after {
    position: absolute;
    right: 100%;
    top: 45%;
    content: ' ';
    width: 0;
    height: 0;
    border: solid transparent;
    pointer-events: none;
    border-width: 2rem;
    border-right-color: #fff;
    margin-top: 0;
}

/* スマホ向けのスタイル */
@media only screen and (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        padding: 50px 0;
    }
}