@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  font-feature-settings: "palt";
  letter-spacing: 0.1rem;
  line-height: 1.4;
  margin: 0 auto;
}

p{
  line-height: 1.9;
}

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

.font-sm {
  font-size: 1rem;
}
.font-bl {
  font-size: 1.8rem;
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
}

.container__nav {
  width: 75%;
  margin: 10px auto 20px;
}


.container__nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.container__nav .line {
  margin-right: -30px;
}

.nav {
  z-index: 10;
}

.hero {

}
.hero > h2 {
  position: relative;
  z-index: 99999;
  margin-bottom: 0;
}
.hero > ul {
  position: absolute;
  display: flex;
  padding: 10px;
  top: 65%;
  left: 1%;
}
.hero > ul li {
  justify-content: space-between;
  padding: 5px;
  width: 23%;
}

.hero__comment {
  position: absolute;
  color: #fff;
  top: 20%;
  right: 5%;
  text-align: right;
  font-size: clamp(1rem, 4.1vw, 4rem);
  min-height: 0vw;
}
.hero__comment > P {
  text-shadow: 3px 5px 7px #808080;
}

@media (min-width: 980px) {
  .hero > ul {
    top: 75%;
  }

  .hero > ul li {
    margin: 0 30px;
    padding: 10px;
  }
}

/* h2:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #e95377;
} */




h2 {
  display: inline-block;
  margin: 1.5em 0;
  padding: 1.5rem;
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  background: #e95377;
  margin-top: 0;
}

/* ナビゲーションメニュー */

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}



#menu {
  text-align: center;
  background-color: #555;
  color: #fff;
  height: 50px;
  line-height: 50px;
}

.main-nav {
	overflow: hidden;
}

.main-nav-list {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fb78a5;
	position: relative;
}


.main-nav-item {
	text-align: center;
	background: transparent url(../images/white-grade-nav.png) no-repeat top 5px center / 100% 60%;
}

.main-nav-item:first-of-type,
.main-nav-item:last-of-type {
	width: calc(100% - 750px);
}

.main-nav-item:first-of-type {
	background-size: calc(100% - 5px) 60%;
	background-position: top 5px right;
}

.main-nav-contact {
	background-size: calc(100% - 5px) 60%;
	background-position: top 5px left;
	background-color: #d7000e;
}

.main-nav-item a {
	width: 250px;
	height: 100px;
	display: block;
	font-size: 2rem;
	font-weight: bold;
	line-height: 100px;
	color: #FFFFFF;
}

.main-nav-item:first-of-type a {
	margin-left: auto;
	border-left: transparent;
}
.main-nav-item:last-of-type a {
	margin-right: auto;
	border-right: transparent;
}


/* ハンバーガーメニュー
------------------------------------ */
@media screen and (max-width: 767px) {
	body.open {
		overflow: hidden;
	}
	
	.drawer {
    position: fixed;
    top: 17px;
    right: 12px;
    z-index: 40;
	}
	
	.navbar_toggle {
		width: 30px;
		height: 25px;
		position: relative;
	}

	.navbar_toggle_icon {
		position: absolute;
		display: block;
		height: 3px;
		width: 30px;
		background: #1a1311;
		transition: all 0.3s linear 0s;
	} 

	.navbar_toggle_icon:nth-child(1) {
		top: 0;
	}
	.navbar_toggle_icon:nth-child(2) {
		top: 11px;
	}
	.navbar_toggle_icon:nth-child(3) {
		top: 22px;
	}
	
	.navbar_toggle.open .navbar_toggle_icon {
		background: #FFFFFF;
	}

	.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
		top: 11px;
		transform: rotate(45deg);
	}
	.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
		opacity: 0;
	}
	.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
		top: 11px;
		transform: rotate(-45deg);
	}
	
	.main-nav {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 39;
		transform: translateX(100%);
		transition: all 0.3s ease 0s;
	}

	.main-nav.open {
		transform: translateX(0);
    z-index: 2;
	}
	
	.main-nav-list {
		width: 100%!important;
		height: 100%!important;
		flex-direction: column!important;
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    flex-direction: column!important;
    flex-wrap: nowrap!important;
    align-content: center!important; 
	}
	
	.main-nav-item,
	.main-nav-item:first-of-type,
	.main-nav-item:last-of-type {
		width: 100%;
		text-align: center;
		background: none;
	}
	
	.main-nav-item a {
		width: 100%;
		border: transparent;
	}
	
}

@media screen and (max-width: 767px){

  .hero{
    z-index: 1;
  }

  h2 {
    font-size: 1rem;
    padding: 0.7rem;
}
.hero > h2 {
  position: relative;
  z-index: 1;
}
.container__nav .line{
  margin-right: 0;

}

.container__nav .mail{
  margin-right: 0;
  margin-left: -5px;
}
.container__nav .logo{
  margin-left: -30px;
}
}

h3 {
  width: 95%;
  margin: 20px auto 0;
  font-size: 2rem;
  padding: 1rem;
  width: 80%;
  margin-top: 0;
  background: linear-gradient(
    0deg, #e95377 0%, #e95377 72%, white 100%);
        color: #fff;
        padding-top: 2rem;
}

@media screen and (max-width: 767px){
  h3{
    font-size: 1.6rem;
}

}
/* h3:before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1.3rem;
  background-color: #fff;
  position: absolute;
  top: 19px;
  left: 13px;
} */
h3 img {
  height: 18px;
  width: auto;
  padding-right: 5px;
}
h3 > p {
  color: #fff;
  font-size: 1.3rem;
}

.slider {
  width: 100%;
  margin: 0 auto;
  margin-bottom:5rem;
}

img {
  width: 100%;
}

.slick-slide {
  height: auto !important;
}

.slick-next {
  right: 0 !important;
}

.slick-prev {
  left: 0 !important;
}

.slick-arrow {
  z-index: 2;
  width: 300px !important;
  height: 300px !important;
}

.slick-arrow:before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-next:before {
  background: url(../../images/arrow_right.png) !important;
  background-size: contain !important;
}

.slick-prev:before {
  background: url(../../images/arrow_left.png) !important;
  background-size: contain !important;
}

.slick-arrow {
  width: 20px !important;
  height: 20px !important;
}

.research {
  display: flex;
  justify-content: center;
  margin: 10px 30px 0;
  margin-top: 2rem;
    margin-bottom: 2rem;
}
.research__child {
  display: flex;
  width: 450px;
  margin: 0 auto;
}
.research__child--inner1 {
  flex: 1;
  color: #e95377;
  font-size: 0.9rem;
  padding: 10px 10px 5px 5px;
  border-bottom: 1px dotted #e95377;
  background-color: rgba(233, 83, 119, 0.1);
}
.research__child--inner2 {
  color: #e95377;
  font-size: 1rem;
  width: 20px;
  padding: 5px 10px 5px 0;
  border-bottom: 1px dotted #e95377;
  border-right: 1px dotted #e95377;
  background-color: rgba(233, 83, 119, 0.1);
}
.research__child--inner3 {
  color: #e95377;
  font-size: 1rem;
  width: 20px;
  padding: 5px 10px 5px 0;
  border-bottom: 1px dotted #e95377;
  background-color: rgba(233, 83, 119, 0.1);
}
.research__child--inner4 {
  color: #e95377;
  font-size: 1rem;
  width: 20px;
  padding: 5px 10px 5px 0;
  border-right: 1px dotted #e95377;
  background-color: rgba(233, 83, 119, 0.1);
}
.research__child--inner5 {
  flex: 1;
  font-size: 0.9rem;
  color: #e95377;
  padding: 10px 10px 5px 5px;
  background-color: rgba(233, 83, 119, 0.1);
}
.research__child--inner6 {
  color: #e95377;
  font-size: 1rem;
  width: 20px;
  padding: 5px 10px 5px 0;
  background-color: rgba(233, 83, 119, 0.1);
}

@media screen and (max-width: 767px){
  .research_box {
    width: 100%;
}
.research__child {
  width: 100%;
  margin: 0 auto;
}

.research__child--inner1,.research__child--inner5{
  font-size: 1.2rem;
    font-weight: bold;

}

}





@media (min-width: 950px) {
  .research__child--inner1, .research__child--inner5 {
    font-size: 1.6rem;
    padding: 20px 120px 20px 30px;
  }

  .research__child--inner2, .research__child--inner2, .research__child--inner3, .research__child--inner4, .research__child--inner6 {
    font-size: 1.5rem;
    padding: 20px 40px 20px 10px;
    width: 40px;
  }
}
.text-c2 {
  text-align: center;
}

.wrapper {
  max-width: 63%;
  margin: 0 auto;
}

.sentence {
  margin: 20px 0 10px;
  padding-bottom: 2rem;
}

.center {
  text-align: center;
}

.text-p {
  color: #e95377;
  text-align: center;
  font-size: 3rem;
    padding: 0.5rem;
}

.text-c {
  text-align: center;
  margin-bottom: 10px;
}

.bom {
  font-weight: 600;
  margin-bottom: 10px;
}

.alljapan {
  margin-bottom: 20px;
  background-image: url(../images/sora.jpg);
  height: 350px;
}

.alljapan > h2 {
  position: absolute;
  top: -8%;
  display: inline-block;
  margin: 1.5em 0;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  background: #e95377;
}
.alljapan > h2:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #e95377;
}
.alljapan__inner1 {
  color: #e95377;
  font-size: 2.1rem;
  text-align: center;
  font-weight: bold;
}
.alljapan__inner2 {
  color: #e95377;
  font-size: 1.1rem;
  text-align: center;
}
.alljapan__inner3 {
  background: #e95377;
  background: linear-gradient(0deg, #f39800 0%, #f39800 72%, white 100%);
  border: solid 4px #f39800;
  color: #fff;
  margin: 0 auto;
  padding: 5px 30px;
  width: 400px;
  text-align: center;
  margin-top: 2rem;
}

.text-p2 {
  color: #e95377;
  text-align: center;
  font-size: 1.8rem;
  margin: 20px 0;
}

.text-p2 p {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
}

.spacer {
  margin-top: 20px;
}

.spacer2 {
  margin-bottom: 20px;
}

.sp{
  display: none;
}

@media screen and (max-width: 767px){
  .spacer2 h3 {
  margin-bottom: 1rem;
}
.text-p {
  line-height: 1.2;
}

.alljapan_text {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.alljapan_text p{
  line-height: 1.4;
}

.alljapan__inner1 h2 {
  font-size: 1.5rem;
  padding: 0.7rem;
}

.alljapan__inner3 {
  width: 80%;
  text-align: center;
  margin-top: 2rem;
}

.sentence{
  padding-bottom: 0;
}
.wrapper {
  max-width: 85%;
  margin: 0 auto;
}

.sp{
  display: block;
}
.chosa__indivi {
  padding: 1.2rem;
  margin-bottom: 2rem;
}
}

.chosa {
  background-color: #fffeee;
}
.chosa__read {
  color: #e95377;
  text-align: center;
  font-size: 2.4rem;
  margin: 20px 0;
  font-weight: bold;
  padding: 2rem;
}


@media screen and (max-width: 767px){
  .chosa__read {
    margin-bottom: -2rem;
  }
}


.chosa__indivi {
  display: flex;
  flex-direction: column;
}
.chosa__text {
  color: #f39800;
}
.chosa__comment {
  font-size: 0.3rem;
  padding-bottom: 10px;
  border-bottom: 1px dotted #5e5e5e;
  margin-bottom: 10px;
}
.chosa__btn {
  background: linear-gradient(0deg, #f39800 0%, #f39800 72%, white 100%);
  border: solid 4px #f39800;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  padding: 10px 20px;
  margin: 30px 0;
}

@media (min-width: 350px) {
  .chosa__btn {
    font-size: 1.2rem;
  }
}
@media (min-width: 480px) {
  .chosa__btn {
    font-size: 1.4rem;
  }
}
@media (min-width: 700px) {
  .chosa__btn {
    font-size: 1.6rem;
  }
}
@media (min-width: 900px) {
  .chosa__btn {
    font-size: 1.8rem;
  }
}
.office__text {
  color: #e95377;
  text-align: center;
  font-size: 1.8rem;
  margin: 20px 0;
}
.office__spacer {
  margin-bottom: 50px;
}

.call__h2--out {
  position: relative;
}

.call__h2 {
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 30px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  background: #e95377;
  margin-bottom: 300px;
}
.call__h2:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #e95377;
}

.call {
  position: relative;
}

.call__freed--bk {
  width: 60%;
}

@media (min-width: 360px) {
  .call__freed--bk {
    width: 60%;
  }
}
@media (min-width: 360px) {
  .call__freed--bk {
    width: 60%;
  }
}
@media (min-width: 400px) {
  .call__freed--bk {
    width: 62%;
  }
}
@media (min-width: 470px) {
  .call__freed--bk {
    width: 65%;
  }
}
@media (min-width: 510px) {
  .call__freed--bk {
    width: 65%;
  }
}
@media (min-width: 630px) {
  .call__freed--bk {
    width: 58%;
  }
}
@media (min-width: 780px) {
  .call__freed--bk {
    width: 50%;
  }
}
.call__freed--bk2 {
  position: absolute;
  top: 80px;
  left: 15%;
}

@media (min-width: 360px) {
  .call__freed--bk2 {
    top: 70px;
    left: 15%;
  }
}
@media (min-width: 400px) {
  .call__freed--bk2 {
    top: 70px;
    left: 15%;
  }
}
@media (min-width: 645px) {
  .call__freed--bk2 {
    top: 62px;
    left: 15%;
  }
}
@media (min-width: 645px) {
  .call__freed--bk2 {
    top: 62px;
    left: 25%;
  }
}
.call__freed--annai {
  width: 25%;
}

@media (min-width: 360px) {
  .call__freed--annai {
    width: 30%;
  }
}
@media (min-width: 400px) {
  .call__freed--annai {
    width: 32%;
  }
}
@media (min-width: 440px) {
  .call__freed--annai {
    width: 35%;
  }
}
@media (min-width: 480px) {
  .call__freed--annai {
    width: 35%;
  }
}
@media (min-width: 1040px) {
  .call__freed--annai {
    width: 26%;
  }
}
@media (min-width: 1040px) {
  .call__freed--annai {
    width: 24%;
  }
}
@media (min-width: 1040px) {
  .call__freed--annai {
    width: 23%;
  }
}
.call__freed--annai2 {
  position: absolute;
  top: 0;
  right: -77%;
}

@media (min-width: 360px) {
  .call__freed--annai2 {
    top: 0;
    right: -73%;
  }
}
@media (min-width: 400px) {
  .call__freed--annai2 {
    top: 0;
    right: -63%;
  }
}
@media (min-width: 420px) {
  .call__freed--annai2 {
    top: 0;
    right: -59%;
  }
}
@media (min-width: 440px) {
  .call__freed--annai2 {
    top: -5px;
    right: -53%;
  }
}
@media (min-width: 480px) {
  .call__freed--annai2 {
    top: -5px;
    right: -49%;
  }
}
@media (min-width: 510px) {
  .call__freed--annai2 {
    top: -5px;
    right: -45%;
  }
}
@media (min-width: 540px) {
  .call__freed--annai2 {
    top: -5px;
    right: -39%;
  }
}
@media (min-width: 645px) {
  .call__freed--annai2 {
    top: -5px;
    right: -29%;
  }
}
@media (min-width: 645px) {
  .call__freed--annai2 {
    top: -5px;
    right: -19%;
  }
}
@media (min-width: 645px) {
  .call__freed--annai2 {
    top: -5px;
    right: -9%;
  }
}
@media (min-width: 1040px) {
  .call__freed--annai2 {
    top: -5px;
    left: 60%;
  }
}
@media (min-width: 1080px) {
  .call__freed--annai2 {
    top: -1px;
    left: 60%;
  }
}
@media (min-width: 1120px) {
  .call__freed--annai2 {
    top: 0px;
    left: 60%;
  }
}
@media (min-width: 1158px) {
  .call__freed--annai2 {
    top: -3px;
    left: 60%;
  }
}

.call__btn {
  background: linear-gradient(
    0deg, #f39800 0%, #f39800 72%, white 100%);
        border: solid 4px #f39800;
        border-radius: 10px;
        font-size: clamp(1.8rem, 3.3vw, 4rem);
        min-height: 0vw;
        color: #fff;
        padding: 30px 20px;
        text-align: center;
        margin: 10px auto 20px;
        width: 90%;
        width: 90%;
        margin-top: 3rem;
}

.text-f {
  font-size: 4rem;
}

.btn2 {
  background: linear-gradient(0deg, #e95377 0%, #e95377 72%, white 100%);
  border: solid 4px #e95377;
  border-radius: 10px;
  font-size: clamp(1.6rem, 3.3vw, 4rem);
  min-height: 0vw;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.call > h2 {
  display: inline-block;
  margin: 1.5em 0;
  padding: 1.5rem;
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  background: #e95377;
  margin-top: 0;
}
.call > h2:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #e95377;
}

@media (min-width: 545px) {
  .call > h2 {
    top: 0px;
  }
}

.annai-pic {
  width: 50%;
  margin: 0 auto;
  position: relative;
  top: -60px;
}



.yubi__last {
  width: 60%;
  margin: 0 auto;
}

.call__ladys--text {
  color: #e95377;
  text-align: center;
  font-size: 0.7rem;
}

.call__ladys--phone {
  background-color: #e95377;
  padding: 5px 20px;
  text-align: center;
  font-size: 1.7rem;
  color: #fff;
  border-radius: 50px;
  margin-top: 10px;
}

.call__ladys--flex {
  display: flex;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.call__ladys--flex2 {
  padding: 10px;
}

.call {
  position: relative;
}
.call__info--black {
  display: flex;
}
.call__fb {
  display: block;
  width: 35%;
  height: auto;
  margin-top: 100px;
  top: 3000 0px;
}
.call__black {
  line-height: 25px;
  font-size: 2.3rem;
  margin-top: 10px;
  margin-left: 10px;
}
.call__black--inner {
  display: flex;
}
.call__black--inner > img {
  width: 10%;
  height: auto;
}
.call__black--inner > p {
  font-size: 2rem;
}

.call__free--d {
  line-height: 25px;
  font-size: 5rem;
  margin-top: 10px;
  margin-left: 10px;
}

.free-d-img6 {
  width: 7%;
}

.black {
  margin: 50px;
}

.call__black--inner {
  display: flex;
  margin: 0 30px;
}

@media screen and (max-width: 767px){
  .annai-pic {
    width: 80%;
    margin: 0 auto;
    position: relative;
    top: -40px;
}
.call > h2:before {
  content: "";
  position: absolute;
  top: 190%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #e95377;
}
.call__btn {
  padding: 10px 20px;
}
.call__ladys--flex {
  width: 90%;
  margin: 0 auto;
}
.yubisashi > h2 {
  margin: 1.1em 0;
}

.yubi__last {
  width: 90%;
  margin: 0 auto;
}
.slick-dotted.slick-slider {
  margin-top: 0;
  margin-bottom: 20px;
  z-index: 1;
}

}


.aaa {
  width: 5%;
}

.a {
  display: flex;
  flex: 1;
}

.news__sapacer {
  margin-top: 300px;
}

.yubisashi {
  position: relative;
}

.yubisashi > h2 {
  display: inline-block;
  margin: 1.5em 0;
  padding: 1.5rem;
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  background: #e95377;
  margin-top: 0;
  position: relative;
}
.yubisashi > h2:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #e95377;
}


.free-d-img2 {
  position: absolute;
  width: 35%;
  height: auto;
  font-size: 10rem;
  top: -5px;
  left: 220px;
}

.text-free {
  font-size: 0.5rem;
  margin-left: 10px;
  margin-bottom: 15px;
}

.yubisashi__out {
  position: absolute;
  top: -82px;
  right: -250px;
}

.yubisashi__in {
  width: 35%;
}

.yubisashi__0120 {
  width: 80%;
  margin-top: 100px;
  padding-left: 0;
}

@media (min-width: 445px) {
  .lyubisashi__0120 {
    width: 80%;
    margin-top: 90px;
    padding-left: 0;
  }
}
.line5 {
  position: absolute;
  width: 100%;
  top: 11%;
}

.spacer3 {
  margin: 30px 0;
}

.free-d3 {
  line-height: 20px;
  font-size: 2.3rem;
  margin-top: 10px;
  margin-left: 10px;
  color: #e95377;
}

.free-d4 {
  line-height: 20px;
  font-size: 1.8rem;
  margin-left: 10px;
  color: #e95377;
}

.free-flex2 {
  display: flex;
  margin-top: 20px;
}

.free-d-img3 {
  width: 20%;
  height: auto;
  font-size: 10rem;
}

.sodan {
  width: 30%;
  height: auto;
}

.info {
  color: #2aa798;
  padding: 5px 10px 3px 10px;
  border-bottom: 1px dotted #2aa798;
  border-left: 8px solid #2aa798;
  margin-bottom: 10px;
}
.info > P:first-of-type {
  color: #000;
}

.free-d5 {
  line-height: 25px;
  font-size: 2.6rem;
  margin-top: 10px;
  margin-left: 10px;
}

.free-d-img5 {
  width: 13%;
  height: auto;
  font-size: 10rem;
}

.text-free5 {
  font-size: 0.5rem;
  margin-left: 10px;
  margin-bottom: 15px;
}

.btn2 > p:nth-of-type(2) {
  font-size: 0.7rem;
}

.free-d6 {
  line-height: 23px;
  font-size: 2.6rem;
  margin-top: 10px;
  margin-left: 10px;
}

.spacer3 {
  margin: 30px 0;
}

.footer {
  font-size: 0.3rem;
  margin-top: 30px;
  color: #808080;
  text-align: center;
}


.footer_logo {
  width: 30%;
  height: auto;
  text-align: center;
  margin: 30px 0;
}

.copy {
  font-size: 0.1rem;
}

.spacer5 {
  margin-top: 30px;
}

.footer__flex {
  display: flex;
  flex-flow: column;
}

@media screen and (max-width: 767px){


.footer_logo {
  width: 50%;
  height: auto;
  text-align: center;
  margin: 30px 0;
}
.copy {
  font-size: 1rem;
  color: black;
}
}





@media (min-width: 640px) {
  .footer__flex {
    justify-content: space-between;
    display: flex;
    align-content: space-around;
    flex-wrap: wrap;
    flex-direction: row;
  }
}

@media (min-width: 841px) {
  body {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */