@charset "utf-8";

*,
::before,
::after{
  padding: 0;
  margin: 0;
box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a{
  color: inherit;
  text-decoration: none;
  
}



body {  
  font-family:  'LineSeedJP', sans-serif,"Yu Gothic",游ゴシック, "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3,  メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}
img {
  max-width: 100%;
  
}


.toggle-menu-button{
  display: none;
}



/*　ロゴ*/
#logo{
  align-items: center; /* 念のため中央に */
  margin-right: 60px; /* ロゴとメニューの間隔 */
  width: 65px;
  height: 65px;
  
}

  #logo img {
  width: 100%;
  height: auto;
}



/* ===== デスクトップメニュー ===== */

.header-menu {
  display: flex;
  align-items: center;
  height: 85px;
  padding-left: 40px;
  padding-top: 10px;
  background: #ffffff;
  position: relative;
  z-index: 1002;
}

.desktop-nav ul {
  display: flex;
  gap: 40px; /* 項目の間隔 */
  margin: 0;
}

.desktop-nav li {
  list-style: none;
  position: relative;
}

.desktop-nav li a {
  font-size: 15px;
  font-weight: 500;
  color: #000;
   line-height: 1.2;
  position: relative;
  text-decoration: none;
}

.desktop-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease;
}

.desktop-nav li a:hover::after {
  width: 100%;
}

/* デスクトップ用サブメニュー */
.desktop-nav li.has-submenu .submenu {
  display: none; 
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 200px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  z-index: 1003;
}

.desktop-nav li.has-submenu:hover .submenu {
  display: block;
}

.desktop-nav li .submenu li {
  padding: 5px 20px;
}

.desktop-nav li .submenu li a {
  font-size: 14px;
  color: #000;
}



/* ===== ハンバーガーメニュー ===== */
.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: none;
}

.menu-toggle__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 3px;
  background-color: #000000;
  transition: all 0.6s;
}

.menu-toggle__line:nth-of-type(1) { top: 14px; }
.menu-toggle__line:nth-of-type(2) { top: 23px; }
.menu-toggle__line:nth-of-type(3) { top: 32px; }

.menu-toggle.active .menu-toggle__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.menu-toggle.active .menu-toggle__line:nth-of-type(2) {
  opacity: 0;
}
.menu-toggle.active .menu-toggle__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}



/* ===== オーバーレイメニュー ===== */
.menu-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
   overflow: visible;
}

.menu-nav ul {
  text-align: center;
}

.menu-nav ul li {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.menu-nav.active {
  visibility: visible;
  opacity: 1;
}

.menu-nav.active ul li {
  opacity: 1;
  transform: translateY(0);
}

.menu-nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
.menu-nav.active ul li:nth-child(2) { transition-delay: 0.2s; }
.menu-nav.active ul li:nth-child(3) { transition-delay: 0.3s; }
.menu-nav.active ul li:nth-child(4) { transition-delay: 0.4s; }
.menu-nav.active ul li:nth-child(5) { transition-delay: 0.5s; }

.menu-nav ul li a {
  color: #000000;
  font-size: 24px;
}

/* モバイル用サブメニュー（アコーディオン） */
.menu-nav li.has-submenu > .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.menu-nav li.has-submenu.active > .submenu {
  max-height: 600px;
}




/* ===== レスポンシブ ===== */
@media screen and (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-nav {
    display: flex;
  }
}


h1{

  margin-top: 50px;
  margin-bottom: 50px;
  font-weight: 400;
}

/*ここからタグデザイン contact*/
h1.contact-title {
  position: relative;
  display: inline-block;
	padding-top: 30px;
  padding-left: 100px;
	font-size: 24px;
	border-bottom: 1px solid rgb(0, 0, 0);
}


.contact-title span {
	position: relative;
	z-index: 2;


}

.contact-title::before {
	content: attr(data-en);
	position: absolute;
	top: 0px;
	left: 100px;
	color: rgba(0, 0, 0, 0.2);
	font-size: 40px;
	text-transform: uppercase;
	z-index: 1;

}

@media screen and (max-width: 767px) {
  h1.contact-title {
    padding-top: 20px;
    padding-left: 60px;
    font-size: 20px;
  }

  .contact-title::before {
    left: 60px;
    font-size: 24px;
  }
}


/*ここまで*/

/* デスクトップ用 */
/* contact */
#contact {
	width:100%;
	max-width: 800px;
	margin: auto;
	padding-bottom: 100px;  
}

#contact .h2plus {
	text-align: center;
	padding-bottom:20px;
}

#contact .hissu {
	display: flex;
	padding:25px 5px;
	width: 100%;
	table-layout: fixed;
}
#contact .hissu>* {
	display: table-cell;
	vertical-align: middle;
	padding: 14px 10px;
	box-sizing: border-box;
	line-height: 1;
}

#contact .inner-box {
	width: 340px;
	text-align: left;
}
#contact .hissu .inner-box b,
#contact .hissu .inner-box p {
	display: block;
	position: relative;
	font-weight: normal;
}
#contact .hissu .inner-box p {
    top:40%;    
}
#contact .hissu .inner-box b::after,
#contact .hissu .inner-box p::after {
	color: #fff;
	font-weight: 500;
	font-size: 75%;
	width: 34px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: -5px;
	bottom: 0;
	margin: auto;
    border-radius: 2px;
}
#contact .hissu .inner-box b::after,
#contact .hissu .inner-box p::after {
	content: "必須";
	background: #d97480;
}

#contact .form-en .hissu .inner-box b::after,
#contact .form-en .hissu .inner-box p::after {
	width: 38px;
}

#contact .form-en .hissu .inner-box b::after,
#contact .form-en .hissu .inner-box p::after {
	content: "MUST";
	background: #d97480;
}

#contact .nini {
	display: flex;
	padding:20px 5px;
	width: 100%;
	table-layout: fixed;
}
#contact .nini>* {
	display: table-cell;
	vertical-align: middle;
	padding: 14px 10px;
	box-sizing: border-box;
	line-height: 1;
}

#contact .nini .inner-box b,
#contact .nini .inner-box p {
	display: block;
	position: relative;
	font-weight: normal;
}
#contact .nini .inner-box p {
    top:40%;    
}
#contact .nini .inner-box b::after,
#contact .nini .inner-box p::after {
	color: #fff;
	font-weight: 500;
	font-size: 75%;
	width: 34px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: -5px;
	bottom: 0;
	margin: auto;
    border-radius: 2px;
}
#contact .nini .inner-box b::after,
#contact .nini .inner-box p::after {
	content: "任意";
	background: #777;
}
#contact.contact_after tr {
	border-bottom: 1px solid #ccc;
}
#contact.contact_after tr:first-child {
	border-top: 1px solid #ccc;
	margin: 30px 0 0;
}
#contact.contact_after tr th {
	color: #aaa;
}
#contact.contact_after tr td {
	font-weight: 500;
}
.txt_form .red,
.error_messe b {
	color: #f00;
	font-weight: normal;
}
.error_messe {
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.3;
}
.error_messe>* {
	display: inline-block;
}
#contact input[type=text], #contact select, #contact textarea {
	width: 100%;
	outline: none;
}
#contact input[type=text], #contact select {
	height: 44px;
	background: #eeeeee;
	border:1px #cccccc solid;
}
#contact textarea {
	min-height: 150px;
	resize: vertical;
	background: #eeeeee;
	border:1px #cccccc solid;
}

#contact .policy h3{
    font-size:1.2em;
    position: relative;
    text-align:center;
    margin:10px;
}

#contact .policy-text {
  height: 300px;
  overflow: auto;
  border:1px solid #cccccc;
  margin:10px 0;
}


#contact .check_area {
    text-align:center;
    background-color: #eee;
    padding: 10px;

}


#contact .check_area input[type=checkbox]{
    visibility:hidden;
}

#contact .label-checkbox{
      cursor: pointer;
      padding-right: 3px;
      font-weight: normal;
      font-size:14px;
}

#contact .label-checkbox .lever:before{
      content:"　";
      margin-right: 7px;
      position: relative;
      top: 0;
      padding: 0px 3px 0px 3px;
      background-color:#fff;
      border:1px solid #cccccc;
}

#contact .label-checkbox input[type=checkbox]:checked + .lever{

}

#contact .label-checkbox input[type=checkbox]:checked + .lever:before{
      content:"✔";
      color:#e60012;
      padding: 0px 6px 0px 3px;

}

#contact .txt_form {
	text-align: center;
	line-height: 1.3;
}

#contact .txt_form span {
	display: block;
}
::placeholder {
	color: #ccc;
}

#contact .form_btn {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: center;
	justify-content: space-evenly;
}
#contact .form_btn01,
#contact .form_btn02 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 200px;
	height: 50px;
	border: none;
	border-radius: 5px;
	padding: 10px;
	margin: 30px auto 0;
	box-sizing: border-box;
	font-size: 120%;
	color: #fff;
	line-height: 1;
	cursor:pointer
}
#contact .form_btn01 {
	background: #1b1b1b;
}
#contact .form_btn02 {
	background: #808080;
}

#contactfinish p {
	text-align:center;
	font-size: 1.2em;
}

#contact .form-en {
	position:relative;
}

#contact .form-en .formError {
	margin-top: 10px !important;
}
.grecaptcha-badge {
	opacity: 0;	
}


/* privacy policy */
.policy {
	text-align:center;
	line-height:1.5;
}
#pp-top .top-img{
  margin-top: 70px;
  position: relative;
  color: #fff;
  font-size: 2em;
}

#pp-top .center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#pp .box{
     padding: 40px 30px 40px;
}


#pp .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#pp .h2plus{
     text-align:center;

}

#pp .pp-inner-box h3{
   font-weight:bold;
   padding:1%;
}

#pp .pp-inner-box{
   max-width: 940px;
   padding-bottom: 40px;
   margin: 0 auto;
}

#pp .pp-inner-box h4{
   font-weight:bold;
   padding:1%;
}

#pp .pp-inner-box-contents p{
   font-size:0.9em;
   margin:1%;
}

#pp .pp-inner-box-contents-box {
    margin: 0 auto;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: 10px solid #fff;
    text-align:center;
    font-size:0.9em;

}

#pp .pp-inner-box-contents-box a{
    color: #fff;
}


#pp .pp-inner-box-contents-box-under {
    margin: 0 auto;
    max-width: 75%;
    word-wrap: break-word;
}

/*contact.php */
#contact .txt_rslt {
    display: flex;
	padding:20px 5px;
	width: 99%;
	table-layout: fixed;
}
#contact .txt_rslt>* {
	display: table-cell;
	vertical-align: middle;
	padding: 14px 10px;
	box-sizing: border-box;
	line-height: 1;
}
#contact .ask_box {
	width: 280px;
	text-align: left;
}
#contact .ask_box b {
	font-weight:normal;
}
#contact .txt_answr {
	 display:flex;
}

/* contactsendmail.php */
#contact .send-result {
	text-align:center;
}

#contact  .send-result h3 {
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 1em;
}

#contact  .send-result p {
	line-height:1.5;
	margin-bottom: 30px;
}

/* タブレット用 */
@media screen and (max-width: 1024px) {
}

/* スマホ用 */
@media screen and (max-width: 768px) {
	#contact {
		padding: 0 20px 150px;
	}
	
  
    #contact .hissu {
    	display:block;
    }
    
    #contact .hissu > * {
    	display:block;
    }
    
    #contact .inner-box {
		width: 100%;
	}
	
	#contact .txt_rslt {
  		display: block;
  	}
	
	#contact .form_btn {
		flex-direction: column-reverse;
	}


}

/*ここまで*/



@media (any-hover: hover) {
  .buttonNeumorphism {
    transition: box-shadow 0.6s;
  }


.buttonNeumorphism:hover {
  box-shadow: -10px -10px 10px #ffffff, 2px 2px 4px rgb(255, 255, 255);
}

.buttonNeumorphism:active {
  background-color: #e6e6e6;
  box-shadow: inset 10px 10px 20px rgba(228, 230, 241, 0.16);
}
}




.footer {
  background-color: #ffffff;
  color: #000000;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav {
  width: 100%;
  max-width: 960px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* .footer-left を中央に寄せる */
.footer-left {
  display: flex;
  gap: 30px;
  
  justify-content: center;
  flex: 1; 
  align-items: center; 
}

.footer-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-item.tel {
  font-size: 25px;
  margin-top: -1px;
  line-height: 40px; 
  height: 40px;
  display: inline-block;
  color: #000000;
  text-decoration: none;
}

.footer-nav-item a:hover {
  opacity: 0.7;
}

/* メールボタン内のSVGは上下中央 */
.buttonNeumorphism svg {
 height: 30px;  /* ボタン内で少し小さめ */
  width: auto;
  display: block;
  margin: 0;
}


/* メールボタンスタイル */
.buttonNeumorphism {
 width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 5px 5px 20px #c8c9cc, inset -5px -5px 20px #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;;
  padding: 0; /* 念のため */
}

.iconEmail {
  margin: 0;
 
}

/* 電話スタイル */
.la-phone {
  position: relative;
  top: 2px;
}




/* インスタ画像とメールボタンの高さを揃える */
.footer-menu img
 {
  height: 30px;
  display: block; /* 不要な下余白を消す */
  width: auto;    /* 横幅は自動調整 */
  margin-top: 5px; /* 例えば上下5px調整で垂直中心に近づける */
  margin-bottom: 5px;
}


/* コピーライト */
.footer-copyright {
  margin-top: 80px;
  text-align: center;

}


/***追従するトップへ戻るボタン***/
#page-top {
  margin-bottom: 100px;
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #272727;
    padding: 0 0 0 35px;
    border-top: solid 1px;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}
/***トップへ戻るボタンここまで***/























