			
.side-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: white;
  display: flex;
  border-top-left-radius: 40px;
  font-size: 14px;
  resize: horizontal;
  overflow: auto;
  transition: transform 0.3s;
  box-shadow: 0 0 32px rgba(9, 53, 94, 0.17);
  z-index: 1000;
}

.side-fixed::-webkit-resizer {
  background-image: url(../assets/lpimage/arrow.png);
  background-size: cover;
  background-position: center;
}
.side-fixed::-webkit-resizer:hover {
  display: none;
}

.side-fixed.is-hidden {
  transform: translateX(calc(100% - 88px));
}

.side-fixed-left {
  padding: 30px 0 30px;
  cursor: pointer;
  position: relative;
}

.side-fixed-left-set {
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 0;
  border-right: solid 1px #CCC;
}

.side-fixed-left-icon {
  width: 20px;
  margin-bottom: 10px;
}

.side-fixed-left-text {
  writing-mode: vertical-lr;
  white-space: nowrap;
  color: #38a1db;
  letter-spacing: 0.2em;
  font-weight: bold;
	margin-bottom: 10px;
}
.side-fixed-button {
  position: absolute;
  width: 100%;
  bottom: 0;
  appearance: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  background: #38a1db;
  color: white;
	padding: 5px 0px;
}

.side-fixed-right {
  padding: 10px 20px 10px 30px;
}


.side-fixed-time {
  display: flex;
  padding: 0px 0px;
}

.side-fixed-time1 {
  margin-right: 20px;
}

.side-fixed-text {
  margin-top: 15px;
  margin-bottom: 0px;
  font-size: 15px;
  font-weight: bold;
}

.side-fixed-contact {
  display: flex;
}

.side-fixed-tel {
  color: red;
  font-size: 30px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
}

.side-fixed-tel-image {
  width: 20px;
  margin-right: 8px;
}

.side-fixed-contact-btn {
  background-color: #38a1db;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 14px;
  height: 35px;
  margin-left: 10px;
  border-radius: 24px;
	margin-top: 10px;
}


@media (max-width: 768px) {
.side-fixed
{
display: none;
}
}
		

	
	



.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
  opacity: 0;
  animation: fadeInHeader 0.8s ease forwards;
	background-color: #FFF;
}


.header-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1% 5%;
  box-sizing: border-box;
}

			
@keyframes fadeInHeader {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
		
.header .toplogo img {
  max-width: 260px;
  height: auto;
	margin-right:20px;
}

.header .pcmenu ul {
  list-style: none;
  display: flex;
  gap: 38px;
  margin: 0;
  padding: 0;
}

.header .pcmenu ul li {
  text-align: left;
}

.header .pcmenu ul li a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: #333;
  font-weight: 600;
  transition: opacity 0.3s ease;
  line-height: 1.3;
}

.header .pcmenu ul li a span {
  display: block;
  font-size: 12px;
  color: #49a3bb;
  margin-top: 2px;
  text-align: left;
}

.header .pcmenu ul li a.contact-btn {
  background-color: #49a3bb;
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
}
.header .pcmenu ul li a.contact-btn span {
  color: #fff;
  text-align: left;
}
.header .pcmenu ul li a:hover {
  opacity: 0.7;
}
	
.topmenuspace
	{
		height: 120px;
	}

@media (max-width: 768px) {
	
.toplogo img {
  max-width: 220px;
	padding: 2% 0% 0% 2%;
}

.header .pcmenu
	{
		display: none;
	}
	.topmenuspace
	{
		height: 0px;
	}
}










/* PC版レイアウト */
.wrapper {
  display: flex;
  align-items: flex-start;
}

.main-content {
  flex: 1;
  padding: 0px;
  width: calc(100% - 350px);
}

/* スムーズスクロール */
html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {

  .wrapper {
    flex-direction: column;
  }

  /* 並び順の調整（最重要） */
  .main-content {
    order: 1;   /* ← メインコンテンツを上に */
    width: 100%;
  }
}





.sidebar {
  width: 350px;
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  box-sizing: border-box;
  overflow-y: auto;
}

.sidebar .sidebar-cta {
margin-top: 0px;
background-color:aliceblue; 
padding:25px; 
box-sizing: border-box;
}
.sidebar .sidebar-ctatitle {
font-weight: 700;
}

.sidebar .sidebar-ctatel {
color: #D00; 
font-size: 32px; 
font-weight: 500;
}

.sidebar .sideinfo{
font-size: 0.9em;
color: #999;
}


@media (max-width: 768px) {
  .sidebar {
    order: 2;   /* ← sidebar を下に */
    display: block;
    position: relative; 
    top: auto;
    width: 100%;
    height: auto;
    overflow-y: visible;
    margin-top: 40px;
  }
	
.sidebar .sidebar-cta {
	display: none;
}
}




.sidebar-menu {
  width: 100%;
  background: #eaf2f2;
  padding: 150px 25px 30px 25px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
}

.sidebar-menu .menu-title {
  font-size: 25px;
	font-family: 'Josefin Sans', sans-serif;
  font-weight: 500;
  color: #1f3250;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.sidebar-menu .menu-title span.jp {
  font-size: 15px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}

.sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.sidebar-menu li {
  margin-bottom: 15px;
}

.sidebar-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 25px;
  background: #fff;
  border-radius: 50px;
  color: #555;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: 0.2s ease;
	box-sizing: border-box;
}

.sidebar-menu li a:hover {
  background: #f1f9ff;
  transform: translateY(-2px);
}

.sidebar-menu li a::after {
  content: "→";
  font-size: 15px;
  color: #85a7b3;
  font-weight: 600;
}

.sidebar-btn {
  width: 100%;
  padding: 15px 20px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  box-sizing: border-box;
  transition: 0.2s ease;
}

.sidebar-btn i {
  font-size: 26px;
}

.btn-line {
  background: #06c755; /* LINE緑 */
}

.btn-line:hover {
  background: #05b24c;
}

.btn-mail {
  background: #78a5b7;
}

.btn-mail:hover {
  background: #6994a4;
}

@media (max-width: 768px) {
	.sidebar-menu {
  padding: 40px 30px 40px 30px;
}

.sidebar-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 25px;
  background: #fff;
  border-radius: 50px;
  color: #555;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: 0.2s ease;
	box-sizing: border-box;
}

.sidebar-btn {
display: none;
	}

}











.footer {
}

.ft-wrap {
  max-width: 1250px;
  margin: 0 auto;
  padding: 56px min(5vw, 48px) 22px;
}

.ft-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr; /* ★PCは3カラム */
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.ft-logo img {
  width: 250px;
  display: block;
  margin: 0 0 0 0;
}

.ft-grams {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.ft-gram {
  font-size: 28px;
  color: #49a3bb;
  transition: opacity .3s ease;
}

.ft-gram:hover { opacity: 0.7; }

/* ---------- メニュー ---------- */
.ft-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 40px;
}

.ft-nav li {
  letter-spacing: .02em;
}

.ft-nav a {
  color: var(--text);
  text-decoration: none;
}

.ft-nav a:hover { text-decoration: underline; }

.ft-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.ft-tel {
	background-color: #388ea5;
  border-radius: 14px;
  padding: clamp(12px, 1.8vw, 16px) clamp(16px, 2.2vw, 22px);
  display: flex;
  align-items: center;
  gap: 14px;
	color: #FFF;
}

.ft-tel i {
  font-size: 28px;
  opacity: .95;
}

.ft-tel a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: .08em;
  white-space: nowrap;
}

.ft-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 100%;

}

.ft-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 0;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #49a3bb;
  color: #333;
  background: transparent;
  transition: all .3s ease;
	color: #49a3bb;
}

.ft-btn:hover {
  background: rgba(255,255,255,0.15);
}

/* ---------- 下部 ---------- */
.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: clamp(24px, 6vw, 46px);
  padding-top: 16px;
  border-top: 1px solid var(--thin);
  font-size: 14px;
}

.ft-bottom-left a {
  color: var(--text);
  text-decoration: none;
  margin-right: 16px;
}

.ft-bottom-left a:hover { text-decoration: underline; }

.ft-bottom-right {
  opacity: .9;
  text-align: right;
}


@media (max-width: 768px) {

.ft-wrap {
  max-width: 1250px;
  margin: 0 auto;
  padding: 30px 20px;
}

	
	.ft-top {
    grid-template-columns: 1fr; /* ←★ここで縦並びに変更 */
    gap: 40px;
  }

  /* ロゴ＋SNSを中央寄せ */
  .ft-logo {
    text-align: center;
  }
  .ft-logo img {
    margin: 0 auto;
  }
  .ft-grams {
    justify-content: center;
  gap: 20px;
  margin-top: 0px;
  }

  /* メニューは左寄せ（1列） */
  .ft-nav ul {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    justify-items: start;
  }

  /* 電話＋ボタン中央寄せ */
  .ft-contact {
    align-items: center;
  }
  .ft-tel {
    justify-content: center;
  }
  .ft-buttons {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  /* 下部中央揃え */
  .ft-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .ft-bottom-right {
    text-align: center;
  }
}








.topbtn-wrap {
  display: flex;
  gap: 20px;       /* ボタン同士の間隔 */
  justify-content:flex-start;
 justify-content: center;
  flex-wrap: wrap; /* スマホで折り返し可 */
  margin-top: 40px;
}

.topbtn {
  padding: 25px 55px 25px 35px; /* 左右の余白を調整、右は矢印用に広め */
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 45px;
  font-weight: bold;
  background: #fff;
  color: #0d2648;
  text-decoration: none;
  box-shadow: 0px 0px 20px rgba(40, 50, 80, 0.3);
  transition: 0.3s ease;
  width: auto;         /* ⬅ テキスト量に応じて伸縮 */
  box-sizing: border-box;
}

/* 矢印部分 */
.topbtn span {
  position: absolute;
  right: 20px; /* テキストの長さに影響されない固定位置 */
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.topbtn:hover span {
  transform: translateY(-50%) translateX(6px);
}

.topbtn span::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #0d2648;
}

.topbtn span::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: -10px;
  border-top: 2px solid #0d2648;
  border-right: 2px solid #0d2648;
  transform: rotate(45deg);
}









/* footer googlemap */
.footergmap {
  width: 100%;
height: 500px;
  margin-top: 0px;
}
	
.footergmap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
	
@media (max-width: 767px){
.footergmap {
height: 300px;
}
}









.contact-h2
	{
		font-weight: 500;
		font-size: 1.15em;
		margin-bottom: 20px;
	}
	
.contact-title
	{
		font-weight: 700;
		font-size: 18px;
		margin-bottom: 20px;
	}

  .contact-form {
    margin: 0 auto;
    padding: 50px 40px;
	  background-color: #f5fdff;
	  box-sizing: border-box;
	  border-radius: 20px;
  }

  .form-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .form-label {
    width: 30%;
    font-weight: bold;
    margin-bottom: 6px;
    position: relative;
  }

  .form-label .required {
    background-color: #D00;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
  }

  .form-label .optional {
    background-color: #A8AEB3;
    color: #FFF;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
  }

  .form-field {
    width: 70%;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    background-color: #FFF;
    border-radius: 4px;
    resize: none;
	  box-sizing: border-box;
  }

  .form-field textarea {
    min-height: 140px;
  }

input.submit-button {
  margin: 30px auto 0;
  padding: 30px 70px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
}

input.submit-button:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #BBB; 
  opacity: 1;  
}
	
.form-kiyaku {
    border: 1px solid #bbb;
    color: #555 !important;
    font-size: 11px;
	background:#FFF;
    height: 120px;
    line-height: 1.5em;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 20px;
}

.form-kiyakutext
{
	font-size:0.9rem;
	margin:15px 0px;
}
	
 @media screen and (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }

    .form-label,
    .form-field {
      width: 100%;
    }

    .form-label {
      margin-bottom: 8px;
    }
	 
	 .contact-form {
    margin: 0 auto;
    padding: 50px 30px;
	  background-color: #f5fdff;
	  box-sizing: border-box;
	  border-radius: 10px;
		  margin: 0px -20px;
  }

.form-kiyaku {
    border: 1px solid #bbb;
    color: #555 !important;
    font-size: 11px;
	background:#FFF;
    height: 100px;
    line-height: 1.5em;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 10px;
}

.form-kiyakutext
{
	font-size:12px;
}
	}
	
