@charset "UTF-8";
/*------------------------------------------------------------
	Default
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, button,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  margin-top: 0 !important;
  font-size: 62.5%;
}

body, table,
input, textarea, select, option, button,
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-family: "YakuHanJP", '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #1A1311;
}

b, strong, .bold {
  font-family: "YakuHanJP", '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

/* IE11だけに適応 */
_:lang(x)::-ms-backdrop, .selector {
  font-family: "YakuHanJP", '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

input::placeholder {
  color: #1A1311;
}

/* IE */
input:-ms-input-placeholder {
  color: #1A1311;
}

/* Edge */
input::-ms-input-placeholder {
  color: #1A1311;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #1A1311;
}

a:hover {
  opacity: 0.85;
}

a.disabled {
  pointer-events: none;
}

* {
  box-sizing: border-box;
}

.under_link {
  text-decoration: underline;
}

.red {
  color: #A31116;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.fixed {
  position: relative;
  overflow-y: hidden;
  height: 100vh;
}

/*------------------------------------------------------------
  Layout
------------------------------------------------------------*/
.wrapper {
  margin: 0 auto;
  width: 100%;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 940px;
}

@media screen and (max-width: 1000px) {
  .container {
    padding: 0 20px;
  }
}

.container_ttl {
  text-align: center;
  position: relative;
  margin-bottom: 34px;
}

.container_ttl::before {
  content: '';
  background-image: url(../img/top/title_top.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: block;
  top: -42px;
  left: 0;
  right: 0;
  margin: auto;
  width: 178px;
  height: 37px;
}

.container_ttl_en {
  display: inline-block;
  font-size: 2.5rem;
  letter-spacing: 0.11em;
  line-height: 0.84;
  background-color: #FFFF71;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
}

@media screen and (max-width: 767px) {
  .container_ttl_en {
    font-size: 2rem;
    line-height: 1.05;
  }
}

.container_ttl_ja {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.11em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .container_ttl_ja {
    font-size: 1rem;
  }
}

.header {
  width: 100%;
  height: 118px;
}

@media screen and (max-width: 767px) {
  .header {
    height: 110px;
  }
}

.header_inner {
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: auto;
  padding: 20px 40px;
}

@media screen and (max-width: 840px) {
  .header_inner {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .header_inner {
    padding: 16px 20px 20px;
  }
}

.header__left_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header__left_ttl a {
  display: block;
}

@media screen and (max-width: 767px) {
  .header__left_ttl a img {
    width: 66px;
  }
}

.header__left_ttl_text {
  margin-left: 15px;
  margin-bottom: 3px;
}

@media screen and (max-width: 840px) {
  .header__left_ttl_text img {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .header__left_ttl_text {
    display: none;
  }
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header__right_access {
  text-align: right;
  margin-right: 18px;
}

@media screen and (max-width: 360px) {
  .header__right_access {
    margin-right: 4px;
  }
}

.header__right_access_name {
  font-size: 1.8rem;
  letter-spacing: 0.11em;
  line-height: 1.16667;
  margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .header__right_access_name {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.header__right_access_address {
  font-size: 1.4rem;
  letter-spacing: 0.11em;
  line-height: 1.57143;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 4px;
}

@media screen and (max-width: 840px) {
  .header__right_access_address {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .header__right_access_address {
    font-size: 1.1rem;
    line-height: 1.63636;
  }
}

.header__right_access_address::before {
  content: '';
  background-image: url(../img/common/icon_access.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -17px;
  width: 12px;
  height: 17px;
}

.header__right_access_address::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #1A1311;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 4px;
}

@media screen and (max-width: 840px) {
  .header__right_access_address::after {
    bottom: 2px;
  }
}

.header__right_access_nearest {
  font-size: 1.4rem;
  letter-spacing: 0.11em;
  font-weight: bold;
}

@media screen and (max-width: 840px) {
  .header__right_access_nearest {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .header__right_access_nearest {
    display: none;
  }
}

.header__right_sns {
  width: 70px;
  margin-bottom: 5px;
}

@media screen and (max-width: 360px) {
  .header__right_sns {
    width: 46px;
  }
}

.header__right_sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__right_sns_list li img {
  width: 30px;
}

@media screen and (max-width: 360px) {
  .header__right_sns_list li img {
    width: 22px;
  }
}

.header__btn_menu {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
}

@media screen and (max-width: 767px) {
  .header__btn_menu {
    display: block;
    z-index: 99999999;
  }
}

.header__btn_menu.is-open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-4px, 6px);
  transform: rotate(-45deg) translate(-4px, 6px);
}

.header__btn_menu.is-open .bar2 {
  opacity: 0;
}

.header__btn_menu.is-open .bar3 {
  -webkit-transform: rotate(45deg) translate(-4px, -6px);
  transform: rotate(45deg) translate(-4px, -6px);
}

.header__btn_menu div {
  width: 30px;
  height: 3px;
  border-radius: 1px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: auto;
}

.header__btn_menu .bar2 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.footer__inner {
  height: 146px;
  width: 1120px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 28px;
}

@media screen and (max-width: 1120px) {
  .footer__inner {
    width: 100%;
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer__inner {
    padding-top: 30px;
    display: block;
    padding-right: 42px;
    padding-left: 42px;
    height: auto;
  }
}

.footer__inner_left {
  margin-left: 90px;
}

@media screen and (max-width: 767px) {
  .footer__inner_left {
    text-align: center;
    margin-left: auto;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .footer__inner_left img {
    width: 52px;
  }
}

@media screen and (max-width: 767px) {
  .footer__inner_right {
    width: 306px;
    margin: auto;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 330px) {
  .footer__inner_right {
    width: 100%;
  }
}

.footer__inner_right_ttl {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.11em;
  margin-bottom: 8px;
}

.footer__inner_right_text {
  font-size: 1.2rem;
  letter-spacing: 0.11em;
  font-weight: 500px;
}

.footer__inner_right_text p {
  margin-bottom: 8px;
}

.footer__inner_right_text span {
  display: inline-block;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.footer__inner_right_text_tel {
  margin-right: 10px;
}

.footer__inner_right_text_tel::before {
  position: absolute;
  content: '';
  background-image: url(../img/common/icon_tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 11px;
  height: 11px;
}

.footer__inner_right_text_mail::before {
  position: absolute;
  content: '';
  background-image: url(../img/common/icon_mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 13px;
  height: 11px;
}

.footer__copyright {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  padding-bottom: 28px;
}

@media screen and (max-width: 767px) {
  .footer__copyright {
    padding-bottom: 20px;
  }
}

.toppage {
  display: none;
  width: 50px;
  height: 50px;
  background-color: #1A1311;
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 200px;
  z-index: 9998;
}

@media screen and (max-width: 640px) {
  .toppage {
    bottom: 50px;
  }
}

.toppage::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 7px;
  background-image: url("../img/common/top.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*------------------------------------------------------------
  Top
------------------------------------------------------------*/
.top .sec__mv {
  background: #bababa;
  background: -moz-linear-gradient(top, #bababa 37%, #eaeaea 32%, #eaeaea 32%);
  background: -webkit-linear-gradient(top, #bababa 37%, #eaeaea 32%, #eaeaea 32%);
  background: linear-gradient(to bottom, #bababa 37%, #eaeaea 32%, #eaeaea 32%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bababa', endColorstr='#eaeaea',GradientType=0 );
}

@media screen and (max-width: 767px) {
  .top .sec__mv {
    background: -moz-linear-gradient(top, #bababa 30%, #eaeaea 28%, #eaeaea 28%);
    background: -webkit-linear-gradient(top, #bababa 30%, #eaeaea 28%, #eaeaea 28%);
    background: linear-gradient(to bottom, #bababa 30%, #eaeaea 28%, #eaeaea 28%);
  }
}

.top .sec__mv_inner {
  width: 1300px;
  margin: auto;
  text-align: center;
  padding: 40px 0;
  position: relative;
}

@media screen and (max-width: 1300px) {
  .top .sec__mv_inner {
    width: 100%;
    padding: 40px 10px;
  }
}

@media screen and (max-width: 767px) {
  .top .sec__mv_inner {
    padding: 20px 10px 15px;
  }
}

@media screen and (max-width: 1200px) {
  .top .sec__mv_inner img {
    width: 100%;
  }
}

.top .sec__mv_inner_text {
  position: absolute;
  display: inline-block;
  text-align: left;
  width: 343px;
  bottom: 61px;
  left: 310px;
}

@media screen and (max-width: 1200px) {
  .top .sec__mv_inner_text {
    left: 22.5%;
  }
}

@media screen and (max-width: 880px) {
  .top .sec__mv_inner_text {
    left: 22%;
    bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .top .sec__mv_inner_text {
    top: 46%;
    left: 10px;
  }
}

@media screen and (max-width: 500px) {
  .top .sec__mv_inner_text {
    top: 43%;
  }
}

@media screen and (max-width: 450px) {
  .top .sec__mv_inner_text {
    top: 41%;
  }
}

@media screen and (max-width: 400px) {
  .top .sec__mv_inner_text {
    top: 40%;
  }
}

@media screen and (max-width: 360px) {
  .top .sec__mv_inner_text {
    width: auto;
  }
}

.top .sec__mv_inner_text_top {
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0.11em;
  font-weight: bold;
  background-color: #FFFF71;
  padding: 8px 11px;
  margin-bottom: 8px;
}

@media screen and (max-width: 800px) {
  .top .sec__mv_inner_text_top {
    padding: 6px 11px;
    margin-bottom: 4px;
  }
}

@media screen and (max-width: 767px) {
  .top .sec__mv_inner_text_top {
    padding: 7px 10px;
    margin-bottom: 8px;
  }
}

.top .sec__mv_inner_text_bottom {
  display: inline-block;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: bold;
  background-color: #fff;
  padding: 8px 0 8px 8px;
  margin-bottom: 8px;
}

@media screen and (max-width: 800px) {
  .top .sec__mv_inner_text_bottom {
    padding: 6px 0 6px 8px;
    margin-bottom: 4px;
  }
}

@media screen and (max-width: 767px) {
  .top .sec__mv_inner_text_bottom {
    padding: 7px 0 7px 8px;
    margin-bottom: 8px;
  }
}

.top .sec__sue {
  background-color: #F8F8F8;
}

.top .sec__sue_inner {
  padding: 62px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 880px) {
  .top .sec__sue_inner {
    padding: 62px 20px 50px;
  }
}

@media screen and (max-width: 767px) {
  .top .sec__sue_inner {
    display: block;
    padding: 32px 20px 24px;
  }
}

.top .sec__sue_inner_img {
  padding-left: 88px;
}

@media screen and (max-width: 880px) {
  .top .sec__sue_inner_img {
    padding-left: 20px;
    margin-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .top .sec__sue_inner_img {
    text-align: center;
    margin-bottom: 30px;
  }
}

.top .sec__sue_inner_img img {
  width: 168px;
}

@media screen and (max-width: 767px) {
  .top .sec__sue_inner_img img {
    width: 70px;
  }
}

.top .sec__sue_inner_text {
  width: 612px;
}

@media screen and (max-width: 767px) {
  .top .sec__sue_inner_text {
    width: 100%;
  }
}

.top .sec__sue_inner_text_ttl {
  font-size: 2rem;
  letter-spacing: 0.11em;
  margin-bottom: 22px;
}

@media screen and (max-width: 767px) {
  .top .sec__sue_inner_text_ttl {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

.top .sec__sue_inner_text_box {
  font-size: 1.6rem;
  letter-spacing: 0.11em;
  line-height: 1.8125;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .top .sec__sue_inner_text_box {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.78571;
  }
}

.top .sec__news_inner {
  padding-top: 90px;
}

@media screen and (max-width: 767px) {
  .top .sec__news_inner {
    padding-top: 76px;
  }
}

.top .sec__news_inner .news_list_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px 12px;
  border-bottom: 1px solid #BABABA;
  margin-bottom: 14px;
}

@media screen and (max-width: 767px) {
  .top .sec__news_inner .news_list_inner {
    display: block;
    padding: 0 0 12px;
    margin-bottom: 10px;
  }
}

.top .sec__news_inner .news_list_inner_date {
  min-width: 156px;
  font-size: 1.6rem;
  letter-spacing: 0.11em;
  line-height: 1.8125;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .top .sec__news_inner .news_list_inner_date {
    font-size: 1.4rem;
    line-height: 2.07143;
  }
}

.top .sec__news_inner .news_list_inner_title {
  font-size: 1.6rem;
  letter-spacing: 0.11em;
  line-height: 1.8125;
}

@media screen and (max-width: 767px) {
  .top .sec__news_inner .news_list_inner_title {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.78571;
  }
}

.top .sec__project_inner {
  padding: 86px 0 40px;
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner {
    padding: 66px 0 40px;
  }
}

.top .sec__project_inner .project_list {
  width: 900px;
  margin: auto;
  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;
}

@media screen and (max-width: 900px) {
  .top .sec__project_inner .project_list {
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list {
    display: block;
  }
}

.top .sec__project_inner .project_list_inner {
  width: 49%;
  border-radius: 10px;
  border: 1px solid #707070;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list_inner {
    width: 100%;
  }
}

.top .sec__project_inner .project_list_inner_img {
  position: relative;
}

.top .sec__project_inner .project_list_inner_img img {
  width: 100%;
}

.top .sec__project_inner .project_list_inner_img span {
  position: absolute;
  font-size: 1.6rem;
  letter-spacing: 0.11em;
  background-color: #FFFF71;
  font-weight: bold;
  padding: 9px 12px;
  left: 0;
  bottom: -10px;
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list_inner_img span {
    font-size: 1.4rem;
    padding: 7px 10px;
  }
}

.top .sec__project_inner .project_list_inner_logo {
  margin-top: 28px;
  text-align: center;
  line-height: 100px;
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list_inner_logo {
    margin-top: 20px;
  }
}

.top .sec__project_inner .project_list_inner_text {
  margin: 30px 26px 24px;
}

@media screen and (max-width: 800px) {
  .top .sec__project_inner .project_list_inner_text {
    margin: 30px 20px 24px;
  }
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list_inner_text {
    margin: 20px;
  }
}

.top .sec__project_inner .project_list_inner_text.no_logo {
  margin-top: 38px;
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list_inner_text.no_logo {
    margin-top: 20px;
  }
}

.top .sec__project_inner .project_list_inner_text_ttl {
  font-size: 2rem;
  letter-spacing: 0.11em;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list_inner_text_ttl {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

.top .sec__project_inner .project_list_inner_text p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 2.07143;
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list_inner_text p {
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    line-height: 1.83333;
  }
}

.top .sec__project_inner .project_list_inner_link {
  margin: 0 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: bold;
}

@media screen and (max-width: 840px) {
  .top .sec__project_inner .project_list_inner_link {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list_inner_link {
    margin: 0 20px 24px;
    font-size: 1.2rem;
  }
}

.top .sec__project_inner .project_list_inner_link li {
  padding-left: 46px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list_inner_link li {
    padding-left: 38px;
  }
}

.top .sec__project_inner .project_list_inner_link li::before {
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 22px;
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list_inner_link li::before {
    left: 18px;
  }
}

.top .sec__project_inner .project_list_inner_link li a {
  text-decoration: underline;
}

.top .sec__project_inner .project_list_inner_link li.no_link a {
  color: #BABABA;
}

.top .sec__project_inner .project_list_inner_link .web::before {
  background-image: url(../img/top/icon_black_web.svg);
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list_inner_link .web::before {
    width: 12px;
    height: 12px;
  }
}

.top .sec__project_inner .project_list_inner_link .web.no_link::before {
  background-image: url(../img/top/icon_gy_web.svg);
}

.top .sec__project_inner .project_list_inner_link .fb::before {
  background-image: url(../img/top/icon_black_fb.svg);
  width: 18px;
  height: 18px;
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list_inner_link .fb::before {
    width: 14px;
    height: 14px;
  }
}

.top .sec__project_inner .project_list_inner_link .fb.no_link::before {
  background-image: url(../img/top/icon_gy_fb.svg);
}

.top .sec__project_inner .project_list_inner_link .insta::before {
  background-image: url(../img/top/icon_black_insta.svg);
  width: 18px;
  height: 18px;
}

@media screen and (max-width: 767px) {
  .top .sec__project_inner .project_list_inner_link .insta::before {
    width: 14px;
    height: 14px;
  }
}

.top .sec__project_inner .project_list_inner_link .insta.no_link::before {
  background-image: url(../img/top/icon_gy_insta.svg);
}

.top .sec__map {
  background-color: #F8F8F8;
}

.top .sec__map_inner {
  padding: 98px 0;
}

@media screen and (max-width: 767px) {
  .top .sec__map_inner {
    padding: 76px 0 36px;
  }
}

.top .sec__map_inner_img {
  text-align: center;
}

@media screen and (max-width: 900px) {
  .top .sec__map_inner_img img {
    width: 100%;
    padding: 0 20px;
  }
}

.top .sec__map_inner_pdf {
  width: 900px;
  margin: auto;
  text-align: right;
  margin-top: 20px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: bold;
}

@media screen and (max-width: 900px) {
  .top .sec__map_inner_pdf {
    width: 100%;
    padding: 0 20px;
  }
}

.top .sec__map_inner_pdf a {
  text-decoration: underline;
  position: relative;
}

.top .sec__map_inner_pdf a::before {
  position: absolute;
  content: '';
  background-image: url(../img/top/icon_map.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -24px;
  width: 17px;
  height: 17px;
}

.top .sec__info {
  background-color: #EAEAEA;
}

.top .sec__info_inner {
  padding: 46px 0 50px;
}

@media screen and (max-width: 767px) {
  .top .sec__info_inner {
    padding: 44px 0 14px;
  }
}

.top .sec__info_inner_list {
  width: 900px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 900px) {
  .top .sec__info_inner_list {
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .top .sec__info_inner_list {
    display: block;
  }
}

.top .sec__info_inner_list_box {
  width: 430px;
  min-height: 518px;
}

@media screen and (max-width: 900px) {
  .top .sec__info_inner_list_box {
    width: 48%;
  }
}

@media screen and (max-width: 767px) {
  .top .sec__info_inner_list_box {
    width: 100%;
  }
}

.top .sec__info_inner_list_box_ttl {
  display: inline-block;
  font-size: 2.5rem;
  letter-spacing: 0.11em;
  background-color: #FFFF71;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .top .sec__info_inner_list_box_ttl {
    font-size: 2rem;
  }
}

.top .sec__info_inner_list_box_inner {
  background-color: #fff;
  border-radius: 10px;
  padding: 18px 15px;
}

@media screen and (max-width: 767px) {
  .top .sec__info_inner_list_box_inner {
    padding: 20px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 900px) {
  .top .sec__info_inner_list_box_inner iframe {
    height: 100%;
    min-height: 440px;
  }
}

@media screen and (max-width: 900px) {
  .top .sec__info_inner_list_box_inner img {
    width: 100%;
  }
}

.top .sec__info_inner_list_box_inner_gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 92.25%;
  position: relative;
}

.top .sec__info_inner_list_box_inner_gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 700px;
  margin-top: -145px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .top .sec__info_inner_list_box_inner_gmap iframe {
    height: 700px;
  }
}

.top .sec__info_inner_list_box_inner_map {
  text-align: right;
  font-size: 1.2rem;
  letter-spacing: 0.11em;
  font-weight: 500;
  margin-top: 10px;
}

.top .sec__info_inner_list_box_inner_map a {
  position: relative;
  text-decoration: underline;
}

.top .sec__info_inner_list_box_inner_map a::before {
  content: '';
  background-image: url(../img/top/icon_map.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -17px;
  width: 12px;
  height: 12px;
}

.top .sec__info_inner_list_box_inner_access {
  margin-top: 16px;
}

.top .sec__info_inner_list_box_inner_access_ttl {
  font-size: 1.8rem;
  letter-spacing: 0.11em;
  font-weight: bold;
  margin-bottom: 10px;
}

.top .sec__info_inner_list_box_inner_access_address {
  font-size: 1.4rem;
  letter-spacing: 0.11em;
  line-height: 1.57143;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}

.top .sec__info_inner_list_box_inner_access_address::before {
  content: '';
  background-image: url(../img/common/icon_access.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: block;
  top: 2px;
  left: 4px;
  width: 12px;
  height: 17px;
}
