/*
Theme Name: CAMELLIA椿
Theme URI: 
Description: 
Version:
Author: 
Author URI: 
*/

/* CSS Document */

@charset "utf-8";


/* ********************************************
// --- リセット ---
// ***************************************** */
  
/* CSS Document */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline:0;
	font-size: 62.5%;
	vertical-align: baseline;
	background: transparent;
}

body {
	font-family: "Shippori Mincho", serif;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-style: normal;
	line-height: 1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display: block;
}

ul,li {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
	color: #1f1f1f;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000000;
	text-decoration: none;
}

/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #1f1f1f; 
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;   
	border-top: 1px solid #1f1f1f;
	margin: 1em 0;
	padding: 0;
}

input, select {
	vertical-align: middle;
}

p,h1,h2,h3,h4,h5,h6,h7,tr,th,td {
	font-weight: normal;
	color: #000000;
}

img{
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}

.clear {
	clear: both;
}

.sp-br {
  display: none;
}
/* スマホサイズ（768px以下） */
@media screen and (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}

/*************** ヘッダー ***************/
.l-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.l-header__nav {
    background-color: rgba(99, 138, 141, 0.6);
    padding: 15px 0;
}
.l-header__list {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}
.l-header__item {
    margin-left: 30px;
}
.l-header__item a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}
.l-header__item a:hover {
    opacity: 0.6;
}
.c-menu-btn {
    display: none;
}

/*************** スマホ版（768px以下） ***************/
@media screen and (max-width: 768px) {
    .l-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(31, 57, 59, 0.95);
        transition: right 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        z-index: 999;
    }
    .l-header__nav.is-active {
        right: 0;
    }
    .l-header__list {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    .l-header__item {
        margin: 20px 0;
        margin-left: 0;
    }
    .l-header__item a {
        font-size: 20px;
    }
    .c-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 70px;
        height: 70px;
        background-color: #1f393b;
        z-index: 1000;
        cursor: pointer;
    }
    .c-menu-btn__line {
        display: block;
        width: 35px;
        height: 1px;
        background-color: #fff;
        margin: 4px 0;
        transition: 0.3s;
    }
    .c-menu-btn__text {
        color: #fff;
        font-size: 14px;
        letter-spacing: 0.1em;
        margin-top: 5px;
        font-family: serif;
    }
    .c-menu-btn.is-active .c-menu-btn__line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .c-menu-btn.is-active .c-menu-btn__line:nth-child(2) {
        opacity: 0;
    }
    .c-menu-btn.is-active .c-menu-btn__line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}


/*************** レイアウト ***************/
.l-container-dark {
    width: 100%;
    padding: 100px 0;
    background-image: repeating-linear-gradient(167deg, #a8c4c3, #ebede8 50%, #d6e2e0 75%, #c0cfce);
}
.c-section-title {
    text-align: center;
    font-size: 32px;
    color: #DD6471;
    line-height: 0.8;
    letter-spacing: 2px;
    margin-bottom: 50px;
}
.c-section-title span {
    font-size: 14px;
    color: #325556;
    font-weight: normal;
    display: block;
    margin-top: 10px;
}
.c-note {
    font-size: 12px;
    line-height: 1.8;
    color: #325556;
    margin-top: 20px;
}

/*************** アイキャッチ ***************/
.p-eye {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.p-eye__img {
    position: relative;
    width: 100%;
    height: 100%;
}
.p-eye__img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.p-eye__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.p-eye__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    z-index: 10;
}

.p-eye__logo img {
    width: 100%;
    height: auto;
    opacity: 0; 
    animation: fadeInLogo 2s ease-out forwards;
}

@keyframes fadeInLogo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*************** トップ ***************/
.p-top {
    width: 100%;
    padding: 100px 0 150px;
    background-image: repeating-linear-gradient(167deg, #345455, #1f393b 40%, #354f50);
}
.p-top__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.p-top__text {
    width: 900px;
    max-width: 90%;
    text-align: center;
    line-height: 2.2;
    margin-bottom: 80px;
}
.p-top__text h1 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
    color: #ffffff;
}
.p-top__text p {
    font-size: 16px;
    margin-bottom: 35px;
    color: #ffffff;
}
.p-top__text h2 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 80px;
    color: #ffffff;
}
.p-top__img {
    width: 650px;
    max-width: 90%;
    position: relative;
    overflow: hidden;
}
.p-top__img img {
    width: 100%;
    display: block;
}
.p-top__img::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px; 
    background: linear-gradient(to bottom, rgba(17, 33, 30, 0) 0%, #11211e 100%);
    z-index: 2;
}
.p-top__img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
}
.p-top__img span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.1em;
    z-index: 4;
    white-space: nowrap;
}


/*************** システム ***************/
.p-system {
    padding-top: 50px;
    margin-bottom: 100px;
}
.p-system__box {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 80px;
}
.p-system__text {
    width: 450px;
}
.p-system__price h3 {
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: normal;
    color: #325556;
}
.p-system .c-table {
    width: 100%;
    border-collapse: collapse;
}
.p-system .c-table tr {
    display: flex;
    flex-direction: column;
}
.p-system .c-table th {
    background-color: #f0f0f0;
    padding: 10px;
    font-size: 14px;
    font-weight: normal;
    color: #325556;
    letter-spacing: 2px;
}
.p-system .c-table td {
    padding: 15px 0;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #325556;
    letter-spacing: 2px;
}
.p-system__img {
    width: 450px;
    position: relative;
    overflow: hidden;
}
.p-system__img img {
    width: 100%;
    display: block;
}
.p-system__img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}
.p-system__img span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.1em;
    z-index: 2;
    white-space: nowrap;
}

/*************** アクセス ***************/
.p-access {
    padding-top: 50px;
}
.p-access__box {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 80px;
}
.p-access__map {
    width: 450px;
}
.p-access__info {
    width: 450px;
}
.c-table-info {
    width: 100%;
    border-collapse: collapse;
}
.c-table-info th {
    display: block;
    color: #DD6471;
    font-size: 13px;
    font-weight: normal;
    text-align: left;
    padding-bottom: 2px;
}
.c-table-info td {
    display: block;
    font-size: 14px;
    color: #325556;
    line-height: 1.6;
    padding-bottom: 10px;
}
.c-table-info td a {
    color: inherit;
    text-decoration: none;
}
	

/*************** フッター ***************/
.l-footer {
    width: 100%;
    padding: 60px 0 30px;
    background-image: repeating-linear-gradient(167deg, #7f9494, #648181 50%, #869b9b);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.l-footer__logo {
    margin-bottom: 30px;
}
.l-footer__logo img {
    width: 120px;
    height: auto;
    opacity: 0.9;
    display: block;
    margin: 0 auto;
}
.l-footer__copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    letter-spacing: 0.15em;
}
.l-footer__copyright small {
    font-style: normal;
}


/*************** スマホ版（768px以下） ***************/
@media screen and (max-width: 768px) {
    .p-eye {
        height: 100vh;
    }
    .p-eye__img img {
        height: 100vh;
        object-position: 50% center;
    }
    .p-eye__logo {
        width: 250px;
    }
    .l-container-dark {
        padding: 50px 0;
    }
    .p-system {
        margin-bottom: 50px;
    }
    .p-system__box {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .p-system__text {
        display: contents;
    }
    .c-section-title {
        order: 1;
        margin-bottom: 30px;
    }
    .p-system__img {
        order: 2;
        width: 90%;
        margin-bottom: 30px;
    }
    .p-system__price {
        order: 3;
        width: 90%;
        text-align: center;
    }
    .p-system__price h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .p-system .c-table th {
        padding: 12px 0;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }
    .p-system .c-table td {
        border-bottom: none;
        padding: 5px 0;
    }
    .c-note {
        text-align: left;
         margin-top: 20px;
    }
    .p-access__box {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .p-access__info {
        display: contents;
    }
    .p-access__header {
        order: 1;
        width: 100%;
    }
    .p-access__map {
        order: 2;
        width: 90%;
        margin-bottom: 30px;
    }
    .p-access__map iframe {
        width: 100%;
        height: 400px;
    }
    .c-table-info {
        order: 3;
        width: 90%;
        margin: 0 auto;
    }
    .c-table-info th, 
    .c-table-info td {
        text-align: left;
        padding-bottom: 10px;
    }
    .c-table-info th {
        font-size: 14px;
        letter-spacing: 1px;
    }
}

/* フロートボタンの領域（画面下部に固定） */
.float-tel-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  padding-bottom: env(safe-area-inset-bottom); 
}

/* ボタンのベースデザイン */
.float-tel-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #1f393b; /* メインカラー */
  color: #ffffff;
  text-decoration: none;
  height: 56px;
  width: 100%;
  transition: background-color 0.2s ease;
}

.float-tel-btn:active {
  background-color: #132425;
}

/* アイコンの調整 */
.float-tel-icon {
  display: flex;
  align-items: center;
}

.float-tel-icon svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

/* ★番号テキストのスタイル（ここを個別に調整できます） */
.float-tel-text {
	letter-spacing: 0.5px;
  font-size:20px; 
  font-weight: bold;
}

/* PCなどの大画面では非表示にする設定 */
@media screen and (min-width: 768px) {
  .float-tel-wrap {
    display: none;
  }
}