@charset "UTF-8";
html *,
::before,
::after {
  box-sizing: border-box; }

html {
  font-size: 16px;
  color: #4D526D; }
  @media (min-width: 960px) {
    html {
      font-size: 15px;
      margin: 0; } }

body {
  font-family: 'Noto Sans JP', sans-serif; }
  body img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom; }

ul, p, h3, h2, h1 {
  margin: 0;
  padding: 0;
  color: #B8292D; }
  ul li, p li, h3 li, h2 li, h1 li {
    list-style: none; }

h3, h2, p {
  font-family: fot-chiaro-std,sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #B8292D; }

.mv_wrapper {
  height: 90vh; }
  @media (max-width: 960px) {
    .mv_wrapper {
      height: 90vh; } }

.sunshade_logo {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto; }
  .sunshade_logo .sunshade {
    border-top: 15px solid #6087C5;
    height: 300px;
    background-image: url("../img/sunshade_parts.png");
    background-repeat: repeat-x;
    filter: drop-shadow(15px 30px 2px rgba(0, 0, 0, 0.25)); }
    @media (max-width: 960px) {
      .sunshade_logo .sunshade {
        background-size: auto 50%; } }
  .sunshade_logo .logo_top {
    max-width: 1000px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto; }
    @media (max-width: 960px) {
      .sunshade_logo .logo_top {
        transform: scale(0.8);
        top: -35px; } }

.mv_bread {
  height: 100%;
  max-width: 1600px;
  margin: 0 auto; }
  .mv_bread .mv_bread_bgimg {
    height: 100%;
    margin: 0 50px;
    background-image: url("../img/MV_01.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
    @media (max-width: 960px) {
      .mv_bread .mv_bread_bgimg {
        margin: 0px; } }

.g_navi {
  height: 10vh;
  max-width: 1000px;
  margin: 0 auto;
  position: relative; }
  @media (max-width: 960px) {
    .g_navi {
      width: 100%;
      height: 10vh;
      background-color: #B8292D;
      position: relative; } }

#navi_list {
  height: 10vh;
  display: flex;
  justify-content: space-around;
  align-items: center; }
  @media (max-width: 960px) {
    #navi_list {
      width: 100%;
      height: 100vh;
      flex-direction: column;
      justify-content: center;
      /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
      position: fixed;
      z-index: 999;
      /*ナビのスタート位置と形状*/
      bottom: -120%;
      left: 0;
      background-color: #B8292D;
      /*動き*/
      transition: all 0.6s; } }
  @media (max-width: 960px) {
    #navi_list li {
      margin-bottom: 30px; } }
  #navi_list li a {
    font-size: 20px;
    font-family: fot-chiaro-std,sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #B8292D;
    text-decoration: none; }
    @media (max-width: 960px) {
      #navi_list li a {
        width: 100%;
        position: relative;
        font-size: 15px;
        font-weight: 500;
        color: white; } }

#navi_list.panelactive {
  bottom: 0; }

/*ハンバーガーアイコン*/
.openbtn_wrapper {
  position: absolute;
  height: 60px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto; }
  @media (min-width: 960px) {
    .openbtn_wrapper {
      display: none; } }
  .openbtn_wrapper .openbtn {
    position: relative;
    /*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    margin: 0 auto;
    z-index: 9999; }
    .openbtn_wrapper .openbtn span {
      display: inline-block;
      transition: all .4s;
      /*アニメーションの設定*/
      position: absolute; }
      .openbtn_wrapper .openbtn span:nth-of-type(1) {
        height: 4px;
        background-color: rgba(255, 255, 255, 0.8);
        width: 100%;
        left: 0px;
        top: 15px; }
      .openbtn_wrapper .openbtn span:nth-of-type(2) {
        height: 4px;
        background-color: rgba(255, 255, 255, 0.8);
        width: 100%;
        left: 0px;
        top: 30px; }
      .openbtn_wrapper .openbtn span:nth-of-type(3) {
        height: 4px;
        background-color: rgba(255, 255, 255, 0.8);
        width: 100%;
        left: 0px;
        top: 45px; }

/*activeクラスが付与されると1本目と3本目の線が回転して×になり、真ん中の線が透過して消える*/
.openbtn.active span:nth-of-type(1) {
  top: 22px;
  left: 4px;
  transform: translateY(6px) rotate(-45deg);
  width: 90%; }
.openbtn.active span:nth-of-type(2) {
  opacity: 0; }
.openbtn.active span:nth-of-type(3) {
  top: 34px;
  left: 4px;
  transform: translateY(-6px) rotate(45deg);
  width: 90%; }

.news {
  background-color: #FFFAE8; }
  .news .news_container {
    margin: 0 auto;
    max-width: 1100px;
    padding-top: 160px;
    padding-bottom: 130px;
    text-align: center;
    position: relative; }
    @media (max-width: 960px) {
      .news .news_container {
        margin: 0 5%;
        padding-bottom: 100px; } }

.topics_wrapper {
  max-width: 1000px;
  margin-left: 50px;
  margin-right: 50px; }
  @media (max-width: 960px) {
    .topics_wrapper {
      margin: 0; } }
  .topics_wrapper .topics {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media (max-width: 960px) {
      .topics_wrapper .topics {
        flex-wrap: wrap; } }
    .topics_wrapper .topics li {
      width: 24%;
      position: relative; }
      @media (max-width: 960px) {
        .topics_wrapper .topics li {
          width: 45%;
          margin-bottom: 25px; } }
      .topics_wrapper .topics li .news_title {
        font-size: 14px;
        display: inline-block;
        width: 100%;
        height: 30px;
        line-height: 30px;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        position: absolute;
        bottom: 20px;
        left: 0; }
        @media (max-width: 960px) {
          .topics_wrapper .topics li .news_title {
            font-size: 12px;
            letter-spacing: 0.1em; } }

.news_icon {
  position: absolute;
  max-width: 200px;
  top: 60px;
  left: -30px;
  filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, 0.25)); }
  @media (max-width: 960px) {
    .news_icon {
      transform: scale(0.8); } }

.more {
  display: inline-block;
  text-align: center;
  font-family: fot-chiaro-std,sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #B8292D;
  border: solid 2px #B8292D;
  padding: 20px 20px;
  margin-top: 50px;
  font-size: 20px;
  background-color: white; }

.sunshade_s {
  border-top: 15px solid #6087C5;
  height: 150px;
  background-image: url("../img/sunshade_parts_s.png");
  background-repeat: repeat-x;
  filter: drop-shadow(15px 30px 2px rgba(0, 0, 0, 0.25)); }

.main_container {
  max-width: 1000px;
  padding-top: 100px;
  padding-bottom: 100px;
  margin: 0 auto;
  text-align: center; }
  @media (max-width: 960px) {
    .main_container {
      padding-top: 50px;
      margin: 0 5%; } }

.title {
  font-size: 3em;
  text-align: center;
  margin-bottom: 50px; }
  @media (max-width: 960px) {
    .title {
      font-size: 2em;
      margin-bottom: 30px; } }

.brezel {
  display: flex;
  padding-bottom: 30px;
  border-top: 3px solid #B8292D; }
  @media (max-width: 960px) {
    .brezel {
      flex-direction: column-reverse; } }

.kaiser {
  display: flex;
  padding-bottom: 30px;
  border-top: 1.5px solid #B8292D; }
  @media (max-width: 960px) {
    .kaiser {
      flex-direction: column; } }

.jam {
  display: flex;
  padding-bottom: 30px;
  border-top: 1.5px solid #B8292D;
  border-bottom: 3px solid #B8292D; }
  @media (max-width: 960px) {
    .jam {
      flex-direction: column-reverse; } }
  .jam a {
    color: #B8292D; }

.image {
  width: 50%; }
  @media (max-width: 960px) {
    .image {
      width: 100%;
      height: 250px;
      overflow: hidden; } }

.text {
  width: 50%;
  padding: 0 70px;
  text-align: center; }
  @media (max-width: 960px) {
    .text {
      width: 100%;
      padding: 0 30px;
      margin-bottom: 50px; } }
  .text h3 {
    font-size: 2em;
    margin-top: 50px;
    margin-bottom: 10px; }
    @media (max-width: 960px) {
      .text h3 {
        font-size: 1.5em;
        margin-top: 40px; } }
  .text .sub_title {
    padding-bottom: 20px; }
    @media (max-width: 960px) {
      .text .sub_title {
        padding-bottom: 0px; } }
  .text .detail_texts {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    margin-top: 20px;
    text-align: justify; }
    @media (max-width: 960px) {
      .text .detail_texts {
        margin-top: 30px; } }

.about {
  background-color: #FFFAE8; }
  .about .about_container {
    max-width: 1000px;
    padding-top: 100px;
    padding-bottom: 100px;
    margin: 0 auto;
    text-align: center; }
    @media (max-width: 960px) {
      .about .about_container {
        margin: 0 5%;
        padding-top: 50px; } }

.about_neko {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
  padding-bottom: 20px; }
  @media (max-width: 960px) {
    .about_neko {
      transform: scale(0.8);
      margin-top: 30px;
      padding-bottom: 0px; } }

@media (max-width: 960px) {
  .about_text {
    margin: 0 30px; } }
.about_text p {
  max-width: 500px;
  margin: 0 auto;
  text-align: justify;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  margin-top: 20px; }
  @media (max-width: 960px) {
    .about_text p {
      margin-top: 15px; } }

.information_container {
  max-width: 1000px;
  padding-top: 100px;
  padding-bottom: 100px;
  margin: 0 auto; }
  @media (max-width: 960px) {
    .information_container {
      flex-direction: column;
      padding-top: 50px;
      margin: 0 5%; } }
  .information_container .location_wrapper {
    display: flex; }
    @media (max-width: 960px) {
      .information_container .location_wrapper {
        flex-direction: column; } }

.location {
  width: 50%;
  padding-right: 90px; }
  @media (max-width: 960px) {
    .location {
      width: 100%;
      padding-right: 0px;
      text-align: center; } }

.location_logo {
  margin-bottom: 40px;
  text-align: center; }
  @media (max-width: 960px) {
    .location_logo {
      transform: scale(0.8); } }

@media (max-width: 960px) {
  .address {
    font-size: 14px; } }

.phone_number {
  display: flex;
  align-items: flex-end;
  font-size: 35px;
  margin-top: 20px;
  margin-bottom: 35px; }
  @media (max-width: 960px) {
    .phone_number {
      justify-content: center; } }
  .phone_number p {
    letter-spacing: 0.05em; }
    .phone_number p:last-child {
      margin-left: 15px; }
    .phone_number p img {
      display: inline-block;
      vertical-align: initial;
      margin-left: 10px; }

.access p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 30px;
  padding-left: 20px;
  line-height: 1.5; }
  @media (max-width: 960px) {
    .access p {
      padding-left: 0px; } }
  .access p:nth-child(odd) {
    border-top: 1.5px solid #B8292D;
    margin-bottom: 20px;
    padding: 0;
    padding-top: 15px;
    font-weight: bolder; }
    @media (max-width: 960px) {
      .access p:nth-child(odd) {
        margin-bottom: 10px; } }

.map {
  width: 50%; }
  @media (max-width: 960px) {
    .map {
      width: 100%;
      height: 400px;
      margin-top: 20px; } }

footer {
  position: relative; }
  footer .footer_container {
    height: 100px;
    background-color: #B8292D;
    text-align: center; }
    footer .footer_container::before {
      content: '';
      display: block;
      width: 100%;
      height: 2px;
      background-color: #B8292D;
      position: absolute;
      top: -8px; }
    footer .footer_container small {
      display: inline-block;
      color: white;
      line-height: 100px;
      letter-spacing: 0.2em; }

/*問い合わせページ*/
.inquiry {
  background-color: #FFFAE8; }
  .inquiry .inq_title {
    padding-top: 50px;
    text-align: center;
    font-size: 2em;
    margin-bottom: 50px; }
  .inquiry .inquiry_container {
    max-width: 1000px;
    margin: 0 auto; }

.form {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px; }
  @media (max-width: 700px) {
    .form {
      margin-top: 40px;
      margin-left: auto;
      margin-right: auto; } }
  .form .form_item {
    border-top: 1px solid #ddd;
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center; }
    .form .form_item:nth-child(5) {
      border-bottom: 1px solid #ddd; }
    @media (max-width: 700px) {
      .form .form_item {
        padding-left: 14px;
        padding-right: 14px;
        padding-top: 16px;
        padding-bottom: 16px;
        flex-wrap: wrap; } }
    .form .form_item .form_item_label {
      width: 100%;
      max-width: 248px;
      letter-spacing: 0.05em;
      font-weight: bold;
      font-size: 16px; }
      @media (max-width: 700px) {
        .form .form_item .form_item_label {
          margin-left: 50px;
          max-width: inherit;
          display: flex;
          align-items: center;
          font-size: 15px; } }
      .form .form_item .form_item_label .form_item_label_title {
        border-radius: 6px;
        margin-left: 8px;
        padding-top: 4px;
        padding-bottom: 4px;
        width: 40px;
        display: inline-block;
        text-align: center;
        background: #B8292D;
        color: #fff;
        font-size: 12px; }
        @media (max-width: 700px) {
          .form .form_item .form_item_label .form_item_label_title {
            border-radius: 4px;
            padding-top: 4px;
            padding-bottom: 4px;
            width: 32px;
            font-size: 10px; } }
    .form .form_item .form_item_input {
      border: 1px solid #ddd;
      border-radius: 6px;
      margin-left: 40px;
      padding-left: 1em;
      padding-right: 1em;
      height: 48px;
      flex: 1;
      width: 100%;
      max-width: 410px;
      background: #eaedf2;
      font-size: 14px; }
      @media (max-width: 700px) {
        .form .form_item .form_item_input {
          margin-left: 50px;
          margin-top: 18px;
          height: 40px;
          flex: inherit;
          font-size: 15px; } }
    .form .form_item .form_item_textarea {
      border: 1px solid #ddd;
      border-radius: 6px;
      margin-left: 40px;
      padding-left: 1em;
      padding-right: 1em;
      height: 216px;
      flex: 1;
      width: 100%;
      max-width: 410px;
      background: #eaedf2;
      font-size: 14px; }
      @media (max-width: 700px) {
        .form .form_item .form_item_textarea {
          margin-top: 18px;
          margin-left: 50px;
          height: 200px;
          flex: inherit;
          font-size: 15px; } }
  .form .form_btn {
    display: block;
    border-radius: 6px;
    margin: 0 auto;
    margin-top: 32px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 200px;
    letter-spacing: 0.05em;
    background-color: #B8292D;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    border: none; }
    .form .form_btn:active {
      background-color: #EA9698; }
    @media (max-width: 700px) {
      .form .form_btn {
        margin-top: 24px;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 160px;
        font-size: 16px; } }

.form_neko_icon {
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 70px;
  width: 100px; }
