
html{
  font-size:100%;
  scroll-behavior: smooth;
  }
body{
  font-family: "Noto Sans JP","Noto Sans", sans-serif;
  background-color: #FFFFFF;
  }

a{
  text-decoration: none;
  color:#1A1B1E;;
}


a h3 {
  display: inline-flex;   /* アイコン＋テキストを横並びにする場合 */
  align-items: center;    /* アイコンとテキストを縦位置中央揃え */
  position: relative;     /* ::afterの基準にする */
}
a h3::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 3px;
background: #1A1B1E;
bottom: -5px;
transform: scale(0, 1);
transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.35s;  /*変形の時間*/
}

a h3:hover::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
transform-origin: left top; /*左から右に向かう*/
}









/*------------------
文字
----------------  */

h2{
  font-family: "Noto Sans JP","Noto Sans", sans-serif;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1A1B1E;
}
h3{
  font-family: "Noto Sans JP","Noto Sans", sans-serif;
  font-size: 30px;
  font-weight: 500;
}

.pl{     /* メニュー文字 */
font-size: 30px;

}
.pm{     /* 本文文字 */
  font-size: 20px;
}
.ps{     /* フッター文字 */
  font-size: 0.75rem;
}
.pt{
  font-size: 1rem;
}

.p-j-r {     /* 日本語普通字 */
    font-family: "Noto Sans JP","Noto Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.04em;
}
  
.p-j-b {     /* 日本語太字 */
    font-family: "Noto Sans JP","Noto Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-e-r {     /* 欧文普通字 */
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
} 

.border{     /* 四角で囲む */
	border: solid 1px #ffffff;
  padding: 3px;
}
.border-bottom{     /* 下部線 */
  position: relative; 
}
.border-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;              /* 右端からスタート */
  width: 100%;
  height: 3px;           /* ボーダーの太さ */
  background-color: #1A1B1E;
  transform: scaleX(0);  /* 初期は0 */
  transform-origin: right; /* 右端から左に伸ばす */
  transition: transform 0.8s ease-out;
}

.border-bottom.active::after {
  transform: scaleX(1); /* 左方向に伸ばす */
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


.scroll_down {
  position: absolute;
  bottom: 60px;       /* 下からの位置調整 */
  left: 50%;          /* 横中央 */
  transform: translateX(-50%);
  text-align: center; /* 中央揃え */
  opacity: 0; /* 最初は非表示 */
  animation: fadeIn 0.8s ease forwards 1.2s; 
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll_down a {
  position: relative;
  display: inline-block;
  color: #1A1B1E;
  font-size: 14px;
  letter-spacing: .2em;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 1;            /* 丸より前面に表示 */
}

/* 丸 */
.scroll_down:before {
  content: "";
  position: absolute;
  top: 100%;            /* 文字の下端からスタート */
  left: 49%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1A1B1E;
  opacity: 0; /* 最初は非表示 */
  animation:
    circlemove 1.6s ease-in-out infinite 2s, /* 2秒後に開始 */
    circlehide 1.6s ease-out infinite 2s;    /* 2秒後に開始 */
}

/* 丸アニメーション：下方向 */
@keyframes circlemove {
  0% { top: 100%; }      /* 文字下端 */
  100% { top: 200%; }    /* 下方向に移動 */
}

@keyframes circlehide {
  0% { opacity: 0; }
  50% { opacity: 1; }
  80% { opacity: 0.9; }
  100% { opacity: 0; }
}




/*------------------
色
----------------  */

.gray{
  color: #c7c7c7;
}
.white{
  color: #FFFFFF;
}
.black{
  color: #1A1B1E;
}
.green{
  color: #488263;
}
.orange{
  color: #ff9e55;
}
body::selection {
  background-color: #ff9e55;
  color: #ffffff;
}

/*------------------
背景色
----------------  */

.gray-back{
  background-color: #bcc9c7;
}
.gray-back_c{
  background-color: #66696982;
}
.white-back{
  background-color: #FFFFFF;
}

/*------------------
画像
----------------  */

.img-cover{    /* 画像はコンテンツ幅に合わせる */
  object-fit: cover;
  width: 100vw;
  height: auto;
}
.img-cal{    /* カレンダー */
  width: 300px;
}
.img-icon_coconala{    /* ココナラアイコン */
  width: 90px;
  transition: all 0.2s ease-in-out;
}
.img-icon_insta_1{    /* インスタアイコンTOP */
  width: 1.8vw;
  margin-bottom: -4px;
}
.img-icon_insta_2{    /* インスタアイコンCONTACT */
  width: 90px;
  transition: all 0.2s ease-in-out;
}
.img-icon_insta_3{    /* インスタアイコンハンバーガー */
  height: 5vh;
  transition: all 0.2s ease-in-out;
}

.img-icon_insta_2:hover,
.img-icon_coconala:hover {
  transform: translate(0, -5px);
}

.img-tit{
  width: 250px;
  animation: expand ease forwards;
  animation-timeline: view();
  animation-range: cover 0% contain 100%;
}
@keyframes expand{
  0%{scale: 0.5;}
100%{scale: 1;}
}

.img-top{    /* TOPの画像 */
 width: 100vw;
}
.logo_1{
  width: 150px;
}
.logo_2{
  width: auto;      
  max-width: 150px; 
  height: auto;
}
.guide{
  width: 40vw;
  text-align: center;
}



/*------------------
コンテナ
----------------  */

.container-wl{     /* 最大幅 */
  width:100vw ;
}
.container-wm{     /* 中央配置 */
  width:80vw ;
}
.container-ws{     /* 半分幅 */
  width:40vw ;
}
.container-wss{     /* 半分幅 */
  width:10vw ;
}
.container-wc{     /* 半分幅 */
  width:30vw ;
}
.container-wss, .container-wc {
  flex: 1 1 auto;  /* 横幅は必要に応じて縮む */
  min-width: 190px; /* 必要に応じて下限を設定 */
}
.container-w-menu{     /* メニュー幅 */
  width:auto ;
}

.container-h-head{     /* ヘッダー高さ */
  height:150px ;
}
.container-hl{     /* 通常高さ */
  height:1080px ;
}
.container-l_auto{     /* 高さオート */
  height:auto;
}
.container-h_about{     /* 通常高さ */
  height:100vh ;
  margin-bottom: 100px;
}

.container-contact {
  width: clamp(300px, 70%, 600px);
  height: calc(100% - 80px); /* 親の高さ - padding上下合計 */
  max-height: 100%;
  box-sizing: border-box;
  border-radius: 140px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}
.container-contact_contents{
  width: 100% ;
  max-width: 100%; 
}
.container-contact_contents .container-flex_2.space-between {
  display: flex;
  justify-content: center;  /* 中央寄せ */
  align-items: center;
  gap: clamp(65px, 10vw, 150px); /* 最小20px、最大40px、画面幅に応じて可変 */
  margin: 0 auto;
  max-width: 100%; 
}
.container-flex_1{     /* コンテナ横並び */
  display: flex;
}
.container-flex_2{     /* スマホで縦並びにしない */
  display: flex;
}

.container-block{     /* コンテナ縦並び */
  display: block;
}
.container-i_block{     /* コンテナ横並び */
  display: inline-block;
}
.container-guide-box{
  width: 800px;
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: center;    /* 横方向中央寄せ */
  text-align: left;
}
.container-guide {
  width: 700px;
  height: 150px;
  display: flex;
  background-color: var(--guide-bg, #c7c7c7);
  justify-content: left;
  align-items: center; 
  position: relative;
  overflow: hidden;
}
.container-guide:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0));
  pointer-events: none; 
}

.container-guide_circle {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: #FFFFFF;
  margin: 25px;
  color: #c7c7c7;
  font-size: 45px;
  position: relative; 
  z-index: 1;
}
.container-guide:nth-child(1) .container-guide_circle {
  background-image: url('../IMG/GUIDE/01.png');
  background-size: 70%;
  background-position: center;
}

.container-guide:nth-child(2) .container-guide_circle {
  background-image: url('../IMG/GUIDE/02.png');
  background-size: 80%;
  background-position: center;
}

.container-guide:nth-child(3) .container-guide_circle {
  background-image: url('../IMG/GUIDE/03.png');
  background-size: 80%;
  background-position: center;
}

.container-guide:nth-child(4) .container-guide_circle {
  background-image: url('../IMG/GUIDE/04.png');
  background-size: 80%;
  background-position: center;
}

.container-guide:nth-child(5) .container-guide_circle {
  background-image: url('../IMG/GUIDE/05.png');
  background-size: 80%;
  background-position: center;
}
.container-guide_line {
  position: absolute;
  left: 65px;   
  transform: translateX(-50%);
  height: 150px;  
  width: 3px;
  background-color: #FFFFFF;
  z-index: 1;
}
.container-guide:first-child .container-guide_line {/* 最初の円 → 上側の線を消す */
  top: 50%;  /* 円の真ん中から下に伸びる */
}
.container-guide:last-child .container-guide_line {/* 最後の円 → 下側の線を消す */
  bottom: 75px;   
}

  .container-guide_title{      /* コンテナABOUTタイトル */
    text-align: left;
    color: #FFFFFF;
    font-family: "Noto Sans JP","Noto Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8em;
  }
  .container-guide_copy{      /* コンテナABOUT本文 */
    text-align: left;
    color: #FFFFFF;
    font-size: 14px;
    letter-spacing: 0.5px;
  }




/*------------------
揃え
----------------  */

.center{
  align-items: center;
  text-align: center;
  justify-content: center;
}
.left{
  text-align: left;
}
.right{
  text-align: right;
}
.bottom{
  align-items:flex-end;
}
.word-brake{
  overflow-wrap: normal;
}
.nowrap{
  text-wrap: nowrap;
}
.align-bottom{
  vertical-align: bottom;
}
.inline-block{
  display: inline-block;
}
.text-indent{
  text-indent: -1rem;
  padding-left: 2rem;
}
/*------------------
位置
----------------  */

.absolute{     /* 手前に表示 */
 position: absolute;
}
.fixed{
  position: fixed;
}
.relative{
    position: relative;
}
.copy-bot{     /* フッターコピー */
  text-align: left;
  padding: 4rem 3rem 4rem 2rem;
}
.menu-style{     /* メニューボタン */
  transition: all 0.2s ease-in-out;
  justify-content: center;
  margin-left: 4vw;
  font-size: 1.8vw;
  color:#1A1B1E;;
}
.menu-style:first-child {
  margin-left: 30px;
}
#menu ul {
  display: flex;
  align-items: center;
  gap: 20px;         /* メニュー間の間隔を維持 */
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: flex-end; /* 右端に寄せる */
}
.menu-style:hover {    /* メニューホバー */
  transform: translate(0, -5px);
}
.menu-style_2{     /* メニューボタン */
  transition: all 0.2s ease-in-out;
  justify-content: center;
  margin-bottom: 5vh;
  font-size: 5vw;
  letter-spacing:0.1em;
  color: #FFFFFF;
}
.menu-style_2 a {
  color: #FFFFFF;
  text-decoration: none; 
}
.menu-style_2:hover {    /* メニューホバー */
  transform: translate(0, -5px);
}

.img-position-top{    /* 画像上合わせ */
  object-position: top;
}


/*------------------
空き
----------------  */

.padding-s{
  padding: 2rem;
}
.padding-l{
  padding: 4rem;
}
.padding-cal{
  padding: 1rem;
}
.padding-top-m{
  padding-top: 50px;
}
.padding-top-l{
  padding-top: 100px;
}
.padding-bottom-m{
  padding-bottom: 50px;
}
.padding-bottom-l{
  padding-bottom: 100px;
}
.margin-bottom-l{
  margin-bottom: 4rem;
}
.padding_l-s{
  padding-left: 2rem;
}
.padding_r-s{
  padding-right: 2rem;
}
.padding_l-m{
  padding-left: 2rem;
}
.padding_l-l{
  padding-left: 4rem;
}
.padding_t-s{
  padding-top: 2rem;
}
.table-space{
  border-spacing: 2rem;
}
.table-padding{
  padding-left: 2rem;
}
.padding_menu{
  padding: 2rem;
}

/*------------------
メニュー
----------------  */

.hamburger-overlay {
  position: fixed;
  top: 48px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 3px;
  background-color: #1A1B1E;
  transition: all .6s;

}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #FFFFFF;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1a1b1ef5;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }




/*------------------
WORKS
----------------  */
.viewmore{
  display: flex;
  align-items: center;   /* 縦中央 */
  justify-content: flex-end;
  width: 250px;
  padding-right: 70px;
  line-height: normal;   /* flexに任せる */
  background-image: url("../IMG/viewmore.png");
  background-position: right 0px  ;
}
.viewmore-box{
  width: 255px;
}
.works-header {
  display: flex;
  flex-wrap: nowrap; /* 折り返さず横並びを維持 */
  align-items: stretch;           /* 高さを揃える */
  justify-content: space-between; /* 左右端に配置 */

}

/* 左側：WORKS */
.works-header > .container-ws.left {
  flex: 1;
  display: flex;
  align-items: center;  /* テキストを縦中央 */
}

.works-header > .container-ws.left h1 {
  margin: 0;
  text-align: left;
}

/* 右側：仕事の流れ */
.works-header > .container-ws.right {
  flex: 1;
  display: flex;         /* ← ここで container-block を上書き */
  align-items: center;   /* 高さを揃えて縦中央 */
  justify-content: flex-end; /* 右寄せ */
}

.works-header > .container-ws .viewmore,
.works-header > .container-wm .viewmore {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  padding-right: 70px;
  line-height: normal;
  background-image: url("../IMG/viewmore.png");
  /* 通常サイズ時の右余白（36px/2=18pxの半分を加算） */
  background-position: calc(100% - 6px) calc(100% - 4px);
  background-size: 32px 32px;
  background-repeat: no-repeat;
  margin: 0;
  transform: scale(1);
    transition: background-size 0.3s ease, background-position 0.3s ease;
}
.works-header > .container-ws .viewmore:hover,
.works-header > .container-wm .viewmore:hover {
  background-size: 43px 43px;
  /* 拡大後は半径分だけ余白を調整（42px/2=21px） */
  background-position: calc(100%) calc(100% );
}


.works-separator {
  width: 100%;
  height: 3px;
  background: #1A1B1E;
  transform: scaleX(0);       /* 初期は0 */
  transform-origin: left;     /* 左端から伸ばす */
  transition: transform 0.8s ease-out; /* 0.8秒で伸びる */
}

.works-separator.active {
  transform: scaleX(1);       /* 左→右に伸びる */
}


/*------------------
ギャラリー
----------------  */


.top-gallery-wrapper {
  overflow: hidden;
  width: 100%;
  padding-top: 10vh; 
  padding-bottom: 10vh;
}

.top-gallery.carousel {
  display: flex;
  gap: 40px; /* 画像間隔 */
}

.top-gallery li {
  flex: 0 0 auto;
  list-style: none;
}

.top-gallery img {
  max-height: 50vh; /* 高さが画面内に収まるように制限 */
  width: auto;
  display: block;
  border-radius: 6px;
}





.gallery{     /* ギャラリーの段組み */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* デフォルト3列 */
  gap: clamp(20px, 5vw, 80px); /* 20px〜80pxの間で可変 */
  padding: 0;
  margin: 0;
}

.gallery li{     /* ギャラリー画像下の余白 */
  list-style: none;
  overflow: hidden;
  border-radius: 3px; 
}

.gallery img{ /* ギャラリー画像の大きさ */
  width: 100%;
  height: auto;
  display: block;
  
}


#ABOUT {
  position: relative;
  z-index: 1;
}

#CONTACT {
  flex: 1 1 auto;       /* フッター以外の高さを全部占有 */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;        /* 内側の余白 */
  box-sizing: border-box;
  background-color: #bcc9c7; /* グレー背景 */
}
.contact-footer-wrapper{
  background-color: #ffffff;
  height: auto;
  position: relative;
  z-index: 10;
}
.container-contact {
  width: 75vw;
  height: 100%;         /* 親 #CONTACT の高さに合わせる */
  box-sizing: border-box;
  border-radius: 139px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer {

  flex-shrink: 0;       /* CONTACT に押し潰されない */
  background-color: #FFFFFF;
}

/* フッター上段（ロゴ＋コピー） */
#footer > .container-wl.container-flex_1 {
  display: flex;
  justify-content: center;  /* 横方向中央揃え */
  align-items: center;      /* 縦方向中央揃え */
  padding: 20px 0 10px 0 ;
}

/* ロゴ・コピー */
#footer .container-ws {
  text-align: center;
    padding: 0 0 2px 0;    /* 下にだけ2px余白をつける */
}
.break-point {
  display: inline;
}
p.word-brake {
  white-space: nowrap;   /* 改行させない */
}



/*------------------
TOPに戻る
----------------  */

#page-top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0s ease 0.6s; 
  transform: translateY(1px); /* 下にずらして非表示状態 */
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  color: #1A1B1E;
  font-size: 42px;
    z-index: 999;
  cursor: pointer;
}

/* 表示するときのクラス */
#page-top.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease;
  transform: translateY(0); /* 元の位置に */
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 40
}


/*-------------------------------------------------
メニュー開閉（WEB）
------------------------------------------------- */


.cp_box1 {
  width: auto;
  margin: 30px auto;
  text-align: left;
}
.cp_box1 input {
  display: none;
}
/*続きを読むボタン*/
.cp_box1 label {
  font-weight: bold;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 900px;
  margin: auto;
  padding: 0.3em 1em;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
  color: #FF7A23;
  border: 2px solid #FF7A23;
  border-radius: 3px;
  margin-left: 2.2rem;
}
/*＋マーク*/
.cp_box1 label::after {
  position: absolute;
  content: '';
  right: 16px;
  width: 16px;
  height: 16px;
  background: #FF7A23;
  clip-path: polygon(0 40%, 40% 40%, 40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%);
}
.cp_box1 label:hover::after {
  color: #ffffff;
}
/*hover*/
.cp_box1 label:hover {
  transition: all 0.3s;
  color: #ffffff;
  background: #FF7A23;
}
.cp_box1 label:hover::after {
  background: #ffffff;
}
/*-マーク*/
.cp_box1 input:checked ~ label::after {
  background: #FF7A23;
  clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
}
/*hover*/
.cp_box1 input:checked ~ label:hover::after {
  background: #ffffff;
}
.cp_box1 div.cp_container1 {
  position: relative;
  z-index: 10;
  overflow: hidden;
  height: 0;
  margin-top: -1px;
}
.cp_box1 input:checked ~ div.cp_container1 {
  transition: height 0.5s ease-in-out;
}
/* 高さを設定 */
.cp_box1 input:checked ~ div.cp_container1 {
  height: auto;
}

/*------------------
メニュー開閉（名刺）
----------------  */
.cp_box2 {
  width: auto;
  margin: 30px auto;
  text-align: left;
}
.cp_box2 input {
  display: none;
}
/*続きを読むボタン*/
.cp_box2 label {
  font-weight: bold;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 900px;
  margin: auto;
  padding: 0.3em 1em;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
  color: #FF7A23;
  border: 2px solid #FF7A23;
  border-radius: 3px;
  margin-left: 2.2rem;
}
/*＋マーク*/
.cp_box2 label::after {
  position: absolute;
  content: '';
  right: 16px;
  width: 16px;
  height: 16px;
  background: #FF7A23;
  clip-path: polygon(0 40%, 40% 40%, 40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%);
}
.cp_box2 label:hover::after {
  color: #ffffff;
}
/*hover*/
.cp_box2 label:hover {
  transition: all 0.3s;
  color: #ffffff;
  background: #FF7A23;
}
.cp_box2 label:hover::after {
  background: #ffffff;
}
/*-マーク*/
.cp_box2 input:checked ~ label::after {
  background: #FF7A23;
  clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
}
/*hover*/
.cp_box2 input:checked ~ label:hover::after {
  background: #ffffff;
}
.cp_box2 div.cp_container2 {
  position: relative;
  z-index: 10;
  overflow: hidden;
  height: 0;
  margin-top: -1px;
}
.cp_box2 input:checked ~ div.cp_container2 {
  transition: height 0.5s ease-in-out;
}
/* 高さを設定 */
.cp_box2 input:checked ~ div.cp_container2 {
  height: auto;
}

/*------------------
メニュー開閉（チラシ）
----------------  */
.cp_box3 {
  width: auto;
  margin: 30px auto;
  text-align: left;
}
.cp_box3 input {
  display: none;
}
/*続きを読むボタン*/
.cp_box3 label {
  font-weight: bold;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 900px;
  margin: auto;
  padding: 0.3em 1em;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
  color: #FF7A23;
  border: 2px solid #FF7A23;
  border-radius: 3px;
  margin-left: 2.2rem;
}
/*＋マーク*/
.cp_box3 label::after {
  position: absolute;
  content: '';
  right: 16px;
  width: 16px;
  height: 16px;
  background: #FF7A23;
  clip-path: polygon(0 40%, 40% 40%, 40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%);
}
.cp_box3 label:hover::after {
  color: #ffffff;
}
/*hover*/
.cp_box3 label:hover {
  transition: all 0.3s;
  color: #ffffff;
  background: #FF7A23;
}
.cp_box3 label:hover::after {
  background: #ffffff;
}
/*-マーク*/
.cp_box3 input:checked ~ label::after {
  background: #FF7A23;
  clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
}
/*hover*/
.cp_box3 input:checked ~ label:hover::after {
  background: #ffffff;
}
.cp_box3 div.cp_container3 {
  position: relative;
  z-index: 10;
  overflow: hidden;
  height: 0;
  margin-top: -1px;
}
.cp_box3 input:checked ~ div.cp_container3 {
  transition: height 0.5s ease-in-out;
}
/* 高さを設定 */
.cp_box3 input:checked ~ div.cp_container3 {
  height: auto;
}




/*-------------------------------------------------
 iPad表示 
------------------------------------------------- */
@media (min-width:1024px){  

  #min-menu{
 display: none;
  }
}

@media (max-width:1024px){     


  .cp_box1 label {/*続きを読むボタン*/
    width: 80vw;
  }

  .cp_box2 label {/*続きを読むボタン*/
    width: 80vw;
  }
  .cp_box3 label {/*続きを読むボタン*/
    width: 80vw;
  }
  .guide{
  width: 60vw;
  text-align: center;
  margin-left: -50px;
}
.gallery{     /* ギャラリーの段組み */
  grid-template-columns: repeat(2, 1fr);
}
.scroll_down {
  bottom: 62px;       /* 下からの位置調整 */
}

#menu{
 display: none;
}
.container-contact_contents .container-flex_2.space-between {
  max-width: 500px;  /* ← コピーに合う適切な幅を指定 */
}
  p.word-brake {
    white-space: normal; /* 改行OKに戻す */
  }
  .break-point::after {
    content: "\A";     /* 強制改行 */
    white-space: pre;  /* 改行を有効に */
  }
}

/*-------------------------------------------------
スマホ表示
------------------------------------------------- */

@media (max-width:780px){

  .logo_1{
  width: 120px;
  margin-left: 10px;
}
.logo_2{
  width: auto;      
  max-width: 130px; 
  height: auto;
}
  .container-w-menu{     /* メニュー幅 */
    width:195px ;
  }
  .container-h-top{     /* トップビジュアル高さ */
  height:544px ;
  }
  　.container-hl{     /* 通常高さ */
    height:844px ;
  }
  .container-info{     /* INFOコンテナ */
    width: 90vw;
    height: auto ;
    padding-bottom: 2rem;
  }
  .container-flex_1{     /* コンテナ横並び */
    flex-direction: column;
  }
  .container-contact{     /* コンテナCONTACT */
    width: 90vw ;
    height: auto;
    border-radius: 200px ;
    margin: 0 auto;
  }

  .container-contact p {
    font-size: 15px;     /* 小さい画面で少し文字を小さく */
    max-width: 70vw;      /* 画面幅の90%以内に制限 */
    line-height: 1.6;    /* 読みやすく調整 */
    text-align: center;
  }
  .logo-bot{     /* フッターロゴ */
    text-align: center;
   }
  .copy-bot{     /* フッターコピー */
    text-align: center;
    align-items: center;
    margin-top: -40px;
    margin-bottom: -50px;
  }
  .gallery{     /* ギャラリーの段組み */
    grid-template-columns: 1fr;
    gap: 10vw; /* 20px〜80pxの間で可変 */
  }
  .gallery img{ /* ギャラリー画像の大きさ */
    padding: 0 0 ;
  }
  .menu-style{     /* メニューボタン */
   text-align: left;
   line-height: 50px;
   padding-left: 3rem;
  }

   .table-padding{   /* テーブル左の空き */
    padding-left: 0;
  }
	.padding_menu{/* メニューの空き */
  padding-left: 0;
}
.guide{
  width: 100vw;
  text-align: center;
  margin-left: 5px;
}

h2{
  font-size: 50px;
}
h3{
  font-size: 25px;
}
.pm{     /* 本文文字 */
  font-size: 16px;
}

.img-icon_coconala{    /* ココナラアイコン */
  width: 90px;
}
.img-icon_insta_2{    /* インスタアイコンCONTACT */
  width: 90px;
}
.viewmore-box{
  width: 190px;
  padding-bottom: 50px;
}
  .works-header {
    flex-direction: column;   /* 縦並びにする */
    align-items: flex-start;  /* 左揃え */
    text-align: left;
  }
.works-header > .container-ws .viewmore,
.works-header > .container-wm .viewmore {
  padding-right: 40px;
  line-height: normal;
  background-image: url("../IMG/viewmore.png");
  /* 通常サイズ時の右余白（36px/2=18pxの半分を加算） */
  background-position: calc(100% - 4px) calc(100% - 4px);
  background-size: 26px 26px;
}
.works-header > .container-ws .viewmore:hover,
.works-header > .container-wm .viewmore:hover {
  background-size: 34px 34px;
  /* 拡大後は半径分だけ余白を調整（42px/2=21px） */
  background-position: calc(100% ) calc(100% );
}
.hamburger-overlay {
  position: fixed;
  right: 10px;
}
.container-guide-box{
  width: 100vw;
}
.container-guide {
  width: 95vw;
}
#page-top {
  font-size: 36px;
}
.top-gallery img {
  max-height: 40vh; /* 高さが画面内に収まるように制限 */
}


.container-guide {
  width: 100vw;
  height: 150px;
  display: flex;
  background-color: var(--guide-bg, #c7c7c7);
  justify-content: left;
  align-items: center; 
  position: relative;
  overflow: hidden;
}
.container-guide:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0));
  pointer-events: none; 
}

.container-guide_circle {
  height: 60px;
  width: 60px;
  margin: 10px;

}
.container-guide_line {
  left: 40px;   
}

  .container-guide_copy{      /* コンテナABOUT本文 */
width: 80vw;
  }
}
