@charset "UTF-8";
/* CSS Document */

/* ページタイトルエリア */
.title {
  height: 310px;
  background-image: url("../images/concept/bg-main.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 1px 1px 10px #9d7855;
}

.title h1 {
  font-size: 32px;
  font-weight: bold;
}

.title p {
  font-size: 14px;
  margin-top: 15px;
}

/* 画像とテキストを横並びに配置 */
.feature {
  display: flex;
  justify-content: space-between;
  width: 930px;
  max-width: 90%;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
}

.feature img {
  width: 50%;
}

.feature-text {
  max-width: 500px;
  margin-right: 40px;
}

/* 画像とテキストを横並びで逆順に並べる*/
.reverse {
  flex-direction: row-reverse;	
}

.reverse .feature-text {
  margin-left: 40px;
  margin-right: 0;
}

/* 中見出しのスタイル調整*/
.feature-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 30px;
  color: #9d7855;
}

/* 中見出し下短い線 */
 /*.feature-text h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #333;
  margin-top: 20px;
}*/

.feature-text p {
  font-size: 15px;
  line-height: 28px;
  margin-top: 25px;
}

/* 動画エリア */
.stories {
  width: 960px;
  max-width: 90%;
  background-color: #fff;
  padding: 50px 60px;
  margin-top: 55px; /* 動画エリア表示位置 */
  margin-left: auto;
  margin-right: auto;
  border: dashed;
  border-color: #fff4fc;
  border-radius: 25px;
}

.stories h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

.stories h2::after{
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background-color: #9d7855;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}

.stories iframe {
  display: block;
  width: 100%;
  height: 456px;
  margin-top: 30px;
}

.stories p {
  font-size: 18px;
  line-height: 36px;
  margin-top: 20px;
}

/* フッターの上部に余白 */
.footer {
  margin-top: 0px;	
}


/* リンクボタン */
.link-button-area {
  text-align: center;
  margin-top: 30px;
}

/* リンクボタンの色 */
.link-button {
  background-color: #FF96C6;
  display: inline-block;
  min-width: 100%;
  line-height: 60px;
  border-radius: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
	color: #fff;
}

/* リンクボタンマウスオン */
.link-button:hover {
  background-color: #ffd0e6;
}

/* フローティングメニュー */

.floating-nav {
  position: fixed;
  width: 50px;
  right: 0;
  top: 10%;
  cursor: pointer;
}

.language-dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffd0e6;
  overflow: hidden;
  padding: 0;
  margin: 0px;
  list-style: none;
  width: 150px;
  display: none;
  z-index: 999;
}

.language-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 5px 20px;
  color: white;
  text-align: center;
  border-bottom: 1px dashed white;
  cursor: pointer;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li:hover {
  background-color: #FF96C6;
  color: white;
}

.dropdown-menu li.active {
  background-color: #FF69AE;
  font-weight: bold;
  color: white;
}
.dropdown-toggle i {
  margin-right: 5px;
}

/* 右固定の縦配置パネル */
.side-buttons {
  position: fixed;
  left: 20px;
  top: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
  
  /* 最初は非表示 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* 表示する状態 */
.side-buttons.visible {
  opacity: 1;
  pointer-events: auto;
}

/* 上部の申請ボタン */
.action-button {
    background-image: linear-gradient(45deg, #ff804b, #FF596A);
    border-radius: 30px;
    text-align: center;
    padding: 18px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    writing-mode: vertical-rl;
    font-size: 20px;
    line-height: 1.2;
}

.action-button img {
  width: 40px;
  height: auto;
  margin-bottom: 5px;
}

/* ハートアイコン（白） */
.heart-icon {
  color: #ffd0e6;
  border-radius: 50%;
  font-size: 18px;
}

/* SNSアイコン群 */
.sns-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.sns-icons a {
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
}

.sns-icons a:hover {
  background-color: #9d7855;
  color: white;
}


/* ニュースリスト */
.blog-list {
  max-width: 800px;
  margin: 0px auto;
  font-family: "Zen Maru Gothic", sans-serif;
}

.blog-card {
  display: flex;
  border-top: 1px solid #ffd0e6; /* ピンクの線 */
  padding: 20px 0;
}

.blog-card:first-child {
  border-top: none; /* 最初は線なし */
}

.blog-thumb {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 1px solid #ffd0e6;
  margin-right: 20px;
}

.blog-content {
  flex: 1;
}

.blog-title {
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

.blog-meta {
  font-size: 14px;
  color: #ffd0e6;
  margin: 5px 0;
}

.blog-excerpt {
  margin: 10px 0;
  font-size: 15px;
}

.read-more {
  display: inline-block;
  padding: 6px 16px;
  background-color: #9d7855;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
}

/* SNSボタンをPCでは非表示 */
.sns-buttons {
  display: none;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.sns-buttons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #9d7855;   /* 枠線 */
  background: #fff;         /* 背景色 */
  font-size: 20px;          /* アイコンサイズ */
  color: #9d7855;
}

/* interview */
.interview {
    background: #0a0a0a;
}

.interview {
    max-width: 800px;
    margin: 0 auto;
}

.interview {
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-left: 4px solid #ff4444;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.interview:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.2);
}

.interview {
    color: #ff4444;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.interview {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.interview {
    color: #ccc;
    line-height: 1.6;
}

/* list3 */
.list3 {
  padding: 0px;
  text-align: center;
}
.list3-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 25px;
}
.list3 {
  flex: 1 1 250px;
  background: #fff;
}
.list3 i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #e91e63;
}

.list3 h4 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.333;
  text-align: center;
  display: inline-block;
  margin: auto;
  position: relative;
}

.list3 h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  display: inline-block;
  margin: auto;
  position: relative;
  padding: 8px 0px;
}

.list3 p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  display: inline-block;
  margin: auto;
  position: relative;
}

.sns-btn4 {
display: flex;
margin: 8px 0px;
}

.sns-btn4 li {
width: 100px;
margin-left: 10px;
margin-right: 10px;
}

/* 動画エリア */
.movie {
  width: 930px;
  max-width: 90%;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
}

.movie h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.movie h2::after{
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #333;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.movie iframe {
  display: block;
  width: 100%;
  height: 456px;
  margin-top: 30px;
}

.movie p {
  font-size: 15px;
  line-height: 28px;
  margin-top: 20px;
}
/* スマホ */
@media (max-width: 800px) {
.feature {
  display: block;
  width: 500px;
  margin-top: 45px;
}
.feature-text {
  margin-right: 0;
}
.reverse .feature-text {
  margin-left: 0;
}
.feature img {
  width: 100%;
  height: auto;
  margin-top: 25px;
}
/* 上部の申請ボタン */
.action-button {
    display: none;
}

/* SNSアイコン群 */
.sns-icons {
  display: none;
}

.sns-buttons {
    display: flex;
  }	
	
	.movie {
  width: 100%;
}
.movie iframe {
  height: 240px;		
}
	
}
