@charset "utf-8";
/* CSS Document */
/* ========== 全体レイアウト ========== */

a:hover{
  opacity: .7;
}

#loading-screen {
    background-color: #ece0e0 !important;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
}

.logo-l {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  animation: spinY 2s linear infinite;
  transform-style: preserve-3d;
}

@keyframes spinY {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.loading-text {
  color: #ffffff;
  font-style: italic;
  font-size: 16px;
}


body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
	color: #6A3A4C;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
	line-height: 30px;
}

.container {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 38%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 60px;
  padding-left: 40px;
	 background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.left {
  background-color: #fff;
	background-image: url("img/bg_011.jpeg");
}

.right {
  background-color: #fff;
		background-image: url("img/bg_02.jpg"); 
}

.content {
  flex: 1;
	min-width: 400px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.content a{
  text-decoration: none;
  color: #fff;
  width: 100%;
}
.content::-webkit-scrollbar {
  display: none;
}

.inner-content {
  min-width: 400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
	background: linear-gradient(180deg, #E5B9BC, #AB7679);
}
.topimg{
	width: 100%;
}
.topimg img{
	width: 100%;
}
.title{
	font-size: 70px;
	color: #fff;
	 text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
	position: absolute;
	z-index: 10;
	right: 0;
	top: 5%;
	
}
.about{
	position: relative;
	width:90%;
	margin: 0 auto;
	padding-top: 50px;

}
.about-img{
	border-radius: 50px;
	overflow: hidden;
}

.about-text{
	width: 90%;
	margin: 20px auto;
	color: #fff;
}
.contact{
	width: 90%;
	padding: 20px 10px;
	background-color: #6A3A4C;
	color: #fff;
	margin: 0 auto;
	text-align: center;
}
/* ========== 事業アコーディオン ========== */
 .accordion {
      border-bottom:1px solid #fff;
      width: 100%;
      max-width: 600px;
      margin: 0 auto 20px;
      overflow: hidden;
    }

    .accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
}

    .toggle-button {
      transition: color 0.3s ease;
      width: 1.5rem;
      text-align: center;
    }

    .accordion-content {
      display: none;
      padding: 20px;
		font-size: 15px;
      border-top: 1px solid #fff;
    }

    .accordion.active .accordion-content {
      display: block;
    }
/* ========== ミッション ========== */
.mission{
	position: relative;
	width:90%;
	margin: 60px auto 0;
	overflow: hidden;
	color: #fff;
	 box-sizing: border-box;
}
.mission-text{
	margin: 20px auto 50px;
}
  .marquee-container {
      width: 100%;
      overflow: hidden;
      height: 60px;
      display: flex;
      align-items: center;
      position: relative;
    }

    .marquee-track {
      display: flex;
      animation: scroll-left 20s linear infinite;
      width: max-content;
    }

    .marquee-text {
      font-size: 70px;
      padding: 0 10px;
      white-space: nowrap;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }
.slider-wrapper {
      position: relative;
      width: 90%;
      margin: 50px auto;
      overflow: hidden;
      border-radius: 10px;
    }

    .slider {
      display: flex;
      transition: transform 0.5s ease;
    }

    .slider img {
      width: 100%;
      flex-shrink: 0;
    }

    .nav-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: transparent;
      color: white;
      border: none;
      padding: 0px 10px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 5px;
      z-index: 10;
    }

    .prev-button {
      left: 10px;
    }

    .next-button {
      right: 10px;
    }
/* ========== 会社概要 ========== */
.inner2-text{
	text-align: center;
color: #fff;
}
.inner2-title{
	width: 150px;
	margin: 0px auto 0;
	padding-bottom: 3px;
border-bottom: 1px solid #fff;
}
.copy{
	border-top: #fff solid 1px;
	width: 90%;
	margin: 60px auto 0;
	padding-top: 30px;
	padding-bottom: 120px;
	text-align: center;
	color: #fff;
  font-size: 12px; 
}
/* ========== バナー ========== */
.bnr img{
width: 100%;
padding: 60px 0 0;
}
.bnr a{
  width: 100%;
}
.bnr a:hover{
  opacity: 0.7;
}
/* ========== ロゴ ========== */
.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  font-weight: bold;
  font-size: 20px;
  z-index: 1001;
	width: 5%;
	min-width: 80px;
}
.logo img{
	width: 100%;
}
.inst{
	  position: fixed;
  bottom: 20px;
  left: 100px;
  font-weight: bold;
  font-size: 20px;
  z-index: 1001;
	width: 40px;
	height: 40px;
	min-width: 10px;
	background-color:#6A3A4C;
	padding: 10px;
	border-radius: 50%;
}
.inst img{
	width: 100%;
}

.hover-effect {
  display: inline-block;
  padding: 10px;
  background-color:#6A3A4C;  /* 通常時の色 */
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.hover-effect:hover {
  transform: scale(1.1);               /* 拡大 */
  background-color: #4A2835;           /* ホバー時の色 */
}

.hover-effect-text {
  display: inline-block;
  padding: 10px;
  color:#6A3A4C;  /* 通常時の色 */
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.hover-effect-text:hover {
  transform: scale(1.1);               /* 拡大 */
  color: #4A2835;           /* ホバー時の色 */
}
/* ========== ハンバーガー ========== */
.hamburger {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 24px;
  z-index: 1002;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #333;
  left: 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* 三本線の位置（上・中・下） */
.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

/* アクティブ時（×マーク） */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}


/* ========== オーバーレイ ========== */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.overlay.show {
  display: block;
}

/* ========== モバイルメニュー ========== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background-color: #6A3A4C;
  padding-top: 60px;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  display: block;
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin: 20px;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* ========== サイドメニュー（PC） ========== */
.side-menu{
	margin-top: 40%;
}
.side-menu ul {
	margin-top: 10%;
  list-style: none;
  padding: 0;
	margin: 0;
}

.side-menu li {
  margin: 35px 0;
}

.side-menu a {
  text-decoration: none;
  font-weight: bold;
	color: #6A3A4C;
}

/* ========== レスポンシブ ========== */
@media (max-width: 798px) {
  .sidebar {
    display: none;
	    background-attachment: fixed;
  }

  .container {
    flex-direction: column;
  }

  .content {
    height: 100vh;
    width: 100%;
  }

  .inner-content {
    max-width: 100%;
  }

  .hamburger {
    display: block;
  }
}

/* お問い合わせ */
.contact-form {
    max-width:85%;
    font-family: 'Arial', sans-serif;
    margin: 0 auto;
}
.contact-form form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form h3{
    font-size: 20px;
    line-height: 3rem;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    }
    .contact-form  p{
        font-size: 16px;
        line-height: 2rem;
        margin: 20px 0;
    }
.contact-form ul img{
    width:160px;
    height: 100px;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
  .contact-form {
   padding:100px 0; 
  }
.contact-form form {
    max-width: 100%;
    margin:0 auto;
}

.contact-form  h3{
font-size: 20px;
line-height: normal;
margin-bottom: 10px;
}
.contact-form  p{
    font-size: 14px;
    line-height: normal;
}
}
.contact-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: #6A3A4C;;
  
}

input[type="text"], 
input[type="email"], 
textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #f7f9fc;
}

textarea {
    height: 120px;
}

input[type="submit"] {
    display: block;
    background-color:  #6A3A4C;
    color: white;
    font-size: 18px;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
   opacity: .7;
}

.required {
    display: inline-block;
    background-color: #6A3A4C;
    color: white;
    padding: 2px 6px;
    font-size: 14px;
    border-radius: 4px;
    margin-right: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.example-text {
    font-size: 14px;
    color: #6A3A4C;;
    margin-left: 10px;
}
/* サンクスページ トップページ戻るボタン */
.custom-button {
    background-color: #333; /* 背景色 */
    border: none; /* 枠線をなしに */
    padding: 10px 30px; /* 内側の余白 */
    text-align: center; /* テキストの位置 */
    display: inline-block; /* インライン要素に */
    font-size: 16px; /* フォントサイズ */
    margin: 10px 5px; /* 外側の余白 */
    cursor: pointer; /* カーソルをポインタに */
    border-radius: 12px; /* 角を丸くする */
    transition: background-color 0.3s ease; /* 背景色の変化にアニメーションを追加 */
}
.custom-button  a{
    color: #fff;
    text-decoration: none; /* 下線なし */
}
/* ボタンにホバーしたときのスタイル */
.custom-button:hover {
    background-color: #555; /* 背景色を変える */
}

/* 個人情報保護法 */
.attention_area{
  max-width: 85%;
  margin: 0 auto;
  padding:20px 10px;
}
html{
  scroll-behavior: smooth;
}