@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Montserrat:wght@100&display=swap");
html {
  font-size: 62.5%; }

p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 1.5px; }
  @media (max-width: 1200px) {
    p {
      font-size: 1.7rem; } }
  @media (max-width: 768px) {
    p {
      font-size: 1.5rem; } }

a:link, a:visited, a:hover, a:active {
  text-decoration: none; }

body {
  margin: 0; }

ul, li {
  list-style: none; }

a {
  color: black; }

h2 {
  font-size: 3.5rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 20px auto 50px;
  font-family: 'Noto Sans JP', sans-serif; }
  @media (max-width: 1200px) {
    h2 {
      font-size: 3rem; } }
  @media (max-width: 768px) {
    h2 {
      font-size: 2rem;
      margin: 20px 20px 50px; } }
  @media (max-width: 400px) {
    h2 {
      font-size: 1.7rem;
      margin: 20px 20px 50px; } }

.center {
  text-align: center; }

.kome {
  font-size: 1.4rem;
  line-height: 1.5; }
  @media (max-width: 768px) {
    .kome {
      font-size: 1.2rem; } }

/*スマホだけ改行*/
.mobil-br {
  display: none; }
  @media (max-width: 768px) {
    .mobil-br {
      display: block; } }

/*1文字ずつ出現させる動き*/
.eachTextAnime span {
  opacity: 0; }

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards; }

@keyframes text_anime_on {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
a.a_blue {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  text-decoration: underline;
  color: #8EC6F0; }
  @media (max-width: 1200px) {
    a.a_blue {
      font-size: 2rem; } }
  @media (max-width: 768px) {
    a.a_blue {
      font-size: 1.5rem; } }

.a_blue_wapper {
  width: 80%;
  margin: 0 auto;
  padding: 10% 0 0; }

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  background-color: white;
  top: 0;
  z-index: 999; }
  @media (max-width: 768px) {
    .header_inner {
      height: 66px; } }

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 40px; }
  @media (max-width: 768px) {
    .logo {
      padding: 10px 0 10px 10px;
      margin: 0; } }

.logo p {
  line-height: 1;
  font-weight: 400; }
  @media (max-width: 768px) {
    .logo p {
      font-size: 1.3rem; } }

.logo img {
  width: 400px;
  height: auto;
  margin: 0 20px 0 0; }
  @media (max-width: 768px) {
    .logo img {
      width: 250px;
      height: auto;
      margin: 0 10px 0 0; } }

.tel {
  margin: 0 40px 0 0; }
  @media (max-width: 768px) {
    .tel {
      display: none; } }

.tel p {
  font-size: 2.9rem;
  font-family: 'Noto Sans', sans-serif;
  margin: 15px 0; }

.tel span {
  font-size: 1.2rem;
  color: #707070;
  border: 1px solid #707070;
  border-radius: 13px;
  padding: 3px 10px;
  vertical-align: middle;
  margin: 0 15px 0 0; }

/*電話スマホ版*/
.tel_sp {
  display: none; }
  @media (max-width: 768px) {
    .tel_sp {
      display: block;
      background-color: #53A1DA;
      margin: 0;
      padding: 10px 20px 10px 20px; } }

.tel_ph {
  width: 22px; }

.tel_ph img {
  width: 100%;
  height: auto; }

#top {
  /*headerを全画面で見せる*/
  width: 100%;
  height: 100vh;
  position: relative; }
  @media (max-width: 1200px) {
    #top {
      height: 80vh; } }
  @media (max-width: 930px) {
    #top {
      height: 1000px; } }
  @media (max-width: 720px) {
    #top {
      height: 900px; } }
  @media (max-width: 600px) {
    #top {
      height: 700px; } }
  @media (max-width: 450px) {
    #top {
      height: 500px; } }
  @media (max-width: 400px) {
    #top {
      height: 470px; } }

#top:before {
  /*headerの疑似要素に背景画像を指定*/
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url("../img/top.jpg") no-repeat center;
  /*背景画像設定※オリジナル画像を設定してください*/
  background-size: cover; }
  @media (max-width: 1200px) {
    #top:before {
      height: 80vh; } }
  @media (max-width: 930px) {
    #top:before {
      background: url("../img/top_sp.jpg") no-repeat center;
      background-size: cover;
      height: 1000px;
      top: 60px; } }
  @media (max-width: 720px) {
    #top:before {
      height: 900px; } }
  @media (max-width: 600px) {
    #top:before {
      height: 700px; } }
  @media (max-width: 450px) {
    #top:before {
      height: 500px; } }
  @media (max-width: 400px) {
    #top:before {
      height: 470px; } }

main {
  /*下のかぶさるエリアの指定*/
  position: relative;
  z-index: 1;
  /*以下はレイアウトのための記述。削除可能*/
  background: #fff;
  padding: 10px 0; }

h1 {
  color: white;
  font-size: 3rem;
  position: fixed;
  top: 50%;
  left: 30%;
  transform: translateY(-50%) translateX(-50%);
  line-height: 3;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'Noto Sans JP', sans-serif; }
  @media (max-width: 1200px) {
    h1 {
      left: 20%; } }
  @media (max-width: 900px) {
    h1 {
      font-size: 2.8rem;
      top: 40% !important; } }
  @media (max-width: 500px) {
    h1 {
      font-size: 1.8rem;
      top: 250px !important;
      left: 90px; } }

.wrapper {
  text-align: center;
  margin: 250px auto; }
  @media (max-width: 768px) {
    .wrapper {
      margin: 90px auto; } }

.belife {
  width: 200px;
  height: auto;
  margin: 20px 0; }

.house {
  background-color: #ECEFF2;
  text-align: center;
  padding: 100px 0; }

.house img {
  width: 90%;
  height: auto;
  max-width: 1500px; }
  @media (max-width: 768px) {
    .house img {
      width: 95%; } }

.house p {
  font-size: 3rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 20px auto; }
  @media (max-width: 768px) {
    .house p {
      font-size: 1.8rem; } }

.table {
  text-align: center;
  margin: 200px auto 300px; }
  @media (max-width: 768px) {
    .table {
      margin: 100px auto; } }

.table img {
  width: 80%;
  height: auto;
  max-width: 1090px; }
  @media (max-width: 768px) {
    .table img {
      width: 95%; } }

.size {
  width: 80%;
  height: auto;
  max-width: 1090px;
  margin: 30px auto 0; }
  @media (max-width: 768px) {
    .size {
      width: 90%; } }

@media (max-width: 768px) {
  .house_pc {
    display: none; } }

.house_sp {
  display: none; }
  @media (max-width: 768px) {
    .house_sp {
      display: block;
      margin: 0 auto; } }

ul, ol {
  list-style-type: none; }

li.dot::before {
  position: relative;
  top: -4px;
  left: -18px;
  display: inline-block;
  width: 11px;
  height: 11px;
  content: '';
  border-radius: 100%;
  background: #8EC6F0; }

li.dot {
  margin: 15px 0 15px 18px;
  letter-spacing: 4px;
  font-size: 2.5rem; }
  @media (max-width: 768px) {
    li.dot {
      margin: 10px 0 10px 18px;
      letter-spacing: 2px;
      font-size: 14px; } }

.list {
  text-align: center;
  margin: 50px auto; }

.list-items {
  text-align: left;
  display: inline-block; }

.point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 90%;
  max-width: 1090px;
  margin: 80px auto 0; }
  @media (max-width: 768px) {
    .point {
      display: block; } }

.point_inner {
  width: 30%; }
  @media (max-width: 768px) {
    .point_inner {
      width: 100%;
      margin: 0 0 60px; } }

h3 {
  color: white;
  background-color: #8EC6F0;
  text-align: center;
  font-size: 3rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 10px 0; }
  @media (max-width: 1200px) {
    h3 {
      font-size: 2.5rem; } }
  @media (max-width: 768px) {
    h3 {
      font-size: 2rem; } }

.point_inner p {
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 1px; }
  @media (max-width: 768px) {
    .point_inner p {
      font-size: 1.5rem; } }

/*== ある暮らし設定 */
.life {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 80%;
  max-width: 1090px;
  margin: 80px auto; }
  @media (max-width: 768px) {
    .life {
      margin: 50px auto; } }

.life_inner {
  width: 32%;
  margin: 0 0 50px; }
  @media (max-width: 768px) {
    .life_inner {
      width: 45%;
      margin: 0 0 30px; } }

.life_inner p {
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  margin: 15px 0; }

.life_inner img {
  width: 100%;
  height: auto; }

.comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 80%;
  max-width: 1090px;
  margin: 80px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media (max-width: 768px) {
    .comment {
      display: block; } }

.comment p {
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 1px;
  width: 60%; }
  @media (max-width: 768px) {
    .comment p {
      width: 100%;
      font-size: 1.5rem; } }

h4 {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif; }
  @media (max-width: 1200px) {
    h4 {
      font-size: 2.2rem;
      text-align: center; } }
  @media (max-width: 768px) {
    h4 {
      font-size: 2rem;
      text-align: center; } }

.blue {
  background-color: #8EC6F0; }

.blue p {
  font-size: 3rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 20px auto 50px;
  line-height: 1.5;
  color: white;
  padding: 60px 0; }
  @media (max-width: 1200px) {
    .blue p {
      font-size: 2rem; } }
  @media (max-width: 768px) {
    .blue p {
      font-size: 1.6rem; } }

h5 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  margin: 10px 0; }

h6 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin: 25px 0 20px; }
  @media (max-width: 1000px) {
    h6 {
      font-size: 2.5rem; } }
  @media (max-width: 768px) {
    h6 {
      font-size: 2rem; } }

.container_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media (max-width: 768px) {
    .container_01 {
      display: block; } }

.container_ph {
  width: 50%; }
  @media (max-width: 768px) {
    .container_ph {
      width: 90%;
      margin: 0 auto; } }

.container_ph img {
  width: 100%;
  height: auto; }

.container_01 .container_p {
  margin: 0 0 0 10%; }
  @media (max-width: 1500px) {
    .container_01 .container_p {
      margin: 0 5%; } }
  @media (max-width: 768px) {
    .container_01 .container_p {
      width: 90%;
      margin: 0 auto; } }

.copy_blue {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 140px auto;
  color: #8EC6F0; }
  @media (max-width: 1200px) {
    .copy_blue {
      font-size: 2.7rem; } }
  @media (max-width: 768px) {
    .copy_blue {
      font-size: 2rem;
      margin: 50px auto 100px; } }

.container_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-flow: row-reverse; }
  @media (max-width: 768px) {
    .container_02 {
      display: block; } }

.container_02 .container_p {
  margin: 0 10% 0 0; }
  @media (max-width: 1500px) {
    .container_02 .container_p {
      margin: 0 5%; } }
  @media (max-width: 768px) {
    .container_02 .container_p {
      width: 90%;
      margin: 0 auto; } }

.field_title {
  font-size: 3.3rem;
  margin: 15px auto; }
  @media (max-width: 768px) {
    .field_title {
      font-size: 2rem; } }

.field_blue {
  font-size: 1.6rem;
  color: #8EC6F0;
  margin: 20px 0 0; }

.field_black {
  font-size: 1.6rem;
  margin: 0 0 20px;
  line-height: 1.5; }
  @media (max-width: 768px) {
    .field_black {
      font-size: 1.4rem; } }

.field_inner {
  border: 2.5px solid #8EC6F0;
  width: 31%;
  margin: 0 0 35px;
  padding: 0 0 30px; }
  @media (max-width: 1200px) {
    .field_inner {
      width: 48%; } }
  @media (max-width: 768px) {
    .field_inner {
      width: 100%; } }

.blue_hr {
  border-top: 1.5px solid #8EC6F0;
  width: 85%;
  border-bottom: 0;
  border-left: 0; }

.field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 80%;
  max-width: 1090px;
  margin: 80px auto; }
  @media (max-width: 768px) {
    .field {
      display: block; } }

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

.voise_inner_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1090px;
  margin: 80px auto 140px;
  background-color: #DBF0FF; }
  @media (max-width: 768px) {
    .voise_inner_01 {
      display: block; } }

.voise_inner_01 .voise_inner_ph {
  height: 490px;
  margin: -3% 0 0 -3%; }
  @media (max-width: 768px) {
    .voise_inner_01 .voise_inner_ph {
      height: 250px;
      margin: 0 auto;
      text-align: center; } }

.voise_inner_ph img {
  height: 100%;
  width: auto; }
  @media (max-width: 768px) {
    .voise_inner_ph img {
      margin: -20%; } }

.voice_title {
  font-size: 2.4rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important; }
  @media (max-width: 768px) {
    .voice_title {
      font-size: 1.5rem !important; } }

.voice_p p {
  font-size: 1.8rem; }
  @media (max-width: 768px) {
    .voice_p p {
      font-size: 1.4rem;
      line-height: 1.5; } }

.voise_inner_01 .voice_p {
  padding: 50px 50px 50px 80px; }
  @media (max-width: 768px) {
    .voise_inner_01 .voice_p {
      padding: 20px;
      margin: -25% 0 0; } }

.voise_inner_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1090px;
  margin: 140px auto;
  background-color: #DBF0FF;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-flow: row-reverse; }
  @media (max-width: 768px) {
    .voise_inner_02 {
      display: block; } }

.voise_inner_02 .voice_p {
  padding: 50px 80px 50px 50px; }
  @media (max-width: 768px) {
    .voise_inner_02 .voice_p {
      padding: 20px;
      margin: -20% 0 0; } }

.voise_inner_02 .voise_inner_ph {
  height: 490px;
  margin: -3% -3% 0 0; }
  @media (max-width: 768px) {
    .voise_inner_02 .voise_inner_ph {
      height: 250px;
      margin: 0 auto;
      text-align: center; } }

.voice .copy_blue {
  margin: 190px auto 80px; }
  @media (max-width: 768px) {
    .voice .copy_blue {
      margin: 100px auto 120px; } }

.eria {
  text-align: center;
  margin: 50px auto 200px; }
  @media (max-width: 768px) {
    .eria {
      margin: 50px auto 120px; } }

.eria_map {
  width: 80%;
  height: auto;
  max-width: 1090px;
  margin: 150px auto; }
  @media (max-width: 768px) {
    .eria_map {
      width: 95%;
      margin: 10px auto; } }

.eria_map img {
  width: 100%;
  height: auto; }

.eria .copy_blue {
  margin: 140px auto 30px; }

.price {
  line-height: 1;
  font-weight: 400;
  font-family: 'Noto Sans', sans-serif;
  font-size: 4.2rem; }
  @media (max-width: 768px) {
    .price {
      font-size: 3rem; } }

.price span {
  font-size: 2.5rem; }
  @media (max-width: 768px) {
    .price span {
      font-size: 1.5rem; } }

.moniter {
  font-size: 3.5rem;
  color: white;
  background: linear-gradient(60deg, #E18EF0, #1D3CBE);
  border-radius: 40px;
  width: 80%;
  margin: 0 auto;
  box-shadow: 2px 2px 4px gray; }
  @media (max-width: 1400px) {
    .moniter {
      font-size: 2.5rem; } }
  @media (max-width: 1400px) {
    .moniter {
      font-size: 2rem; } }
  @media (max-width: 768px) {
    .moniter {
      font-size: 1.5rem;
      line-height: 1.5;
      padding: 10px 20px 15px;
      margin: 0 auto 30px; } }

.eria .tel p {
  font-size: 4.2rem;
  font-family: 'Noto Sans', sans-serif;
  margin: 45px auto 15px; }
  @media (max-width: 768px) {
    .eria .tel p {
      font-size: 3rem; } }

.eria .tel span {
  font-size: 2rem;
  color: #707070;
  border: 1px solid #707070;
  border-radius: 18px;
  padding: 3px 20px;
  vertical-align: bottom;
  margin: 0; }
  @media (max-width: 768px) {
    .eria .tel span {
      font-size: 1.3rem; } }

.eria .tel {
  display: block; }
  @media (max-width: 768px) {
    .eria .tel {
      margin: 50px auto; } }

.map_pc {
  display: block; }
  @media (max-width: 768px) {
    .map_pc {
      display: none; } }

.map_sp {
  display: none; }
  @media (max-width: 768px) {
    .map_sp {
      display: block; } }

.sns img {
  width: 50px;
  height: 50px;
  margin: 0 15px; }

.question {
  background-color: #ECEFF2; }

.question_title {
  font-size: 3rem;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 20px auto;
  padding: 150px 0 50px; }
  @media (max-width: 768px) {
    .question_title {
      font-size: 2.2rem;
      padding: 80px 0 30px; } }
  @media (max-width: 400px) {
    .question_title {
      font-size: 1.6rem;
      padding: 80px 0 30px; } }

/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 0 160px 0; }
  @media (max-width: 768px) {
    .accordion-area {
      padding: 0 0 100px 0;
      width: 90%; } }

.accordion-area li {
  margin: 20px 0; }

/*アコーディオンタイトル*/
.question .title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: 400;
  padding: 4% 50px 4% 4%;
  transition: all .5s ease; }
  @media (max-width: 768px) {
    .question .title {
      font-size: 1.6rem; } }

.accordion-area h3 {
  color: black;
  background-color: white;
  text-align: left; }

/*アイコンの＋と×*/
.question .title::before,
.question .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333; }

.question .title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg); }

.question .title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg); }

/*　closeというクラスがついたら形状変化　*/
.question .title.close::before {
  transform: rotate(45deg); }

.question .title.close::after {
  transform: rotate(-45deg); }

/*アコーディオンで現れるエリア*/
.box {
  display: none;
  /*はじめは非表示*/
  background: #FAFAFA;
  margin: 0 0 1%;
  padding: 4%; }

.box p:before {
  content: "A.";
  font-size: 2.4rem;
  font-weight: 400;
  margin-right: 10px; }
  @media (max-width: 768px) {
    .box p:before {
      font-size: 1.6rem;
      line-height: 1.8; } }

.question span {
  font-size: 1.3rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300; }
  @media (max-width: 768px) {
    .question span {
      font-size: 1rem; } }

footer {
  /*下のかぶさるエリアの指定*/
  position: relative;
  z-index: 1;
  /*以下はレイアウトのための記述。削除可能*/
  background: #fff;
  padding: 10px 0 0; }

small {
  color: black;
  font-family: 'Noto Sans', sans-serif; }

.copy {
  text-align: center;
  padding: 30px 0;
  background-color: #CDE8FC; }

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 780px;
  margin: 50px auto 80px; }
  @media (max-width: 768px) {
    .info {
      display: block;
      margin: 30px 20px 50px; } }

.info_inner span {
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0 0 0 -11px; }
  @media (max-width: 768px) {
    .info_inner span {
      font-size: 1.6rem; } }

.info_inner p {
  line-height: 1.5; }

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0; }

/*infoエリアをはじめは非表示*/
#info {
  display: none; }

/*モーダルの横幅を変更したい場合*/
.modaal-container {
  max-width: 550px !important; }

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc; }

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666; }

.modaal-wrapper * img {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  -webkit-backface-visibility: hidden;
  vertical-align: bottom; }

.modaal-content-container {
  padding: 0px !important; }
