@charset "UTF-8";

/* ==============================================================================
共通設定
=================================================================================*/
* {
    box-sizing: border-box;
    line-height: 1.5;
    margin: 0; /* ページ全体の余白をリセット */
    padding: 0;
}

body {
  background-image: url(../images/renga.jpg);
  font-family: "Noto Serif JP", serif;
  background-attachment: fixed;
  background-size: 100% auto; /* 幅を300px、高さは自動調整 */
  background-repeat: no-repeat; /* 繰り返しを無効化 */
  background-position: center;
  min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;    /* アスペクト比を維持 */
}

.main,footer {
  max-width: 767px;
  margin: auto;
  background-color: #fff;
}

.main {
  margin-top: 0px;
  z-index: 1;
  background-color: #ede2e0;
  padding-bottom: 70px;
  box-shadow: 0 0 11px rgba(0,0,0,.2);
}

/* アニメーションの初期設定 */
/* アニメーション */
@keyframes slideUp {
  0% {
    transform: translateY(50px); /* 下から開始 */
    opacity: 0; /* 非表示 */
  }
  
  100% {
    transform: translateY(0); /* 元の位置 */
    opacity: 1; /* 完全に表示 */
  }
}

.slide-up.in-view {
  animation: slideUp 1s ease-in-out forwards; /* アニメーション適用 */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Adjust this value as needed */
}




/* ==============================================================================
ヘッダー
=================================================================================*/

  
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.0em;
  background: none;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
}


.logotype {
  position: fixed;
  top: 20px;
  left: 1.4em;
  color: #333;
  z-index: 1001;
}

nav {
  display: flex;
  align-items: center;
}


.menu__box {
  display: flex;
  flex-direction: row;
  list-style-type: none;
}

  .menu__box {
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: -600px 0 0 0;
    padding: 0.6em 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.99);
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 3;
    opacity: 0.9;
  }

  .menu__box li {
    z-index: 1000 !important; 
  }



.menu__item {
  display: flex;
  flex-direction: column;
  padding: 0 1em 0 1.9em;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.menu__box li:first-child .menu__item {
  margin-top: 80px;
}


  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #5854a8;
    font-size: 20px;
    font-weight: 600;
    transition-duration: 0.5s;
    border: 2px solid #5854a8; /* 四角い枠線 */
    padding: 10px; /* 内側の余白 */
    margin-top: 10px;
    margin-left: 90px;
    margin-right: 90px;
    border-radius: 10px; /* 四隅を少し丸くする（任意） */
  }

  .menu__item:hover {
    background-color: #5854a8;
    color: #fff;
  }

#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  background: #5854a8;
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background: #5854a8;
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
  margin: 0;
}

.menu__btn {
  position: fixed;
  top: 20px;
  right: 1.4em;
  transition-duration: 0.25s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1002;
  margin-right: 15px;
  margin-top: 8px;
}


.menu__btn span {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #5854a8;
  z-index: 3;
}
.menu__btn span::before {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #5854a8;
  content: "";
  top: -12px;
  transition-duration: 0.25s;
  z-index: 3;
}
.menu__btn span::after {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #5854a8;
  content: "";
  top: 12px;
  transition-duration: 0.25s;
  z-index: 3;
}

 .leftmenu-box {
  list-style-type: none;
 }

 .logo-sp{
  width: 50px;
  display: none;
 }

 .logo-pc{
  width: auto;
  height: 50px;
 }

/* topボタン */
.top-btn {
  position: fixed;
  bottom: 20px;
  right: 300px;
  z-index: 2;
  }
  @media screen and (max-width: 1200px) {
  .top-btn {
    right: 30px;
  }
  }
  /* 右側に固定するナビゲーション */
  .sns-box {
  width: 200px;
  display: block;
  position: fixed;
  bottom: 20px;
  right: 1.4em;
  z-index: 2;
  }
  .follwus {
  width: 150px;
  margin: 0 25px;
  }
  .snsbox-top {
  margin-bottom: 50px;
  }
  .snsbox-top img {
  height: 42px;
  }
  .copy-link-button {
    background-color: transparent;
  }
  .bgc-rgba {
  background-color: rgba(88, 66, 168, 0.6);
  padding: 20px;
  }
  .bgc-rgba li {
  margin: 0 20px;
  }
  .snsbox-list {
  display: flex;
  list-style-type: none;
  justify-content: space-between;
  }
  .snsbox-line {
  text-align: center;
  }
  .snsbox-line p {
  color: #fff;
  margin: 10px 0;
  }
  .snsbox-item {
  margin: 10px;
  }
  .snsbox-img {
  width: auto;
  height: 40px;
  }
  .boxline-img{
  width: 100%;
  }
  

/* 画面幅1200px未満の場合非表示にする */
@media screen and (max-width: 1200px) {

.sns-box {
  display: none;
}


}

 /* 画面幅が900px未満の場合に非表示にする */
 @media screen and (max-width: 900px) {
  .fixed-nav {
    display: none; /* 非表示 */
  }
  .logo-sp {
    display: block;
  }
  .logo-pc {
    display: none;
  }
  }
  
  /* 左側に固定するナビゲーション */
  .fixed-nav {
  position: fixed; /* 固定位置 */
  top: 0; /* 上端に配置 */
  left: 0; /* 左端に配置 */
  padding-left: 1.4rem;
  width: 200px; /* ナビゲーションの幅 */
  height: 400px; /* フッターの高さ分を引く */
  color: white;
  margin-top: 150px;
  z-index: 2;
  font-size: 24px;
  }
  
  .fixed-nav ul {
  list-style-type: none; /* リストマーカーを非表示 */
  }
  
  .fixed-nav li {
  padding: 15px; /* 四角い枠線 */
  padding: 10px; /* 内側の余白 */
  margin-top: 10px;
  border-radius: 5px; /* 四隅を少し丸くする（任意） */
  }
  
  .fixed-nav a {
  text-decoration: none; /* 下線を削除 */
  color: #333;
  font-size: 20px;
  font-weight: 500;
  }
  
  .fixed-nav a:hover {
  color: #7b00f5; /* ホバー時の色変更 */
  }
  
  /* メインコンテンツ */
  .main-content {
  margin-left: 200px; /* ナビゲーションの幅分だけ余白を確保 */
  padding: 20px;
  }
  
  
  @media screen and (min-width: 768px) {
  .menu__item {
    margin-left: 200px;
    margin-right: 200px;
    font-size: 25px;
  }
  .main {
    margin-top: 50px; 
    border-radius: 30px 30px 0 0;
    overflow: hidden;
  }
  }
  

/* ==============================================================================
エステ
=================================================================================*/

.esute-img-btn:hover {
  opacity: 0.6;
}

details {
  overflow: hidden;
  margin-top: -10px;
}

.yyoyaku-p {
  font-size: 15px;
  margin-top: 20px;
}

.kankaku {
  padding-top: 10px;
}


/* すべてのブラウザ向け */
details > summary {
  list-style: none; /* デフォルト矢印を非表示 */
}

/* Safari（iOS含む）向け */
details > summary::-webkit-details-marker {
  display: none; /* Safari特有の矢印を非表示 */
}

.flex-item,
.facial-item,
.body-item {

    border-radius: 17px;
    margin-bottom: 40px;
    padding: 20px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.facial-list,
.body-list {
    text-align: center;
}

.sec-top{
    margin-top: 300px;
}

.esute-img {
text-align: center;
}

.esute-img-png {
  margin-top: -40px;
  width: 800px;
}

.image-title a {
  text-decoration: none;
}

.menu-title:hover {
  background-color: #fff;
  color: #a69fcc;
}

.esute-muryo-btn {
  position: absolute;
  z-index: 2; /* 他の要素より前面に表示 */
  transform: translateX(-50%); /* 完全に中央揃え */
  left: 50%; /* 左端から中央へ配置 */
  margin-top: -100px;
  width: 330px;
  padding: 50px 50px;
}

.esute-midasi {
  text-align: center;
  border: solid 1px #cc9966;
  padding: 20px 30px 30px 30px;
  margin: 50px 30px;
  border-radius: 10px;
  background-color: #fff;
}

.esute-midasi h2 {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 40px;
}

.esute-setumei {
  text-align: left;
  font-size: 14px;
  text-align: justify;
  word-break: break-all;
  text-justify: inter-character;
  word-wrap: break-word;
  overflow-wrap: break-word;
} 

.yyoyaku-title {
  background-color: #cc9966;
  color: #fff;
  padding: 5px 20px;
  border-radius: 30px;
} 

.yyoyaku-btn {
  padding-top: 35px;
  padding-bottom: 20px;
}

.menu-title {
  background-color: #a69fcc;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
}

/* メニューコンテナ */
.image-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.menu-icon
{
  width: 100px;
}

.logo-f {
  text-align: center;
  margin-top: -20px;
}

.logo-f img {
  width: 140px;
}


@media screen and (min-width: 768px) {
  .esute-muryo-btn {
    transform: translateX(-50%); /* 完全に中央揃え */
    left: 52%; /* 左端から中央へ配置 */
    margin-top: -140px;
    width: 550px;
    padding: 50px 50px;
  }

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

  .image-container {
    grid-template-columns: repeat(4, 1fr);
    padding: 20px 0 20px 0;
    gap: 10px;
    margin-bottom: 80px;
    margin-top: 30px;
  }

  .menu-icon{
  width: 350px;
}

  .menu-title {
  font-size: 16px;
}

  .esute-midasi h2 {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 40px;
}

  .esute-setumei {
  font-size: 18px;
}
  .yyoyaku-title {
  font-size: 18px;
  padding: 10px 20px;
  margin-bottom: 50px;
}

  .esute-midasi{
    margin-left: 100px;
    margin-right: 100px;
  }


}

/* ==============================================================================
フェイシャルメニュー
=================================================================================*/

.facial-flow {
  margin: 0 20px 0 20px;
  text-align: center;
}

.facial-flow-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}


.last-item {
  margin: 10px 20px 0  20px;
  background-color: #fff;
  padding-bottom: 20px;
}

.menu-item {
  margin: 10px 20px 30px  20px;
  background-color: #fff;
  padding-bottom: 20px;
}

.f-menu-title {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: normal;
  background-color: #d3c2af;
  padding: 5px 20px;
  font-weight: 500;
}

.menu-description {
  line-height: 1.8;
}

.menu-description p {
  font-size: 16px;
  padding: 0 20px;
  text-align: justify;
}

.menu-price {
  text-align: right;
  font-size: 18px;
  color: #A69B8D;
  border-bottom: 1px dotted #333;
  margin-top: -3px;
}

.keisen {
  padding-left: 10px;
  padding-right: 10px;
}

.note{
  text-align: left;
}


.facial-menu h3 {
  font-size: 18px;
  text-align: center;
  font-weight: 400;
}

.m-menu-price {
  text-align: right;
  font-size: 18px;
  color: #a67c52;
  border-bottom: 1px dotted #333;
  margin-top: -5px;
}

.m-menu-title {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: normal;
  background-color: #cc9966;
  padding: 5px 20px;
  font-weight: 500;
}


.main-grid {
  margin-bottom: 50px;
}

.facial-p {
  text-align: right;
  font-size: 12px;
}

.gel-title {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  margin-top: 25px;
  z-index:21;
  font-weight: 600;
}

.underline-text {
  position: relative;
  display: inline-block;
}

.underline-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 3px;
  background-color: rgba(204, 51, 255, 0.5);
  z-index: 0;
}


.gel-setumei {
  text-align: left;
  font-size: 12px;
  margin-top: 2px;
} 


.pricing-item {
  max-width: 600px; /* コンテナの最大幅 */
  text-align: center; /* テキストを中央揃え */
  font-family: 'Noto Sans JP', sans-serif; /* フォント設定 */
  margin-top: 20px;
}

/* 金額部分のボックス（背景白） */
.price-box {
  background-color: #fff; /* 背景色を白に設定 */
  padding: 15px 10px; /* 内側余白を追加 */
  width: 120px;
  padding-left: 40px;
}

.okaotobody {
  font-size: 16px;
  margin-bottom: 10px;
  background-color: #cc9999;
  font-weight: 500;
}

.okaoto-t {
  color: #a67c52;
}


.price-yen {
  font-size: 24px;
  color: #a67c52; /* ゴールド系の色 */
  font-weight: 200;
}

#soushinlink {
  margin-left: 5%;
  margin-right: 5%;
}

#soushinlink h3 {
  text-align: left;
}

.seibishin-box {
  margin-left: 5%;
  margin-right: 5%;
}

.seibishin-box h3 {
  text-align: left;
}




@media screen and (min-width: 768px) {

  .flow1 {
    width: 550px;
  }

  .facial-flow-title{
    font-size: 24px;
    font-weight: 400;
  }

  .facial-flow {
    margin-left: 100px;
    margin-right: 100px;
  }

  .gel-title {
    font-size: 18px;
  }

  .gel-setumei {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .facial-p {
    font-size: 16px;
  }

  .main-grid {
    margin: 40px 80px 0 80px;
  }

  .m-menu-title,.f-menu-title {
    font-size: 24px;
    padding: 15px 20px;
    font-weight: 400;
  } 

  .menu-description p {
    font-size: 18px;
    padding-top: 15px;
  }

  .m-menu-price,.menu-price {
    font-size: 24px;
  }

  .menu-item {
    padding-bottom: 40px;
    margin-bottom: 50px;
  }

  .facial-menu {
    margin-left: 80px;
    margin-right: 80px;
  }

  .facial-menu h3 {
    font-size: 24px;
  }

  .item-name{
    padding-left: 10px;
  }

  .price {
    padding-right: 10px;
  }
  
}


/* ==============================================================================
美肌メニュー
=================================================================================*/

.bihada-title {
  font-size: 18px;
  margin-top: -10px;
}

.bihada-img {
  width: 150px;
}
.bihada {
  text-align: center;
  margin: 0 20px 0 20px;
  margin-top: -15px;
}

.bihada-underline-text {
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-align: left;
}

.bihada-underline-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background-color: rgba(204, 51, 255, 0.5);
  z-index: 0;
}


.bihada-setumei {
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 30px;
} 

.bihada-titile-flow {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.pricing-table {
  max-width: 600px;
  background-color: #fff;
  text-align: center;
  margin: 15px 20px; /* 水平方向の中央揃え */
  text-align: center; /* テキストを中央揃え */
}


.pricing-table ul {
  list-style: none;
  padding: 0;
}

.pricing-table li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #aaa; /* 点線 */
  padding: 15px 0 0 0;
  font-weight: 500;
}

.item-name {
  font-size: 15px;
}

.price {
  font-size: 15px;
  color: #b08c5a; /* ゴールド系の色 */
}

.yen {
  font-size: 15px; /* 円マークのサイズを調整 */
}

/* 注意書きのスタイル */
.note {
  margin-top: 20px;
  padding: 15px;
  background-color: #d9c7ad; /* ベージュ背景色 */
  font-size: 13px;
  margin-bottom: 30px;
}

.kihon {
  color: #333;
  font-size: 12px;
}

.kihon-grid {
  text-align: center;
  margin-left: 5%;
  margin-right: 5%;
}

.dd {
  font-size: 15px;
  color: #fff; /* テキスト色（黒） */
  font-weight: 400;
  text-align: left;
  margin: 0;
  width: 150px;
}

.last-item {
  margin: 0;
}

.price-2 {
  font-size: 15px;
  border-bottom: 2px dashed #333; /* 点線 */
  padding-left: 5%;
  font-weight: 400;
  width: 120px;
}

.ff {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 15px;
  list-style-type: none;
}


.item-box {
  display: flex; /* 横並びにする */
  justify-content: space-between; /* 項目名と価格を左右に配置 */
  align-items: center; /* 縦方向で中央揃え */
  background-color: #cc9999; 
  border-bottom: 5px solid #a67c52; /* 下線を追加（ブラウン） */
  margin-bottom: 10px;
  text-align: center;
  max-height: 150px;
  padding-left: 4%;
}

.pricing-item {
  list-style: none;
}

.price-box {
  padding: 5% 5%;
}



.yen2 {
  color: #b08c5a; /* ゴールド系の色 */
  font-size: 15px;
  font-weight: 400;
}

.body-menu {
  text-align: center;
}



.size-doun {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .bihada-underline-text {
    font-size: 24px;
  }

  .bihada-setumei {
    font-size: 18px;
    margin-bottom: 45px;
    margin-top: 10px;
  }

  .bihada-titile-flow {
    font-size: 24px;
    margin-top: 10px;
    font-weight: 400;
  }

  .flow2 {
    width: 550px;
  }

  .bihada-img {
    width: 300px;
  }

  .item-name {
    font-size: 20px;
  }
  
  .price {
    font-size: 20px;
  }
  
  .yen {
    font-size: 20px; /* 円マークのサイズを調整 */
  }

  .note {
    font-size: 16px;
  }

  .pricing-table {
    margin-top: 30px;
    margin-bottom: 50px;
  }

.kihon-grid {
  margin-left: 11%;
}

.dd {
  width: 250px;
  font-size: 24px;
}

.price-2box {
  width: 250px;
}

.price-2 {
  font-size: 24px;
}

.ff {
  margin-top: 25px;
  margin-bottom: 80px;
}

.ff img {
  width: 650px;
  margin-right: 25%;
  margin-left: -3%;
}



}


/* ==============================================================================
ボディー/痩身メニュー
=================================================================================*/


.seibishin {
  margin-top: 50px;
}

.seibi-t {
  margin-top: 20px;
}

.body-menu-setumei {
  text-align: center;
  font-size: 14px;
  margin: -7px 30px 30px 30px;
}
.f-menu-title {
  text-align: left;
}

.soushin-setumei {
  margin-top: -20px;
  font-size: 14px;
  text-align: left;
  margin-left: 35%;
}

.soushin {
  text-align: center;
}

.size-doun {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.size-box {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 35px;
}



@media screen and (min-width: 768px) {
  .body-menu-setumei {
    font-size: 18px
  }
  .soushin-setumei {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .bihada-img{
    margin-top: 45px;
  }

  .size-doun {
    font-size: 24px;
    margin-top: 10px;
    font-weight: 400;
  }

  .size-img {
    width: 550px;
    margin-bottom: 25px;
  }

  .bubun-item {
    margin-bottom: 90px;
  }
}

/* ==============================================================================
コンタクト
=================================================================================*/
#contact {
  text-align: center;
  background-color: #ede2e0;
  border-radius: 180px 180px 0 0px;
  margin-top: 100px;
}

.no-decoration {
  color: inherit; /* 親要素の色を継承 */
  font-size: 28px;
  margin-top: 30px;
}

.yyoyaku-btn  a{
  text-decoration-line: none; /* 下線なし */
}

.otoi-btn a {
  text-decoration-line: none; /* 下線なし */
}


#contact img {
  margin-top: 35px;
  width: 200px;
  margin-bottom: -20px;
}

 .yyoyaku-btn {
  margin-top: 20px;
}

.yyoyaku-title {
  background-color: #cc9966;
  color: #fff;
  padding: 15px 50px;
  border-radius: 15px;
  font-size: 16px;
} 

.otoi-btn {
  margin-top: 50px;
}

.otoi-title {
  background-color: #cc9966;
  color: #fff;
  padding: 15px 40px;
  border-radius: 15px;
} 

.contact-setumei {
  font-size: 18px;
  margin-top: 20px;
  color: #333;
  font-weight: bold;
  padding-bottom: 10px;
}

.tel {
  font-size: 20px;
  margin-top: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  padding-bottom: 35px;
}

.no-decoration {
  color: inherit; /* 親要素の色を継承 */
}

.contact-setumeippp {
  font-size: 16px;
  padding-left: 30px;
  padding-right: 30px;
}

#contact .contactfonts {
  margin-top: -100px; /* 上下左右に20pxはみ出す */
  width: 160px;
  height: auto;
}


.yyoyaku-title:hover {
  background-color: #D6BFAB;
}

.otoi-title:hover {
  background-color: #D6BFAB;
}

@media screen and (min-width: 768px) {
  #contact {
    margin-top: 200px;
    border-radius: 400px 400px 0 0px;
  }

  #contact .contactfonts {
    width: 250px;
    margin-top: -40px; /* 上下左右に20pxはみ出す */
  }

  .contact-setumei {
    margin-top: 30px;
    font-size: 24px;
  }

  .contact-setumeippp {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;  
  }

  .yyoyaku-title,.otoi-title {
    font-size: 24px;
  }

  .no-decoration {
    font-size: 36px;
  }


  .yyoyaku-title {
    padding-left: 80px;
    padding-right: 80px;
  }

  .otoi-title {
    padding-left: 70px;
    padding-right: 70px;
  }

  .yyoyaku-btn,.otoi-btn {
    padding-bottom: 15px;
  }

  .tel {
    padding-bottom: 30px;
    font-size: 36px;
  }

  .ohana-flow {
    width: 160px;
  }
}



/* ==============================================================================
フッター
=================================================================================*/
footer {
  background-color: rgba(88, 66, 168, 0);
}
.footer {
  background-color: rgba(88, 66, 168, 0.6);
  color: #fff;
  padding: 30px;
}
.footer-name,
.footer-address {
  margin-bottom: 30px;
}
.footer-name p,
.footer-address p,
.footer-time p {
  font-size: 13px;
}

.footer-logo {
  display: flex;
  justify-content: space-between;
}
.ftlogo-list {
  margin-top: auto;
}
.ftlogo-list img {
  height: 35px;
  margin-right: 10px;
}
.ftlogo-logo img {
  margin-bottom: -10px;
  width: 65px;
}
.small {
  text-align: center;
  padding: 10px 0;
}
small {
  font-size: 13px;
  color: #5845a8;
}

.ftlogo-list .line-big {
  margin-bottom: -5px;
  height: 50px;
}


@media screen and (max-width: 424px) {
  .ftlogo-list {
    margin-top: 20px;
  }
  .inst-big {
    margin-bottom: 25px;
  }
  .ftlogo-list .line-big {
    margin-bottom: 20px;
  }
  .ftlogo-logo {
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .ftlogo-list img {
    margin-right: 20px;
    height: 40px;
  }


}

/* 2025/3 追加修正 */
.option-menu {
  margin: 100px 5%;
}

.option-menu span {
  display: inline-block;
  margin-right: 1em;
  font-size: 0.7em;
}

.option-menu .f-menu-title {
  background: #d6b2d2;;
}
