@charset "UTF-8";
/** -----------------------------------------------
  共通
------------------------------------------------**/
body {
	font-size: 16px;
	line-height: 1.6;
	color: #464646;
	background-color:#fff; 
	font-family: "hiragino-kaku-gothic-pron" ,"ヒラギノ角ゴ Pro W3", "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-top: 80px;
}

p {
  color: #464646;
}

h1 {
  color: #464646;
}


.section-icon {
  padding-top: 108px;
  display: flex;
  justify-content: center;
}

.section-icon img {
  width: 112px;
} 

.section-title {
  color: #E9775D;
  font-size: 42pt;
  padding-top: 48px;
  text-align: center;
  letter-spacing: 0.05em;
}

.sentence {
  padding-top: 48px;
  padding-bottom: 48px;
  font-size: 20px;
  line-height: 2;
  text-align: center;
}

.highlight {
  color: #E9775D;
}

.storong {
  color: #E9775D;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.05em;
}

.chevron-down {
  display: inline-block;
  vertical-align: middle;
  color: #E9775D;
  line-height: 1;
  width: 1em;
  height: 1em;
  margin-top: 8px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.more {
  padding-top: 108px;
  padding-bottom: 108px;
  display: inline-flex;
  flex-direction: column; /* ←縦並び */
  align-items: center;   /* ←中央揃え */
  text-decoration: none;
  font-size: 14px;
  color: #E9775D;
  transition: all 0.2s;
}

.more:hover {
  opacity: 0.5;
}

/** -----------------------------------------------
  PC :  画面の横幅が641px以上
------------------------------------------------**/
header {
	width: 100%;
  height: 80px;
  padding: 0 2%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;  /* ←追加（これが本体） */
  top: 0;           /* ←画面の上に固定 */
  left: 50%;        /* ←中央寄せ用 */
  transform: translateX(-50%); /* ←中央に調整 */
  box-shadow: 0 2px 8px rgba(233,119,93,0.1);

  background: #f8d6ce; 
  z-index: 1000;
}

.header-inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  display: flex;
	align-items: center;
  transition: all 0.2s;
}

.header_logo:hover {
  opacity: 0.8;
}

nav ul {
  display: flex;
  list-style-type: none;
	justify-content: space-around;
}

nav {
	width: 60%;
}

nav ul li a {
  font-weight: bold;
  text-decoration: none;
  color: #464646;
	transition: all 0.2s;
}

nav ul li a:hover {
  color: #e9775d;
}

.header_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  
  padding: 8px 12px;
  width: 224px;

  text-decoration: none;
  color: #fff;
  font-size: 28px;
  font-weight: bold;

  background: linear-gradient(90deg, #E9775D, #FFD296);
  border-radius: 50px;

  transition: all 0.2s;
}

/* 右の丸アイコン */
/* 白い丸（親） */
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;

  overflow: hidden;
}

.arrow {
  width: 9px;
  height: 9px;
  position: relative;
  transform: translateX(-1px) rotate(45deg);
}

.arrow::before,
.arrow::after {
  content: '';
  position: absolute;
  background: #E9775D;
  border-radius: 2px;
}

.arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
}

.header_btn:hover {
  opacity: 0.8;
}

/** -----------------------------------------------
  PC :  メインビジュアル
------------------------------------------------**/
.mainvisual {
  background-color: #e9775d4D;
}

.mainvisual-container{
  width: 100%;
}

.mainvisual-box {
  width: 85%;
  height: calc( 100vh - 105px );
  position: relative;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  min-height: 672px;
}

.mainvisual-box img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  display: block;
}

.mv-logo-pc {
  position: absolute;
  top: 15%;
  left: 8%;
}
.mv-logo-pc img {
  width: 340px;
  display: block;
}

.mv-logo-p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2em;
  font-size: 36px;
}

.subcopy {
  position: absolute;
  bottom: 15%;
  left: 8%;
  font-size: 56px;
}

.bg {
  background: #fff;
  display: inline-block; 
  padding: 0 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  background: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}

.bg-highlight {
  color: #E9775D;
  background: #fff;
  display: inline-block; 
  padding: 0 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  background: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}

/** -----------------------------------------------
  PC :  コンセプト
------------------------------------------------**/
.concept {
	background-color: #e9775d4D;
  /* 水平：左上、右上、右下、左下 / 垂直：左上、右上、右下、左下 */
  border-radius: 0 0 50% 50% / 0 0 180px 180px;
  text-align: center;
}

.concept-box {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.concept-icon {
  padding-top: 108px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.concept-icon img {
  width: 103px;
}

.concept-box img {
  width: 416px;
  padding-bottom: 80px;
}

h3 {
  font-weight: 400;
  font-size: 36px;
  line-height: 2;
  text-align: center;
}

/** -----------------------------------------------
  PC :  事業内容
------------------------------------------------**/
.service {
	background-color: #fff;
  text-align: center;
}

.service-container {
  max-width: 1120px;   /* ←幅制限 */
  margin: 0 auto;      /* ←中央寄せ */
  display: flex;       /* ←横並びの本体 */
  justify-content: space-between; /* ←均等配置 */
  gap: 40px;
}

.service-box {
  width: 340px;
  text-align: center;
  background-color: #e9775d4d;
  border-radius: 18px;
}

.service-box img {
  width: 254px;
}

h5 {
  font-size: 16pt;
  color: #fff;
  background: #e9775d80;
  display: inline-block; 
  padding: 5px 24px;
  margin-top: 64px;
  margin-bottom: 36px;
  border-radius: 28px;
  letter-spacing: 0.05em;
}

.service-box p {
  padding-top: 12px;
  text-align: left;
  font-size: 12px;
  width: 254px;
  padding-bottom: 48px;
  line-height: 2;
  margin: 0 auto;
}

/** -----------------------------------------------
  PC :  募集職種
------------------------------------------------**/
.occupation {
  margin: 0;
  background-color: #e9775d4D;
  border-radius: 50% 50% 0 0 / 180px 180px 0 0;
  text-align: center;
}

.occupation-container {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 64px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.occupation-box {
  width: 250px;
  height: 320px;
  background-color: #e9775d80;
  border-radius: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.2s;
}

.occupation-box:hover {
  opacity: 0.8;
}

.occupation-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.occupation-box p {
  font-size: 16px;
  line-height: 1.6;
}

.dotted {
  border-top: dotted #E9775D 15px;
  width: 545px;
  margin: 0 auto;
  padding: 80px 0;
}
/** -----------------------------------------------
  PC :  見学会
------------------------------------------------**/
.tour {
	background-color: #e9775d4D;
  text-align: center;
  border-radius: 0 0 50% 50% / 0 0 180px 180px;
}

.tour-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  padding-bottom: 172px;
}

.tour-box img {
  width: 528px;
}

.tour-contents {
  width: 480px;
}

.tour-contents p {
  text-align: left;
  padding-bottom: 42px;
}

.tour_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  
  padding: 8px 12px;
  width: 475px;

  text-decoration: none;
  color: #fff;
  font-size: 28px;
  font-weight: bold;

  background: linear-gradient(90deg, #E9775D, #FFD296);
  border-radius: 50px;

  transition: all 0.2s;
}

.tour_btn:hover {
  opacity: 0.8;
}

/** -----------------------------------------------
  PC :  メンバー紹介
------------------------------------------------**/
.member {
	background-color: #fff;
  width: 100%;
}

/* コンテナ */
.members-container {
  overflow: hidden;
  padding: 80px 0 120px;
  position: relative;
  max-width: none;
  margin: 0 auto;
}

.members-track {
    max-width: 1120px;
    margin: 0 auto;
}

.member-box img {
  width: 300px;
	transform: scale(.8);
	transition: transform .3s;
  opacity: 0.5;
  margin: auto;
  padding-bottom: 20px;

}
.member-box.slick-center img {
	transform: scale(1);
  opacity: 1;
}

.member-box {
  text-align: center;
  align-items: center;
}

.member-box p {
  margin: 0 auto;
}


/* ボタン見た目 */
.buttonnav {
  background: #f5d2c7;
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  z-index: 1;
}

.buttonnav.prev {
	left: 0;
}

.buttonnav.next {
	right: 0;
}

/** -----------------------------------------------
  PC :  ここからサポート
------------------------------------------------**/
.support {
	background-color: #e9775d4D;
  text-align: center;
  border-radius: 50% 50% 50% 50% / 180px 180px 180px 180px;
}

.support-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.support-box {
text-align: center;
}

.support-box img {
  height: 104px;
}

.support-box p {
  padding-top: 32px;
}
/** -----------------------------------------------
  PC :  ここからよくある質問
------------------------------------------------**/
.faq {
	background-color: #fff;
  text-align: center;
}

.faq-container {
  margin: 0 auto;
  max-width: 1120px;
  padding-top: 32px;
  padding-bottom: 108px;
}

.faq-box {
  text-align: left;
  padding-top: 48px;
}

.question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 30px 20px;
}

.q-icon {
  background-color: #e9775d;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.border {
  border-top: solid #464646 1px;
  width: 100%;
}

.answer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 20px 30px;
  background-color: #e9775d4d;
  border-radius: 15px;
}

.a-icon {
  background-color: #fff;
  color: #e9775d;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  min-width: 32px;
}

.text {
  line-height: 2;
}

.answer
.text {
  font-size: 14px;
}

/** -----------------------------------------------
  PC :  ここからメッセージ
------------------------------------------------**/
.message {
	background-color: #e9775d4D;
  border-radius: 50% 50% 0 0 / 180px 180px 0 0;
}

.message h3 {
  color: #e9775d;
}

.space {
  padding-top: 64px;
}

.btn-wrapp {
  text-align: center;
  padding: 64px 0;
}

.message_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  
  padding: 8px 12px;
  width: 224px;

  text-decoration: none;
  color: #fff;
  font-size: 28px;
  font-weight: bold;

  background: linear-gradient(90deg, #E9775D, #FFD296);
  border-radius: 50px;

  transition: all 0.2s;
}

.message_btn:hover {
  opacity: 0.8;
}

/** -----------------------------------------------
  PC :  ここからフッター
------------------------------------------------**/
.footer {
  background-color: #ffffff;
  padding: 16px 0;
}

/* 全体は縦 */
.footer-container {  
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* 上段だけ横並び */
.footer-top {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center; 
}

/* ナビを横並び */
.footer nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_logo img {
  width: 156px;
}

.footer_logo {
  transition: all 0.2s;
}

.footer_logo:hover {
  opacity: 0.8;
}

.copyright {
  text-align: center;
  font-size: 12px;
}


/*ここからメディアクエリで各デバイスサイズに書き分けます。
今回の課題で考慮するのはPCとスマホのみでOKですが、タブレットサイズでのスタイルを書いてもOK！
また、CSSは上から下に継承されるので、変化させたいところだけ書けばOKです*/

@media screen and (max-width:1080px){
  body {
    padding-top: 60px;
  }
  header {
    width: 100%;
    height: 60px;
    margin: 0 auto;
    padding: 0 8%;
  }

  .header_logo img {
    width: 100px;
  }

  .header_btn {
    width: auto;
    font-size: 14px;
    padding: 6px 10px;
  }

  .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;

    overflow: hidden;
  }

  .arrow {
    width: 6px;
    height: 6px;
    position: relative;
    transform: translateX(-1px) rotate(45deg);
  }

  .hamburger {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    height: 2px;
    background: #464646;
    border-radius: 2px;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 15px; 
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sp-nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 60px);
    background: #f8d6ce;
    transition: 0.3s;
    z-index: 1000;
  }

    .sp-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .sp-nav li {
    margin-bottom: 15px;
  }

  .sp-nav a {
    display: block;
    font-size: 16px;
    color: #464646;
  }

  .sp-nav.active {
      right: 0;
    }

  .hamburger {
    width: 30px;
    height: 24px;
    position: relative;
  }

  .hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #333;
    transition: 0.3s;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

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

  .hamburger span:nth-child(3) {
    bottom: 0;
  }

  /* 開いたとき */
  .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);
    bottom: 11px;
  }
}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){
  /** -----------------------------------------------
  SP :  共通
  ------------------------------------------------**/
  .section-icon {
    padding-top: 80px;
    display: flex;
    justify-content: center;
  }

  .section-icon img {
    width: 48px;
  }

  .section-title {
    color: #E9775D;
    font-size: 18pt;
    padding-top: 24px;
    text-align: center;
    letter-spacing: 0.05em;
  }

  .sentence {
    width: 75%;
    padding: 24px 24px;
    font-size: 12px;
    line-height: 2;
    text-align: left;
    margin: 0 auto;
  }

  .storong {
    color: #E9775D;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .sentence br {
    display: none;
  }

  .chevron-down {
  display: inline-block;
  vertical-align: middle;
  color: #E9775D;
  line-height: 1;
  width: 1em;
  height: 1em;
  margin-top: 8px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.more {
  padding-top: 48px;
  padding-bottom: 64px;
  display: inline-flex;
  flex-direction: column; /* ←縦並び */
  align-items: center;   /* ←中央揃え */
  text-decoration: none;
  font-size: 10px;
  color: #E9775D;
  transition: all 0.2s;
}

.more:hover {
  opacity: 0.5;
}

  /** -----------------------------------------------
  SP :  メインビジュアル
  ------------------------------------------------**/
  .mv-logo-pc {
    display: none;
  }

  .mainvisual-box {
    position: relative;
  }

  h1 {
    font-size: 28px;
  }
  .subcopy {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 25px;
    text-align: center;
  }

  .bg {
    display: inline-block; 
    padding: 0 12px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
  }

.bg-highlight {
    color: #E9775D;
    display: inline-block; 
    padding: 0 12px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
  }

  /** -----------------------------------------------
  SP :  コンセプト
  ------------------------------------------------**/
  .concept{
    border-radius: 0 0 50% 50% / 0 0 180px 180px;  
  }
  
  .concept-icon {
    padding-top: 80px;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .concept-icon img {
    width: 60px;
  }
	
  .concept-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
  }

  .concept-box img {
    width: 210px;
    padding-bottom: 0;
  }

  .grand, 
  .mother {
  transform: translateX(-50px);
}

.familly {
  transform: translateX(50px);
}
  
  h3 {
    font-weight: 500;
    font-size: 15px;
    line-height: 2;
    text-align: center;
  }

  /** -----------------------------------------------
  SP :  事業内容
  ------------------------------------------------**/
  .service-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .service-box {
    width: 290px;
    text-align: center;
    background-color: #e9775d4d;
    border-radius: 18px;
}

.service-box img {
    width: 184px;
}

h5 {
    font-size: 14pt;
    color: #fff;
    background: #e9775d80;
    display: inline-block; 
    padding: 5px 12px;
    margin-top: 32px;
    margin-bottom: 18px;
    border-radius: 28px;
    letter-spacing: 0.05em;
}

.service-box p {
    padding-top: 12px;
    padding-bottom: 24px;
    text-align: left;
    font-size: 12px;
    width: 184px;
    line-height: 2;
    margin: 0 auto;
}

  /** -----------------------------------------------
  SP :  募集職種
  ------------------------------------------------**/
  .occupation-container {
    display: flex;
    padding-top: 32px;
    width: 75%;
    flex-wrap: wrap; /* 折り返しを許可 */
    gap: 15px;
  }

  .occupation-box {
    flex: 0 0 calc(50% - 20px);
    width: 80px;
    height: 180px;
  }

  .occupation-icon img {
    width: 56px;
  }

  .occupation-box p {
    font-size: 11px;
    line-height: 1.6;
}

  .dotted {
    border-top: dotted #E9775D 5px;
    width: 290px;
    margin: 0 auto;
    padding: 24px 0;
}

  /** -----------------------------------------------
  SP :  見学会
  ------------------------------------------------**/
  .tour-container {
    flex-direction: column;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    padding-bottom: 128px;
  }

  .tour-box img {
    width: 290px;
  }

  .tour-contents {
    width: 290px;
  }

  .tour-contents p {
    font-size: 12px;
    text-align: left;
    padding-bottom: 24px;
  }

  .tour_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
    padding: 8px 12px;
    width: 295px;

    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;

    background: linear-gradient(90deg, #E9775D, #FFD296);
    border-radius: 50px;

    transition: all 0.2s;
  }

  .tour_btn:hover {
    opacity: 0.8;
  }

  /** -----------------------------------------------
  SP :  メンバー紹介
  ------------------------------------------------**/
  .members-container {
    overflow: hidden;
    padding: 24px 0 64px;
    position: relative;
    max-width: none;
    margin: 0 auto;
  }

  .member-box img {
    width: 250px;
    margin: auto;
  }

  .member-box p {
    padding-bottom: 16px;
  }


  /** -----------------------------------------------
  SP :  サポート
  ------------------------------------------------**/

  .support-container {
    max-width: 100%;
    margin: 0 auto;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }

  .support-box {
    text-align: center;
    display: flex; 
    justify-content: center;
    align-items: center;
    gap: 18px;
  }

  .support-box img {
    height: 40px;
  }

  .support-box p {
    font-size: 14px;
    padding-top: 0px;
  }
  
  /** -----------------------------------------------
  SP :  よくある質問
  ------------------------------------------------**/
    .faq-container {
    margin: 0 auto;
    width: 100%;
    padding: 0 24px 80px 24px;
  }

  .faq-box {
    text-align: left;
    padding-top: 24px;
  }

  .question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 30px 20px;
  }

  .q-icon {
    background-color: #e9775d;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    min-width: 24px;
    font-size: 13px;
  }

  .question
  .text {
    font-size: 12px;
  }

  .border {
    border-top: solid #464646 1px;
    width: 100%;
  }

  .answer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    padding: 20px 30px;
    background-color: #e9775d4d;
    border-radius: 15px;
  }

  .a-icon {
    background-color: #fff;
    color: #e9775d;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 13px;
    min-width: 24px;
  }

  .text {
    line-height: 2;
  }

  .answer
  .text {
    font-size: 10px;
  }

  /** -----------------------------------------------
  SP :  よくある質問
  ------------------------------------------------**/
  .message h3 {
    color: #e9775d;
  }

  .space {
    padding-top: 32px;
  }

  .btn-wrapp {
    text-align: center;
    padding: 24px 0;
  }

  .message_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
    padding: 8px 12px;
    width: 200px;

    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: bold;

    background: linear-gradient(90deg, #E9775D, #FFD296);
    border-radius: 50px;

    transition: all 0.2s;
  }

  .message_btn:hover {
    opacity: 0.8;
  }

  /** -----------------------------------------------
  SP :  フッター
  ------------------------------------------------**/
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;     /* 縦方向中央 */
  }

  .footer-top { 
    flex-direction: column;
  }
  .footer_logo {
    transition: all 0.2s;
  }

  footer nav {
    font-size: 10px;
  }

  .footer nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .footer_logo img {
    width: 128px;
  }

  .footer_logo:hover {
    opacity: 0.8;
  }

  .copyright {
    text-align: center;
    font-size: 8px;
  }

}
