@charset "utf-8";
/* --- Base --- */
* { margin: 0; 
	padding: 0;
	box-sizing: border-box;
}
html{
	scroll-padding-top:100px;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.8;
	color: #403c3a;
	background-image: url(image/kage.jpg);
}

img { max-width: 100%; height: auto; }

a {
    text-decoration: none;
	color: #403c3a;
    transition: opacity 0.3s;
}

/* --- Header & Footer (既存踏襲) --- */
.header { background: #fff; 
	padding: 10px 0; 
	position: sticky; 
	top: 0; 
	z-index: 1000; 
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/*
.container { 
	max-width: 1100px; 
	margin: 0 auto; 
	padding: 0 20px;
}
*/
.header-inner { 
	display: flex;
	justify-content: space-between;
	align-items: center; 
	max-width: 1200px; 
	margin: 0 auto;
	padding: 0 20px; 
}

.logo img {
	max-width: 80px; 
}
.header_wrapper {
	display: flex; 
	align-items: center;
}
.nav ul { 
	display: flex;
	gap: 20px; 
	list-style: none; 
}
.nav a {
	color: #333;
	text-decoration: none;
	font-size: 0.9rem;
}

.header-contact {
	display: flex;
	align-items: center; 
	gap: 10px;
	margin-left: 20px; 
}
.tel-link { 
	background: #6d90a6;
	color: #fff; 
	padding: 10px 20px; 
	border-radius: 30px; 
	font-weight: bold;
}
.btn-line { 
	background: #00b900; 
	color: #fff;
	padding: 10px 20px;
	border-radius: 30px; 
	font-weight: bold;
	text-decoration: none; 
}
.lower-hero {
    width: 100%;
}
.lower-hero-visual {
    position: relative; /* 子要素の基準点 */
    width: 90%;
    height: auto;     /* PC時の高さ（適宜調整） */
}

/* 背景画像の設定 */
.lower-hero-img {
	max-width: 100%;
	object-fit: cover;
	display: block;
	min-height: 100%;
	width: 100%;
}
.lower-hero-title-img{
	max-width: 100%;
	position: absolute;
    right: 0;
	bottom: 0;
	translate:95px -35%;
	
	
}
.contact-title-wrap {
    padding: 70px 20px;
    text-align: center;
}

.contact-title {
    color: #6d90a6;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

/* --- フォームコンテナ部分 --- */
.contact-form-section {
    padding: 0 20px 100px;
}

.form-inner-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 8px;
    /* フォームにまとまりを出すための軽い境界線 */
    border: 1px solid #eee;
}

.google-form-iframe {
    display: block;
    border: none;
	height: 1000px
}

.footer {
	background-color: #f4f4f4;
	padding-top: 15px;
	padding-bottom: 120px; /* 余白は固定バー分確保 */
	position: relative;
}

.footer-content {
    justify-content: space-between;
}
.footer-info{
	text-align: center;
	margin-bottom: 20px
}
.footer-info img{
	max-width: 200px
}
.footer-nav ul {
	display: flex;
	gap: 10px;
	justify-content: center;
	list-style-type: none;
}
.footer-nav ul ul{
	display: block;
	border-left: 1px solid #000;
	padding-left: 5px;
	margin-left: 5px;
	white-space: nowrap;
}

.footer-fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
}

.fixed-tel, .fixed-line {
    flex: 1;
    text-align: center;
    padding: 15px;
    color: #fff;
    font-weight: bold;
}

.fixed-tel { background-color: #6d90a6; }
.fixed-line { background-color: #00b900; }

.gotop {
    position: fixed;
    right: 20px;
    bottom: 65px;
    background: #6d90a6;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .header-contact {
		display: none; 
	}
  nav {
  position: fixed;
  top: 0;
  left: 100%  /* 0から変更  */;
  transition: 0.5s;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  padding-top: 100px;
  height: 100%;
  padding-bottom: 50px;
  overflow: auto;
}
	.menu-open nav {
		left: 0;}

	.nav-button {
  width: 70px;
  height: 50px;
  position: relative;
  z-index: 1;
}
	.nav-button span {
  width: 30px;
  height: 2px;
  background-color: #000000;
  position: absolute;
  left: 20px;
}
	.nav-button span:nth-child(1) {
	top: 12px;
}

.nav-button span:nth-child(2) {
	top: 24px;
}

.nav-button span:nth-child(3) {
	top: 36px;
}
.menu-open .nav-button span:nth-child(1) {
  top: 24px;
  transform: rotate(315deg);
}

.menu-open .nav-button span:nth-child(2) {
  width: 0;
  left: 50%;
}

.menu-open .nav-button span:nth-child(3) {
  top: 24px;
  transform: rotate(-315deg);
}
	.nav-button span {
	transition: 0.3s;
}
	.nav ul{
		flex-direction: column;
		align-items: center;
		gap:40px;
	}
	.nav a{
		font-size: 24px;
	}
	.header-inner {
/*        flex-direction: column;*/
        gap: 10px;
    }
	header .tel-link, header .btn-line{
		display: none;
	}
/*    .nav { display: none; } */

	
    .main-catch { 
		font-size: 1.8rem;
	}
	 .lower-hero {
	width: 100%;
	background-image: url(image/kage.jpg);
}

.lower-hero-visual {
    position: relative; /* 子要素の基準点 */
    width: 90%;
    height: auto;     /* PC時の高さ（適宜調整） */
}

/* 背景画像の設定 */
.lower-hero-img {
	max-width: 100%;
	object-fit: cover;
	display: block;
	min-height: 100%;
	width: 100%;
}
.lower-hero-title-img{
	max-width: 100%;
	position: absolute;
    right: 0;
	bottom: 0;
	translate:95px -35%;
	
	
}
.lower-hero-content {
    position: absolute;
    right: 5%;         /* 右から5%の位置 */
    bottom: 15%;       /* 下から15%の位置 */
    text-align: right;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* 視認性を高める影 */
    z-index: 10;
}

.lower-hero-sub {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.2;
}

.lower-hero-title {
    font-size: 5rem;    /* カンプに合わせた大きめのサイズ */
    font-weight: bold;
    line-height: 1;
    margin: 0;
    letter-spacing: 0.05em;
}
	.lower-hero-title-img{
		max-width: 50%;
		translate:20% -35%;
	}
	/* --- フォームを囲む親要素 --- */
.contact-form-section {
    width: 100%;
    padding: 0 20px 80px; /* 左右に余白を持たせる */
    box-sizing: border-box;
	display: flex;
	justify-content: center;
}

.form-inner-container {
	width: 100%;
    max-width: 900px;
    margin: 0 auto ;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden; /* iframeのはみ出しを防止 */
    position: relative;
}

/* --- Googleフォーム本体 (iframe) --- */
.google-form-iframe {
    width: 100%;
    /* 縦の長さはフォームの設問数に合わせて調整してください */ 
    border: none;
    display: block;
}
.google-form{
width: 100%;
	}
/* --- 【重要】スマホ・タブレット用のレスポンシブ設定 --- */
 
    .contact-form-section {
        padding: 0 10px 50px; /* スマホ時は外側の余白を狭くする */
    }

    .form-inner-container {
        padding: 10px 0; /* フォーム左右の隙間をなくして画面を広く使う */
        border-radius: 4px;
        border: none; /* スマホでは枠線を消してスッキリさせる */
    }

    .google-form-iframe {
        /* スマホだと縦に長くなりやすいため、少し高めに設定するのがコツです */
        height: 1600px; 
    }

}

/* iPhone SEなどの極端に幅が狭いデバイス用 */
@media (max-width: 375px) {
    .google-form-iframe {
        height: 1800px;
    }
}
	.footer {
	background-color: #f4f4f4;
	padding-top: 15px;
	padding-bottom: 120px; /* 余白は固定バー分確保 */
	position: relative;
}
.contact-title-wrap {
        padding: 50px 15px;
    }
    
    .contact-title {
        font-size: 1.4rem;
    }

    .contact-form-section {
        padding: 0 10px 60px;
    }

    .form-inner-container {
        padding: 20px 5px; /* iframeを極力広く見せる */
    }
	
.footer-content {
    justify-content: space-between;
}
.footer-info{
	text-align: center;
	margin-bottom: 20px
}
.footer-info img{
	max-width: 200px
}
    .footer-nav{
		display: flex;
		position: static;
		background-color: transparent;
		padding-top: 0;
		justify-content: center;
	}
.footer-nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}
.footer-nav ul ul{
	display: block;
	border-left: 1px solid #000;
	padding-left: 5px;
	margin-left: 5px;
	white-space: nowrap;
	}
                                                           

.footer-fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
}
}
