/*==================================================
基本のおまじない
===================================*/
html { 
	scroll-behavior: smooth;
	font-size: 10px;
	height: auto;	
}
body {
	margin: 0;
	padding: 0;
	color: #fff;
	margin: 0 auto;
	font-family: "Zen Old Mincho", serif;
 	font-weight: 400;
  	font-style: normal;
	height: auto;
	max-width: 1500px;
    background-color: #f0e8db;
}
* {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
    color: #fff;
    -webkit-tap-highlight-color: transparent; /* 強調をなくす */
}
a:hover {
	cursor: pointer;
}
p {
	margin: 0;
	padding: 0;
}

input[type="button"],
button,
select {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  color: #000
}
#section {
	overflow: hidden;
}
.fuwa {
	opacity: 0;
	transform: translateY(20px);
	transition: all ease-in-out .6s;
	
}
.fuwa.on {
	opacity: 1;
	transform: translateY(0px);
	transition: all ease-in-out .6s;
	transition-delay: .2s;
}


/*==================================================
header
===================================*/
#contact {
    overflow: hidden;
    width: 100%;
    height: auto;
    position: relative;
}
#privacy_policy {
    overflow: hidden;
    width: 100%;
    height: auto;
    position: relative;
}
#header {
    background-color: #f0e8db;
    transition: background-color 0.5s ease-in-out; /* 変化の速度を0.5秒に調整 */
    height: 60px;
	max-width: 1500px;
}
#header.on {
    /* background-color: transparent; ← この行を削除またはコメントアウト */
    background-color: rgba(240, 232, 219, 0.7); /* 半透明の背景色に変更 (元の色味を維持) */
    -webkit-backdrop-filter: blur(8px); /* Safari用のぼかしフィルター */
    backdrop-filter: blur(8px); /* 背景を8px分ぼかす */
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 68px;
    display: flex;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transform: translateY(10px);
    animation: opa 1s ease-in-out;
    animation-fill-mode: forwards;
    z-index: 10;
}
.logo {
    position: fixed;
    height: 68px;
    width: 130px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center; 
    z-index: 100000;
}
.logo img {
    width: 100%;
    height: auto;
    opacity: .6;
}
 @keyframes opa {
	0% { 
        opacity: 0;
        transform: translateY(20px);
    }

	100% { 
        opacity: 1;
        transform: translateY(0px);
    }
  } 
@media (min-width: 1000px) {
    .logo {
        left: 30px;
        transform: translateX(0);
       
    }
  }


 

 /*============パソコン用メニュー===============*/
.pc_header {
    width: 100%;
    height: 60px;
    position: relative;
    top: 0;
    left: 0;
    display: none;
}
@media (min-width: 1000px) {
    .pc_header {
        display: block;
    }
}

.header_menu {
    display: flex;
    width: 680px;
    height: auto; 
    position: absolute;
    top: 50%;
    right: 10px; 
    transform: translateY(-50%);
}
.header_menu a {
    width: 100%;
    height: 16px;
    display: block;
}
.header_menu a:hover {
    opacity: .7;
}
.header_menu div:nth-child(1),
.header_menu div:nth-child(2),
.header_menu div:nth-child(3),
.header_menu div:nth-child(4),
.header_menu div:nth-child(5) {
    width: auto;
    height: 16px;
    margin-right: 44px;
}
.header_menu div:nth-child(6) {
    width: auto;
    height: 16px;
    margin-right: 0;
}

.header_menu img {
    display: block;
    height: 16px;
    width: auto;
}
.header_menu div:nth-child(1) img {
    width: auto;
    height: 22px;
}
.header_menu div:nth-child(6) img {
   width: auto;
    height: 22px; 
}



.header_menu li:nth-child(2) img,
.header_menu li:nth-child(3) img,
.header_menu li:nth-child(4) img,
.header_menu li:nth-child(5) img
 {
    width: auto;
    height: 16px;
    float: right;
}
.header_menu li:nth-child(2) img {
    margin-right: 40px;
}
.header_menu li:nth-child(3) img {
    margin-left: 18px; 
}
.header_menu li:nth-child(4) img {
    margin-left: 40px; 
}
.header_menu li:nth-child(5) img {
    margin-right: 40px;
}








/*============ハンバーガーメニュー===============*/

.hamburger-menu {
	position: fixed;
	top: 0;
	right: 0;
	display: block;
	z-index: 10000000000;
}

.menu-btn {
	position:fixed;
    top: 4px;
    right: 24px;
    display: flex;
    height: 68px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.menu-btn:hover {
	opacity: .6;
	cursor:pointer;
}
.menu-btn span,
.menu-btn span:before{
    content: '';
    display: block;
    height: 1.5px;
    width: 50px;
    background-color: #00000082;
    position: absolute;
	z-index: 10000;
	transition: ease-in 0.4s;
}
.menu-btn span:before {
    bottom: 7px;
}

#menu-btn-check:checked ~ .menu-btn span {
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
	transform: rotate(45deg) scale(0.6) ;
	transition: ease-in 0.4s;
    background-color: #fff;
    height: 1.5px;
}
#menu-btn-check:checked ~ .menu-btn span::before {
	box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
	height: 1.5px;
    bottom: 0;
    transform: rotate(90deg);
	transition: ease-in 0.4s;
    background-color: #fff;
}

#menu-btn-check {
	display: none;

}

#menu-btn-check:checked ~ .menu-min {
	display: block;
}

.menu-min {
    position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: auto;
	display: none;
	background-color: #00000063;
	z-index: 1000;
	transition: all .2s ease-in;
}

.min-menu {
	width: 70%;
	height: 100vh;
    background-color: #56544f;
    padding-top: 100px;
    margin-left: 30%;
}
.menu_li {
	width: 80%;
	margin-left: 10%;
	border-bottom: 2px solid #a5a4a434;
	display: block;
	opacity: 0;
	transform: translateY(50px);
}

.menu_li a {
	color: #56544f;
	display: block;
	line-height: 80px;
	font-size: 2rem;
	letter-spacing: 0.2em;
	transition: all 0.2s;
    width: 100%;
    height: 80px;
    position: relative;
    z-index: 1000000;
}
.min-menu li:nth-child(2) img,
.min-menu li:nth-child(3) img,
.min-menu li:nth-child(4) img,
.min-menu li:nth-child(5) img
 {
    position: absolute;
    width: auto;
    height: 25px;
    right: 0;
    top: 50%;
    margin-top: -12.5px;
    z-index: 1000000000000;
}
.min-menu li:nth-child(1) img,
.min-menu li:nth-child(6) img {
    position: absolute;
    width: auto;
    height: 30px;
    right: 0;
    top: 50%;
    margin-top: -12.5px;
    z-index: 1000000000000;
}
.menu_li a:hover {
	opacity: .6;
	transition: all 0.2s;
}

/* アニメーションスタートの遅延時間を決めるCSS(ハンバーガーmenu)*/

.delay-time002{
	animation-delay: 0.2s;
	}
	
	.delay-time004{
	animation-delay: 0.4s;
	}
	
	.delay-time006{
	animation-delay: 0.6s;
	}
	
	.delay-time008{
	animation-delay: 0.8s;
	}
	
	.delay-time010{
	animation-delay: 1s;
	}
	
	.delay-time012{
	animation-delay: 1.2s;
	}

	.delay-time014{
	animation-delay: 1.4s;
	}
/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/

.fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity: 0;
	}
	
	.fadeUp2 {
	animation-name:fadeUpAnime2;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity: 0;
	}
	@keyframes fadeUpAnime{
	  from {
		opacity: 0;
		transform: translateY(50px);
	  }
	
	  to {
		opacity: 1;
		transform: translateY(0);
	  }
	}
	@keyframes fadeUpAnime2{
		from {
		  opacity: 0;
		}
	  
		to {
		  opacity: 1;
		}
	  }


 @media (min-width: 1000px) {
    .hamburger-menu {
        display: none;
    }
 }
	



 /*==================================================
CONTACT_INNERページ
===================================*/

.contact_inner {
	width: 100%;
	height: auto;
	margin-top: 68px;
	color: #56544f;
}
.privacy_policy_inner {
	width: 100%;
	height: auto;
	margin-top: 68px;
	color: #56544f;
	margin-bottom: 90px;
}

.form {
	width: 86%;
	height: auto;
	padding: 10% 0%;
	margin-left: 7%;
}
.contact_l {
	width: 100%;
	height: auto;
}
.contact_inner h2 {
	width: 100%;
	height: auto;
	font-size: 2.1rem;
	text-align: center;
	padding: 30px 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
}
.contact_inner span {
	font-size: 1.6rem;
}
.privacy_policy_inner h2 {
	width: 100%;
	height: auto;
	font-size: 2.1rem;
	text-align: center;
	padding: 30px 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
}
.contact_p {
	width: 86%;
	margin-left: 7%;
	font-size: 1.5rem;
	line-height: 2.4rem;
	letter-spacing: 0.02em;
	font-weight: 600;
}
.contact_p_pc {
	display: none;
}
.privacy_policy_inner h3 {
	width: 86%;
	margin-left: 7%;
	font-size: 1.8rem;
	line-height: 2.4rem;
	letter-spacing: 0.02em;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 10px;
}
.privacy_policy_inner p {
	width: 86%;
	margin-left: 7%;
	font-size: 1.5rem;
	line-height: 2.4rem;
	letter-spacing: 0.02em;
	font-weight: 600;	
}
.contact_box {
	width: 100%;
	margin-bottom: 10%;
}
.name {
	font-size: 1.3rem;
	margin-bottom: 5px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
}

#error_m {
	font-size: 1.2rem;
	color: red;
	margin-top: 10px;
}

.contact_box2 {
	width: 100%;
	height: auto;
	margin-bottom: 10%;

}
.inputs {
	box-sizing: border-box;
	width: 100%;
	height: 50px;
	padding: 5px;
	border: 1px solid #0000008f;
}

.inputs2 {
	box-sizing: border-box;
	width: 100%;
	height: 8em;
	padding: 5px;
	border: 1px solid #00000056;
}
.check_box_wrapper {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin-bottom: 30px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
}
.checkbox {
  	display: block;
}
_::-webkit-full-page-media, _:future, :root .checkbox {
	margin-top: 0;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, .checkbox {
		margin-top: -10px;
	}
}

.check_p {
	display: block;
	font-size: 1.4rem;
	line-height: 2rem;
	width: 93%;
	margin-left: 2%;
	color: #56544f;
	font-weight: 600;
}
.check_p_pc {
	display: none;
}
.kakunin {
	font-size: 1.3rem;
	font-weight: 600;
}
.button_wrapper {
	width: 100%;
}

#button {
	position: relative;
	box-sizing: border-box;
	display: block;
	width: 200px;
	height: 50px;
	margin: 40px auto 60px;
	background-color: #56544f;
	text-align: center;
	color:#f0e8db;
	letter-spacing: 0.08em;
	font-size: 1.4rem;
	z-index: 100000;
	border: 0px;
	border-radius: 0;
}
#button.on {
	opacity: .5;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	
}


.button:hover {
	background-color: #ffffff;
	color: #000000;
	transition: 0.5s;
}

/****************** 1000 *****************/
@media screen and (min-width:1000px) { 
	.contact_inner {
		width: 90%;
		height: auto;
		margin-top: 10%;
		margin-left: 5%;
		color: #56544f;
	}
	.contact_inner h2 {
		width: 100%;
		height: auto;
		font-size: 3rem;
		text-align: center;
		padding: 30px 0 60px;
		font-family: "Zen Kaku Gothic New", sans-serif;
		font-weight: 500;
	}
	.check_box_wrapper {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		width: 660px;
		height: auto;
		margin: 0 auto 20px;
		font-family: "Zen Kaku Gothic New", sans-serif;
		font-weight: 200;
	}
	.contact_l {
		width: 80%;
		height: auto;
		margin-left: 10%;
	}
	.contact_p {
		display: none;
	}

	.contact_p_pc {
		width: 850px;
		margin: 0 auto;
		font-size: 2rem;
		line-height: 3.4rem;
		letter-spacing: 0.02em;
		font-weight: 100;
		display: block;
		padding-top: 20px;
		margin: 0 auto;
	}
	.check_p {
		display: none;
	}
	.check_p_pc {
		display: block;
		font-size: 2rem;
		line-height: 3rem;
		width: 96%;
		margin-left: 2%;
		color: #56544f;
		font-weight: 300;
	}
	.name {
		font-size: 1.8rem;
	}
	.contact_box01 {
		margin-top: 10% !important;
	}
	.kakunin {
		font-size: 2rem;
		font-weight: 300;
		text-align: center;
	}
	
	
}
.inputs::placeholder{
		opacity: .4;
		font-size: 2rem;
	}
  /*============ パソコン用プライバシーポリシー ===============*/
  @media (min-width: 1000px) {
	#privacy_policy {
		overflow: hidden;
		width: 100%;
		height: auto;
		position: relative;
	}
	.privacy_policy_inner {
		width: 60%;
		margin-left: 20%;
		height: auto;
		margin-top: 10%;
		color: #56544f;
		margin-bottom: 10%;
	}
	.privacy_policy_inner h2 {
		font-size: 3rem;
	}
	.privacy_policy_inner h3 {
		font-size: 2.2rem;
		margin-left: 0px;
		margin-bottom: 20px;
		margin-top: 60px;
	}
	.privacy_policy_inner p {
		width: 100%;
		margin-left: 0%;
		font-size: 2rem;
		line-height: 3rem;
		letter-spacing: 0.04em;
		font-weight: 200;
		opacity: 0;	
	}

  }

/* ===================== Footer =======================*/
.footer {
    width: 100%;
    height: auto;
    aspect-ratio: 7/1.6;
    background-color: #56544f;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 8px 0 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    position: relative;
}
.footer ul {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 4%;
}
.footer li {
    width: 100%;
    height: auto;
    margin-top: 8px; 
}
.footer a {
    color:#f0e8db;
}
.footer p {
    width: 100%;
    height: auto;
    font-size: 1.1rem;
    font-weight: 300;
    margin-top:16px;
    margin-bottom: 4px;
    text-align: center;
    color:#f0e8db;
    letter-spacing: 0.04em;
}
.copy {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: auto;
    margin: 20px auto 0;
}
.copy img {
    width: 100%;
    height: auto;
}
/*************** 600 ******************/
@media screen and (min-width:600px) { 
    .footer {
        width:  100%;
        height: 100px;
    }
    .footer ul {
        margin-top: 20px;
    }
}