@charset "UTF-8";
/*=============================================== index__body */

/*------------------------loading */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  /* background: #99C4BD; */
  background-color: #c5d9d2;/*50%*/
  z-index: 99999;
}
#loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading .loading__logo {
  width: 100%;
}
#loading .loading__logo .img_box {
  text-align: center;
}
#loading .loading__logo .img_box img {
  max-width: 100%;
  max-width: 200px;
  height: auto;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
  opacity: 1;
}
@keyframes fadeUpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*---------------------------Key visual */
.index__body .kv{
  position: relative;
  display: block;
  max-width: 1200px;
  width: 100%;
  padding-top: 100px;/*11.22test*/

  margin: 0 auto;
}
.index__body .kv .text-block{
  position: relative;
}
.index__body .kv .text-block::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  background-image: url(../img/catch-bg-sp.png);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
}
.index__body h2{
  display: block;
  /* font-family: "vdl-admin", sans-serif;
  font-family: "VDL-Admin", "Zen Maru Gothic", "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif; */
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1.5px;
  line-height: 1.23;
  color: #765b46;
}
.index__body .kv .text-block{
  display: flex;
  margin-bottom: 30px;
  flex-direction: column;
  align-items: center
}
.index__body h2.kv__catchphrase{
  font-size: clamp(16px, 6.15vw, 36px);
}
.index__body h2.kv__catchphrase_left{
  position: relative;
  left: -30px;
}
.index__body h2 span.kv__catchphrase_right{
  position: absolute;
  width: 100%;
  top: 35px;
  left: 75px;
}
.index__body h2.kv__subphrase{
  padding-top: 50px;
  margin-bottom: 10px;
  font-size: clamp(14px, 3vw, 36px);/*7.1.16*/

  letter-spacing: 1.5px;
  text-align: center;
  z-index: 99;/*7.1.16*/
}
.index__body .kv .kv__image-me{
  position: absolute;
  width: 35vw;
  width: 33vw;/*11.26 test*/

  left: 55px;
  transition: transform 0.5s ease; 
}
.index__body .kv .kv__greeting{
  text-align: center;
  font-size: clamp(16px, 1vw, 24px);/*11.5*/
  /* font-family: "vdl-admin", sans-serif;
  font-family: "VDL-Admin", "Zen Maru Gothic", "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif; */
  font-weight: 500;
  font-style: normal;
  line-height: 2;
}
.index__body .kv .kv__body_bottom{
  margin-bottom: 100px;
}
.index__body .kv .kv__greeting_first{
  margin-bottom: 20px;
}
.index__body .kv .kv__greeting_second{
  position: relative;
}
.text__break_sp{
  display: inline;
}

/*--- 紙飛行機 ---*/
.index__body .kv .kv__greeting_second::before ,
.index__body .kv .kv__greeting_second::after {
  content: '';
  position: absolute;
  display: inline-block;
  max-width: 1200px;
  width: 80px;
  height: 80px;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
}
.index__body .kv .kv__greeting_second::before {
  top: -220px;
  right: 0px;
  background-image: url(../img/apng-plane-r1.png);
  transform: rotate(25deg);
}
.index__body .kv .kv__greeting_second::after {
  top: 60px;
  left: 0px;
  background-image: url(../img/apng-plane-l1.png);
}
/*--- css-grid ---*/
.index__body .grid-container{
  display: grid;
  gap: 10px;
  justify-content: center;
}
.index__body .grid-container_top{
  grid-template-columns: 94px 94px 94px; /*11.26 test*/
}
.index__body .grid-container_bottom{
  position: relative;
  padding-bottom: 50px;/*11.21test*/
  grid-template-columns: 94px 94px 94px; /*11.26 test*/
  grid-template-rows: repeat(3, auto); /* 3行 11.21test*/
}
.index__body .grid-item{
  position: relative;
  width: 100%;
  height: auto;;
  padding: 12%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, top 0.3s ease; /* トランジションを追加 */
}
.index__body .grid-item_plane {
    left: 65px;
    width: 80%;
    animation: rotate 10s infinite; /* アニメーションの適用 */
}
.index__body .grid-item_light {
  animation: rotate 8s infinite; /* アニメーションの適用 */
}
.index__body .grid-item_gia {
  animation: rotate 6s infinite; /* アニメーションの適用 */
}
@keyframes rotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(20deg);
  }
  20% {
    transform: rotate(-20deg);
  }
  30% {
    transform: rotate(0deg);
  }
}

@media (min-width: 300px) {
  .index__body .grid-container_top{
    grid-template-columns: 90px 90px 90px; /*11.26 test*/
  }
  .index__body .kv .kv__image-me{
    width: 40vw;
    top: 320px;
    /* top: 370px; 7.12.13*/
    left: 20px;
  }
  .index__body .grid-container_bottom{
    grid-template-columns: 90px 90px 90px;
    grid-template-rows: 80px 80px 80px;
  }
}
@media (min-width: 350px) {
  .index__body .kv .kv__image-me{
    width: 33vw;/*11.26 test*/
    top: 385px;
    top: 360px;/*11.21test*/
    top: 345px;/*11.26test*/
    left: 35px;
  }
}
@media screen and (min-width : 450px){
  .index__body .kv .kv__image-me{
    width: 25vw;
    /* width: 33vw; */
    top: 330px;
    left: 50px;
  }
} 
@media screen and (min-width : 560px){
  .index__body .grid-container{
    margin: 0 20px;
  }
  
  .index__body .grid-container_top{
    grid-template-columns: repeat(3, 1fr); /*各列を1fr（等分）で分割*/
  }
  .index__body .kv .kv__image-me{
    width: 30vw;
    top: 530px;
  }
  .index__body .grid-container_bottom{
    grid-template-columns: repeat(3, 1fr); /*各列を1fr（等分）で分割 */
    grid-template-rows: repeat(2, auto); /*2行 */
  }
}
@media screen and (min-width : 650px){
  .index__body .kv .kv__image-me{
    top: 530px;
  }
  .index__body .grid-item_plane {
    left: 130px;
  }
}
@media screen and (min-width : 768px){
  .text__break_sp{
    display: none;
  }
  .index__body .grid-container_bottom{
    display: grid;/*grid-container_bottomを有効にする*/
  }
  .index__body .kv{
    display: flex;
    padding-top: 150px;/*11.22test*/
    justify-content: center;
  }  
  .index__body .kv .kv__body_top{
    position: absolute;
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
    justify-content: center; /*11.22test*/
    align-items: center; /* 縦方向の中央揃え */
    top: 150px;/*11.22test*/
  }
  .index__body .kv .kv__body_bottom{
    position: absolute;
    width: 100%;
    padding-top: 100px;
    top: 400px;
    left: 50%; /* 左からの位置を50%に */ 
    transform: translateX(-50%); /* 左右の中央に揃えるために変換 */
  }
  .index__body .kv .text-block::before {
    content: "";
    position: absolute;
    width: 100%;/*100%超すとスクロールでてしまう*/
    width: 120%;/*11.26 test 100%超すとスクロールでてしまう*/
    height: 50vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  background-image: url(../img/catch-bg-pc.png);
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .index__body .kv .text-block{
    width: 50%;
  }
  .index__body h2.kv__catchphrase{
    font-size: clamp(16px, 3vw, 40px);
  }
  .index__body h2.kv__catchphrase_left{
    position: relative;
    left: -50px;
  }
  .index__body h2 span.kv__catchphrase_right{
    position: absolute;
    width: 100%;
    top: 40px;
    left: 150px;
  }
  .index__body h2.kv__subphrase{
    padding-top: 50px;
    margin-bottom: 10px;
    font-size: clamp(16px, 1vw, 24px);
    letter-spacing: 1.5px;
    text-align: center;
  }
  .index__body .kv .kv__image-me{
    width: 17%;/*11.26test*/
    position: relative; /* positionを相対位置に変更 */ 
    top: 0; /* 上下の調整をリセット */ 
    left: 0; /* 左右の調整をリセット */ 
    transform: rotate(0deg); /* 回転をリセット */
  } 
  .index__body .kv .kv__image-me img{
    width: 100%;
    height: auto;
    display: block;
  }
  .index__body .kv .kv__greeting{
    font-size: clamp(16px, 1.7vw, 24px);/*11.5*/
  }

  /*--- 紙飛行機 ---*/
  .index__body .kv .kv__greeting_second::before {
    top: 100px;
    right: 30px;
  }
  .index__body .kv .kv__greeting_second::after {
    top: -210px;
    left: 30px;
  }  
  .index__body .kv .kv__greeting_second::before ,
  .index__body .kv .kv__greeting_second::after {
    width: 100px;
    height: 100px;
  }

  /*--- css-grid ---*/
  .index__body .grid-container_top{
    grid-template-columns: repeat(7, 1fr); /*各列を1fr（等分）で分割*/
    grid-template-rows: repeat(7, auto); /* 3行 */
  }
  .index__body .grid-container_bottom{
    margin: 0;
    grid-template-columns: none; /* grid-template-columnsをクリアにする */
  }
  .index__body .grid-item{
    padding: 0;
  }
}
@media screen and (min-width : 900px){
  .index__body .kv .kv__body_bottom{
    top: 500px;
  }
}

@media screen and (min-width : 1440px){
  .index__body .kv .kv__body_bottom{
    top: 630px;
  }
  .index__body .kv .kv__greeting_second::before ,
  .index__body .kv .kv__greeting_second::after {
    width: 120px;
    height: 120px;
  }
}

/*--------------------------------about */
.index__body .about{
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
}
.index__body .about__text_top {
  position: relative;
  display: inline-block;
  width: 100%; /* 必要に応じて調整 */
  margin-bottom: 60px;
  text-align: center;
  font-size: 20px;
  /* font-family: "vdl-admin", sans-serif;
  font-family: "VDL-Admin", "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif; */
  font-weight: 500;
  font-style: normal;
  line-height: 2;
}
.index__body .about__text_top .text {
  display: inline-block;
  position: relative;
}
.index__body .about__text_top .text::after {
  content: "";
  position: absolute;
  width: 105%;
  height: 5px;
  left: 0;
  background-color: #99C4BD;
}
.index__body .about__text_top .text::after {
  bottom: 0; 
}
/*--- まる３つ ---*/
.index__body .group-circle {
  position: relative;
  padding-top: 380px;
  margin: 0 auto;
}
.index__body .group-circle .about__item-plus{/*sp時は+非表示*/
  display: none;
}
.index__body .about__item {
  position: absolute;
  display: flex;
  width: 180px;
  height: 180px;
  padding: 10px 20px; 
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(153, 196, 189, 0.7);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3); /* ドロップシャドウを追加 */
}
.index__body .about__item1 {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;
}
.index__body .about__item2 {
  top: 60%;
  left: 50%;
  transform: translate(-95%, -50%); 
  z-index: 2;
}
.index__body .about__item3 {
  top: 60%;
  left: 50%;
  transform: translate(-5%, -50%);
  z-index: 1;
}
.index__body .about__text_middle{
  position: relative;
  max-width: 430px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 16px;
  letter-spacing: -1px;
}
.index__body .about__text_middle li{
  position: relative;
  padding-left: 1.5em;
}
.index__body .about__text_middle li::before{
  position: absolute;
  content: '';
  width:  15px;
  height:  15px;
  left: 0;
  top: 0.5em;
  background-color: #765b46;
  border-radius: 50%;
}
.index__body .about__text_bottom{
  position: relative;
  max-width: 430px;
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 16px;
  letter-spacing: -1px;
@media (max-width: 767px) {
    text-align: left;
  }
}

.index__body .about__item img{
  width: 50px;
  height: auto;
}s
.index__body .about__item h4{
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}
.index__body .about__item p{
  padding: 0 10px;
  font-weight: normal;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: -1.5px;
}
.index__body .about{
  margin-bottom: 120px;
}
  /*--- 紙飛行機 ---*/
  .index__body .about__text_bottom::after {
  content: '';
  position: absolute;
  display: inline-block;
  max-width: 1200px;
  width: 80px;
  height: 80px;
  top: 170px;
  /* right: -40px; スクロールでてしまう*/
  right: -0;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/apng-plane-r1.png);
  transform: rotate(-55deg);
}
@media (max-width: 375px) {
  .index__body .group-circle {
    padding-top: 320px;
  }  
  .index__body .about__item {
    width: 155px;
    height: 155px;
    padding: 10px; 
  }
  .index__body .about__item2 {
    top: 63%;
    left: 50%;
    transform: translate(-95%, -50%); /* 中央から右に25% */
  }
  .index__body .about__item3 {
    top: 63%;
    left: 50%;
    transform: translate(-5%, -50%); /* 中央から左に25% */
  }
  .index__body .about__text_middle,
  .index__body .about__text_bottom{
    font-size: 14px;
  }
  .index__body .about__item img{
    width: 40px;
  }
  .index__body .about__text_bottom::after {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 768px) {
  .index__body .about{
    padding-top: 20px;/*kvが絶対配置のため*/
  }  
  .index__body .about__text_top .text::before {
    display: none; /* PCのときはbefore(改行)を非表示 */
  }
  /*--- まる３つ ---*/
  .index__body .group-circle {
    position: static;
    display: flex;
    padding-top: 0;
    margin-bottom: 50px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .index__body .group-circle .about__item-plus{/*sp時はプラス非表示*/
    display: block;
    width: 25px;
    height: 25px;
  }
  .index__body .about__item {
    position: static;
    margin: 0 auto;
    transform: none;
  }
  /*--- 紙飛行機 ---*/
  .index__body .about__text_bottom::after {
    width: 100px;
    height: 100px;
  }
  /*--- 紙飛行機 ---*/
  .index__body .about__text_bottom::after {
      width: 120px;
      height: 120px;
  }  
}
  @media (min-width: 1200px) {

  .index__body .about__text_top {
    font-size: 24px;
  }
    /*--- まる３つ ---*/
  .index__body .about__item {
    width: 280px;
    height: 280px;
  }
  .index__body .group-circle .about__item-plus{/*sp時はプラス非表示*/
    display: block;
    width: 40px;
    height: auto;
  }.index__body .about__item img{
    width: 100px;
    height: auto;
  }
  .index__body .about__item h4{
    margin-bottom: 20px;
    font-size: 24px;
  }
  .index__body .about__item p{
    font-size: 16px;
  }
    .index__body .about__text_bottom{
    font-size: 20px;
  }
}

/*--------------------------------works */
.index__body .works{
  position: relative;
  margin-bottom: 100px;
}
.works__inner{
  width: 100%;
  height: auto;
  padding-top: 50px;
  overflow: hidden;
  background-image: url(../img/works-bg-sp.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center -50px;
  z-index: -10;
}
.index__body .works .btn{
  margin-bottom: 100px;
}
/*チェキ*/
.works__contents{
  width: 46vw; /*180px*/;
  padding: 10px 0;
  text-align: center;
  background-color: #F2EFE9;
  box-shadow: 0 4px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease-in-out;
}
.works__contents img {
  display: block;
  width: 100%;
  box-shadow: 0 4px 4px rgba(0,0,0,0.1);
}
.works__contents h4 {
  padding-top: 5px;
  color: #765b46;
  font-size: 12px;
  font-weight: bold;
}
.works__contents p {
  color: #765b46;
  font-size: 10px;
  font-weight: normal;
  line-height: 1;
}
.works__contents:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}
  /*--- 紙飛行機 ---*/
  .index__body .works::after {
  content: '';
  position: absolute;
  display: inline-block;
  max-width: 1200px;
  width: 80px;
  height: 80px;
  top: 530px;
  right: -0;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/apng-plane-r1.png);
  transform: rotate(0deg);
}
  /*--- スワイパー ---*/
.index__body .works .swiper {
  /*スライダーの幅と高さを調整*/
  max-width: 1260px;
  width: 100%;
  height: auto;
  padding-top: 50px;
  padding-bottom: 80px;
  margin-bottom: 50px;
}
.index__body .works .swiper-slide {
  flex-shrink: 0;
  width: calc((100% - 10px) / 1.5); /* 余白を考慮してスライドの幅を設定 */
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #765b46;
  font-weight: bold;
}
.index__body .works .swiper-slide img {
  width: 90%; /* 画像の幅をスライドの幅に合わせる */
  height: auto; /* 高さは自動調整 */
  margin: 0 auto;
  object-fit: cover; /* 必要に応じてオプションを選択 */
  aspect-ratio: 1.4 / 1; /* 1.4:1のアスペクト比を維持 */
}
/* 前へ次への矢印消去 */
.index__body .works .swiper-button-prev:after,
.index__body .works .swiper-button-next:after {
  content: "";
}
 /* センター以外のスライド */
.index__body .works .swiper-slide {
  transition: transform 0.3s ease;
}
 /* センターのスライドを拡大 */
.index__body .works .swiper-slide-active {
  transform: scale(1.2);
}
/*ページネーション非アクティブなときのスタイル*/
.index__body .works .swiper-pagination-bullet {
  background: #F2EFE9;
  opacity: 1;
  border-radius: 0;
}
/*ページネーションアクティブなときのスタイル*/
.index__body .works .swiper-pagination-horizontal.swiper-pagination-bullets
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-image: url(../img/light-white@2x.png);
  background-size: cover;
  background-color: transparent;
  background-position: center;
  width: 20px;
  height: 55px;
  margin-bottom: -20px;
}
/*ページネーション間のスペース*/
.index__body .works .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.index__body .works .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 12px);
}
/*位置調整*/
.index__body .works .swiper-horizontal>.swiper-pagination-bullets, 
.index__body .swiper-pagination-bullets.swiper-pagination-horizontal{
  bottom: 0;
}


.swiper-slide.is-active {/*拡大解除の動きを滑らかに(.index__body付けない)*/
  transform: scale(1.2);
}



@media (max-width: 375px) {
  /*チェキ*/
  .works__contents{
    width: 165px;
  }
  .works__contents h4 {
    font-size: 10px;
  }
  .works__contents p {
    font-size: 8px;
  }
  .index__body .works::after {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 768px) {
  .works__inner{
    padding-top: 170px;
    margin-top: -70px;
    background-size: 100% 115%;
    background-image: url(../img/works-bg-pc.png);
  }
  /*チェキ*/
  .works__contents{
    width: 32vw; /*250px*/
    padding: 12px 0;
  }
  /*--- 紙飛行機 ---*/
  .index__body .works::after {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1200px) {
  /*チェキ*/
  .works__contents{
    width: 350px; /*250px*/
  }
}
@media (min-width: 1440px) {
  /*--- 紙飛行機 ---*/
  .index__body .works::after {
    width: 120px;
    height: 120px;
  }
}

/*--------------------------------skills */
.index__body .skills {
  margin-bottom: 100px;
  text-align: center;
}
.index__body .skills-list{
  position: relative;
  display: grid;
  max-width: 600px;  padding: 0 30px;
  margin: 0 auto;
  margin-bottom: 50px;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  justify-items: center;
}
.index__body .skills-list__item{
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border: 5px solid #99C4BD;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
}
.index__body .skills-list__img-container{
  width: 50%;
  height: auto;
}
.index__body .skills-list__item img{
  height: auto;
  width: 100%;
  object-fit: cover; /* 必要に応じてオプションを選択 */
}
.index__body .skills-list__title{
  font-size: 16px;
  line-height: 1.3;
}
.index__body .skills-list__title--bem{
  font-size: 14px;/*見た目の調整*/
}

/*--- 紙飛行機 ---*/
.index__body .skills-list::after {
  content: '';
  position: absolute;
  display: inline-block;
  max-width: 1200px;
  width: 80px;
  height: 80px;
  top: -26px;
  left: -20px;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/apng-plane-l1.png);
  transform: rotate(75deg);
}
@media (max-width: 375px) {
  .index__body .skills-list{
    padding: 0;
  }
  .index__body .skills-list::after {
    width: 80px;
    height: 80px;
    top: 650px;
  }
}
@media (min-width: 768px) {
  /*--- 紙飛行機 ---*/
  .index__body .skills-list::after {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1200px) {
  .index__body .skills-list{
    max-width: 800px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .index__body .skills-list__item{
    width: 140px;
    height: 140px;
  }
  /*--- 紙飛行機 ---*/
  .index__body .skills-list::after {
    width: 120px;
    height: 120px;
  }
}


/*=============================================== about__body */
/*--------------------------------about-greeting */
.about__body .about{
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 150px;
  margin-bottom: 100px;
}
.about__body .about-greeting {
  padding: 0 30px;
  margin-bottom: 100px;
}
.about__body .about-greeting .about__text {
  margin-bottom: 30px;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}
.about__body .about-greeting .about__text_top {
  margin-top: 100px;
}
.about__body .about-greeting .about__text_middle {
  color: #D85564;
}
.about__body .about-greeting .about__text_bottom {
  margin-bottom: 50px;
}

/*--- css-grid ---*/

/* 初期スタイル */ 
.about__body .grid-container_top .grid-item { 
  display: none; /* 初期状態では全て非表示に */ 
} 
.about__body .grid-container_top .grid-item:nth-child(1), 
.about__body .grid-container_top .grid-item:nth-child(2) { 
  display: block; /* スマートフォンで最初の2つを表示 */ 
}
.about__body .grid-container_top,
.about__body .grid-container_bottom{
  display: grid;
  justify-content: center;
}
.about__body .grid-container_top{
  grid-template-columns: 94px 94px; /* 各カラムの幅を指定 */
}
.about__body .grid-container_bottom{
  grid-template-columns: 94px 94px 94px; /* 各カラムの幅を指定 */
}
.about__body .grid-item {
  position: relative;
  border: 2px solid #99C4BD;
  padding: 5px;
  text-align: center;
  z-index: 1;
}
.about__body .grid-container_top .grid-item:nth-child(1) {
  top: 0;
  left: 60%;
  transform: translateX(-50%);
}
.about__body .grid-container_top .grid-item:nth-child(2) {
  top: 50px;
  right: 60%;
  transform: translateX(50%);
}
.about__body .grid-container_bottom .grid-item:nth-child(1) {
  top: 30px;
  left: 70%;
  transform: translateX(-50%);
}
.about__body .grid-container_bottom .grid-item:nth-child(2) {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.about__body .grid-container_bottom .grid-item:nth-child(3) {
  top: -20px;
  right: 70%;
  transform: translateX(50%);
}
@media (max-width: 375px) {
}
@media (min-width: 768px) {
  .about__body h3{
    margin-bottom: 100px;
  }
  .about__body .contact h3{
    margin-bottom: 50px;
  }

  .about__body .about-greeting{
    display: flex;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    flex-direction: row-reverse;
    justify-content: center;
  }
  .about__body .about-greeting__text-container{
    width: 60%;
    padding-left: 30px;
  }
  .about__body .about-greeting .about__text_top {
    margin-top: 0;
  }
  
  /*--- css-grid ---*/
  .about__body .grid-container_top .grid-item { 
    display: block; /* 全ての画像を表示 */ 
  }
  .about__body .grid-container_top{
    width: 40%;
    grid-template-columns: 94px 94px;
    grid-template-rows: 94px 94px 94px;
  }
  .about__body .grid-container_bottom{
    margin: 0;
    display: none;
  }
  .about__body .grid-container_top .grid-item:nth-child(1) {
    top: 0;
    left: 80%;
    transform: translateX(-50%);
  }
  .about__body .grid-container_top .grid-item:nth-child(2) {
    top: 70px;
    right: -70%;
    transform: translateX(-50%);
  }
  .about__body .grid-container_top .grid-item:nth-child(3) {
    top: -15px;
    left: 30%;
    transform: translateX(-50%);
  }
  .about__body .grid-container_top .grid-item:nth-child(4) {
    top: 155px;
    left: -35%;
    transform: translateX(-50%);
  }
  .about__body .grid-container_top .grid-item:nth-child(5) {
    top: -20px;
    right: -35%;
    transform: translateX(50%);
  }
}
@media (min-width: 1200px) {
}
/*--------------------------------about-profile */
body.about__body {
  padding: 0;
  margin: 0;
  overflow-x: hidden; /* 水平方向のスクロールを非表示に */
}
.about__body .about-profile {
  text-align: center;
}
.about__body .about-profile__wrapper {
  position: relative; /* 疑似要素を相対位置で配置するため */
  width: 100%;
  background-color: #99C4BD;
  text-align: center;
}
/*--- wave ---*/
.about__body .profile-wave-container { 
  position: relative;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -5px; /* 波の間の隙間を取り除く */
}
.about__body .profile-wave-container svg { 
  display: block;
  width: 100%;
  height: 100px;
  height: auto;
}
.about__body .profile-wave-container_bottom .flip { 
  transform: scaleX(-1) scaleY(-1); /* 水平方向と垂直方向の両方で反転 */
}
/*--- profile h3 ---*/
.about__body .about-profile .section__title,
.about__body .about-profile .section__subtitle {
  font-size: 20px;
  color: #F2EFE9;
}
.about__body .about-profile .section__title{
  margin-bottom: 20px;/*7.11.24*/
}

.about__body .about-profile h3::before,
.about__body .about-profile h3::after {
  content: none;
}
.about__body .about-profile__inner{
  padding: 0 20px;
}
/*--- 似顔絵 ---*/
.about__body .about-profile__image-container{
  position: relative;
  display: inline-block;
  max-width: 210px;
  margin: 0 auto;
  margin-bottom: 20px;
  z-index: 10;
}
.about__body .about-profile__Portrait{
  position: relative;
  width: 80%;
  padding: 15px 0;
  background-color: #F2EFE9 ;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.about__body .about-profile__image-container::before,
.about__body .about-profile__image-container::after {
  content: '';
  position: absolute;
  display: block;
  width: 80px;
  height: 23px;
  background-color: rgba(216, 85, 100, 0.3);
  transform: rotate(140deg);
  z-index: 5;
  clip-path: polygon(
    0 0, /* 左上隅 */ 
    100% 0, /* 右上隅 */ 
    95% 10%, /* 右側のギザギザ */ 
    100% 20%, 
    95% 30%, 
    100% 40%, 
    95% 50%, 
    100% 60%, 
    95% 70%, 
    100% 80%, 
    95% 95%, 
    100% 100%, /* 右下隅 */ 
    0 100%, /* 左下隅 */ 
    5% 90%, /* 左側のギザギザ */ 
    0 80%, 
    5% 70%, 
    0 60%, 
    5% 50%, 
    0 40%, 
    5% 30%, 
    0 20%, 
    5% 10%
    );
}
.about__body .about-profile__image-container::before {
  top: 0;
  left: -10px;
}
.about__body .about-profile__image-container::after {
  bottom: 0;
  right: -10px;
}
/*--- 自己紹介 ---*/
.about__body .about-profile__text-container{
  display: flex;
  padding: 0 20px;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
.about__body .about-profile__text-container p{
  position: relative; 
  padding-left: 20px; /* ● とテキストの間隔を調整 */ 
  /* font-family: "vdl-admin", sans-serif;
  font-family: "VDL-Admin", "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif; */
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-align: left; 
  line-height: 2;
  color: #F2EFE9;
}
.about__body .about-profile__text-container .text-container__work { 
  margin-bottom: 20px;
}
.about__body .about-profile__text-container .text-container__work p::before { 
  content: '●'; 
  position: absolute;
  color: #F2EFE9;
  left: 0;
}
.about__body .about-profile__text-container .text-container__private { 
  position: relative;
  width: 70%;
  margin: 0 auto;
}
.about__body .about-profile__text-container .text-container__private::before {
  content: ""; 
  position: absolute;
  display: block; 
  width: 80px;
  height: 80px;
  top: 35px;
  left: -73px;
  background-image: url(../img/mamezo.png);
  filter: blur(0.1px); /*背景画像を少しぼかす*/
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-10deg); /* 初期角度を-10度に設定して傾ける */
  animation: sway1 5s infinite; /*アニメーションを適用*/
  z-index: 10;
}
@keyframes sway1 { 
  0% { transform: rotate(-10deg); } 
  50% { transform: rotate(-18deg); } 
  100% { transform: rotate(-10deg); } 
}
.about__body .about-profile__text-container .text-container__private::after {
  content: "";
  position: absolute;
  display: block; 
  width: 80px; 
  height: 80px;
  top: 200px;
  right: -50px;
  background-image: url(../img/anko.png);
  filter: blur(0.1px); /*背景画像を少しぼかす*/
  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleX(-1) rotate(-15deg); /* 初期角度を-10度に設定して傾ける */
  animation: sway2 3s infinite; /*アニメーションを適用 */
  z-index: 10;
}
@keyframes sway2 { 
  0% { transform: scaleX(-1) rotate(-15deg); } 
  50% { transform: scaleX(-1) rotate(-23deg); } 
  100% { transform: scaleX(-1) rotate(-15deg); } 
}
.about__body .about-profile__text-container .text-container__private p{ 
  padding-left: 0;
}
.about__body .about-profile__text-container .text-container__private_spaced { 
  padding-top: 20px;
  margin-bottom: 20px;
  border-top: 2px dashed #F2EFE9; /* 点線の区切りを追加 */ 
}
@media (min-width: 768px) {
  .about__body .profile-wave-container{
    display: none;
  }
  .about__body .about-profile__wrapper{
    display: flex;
    height: 75vw;
    background-color: transparent;
    background-image: url(../img/about-profile-pc.png);
    background-size: 100%;
    background-position-x: 10px;
    background-repeat: no-repeat;
  }
  .about__body .about-profile h3.section__title{
    font-size: 20px;
    text-align: left;
  }
  .about__body .about-profile h3 .section__subtitle {
    display: inline;
    font-size: 12px;
  }
  .about__body .about-profile h3 {
    margin-bottom: 20px;
  } 
  .about__body .about-profile__inner{
    display: flex;
    padding: 0 50px;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
  }
  .about__body .about-profile__image-container{
    width: 20%;
    margin: 0;
  }
  .about__body .about-profile__text-container{
    padding: 0;
    width: 50%;
  }
  .about__body .about-profile__text-container .text-container__private { 
    width: 85%;
    margin: 0 0 0 auto;
  }
  .about__body .about-profile__text-container .text-container__private_spaced { 
    padding-top: 10px;
    margin-bottom: 10px;
  }
  .about__body .about-profile__text-container .text-container__private::before {
    top: 50px;
    left: -90px;
  }
  .about__body .about-profile__text-container .text-container__private::after {
    top: 135px;
    right: 70px;
  }
}
@media (min-width: 1200px) {
  .about__body .about-profile__wrapper{
    height: 780px;
    background-size: 90%;
    background-position: calc(50% + 20px) center;
  }
  .about__body .about-profile__inner{
    justify-content: center;
  }
}


/*=============================================== works__body */
.works__body .works{
  margin-top: 150px;
}
.works__body h3{
  margin-bottom: 100px;
}
.works__body .contact h3{
  margin-bottom: 50px;
}
.works__body .works__container{
  padding: 0 40px;
}
.works__body .works__list{
  display: grid;
  grid-template-columns: 1fr; /* 初期状態は1列 */
  gap: 10px;
}
.works__body .works__item{
  display: flex;
  margin-bottom: 80px;
  flex-direction: column;
  align-items: center;
}
.works__body .works__caption-container{
  display: flex;
  width: 100%;
  flex-direction: column;
}
.works__body .works__caption{
  display: flex;
  margin-bottom: 15px;
  /* font-family: "vdl-admin", sans-serif;
  font-family: "VDL-Admin", "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif; */
  flex-direction: column;
  align-items: center;
}
.works__body .works__caption p{
  font-size: 14px;
  font-weight: 600;
}
.works__body .works__title{
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .works__body .works__title{
    font-size: 22px;
    text-align: left;
  }
}
.works__body .works__subtitle{
  display: block;
  font-size: 14px;
  font-weight: 600;
}
/* @media (min-width: 768px) {
  .works__body .works__subtitle{
    display: inline-block;
    padding-right: 10px;
  }
} */

.works__body .works__item-skill{
  display: flex;
  font-family: "fot-seurat-pron", sans-serif;/*12.9　フォントこれで？*/
  font-size: 12px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.works__body .works__item-skill li{
  padding: 0 9px 2px;
  margin: 3px;
  line-height: 1.6;
  border-radius: 50px;
  color: #F2EFE9;
  background-color: #99C4BD;
}
.works__body .works-arrow{
  position: relative;
  padding-right: 50px;
  padding-bottom: 5px;
  margin: 0 0 0 auto;
  /* font-family: "vdl-admin", sans-serif;
  font-family: "VDL-Admin", "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif; */
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .works__body .works-arrow{
    padding-right: 80px;
  }
}
.works__body .works-arrow:hover{
  opacity: 0.5;
}
.works__body .works-arrow::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px; /* 線の太さ */
  bottom: 0; 
  right: 0;
  background-color: #99C4BD; /* 線の色 */
  transform: rotate(30deg); /* 線を斜めにする */
  transform-origin: right center; /* 回転の基点を設定 */
}
.works__body .works-arrow::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px; /* ラインの高さ */
  bottom: 0;
  left: 0;
  right: 20px; /* 矢印のスペースを確保 */
  background-color: #99C4BD; /* ラインの色 */
}


@media (min-width: 768px) {
  .works__body .works__item{
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .works__body .works__item img{
    width: 40%;
  }
  .works__body .works__caption-container{
    width: 40%;
    padding-left: 50px;
    /* padding-left: 100px; 7.12.13*/
  }  
  .works__body .works__caption{
    align-items: flex-start;
  }
  .works__body .works__item-skill{
    justify-content: flex-start;
  }  
  .works__body .works-arrow{
    margin: 0 auto 0 0;
    /* bottom: -30px; */
  }
}
@media (min-width: 1200px) {
  .works__body .works__list {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    justify-content: space-evenly;
    grid-template-columns: repeat(2, 1fr); /* 幅が広がると2列に変化 */
  }
  .works__body .works__item{
    margin-bottom: 80px;
    flex-direction: column;
    align-items: center;
  }
  .works__body .works__item img{
    width: 80%;
  }
  .works__body .works__caption-container{
    padding: 0;
    width: 80%;
  }
  .works__body .works__caption{
    align-items: center;
  }
  .works__body .works__title{
    text-align: center;
  }

  .works__body .works-arrow {
    margin: 0 50px 0 auto;
    /* bottom: -30px; */
  }
}
/*======================================== works-single__body */
.works-single__body .works-single{
  margin-top: 150px;
}
.works-single .header-title{
  margin-bottom: 80px;
}
.works-single__body .works__container{
  max-width: 1000px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}
.works-single__body .works__item{
  display: flex;
  margin-bottom: 80px;
  flex-direction: column;
  align-items: center;
}
.works-single__body .works__image-container{
  display: flex;
  justify-content: center;
}
.works-single__body .works__logo_large{
  width: 100px;
}
.works-single__body .works__logo_small{
  width: 50px;
}
.works-single__body .works__image-img{
  margin-bottom: 50px;
  margin-left: -20px;/*画像位置調整:*/
}
.works-single__body .works__caption-container{
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.works-single__body .works__title{
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
}
.works-single__body .works__subtitle{
  font-size: 14px;
}
.works-single__body .works__site-type{
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}
.works-single__body .works__caption{
  display: flex;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 50px auto;
  flex-direction: column;
  align-items: center;
}
.works-single__body .works__section{
  display: flex;
  width: 100%;
  margin-bottom: 50px;
  flex-direction: column;
  align-items: flex-start;
}
.works-single__body .works__section-title{
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}
.works-single__body .works__section-title:before{
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  top: 10px;
  left: 0;
  border: solid 1px #99C4BD;
  background-color: #99C4BD;
}
.works-single__body .works__description{
  padding-left: 15px;
  font-size: 16px;
}
/*--- シングルページ　ページャー ---*/
.works-single__body .works__pagination {
  max-width: 1200px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
  text-align: center;
}
.works-single__body .works__pagination-list {
  display: flex;
  padding: 0;
  justify-content: space-between;
  list-style: none;
}
.works-single__body .works__pagination-item {
  font-size: 16px;
  font-weight: 600;
}
/* @media (max-width: 365px) {
  .works-single__body .works__pagination-item {
    font-size: 8px;
    font-weight: 500;
  }
} */
.works-single__body .works__pagination-link {
  position: relative;
  display: block;
  padding: 0 30px;
  text-decoration: none;
  color: #765b46;
  /* color: #D85564; */
}
.works-single__body .works__pagination-link::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 2px;
  bottom: 0; 
  background-color: #765b46;
  transform-origin: left center;
  border-radius: 10px;
}
.works-single__body .works__pagination-link_prev::before {/*前へ*/
  left: 0;
  transform: rotate(-45deg);
  transform-origin: left center;
}
.works-single__body .works__pagination-link_next::before {/*次へ*/
  right: 0;
  transform: rotate(45deg);
  transform-origin: right center;
}
.works-single__body .works__pagination-link::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 2px;
  bottom: 0;
  background-color: #765b46;
  border-radius: 10px;
}
.works-single__body .works__pagination-link_prev::after {/*前へ*/
  left: 0;
}
.works-single__body .works__pagination-link_next::after {/*次へ*/
  right: 0;
}
.works-single__body .works__pagination-link:hover {
  opacity: 0.5;
}
.works-single__body .works__pagination-link_disabled { 
  display: none;
}

/*--- ベーシック認証 ---*/
.works-single__body .works__auth-info{
  display: flex;
  padding: 10px 20px;
  margin-bottom: 50px;
  font-size: 12px;
  flex-direction: column;
  align-items: center;
  border: #F2EFE9 solid 1px;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* ドロップシャドウを追加 */
}
.works-single__body .works__auth-notice{
  margin-bottom: 20px;
}
.works-single__body .works__auth-credentials{
  display: flex;
  width: 100%;
  margin-left: -25px;
  font-size: 14px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.works-single__body .works__auth-icon{
  width: 10%;
  height: 100%;
}
@media (min-width: 768px) {
  .works-single__body .works__container{
    width: 80%;
  }
  .works-single__body .works__title{
    font-size: 24px;
  }
  .works-single__body .works__subtitle{
    font-size: 16px;
  }
  .works-single__body .works__site-type{
    font-size: 16px;
  }
  .works-single__body .works__image-container{
    width: 80%;
  }
  .works-single__body .works__section-title,
  .works-single__body .works__description{
    font-size: 18px;
  }
  }
@media (min-width: 1440px) {
  .works-single__body .works__logo_large{
    width: 120px;
  }
  .works-single__body .works__logo_small{
    width: 50px;
  }  
  .works-single__body .works__title{
    font-size: 36px;
  }
  .works-single__body .works__subtitle{
    font-size: 20px;
  }
  .works-single__body .works__site-type{
    font-size: 18px;
  }
  .works-single__body .works__section-title,
  .works-single__body .works__description{
    font-size: 20px;
  }
}

/*======================================== contact__body*/
/*-----1ページ分のスペースを確保*/
.contact__body { 
  display: flex; 
  flex-direction: column; 
  min-height: 100vh; 
  margin: 0; 
} 
.contact__body .page__main-content { 
  flex: 1; 
} 
/*----------------------------*/

.contact__body .container {
  max-width: 100%;
}
  .contact__body .contact-form {
  max-width: 1200px;
  padding-bottom: 60px;
  margin: 0 auto;
  margin-top: 150px;
}
.contact__body .contact-form .container {
  position: relative;
  width: 90%;
  padding: 50px 30px;
  /* font-family: "vdl-admin", sans-serif;
  font-family: "VDL-Admin", "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif; */
  font-size: 14px;
  line-height: 2;
  background-color: rgba(153, 196, 189, 0.25);
}
.contact__body .contact-form .container::before {
    content: '';
    position: absolute;
    display: inline-block;
    max-width: 1200px;
    width: 60px;
    height: 60px;
    bottom: -25px;
    left: 40px;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/plane.png);
    transform: rotate(0deg);
}
.contact__body .contact-form .container p {
  margin-bottom: 75px;
}
.contact__body .form-control{
  background-color: #F2EFE9;
  /* font-family: "zen-maru-gothic", sans-serif; */
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.contact__body textarea.form-control{
  min-height: 140px;
}
/* ホバー時のスタイルを変更 */
.contact__body input.form-control:hover,
.contact__body textarea.form-control:hover{
  border-color: rgba(85, 71, 57, 0.5); 
  border-width: 3px;
}
/* フォーカス時のスタイル */
.contact__body .form-control:focus,
.contact__body .form-control:focus {
  border-color: rgba(85, 71, 57, 0.7);
  border-width: 3px;
  outline: none; 
}
/* フォーカスが外れた時のスタイル */
.contact__body .form-control:not(:focus),
.contact__body .form-control:not(:focus) {
  border: none
}
/* オートコンプリートのスタイルを変更 */
/* オートコンプリート（自動入力補完）は、ブラウザのシステム機能の一部*/
.contact__body input.form-control:-webkit-autofill,
.contact__body input.form-control:-webkit-autofill:hover,
.contact__body input.form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: #765b46; /* テキストの色 */
  transition: background-color 5000s ease-in-out 0s; /* スムーズな遷移 */
}
/* オートコンプリート選択時のスタイル */
.contact__body input.form-control::selection {
  background-color: rgba(85, 71, 57, 0.7); /* 背景色 */
  color: #765b46; /* テキストの色 */
}

.contact__body .btn{
  margin-top: 65px;
}
/*--- bootstrapの初期値クリア --*/
.contact__body .btn-primary {
  --bs-btn-color: initial;
  --bs-btn-bg: initial;
  --bs-btn-border-color: initial;
  --bs-btn-hover-color: initial;
  --bs-btn-hover-bg: initial;
  --bs-btn-hover-border-color: initial;
  --bs-btn-focus-shadow-rgb: initial;
  --bs-btn-active-color: initial;
  --bs-btn-active-bg: initial;
  --bs-btn-active-border-color: initial;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: initial;
  --bs-btn-disabled-bg: initial;
  --bs-btn-disabled-border-color: initial;
}

.contact__body footer{
  border-top: #99C4BD 6px solid;
}
@media (min-width: 768px) {
  .contact__body .contact-form .container {
    padding: 120px 90px 90px 90px;
    font-size: 16px;
  }
  .contact__body .contact-form .container::before {
    bottom: 350px;
    left: 65px;
}
  .contact__body .contact-form .container p {
    text-align: center;
  }
  .contact__body .mb-3{
    display: flex;
    flex-direction: row;
  }
  .contact__body .form-label{
    width: 35%;
  }
  .contact__body .form-control{
    width: 65%;
  }
}
@media (min-width: 1200px) {
  .contact__body .contact-form .container {
    font-size: 20px;
  }
}

/*======================================== thanks__body*/
/* 送信後のサンクスページ */
.thanks__body {
  display: flex;
  height: 100vh;
  padding: 20px;
  margin: 0;
  justify-content: center;
  align-items: center;
  background-color: #F2EFE9;
  opacity: 1;
}
.thanks__body .thank-you-container {
  position: relative;
  padding: 30px 20px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  border-radius: 10px;
  background-color: rgba(153, 196, 189, 0.5);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.thanks__body .thank-you-container::before {
  content: none; 
}
.thanks__body .thank-you-container::after {
  content: none;
}
.thanks__body .thanks__message,
.thanks__body p{
  display: inline-block;
  /* font-family: "vdl-admin", sans-serif;
  font-family: "VDL-Admin", "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif; */
  text-align: left;
  color: #765b46;
}
.thanks__body .thanks__message{
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}
.thanks__body p{
  margin-bottom: 50px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .thanks__body .thank-you-container {
    padding: 50px;
  }
  .thanks__body .thank-you-container::before {
    content: ""; 
    position: absolute;
    display: block; 
    width: 80px;
    height: 80px;
    top: 210px;
    left: 10px;
    background-image: url(../img/mamezo.png);
    filter: blur(0.1px); /*背景画像を少しぼかす*/
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-10deg); /* 初期角度を-10度に設定して傾ける */
    animation: sway1 5s infinite; /*アニメーションを適用*/
    z-index: 10;
  }
  @keyframes sway1 { 
    0% { transform: rotate(-10deg); } 
    50% { transform: rotate(-18deg); } 
    100% { transform: rotate(-10deg); } 
  }
  .thanks__body .thank-you-container::after {
    content: "";
    position: absolute;
    display: block; 
    width: 70px; 
    height: 70px;
    top: 240px;
    right: 40px;
    background-image: url(../img/anko.png);
    filter: blur(0.1px); /*背景画像を少しぼかす*/
    background-size: contain;
    background-repeat: no-repeat;
    transform: scaleX(-1) rotate(-15deg); /* 初期角度を-10度に設定して傾ける */
    animation: sway2 3s infinite; /*アニメーションを適用 */
    z-index: 10;
  }
  @keyframes sway2 { 
    0% { transform: scaleX(-1) rotate(-15deg); } 
    50% { transform: scaleX(-1) rotate(-23deg); } 
    100% { transform: scaleX(-1) rotate(-15deg); } 
  }
  .thanks__body .thanks__message{
    font-size: 18px;
  }
  .thanks__body p{
    font-size: 14px;
  }
  @media (min-width: 1440px) {
    .thanks__body .thank-you-container {
      max-width: 800px;
    }
    .thanks__body .thank-you-container::before {
      width: 100px;
      height: 100px;
    }
    .thanks__body .thank-you-container::after {
      width: 90px; 
      height: 90px;
    }
      .thanks__body .thanks__message{
      font-size: 24px;
    }
    .thanks__body p{
      font-size: 18px;
    }
  }
}






/*=================================== service*/
.service__intro{
  display: inline-block;
  padding: 0 20px;
  margin: 0 auto 20px auto;
  text-align: center;
  font-size: 18px;
  padding: 5px;
  border-bottom: 3px #765b46 solid;
  @media (min-width: 768px) {
    text-align: center;
    font-size: 20px;
  }
}
.service__body .service__intro{
  font-size: 16px;
  border-top: 5px #99C4BD solid;
  border-bottom: 5px #99C4BD solid;
  text-align: left;
  background-color: rgba(153, 196, 189, 0.2);
  @media (min-width: 768px) {
    font-size: 20px;
  }
}
.service__link{
  font-size: 24px;
  font-weight: 700;
  color: #D85564;
  transition: opacity 0.3s ease-in;
}
.service__link:hover{
  opacity: 0.7;
}

/*=================================== service__body */
.service__body .service{
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 150px;
  margin-bottom: 100px;
}
.service__body .inner{
  padding: 0 20px;
  text-align: center;
}
.service__body .header-title{
  margin-top: 100px;
}
.service__body .contact .header-title{
  margin-top: 0;
}
.service__body .service__subtitle{
  position: relative;
  margin-top: 100px;
  font-size: 20px;
  font-weight: 600;
  z-index: 0;
}
.service__body .service__subtitle:after{
position: absolute;
content: '';
width: 160px;
height: 10px ;
left: 50%;
transform: translateX(-50%);
bottom: -5px;
background-color: #99C4BD;
opacity: 0.3;
z-index: -1;
}
.service__body .service__slash{
  padding: 0 10px;
  font-size: 24px;
  color: #D85564;
}
/*--------------------------------service-details */
.service__details .header-title{
  margin-top: 50px;
}

.service__details .service__list{
  margin-top: 60px;
  text-align: center;
  display: inline-block;
}

.service__details .service__item{
  padding: 10px;
  border: 1px #765b46 solid;
  border: 2px #99C4BD solid;
  border-radius: 10px;
  margin-bottom: 20px;

}
.service__details .service__item-title{
  font-size: 18px;
  font-weight: 600;
  color: #D85564;
  text-align: left;
}
.service__details .service__item-text{
  font-size: 16px;
  text-align: left;
}
/*--------------------------------skills */
.service__body .skills {
  margin-bottom: 60px;
}
.service__body .skills-list{
  position: relative;
  display: grid;
  max-width: 1000px;
  margin: 0 auto;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  justify-items: center;
}
.service__body .skills-list{
  margin-top: 60px;
}

.service__body .skills-list__item{
  width: 100%;
  height: 120px;
  padding: 10px;
  border: 3px solid #99C4BD;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
}
.service__body .skills-list__item-image{
  display: flex;
  width: 30%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.service__body .skills-list__item-icn{
  display: flex;/*12.1test*/
  flex-direction: row;/*12.1test*/
  justify-content: center;
  }

.service__body .skills-list__item-text{
  width: 70%;
  padding-left: 10px;
}
.service__body .skills-list__item-image img{
  max-width: 100%;
  height: 40px; /* 任意の高さに統一 */
  width: auto;  /* 幅は自動調整 */
  object-fit: cover;
}
.service__body .skills-list__title{
  font-size: 14px;
  line-height: 1.3;
}
.service__body .skills-list__title--bem{
  font-size: 13px;
  line-height: 1.3;
}

.service__body .skills-list__item-text p{
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
}

@media (max-width: 375px) {
  .service__body .skills-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
@media (min-width: 768px) {
  .service__body .skills {
    padding: 0 50px;
  }
  .service__body .skills-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media (min-width: 1200px) {
  .service__body .skills-list{
    max-width: 800px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .service__body .skills-list__item{
    height: 250px;
    padding: 15px 20px 20px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .service__body .skills-list__item-image{
    margin-bottom: 30px;
  }
  .service__body .skills-list__item-image img{
    height: 50px; /* 任意の高さに統一 */
  }
  .service__body .skills-list__item-image h4{
    font-size: 14px;
  }
  .service__body .skills-list__item-text{
    width: 100%;
    padding-left: 0;
  }
  .service__body .skills-list__item-text p{
    line-height: 1.5;
  }  
}
/*--------------------------------flow__message*/
.service__body .flow__message{
  display: flex;
  margin-top: 80px;
  margin-bottom: 80px;
  align-items: center;
  flex-direction: row;
  justify-content:center ;
}
.service__body .message__comingsoon p{
  font-size: 18px;
  text-align: center;
}
.service__body .message__comingsoon p:last-child{
  color:#D85564;
}
.service__body .message__peko{
  width: 80px;
}
.service__body .message__peko img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*--------------------------------flow*/
.flow__list{
  position: relative;
  display: grid;
  justify-items: start;
  max-width:740px;
  width: 100%;
  margin:  auto;
  grid-template-columns: 1fr;
  margin-top: 60px;
  padding-left: 48px;
}
.flow__list:before{
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0.5em;
  left: 17px;
  background-color: #99C4BD;
}
.flow__list::after{
  content: '';
  position: absolute;
  display: block;
  width: 36px;
  height: 23px;
  bottom: -12px;
  left: 0.5px;
  background: url('../img/arrow-down.svg') no-repeat;
  background-size: contain;
}

.flow__step-title{
  position: relative;
  font-weight: 600;
}
.flow__step-title::before{
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: -30px;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #99C4BD;
  border-radius: 50%;
}
.flow__step-discriptiom{
  padding-bottom: 20px;
  font-size: 14px;
  text-align: left;
}
.flow__step-discriptiom:last-child{
}
