@charset "utf-8";
/* =====================
common
===================== */

/* ↓変数、色・width(コンテンツ幅、余白を%で登録)・指定 */
:root {
    --primary-gray: #DDDED7;
    --primary-white: #ffffff;
    --primary-pink: #C98895;
}

html {
    font-size: 62.5%;
}

body {
    background-color: var(--primary-white);
    color: #2B2B2B;
    font-size: 1.6em;
    font-family: "Noto Serif JP", serif;
    line-height: 1.6;  
}

.container {
  overflow: hidden;
}

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

h1, h2 {
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
}

/* common終了 */

/* ==============================
section header-wrapper
============================== */


/* sp header */
@media screen and (max-width: 768px) {
  .nav__companyname {
    color: #5B5B5B;
  }
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: -1000px;
    bottom: 0;
    width: 100%;
    background: url(../images/sp_nav_back.jpg);
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
  }
  
  .icon {
    width: 24px;
    height: 24px;
  }
  
  .abouticon {
    padding: 0;
  }
  
  .icon-container {
    display: flex;
    justify-content: left; /* 中央揃え */
    padding-left: 12px;
  }
  
  .nav.active {
    transform: translateX(0);
  }
  
  .submenu {
    font-size: 1.4rem;
    line-height: 0;
  }
  
  /* pinkline */
   .menuline {
    position: relative;
    padding-left: 12px;
  }
   .menuline1 {
    position: relative;
    padding-left: 12px;
  }
  
  .menuline::before {
    content:'' ;
    position: absolute;
    left: 0;
    top: 50%;
    bottom: 0;
    transform: translateY(-50%);
    width: 20px; 
    height: 1px; 
    background-color:var(--primary-pink) 
  }
  .menuline1::after {
    content:'' ;
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 0;
    transform: translateY(-50%);
    width: 20px; 
    height: 1px; 
    background-color:var(--primary-pink) 
  }
  
  .open nav {
    left: 0;
  }
  nav .inner {
    padding: 21px;
    background: #ffffff91;
    border-radius: 60px 0px;
    margin-top: -60px;
  }
  
  nav .inner ul li a {
    display: block;
    color: #5b5B5B;
    font-size: 1.6;
    padding: 1em;
    transition-duration: 0.2s;
  }
  nav .inner ul li a:hover {
    background: #e4e4e4;
  }
  
  /* sp トップページでロゴを非表示 */
    .navArea .fv__companyname {
    display: none;
  }
  
  .nav__companyname {
    display: none;
  }
  section.navArea div.nav__header p.nav__companyname {
  display: none;
  }
  
  /*============
  .toggle_btn
  =============*/
  .toggle_btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 101;
  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #5b5b5b;
    border-radius: 4px;
    transition: all .5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background-color: #5b5b5b;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }
  }
  /* sp header nav 終わり */
  
  /* pc header レスポンシブ */
  @media screen and (min-width: 769px) {
    .nav__companyname {
      color: #5B5B5B;
    } 
    .header-wrapper {
      padding: 0 5.3% 0;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000; /* 他の要素より前面に表示 */
    }

    .toggle_btn {
        display: none;
    }
  
   .menuline:first-child {
    display: none;
   }
  
  .navArea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 9px 1%;
  }
  
    /* ナビゲーション全体を横並び */
  .menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px; /* メニュー間の余白 */
    align-items: center;
  }
  
  /* 各メニューアイテム */
  .menuline a {
    text-decoration: none;
    color: #5B5B5B;
    padding: 10px 15px;
    display: block;
  }
  
  /* アイコンの横並び */
  .icon-container {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-left: 13px;
  }
  
  /* アイコン画像 */
  .icon {
    width: 24px;
    height: 24px;
  }

/* マウスオーバーでサブメニュー表示 */
  /* サブメニューの親要素を基準に配置 */
  .menuline1 {
    position: relative; /* サブメニューの絶対配置の基準 */
  }
  
  /* サブメニューを初期状態で非表示 */
  .submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fdfdfd;
    box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.1);
    padding: 37px 60px 37px 42px;
    list-style: none;
    width: 370px;
    height: 200px;
    z-index: 10;
    border-radius: 15px;
  }

  .submenu::after {
    content: "Menu";
    color: #F4F4F4;
    font-family: "Dancing Script";
    font-size: 12rem;
    position: absolute;
    top: -21%;
    left: 33%;
    right: 0;
    bottom: 0;
    filter: opacity(0.9);
    z-index: -1;
  }
  
  .submenu li a {
    display: block;
    padding: 10px;
    color: #2B2B2B;
    text-decoration: none;
    white-space: nowrap;
  }
  
  /* サブメニューをホバーで表示 */
  .menuline1:hover .submenu {
    display: block;
  }

  .submenu {
    display: block; /* `none` ではなく `block` にしておく */
    opacity: 0; /* 初期状態で透明 */
    visibility: hidden; /* 画面リーダーにも非表示 */
    transform: translateY(10px); /* 少し下にずらす */
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.menuline1:hover .submenu {
    opacity: 1; /* 透明度を100%に */
    visibility: visible; /* 表示 */
    transform: translateY(0); /* 元の位置に戻す */
}

  /* マウスオーバーでサブメニュー表示　おわり */

  }

/* ==============================
section fv-wrapper
============================== */
#fv {
  padding: 0 0 0 0;
  position: relative;
}

.fv__companyname {
  color: #FDFDFD;
  font-family: "Bodoni Moda";
  font-size: 4rem;
  font-weight: 500;
  line-height: 40px; /* 100% */
  height: 60px;
}

.company {
  position: absolute;
  top: 10px;
  left: 10px;
  line-height: 45px;
}

.sp_fv {
  padding: 0 0 0 5.3%;
}

.fv__companynamesp_fv {
  font-family: "Bodoni Moda";
  position: relative;
  display: inline-block;
  width: 220px;
  height: 220px;
}

.pc_fv {
  display: none;
}

.fv__companyname::before {
  content: "";
  position: absolute;
  top: -10px; /* ずらしたい距離 */
  left: -10px; /* ずらしたい距離 */
  width: 240px; /* 画像より少し大きくする */
  height: 240px;
  background: #DDDED7; /* 目立つ色 */
  z-index: -1;
}

.fv__companyname img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* fv pcレスポンシブ */
@media screen and (min-width: 769px){
  .sp_fv {
    display: none;
  }

  .pc_fv {
    width: 80%;
    margin-left: auto;
    display: block;
    padding: 0 0 0 16.4%
  }

  .company {
    position: absolute;
    top: 54px;
    left: 73px;
    font-size: 16rem;
    line-height: 167px;
  }

  .fv__companyname::before {
    content: "";
    position: absolute;
    top: -90px; /* ずらしたい距離 */
    left: -10px; /* ずらしたい距離 */
    width: 760px; /* 画像より少し大きくする */
    height: 760px;
    background: #DDDED7; /* 目立つ色 */
    z-index: -1;
  }
}

/* ==============================
section about
============================== */
.table {
  padding-top: 66px;
}

.about__wrapper {
  padding: 0 5.3% 024px
}

.about__txt1 {
  padding-top: 50px;
  color: #2B2B2B;
  line-height: 1.5
}

.about__txt {
  padding-top: 28px;
  line-height: 1.5
}

.txt__bold {
  color: #2B2B2B;
  font-weight: 900;
  line-height: 1.5;
}

#about {
  position: relative; /* 擬似要素の絶対配置の基準となる */
  overflow: hidden;
}

#about.about__wrapper::before {
  content: "";
  position: absolute;
  top: 55%;
  left: -17%;
  width: 100%;
  height: 75%;
  background-image: url(../images/about_asirai_1.png); /* イラスト画像のパス */
  background-size: 74%; /* 背景画像を要素全体にフィットさせる */
  background-position: center; /* 画像を中央に配置 */
  background-repeat: no-repeat; /* 画像の繰り返しを防止 */
  z-index: -1; /* 背景画像がコンテンツの下に表示されるように */
  filter: opacity(0.2);
}

#about.about__wrapper::after {
  content: "";
  position: absolute;
  top: -9%;
  left: 36%;
  width: 100%;
  height: 100%;
  background-image: url(../images/sp_about_asirai.png); /* イラスト画像のパス */
  background-size: 30%; /* 背景画像を要素全体にフィットさせる */
  background-position: center; /* 画像を中央に配置 */
  background-repeat: no-repeat; /* 画像の繰り返しを防止 */
  z-index: -1; /* 背景画像がコンテンツの下に表示されるように */
  filter: opacity(0.2);
  transform: rotate(13deg);
}

.table {
  position: relative; /* 擬似要素の絶対配置の基準となる */
}

.table::before {
  content:'' ;
  display: block;
  position: absolute;
  left: 12%;
  top: 49%;
  bottom: 0;
  transform: translateY(-50%);
  width: 100px;  /* 線の太さ */
  height: 1px; /* 文字の高さに合わせる */
  background-color: var(--primary-pink);  /* くすみピンクの色 */
}


.table::after {
  content: "About";
  font-family: "Dancing script";
  font-size: 10rem;
  position: absolute;
  top: -34%;
  left: 45%;
  right: 0;
  bottom: 0;
  filter: opacity(0.03);
  z-index: -1;
}

/* pc about レスポンシブ */
@media screen and (min-width: 769px) {
  .about__wrapper {
    padding-bottom: 230px;
  }

  .about__txt,.about__txt1 {
    text-align: center;
    margin: 0 15% 0;
    line-height: 2.1;
  }

  #about.about__wrapper::before {
    content: "";
    position: absolute;
    top: 49%;
    left: -24%;
    width: 100%;
    height: 38%;
    background-image: url(../images/about_asirai_1.png); /* イラスト画像のパス */
    background-size: 35%; /* 背景画像を要素全体にフィットさせる */
    background-position: center; /* 画像を中央に配置 */
    background-repeat: no-repeat; /* 画像の繰り返しを防止 */
    z-index: -1; /* 背景画像がコンテンツの下に表示されるように */
    filter: opacity(0.3);
  }
  
  #about.about__wrapper::after {
    display: none;
  }

  .table {
  font-size: 4.2rem;
  text-align: center;
  }

  .table::before {
    left: 18%;
    top: 79%;
    transform: translateY(-50%);
    width: 120px;  /* 線の太さ */
    height: 1px; /* 文字の高さに合わせる */
  }

  .table::after {
    font-size: 26rem;
    top: -73%;
    left: 62%;
    filter: opacity(0.03);
    z-index: -1;
  }
}
/* pc about レスポンシブ 終わり*/

/* ==============================
section service
============================== */
.pcbr {
  display: none;
}

.service__wrapper {
  position: relative; /* 疑似要素を配置するため */
  background: rgba(221, 222, 215, 0.50);
  padding: 0 5.3% 0;
}

.service__wrapper::before,
.service__wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px; /* ぼかしの高さを調整 */
}

.service__wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.service__wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.service {
  position: relative;
  margin-top: 126px;
}

.service::before {
  content: "Service";
  font-family: "Dancing script";
  font-size: 10rem;
  position: absolute;
  top: -248%;
  left: -5%;
  right: 0;
  bottom: 0;
  filter: opacity(0.03);
  z-index: 0;
}

.service::after {
  content: "";
  position: absolute;
  left: 69%;
  top: 50%;
  width: 80px;  /* 線の太さ */
  height: 1px; /* 文字の高さに合わせる */
  background-color: var(--primary-pink);
}

.service__content {
  margin-top: 32px;
}
.service_txt {
  margin-top: 10px;
}

.service__inner {
  padding-bottom: 43px;
}

.p-h3-container {
  display: flex;
  align-items: center; /* 垂直方向で中央揃え */
  gap: 10px; /* 画像とテキストの間隔 */
}

.p-h3-container img {
  width: 30px; /* アイコンのサイズ */
  height: auto;
}

.p-h3-container h3 {
  margin: 0; /* h3 のデフォルトのマージンをリセット */
}

.sen {
width: 100%;
height: 1px;
background-color: var(--primary-pink); 
}

.txt-line {
  padding-top: 20px;
  display: flex;
  justify-content: end;
  align-items: end;
}


/* btn */

.btn {
  margin: 33px auto;
  height: 40px;
  border-radius: 30px;
  background-color: var(--primary-pink);
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.txt-line a {
  color: #2b2b2b; /* 通常時の文字色 */
  text-decoration: none; /* 下線を消す（必要なら） */
  transition: color 0.3s ease-in-out; /* 色がスムーズに変わる */
}

.txt-line a:hover {
  color: var(--primary-pink); /* ホバー時の文字色 */
}

.btn_txt {
  color: var(--primary-white);
}

@media screen and (min-width: 1600px) {
  .table::before {
    left: 21%;
  }
}
@media screen and (min-width: 2000px) {
  .table::before {
    left: 26%;
  }
}

/* pc service レスポンシブ */
@media screen and (min-width: 769px) {
 .service {
  font-size: 3.8rem;
  }

  .pcbr {
    display: block;
  }

  .service__inner {
    margin: 0 25.7% 0;
  }

  .service::before {
    font-size: 26rem;
    position: absolute;
    top: -393%;
    left: -5%;
    right: 0;
    bottom: 0;
    filter: opacity(0.03);
    z-index: 1;
  }

  .service::after {
    left: 58%;
    top: 50%;
    width: 100px;  
    height: 1px;
    background-color: var(--primary-pink);
  }

  .service__icon {
    height: 80%;
  }

  .servicename {
    font-size: 2.4rem;
  }

  .p-h3-container {
    display: flex; /* 横並び */
    align-items: center; /* 縦の位置を中央揃え */
    gap: 20px; /* 要素間の間隔 */
    margin-top: 70px;

  }

  .txt-line {
  padding-top: 20px;
  display: flex;
  justify-content: end;
}

  .txt {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .sen {
    margin-top: 8px;
    }
  
  .btn {
    border-radius: 30px;
    width: 300px;
    margin: 61px auto;
  }
}

.txt-line. {
  color: #2b2b2b; /* 初期の文字色 */
  transition: color 0.3s ease; /* 色の変化を滑らかに */
}

.text-line:hover {
  color: var(--primary-pink); /* ホバー時の文字色 */
}



/* pc serviceレスポンシブ　おわり */


/* ==============================
section profile
============================== */
.profile__inner-pc {
  display: none;
}

.profile__wrapper {
  padding-bottom: 60px;
}

.color {
  position: relative;
  background: rgba(221, 222, 215, 0.50);
  padding: 10px 5.3% 60px;
}

.color::before,
.color::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 13%; 
}

.color::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.color::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
/* ぼかしおわり */

.profile {
  padding-top: 121px;
  position: relative;
}

.profile::before {
  content:'' ;
  display: block;
  position: absolute;
  left: 8%;
  top: 88%;
  bottom: 0;
  transform: translateY(-50%);
  width: 80px;  /* 線の太さ */
  height: 1px; /* 文字の高さに合わせる */
  background-color: var(--primary-pink);  /* くすみピンクの色 */
}

.profile::after {
  content: "Profile";
  font-family: "Dancing script";
  font-size: 10rem;
  position: absolute;
  top: 4%;
  left: 38%;
  right: 0;
  bottom: 0;
  filter: opacity(0.03);
  z-index: -1;
}

.profile__photo {
  margin: 50px 0;
  box-shadow: 13px 10px 11px rgba(221, 222, 215, 1.4);
}

.title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.9
}

.title__inner {
  width: 90%;
  margin: 0 auto;
  
}

.name {
  font-size: 1.8rem;
  line-height: 2.1;
}

.born {
  font-size: 1.4rem;
  line-height: 3.1;
  margin-left: 13px;
}

.name-born {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 13px;
  }

.name-born::after {
  content:'' ;
  display: block;
  position: absolute;
  left: 20%;
  top: 83%;
  bottom: 0;
  transform: translateY(-50%);
  width: 200px;  /* 線の太さ */
  height: 2px; /* 文字の高さに合わせる */
  background-color: var(--primary-gray);
}

.title-container {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 26px;
}

.skill {
  line-height: 1.6;
  padding-bottom: 15px;
}

/* pc profile レスポンシブ */
@media screen and (min-width: 769px) {
  .profile-container {
    display: flex;
    align-items: flex-end; /* 写真とテキストの底辺を揃える */
}

  .namebox {
      margin-left: 20px; /* 写真との間隔 */
      padding-bottom: 12px;
  }

  .name {
    font-size: 2.4rem;
    line-height: 2.1;
  }

  .skilllist {
    margin-left: 12.6%;
  }
  .title-container {
    margin-left: 12.6%;
  }

  .name-born::after {
    left: 16%;
    top: 83%;
    bottom: 0;
    transform: translateY(-50%);
    width: 260px;
    height: 2px; 
    background-color: var(--primary-gray);
  }

  .profile__wrapper {
    padding-bottom: 100px;
  }
  .profile__photo {
    max-width: 400px;
    margin: 42px 0 20px;
  }

  .title {
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.4;
  }

  .profile {
    font-size: 3.8rem;
    padding-top: px;
  }

  .title__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 936px;
    margin: 0 auto;
  }

  .skill {
    padding-bottom: 0;
  }

  .profile::after {
    font-size: 26rem;
    position: absolute;
    top: -3%;
    left: 55%;
    right: 0;
    bottom: 0;
    filter: opacity(0.03);
    z-index: 0;
  }

  .profile::before {
    content:'' ;
    display: block;
    position: absolute;
    left: 33%;
    top: 85%;
    bottom: 0;
    transform: translateY(-50%);
    width: 100px;  /* 線の太さ */
    height: 1px; /* 文字の高さに合わせる */
    background-color: var(--primary-pink);  /* くすみピンクの色 */
  }
}

/* pc profile レスポンシブ おわり*/

/* ==============================
section instagram
============================== */


/* SP版用 */
@media (max-width: 767px) {
  .snapwidget-widget-pc {
    display: none !important;
  }
}

/* .snapwidget-widget-sp {
  height: 300px;
} */

#instagram{
  padding: 0;
}

.instagram {
  font-size: 2.4rem;
  position: relative;
  padding-bottom: 50px;
  margin-top: 9px;
}

.instagram::before {
  content: "Instagram";
  font-family: "Dancing script";
  font-size: 10rem;
  position: absolute;
  top: -93%;
  left: 0;
  right: 0;
  bottom: 0;
  filter: opacity(0.03);
  z-index: 0;
}

.instagram::after {
  content: "";
  position: absolute;
  left: 75%;
  top: 23%;
  width: 80px;  /* 線の太さ */
  height: 1px; /* 文字の高さに合わせる */
  background-color: var(--primary-pink);
}

.insta_icon {
  width: 24px;
  height: 24px;
}

.insta_light {
  padding: 0;
}

.btn_txt__insta {
  padding-left: 6px;
  color: var(--primary-white)
}


/* pc instagram レスポンシブ */
@media screen and (min-width: 769px) {
  /* PC版用 */
  /* .snapwidget-widget-sp {
    display: none;
  } */

  .instagram::before {
    content: "Instagram";
    font-family: "Dancing script";
    font-size: 26rem;
    position: absolute;
    top: -194%;
    left: -1%;
    right: 0;
    bottom: 0;
    filter: opacity(0.03);
    z-index: 0;
  }

  .instagram::after {
    content: "";
    position: absolute;
    left: 61%;
    top: 26%;
    width: 100px;  /* 線の太さ */
    height: 1px; /* 文字の高さに合わせる */
    background-color: var(--primary-pink);
  }

  .instagram {
    font-size: 3.8rem;
    margin-top: 189px;
    padding-bottom: 65px;
  }

  .snapwidget-widget {
    display: flex;
    margin: 0;
  }

}

/* pc instagram レスポンシブ おわり */

/* ==============================
section contact
============================== */

.contact {
  font-size: 1.8rem;
  padding-top: 51px;
}

/* btn */
.btn__contact1 {
  margin: 36px auto;
  height: 40px;
  border-top-left-radius: 40px; 
  border-bottom-right-radius: 40px; 
  background-color: #E6D5BA;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn__contact1:hover {
  opacity: 0.5;
}
.btn__contact2:hover {
  opacity: 0.5;
}

.btn_txt__contact {
  color: #2b2b2b;
  padding-left: 13px;
}

.btn__contact2 {
  margin: 33px auto 65px;
  height: 40px;
  border-top-left-radius: 40px; 
  border-bottom-right-radius: 40px; 
  background-color: #DCE7BB;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* pc contact レスポンシブ */
@media screen and (min-width: 769px) {
  .contact {
    font-size: 2.4rem;
    padding-top: 110px;
  }

  .btn__contact1 {
    height: 50px;
    margin-right: 14px;
  }
  
  .btn:hover {
    opacity: 0.5;
  }
  
  .btn__contact2 {
    height: 50px;
    margin-left: 14px;
  }

  .btn_line {
    display: flex;
    align-items: unset;
    justify-content: center;
  }
}
/* pc contact レスポンシブ おわり*/


/* ==============================
section footer
============================== */
footer {
  background-color: rgba(221, 222, 215, 0.50);
  padding: 20px;
}

.brand {
  color: #5B5B5B;
  font-family: "Bodoni Moda";
  padding-top: 15px;
}

.footer-menu{
  padding-top: 30px;
  color: #5B5B5B;
}
.copyright{
  padding-top: 41px;
  color: #5B5B5B;
  font-size: 1.2rem;
  padding-bottom: 46px;
  text-align: center;
}

.footer-icon {
  width: 13%;
  height: 13%;
  padding-right: 16px;
}

.footer-innermenu {
  font-size: 1.3rem;
  line-height: 20px;
  margin-top: 10px;
}
 
/* footer レスポンシブ*/
@media screen and (min-width: 769px) {
footer {
  background-color: rgba(221, 222, 215, 0.50);
  padding: 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.footer-section {
  flex: 1;
  text-align: left;
}

.copyright {
  margin-top: 0;
  text-align: right;
  margin-right: 7.9%;
}
.brand {
  padding-top: 29px;
}
}



