@charset "utf-8";

/* ------------大きいレイアウト----------- */

html {
  font-size: 12px;
}

@font-face { 
  /* ① ここにfont-familyで指定したい名前を書く*/
  font-family: "アームドレモン"; 

  /* フォントが置かれているパスを書く */ 
  src: url("/css/font/ArmedLemon.TTF") format("truetype") }


body {
  font-family:  "Kosugi Maru", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  background: #fadbe1;
  background-image: url(../image/body-po.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-attachment: fixed;

}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

p {
  color:  #ec7986;
}

ul li {
  list-style: none;
}

h1 {
  color: #ec7986;
  text-align: center;
  margin: 3rem 20% 5rem 20%;
  padding-bottom: 10px;
  border-bottom: 3px dashed #fff;
  font-family: "アームドレモン", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
}

h2 {
  text-align: start;
  margin: 0 0 2rem 10rem;
  color: #ec7986;
}

main {
  text-align: center;
}

.contents {
  margin-bottom: 50px;
}

.flex {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.target {
  opacity : 0;
  transform: translateY(40px);
  transition: all 1s;
}
.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* ------------大きいレイアウトここまで----------- */

/* ------------ヘッダー---------- */


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

header nav ul {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

header nav ul li {
  list-style: none;
}

header nav ul li a {
  color: #fff;
}

.pc-menu {
  display: none;
}

/* *ハンバーガーメニュー*/ 

ul.phone-menu {
  display: flex;
  padding-top: 4rem;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background: rgba(250,220,226,0.95);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s linear;
  gap: 3rem;
}

.phone-menu li a {
  font-family: "アームドレモン", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  font-size: 24px;
  border-bottom: 3px dotted #a3b6de;
}

ul.phone-menu.is-active {
pointer-events: auto;
opacity: 1;
}

:root {
  --hamburger-menu-size: 40px; /* メニューの大きさ */
  --hamburger-menu-padding: 18px;
  --hamburger-menu-border-px: 3px; /* 線の太さ */
  --hamburger-menu-border-color: #a3b6de; /* 線の色 */
  --hamburger-menu-transition: 0.3s; /* アニメーション秒数 */
}
  .hamburger-menu {
    display: inline-block;
    cursor: pointer;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
    width: 80px;/*ハンバーガーの高さ*/
    height: 65px;/*ハンバーガーの幅*/
  }
  .btm-menu {
    position: absolute;
    font-size: 1.5rem;
    bottom: -10px;
    padding-left: 20px;
    width: 100%;
  }
  .hamburger-menu-line {
    position: absolute;
    transition: var(--hamburger-menu-transition);
    width: calc(100% - var(--hamburger-menu-padding) * 2);
    height: var(--hamburger-menu-border-px);
    background-color: var(--hamburger-menu-border-color);
  }
  .line-top {
    top: var(--hamburger-menu-padding);
    left: var(--hamburger-menu-padding);
  }
  .line-middle {
    top: calc(50% - var(--hamburger-menu-border-px)/2);
    left: var(--hamburger-menu-padding);
  }
  .line-bottom {
    bottom: var(--hamburger-menu-padding);
    left: var(--hamburger-menu-padding);
  }
  .hamburger-menu-active > .line-top {
    top: calc(50% - var(--hamburger-menu-border-px)/2);
    transform: rotate(45deg);
  }
  .hamburger-menu-active > .line-middle {
    width: 0;
    height: 0;
    left: var(--hamburger-menu-padding);
  }
  .hamburger-menu-active > .line-bottom {
    top: calc(50% - var(--hamburger-menu-border-px)/2);
    transform: rotate(-45deg);

  }
  
  /* ハンバーガーメニューここまで */

/* ------------ヘッダーここまで---------- */

/* トップページ */

.top {
  margin-bottom: 10rem;
}

.info {
  margin-bottom: 10rem;
  text-align: center;
}

.twitter {
margin: 0 5rem;
}

/* アバウト */

.about-box ul {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin: 0 20% 20px 20%;
}

.about-box img {
  max-width: 300px;
  margin-bottom: 20px;
}

.ouen {
  border-radius: 20%;
  text-align: center;
}

.ouen li p {
  margin-top: 0.5rem;
}

/* ワーク */

/* スマホ時の設定 */

@media screen and (max-width: 700px) {
  .lum-img {
    max-width: 100vw !important;/* スワイプ範囲含む横幅調整 */
    max-height: auto !important;/* 上下余白調整 */
  }
}

/* スマホ時の設定ここまで */

.workflex {
  display: flex;
  justify-content: left;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 20% 8rem 20%;
}

.workflex li {
  width: calc((100% - 20px) / 3); 
}

.workflex li a img {
  border: 3px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

/* オリジナル　トップ */
.topflex {
  display: flex;
  flex-direction: column;
  margin: 10px 20%;
}

.topflex li {
  margin-bottom: 20px;
}

.topflex li a img {
  border: 3px solid #fff;
}

/* ショップ */

.shopflex {
  display: flex;
  justify-content: left;
  margin: 2rem 10% 5rem 10%;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.shopflex li {
  width: calc((100% - 4rem) / 3); 
}

.shopflex li a img {
  border: 3px solid #fff;
  width: 100%;
  height: 100%;
}

.shop ul li a {
  color: #000;
}

.link {
  font-size: 10px;
  color: #ec7986;
  border-bottom: 1px solid #fff;
}

/* コンタクト */

.mail-text {
  text-align: center;
  margin: 2rem 0;
}

#contact {
  margin-bottom: 10rem;
  color: #ec7986;
}

#contact dl {
	margin: 1rem 0;
}
#contact dt {
  margin-bottom: 0.5rem;
}

#contact dd{
	margin: 0 0 1rem 0;
}
#contact input,
#contact textarea {
	border: 1px solid #ec7986;
  color: #ec7986;
}


/* ------------フッター---------- */

.poppo {
  text-align: center;
}

footer {
  background: #a3b6de;
  padding: 2rem 1rem;
  margin-top: 10rem;
}

footer p {
  color: #fff;
}

.footer-text {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-text2 {
  text-align: right;
}

.copylight {
  margin-top: 2rem;
  font-style: italic;
}

/* ------------フッターここまで---------- */


/* --------ここからタブレットのレイアウト-------- */

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

  html {
    font-size: 14px;
  }

  .about-box ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 10% 10px 10%;
    gap: 20px;
  }

  .about-box ul li  {
    text-align: start;
  }

  .ouen p {
    font-size: 12px;
  }

    /* ショップ */

  .shopflex {
  margin: 2rem 20% 5rem 20%;
  }

  .link {
    font-size: 16px;
  }


/* --------タブレットのレイアウトここまで-------- */

/* --------ここからPCのレイアウト-------- */

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

  html {
    font-size: 16px;
  }

  h2 {
    margin: 0 0 2rem 15rem;
  }

  .hamburger-menu {
    display: none;
  }

  .pc-menu {
    display: flex;
    background-color: #a3b6de;
    padding: 20px 20%;
  }

  .pc-menu li {
    color: #fff;
  }

  .pc-menu li a{
    font-family: "アームドレモン", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
    font-size: 24px;
  }

  .pc-menu li a:hover {
    position: relative;
    bottom: 2px;
    right: 2px;
  }

  /* トップページ */

  .top {
    margin-bottom: 50px;
  }

  .top-image {
    margin: 20px auto;
  }

  /* アバウト */

  .ouen {
    margin: 0 1rem;
  }

  .ouen p {
    font-size: 14px;
  }


  /* ワーク */

  .workflex {
    display: flex;
    justify-content: start;
    margin: 0 20% 8rem 20%;
    gap: 20px;
    flex-wrap: wrap;
  }

  .workflex li {
    width: calc((100% - 100px) / 5); 
  }

  /* ショップ */

  .link {
  font-size: 18px;
  }

  .sp-kaigyo {
    display: none;
  }

}

/* --------PCのレイアウトここまで-------- */