@charset "utf-8";

/*********************************/
/*              共通             */
/*********************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: #ffdee9;
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
}

h1,h2,h3,h4,h5,h6 {
  line-height: 1.5;
}

p {
  line-height: 1.3;
}

a:hover {
  opacity: 0.5;
}

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

.main-inner {
  margin: 0 auto;
  width: 1000px;
}

.TsukuBRdGothic-R {
  font-family: fot-tsukubrdgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.TsukuBRdGothic-B {
  font-family: fot-tsukubrdgothic-std,sans-serif;
  font-style: normal;
  font-weight: 700;
}

.FOT-TsukuARdGothic-B {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.pink-btn {
  border-radius: 10px;
  background-image: -moz-linear-gradient( 90deg, rgb(240,45,129) 0%, rgb(253,114,167) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgb(240,45,129) 0%, rgb(253,114,167) 100%);
  background-image: -ms-linear-gradient( 90deg, rgb(240,45,129) 0%, rgb(253,114,167) 100%);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 25px;
  position: relative;
  text-decoration: none;
  text-align: center;
}

.pink-btn::after {
  content: '';
  border: 4px solid transparent;
  border-left: 4px solid #fff;
  position: absolute;
  top: 40%;
  right: 3%;
  height: 4px;
  width: 4px;
}

.contact__text {
  color: #603813;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 8px;
  padding-left: 27px;
  position: relative;
}

.contact__text::before {
  content: '';
  background-image: url(../img/icon-mail.png);
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 21px;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 77%;
}

#page-top a {
  border-radius: 5px;
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

/*********************************/
/*             Header            */
/*********************************/
.header-inner {
  background-color: #fff;
}

.header-box {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 10px 0 15px;
  width: 970px;
}

.header-logo {
  width: 270px;
}

/*********************************/
/*             Footer            */
/*********************************/
.footer {
  padding-bottom: 10px;
}

.footer-inner {
  background-color: #fff;
}

.footer__text {
  color: #603813;
  font-size: 9px;
  text-align: center;
}