@charset "UTF-8";

/* ==============================================================================
共通設定
=================================================================================*/
* {
    box-sizing: border-box;
    font-size: calc(18/16*1rem); 
    line-height: 1.5;
    margin: 0; /* ページ全体の余白をリセット */
    padding: 0;
}

body {
  background-color: #e5e5e5;
  font-family: "Noto Serif JP", serif;
  background-attachment: fixed;
}

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

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

.main {
  margin-top: 0px;
  z-index: 1;
  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.1em;
    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 p {
    font-size: 16px;
  }
  .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;
  }
}

 /* 画面幅が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.2rem;
  width: 200px; /* ナビゲーションの幅 */
  height: 400px; /* フッターの高さ分を引く */
  color: white;
  margin-top: 155px;
  z-index: 2;
  font-size: 24px;
  }
  
  .fixed-nav ul {
  list-style-type: none; /* リストマーカーを非表示 */
  }
  
  .fixed-nav li {
    padding: 10px 10px 13px 11px; /* 内側の余白 */
    margin-top: 11px;
    padding-bottom: 15px;
  }
  
  .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;
  }
  }
  

/* ==============================================================================
フッター
=================================================================================*/
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;
  }


}


/* ==============================================================================
メンズ
=================================================================================*/
.menstop-top p {
  font-size: 16px;
}


.mens-body {
  background-color: #fff;
  background-image: url(../images/mens-background-imagepsd.jpg);
  background-size: 500px;
  background-repeat: no-repeat;
}
.border {
  padding: 10px;
  border-bottom: 3px solid #333;
  margin-bottom: 70px;
}
.menstop-sec h2 {
  padding: 10px;
  border-bottom: 3px solid #333;
  margin: 0 60px;
}
.menstop-sec {
  padding: 0 30px;
  margin-bottom: 30px;
}
.menstop-top {
  margin: 100px auto;
}
.menstop-top p {
  line-height: 2.5rem;
}
.menstop-list {
  list-style-type: none;
}
.menstop-item {
  margin-bottom: 35px;
}
.menstop-item:last-child {
  margin-bottom: 0;
}
.menstop-seckao {
  width: 300px;
}
.mensmenu-list,
.mensmenu-preitem {
  margin: 0 30px;
}
.mensmenu-item,
.mensmenu-preitem,
.eight,
.ten {
  display: flex;
  justify-content: space-between;
}
.mensmenu-item,
.mensmenu-preitem {
  margin-bottom: 35px;
}
.mensmenu-img {
  width: 35%;
  text-align: center;
}
.mensmenu-img img {
  height: 200px;
}
.mens-price {
  display: flex;
  width: 65%;
  background-color: #d3d3d4;

}
.mensitem-left {
  width: 40%;
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
}
.mensitem-left p {
  font-size: 15px;
}
.mensitem-right {
  width: 70%;
  padding: 10px 0;
}
.price-tag {
  background-color: #fff;
  border: 3px solid #333;
  margin-bottom: 10px;
  text-align: center;
}
.price-tag img {
  height: 70px;
  margin-bottom: -10px;
}
.white-border {
  color: #fff;
  font-weight:bold;
  -webkit-text-stroke: 1px #333;
  padding-top: 10px;
}
.eight {
  border-bottom: 1px dashed #333;
  padding-bottom: 5px;
}
.ten {
  padding-top: 5px;
}
.number {
  width: 4em;
  background-color: #333;
  color: #fff;
  border-radius: 10px;
  text-align: center;
}
.center {
  width: 100%;
  text-align: center;
}
.mini {
  font-size: 15px;
}

.item-ptim {
  background-color: #fff;
  border: 3px solid #333;
}

.tag-ptim {
  background-color: #333;
}

.none-border {
  padding-top: 0;
  -webkit-text-stroke: 0px;
  font-size: 45px;
}

.contact-btn {
  margin: 100px 0;
  text-align: center;
}

.contact-btn a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
  padding: 20px;
  border: 3px solid #333;
  border-radius: 100px;
  width: 300px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .menstop-top p {
    font-size: 24px;
    line-height: 3.5rem;
    padding-left: 18px;
    padding-right: 18px;
    margin: 0 60px;
  }
}

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

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

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

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

.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: 24px;
  margin-top: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  padding-bottom: 35px;
}

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

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

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

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

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


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

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

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

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

  #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;
  }

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

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

  .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;
  }
}



/* ==============================================================================
スマホ設定
=================================================================================*/

@media screen and (max-width: 767px) {
  
  .mensmenu-item,
  .mensmenu-preitem {
    flex-direction: column-reverse;
    margin-bottom: 10px;
  }
  .mensmenu-item {
    background-color: #d3d3d4;
    padding-bottom: 15px;
  }
  .mensmenu-img {
    width: 300px;
    padding: 0 20px;
    margin: 0 auto;
    background-color: #fff;
  }
  .mens-price {
    width: 100%;
  }
  .mensmenu-preitem {
    background-color: #fff;
    border: 3px solid #333;
  }
  .item-ptim {
    border: 0;
  }
}

@media screen and (max-width: 374px) {
  .mensmenu-img {
    padding: 0;
    width: 250px;
  }
  .mensmenu-img img {
    height: 150px;
  }
}
