@charset "utf-8";
/* CSS Document */
.section-top {
  height: 530px;
}
.section-top__image {
  width: 100%;
  height: 100%;
  background-image: url("../image/image_top.jpg");
  background-position: right 30% bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-top__image-message {
  font-family: 'Kiwi Maru', serif;
  color: #FFF;
  text-shadow: 3px 3px 6px #00000029;
  text-align: left;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  animation: fadeIn 5s ease 0.3s 1 normal;
}
.section-top__image-message h2 {
  color: #FFF;
}
@keyframes fadeIn { /*animation-nameで設定した値を書く*/
  0% {
    opacity: 0
  } /*アニメーション開始時は不透明度0%*/
  100% {
    opacity: 1
  } /*アニメーション終了時は不透明度100%*/
}
.section-top__image h2 {
  font-size: 2.0rem;
  line-height: 3.6rem;
  font-weight: 400;
  padding: 60px 0 0 24px;
}

.section-top__image span {
  display: inline-block;
}
.section-top__image p {
  font-size: 1.8rem;
  line-height: 3.0rem;
  padding: 30px 10px 0 24px;
}
@media (min-width:1080px) {
  .section-top {
    height: 1080px;
  }
  .section-top__image {
    background-image: url("../image/image_top.jpg");
    background-position: right bottom;
  }
  .section-top__image h2 {
    font-size: 5.8rem;
    line-height: 10.8rem;
    font-weight: 400;
    padding: 160px auto;
  }
  .section-top__image p {
    font-size: 2.6rem;
    line-height: 4.5rem;
    padding: 30px auto;
  }
}
.section-top__business-guide {
  background-color: #004AB7;
  padding-bottom: 40px;
}
.section-top__business-guide h2 {
  color: #FFF;
  padding: 30px 0;
  margin: 0 auto;
}
.section-business-guide__container {
  margin: 0 auto;
}
.section-top__business-guide__information {
  background-color: #FFF;
  max-width: 327px;
  height: 327px;
  border-radius: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.section-top__business-guide__information img {
  display: block;
  width: 80px;
  height: 65px;
  margin: 60px auto 20px;
}
.section-top__business-guide__information h3 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #1C2469;
  text-align: center;
}
.section-top__business-guide__p {
  font-size: 1.6rem;
  color: #5999E8;
}
.section-top__business-guide__information-link {
  font-size: 2.4rem;
  color: #1C2469;
  display: flex;
  align-content: center;
  margin: 10px auto;
}
.section-top__business-guide__information a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1C2469;
}
.section-top__business-guide__information a:hover {
  opacity: 0.5;
}
.section-top__business-guide__information a:after {
  position: absolute;
  background-color: #1C2469;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}
.section-top__business-guide__information a:hover:after {
  transform: translate(0, 0);
}

.section-top__business-guide__house, .section-top__business-guide__shop {
  background-color: #FFF;
  max-width: 327px;
  height: 130px;
  border-radius: 20px;
  margin: 20px auto;
  display: flex;
  align-items: center;
}
.section-top__business-guide__house img {
  width: 40px;
  height: 40px;
  margin: 0 20px;
}
.section-top__business-guide__house a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-size: 2.0rem;
  font-weight: 600;
  color: #1C2469;
  text-align: left;
}
.section-top__business-guide__house a:hover {
  opacity: 0.5;
}
.section-top__business-guide__house a:after {
  position: absolute;
  background-color: #1C2469;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}
.section-top__business-guide__house a:hover:after {
  transform: translate(0, 0);
}
.section-top__business-guide__shop img {
  width: 35px;
  height: 70px;
  margin: 0 20px;
}
.section-top__business-guide__shop a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-size: 2.0rem;
  font-weight: 600;
  color: #1C2469;
  text-align: left;
}
.section-top__business-guide__shop a:hover {
  opacity: 0.5;
}
.section-top__business-guide__shop a:after {
  position: absolute;
  background-color: #1C2469;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}
.section-top__business-guide__shop a:hover:after {
  transform: translate(0, 0);
}
@media (min-width:1080px) {
  .section-top__business-guide {
    background-color: #004AB7;
    padding-bottom: 110px;
  }
  .section-top__business-guide h2 {
    color: #FFF;
    font-size: 5.4rem;
    padding: 150px 0 100px;
    margin: 0 auto;
  }
  .section-business-guide__container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1080px;
  }
  .section-top__business-guide__information {
    width: 327px;
    height: 415px;
    border-radius: 20px;
    margin: 0 40px 0;
  }
  .section-top__business-guide__information img {
    width: 100px;
    height: 82px;
    margin: 50px auto 0;
  }
  .section-top__business-guide__information h3 {
    font-size: 3.6rem;
    padding: 20px 0 0;
  }
  .section-top__business-guide__information-link{
    font-size: 3.2rem;
    margin: 20px auto;
  }
  .section-top__business-guide__information a {
    font-size: 3.2rem;
  }
 
  .section-top__business-guide__house, .section-top__business-guide__shop {
    max-width: 548px;
    height: 176px;
    display: flex;
    align-items: center;
    margin: 0 0 60px;
    padding-right: 20px;
  }
  .section-top__business-guide__house img {
    width: 100px;
    height: 100px;
    margin: 0 20px;
  }
  .section-top__business-guide__house a {
    font-size: 3.2rem;
    font-weight: 600;
  }
  .section-top__business-guide__shop img {
    width: 50px;
    height: 100px;
    margin: 0 40px;
  }
  .section-top__business-guide__shop a {
    font-size: 3.2rem;
    font-weight: 600;
  }
}
/*お問い合わせ*/
.section-top__information {
  background-color: #FFF;
  padding-bottom: 75px;
}
.section-top__information a:hover {
  opacity: 0.5;
}
.section-top__information h2 {
  color: #004AB7;
  margin: 0 auto;
  padding: 40px 0 10px;
}
.section-top__information-div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.section-top__information-sp {
  display: inline-block;
  text-align: center;
  padding-bottom: 20px;
  font-size: 2.0rem;
}
.section-top__information-pc {
  display: none;
}
.section-top__information-tel {
  width: 75px;
  height: 75px;
  margin: 0 20px;
}
.section-top__information-mail__pc {
  display: none;
}
@media (min-width:1080px) {
  .section-top__information {
    padding-bottom: 150px;
  }
  .section-top__information h2 {
    font-size: 5.4rem;
    padding: 150px 0 40px;
  }
  .section-top__information-pc {
    display: inline-block;
    text-align: center;
    padding-bottom: 40px;
    font-size: 2.4rem;
  }
  .section-top__information-sp {
    display: none;
  }
  .section-top__information-tel {
    display: none;
  }
  .section-top__information-mail {
    display: none;
  }
  .section-top__information-mail__pc {
    display: block;
    margin: 0 auto;
  }
}
.section-top__facebook, .section-top__instagram, .section-top__line {
  display: none;
}
@media (min-width:1080px) {
  .section-top__instagram {
    display: flex;
    justify-content: center;
    background-color: #FFF;
    padding: 100px 0;
    margin: 0 auto;
  }
  
  .section-top__instagram__container {
    max-width: 1080px;
    display: flex;
    margin: 50px 0;
  }
  .section-top__instagram-title {
    /*display: flex;*/
    margin-left: 20px;
  } 
  
  .section-top__instagram__qr {
    flex-direction: column;
    margin: 20px 0 0 0;
  }

  .section-top__instagram__qr p {
    font-size: 2.4rem;
    padding-bottom: 30px;
  }
  
  .section-top__instagram__qr img {
    width: 25%;
    /*height: 20%;*/
    display: block;
    margin: 0 auto;
  }
  
  .section-top__instagram__qr a {
    font-size: 2.4rem;
    display: inline-block;
    margin: 30px auto 0;
    color: #16A3AA;
  }
  
  .section-top__instagram__qr a:hover {
    opacity: 0.5;
  }
  
  .section-top__instagram__qr .section-top__instagram__icon {
    width: 58px;
    height: 58px;
  }
  
  .section-top__instagram__qr a p {
    padding: 30px 0 0;
  }
}
@media (min-width:1080px) {
  .section-top__facebook {
    display: flex;
    justify-content: center;
    background-color: #004AB7;
    padding: 150px 0;
    margin: 0 auto;
  }
  
  .section-top__facebook__container {
    /*max-width: 1080px;
    display: flex;*/
  }
  
  .section-top__facebook-title {
    margin-left: 100px;
  }
}
@media (min-width:1080px) {
  .section-top__line {
    display: block;
    background-color: #FFF;
    padding: 150px 0;
    margin: 0 auto;
  }
  .section-top__line a:hover {
    opacity: 0.5;
  }
  .section-top__line h2 {
    font-size: 5.4rem;
    color: #004AB7;
    padding-bottom: 40px;
  }
  .section-top__line p {
    font-size: 2.4rem;
    padding-bottom: 40px;
  }
}
