@import url(reset.css);


img {
  vertical-align: bottom;
}

body {
  font-family: "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #3D2B26;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

:target {
  scroll-margin-top: 72px;
}

/* SP・Tablet用 */

/* オープニング */

/* 
👇旧アニメーション
.cover {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FAF7F1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000 ;
  animation:fadeOut 2s 2.8s both;
}

.cover .headline {
  font-size: 32px;
  line-height: 50px;
  left: 48px;
  top: 32px;
  animation: fadeIn 2s 0.3s both, fadeOut 2s 2.8s both;
} 
    ☝️旧アニメーション
    */




/* 今はコメントアウト　👇 */

.cover {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FAF7F1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeOut 3s 2.5s both;
}

.cover .headline {
  opacity: 0;
  font-size: 3.2rem;
  line-height: 1.7;
  left: 48px;
  top: 32px;
  /* animation: fadeOut 2s .3s both; */
  animation: logo_fade 2s 0.5s both;
}



/* 以上もオープニングだが編集上今はコメントアウト*/


/* 
👇旧アニメーション
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    top: 0;
    opacity: 1;
  }

  99% {
    top: 0;
    opacity: 0;
  }

  100% {
    top: -100%;
    opacity: 0;
  }
} 
        ☝️旧アニメーション
        */


@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes logo_fade {
  0% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}





header {
  background-color: #FAF7F1;
  position: fixed;
  width: 100%;
  z-index: 900;
  height: 8.5vh;
  top: 0;
  min-height: 72px;
}

header .nav_area .btn1 {
  visibility: hidden;
}


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


.hamburger {
  width: 48px;
  height: 48px;
  position: fixed;
  right: 3vw;
  top: 16px;
  z-index: 1300;
}

.hamburger span {
  display: block;
  width: 35px;
  height: 1px;
  background-color: #3D2B26;
  position: absolute;
  right: 6px;
  transform: translate(0, -50%);
  transition: .3s;
}

.hamburger span:first-child {
  top: 35%
}

.hamburger span:nth-child(2) {
  top: 50%;
  width: 28px;
}

.hamburger span:last-child {
  top: 65%;
  width: 20px;
}

.hamburger.close span:first-child {
  top: 50%;
  transform: translate(0, -50%) rotate(-25deg);
}

.hamburger.close span:nth-child(2) {
  opacity: 0;
  transform: translate(0, -50%) rotate(-45deg);
}

.hamburger.close span:last-child {
  top: 50%;
  width: 35px;
  transform: translate(0, -50%) rotate(25deg);
}

header img {
  margin: 10px 0 10px 0;
  width: 145px;
  height: auto;
  display: block;
  position: relative;
  left: 3vw;
}

.gnav {
  font-family: "Lato", "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  position: fixed;
  /* top: -100vh; */
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #FAF7F1;
  padding: 18vh 16vw 0vh;
  /* ⭐️ここでpaddingbottomにたとえば30vh指定すると、over flowがあるためスクロールになり、かつpadding領域にもコンテンツが入り込む。正しい指定方法は？ */
  z-index: 500;
  /* transition: 1s; */
  overflow: auto;

  /* top: 0; */
  /* 修正 */
  /* z-index: 1200; */
  /* 修正 */
  transform: translateY(-100%);
  /* 追加 */
  opacity: 0;
  /* 追加 */
  visibility: hidden;
  /* 追加 */
  pointer-events: none;
  /* 追加 */

  /* transition: transform 1.2s cubic-bezier(.2, .9, .2, 1), opacity 1s ease; */
  /* 追加 */

  transition:
    transform 1.2s ease,
    opacity 0.6s ease,
    visibility 0s linear 0.6s;
  /* 0.6秒後に visibility 切り替え */
}

.gnav.show {
  top: 0;
  /* left: 0; */

  /* 追加 */
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition:
    transform 1.2s ease, ease 0.6s, visibility 0s;
}




.gnav ul li {
  margin-bottom: 15px;
}

.gnav ul li a {
  display: inline-block;
  padding: 10px 0;
}

.gnav ul li:nth-child(7) {
  margin-top: 40px;
}

.gnav ul li:nth-child(7) img {
  display: inline-block;
  margin: 0 0 2px 10px;
  width: 7.5px;
  height: auto;
}

.footer_nav li .btn,
.gnav ul li .btn {
  font-family: "Lato", "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  padding: 12px 0;
  border: solid 1px;
  border-radius: 30px;
  transition: 0.4s;
  margin-top: 64px;
  background-color: #D3E07D;
}

.footer_nav ul li .btn .arrow,
.gnav ul li .btn .arrow {
  width: 18px;
  margin-left: 10px;
}

.footer_nav ul li .btn .arrow img,
.gnav ul li .btn .arrow img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}


/* kv */

.fv {
  margin-top: 8.5vh;
}

.fv .fv_pic {
  height: 91.5vh;
  position: relative;
}


.fv .headline {
  font-size: 3.8rem;
  line-height: 1.7;
  position: absolute;
  padding: 10vw 10%;
}


/* スクロール */

.scroll {
  font-family: "Lato", "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  color: #FDF5E3;
  position: absolute;
  right: 5%;
  bottom: 120px;
  writing-mode: vertical-rl;
}

/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #FDF5E3;
  bottom: -115px;
  content: "";
  height: 110px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}



/* fv vegas */

#vegas_sp {
  display: block;
}

#vegas_pc {
  display: none;
}


/* イントロ */



/* page top button */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #FAF7F1;
  opacity: .8;
  border: solid 1px #3D2B26;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  cursor: pointer;
}

.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 1px solid #3D2B26;
  border-right: 1px solid #3D2B26;
  transform: translateY(20%) rotate(-45deg);
}



.page_2_service .intro,
.page_3_works .intro,
.page_4_profile .intro,
.page_5_newstop .intro,
.page_7_collaborator .intro {
  margin-top: 8.5vh;
}


.intro {

  position: relative;
  overflow: hidden;
  padding: 0 10vw 40px;
  background-color: #FAF7F1;

}


.page_headline {
  font-size: 2.6rem;
  line-height: 1.7;
  padding-top: 80px;
  padding-bottom: 60px;
}

/* フェードイン(初期値) */
/* .js-fadeUp {
  opacity: 0;
  最初は非表示
  transform: translateY(30px);
  下に30pxの位置から
  transition: opacity 2s, transform 2s;
  透過率と縦方向の移動を0.8秒
} */

/* フェードイン(スクロールした後) */
/* .js-fadeUp.is-inview {
  opacity: 1;
  表示領域に入ったら表示
  transform: translateY(0);
  30px上に移動する
  transition-delay: .5s;
  フェード開始を0.5秒遅らせる
} */

.intro .text {
  font-size: 1.5rem;
  line-height: 1.9;
  margin-top: 24px;
  text-align: right;
}

.intro .flare {
  position: absolute;
  width: 120px;
  height: auto;
  top: 100px;
  right: -3%;
  animation: flare_rotate 50s infinite;
}

@keyframes flare_rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* service */


.service {
  /* background-color: #FAF7F1; */
  /* padding: 0px 10vw 80px;  */
  /* あとでコメントアウト */
  position: relative;
  overflow: hidden;
}

.home_service {
  background-color: #FAF7F1;
  background-image: linear-gradient(rgba(253, 245, 227, 0), rgba(255, 244, 212, 1) 10%);
  padding: 0px 10vw 80px;
}






.menu_name {
  font-family: "Lato", "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  color: #FFF;
  font-size: 6.4rem;
  /* z-index: 1000; */
  display: inline-block;
}

.service .menu_name::before {
  content: "提供できること";
  font-size: 1.6rem;
  color: #3D2B26;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: .18rem;
  position: relative;
  top: 20rem;
  /* z-index: 90; */
  display: block;
}





/* 以下、menuname修正中 */

/* .title-group {
       position: relative;
       ❓ これはなぜ領域に高さでない？
     }
  
     .sub_menu_name {
       position: absolute;
       white-space: nowrap;
       top: 80px;
       left: 0px;
       display: inline-block;
       writing-mode: vertical-rl;
     }

.menu_name {
  color: #FFF;
  font-size: 64px;
  display: inline-block;
  position: absolute;
} */





















/* .menu_name {
  color: #FFF;
  font-size: 64px;
  z-index: 1000;
  display: inline-block;
  position: absolute;
  ⭐️石井さんの指摘反映させる
} */

/* .lead {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: .18rem;
  line-height: 1.2;
  position: relative;
  left: 60%;
  top: -1rem;
  z-index: 90;
  display: block;
}
.service h2 span {
  letter-spacing: .1rem;
}
beforeの擬似要素が正常に機能したのでコメントアウト中 */



.service .text {
  font-size: 1.5rem;
  text-align: left;
  line-height: 1.9;
  margin-top: 24px;
  margin-left: 10vw;
}

.service_text {
  margin-top: 200px;
  text-align: center;
}


a.btn1 {
  font-family: "Lato", "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 180px;
  padding: 1.6rem 4.8rem;
  border: solid 1px;
  border-radius: 100vh;
  position: relative;
  transition: 0.4s;
  margin: 64px auto 0;
}

a.btn1::before {
  content: '';
  position: absolute;
  right: 1em;
  background: url(../images/arrow_short.svg) no-repeat center / 35% auto;
  width: 50px;
  height: 100%;
}

a.btn1:hover {
  background: #D3E07D;
}

/* a.btn1:hover::before {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(226deg) brightness(101%) contrast(102%);
  これはsvgの色を変えるために必要な記述　} */

.home_service .flare {
  position: absolute;
  width: 120px;
  height: auto;
  top: 180px;
  right: -3%;
  animation: flare_rotate 50s infinite;
}



/* service details */


.wtype {
  margin-top: 40px;
  font-size: 1.6rem;
}



.service_details p {
  line-height: 1.4;
}

.home_service .service_details p {
  margin-top: 1.5rem;
}

.service_details_1 {
  margin-top: 140px;
}

.page_2_service .wtype,
.page_3_works .wtype {
  margin-top: 0;
}

.service_details_3 {
  margin-top: 100px;
}

.home_service .service_details_1 img {
  border-radius: 125px 0 0 0;
  width: 180px;
  height: 250px;
  object-fit: cover;
}

.service_details_2 {
  text-align: left;
}

.home_service .service_details_2 {
  width: 250px;
  margin: 100px 0 0 auto;
}

.home_service .service_details_2 img {
  width: 250px;
  height: 180px;
  border-radius: 0 125px 0 0;
}

.home_service .service_details_3 img {
  width: 180px;
  height: 250px;
  border-radius: 0 125px 0 0;
  object-fit: cover;
  object-position: 20% center;
}


.btn2 {
  font-family: "Lato", "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  display: flex;
  align-items: center;
  width: 100px;
  margin: 32px auto 0px 62px;
  position: relative;
  transition: 0.4s;
}

.btn2 span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #D3E07D;
  position: absolute;
  margin: auto auto 0px 60px;
  animation: pulse-ring 2.0s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.btn2::before {
  content: '';
  position: absolute;
  left: 1em;
  z-index: 10;
  background: url(../images/arrow_long.svg) no-repeat center / 40% auto;
  width: 100px;
  height: 100%;
  /* animation: arrowmov 2s infinite ; */
}

/* @keyframes arrowmov {
    0% { transform:translate(0, 0); }
    90% { transform: translateX(15px); }
  
    0%,
    100% { opacity: 0; }
    40% { opacity: 1; }
} */



/* works */


.works .flare {
  position: absolute;
  width: 120px;
  height: auto;
  top: 300px;
  left: -3%;
}

.works {
  background-color: #FAF7F1;
  padding: 0px 10vw;
  text-align: right;
  position: relative;
  overflow: hidden;
}

.works .menu_name {
  margin-top: -30px;
}

.works .text {
  text-align: left;
  margin-top: 60px;
  line-height: 2.8rem;
  font-size: 1.5rem;
}

.sv {
  width: 72vw;
  height: auto;
  margin: 150px -10vw 0 auto;
  position: relative;
}

.works .sv {
  margin: 180px -10vw 0 auto;
}


.works .menu_name::before {
  content: "これまでのお仕事";
  font-size: 1.6rem;
  color: #3D2B26;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: .18rem;
  line-height: 1.2;
  position: relative;
  top: 21rem;
  z-index: 90;
  display: block;
}

.works a.btn1,
.page_2_service .service_no1 .btn1,
.page_2_service .service_no2 .btn1,
.page_2_service .service_no3 .btn1 {
  width: 310px;
  margin: 64px auto 0;
  align-items: center;
}




/* profile */

.profile_container {
  background-color: #FAF7F1;
  position: relative;
  overflow: hidden;
}

.profile_container .profile {
  padding: 180px 10vw;
  position: relative;
  z-index: 20;
  text-align: right;
}

.profile .menu_name {
  font-size: 2.8rem;
  color: #3D2B26;
  margin: 80px 0 0 auto;
}

.profile .flare {
  position: absolute;
  width: 28vw;
  max-width: 140px;
  height: auto;
  top: 220px;
  left: -3%;
  animation: flare_rotate 50s infinite;
}

.profile h3 {
  font-size: 2rem;
  margin-top: 60px;
  text-align: left;
}

.profile .text {
  font-size: 1.5rem;
  padding: 0;
  text-align: left;
  margin-top: 40px;
  line-height: 1.9;
}

.profile .sv {
  margin: 100px -10vw 0 auto;
  width: 80vw;
}


.profile_container .bg {
  background: #FCFCFC;
  width: 180vw;
  height: 980px;
  border-radius: 50%;
  position: absolute;
  top: 140px;
  right: -80vw;
  z-index: 10;
}

.profile .btn1 {
  margin-bottom: 100px;
}



/* news */

.news {
  background-color: #FAF7F1;
}

.home_news {
  padding: 80px 10vw;
  position: relative;
  overflow: hidden;
}

.home_news .flare {
  position: absolute;
  width: 120px;
  height: auto;
  top: 100px;
  right: -3%;
  animation: flare_rotate 50s infinite;
}

.news .menu_name {
  font-size: 2.8rem;
  color: #3D2B26;
  margin: 80px 0 0 auto;
}

.news .menu_namejp {
  -ms-writing-mode: tb-rl;
  margin: -4.5rem 0 0 auto;
  writing-mode: vertical-rl;
  letter-spacing: .18rem;
  position: relative;
  z-index: 90;
  display: block;
}

.news_list {
  margin-top: 50px;
  line-height: 1.5;
}

.news_list dt {
  /* font-size: 1.4rem; */
  padding: 14px 0 0 0;
}

.news .newschild {
  padding: 15px 0 15px 0;
}

.news .news_list>div:nth-child(n+2) {
  border-top: solid 1px #E8E4DC;
}

.news_list dd {
  padding: 10px 0px 0px 0px;
  position: relative;
  z-index: 10;
}

.news .btn2 span {
  animation: none;
  transition: .4s;
}

.news .btn2::before {
  left: 20px;
  background: url(../images/arrow_long.svg) no-repeat center / 35% auto;
  animation: none;
}

.news .btn2 {
  color: #FAF7F1;
  margin: 0 0 0 0;
  /* margin: 28px auto 0px -30px
  ❓元々 .btn2のhtmlに入っている「more」を消すとsvgまで消えるため、moreの色を背景色にしている。強引だと思うので解決方法があれば知りたい（応急処置でzindexで対応している）。*/
}

.home_news .btn2 span,
.news .btn2 span {
  color: #3D2B26;
  background-color: #FAF7F1;
  border: 1px solid #3D2B26;
  width: 35px;
  height: 35px;
}

.news1 .news_topic,
.news4 .news_topic,
.news7 .news_topic {
  color: #3D2B26;
  background-color: #D3E07D;
  font-size: 1.3rem;
  padding: 1px 16px;
  margin-left: 1rem;
}

.news3 .news_topic,
.news6 .news_topic,
.news9 .news_topic,
.page_6_newsdtl .news_topic {
  color: #3D2B26;
  background-color: #dcdcdc;
  font-size: 1.3rem;
  padding: 1px 16px;
  margin-left: 1rem;
}

.news2 .news_topic,
.news5 .news_topic,
.news8 .news_topic {
  color: #3D2B26;
  background-color: #FDEDC0;
  font-size: 1.3rem;
  padding: 1px 16px;
  margin-left: 1rem;
}

.news_date_topic {
  display: flex;
  align-items: baseline;
  line-height: 1.5;
}

.news_txt_arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.news div.news_btn1 {
  text-align: center;
}




/* collaborator */

.collaborator {
  background-color: #FAF7F1;
  padding: 0 10vw 40px;
  text-align: right;
  background-image: linear-gradient(rgba(255, 244, 212, 1)50%, rgba(253, 245, 227, 0));
  position: relative;
}


.collaborator .menu_name {
  margin-top: 0px;
  text-align: right;
}

.collaborator .menu_name::before {
  content: "関連の皆様";
  font-size: 1.6rem;
  color: #3D2B26;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: .18rem;
  line-height: 1.2;
  position: relative;
  top: 16rem;
  z-index: 90;
  display: block;
}

.collaborator_text {
  font-size: 1.5rem;
  margin-top: 50px;
  text-align: left;
  line-height: 1.9;
}

.collaborator .sv {
  margin: 100px auto 0 -10vw;
}

.collaborator_btn1 {
  text-align: center;
  padding-bottom: 80px;
}

.collaborator .flare {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 250px;
  right: 2vw;
}



/* contact  */

.contact {
  background-color: #FAF7F1;
  padding: 0 10vw 180px;
  text-align: center;
  position: relative;
}

.contact .contact_container {
  position: relative;
  z-index: 100;
}

.contact .bg {
  width: 90vw;
  height: 1000px;
  background-color: #fcfcfc;
  border-radius: 10vw;
  position: absolute;
  top: 0px;
  left: 5vw;
}

.contact .menu_name {
  padding: 60px 0px 40px 0px;
  font-size: 2.4rem;
  color: #3D2B26;
  margin-top: 0px;
}

.contact .text {
  width: 72vw;
  margin: 0 auto;
  padding-bottom: 40px;
  line-height: 1.9;
}

.contact .input_list {
  text-align: left;
  width: 72vw;
  margin: 0 auto;
}

.contact .input_list dt {
  padding: 32px 0 10px 0;
}

.contact .input_list dd .txtbox {
  line-height: 1.5;
  padding: 10px;
  width: 72vw;
  margin: 0 auto;
  box-sizing: border-box;
}

.contact .input_list dd input::placeholder {
  font-size: 1.4rem;
  color: #999;
}

.contact .input_list dt span {
  font-size: 1.2rem;
  color: #999;
}

textarea[name="q4"] {
  width: 72vw;
  height: 200px;
  padding: 10px;
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 0 auto;
  box-sizing: border-box;
}

textarea[name="q4"]::placeholder {
  font-size: 1.4rem;
  color: #999;
  /* ❓ここだけ太さ・文字の濃さが違うのはなぜ？ プライバシーポリシー必要?*/
}

.btn1_wrap {
  margin: 0 auto;
}

input[type="submit"] {
  appearance: none;
  /* 上記の記述大切！スマホの時に崩れるのをふせぐ */
  padding: 1rem 1rem;
  cursor: pointer;
  transition: 0.4s;
  position: relative;
  display: block;
  margin: 0 auto;
  border: solid 1px;
  border-radius: 100vh;
  width: 50vw;
  margin-top: 60px;
  background-color: #FAF7F1;
  color: #3D2B26;
}

input[name="q1"]:focus-visible,
input[name="q2"]:focus-visible,
input[name="q3"]:focus-visible {
  background: rgba(209, 231, 236, .5);
}

textarea:focus-visible {
  background: rgba(209, 231, 236, .5);
}





/* footer */

footer {
  position: relative;
}

.footer_nav {
  position: relative;
  width: 100vw;
  height: 91.5vh;
  padding: 5vh 16vw 5vh 16vw;
  min-height: 700px;
  background-color: #F0ECE4;
  margin-bottom: 92vh;
}

.footer_nav ul li {
  margin-bottom: 15px;
}

.footer_nav ul li a {
  display: inline-block;
  padding: 10px 0;
}

.footer_nav ul li a img {
  width: 145px;
  display: block;
  margin-bottom: 20px;
  margin-left: -3%;
}


.footer_nav ul li:nth-child(8) img {
  display: inline-block;
  margin: 0 0 2px 10px;
  width: 7.5px;
  height: auto;
}


.footer_nav .copy {
  color: #7a7a7a;
  font-size: 1rem;
  position: absolute;
  bottom: 5vh;
}

.nowimhere {
  color: #bebebe;
}





.footer_nav::after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  padding: 4vw;
  background: url(../images/zindex-2.jpg) no-repeat center center / cover;
  z-index: -2;
}

.footernavnm {
  font-family: "Lato", "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
}


/* outro */


.outro .outro_pic {
  height: 70vh;
  width: 90vw;
  max-width: 560px;
  margin: 0 auto;
  background: url(../images/footer_1_cocochiya.jpeg) center center / cover no-repeat;
  border-radius: 100vw 100vw 0 0;
  z-index: 10;
  position: relative;
}

.outro .outro_pic::after {
  height: 70vh;
  width: 90vw;
  max-width: 560px;
  margin: 0 auto;
  background: url(../images/footer_1_cocochiya.jpeg) center center / cover no-repeat;
  border-radius: 100vw 100vw 0 0;
  z-index: 10;
  content: "";
  position: absolute;
  inset: 0;
  filter: drop-shadow(0px 0px 10px #12355c);
  z-index: 5;
}

.page_2_service .outro .outro_pic::after {
  background: url(../images/footer_2_kikkake.png) center center / cover no-repeat;
}

.page_3_works .outro .outro_pic::after {
  background: url(../images/footer_3_sawatomato.jpeg) center center / cover no-repeat;
}

.page_4_profile .outro .outro_pic::after {
  background: url(../images/footer_4_tsunami.jpeg) center center / cover no-repeat;
}

.page_5_newstop .outro .outro_pic::after {
  background: url(../images/footer_5_momovege.jpeg) center center / cover no-repeat;
}

.page_6_newsdtl .outro .outro_pic::after {
  background: url(../images/footer_6_mashroom.png) center center / cover no-repeat;
}

.page_7_collaborator .outro .outro_pic::after {
  background: url(../images/footer_7_uenopork.png) center center / cover no-repeat;
}


.outro {
  height: 91.5vh;
  background-color: #FAF7F1;
  text-align: center;
  position: relative;
  background-color: #3d4c5e;
  overflow: hidden;
}

.outro .outro_headline,
.outro .outro_txt {
  line-height: 1.25vh;
  padding: 4.75vh 0 4.75vh;
  font-family: "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  color: #FAF7F1;
  z-index: 1;
}

.outro .flare1 {
  position: absolute;
  width: 100px;
  top: 2vh;
  right: 2vw;
}

.outro .flare2 {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 80vh;
  left: 0vw;
}

.blinking {
  animation: blink 2.0s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}













/* page_2_service */

.page_2_service {
  overflow: hidden;
  position: relative;
  background-image: none;
}

.page_2_service .service_fv,
.works_fv,
.profile_fv,
.news_fv,
.collaborator_fv {
  width: 80vw;
  margin: 0px -10vw 0px auto;
}

.page_2_service .service_text {
  position: relative;
}

.page_2_service .service_text .flare {
  top: -120px;
  right: -40px;
}

.page_2_service .service_text .flare2 {
  display: none;
}



.page_2_service .menu_name,
/* .page_3_works .menu_name, */
.page_5_newstop .menu_name,
.page_6_newsdtl .menu_name,
.page_7_collaborator .menu_name {
  color: #fff;
  margin-top: -80px;
  margin-left: 10vw;
  font-size: 8rem;
}


/* page_2_service details intro*/

.page_2_service .menu_name::before {
  top: 22rem;
}

.page_2_service .service_details,
.page_3_works .service_details {
  background-color: #FAF7F1;
  padding: 10px 10vw 80px;
}

.service_details .wtype {
  font-size: 1.5rem;
  line-height: 1.5;
}

.service_details .txt {
  font-size: 1.4rem;
}

.page_2_service .service_details .txt,
.page_3_works .service_details .txt {
  margin-top: 10px;
}

.page_2_service .service_details img,
.page_3_works .service_details img {
  border-radius: 10%;
  width: 40vw;
  height: 40vw;
  max-width: 400px;
  max-height: 400px;
  object-fit: cover;
}

.page_2_service .service_details_1,
.page_2_service .service_details_2,
.page_2_service .service_details_3,
.page_3_works .service_details_1,
.page_3_works .service_details_2,
.page_3_works .service_details_3 {
  display: flex;
  align-items: center;
  position: relative;
  background-color: #fff;
  max-width: 890px;
  padding: 3vw;
  border-radius: 10%;
  margin: 0 auto;
}

.service_details_1_wrap,
.service_details_2_wrap,
.service_details_3_wrap {
  width: 40vw;
  max-width: 400px;
  padding: 6vw 3vw 6vw 3vw;
  height: 52vw;
  max-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service_details_2_cntn,
.service_details_3_cntn {
  margin-top: -40px;

}

.page_2_service .service_details .wtype,
.page_3_works .service_details .wtype {
  font-family: "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  ;
}

.page_2_service .service_details .emp,
.page_3_works .service_details .emp {
  font-size: 1.6rem;
}

.page_2_service .service_details .btn2,
.page_3_works .service_details .btn2 {
  margin: 18px 0 0 auto;
  font-family: "Lato", "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
}

.service_details_1_cntn,
.service_details_2_cntn,
.service_details_3_cntn {
  position: relative;
  margin-top: 5vw;
}


/* page_2_service details no.1食材を体感する~no.3食で想いを形にする*/

.page_2_service .service_no1,
.page_2_service .service_no2,
.page_2_service .service_no3 {
  text-align: left;
  background-color: #FAF7F1;
  background-image: linear-gradient(rgba(255, 244, 212, 1)50%, rgba(253, 245, 227, 0));
  padding: 12vw 10vw 18vw;
}

.page_2_service .service_no1 .num,
.page_2_service .service_no2 .num,
.page_2_service .service_no3 .num,
.page_3_works .works_no1 .num,
.page_3_works .works_no2 .num,
.page_3_works .works_no3 .num {
  font-size: 1.3rem;
  font-family: "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN",
    "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
}

.page_2_service .service_no1 .headline,
.page_2_service .service_no2 .headline,
.page_2_service .service_no3 .headline,
.page_3_works .works_no1 .headline,
.page_3_works .works_no2 .headline,
.page_3_works .works_no3 .headline {
  font-size: 2rem;
  text-decoration: underline dotted;
  text-underline-offset: 0.2em;
  line-height: 1.5;
}

.page_2_service .service_no1 .txt,
.page_2_service .service_no2 .txt,
.page_2_service .service_no3 .txt {
  line-height: 1.9;
  margin-top: 24px;
}

.page_2_service .tag {
  display: inline-block;
  padding: .6rem .6rem;
  margin: 0.3rem;
  background-color: #EAE6DE;
  border-radius: 5px;
  font-size: 1.2rem;
}

.page_2_service .tags {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: -.5rem;
}

.link-row-wrap {
  text-align: center;
}

.link-row-1-wrap {
  display: block;
}

.link-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 12px 0;
}

.link-row .link-text {
  margin-right: 1rem;
}

.link-text {
  font-size: 1.5rem;
  line-height: 1.6;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #D3E07D;
  transition: transform .18s ease, .18s ease;
  flex: 0 0 auto;
  /* サイズを固定（伸ばしたくない） */
}

.link-row img {
  width: 12px;
}

/* ❓なぜここcursor pointerになっている？*/

.link-row:hover .icon-link {
  transform: translate(3px, -3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.expfood_img .practice_1,
.practice_2 {
  width: 35vw;
}

.page_2_service .expfood_img,
.page_3_works .expfood_img {
  display: flex;
  justify-content: space-around;
  margin: 40px 0 0 0;
}

.expfood_img p {
  padding-top: 10px;
  line-height: 1.3;
}

.page_2_service .outro .outro_pic {
  height: 70vh;
  width: 90vw;
  margin: 0 auto;
  background: url(../images/footer_2_kikkake.png) center center / cover no-repeat;
  border-radius: 100vw 100vw 0 0;
}



/* page_3_works */

.page_3_works .menu_name {
  color: #fff;
  margin-top: -96px;
  margin-left: 10vw;
  font-size: 8rem;
}

.works_no1,
.works_no2,
.works_no3 {
  background-color: #FAF7F1;
}

.page_3_works .service_text {
  position: relative;
}

.page_3_works .service_text .flare {
  top: -100px;
  right: -20px;
}

.page_3_works .service_text .flare2 {
  display: none;
  animation: flare_rotate 50s infinite;
}

.page_3_works {
  text-align: left;
}

.page_3_works .menu_name::before {
  content: "これまでのお仕事";
  top: 22rem;
}

.page_3_works .headline {
  padding-bottom: 40px;
}

.works_1_pics {
  padding: 0 5vw;
}

.page_3_works .works_no1 .txt,
.page_3_works .works_no2 .txt,
.page_3_works .works_no3 .txt {
  margin: 10px 5vw 40px;
  line-height: 1.4;
}

.foodimg_cont {
  margin-top: 50px;
  margin-bottom: 80px;
}

.txtdetail {
  color: #3D2B26;
  font-size: 1.2rem;
}

.page_3_works .works_no1,
.page_3_works .works_no2,
.page_3_works .works_no3 {
  padding: 60px 10vw 80px;
  background-image: linear-gradient(rgba(255, 244, 212, 1)50%, rgba(253, 245, 227, 0));
}

/* トグル開閉 */
.extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

/* トグルONで .extra を表示 */
#more-toggle_1:checked~.foodimg_cont .extra,
#more-toggle_2:checked~.foodimg_cont .extra,
#more-toggle_3:checked~.foodimg_cont .extra {
  max-height: 500px;
  /* 実際の高さに余裕を持たせた値に */
  opacity: 1;
}

/* .more-btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  margin: 0 auto;
  padding: 14px 28px;
  border: 1px solid #3D2B26;
  border-radius: 28px;
  cursor: pointer;
  user-select: none;
} */

.more-btn {
  font-family: "Lato", "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  margin: 0 auto;
  padding: 14px 28px;
  border: 1px solid #3D2B26;
  border-radius: 28px;
  cursor: pointer;
  user-select: none;
}

/* #more-toggle:checked~.more-btn .icon {
  transform: rotate(180deg);
} */




#more-toggle_1~.foodimg_cont .btn_wrap .more-btn .close-text,
#more-toggle_2~.foodimg_cont .btn_wrap .more-btn .close-text,
#more-toggle_3~.foodimg_cont .btn_wrap .more-btn .close-text {
  display: none;
}

#more-toggle_1:checked~.foodimg_cont .btn_wrap .more-btn .close-text,
#more-toggle_2:checked~.foodimg_cont .btn_wrap .more-btn .close-text,
#more-toggle_3:checked~.foodimg_cont .btn_wrap .more-btn .close-text {
  display: inline;
}

#more-toggle_1~.foodimg_cont .btn_wrap .more-btn .more-text,
#more-toggle_2~.foodimg_cont .btn_wrap .more-btn .more-text,
#more-toggle_3~.foodimg_cont .btn_wrap .more-btn .more-text {
  display: inline;
}

#more-toggle_1:checked~.foodimg_cont .btn_wrap .more-btn .more-text,
#more-toggle_2:checked~.foodimg_cont .btn_wrap .more-btn .more-text,
#more-toggle_3:checked~.foodimg_cont .btn_wrap .more-btn .more-text {
  display: none;
}

#more-toggle_1:checked~.foodimg_cont .btn_wrap .more-btn .icon,
#more-toggle_2:checked~.foodimg_cont .btn_wrap .more-btn .icon,
#more-toggle_3:checked~.foodimg_cont .btn_wrap .more-btn .icon {
  transform: rotate(180deg);
}



















.visually-hidden {
  position: absolute;
  visibility: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.btn_wrap {
  text-align: center;
}


/* #more-toggle:checked~.foodimg_cont .btn_wrap {
  margin-top: 100px;
} */
#more-toggle_1:checked~.foodimg_cont .btn_wrap,
#more-toggle_2:checked~.foodimg_cont .btn_wrap,
#more-toggle_3:checked~.foodimg_cont .btn_wrap {
  margin-top: 100px;
}




/* slick js arrow  */

.custom-arrow {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  cursor: pointer;
}

.prev-arrow {
  left: -40px;
  /* スライダー外側に配置 */
  background-image: url('../images/prevarrow.svg');
  width: 30px;
}

.next-arrow {
  right: -40px;
  background-image: url('../images/nextarrow.svg');
  width: 30px;
}

.page_3_works .outro .outro_pic {
  background: url(../images/footer_3_sawatomato.jpeg) center center / cover no-repeat;
}


/* page_4_profile */

.page_4_profile {
  text-align: left;
}

.page_4_profile .intro {
  padding: 0 10vw 80px
}

.page_4_profile .menu_name {
  font-size: 2.8rem;
  color: #3D2B26;
  text-decoration: underline 1px;
  text-underline-offset: .3em;
}

.page_4_profile .menu_name::before {
  opacity: 0;
}

.page_4_profile .text_headline {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: 60px;
}

.page_4_profile .profile_text .text {
  margin-left: 0;
  margin-right: 0;
}

.page_4_profileimg {
  width: 70vw;
  display: block;
  margin: 0px auto 40px;
}

.profile_imgwrap {

  background-color: #FAF7F1;
}

.profile_info {
  padding: 0px 10vw 80px;
}

.profile_info .text_headline {
  align-items: center;
  font-size: 1.2rem;
}

.mgr-1 {
  font-size: 1.4rem;
  margin-right: 1.4rem;
}

.profile_info .text {
  line-height: 2.6rem;
  padding-bottom: 100px;
  margin-left: 0;
}

.page_4_profile .outro .outro_pic {
  background: url(../images/footer_4_tsunami.jpeg) center center / cover no-repeat;
}

.page_4_profile .profile_text .flare {
  right: 0;
  top: 70vw;
}

.page_4_profile .profile_text .flare2 {
  display: none;
}


/* page_5_newstop  */

.page_5_newstop .menu_name::before {
  content: "お知らせ";
}

/* ⭐️menu nameの上の空白の開き方修正　個別対応したため、見直す */
.page_5_newstop .menu_name {
  margin-top: -30px;
}

.page_5_newstop .news_list {
  padding-bottom: 120px;
}

.page_5_newstop .outro .outro_pic {
  background: url(../images/footer_5_momovege.jpeg) center center / cover no-repeat;
}

.page_5_newstop .service_text .flare {
  top: 340px;
  right: 0;
}




/* page_6_newsdtl */

.newsdtl_menu_name {
  font-size: 2.8rem;
  padding-top: 120px;
  text-decoration: underline 1px;
  text-underline-offset: .5em;
  font-family: "Lato", "Shippori Mincho B1", YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
}

.page_6_newsdtl h2 {
  font-size: 1.6rem;
  margin-top: 24px;
}

.page_6_newsdtl .newsdtl_hl {
  font-size: 2rem;
  padding: 60px 0 20px 0;
}

.page_6_newsdtl .newsdtl_txt {
  line-height: 1.6;
}

.page_6_newsdtl .newsdtlimg {
  padding: 50px 0 50px 0;
}

.page_6_newsdtl .flare {
  top: 100px;
  right: -3%;
}


/* 
.page_6_newsdtl a.btn1::before {
  content: '';
  position: absolute;
  right: 8em;
  background: url(../images/arrow_left.svg) no-repeat center / 20% auto;
  width: 50px;
  height: 100%;
} */

.page_6_newsdtl .backbtn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid;
  border-radius: 999px;
  cursor: pointer;
  padding: .6rem 1.4rem;
  width: 120px;
  height: 40px;
}

.page_6_newsdtl .backbtn img {
  width: 1rem;
  height: 1rem;
}

.backbtnwrap {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page_6_newsdtl .outro .outro_pic {
  background: url(../images/footer_6_mashroom.jpeg) center center / cover no-repeat;
}




/*  page_7_collaborator  */

.page_7_collaborator {
  background-image: none;
}

.page_7_collaborator .menu_name {
  color: #fff;
  margin-top: -48px;
  margin-left: 10vw;
  font-size: 8rem;
}

.page_7_collaborator .intro {
  padding: 0 10vw 10vw;
}

.page_7_collaborator .menu_name::before {
  content: "関連の皆様";
  top: 240px;
}

.page_7_collaborator .menu_name {
  font-size: 6.8rem;
}

.page_7_collaborator .text {
  margin-left: 10vw;
  margin-top: -40px;
}

.collaboratordtl_wrap {
  padding: 5vw 0 5vw 0;
  text-align: left;
  display: flex;
  gap: 4vw;
  justify-content: center;
}

.collaboratordtl {
  width: 38vw;
  max-width: 300px;
}

.collabmain {
  padding: 60px 10vw 100px;
  background-color: #FAF7F1;
}

.collabimg img {
  width: 38vw;
  height: 38vw;
  max-width: 300px;
  max-height: 300px;
  object-fit: cover;
  object-position: center center;
}

.collabname {
  text-decoration: underline dotted;
  text-underline-offset: 0.2em;
  padding: 1rem .2rem .8rem .2rem;
  width: 38vw;
  max-width: 300px;
}

.collabtxt {
  font-size: 1.3rem;
  line-height: 1.4;
  width: 38vw;
  max-width: 300px;
  padding: .2rem;
}

.collabtxt span {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 6px;
}

.page_7_collaborator .link-row {
  padding: 12vw 0 24px 0;
  position: relative;
}

.page_7_collaborator .offer {
  text-align: center;
  line-height: 1.4;
  padding: 60px 0 0px 0;
  position: relative;
  background-color: #FAF7F1;
}

.page_7_collaborator .btn1 {
  background-color: #D3E07D;
}

.page_7_collaborator .flare {
  top: 480px;
  left: 0;
}

.page_7_collaborator_flare {
  width: 130px;
  position: absolute;
  right: -40px;
  top: 140px;
  animation: flare_rotate 50s infinite;
}

.page_7_collaborator_flare2 {
  width: 130px;
  position: absolute;
  left: -20px;
  top: 0px;
  opacity: .8;
  animation: flare_rotate 50s infinite;
}


.page_7_collaborator .outro .outro_pic {
  background: url(../images/footer_7_uenopork.jpeg) center center / cover no-repeat;
}




/* ページ全体のフェードイン */

.fade-in-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}











/* PC用 */
@media screen and (min-width:960px) {



  /* header */

  header .nav_area .btn1 {
    visibility: visible;
  }

  header {
    background-color: #FAF7F1;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav_area {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    right: 3vw;
  }

  header .hamburger {
    position: relative;
    right: 0vw;
    top: 0px;
  }

  header .hamburger:hover {
    cursor: pointer;
  }

  header a.btn1 {
    margin-top: 0;
    height: 40px;
    display: flex;
    justify-content: space-between;
    background-color: #FAF7F1;
  }

  header a.btn1:hover {
    background-color: #D3E07D;
  }

  header .logolink:hover {
    cursor: pointer;
  }







  /* gnav */

  .footer_nav ul li .btn,
  .gnav ul li .btn {
    background: none;
    transition: .4s;
  }

  .footer_nav ul li .btn:hover,
  .gnav ul li .btn:hover {
    background-color: #D3E07D;
    cursor: pointer;
  }

  .footer_nav ul li .btn .arrow,
  .gnav ul li .btn .arrow {
    transition: transform 0.3s ease;
  }

  .footer_nav ul li .btn:hover .arrow,
  .gnav ul li .btn:hover .arrow {
    transform: translateX(10px);
  }



  /* fv */

  #vegas_sp {
    display: none;
  }

  #vegas_pc {
    display: block;
  }

  .fv p.headline {
    padding: 5vw 10%;
  }

  /* イントロ */

  .intro .flare {
    width: 15%;
  }

  .page_headline {
    padding: 80px 10vw 60px;
  }

  .intro .text {
    margin-right: 10vw;
  }


  /* home_service */

  .home_service .flare {
    width: 15%;
    right: 5%;
    top: 400px;
  }

  .home_service .service_details {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 180px 0 80px;
  }

  .service_details_1,
  .service_details_2,
  .service_details_3 {
    margin: 0;
  }

  .service_details_1:hover .btn2,
  .service_details_2:hover .btn2,
  .service_details_3:hover .btn2 {
    transform: translateX(15px);
  }

  .service_details_1:hover,
  .service_details_2:hover,
  .service_details_3:hover {
    cursor: pointer;
  }

  .service_details_1:hover .btn2 span,
  .service_details_2:hover .btn2 span,
  .service_details_3:hover .btn2 span {
    background-color: #D3E07D;
  }

  .home_service .service_details_1 img,
  .home_service .service_details_3 img {
    width: 17vw;
    height: 26vw;
  }

  .home_service .service_details_1 img {
    border-radius: 14vw 0 0 0;
  }

  .home_service .service_details_2 img {
    width: 26vw;
    height: 22vw;
    border-radius: 0 16vw 0 0;
  }

  .home_service .service_details_3 img {
    border-radius: 0 14vw 0 0;
  }

  .home_service .service_details_2 {
    margin: 0;
    padding-top: 40px;
    width: 26vw;
    height: 22vw;
  }

  /* .home_service .btn2 span {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D3E07D;
    transition: 0.4s;
    ⭐️本当にいらないか再度確認する
  } */

  .page_2_service .btn2 span {
    border: 2px solid #D3E07D;
  }


  .page_3_works .btn2::before,
  .home_service .btn2::before,
  .page_2_service .btn2::before {
    animation: none;
  }

  .btn2 span:hover {
    animation: none;
  }

  .newschild:hover {
    cursor: pointer;
  }

  .newschild:hover .btn2 {
    transform: translateX(15px);
  }

  .newschild:hover .btn2 span {
    background: #D3E07D;
  }




  /* works */

  .works .flare {
    width: 15vw;
  }

  .works .text {
    margin-left: 10vw;
  }


  /* profile */


  .profile .sv {
    margin: 100px -15vw 0 auto;
    width: 60vw;
  }

  .profile_container .bg {
    width: 180vw;
    height: 1280px;
  }

  .profile .btn1 {
    margin-bottom: 100px;
  }

  .profile .menu_name {
    margin: 10vw 0 0 auto;
  }

  .profile h3 {
    margin-top: 120px;
    margin-left: 5vw;
  }

  .profile_container {
    padding: 0 5vw;
  }

  .profile .flare {
    position: absolute;
    max-width: 140px;
    height: auto;
    top: 30vw;
    left: -3%;
  }

  .profile .text {
    margin-left: 5vw;
  }




  /* home_news */


  .home_news .flare {
    position: absolute;
    width: 140px;
    height: auto;
    top: 10px;
    right: 3%;
  }

  .home_news {
    padding: 80px 20vw;
  }

  /* collaborator */

  .collaborator .text {
    margin-left: 10vw;
  }

  .collaborator .flare {
    width: 13vw;
    height: 13vw;
    top: 250px;
    right: 2vw;
  }

  /* contact */

  input[type="submit"]:hover {
    background-color: #D3E07D;
  }

  input[type="submit"] {
    width: 30vw;
    margin-top: 100px;
  }


  /* footer */


  .footer_nav ul li .btn1 {
    background: none;
    transition: .4s;
  }

  .footer_nav ul li .btn1:hover {
    background-color: #D3E07D;
    cursor: pointer;
  }

  .gnav .gnavnavnm:hover,
  .footer_nav ul .footernavnm {
    transition: .2s;
  }

  .gnav .gnavnavnm:hover,
  .footer_nav ul .footernavnm:hover {
    color: #bebebe;
  }

  .gnav .gnavnavnm:hover img,
  .footernavnm:hover img {
    filter: brightness(0) saturate(100%) invert(89%) sepia(0%) saturate(0%) hue-rotate(23deg) brightness(87%) contrast(90%);
    transition: .2s;
  }




  /* outro */
  .outro .flare1 {
    width: 10vw;
    top: 2vh;
    right: 8vw;
  }

  .outro .flare2 {
    width: 10vw;
    height: 10vw;
    top: 70vh;
    left: 4vw;
  }




  /* .page_2_service */


  .page_2_service .menu_name,
  /* .page_3_works .menu_name, */
  .page_4_profile .menu_name,
  /* .page_5_newstop .menu_name, */
  .page_6_newsdtl .menu_name

  /* .page_7_collaborator .menu_name */
    {
    color: #fff;
    font-size: 6.4rem;
    position: absolute;
    top: 0vw;
    margin: 0;
    padding: 0;
    line-height: 1;
    left: 22vw;
    margin-top: -80px;
  }

  .page_2_service .menu_name::before {
    color: #fff;
      font-size: 1.6rem;
      top: 20rem;
  }

  /* .page_2_service .menu_name::before, */
  .page_5_newstop .menu_name::before,
  .page_7_collaborator .menu_name::before {
    color: #fff;
    font-size: 1.6rem;
    top: 15rem;
  }

  .page_7_collaborator .menu_name::before {
    top: 230px;
  }

  .page_2_service .service_fv img,
  .works_fv img,
  .profile_fv img,
  .news_fv img,
  .collaborator_fv img {
    width: 80vw;
    height: 91.5vh;
    object-fit: cover;
  }


  .page_2_service .service_text .flare {
    top: -80px;
    right: -40px;
  }


  .page_2_service .service_text .flare2 {
    animation: flare_rotate 50s infinite;
    display: block;
    position: absolute;
    left: -8vw;
    width: 14vw;
    top: -600px;
  }

  .service_details_1_cntn,
  .service_details_2_cntn,
  .service_details_3_cntn {
    margin: 0 auto;
  }

  .service_details_3_cntn {
    width: 39.059vw;
  }

  .page_2_service .service_details img,
  .page_3_works .service_details img {
    border-radius: 10%;
    width: 15vw;
    height: 20vw;
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
  }

  .page_2_service .service_details_1,
  .page_2_service .service_details_2,
  .page_2_service .service_details_3,
  .page_3_works .service_details_1,
  .page_3_works .service_details_2,
  .page_3_works .service_details_3 {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    background-color: #fff;
    max-width: 445px;
    padding: 3vw;
    border-radius: 10%;
  }

  .service_details_1_wrap,
  .service_details_2_wrap,
  .service_details_3_wrap {
    width: 16vw;
    padding: 3vw 1.5vw 3vw 1.5vw;
    height: 26vw;
    max-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .service_details a {
    display: block;
    margin: 0 auto;
  }

  .service_details .wrapper {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 40px 0 24px 0;
    max-width: 960px;
  }

  .page_2_service .service_details .txt,
  .page_3_works .service_details .txt {
    margin-top: 0px;
  }

  .page_2_service .text {
    margin-top: -100px;
  }

  .page_2_service .service_no1 .txt,
  .page_2_service .service_no2 .txt,
  .page_2_service .service_no3 .txt {
    max-width: 75vw;
    margin: 40px auto 0;
  }


  .service_details_1_wrap .wtype,
  .service_details_2_wrap .wtype,
  .service_details_3_wrap .wtype {
    line-height: 1.5;
  }

  .service_details_1_wrap .txt,
  .service_details_2_wrap .txt,
  .service_details_3_wrap .txt {
    padding: 10px 0 10px;
  }

  .page_2_service .tags {
    max-width: 75vw;
    margin: 20px auto 60px;
  }

  .page_2_service .service_no1 .headline,
  .page_2_service .service_no2 .headline,
  .page_2_service .service_no3 .headline,
  .page_3_works .works_no1 .headline,
  .page_3_works .works_no2 .headline,
  .page_3_works .works_no3 .headline {
    font-size: 2.2rem;
    text-decoration: underline dotted;
    text-underline-offset: 0.2em;
    line-height: 1.5;
    max-width: 75vw;
    margin: 0 auto;
  }

  .page_2_service .service_no1 .num,
  .page_2_service .service_no2 .num,
  .page_2_service .service_no3 .num,
  .page_3_works .works_no1 .num,
  .page_3_works .works_no2 .num,
  .page_3_works .works_no3 .num {
    font-size: 1.4rem;
  }

  .service_details .txt {
    font-size: 1.4rem;
  }

  .page_2_service .service_details .emp,
  .page_3_works .service_details .emp {
    font-size: 2rem;
  }

  .works_no1 .txt {
    max-width: 800px;
    margin: 10px 5vw 40px;
  }

  .page_3_works .expfood_img .practice_1,
  .page_3_works .practice_2 {
    width: 30vw;
  }


  /* page_3_works */

  .page_3_works .menu_name {
    color: #fff;
    font-size: 6.4rem;
    position: absolute;
    top: 0vw;
    margin: 0;
    padding: 0;
    line-height: 1;
    left: 22vw;
    margin-top: -95px;
  }

  .page_3_works .menu_name::before {
    color: #fff;
  }

  .page_3_works .service_text .flare {
    left: -8vw;
    width: 14vw;
    top: -600px;
  }

  .page_3_works .service_text .flare2 {
    display: block;
    position: absolute;
    left: 72vw;
    width: 12vw;
    top: -60px;
  }

  .page_3_works .works_no1,
  .page_3_works .works_no2,
  .page_3_works .works_no3 {
    padding: 180px 15vw 160px;
  }


  /* page_4_profile */

  .page_4_profile .profile_text .flare2 {
    visibility: visible;
    left: 80vw;
    width: 12vw;
    top: 800px;
  }

  .page_4_profile .menu_name {
    text-decoration: none;
  }

  .page_4_profile .profile_text .text_headline:first-child {
    margin-top: 200px;
  }

  .page_4_profile .text_headline {
    margin-bottom: 40px;
  }

  .page_4_profile .profile_text .text {
    margin-bottom: 100px;
  }

  .profile_text,
  .profile_info {
    width: 70vw;
    margin: 0 auto;
    padding: 0;
  }


  .page_4_profile .profile_text .flare {
    left: 0vw;
    top: 100px;
  }

  .page_4_profile .profile_text .flare2 {
    display: block;
    position: absolute;
    right: 0;
    top: 800px;
    animation: flare_rotate 50s infinite;
  }


  /* page_5_newstop */

  /* ⭐️menu nameの上の空白の開き方修正　個別対応したため、見直す */

  .page_5_newstop .menu_name {
    color: #fff;
    font-size: 6.4rem;
    position: absolute;
    /* top: 0vw; */
    margin: 0;
    padding: 0;
    line-height: 1;
    left: 22vw;
    top: -30px;
    /* margin-top: -80px; */
  }





  .page_5_newstop .intro {
    padding: 0 20vw 40px;
  }

  .page_5_newstop .service_text .flare {
    top: 440px;
    left: 0;
  }

  /*  page_7_collaborator  */

  .page_7_collaborator .menu_name {
    color: #fff;
    font-size: 6.4rem;
    position: absolute;
    top: 0vw;
    margin: 0;
    padding: 0;
    line-height: 1;
    left: 22vw;
    margin-top: -50px;
  }


  .page_7_collaborator .btn1 {
    background-color: #FAF7F1;
    transition: .4s;
  }

  .page_7_collaborator .btn1:hover {
    background-color: #D3E07D;

  }





}