@charset "utf-8";


@media (max-width: 908px) {

.head_navi_ul {
    display: none;
}
#header_inner {
    padding-right: 16px;
}
#head_tel{
    display: flex;
    flex-direction: column;
    align-items: center;
	z-index: 1002;
}

/* ハンバーガーアイコン */

#hamburger_box {
    background-color: #c3b295;
    padding: 10px;
    display: flex;
	justify-content: center;
	align-items: center;
    text-align: center;
	z-index: 1002;
}

#hamburger {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 40px;
    height: 24px;
    cursor: pointer;
    z-index: 1002;
}
#hamburger span {
    display: block;
  height: 1.5px; /* 細くする */
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* ハンバーガー開閉時のアニメーション */
#hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
#hamburger.active span:nth-child(2) {
  opacity: 0;
}
#hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}


/* SPメニュー全体 */
#sp_menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #F3F3F3;
    z-index: 1000;
    padding-top: 96px;
    padding-bottom: 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 48px;
    padding-right: 48px;
    overflow-y: scroll;  /* 常に縦スクロールバーを表示 */
    background-image: url(../images/logo_mark_wht.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 50% auto;
}

/* メニューが開いた時 */
#sp_menu.active {
  opacity: 1;
  visibility: visible;
}

.sp_menu_logo {
  width: 264px;
  margin-bottom: 30px;
}

/* メニューリスト */
.sp_menu_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* メニューアイテム */
.sp_item {
}

/* メニューアイテム */
.sp_item > a {
    display: flex;
    justify-content: space-between; /* アイテムとアイコンの間にスペースを確保 */
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: background-color 0.3s ease;
    width: 100%;  /* 親要素いっぱいに広がらないように */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 0.04em solid #C4C4C4;
    background-image: url(../images/common/link_arrow_blk.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px auto;
}

.sp_item > a:hover {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 0.07em solid #c3b295;
    color: #c3b295;
}

/* アコーディオンアイコン（+ と -） */
.sp_item > a .accordion-toggle {
  font-size: 20px;
  color: #de2526;
  display: inline-block;
  position: relative;
  width: 20px;  /* アイコンの幅 */
  height: 20px;  /* アイコンの高さ */
  margin-left: 10px; /* アイコンとテキストの間にスペース */
  transition: transform 0.3s ease;
}

/* 直線の縦線（+） */
.sp_item > a .accordion-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 9px;  /* 横にセンタリング */
  width: 2px;  /* 縦線の太さ */
  height: 100%;
  background-color: #de2526;
  transition: transform 0.3s ease;  /* 回転時のトランジション */
}

/* 直線の横線（+） */
.sp_item > a .accordion-toggle::after {
  content: "";
  position: absolute;
  top: 9px;  /* 横にセンタリング */
  left: 0;
  width: 100%;
  height: 2px;  /* 横線の太さ */
  background-color: #de2526;
}

/* 開いた状態で「-」にする（縦線を回転） */
.sp_item > a .accordion-toggle.open::before {
  transform: rotate(90deg);  /* 縦線を45度回転 */
}

/* 閉じた状態で「+」に戻る（回転なし） */
.sp_item > a .accordion-toggle:not(.open)::before {
  transform: rotate(0);  /* 縦線は回転しない */
}

/* 子メニュー */
.sp_submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.sp_submenu.open {
  max-height: 500px;
}

.sp_submenu li {
  padding: 5px 0;
}

.sp_submenu li a {
    font-size: 16px;
    text-decoration: none;
    color: #534C53;
    padding: 8px 10px;
    transition: background-color 0.3s ease;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    font-weight: 500;
}


#sp_navi_contact a {
    background-color: #de2526;
    padding-left: 16px;
    border-radius: 24px;
    padding-right: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    display: none;
    color: #FFFFFF;
}
#sp_navi_cdg-logo {
    width: 88px;
	display: none;
}
}

@media (max-width: 700px) {

body{
    margin: 0px;
    padding: 0px;
    font-family: "M PLUS 1p", sans-serif;
    color: #231815;
}
img{
    margin: 0;
    padding: 0;
    vertical-align: bottom;
    height: auto;
    width: 100%;
}
h1,h2,h3,h4,h5,h6,p,ul,ol {
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
padding-bottom: 0px;
}
ul {
    list-style-type: none;
}

.cl {
clear: both;
}
a:hover {
opacity:0.7;
filter: alpha(opacity=70);
-ms-filter: "alpha( opacity=70 )";
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
a {
    color: inherit;
    text-decoration: none;
	transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;

}
.pc_only {
	display: none;
}
.sp_only {
    display: inherit;
}



header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: #FFFFFF;
}

header.scrolled {
    background: #fff;
    box-shadow: 0 4px 6px hsla(0,27%,69%,0.33); /* 下方向だけにシャドウ */
    -webkit-box-shadow: 0 4px 6px hsla(0,27%,69%,0.33);
}
#header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    max-width: 1200px;
    padding-right: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
}
#head_logo {
    width: 208px;
    min-width: 208px;
    z-index: 1001;
}
#head_logo a {
}
#head_logo a img {
    display: block;
}
#head_right {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}
#hamburger_box {
    display: inherit;
}

.head_navi_ul {
    display: none;
}
.head_navi_item {
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    line-height: 1em;
}
.head_navi_item a {
    padding-top: 16px;
    padding-right: 8px;
    padding-left: 8px;
    padding-bottom: 16px;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#head_tel{
    display: none;
    flex-direction: column;
    align-items: center;
}
#tel_free_message {
    font-size: 15px;
    color: #B4A07F;
    line-height: 1em;
    margin-bottom: 4px;
    font-weight: 600;
}

#head_tel_ue{
    display: flex;
    align-items: center;
}
#free-dial{
    width: 36px;
    margin-right: 6px;
}
#free-dial img{
	width: 100%;
}
#head_tel_ue p{
    font-family: "Anton", sans-serif;
    font-size: 28px;
    line-height: 1em;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #2a2626;
}
#head_tel_ue p a {
	pointer-events: none;
}

#head_tel_sita{
    font-size: 15px;
    font-weight: 500;
    display: block;
    line-height: 1em;
    margin-top: 4px;
}
#head_tel_sita span{
    font-size: 13px;

}

/* ハンバーガーアイコン */
#hamburger {
    width: 32px;
}

#sp_menu {
    display: inherit;
    padding-left: 32px;
    padding-right: 32px;
}
.contents_wrap {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5.38%;
    padding-right: 5.38%;
}
.head_h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    position: relative;
    padding-bottom: 12px;
}
.head_h2 span {
    display: block;
    width: 48px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
}
.head_h2::after {
    content: "";
    position: absolute;
    left: 50%;
	transform: translateX(-50%);
    bottom: 0;
    width: 64px;
    height: 0.04em;
    background: #c3b295;
}
.head_h2.left {
    text-align: center;
}
.head_h2.left::after {
    content: "";
    position: absolute;
    left: 50%;
	transform: translateX(-50%);
    bottom: 0;
    width: 64px;
    height: 0.04em;
    background: #c3b295;
}
.head_h2.left span {
    margin-left: auto;
    margin-right: auto;
}
footer {
    padding-top: 6.15%;
    padding-right: 4.61%;
    padding-left: 4.61%;
    background-color: #c3b295;
    padding-bottom: 16px;
    margin-bottom: 48px;
}
#foot_logo {
    width: 208px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.07%;
}
#copyright {
    color: #FFFFFF;
    font-size: 10px;
    text-align: center;
}


#sp_follow_tel {
    display: flex;
    padding: 8px;
    align-items: center;
    background-color: #c3b295;
    justify-content: space-around;
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    z-index: 1002;
}
#sp_follow_tel_message {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1em;
    margin-bottom: 4px;
    font-weight: 600;
}
#sp_follow_tel_ue {
    display: flex;
    align-items: center;
}
#sp_follow_free-dial {
    width: 22px;
    margin-right: 4px;
    display: flex;
    align-items: center;
}
#sp_follow_free-dial img{
	width: 100%;
}
#sp_follow_tel_ue p {
    font-family: "Anton", sans-serif;
    font-size: 21px;
    line-height: 1em;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #FFFFFF;
}
#sp_follow_tel_ue p a {
    display: block;
}
#sp_follow_tel_sita {
    font-size: 11px;
    font-weight: 500;
    display: block;
    line-height: 1em;
    color: #FFFFFF;
}
#sp_follow_tel_sita span {
    font-size: 10px;
}

#pagetop {
    position: fixed;
    bottom: 64px;
    right: 16px;
}
#pagetop a img {
	width: 32px;
}

}
