/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  min-width: 320px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -ms-font-feature-settings: "normal";
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/*------------------------------
reset end
------------------------------*/
/*------------------------------
header
------------------------------*/
.header {
  border-bottom: 2px solid #ee7700;
}

@media screen and (min-width: 768px) {
  .header {
    border-bottom: 1px solid #f0bd60;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, #fff), to(#fffbd8));
    background: linear-gradient(180deg, #fff 75%, #fffbd8 100%);
  }
}

@media screen and (min-width: 768px) {
  .header__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 980px;
    margin: 0 auto;
    padding: 10px 0 20px;
  }
}

.header__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .header__group {
    display: block;
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 20px;
    padding: 0;
  }
}

.header__title {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: right;
  line-height: 1.25;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: normal;
  -webkit-transform: rotate(0.028deg);
          transform: rotate(0.028deg);
}

@media screen and (min-width: 768px) {
  .header__title {
    margin-bottom: 10px;
    text-align: left;
  }
}

.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 20px;
}

.header__link {
  display: block;
}

.header__text {
  display: none;
  text-align: right;
  font-size: 1.2rem;
  letter-spacing: normal;
  -webkit-transform: rotate(0.028deg);
          transform: rotate(0.028deg);
}

@media screen and (min-width: 768px) {
  .header__text {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

/*------------------------------
header end
------------------------------*/
/*------------------------------
breadcrumb
------------------------------*/
.breadcrumb {
  display: none;
}

@media screen and (min-width: 768px) {
  .breadcrumb {
    display: block;
    background-color: #fff6ea;
  }
}

.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 980px;
  margin: 0 auto;
}

.breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb__item:not(:first-of-type)::before {
  content: ">";
  margin: 0 6px;
  font-size: 12px;
  vertical-align: middle;
}

.breadcrumb__item:last-of-type .breadcrumb__link {
  pointer-events: none;
  text-decoration: none;
}

.breadcrumb__link {
  padding: 6px 0;
  font-size: 12px;
  color: #333;
  letter-spacing: normal;
  text-decoration: underline;
  -webkit-transform: rotate(0.028deg);
          transform: rotate(0.028deg);
}

.breadcrumb__link:hover {
  text-decoration: none;
}

/*------------------------------
breadcrumb end
------------------------------*/
/*------------------------------
main
------------------------------*/
.mv__top {
  padding: 24px 12px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .mv__logo {
    width: 980px;
    margin: 0 auto;
  }
}

.mv__contents {
  position: relative;
}

@media screen and (min-width: 768px) {
  .mv__contents {
    width: 980px;
    margin: 0 auto;
  }
}

.mv__photo {
  text-align: center;
}

.mv__headline {
  padding: 12px;
  text-align: left;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background-color: #502700;
}

@media screen and (min-width: 768px) {
  .mv__headline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    margin: auto;
    padding: 24px 12px;
    text-align: center;
    font-size: 2.4rem;
    background-color: rgba(80, 39, 0, 0.75);
  }
}

@media screen and (max-width: 767.98px) {
  .mv__headline br {
    display: none;
  }
}

.intro {
  background-color: #FFFDE8;
}

.intro__contents, .voices__contents, .tips__contents, .search__contents {
  padding: 30px 12px;
}

@media screen and (min-width: 768px) {
  .intro__contents, .voices__contents, .tips__contents, .search__contents {
    width: 980px;
    margin: 0 auto;
    padding: 30px 24px;
  }
}

.intro__article {
  margin-bottom: 70px;
  padding: 12px;
  background-color: #fff;
  border: 10px solid #502700;
}

@media screen and (min-width: 768px) {
  .intro__article:nth-of-type(even) .intro__thumbnail, .intro__article:nth-of-type(even) .tips__thumbnail {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.intro__headline {
  margin-bottom: 24px;
  padding: 6px 12px;
  text-align: left;
  font-size: 1.6rem;
  font-weight: bold;
  color: #502700;
  background-color: #F8B500;
}

@media screen and (min-width: 768px) {
  .intro__headline {
    text-align: center;
    font-size: 2.1rem;
  }
}

@media screen and (min-width: 768px) {
  .intro__group, .tips__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.intro__thumbnail, .tips__thumbnail {
  margin-bottom: 12px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .intro__thumbnail, .tips__thumbnail {
    width: 300px;
    margin: 0;
  }
}

.intro__text, .tips__text {
  line-height: 1.7;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .intro__text, .tips__text {
    width: calc(100% - 312px);
    font-size: 1.6rem;
  }
}

.voices {
  background-color: #fff;
}

.voices__headline, .tips__headline, .search__headline {
  margin-bottom: 24px;
  padding: 15px 12px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #502700;
  border-top: 1px solid #502700;
  border-bottom: 1px solid #F8B500;
}

@media screen and (min-width: 768px) {
  .voices__headline, .tips__headline, .search__headline {
    font-size: 2.1rem;
  }
}

@media screen and (min-width: 768px) {
  .voices__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.voices__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .voices__item {
    width: calc(100% / 3 - 16px);
  }
}

.voices__thumbnail {
  width: 48px;
}

.voices__group {
  width: calc(100% - 60px);
}

.voices__balloon {
  position: relative;
  margin: 0 0 12px 12px;
  padding: 6px;
  font-size: 1.4rem;
  border: 1px solid #502700;
  border-radius: 6px;
}

.voices__balloon::before {
  position: absolute;
  left: -12px;
  bottom: 6px;
  display: inline-block;
  content: '';
  width: 12px;
  height: 12px;
  margin: auto;
  background: url(../img/balloon.svg) no-repeat;
}

.voices__profile {
  margin-left: 12px;
  font-size: 0;
}

@media screen and (max-width: 767.98px) {
  .voices__profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.voices__name {
  margin-right: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #502700;
}

@media screen and (min-width: 768px) {
  .voices__name {
    margin: 0 0 6px 0;
  }
}

.voices__career {
  display: inline-block;
  padding: 2px 6px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #502700;
}

.search-shizuoka .search__item {
  width: calc(50% - 6px);
  margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .search-shizuoka .search__item {
    width: calc(100% / 3 - 16px);
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 767.98px) {
  .search-shizuoka .search__item:nth-of-type(odd) {
    margin-right: 12px;
  }
}

@media screen and (min-width: 768px) {
  .search-shizuoka .search__item:not(:nth-of-type(3n + 1)) {
    margin-left: 24px;
  }
}

.search-aichi-gifu .search__item {
  width: calc(50% - 6px);
  margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .search-aichi-gifu .search__item {
    width: calc(100% / 5 - 19.2px);
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 767.98px) {
  .search-aichi-gifu .search__item:nth-of-type(odd) {
    margin-right: 12px;
  }
}

@media screen and (min-width: 768px) {
  .search-aichi-gifu .search__item:not(:nth-of-type(5n + 1)) {
    margin-left: 24px;
  }
}

.search-kanto .search__item {
  width: calc(50% - 6px);
  margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .search-kanto .search__item {
    width: calc(100% / 5 - 19.2px);
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 767.98px) {
  .search-kanto .search__item:nth-of-type(odd) {
    margin-right: 12px;
  }
}

@media screen and (min-width: 768px) {
  .search-kanto .search__item:not(:nth-of-type(5n + 1)) {
    margin-left: 24px;
  }
}

@media screen and (max-width: 767px) {
  .search-kanto .search__item:last-of-type {
    margin-right: 0;
  }
}

.search-kanto .search__item.exception {
  width: 100%;
  margin: 0 0 12px;
}

@media screen and (min-width: 768px) {
  .search-kanto .search__item.exception {
    width: calc((100% / 5 - 19.2px) * 2 + 24px);
    margin: 0 0 24px 24px;
  }
}

@media screen and (max-width: 767px) {
  .search-kanto .search__item.exception + .search__item {
    margin-right: 12px;
  }
}

.search__headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search__area {
  margin-left: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #F8B500;
}

.search__list-headline {
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.9rem;
  font-weight: bold;
  color: #F8B500;
}

.search__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.search__link {
  position: relative;
  display: block;
  padding: 12px;
  text-align: center;
  text-indent: -12px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #502700;
  background-color: #F8B500;
}

.search__link:hover {
  color: #F8B500;
  background-color: #502700;
}

.search__link:hover::after {
  border-top: 2px solid #F8B500;
  border-right: 2px solid #F8B500;
}

.search__link::after {
  position: absolute;
  top: 0;
  right: 14px;
  bottom: 0;
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 2px solid #502700;
  border-right: 2px solid #502700;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*------------------------------
main end
------------------------------*/
/*------------------------------
footer
------------------------------*/
.footer {
  background-color: #ee7700;
}

@media screen and (min-width: 768px) {
  .footer {
    background-color: transparent;
    border-top: 1px solid #e6e6e6;
  }
}

@media screen and (min-width: 768px) {
  .footer .footer__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 980px;
    margin: 0 auto;
    padding: 20px 0;
  }
}

@media screen and (min-width: 768px) {
  .footer .footer__list {
    margin-right: 20px;
  }
}

.footer .footer__item {
  border-bottom: 1px dotted #fff;
}

@media screen and (min-width: 768px) {
  .footer .footer__item {
    display: inline-block;
    margin-right: 10px;
    border-bottom: none;
  }
}

.footer .footer__item:last-of-type {
  border-bottom: none;
}

.footer .footer__link {
  position: relative;
  display: block;
  padding: 10px;
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .footer .footer__link {
    padding: 0;
    text-decoration: underline;
    font-size: 1.2rem;
    color: #333;
  }
}

.footer .footer__link::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 10px;
  height: 30px;
  margin: auto;
  background: url(https://lhj7ydi4ax.user-space.cdn.idcfcloud.net/dn_items/common/img/angle-right.svg) center center/contain no-repeat;
}

@media screen and (min-width: 768px) {
  .footer .footer__link::after {
    display: none;
  }
}

.footer .footer__text {
  padding: 10px;
  text-align: center;
  background-color: #fff;
  -webkit-transform: rotate(0.028deg);
          transform: rotate(0.028deg);
}

@media screen and (min-width: 768px) {
  .footer .footer__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: 20px;
    padding: 0;
  }
}

.footer .footer__copy {
  font-size: 1.2rem;
  color: #333;
}

.footer .footer__btn {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: inline-block;
  width: 48px;
  height: 48px;
  margin: auto;
  background-color: rgba(51, 51, 51, 0.7);
  border-radius: 24px;
}

@media screen and (min-width: 768px) {
  .footer .footer__btn {
    right: 20px;
    bottom: 20px;
  }
}

.footer .footer__btn:hover {
  cursor: pointer;
}

.btn-hide {
  -ms-filter: "alpha(opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  pointer-events: none;
}

/*------------------------------
footer end
------------------------------*/
/*# sourceMappingURL=style.css.map */