@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    line-height: 1.7;
    color: #432;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}

.sp-only {
    display: block;
}

/* レイアウト */
.wrapper {
    max-width: 1120px;
    margin: auto;
    padding: 0 1.5rem;
    overflow: hidden;
}
.align-center {
    text-align: center;
}

/* 見出し */
.font-english {
    font-family: 'Philosopher', sans-serif;
    font-weight: normal;
}
.page-title,
.heading-large,
.heading-medium {
    font-size: 1.5rem;
    text-align: center;
}
.page-title {
    margin-top: 2rem;
    line-height: 1.4;
}
.heading-large {
    margin-bottom: 1rem;
}


/* カスタマイズ見出し */
.main-title {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 100%;
    z-index: 1;
    padding: 0 .5em;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.4;
    font-family: "Dosis", sans-serif;
    letter-spacing: .1em;
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: rgb(197, 135, 0) 1px 0 10px;
}

.full {
    position: relative;
    margin-top: 20px;
    width: 100%;
    min-height: 40vh;
    background: url("../images/okinawa.jpg") center / cover;
}

.full::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.3) radial-gradient(rgba(0,0,0,.3) 25%, transparent 0) center / 5px 5px;
}
/* メインビジュアルキャプション */
.caption {
	position: absolute;
	z-index: 1;
	right: 1em;
	bottom: 1em;
	color: #fff;
	font-size: 0.8rem;
	line-height: 1;
	font-family: "Dosis", sans-serif;
	letter-spacing: .05em;
	text-align: right;
}

/* ヘッダーcta */
.cta2 {
    position: absolute;
    top: 80%;
    left: 50%;
    width: 100%;
    z-index: 1;
    padding: 0 .5em;
    transform: translate(-50%, -50%);
    text-align: center;
}



/* ボタン */
.btn {
    display: inline-block;
    font-size: 1.5rem;
    background-color: #0bd;
    color: #fff;
    border-radius: 8px;
    padding: .75rem 1.5rem;
    transition: .5s;
}
.btn:hover {
    background-color: #0090aa;
}

/* ヘッダー
------------------------------- */
.page-header {
    padding-top: 1.5rem;
}
.logo {
    width: 180px;
    padding: 7px;
    background-color: rgb(255 255 255 / 0.7)
}
.main-nav {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1rem;
    list-style: none;
}
.main-nav a {
    color: #432;
}
.main-nav a:hover {
    color: #0bd;
}

/* ヘッダーカバー画像
------------------------------- */
.cover {
    background-size: cover;
    background-position: center bottom;
    position: relative;
}
.sub-cover {
    background-size: cover;
    background-position: center bottom;
    height: 528px;
    margin-bottom: 4rem;
}

.mainvis {
    display: block;
    margin-top: 1rem;
}
.mainvis img {
    display: block;
    width: 90%;
    margin: auto;
    box-shadow: 5px 5px 10px #e7c08c ;
}



/* HOME
------------------------------- */
.cover-home {
    background-image: url(../images/cover-home-s.png);
}
.about {
    max-width: 736px;
    padding: 0 1.5rem;
    margin: 3rem auto 0;
}
.about p {
    margin-bottom: 1rem;
}
.about ul {
    padding: 0 0.5rem 2rem 0.5rem;
    font-size: 0.875rem;
}

/* NEWS
------------------------------- */
.cover-news {
    background-image: url(../images/cover-news-s.webp);
}


/* サイドバー */
.side-menu {
    list-style: none;
    text-align: center;
    margin-bottom: 4rem;
}
.side-menu li {
    border-bottom: 1px solid #c9c2bc;
}
.side-menu a {
    color: #432;
    display: block;
    padding: 1rem;
}
.side-menu a:hover {
    color: #0bd;
}

/* MENU
------------------------------- */
.cover-menu {
    background-image: url(../images/cover-menu-s.webp);
}
.grid {
    display: grid;
    gap: 2rem 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}
.item img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px;
}
.item p {
    position: relative;
    padding: 0.3em 0.5em;
}
.item p::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    content: '';
    border-radius: 2px;
    background-image: -webkit-gradient(linear, right top, left top, from(#9ca5ee), to(#49ebdf));
    background-image: -webkit-linear-gradient(right, #9ca5ee 0%, #49ebdf 100%);
    background-image: linear-gradient(to left, #9ca5ee 0%, #49ebdf 100%);
  }



.shubetsu {
    font-size: .750rem;
}
.shubetsu::after {
    content:"\A";
    white-space:pre;
}


.iteminfo dl {
    padding-top: 1rem;
    font-size: .750rem;
    flex-wrap: wrap;
    width: 100%;
}
.iteminfo dt {
    text-align: left;
}
.iteminfo dd {
    text-align: left;
    margin-left: 1rem;
}

.infobox {
    position: relative;
  }
.infobox p.bottom-right-info {
    position: absolute;
    bottom: 15px;
    right: 10px;
    background-color: rgba(40, 160, 40, 0.8);
    color: #fff;
  }

  .infobox p.bottom-right-info::after {
    background-image: none;
  }

  .infobox2 {
    position: relative;
  }
.infobox2 p.bottom-right-info {
    position: absolute;
    bottom: 15px;
    right: 10px;
    background-color: rgba(163, 58, 26, 0.8);
    color: #fff;
    font-size: small;
  }

  .infobox2 p.bottom-right-info::after {
    background-image: none;
  }


/* フッター
------------------------------- */
.page-footer {
    background-image: url(../images/footer-s.png);
    background-size: cover;
    background-position: center;
    padding-top: 12rem;
}
.info {
    width: 100%;
    max-width: 544px;
    margin: auto;
    padding: 0 1.5rem;
    border-spacing: 0;
}
.info th,
.info td {
    border-bottom: 1px solid #c9c2bc;
}
.info th {
    text-align: left;
    font-weight: normal;
    padding: 1rem;
}
.info td {
    padding: 1rem 0;
}
.copyright {
    background-color: #432;
    text-align: center;
    padding: 2rem 0;
    margin-top: 6rem;
    color: #fff;
}
.about-sunmonitor {
    max-width: 736px;
    padding: 0 1.5rem;
    margin: 3rem auto 0;
}

/* トップへ戻るボタン */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    line-height: 1;
    z-index: 99;
  }
  #page-top a {
    background: #ab101b;
    text-decoration: none;
    color: #fff;
    width: 70px;
    padding: 28px 5px;
    text-align: center;
    display: block;
    border-radius: 90px;
    opacity: 0.9;
    transition: all .3s ease;
  }
  #page-top a:hover {
    text-decoration: none;
    opacity: .5;
  }

/* CTAエリア
------------------------------- */

.ctaArea {
    width: 100%;
    max-width: 20rem;
    padding-top: 5rem;
    margin: 0 auto;
}

/* 問い合わせボタン */
.border_btn01 {
    display: inline-block;
    width: 100%;
    max-width: 300px; /* ボタン幅 */
    color: #fff; /* 文字色 */
    background: #f7851b; /* 背景色 */
    border: 1px solid #fff; /* 線幅・種類・色 */
    padding: 1em 2em;
    font-weight: bold; /* 文字の太さ */
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
  }
  
  /* マウスオーバーした際のデザイン */
  .border_btn01:hover {
    color: #f7851b; /* 文字色 */
    background: #fff; /* 背景色 */
    border: 1px solid #ff450c; /* 線幅・種類・色 */
  }

/* 事例
------------------------------- */

.jirei{
    width: 100%;
    max-width: 544px;
    margin: auto;
    padding: 3rem 1.5rem 1rem;
    border-spacing: 0;
}

/*====================================================================
slick
====================================================================*/

  .sliderArea {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    overflow:hidden;
  }

  .slick-slide {
    margin: 0 5px;
  }
  .slick-slide img {
    width: 100%;
    height: auto;
  }
  .slick-prev, .slick-next {
    z-index: 1;
  }
  .slick-prev:before, .slick-next:before {
    color: #000;
  }
  .slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
  }
  .slick-active {
    opacity: 1;
  }
  .slick-current {
    opacity: 1;
  }
  .thumb {
    margin: 20px 0 0;
  }
  .thumb .slick-slide {
    cursor: pointer;
  }
  .thumb .slick-slide:hover {
    opacity: .7;
  }

  .slick-slide p{
    font-size: small;
  }

  /*====================================================================
  .full-screen-o
  ====================================================================*/
  
  .full-screen-o .slick-list {
    overflow: visible;
  }
  .full-screen-o.slider {
    max-width: 500px;
    margin: 0 auto;
  }
  .full-screen-o .slick-dots {
    bottom: -33px;
  }
  .full-screen-o .slick-dots li {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    cursor: pointer;
  }
  .full-screen-o .slick-dots li button {
    font-size: 0;
    line-height: 0;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    text-indent: -9999px;
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 8px;
    outline: 0;
    border-radius: 5px;
    transition-duration: 0.3s;
  }
  .full-screen-o .slick-dots li button:before {
    content: none;
  }
  .full-screen-o .slick-dots li:nth-child(1) button {
    background: #f5d1c3;
  }
  .full-screen-o .slick-dots li:nth-child(2) button {
    background: #a9b7ba;
  }
  .full-screen-o .slick-dots li:nth-child(3) button {
    background: #c4d7d1;
  }
  .full-screen-o .slick-dots li:nth-child(4) button {
    background: #b4b1a0;
  }
  .full-screen-o .slick-dots li:nth-child(5) button {
    background: #e5dfd3;
  }
  .full-screen-o .slick-dots li button:hover, .full-screen-o .slick-dots li.slick-active button {
    border-radius: 0px;
    width: 12px;
    height: 12px;
  }



/* デスクトップ版
------------------------------- */
@media (min-width: 800px) {
    /* 見出し */
    .page-title {
        font-size: 4rem;
    }
    .heading-large {
        font-size: 3rem;
    }
    .post-title {
        font-size: 2rem;
    }

    .mainvis{
        display: block;
        margin-top: 1rem;
    }
    .mainvis img {
        display: block;
        width: 500px;
        margin: auto;
        border-radius: 16px; /* 角丸の大きさ */
        box-shadow: 5px 5px 10px #e7c08c ;
    }

    .sp-only {
        display: none;
    }


/* カスタマイズ見出し */
.main-title {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 100%;
    z-index: 1;
    padding: 0 .5em;
    color: #fff;
    font-size: 3rem;
    line-height: 1.4;
    font-family: "Dosis", sans-serif;
    letter-spacing: .1em;
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: rgb(197, 135, 0) 1px 0 10px;
}

    .sliderArea {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 25px;
        overflow: visible;
      }

    /* ヘッダー */
    .page-header {
        display: flex;
        justify-content: space-between;
        padding-top: 1.5rem;
    }
    .main-nav {
        font-size: 1.5rem;
    }

    /* ヘッダーカバー画像 */

.cover {
    background-size: cover;
    background-position: center bottom;
    height: 550px;
}

    .sub-cover {
        height: 400px;
        margin-bottom: 6rem;
    }

    /* HOME */
    .cover-home {
        potision:relative;
        background-image: url(../images/cover-home-l.png);
    }
    .about {
        margin: 4rem auto 0;
        padding-top: 5rem;
    }
    .about p {
        margin: 0;
        padding: 1rem 0;
        text-align: center;
        font-size: 1.1rem;
    }
    .about ul {
        padding: 0 0 2rem 0;
    }
    /* NEWS */
    .cover-news {
        background-image: url(../images/cover-news-l.webp);
    }
    .news-contents {
        display: flex;
        justify-content: space-between;
    }
    .post {
        width: 70%;
    }
    .sidebar {
        width: 22%;
    }
    .sidebar .heading-medium {
        line-height: 1;
        margin-bottom: 1rem;
    }

/* CTAエリア
------------------------------- */

.ctaArea {
    padding-top: 5rem;
    margin: auto;
}

/* ヘッダーcta */
.cta2 {
    position: absolute;
    top: 70%;
    left: 50%;
    width: 100%;
    z-index: 1;
    padding: 0 .5em;
    transform: translate(-50%, -50%);
    text-align: center;
}

    /* MENU */
    .cover-menu {
        background-image: url(../images/cover-home-l.png);
    }
    .grid {
        gap: 3rem 2rem;
        grid-template-columns: repeat(3, 1fr);
    }
    .item img {
        margin-bottom: .5rem;
    }
    .item p {
        font-size: 1.2rem;
    }
    .item p .shubetsu {
        font-size: 0.8rem;
    }


    .item {
        width: 100%;
        margin:0 auto;
    }
    .iteminfo dl {
        padding-top: 1rem;
        font-size: 0.875rem;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .iteminfo dt {
        text-align: left;
        width: 30%;
    }
    .iteminfo dd {
        width: 70%;
        margin-left: 0;
    }
    .infobox {
        position: relative;
      }
    .infobox p.bottom-right-info {
        position: absolute;
        bottom: 30px;
        right: 20px;
        background-color: rgba(40, 160, 40, 0.8);
        color: #fff;
      }

      .infobox p.bottom-right-info::after {
        background-image: none;
      }

      .infobox2 {
        position: relative;
      }
    .infobox2 p.bottom-right-info {
        position: absolute;
        bottom: 30px;
        right: 20px;
        background-color: rgba(163, 58, 26, 0.8);
        color: #fff;
        font-size:medium;
      }

      .infobox2 p.bottom-right-info::after {
        background-image: none;
      }


    /* フッター */
    .page-footer {
        background-image: url(../images/footer-l.png);
        padding-top: 12rem;
    }
    .info th {
        padding-left: 2.5rem;
    }
}

