/* ------------------------------------------
  Utility Class
------------------------------------------ */
/* clearfix */
.clearfix:after {
  clear: both;
  content: '.';
  display: block;
  height: 0;
  visibility: hidden;
}

/* ------------------------------------------
  Common
------------------------------------------ */
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  height: 100%;
}

body {
  color: #454545;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-weight: normal;
  line-height: 1;
  margin-top: 0;
  min-width: 1160px;
  position: relative;
  -webkit-text-size-adjust: none;
}

body.active {
  height: 100%;
  overflow: hidden;
}

a, a img {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease, background .3s ease, opacity .3s ease;
}

a:visited {
  color: inherit;
}

a:hover {
  opacity: .75;
}

a:focus {
  outline: none;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  line-height: inherit;
}

ul, ol {
  list-style: none;
}

.only_pc {
  display: block !important;
}

.only_sp {
  display: none !important;
}

input, button, select, textarea {
  -webkit-appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
}

input[type=checkbox], input[type=radio] {
  height: 1px;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 1px;
  z-index: -1;
}

.container {
  margin: 0 auto;
  width: 1120px;
}

@media screen and (max-width: 767px) {
  body {
    margin-top: 0;
    min-width: inherit;
  }

  .container {
    margin: 0 10px;
    width: auto;
  }

  .only_pc {
    display: none !important;
  }

  .only_sp {
    display: block !important;
  }
}

/* underline Marker */
.marker-pink {
  background: linear-gradient(transparent 60%,#faa2b1 60%);
}
.marker-pink-narrow {
  background: linear-gradient(transparent 80%, #faa2b1 80%);
}
.marker-stripe-pink {
  background: repeating-linear-gradient(-45deg, transparent 0 2px, #ffe5f2 2px 4px);
  font-weight: bold;
}
.marker-blue {
  background: linear-gradient(transparent 60%,#6ceff4 60%);
}
.marker-blue-narrow {
  background: linear-gradient(transparent 80%, #6ceff4 80%);
}
.marker-stripe-blue {
  background: repeating-linear-gradient(-45deg, transparent 0 2px, #6ceff4 2px 4px);
  font-weight: bold;
}
.marker-green {
  background: linear-gradient(transparent 60%, #8cff7d 60%);
}
.marker-green-narrow {
  background: linear-gradient(transparent 80%, #8cff7d 80%);
}
.marker-stripe-green {
  background: repeating-linear-gradient(-45deg, transparent 0 2px, #8cff7d 2px 4px);
  font-weight: bold;
}
.marker-yellow {
  background: linear-gradient(transparent 60%, #f9ff52 60%);
}
.marker-yellow-narrow {
  background: linear-gradient(transparent 80%, #f9ff52 80%);
}
.marker-stripe-yellow {
  background: repeating-linear-gradient(-45deg, transparent 0 2px, #f9ff52 2px 4px);
  font-weight: bold;
}
.marker-orange {
  background: linear-gradient(transparent 60%, #f9b737 60%);
}
.marker-orange-narrow {
  background: linear-gradient(transparent 80%, #f9b737 80%);
}
.marker-stripe-orange {
  background: repeating-linear-gradient(-45deg, transparent 0 2px, #f9b737 2px 4px);
  font-weight: bold;
}
[class^=marker-stripe-] {
    background-size: 100% .4em;
    padding-bottom: .9em;
    background-position: 0 center;
    background-repeat: no-repeat;
}

/* ------------------------------------------
  header
------------------------------------------ */
.header {
  background-color: #cc1c2c;
  height: 150px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}

.header_top_wrapper {
  align-items: center;
  display: flex;
  height: 100px;
  justify-content: space-between;
}

.header_middle {
  background-color: #191919;
  color: #fff;
  font-size: 1.6rem;
  /* font-weight: bold; */
  height: 40px;
  letter-spacing: .05em;
  line-height: 40px;
  text-align: center;
}

.header_top_left {
  align-items: center;
  display: flex;
}

.header_top_sns {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-right: 30px;
}

.header_top_sns_item:first-child {
  margin-right: 8px;
}

.header_top_sns_item_instagram {
  height: 25px;
  width: auto;
}

.header_top_sns_item_facebook {
  height: 23px;
  width: auto;
}

.header_top_sns_item_twitter {
  height: 25px;
  width: auto;
}

.header_top_sns_item_line {
  height: 25px;
  width: auto;
}

.search_container {
  align-items: center;
  background-color: #fff;
  border: 1px solid #c3c3c3;
  border-radius: 3px;
  display: flex;
  height: 30px;
  padding: 7px 11px;
  width: 210px;
}

.search_container input {
  border: none;
  font-size: 1.4rem;
  outline: none;
  width: 173px;
}

.search_container input::placeholder {
  color: lightgray;
}

.search_container input:focus {
  outline: none;
}

.search_container button {
  border-left: 1px solid #989898;
  padding-left: 13px;
}

.search_container button img {
  height: 11px;
  width: 12px;
}

.header_logo {
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}

.header_logo a {
  display: block;
}

.header_logo_img {
  height: 100px;
  width: 100px;
}

.header_top_right {
  align-items: center;
  display: flex;
}

.header_top_right_link {
  align-items: center;
  border: 1px solid #fff;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  padding: 11px 0;
  width: 130px;
}

.header_top_right_link:last-child {
  margin-left: 5px;
}

.header_top_right_link_img {
  height: 18px;
  margin-right: 8px;
  width: auto;
}

.header_top_right_link_text {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: .05em;
}

.header_nav {
  background-color: #191919;
  height: 50px;
}

#header_nav.fixed {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

.g_nav {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  position: relative;
}

.g_nav_item {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}

.g_nav_item_link {
  color: #fff;
  display: block;
  font-size: 1.5rem;
  letter-spacing: .05em;
  padding: 17px 0;
  width: 100%;
}

.g_nav_item_dropdown_content {
  display: none;
}

.g_nav_item_dropdown_content.open {
  background-color: #000;
  color: #fff;
  display: flex;
  font-family: '游明朝', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
  font-weight: bold;
  justify-content: center;
  left: 0;
  padding: 40px 0;
  position: absolute;
  right: 0;
  top: 50px;
}

.g_nav_item_dropdown_item_text {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 188px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.g_nav_item_dropdown_item_text p {
  font-size: 2.2rem;
  letter-spacing: .03em;
}

.g_nav_item_dropdown_item_img {
  display: flex;
  flex-wrap: wrap;
  width: 560px;
}

.g_nav_item_dropdown_item_img_item {
  height: 160px;
  margin-right: 20px;
  margin-top: 20px;
  width: calc((100% - 20px) / 2);
  width: 270px;
}

.g_nav_item_dropdown_item_img_item:nth-child(2n) {
  margin-right: 0;
}

.g_nav_item_dropdown_item_img_item:first-child, .g_nav_item_dropdown_item_img_item:nth-child(2) {
  margin-top: 0;
}

.g_nav_item_dropdown_item_img_item_link {
  border: 1px solid #989898;
  display: block;
  font-size: 1.3rem;
  height: 100%;
  letter-spacing: .08em;
  padding: 20px 0 10px;
  text-align: center;
  width: 100%;
}

.g_nav_item_dropdown_item_img_item_link_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.g_nav_dropdown_item_img_item_link_text {
  font-size: 1.3rem;
  letter-spacing: .08em;
  width: 100%;
}

.g_nav_dropdown_item_img_item_link_img_wrapper {
  width: 100%;
}

.g_nav_dropdown_item_img_item_link_img {
  margin: 0 auto;
  max-height: 100px;
  width: auto;
}

.g_nav_item_dropdown_item_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 372px;
}

.g_nav_item_dropdown_item_list_item {
  margin-top: 28px;
  padding-left: 65px;
}

.g_nav_item_dropdown_item_list_item:first-child {
  margin-top: 0;
}

.g_nav_item_dropdown_item_list_item_link {
  font-size: 1.4rem;
  letter-spacing: .08em;
}

.g_nav_item_dropdown_item_list_item_link::before {
  content: '－';
  margin-right: 5px;
}

#search_wrap {
  display: none;
}

.header a.header_message {
  background-color: rgba(255,255,255,.5);
  color: #cc1c2c;
  padding: 10px 0;
  position: absolute;
  text-align: center;
  text-decoration: underline;
  width: 100%;
}

.header a.header_message:visited {
  color: #cc1c2c;
}

.header a.header_message:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .header {
    border-bottom: 4px solid #000;
    height: 74px;
  }

  .header_top_wrapper {
    align-items: center;
    display: flex;
    height: 70px;
    justify-content: space-between;
  }

  .header_top_left {
    padding-left: 10px;
  }

  .header_top_sns, .search_container {
    display: none;
  }

  .header_logo_img {
    height: 70px;
    width: 70px;
  }

  .header_top_right {
    align-items: center;
    display: flex;
    padding-right: 10px;
  }

  .header_middle {
    font-size: 1.2rem;
    height: 30px;
    line-height: 30px;
  }

  .header_nav {
    background-color: #000;
    height: auto;
    left: 0;
    padding: 20px 45px 30px;
    position: absolute;
    right: 0;
    top: 70px;
    transform: translateX(-100%);
    width: 100%;
  }

  .g_nav {
    display: block;
    height: auto;
    padding-bottom: 70px;
  }

  .g_nav_item {
    border-bottom: 1px solid #707070;
    height: 60px;
    text-align: center;
    width: 100%;
  }

  .g_nav_item:last-child {
    border-bottom: none;
  }

  .g_nav_item_link {
    width: 100%;
  }

  .h_menu {
    cursor: pointer;
    height: 22px;
    position: relative;
    transition: .3s;
    width: 35px;
  }

  .h_menu_line {
    background-color: #fff;
    content: '';
    display: block;
    height: 4px;
    position: absolute;
    top: 0;
    transition: ease .4s;
    width: 35px;
  }

  .h_menu_line::before {
    background-color: #fff;
    content: '';
    display: block;
    height: 4px;
    position: absolute;
    top: 9px;
    transition: ease .4s;
    width: 35px;
  }

  .h_menu_line::after {
    background-color: #fff;
    content: '';
    display: block;
    height: 4px;
    position: absolute;
    top: 18px;
    transition: ease .4s;
    width: 35px;
  }

  /* ハンバーガーメニュークリック後のスタイル */
  .header_nav.active {
    height: calc(100vh - 70px);
    overflow-y: scroll;
    transform: translateX(0);
  }

  .h_menu.active span {
    top: 12px;
    transform: rotate(45deg);
    width: 25px;
  }

  .h_menu.active span::before {
    opacity: 0;
  }

  .h_menu.active span:after {
    top: 0;
    transform: rotate(-90deg);
    width: 25px;
  }


  .header_top_right_link {
    border: none;
    margin-right: 16px;
    padding: 0;
    width: auto;
  }

  .header_top_right_link:last-child {
    margin-right: 0;
  }

  .header_top_right_link:last-child {
    margin-left: 0;
  }

  .header_top_right_link_img {
    height: 18px;
    margin-right: 0;
    width: auto;
  }

  .header_top_right_link_text {
    display: none;
  }

  .g_nav_item_dropdown_content {
    display: none;
  }

  .g_nav_item_dropdown {
    display: block;
    height: auto;
  }

  .g_nav_item_dropdown_content.open {
    display: block;
    padding: 0;
    position: static;
  }

  .g_nav_item_dropdown_item_text {
    display: none;
  }

  .g_nav_item_dropdown_item_text p {
    font-size: 2.2rem;
    letter-spacing: .03em;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }

  .g_nav_item_dropdown_item_img {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .g_nav_item_dropdown_item_img_item {
    height: 160px;
    margin-right: 10px;
    margin-top: 10px;
    width: calc((100% - 10px) / 2);
  }

  .g_nav_item_dropdown_item_img_item:nth-child(2n) {
    margin-right: 0;
  }

  .g_nav_item_dropdown_item_img_item:first-child, .g_nav_item_dropdown_item_img_item:nth-child(2) {
    margin-top: 0;
  }

  .g_nav_item_dropdown_item_img_item_link {
    border: 1px solid #989898;
    display: block;
    font-size: 1.3rem;
    height: 100%;
    letter-spacing: .08em;
    padding: 20px 0 10px;
    text-align: center;
    width: 100%;
  }

  .g_nav_dropdown_item_img_item_link_text {
    font-size: 1.2rem;
    width: 100%;
  }

  .g_nav_dropdown_item_img_item_link_img_wrapper {
    width: 100%;
  }

  .g_nav_dropdown_item_img_item_link_img {
    margin: 0 auto;
    max-height: 100px;
    width: auto;
  }

  .g_nav_item_dropdown_item_list {
    margin-bottom: 30px;
    margin-top: 20px;
    text-align: left;
    width: 100%;
  }

  .g_nav_item_dropdown_item_list_item {
    margin-top: 15px;
    padding-left: 0;
  }

  .g_nav_item_dropdown_item_list_item_link {
    font-size: 1.3rem;
  }

  .search_open_btn {
    background-image: url('../img/common/search_sp.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 19px 18px;
    cursor: pointer;
    height: 18px;
    width: 19px;
  }

  .search_open_btn.btnactive {
    background-image: url('../img/common/search_close.png');
    background-size: 19px auto;
  }

  #search_wrap {
    display: block;
    height: 74px;
    left: 0;
    position: absolute;/*絶対配置にして*/
    top: -74px;
    transition: all .4s;/*transitionを使ってスムースに現れる*/
    width: 100%;
    z-index: -1;/*最背面に設定*/
  }

  /*ボタンクリック後、JSで#search_wrapに panelactive クラスが付与された後の見た目*/
  #search_wrap.panelactive {
    background: #000;
    opacity: 1;/*不透明に変更*/
    padding: 11px 15px 15px;
    top: 0;
    width: 100%;
    z-index: 3;/*全面に出現*/
  }

  /*==検索窓*/
  #search_wrap #searchform {
    display: none;/*検索窓は、はじめ非表示*/
  }

  /*ボタンクリック後、JSで#search_wrapに panelactive クラスが付与された後*/
  #search_wrap.panelactive #searchform {
    display: block;/*検索窓を表示*/
    position: relative;
  }

  /*==検索フォームの設定*/

  /*==テキスト入力とボタンinput共通設定*/
  #search_wrap input {
    -webkit-appearance: none;/*SafariやChromeのデフォルトの設定を無効*/
    color: #454545;
    cursor: pointer;/*カーソルを指マークに*/
    outline: none;
  }

  /*テキスト入力input設定*/
  #search_wrap input[type='text'] {
    background: #fff;/*背景色を付ける*/
    border: none;
    height: 48px;
    letter-spacing: .05em;
    padding: 10px;
    transition: all .5s;
    width: 100%;
  }

  /*ボタンinput設定*/
  #search_wrap input[type='submit'] {
    background: url('../img/common/search.png') no-repeat right;/*虫眼鏡アイコンを背景に表示*/
    background-size: 20px 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
  }

  .header a.header_message {
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 5px 10px;
    text-align: left;
  }
}

/* ------------------------------------------
  footer
------------------------------------------ */
.footer_bottom {
  background-color: #000;
  padding: 80px 0 50px;
  width: 100%;
}

.footer_content {
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.footer_content_left {
  display: flex;
}

.footer_content_left_link_wrapper_logo_img {
  height: 120px;
  width: auto;
}

.footer_content_left_link_wrapper_sns {
  align-items: center;
  display: flex;
  margin-top: 20px;
}

.footer_content_left_link_wrapper_sns_item_instagram {
  height: 35px;
  margin-right: 6px;
  width: 35px;
}

.footer_content_left_link_wrapper_sns_item_facebook {
  align-self: flex-start;
  height: 47px;
  width: 47px;
}

.footer_content_left_link_wrapper_sns_item_twitter {
  height: 35px;
  width: 35px;
}

.footer_content_left_link_wrapper_sns_item_line {
  height: 35px;
  margin-left: 10px;
  width: 35px;
}

.footer_content_left_text {
  margin-left: 20px;
}

.footer_content_left_text_name {
  font-size: 1.7rem;
  letter-spacing: .08em;
}

.footer_content_left_text_desc {
  font-size: 1.3rem;
  letter-spacing: .01em;
  margin-top: 10px;
}

.footer_content_left_text_desc:first-child {
  margin-top: 20px;
}

.mail_mag {
  border: 1px solid #fff;
  display: block;
  font-size: 1.6rem;
  letter-spacing: .01em;
  margin-top: 28px;
  padding: 13px 0;
  text-align: center;
  width: 212px;
}

.footer_content_right {
  display: flex;
}

.footer_content_right_item {
  letter-spacing: .01em;
}

.footer_content_right_item:first-child {
  margin-right: 80px;
}

.footer_content_right_item_name {
  font-size: 1.6rem;
}

.footer_content_right_item_list {
  font-size: 1.4rem;
}

.footer_content_right_item_list_item {
  margin-top: 13px;
}

.footer_content_right_item_list_item:before {
  content: '－';
  margin-right: 5px;
}

.copyright {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: .01em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer_bottom {
    margin-top: 0;
    padding: 70px 0 40px;
  }

  .footer_content {
    flex-direction: column;
  }

  .footer_content_left {
    align-items: center;
    flex-direction: column;
  }

  .footer_content_left_link_wrapper_sns {
    justify-content: center;
    margin-top: 45px;
  }

  .footer_content_left_link_wrapper_sns_item_instagram {
    height: 30px;
    width: 30px;
  }

  .footer_content_left_link_wrapper_sns_item_facebook {
    height: 41px;
    width: 41px;
  }

  .footer_content_left_link_wrapper_sns_item_twitter {
    height: 30px;
    width: 30px;
  }

  .footer_content_left_link_wrapper_sns_item_line {
    height: 30px;
    margin-left: 8px;
    width: 30px;
  }

  .footer_content_left_text {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
  }

  .footer_content_left_text_desc:first-child {
    margin-top: 30px;
  }

  .mail_mag {
    margin: 28px auto 0;
  }

  .footer_content_right {
    justify-content: space-between;
    margin-top: 50px;
  }

  .footer_content_right_item:first-child {
    margin-right: 0;
  }

  .footer_content_right_item_name {
    font-size: 1.4rem;
  }

  .footer_content_right_item_list {
    font-size: 1.2rem;
  }

  .copyright {
    margin-top: 35px;
  }
}
