@charset "utf-8";
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts//noto-sans-jp-v53-japanese-regular.woff2") format("woff2"),
    url("../fonts//noto-sans-jp-v53-japanese-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts//noto-sans-jp-v53-japanese-700.woff2") format("woff2"),
    url("../fonts//noto-sans-jp-v53-japanese-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts//inter-v18-latin-regular.woff2") format("woff2"),
    url("../fonts//inter-v18-latin-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts//inter-v18-latin-700.woff2") format("woff2"),
    url("../fonts//inter-v18-latin-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.animation {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.fade,
.fadeup,
.fadedown,
.fadeleft,
.faderight,
.blur {
  opacity: 0;
}

.fade.animated {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-name: fadein;
  animation-name: fadein;
}
.fadeup.animated {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  -webkit-transform: translateY(20%);
  transform: translateY(20%);
}
.fadedown.animated,
.fadeup.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.fadedown.animated {
  -webkit-animation-name: fadedown;
  animation-name: fadedown;
  -webkit-transform: translateY(-20%);
  transform: translateY(-20%);
}
.fadeleft.animated {
  -webkit-animation-name: fadeleft;
  animation-name: fadeleft;
  -webkit-transform: translateX(-20%);
  transform: translateX(-20%);
}
.fadeleft.animated,
.faderight.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.faderight.animated {
  -webkit-animation-name: faderight;
  animation-name: faderight;
  -webkit-transform: translateX(20%);
  transform: translateX(20%);
}
.blur.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: blur-in;
  animation-name: blur-in;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.text-marker {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fbf3aa),
    to(#fff7ad)
  ) !important;
  background-image: linear-gradient(90deg, #fff7ad, #fff7ad) !important;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 30%;
  display: inline;
  font-weight: 700;
  opacity: 1;
  position: relative;
}
.text-marker.animated {
  background-size: 100% 30%;
}

.bouncein.animated {
  -webkit-animation: bounce 3s ease-in-out infinite;
  animation: bounce 3s ease-in-out infinite;
  opacity: 1;
}

.zoomin.animated {
  -webkit-animation: zoomIn 0.6s ease-in-out;
  animation: zoomIn 0.6s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadedown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadedown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes blur-in {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes blur-in {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.stroke__line {
  height: 70px;
  width: 1px;
  margin: 5% auto;
}

.stroke {
  position: relative;
}
.stroke .border {
  content: "";
  position: absolute;
  opacity: 0;
}
.stroke .border.top,
.stroke .border.bottom {
  width: 100%;
}

.stroke .border.top {
  border-top: 1px solid #4c4948;
  right: 0;
  top: 0;
}
.stroke .border.bottom {
  border-bottom: 1px solid #4c4948;
  left: 0;
  bottom: 0;
}

.stroke .border.right,
.stroke .border.left {
  height: 100%;
}

.animation.animated .border {
  opacity: 1;
}

.stroke .border.right {
  border-right: 1px solid #4c4948;
  right: 0;
  top: 0;
}
.stroke .border.left {
  border-left: 1px solid #4c4948;
  left: 0;
  top: 0;
}

.stroke .border.line-left {
  width: 50%;
  border-bottom: 1px solid #4c4948;
  left: 50%;
  top: 0;
}
.stroke .border.line-right {
  width: 50%;
  border-bottom: 1px solid #4c4948;
  right: 50%;
  top: 0;
}

.stroke .border.down {
  height: 100%;
  border-left: 1px solid #4c4948;
  left: 0;
  top: 0;
}

.stroke.animated .border {
  opacity: 1;
}
.stroke.animated .border.top,
.stroke.animated .border.bottom {
  animation: stroke-width 1.8s;
}
.stroke.animated .border.right,
.stroke.animated .border.left {
  animation: stroke-height 1.8s;
}

.stroke.animated .border.line-left {
  animation: stroke-line-left 1.8s;
}
.stroke.animated .border.line-right {
  animation: stroke-line-right 1.8s;
}

.stroke.animated .border.down {
  animation: stroke-down 1.8s infinite;
}

@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}

@keyframes stroke-line-left {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 50%;
    opacity: 1;
  }
}
@keyframes stroke-line-right {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 50%;
    opacity: 1;
  }
}

@keyframes stroke-down {
  0% {
    height: 0;
    opacity: 0;
  }
  90% {
    height: 90%;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}


body,
html {
  background: #c5b18f;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #040000;
  font-family: Noto Sans JP, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro,
    メイリオ, Meiryo, 游ゴシック, Yu Gothic, ＭＳ Ｐゴシック, MS PGothic,
    sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: normal;
  /* font-weight: 500; */
  line-height: 1.6;
  margin: 0;
  overflow: overlay;
  padding: 0;
  scroll-behavior: smooth;
  color: #4c4948;
}

.svg-symbol {
  display: none;
}
.en,
.number {
  font-family: Inter, Arial, Liberation Sans, Nimbus Sans, Helvetica, sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 1.8rem);
  margin: 0;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 1.5rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.2rem);
}
h4 {
  font-size: clamp(1rem, 2vw, 1rem);
}
p {
  font-size: clamp(1rem, 1vw, 1rem);
  line-height: 2em;
  text-align: justify;
}
a {
  font-size: clamp(1rem, 2vw, 1rem);
  text-decoration: none;
}
a:link,
a:visited {
  color: inherit;
  text-decoration: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
em {
  font-size: clamp(1rem, 1vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: auto;
}

html::-webkit-scrollbar {
  overflow: hidden;
  width: 3px;
}
html::-webkit-scrollbar:horizontal {
  height: 3px;
}
html::-webkit-scrollbar-button {
  display: none;
}
html::-webkit-scrollbar-thumb {
  background: #233454;
}
html::-webkit-scrollbar-corner {
  background: #fff;
}
html::-webkit-scrollbar-track {
  background: transparent;
}

.icon-deco {
  width: 100%;
  height: auto;
  max-width: 768px;
  color: #3498db; /* 好きな色に変更OK */
  display: block;
}

.flip-horizontal {
  transform: scaleX(-1);
}

.flip-vertical {
  transform: scaleY(-1);
}

.main-content {
  -webkit-box-shadow: 7px 7px 11px #00000065;
  box-shadow: 7px 7px 11px #00000065;
  margin: 2% auto 0 auto;
  max-width: 480px;
  overflow: hidden;
  text-align: center;
  width: 100%;
  position: relative;
  background: #edf7ec;
}

@media screen and (max-width: 500px) {
  .main-content {
    margin: 0 auto;
  }
}

.cta__container {
  width: 90%;
  margin: 0 auto;
}
.logo {
  width: 70%;
}
.cta__title {
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-top: 7%;
  margin-bottom: 1%;
}
.cta__discripiton {
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.cta__contact-list {
}

.cta__contact-list-item:nth-child(1) {
  width: 100%;
  margin: 9% auto 10% 0;
}

.cta__contact-list-item:nth-child(2) {
  width: 60%;
  margin: 5% auto;
  font-weight: bold;
  color: #fff;
}

.cta__contact-list-item:nth-child(1) .cta__contact-list-item--style-001 {
  font-size: 2.7rem;
  display: block;
  letter-spacing: 2px;
}
.cta__contact-list-item:nth-child(1) .cta__contact-list-item--style-002 {
  display: block;
  font-size: 0.8rem;
}
.cta__contact-list-item:nth-child(1) .cta__contact-list-item--style-003 {
  font-size: 0.8rem;
}

.cta__contact-list-item--discription-line {
  color: #06c755;
  font-size: 0.7rem;
}

.cta__contact-list-item--link-line {
  display: block;
  background: #06c755;
  box-sizing: border-box;
  padding: 2%;
  border-radius: 5px;
}

.cta__contact-list-item:nth-child(2) img {
  display: inline-block;
  width: 25%;
  vertical-align: middle;
  margin-right: 3%;
}
.cta__contact-list-item:nth-child(2) .cta__contact-list-item--txt-box {
  display: inline-block;
  width: 70%;
  vertical-align: middle;
  line-height: 1.4rem;
  margin-left: -4%;
}
.cta__contact-list-item:nth-child(2) .cta__contact-list-item--style-001 {
  font-size: 0.7rem;
  display: block;
}
.cta__contact-list-item:nth-child(2) .cta__contact-list-item--style-002 {
  display: block;
  font-size: 1.7rem;
  margin-top: 2%;
  margin-bottom: 4%;
}
.cta__contact-list-item:nth-child(2) .cta__contact-list-item--style-003 {
  font-size: 0.9rem;
  display: block;
}

.hero_ {
}
.hero__container {
}

.hero__image {
}
.hero__title {
  width: 100%;
}

.intro {
  padding: 11% 0;
}
.intro__container {
  background: #fff;
  width: 90%;
  margin: 0 auto 8% auto;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 10% 4% 4% 4%;
}
.intro__en-label {
  display: block;
  text-align: center;
  font-size: 0.7rem;
}
.en {
}
.intro__title {
  text-align: center;
  margin: 4% 0;
  line-height: 1;
}
.intro__title--style-001 {
  display: block;
  letter-spacing: 1px;
  margin-bottom: 5%;
}
.intro__title--style-002 {
  display: block;
  font-size: 1.2rem;
  margin: 4% 0 5% 0;
}
.intro__title--style-003 {
  margin-top: 4%;
  display: block;
  letter-spacing: 5px;
}

.intro__list {
  text-align: left;
  margin: 10% auto 0 auto;
  width: 94%;
}
.intro__list-item {
  position: relative;
  margin: 5% 0;
  border-bottom:1px dotted;
  padding:2% 0 5% 0;
}
.intro__list-item--text {
  font-size: 1rem;
  display: inline-block;
  width: 84%;
  vertical-align: top;
}
.intro__list-item--check {
  fill: #89c681;
  width: 1rem;
  margin-right: 8%;
  padding-top: 2%;
  vertical-align: top;
}

.intro__problem {
}
.intro__problem-iamge {
  border-radius: 20px;
  margin: 5% 0;
}
.intro__problem-title {
}
.intro__problem-title--style-001 {
  display: block;
  font-size: 1.2rem;
}
.intro__problem-title--style-002 {
  font-size: 2.5rem;
}
.intro__problem-list {
}
.intro__problem-list-item {
  background: #3c5939;
  margin: 4% 0;
  padding: 4%;
  color: #ffffff;
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: bold;
}
.intro__problem-list-item--text {
}

.intro__cta {
  background: #edf7ec;
  padding-bottom: 2%;
}
.intro__cta-background {
  position: relative;
  margin-bottom: 6%;
}

.intro__cta-title-box {
  position: absolute;
  top: 5%;
  color: #fff;
  text-align: center;
  width: 100%;
}

.intro__cta-title {
  margin: 1% 0 4% 0;
}
.intro__cta-discription {
  text-align: center;
  font-size: 1rem;
  margin: 0;
}

.reason {
}
.reason__container {
  padding: 13% 0;
  background: #ffffff;
  margin-top: -1px;
}

.reason__en-label {
  display: block;
  text-align: center;
  font-size: 0.7rem;
}

.reason__title {
  margin: 2% 0;
  font-size: 1.2rem;
}

.reason__title-style--001 {
  display: block;
  font-size: 2.3rem;
}
.reason__title-style--002 {
  display: block;
  letter-spacing: 4px;
}

.reason__anchor {
  /* border: 1px solid; */
  width: 92%;
  margin: 10% auto;
  padding: 3% 2%;
  box-sizing: border-box;
  position: relative;
  padding-top: 6%;
}
.reason__anchor-title {
  font-size: 1rem;
  background: #fff;
  width: 74%;
  position: absolute;
  top: -27%;
  left: 13%;
}

.reason__anchor-name {
  background: #3c5939;
  color: #fff !important;
  display: inline-block;
  width: 30%;
  border-radius: 50px;
  margin: 5% auto;
  padding: 2%;
  font-size: 0.9rem;
  box-sizing: border-box;
}

.reason__list {
  width: 90%;
  margin: 10% auto;
}
.reason__list-item {
  background: #edf7ec;
  border-radius: 10px;
  margin: 5% 0;
  position: relative;
  padding: 7% 4%;
  box-sizing: border-box;
}
.reason__step-label {
  font-size: 5rem;
  font-weight: bold;
  margin: 5% auto;
  line-height: 1;
  color: #3c5939;
}

.reason__list-item--title {
  text-align: center;
}

.reason__list-item--title .reason__list-item--style-001 {
  display: block;
  font-size: 1rem;
}

.reason__list-item--title .reason__list-item--style-002 {
  display: block;
  font-size: 2rem;
}

.reason-iamge {
  border-radius: 50%;
  width: 80%;
}

.reason__list-item--sub-title {
  font-size: 1rem;
  line-height: 2em;
  background: #3c5939;
  color: #fff;
  border-radius: 50px;
  width: 64%;
  margin: 15% auto 7% auto;
}

.reason__child-list {
  text-align: left;
  margin: 5% auto 0 auto;
  width: 91%;
}

.reason__child-list-item {
  position: relative;
  margin: 3% 0;
}
.reason__child-list-item--text {
  font-size: 1rem;
  display: inline-block;
  width: 90%;
  vertical-align: top;
  line-height: 1.7;
}
.reason__child-list-item--check {
  fill: #89c681;
  width: 1rem;
  margin-right: 2%;
  vertical-align: top;
  padding-top: 2%;
}

.reason__list-item--discription {
  padding: 1px 5%;
  text-align: justify;
  font-size: 1rem;
  width: 100%;
  margin: 5% auto;
  box-sizing: border-box;
}

.center{text-align:center;!impportant}

.staff {
}
.staff__container {
  padding: 10% 0 0 0;
  background: #edf7ec;
}

.staff__en-label {
  display: block;
  text-align: center;
  font-size: 0.7rem;
}

.staff__title {
  margin: 2% 0;
  font-size: 1.2rem;
}


.staff__list {
  margin: 10% auto;
}

.staff__item {
  margin-bottom: 1rem;
}




.staff__list-item:nth-child(even) {
  text-align: right;
}

.staff__list-item:nth-child(even) .staff__image {
  border-radius: 20px 0 0 20px;
  width:90%;
}


.staff__list-item:nth-child(odd)  {
  text-align: left;
  margin: 10% 0;
}
.staff__list-item:nth-child(odd)  .staff__image {
  border-radius: 0 20px 20px 0;
  width:90%;
}

.staff__info {
  text-align: left;
  padding: 2%;
  padding-left:10%;
  box-sizing: border-box;
}

.staff__item:nth-child(even)
  left: 2%;
  bottom: 0;
}
.staff__item:nth-child(odd)  {
  right: 2%;
  bottom: 0;
}

.staff__name {
  font-size: 1.4rem;
}

.staff__name-text--style-001 {
  font-size: 1.4rem;
}

.staff__name-text--style-002 {
  font-size: .8rem;
  /* display:block; */
  color:#89c681;
  margin-left: 2%;
  letter-spacing: 1px;
}

.staff__career {
  font-size: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.staff__career-item {
}

.faq {
}

.faq .stroke .border.bottom {
  border-bottom: 1px solid #4c4948;
  left: 0;
  bottom: 0;
}


.faq__container {
  padding: 5% 0;
  background: #fff;
}

.faq__en-label {
  display: block;
  text-align: center;
  font-size: 0.7rem;
}

.faq__title {
  margin: 2% 0;
  font-size: 1.2rem;
}

.faq__list {
  padding: 0;
  width: 86%;
  list-style: none;
  margin: 12% auto;
}

.faq__item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}


.faq__question,
.faq__answer {
  margin: 0;
  align-items: center;
  margin-bottom: 5%;
}

.faq__list-item--title-question {
  content: "Q";
  background: #3a5637;
  border: 1px solid #3c5939;
  font-weight: 700;
  color: #fff;
  vertical-align: middle;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  line-height: 1.9rem;
  text-align: center;
  font-size: 1rem;
  font-family: Inter, Arial, sans-serif;
  border-radius: 50%;
  box-sizing: border-box;
  margin-right: 3%;
}

.faq__list-item--discription-answer {
  content: "A";
  background: #89c681;
  border: 1px solid #89c681;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  line-height: 1.9rem;
  text-align: center;
  font-size: 1rem;
  font-family: Inter, Arial, sans-serif;
  border-radius: 50%;
  box-sizing: border-box;
  margin-right: 3%;
}

.faq__list-item--title-text {
  display: inline-block;
  width: 85%;
  font-size: 1rem;
  vertical-align: middle;
}

.faq__list-item--discription-text {
  display: inline-block;
  width: 84%;
  font-size: 0.9rem;
  vertical-align: top;
  box-sizing: border-box;
  line-height: 1.7em;
  text-align: justify;
}

.footer {}

.footer__container {
  padding: 10% 0 30% 0;
}

.footer__title {}

.footer__image {width: 70%;}

.footer__list {
  text-align: left;
  width: 87%;
  margin: 10% auto;
  font-size: .9rem;
}
.footer__list-item {
  margin: 4% 0;
}
.footer__list-item:last-child {
  margin-bottom: 0;
}

.footer__list-item--title {
  display: inline-block;
  width: 24%;
  margin-right: 8%;
  background: #89c681;
  color: #FFF;
  text-align: center;
}
span.footer__list-item--text {
  display: inline-block;
  width: 64%;
  vertical-align: top;
  list-style:disc;
}
ul.footer__list-item--text {
  display: inline-block;
  width: 64%;
  vertical-align: top;
  list-style:disc;
  padding-left:20px;
  box-sizing:border-box;
}

.fotter-child-list-item{margin-bottom:5%;}

.footer__map {
  position: relative;
  width: 90%;
  max-width: 500px;
  height: 400px;
  margin: 4% auto;
}
.footer__map--iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer__contact-list {
  display: flex;
  box-sizing: border-box;
  font-weight: bold;
  color: #fff;
  padding: 2% 2%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2%;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  max-width: 480px;
}
.footer__contact-list-item {
  width: 48%;
  box-sizing: border-box;
  padding: 2%;
  border-radius: 5px;
}
.footer__contact-list-item.line {
  background: #06c755;
}
.footer__contact-list-item.tel {
  background: #3c5939;
}

.footer__contact-list-item img {
  display: inline-block;
  width: 25%;
  vertical-align: middle;
}
.footer__contact-list-item--txt-box {
  display: inline-block;
  width: 70%;
  vertical-align: middle;
  line-height: 1.4rem;
  margin-left: -4%;
}
.footer__contact-list-item--style-001 {
  font-size: 0.7rem;
  display: block;
}
.footer__contact-list-item--style-002 {
  display: block;
  font-size: 1.2rem;
  margin-top: 1%;
  margin-bottom: 3%;
}
.footer__contact-list-item--style-003 {
  font-size: 0.7rem;
  margin-top: -5px;
  display: block;
}