@charset "UTF-8";
@font-face {
  font-family: 'BebasKai';
  src: url("common/font/BebasKai-Regular.eot");
  src: url("common/font/BebasKai-Regular.eot?#iefix") format("embedded-opentype"), url("common/font/BebasKai-Regular.woff") format("woff"), url("common/font/BebasKai-Regular.ttf") format("truetype"), url("common/font/BebasKai-Regular.svg") format("svg");
}

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

body {
  margin: 0 auto;
  width: 100%;
  color: #333;
  font: 0.625rem "メイリオ", Meiryo, Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-size: 1.4rem;
  word-break: break-all;
  background-color: #f1f1f1;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
}

img {
 -webkit-touch-callout: none;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

body.fixed {
  width: 100%;
  position: fixed;
}

/* for IE 6 */
* html body {
  font-size: 75%;
}

/* for IE 7 */
*:first-child + html body {
  font-size: 75%;
}

/* リンク */
a {
  color: #000;
}

a.imgLink {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  a {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -ms-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  a:hover {
    opacity: 0.75;
    filter: alpha(opacity=75);
  }
}

.link-underline {
  text-decoration: underline;
}

.link-red {
  color: #c66060;
}

/* 画像 */
img {
  max-width: 100%;
}

.anchor_target {
  margin-top: -30px;
  padding-top: 30px;
}

/* 区切りライン */
.hr_line {
  border-top: 1px solid #CCCCCC;
  margin: 50px auto;
}

@media screen and (max-width: 479px) {
  .hr_line {
    margin: 30px auto;
  }
}

.hr_line.dashed {
  border-top: 1px dashed #CCCCCC;
}

/* テキスト装飾 */
.text-caution {
  color: #C31213;
}

.text-important {
  color: #C31213;
}

.text-bold {
  font-weight: bold;
}

/* メディアクエリで表示・非表示切り替え */
.pc_only {
  display: inherit;
}

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

.sp_only {
  display: none;
}

@media screen and (max-width: 479px) {
  .sp_only {
    display: inherit;
  }
}

/* Wordpress共通 */
.entry-content {
  line-height: 1.8;
}

.entry-content h2 {
  margin-bottom: .5em;
  font-size: 20px;
  font-size: 2rem;
}

.entry-content h3 {
  margin-bottom: .5em;
  font-size: 16px;
  font-size: 1.6rem;
}

.entry-content p:not(:last-child) {
  margin-bottom: 30px;
}

.entry-content ul, .entry-content ol {
  margin-bottom: 30px;
}

.entry-content ul li:not(:last-child), .entry-content ol li:not(:last-child) {
  margin-bottom: 1em;
}

.entry-content hr {
  margin: 30px auto;
  border-top: 1px solid #e2e2e2;
}

/* Flexbox レイアウト */
.flex_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex_wrap.v_center {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.flex_wrap.vh_center {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.flex_wrap.space_between {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

.flex_wrap.reverse {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex_wrap.wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.layout-notice {
  padding: 30px;
  background-color: #f1f1f1;
}

@media screen and (max-width: 479px) {
  .layout-notice {
    padding: 20px;
  }
}

.layout-notice .headline {
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 479px) {
  .layout-notice .text_area {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.layout-notice .text_area p:not(:last-child) {
  margin-bottom: 1em;
}

.layout-notice .text_area .btn {
  width: 160px;
  margin-right: 10px;
  padding: 8px 1em;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (max-width: 479px) {
  .layout-notice .text_area .btn {
    width: 47.5%;
    margin-right: 3%;
  }
}

@media screen and (max-width: 479px) {
  .layout-notice .text_area .btn:nth-child(2n) {
    margin-right: 0;
  }
}

.layout-notice .text_area ul {
  margin-left: 1em;
}

.layout-notice .text_area li:not(:last-child) {
  margin-bottom: .8em;
}

.layout-kiyaku h1 {
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
}

.layout-kiyaku dl:not(:last-child) {
  margin-bottom: 30px;
}

.layout-kiyaku dt {
  margin-bottom: 5px;
  font-weight: 600;
}

.layout-type1 {
  margin-bottom: -3.5%;
}

.layout-type1 .card-type1 {
  background-color: #FFF;
}

@media screen and (max-width: 479px) {
  .layout-type1 .card-type1 .inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  .layout-type1 .card-type1 .image_area {
    flex-basis: 115px;
  }
}

@media screen and (max-width: 479px) {
  .layout-type1 .card-type1 .image_area img {
    width: 100%;
    height: 115px;
    object-fit: cover;
  }
}

.layout-type1 .card-type1 .text_area {
  padding: 20px;
}

@media screen and (max-width: 479px) {
  .layout-type1 .card-type1 .text_area {
    flex: 1;
  }
}

.layout-type1 .card-type1 .headline_area {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e2e2;
}

@media screen and (max-width: 479px) {
  .layout-type1 .card-type1 .headline_area {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.layout-type1 .card-type1 .headline_area .date {
  margin-bottom: 5px;
  display: inline-block;
}

@media screen and (max-width: 479px) {
  .layout-type1 .card-type1 .headline_area .date {
    margin-bottom: 3px;
  }
}

.layout-type1 .card-type1 .headline_area h2 {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 479px) {
  .layout-type1 .card-type1 .headline_area h2 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.layout-type1 .card-type1 .status {
  margin-bottom: 10px;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 479px) {
  .layout-type1 .card-type1 .status {
    font-size: 10px;
    font-size: 1rem;
  }
}

.layout-type1 .card-type1 .status dt {
  font-weight: 600;
}

.layout-type1 .card-type1 .user dt {
  margin-bottom: 10px;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 479px) {
  .layout-type1 .card-type1 .user dt {
    font-size: 10px;
    font-size: 1rem;
  }
}

.layout-type1 .card-type1 .user dt:before {
  margin-right: 3px;
  font-family: "FontAwesome";
  content: "\f0e6";
}

.layout-type1 .card-type1 .user dd img {
  width: 24px;
}

@media screen and (max-width: 479px) {
  .layout-type1 .card-type1 .user dd img {
    width: 20px;
  }
}

.layout-type1 .card-type2 {
  background-color: #FFF;
}

.layout-type1 .card-type2 .text_area {
  padding: 20px;
}

.layout-type1 .card-type2 .headline_area .date {
  margin-bottom: 5px;
  display: inline-block;
}

.layout-type1 .card-type2 .headline_area h2 {
  font-size: 14px;
  font-size: 1.4rem;
}

dl.note dt {
  position: relative;
}

dl.note dt span {
  position: absolute;
}

dl.note dd {
  padding-left: 1em;
}

p.note:before {
  content: "※";
  font-weight: 300;
}

dl.caution dt {
  margin-bottom: .3em;
  color: #cf462e;
  font-weight: 600;
}

.video_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 56.25%;
  margin-top: 20px;
}

.video_wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.table_layout {
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
}

.table_layout .tr {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 479px) {
  .table_layout .tr {
    display: block;
  }
}

.table_layout .tr:first-child .th {
  border-top: 1px solid #f0ecdb;
}

.table_layout .th {
  width: 30%;
  padding: 1.5em;
  background-color: #f0ecdb;
  border-left: 1px solid #f0ecdb;
  border-right: 1px solid #f0ecdb;
  border-top: 1px solid #FFF;
  font-weight: normal;
  text-align: left;
}

@media screen and (max-width: 479px) {
  .table_layout .th {
    width: 100%;
    padding: 1em;
  }
}

.table_layout .td {
  width: 70%;
  padding: 1.5em;
  background-color: #fff;
  border-right: 1px solid #f0ecdb;
  border-top: 1px solid #f0ecdb;
  text-align: left;
}

@media screen and (max-width: 479px) {
  .table_layout .td {
    width: 100%;
    padding: 1em;
    border-left: 1px solid #f0ecdb;
  }
}

.table_layout .td span {
  width: 100%;
  display: inline-block;
}

.table_layout .td span:not(:last-child) {
  margin-bottom: 1em;
}

.table_layout .td ul, .table_layout .td ol {
  margin-bottom: 0;
}

.table_layout .attention {
  color: #cf462e;
  margin-left: 5px;
}

table {
  width: 100%;
}

table thead {
  border: 1px solid #CCC;
}

table th,
table td {
  padding: 1em 1.2em;
}

table th {
  background-color: #f1f1f1;
  border-bottom: 1px solid #CCC;
}

table td {
  border-bottom: 1px solid #CCC;
}

@media screen and (max-width: 479px) {
  .sp_table_list tr {
    width: 100%;
    margin-bottom: 20px;
    display: block;
  }
  .sp_table_list thead {
    display: none;
  }
  .sp_table_list tbody {
    display: block;
    width: 100%;
    overflow: hidden;
  }
  .sp_table_list tbody th {
    list-style: none;
    background-color: #f0ecdb;
  }
  .sp_table_list tbody td {
    border-top: none;
  }
  .sp_table_list tbody th, .sp_table_list tbody td {
    width: 100%;
    display: block;
  }
}

ol {
  margin-left: 1.5em;
}

ol li:not(:last-child) {
  margin-bottom: .5em;
}

/* ヘッダー */
.l-header {
  width: 100%;
  background-color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.home .l-header {
  position: relative;
}

.home .l-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

body.fixed.home .l-header {
  position: fixed;
}

.l-header .header_inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 0 12px 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .l-header .header_inner {
    width: 100%;
    padding: 8px 12px;
  }
}

.l-header .header_title {
  width: 154px;
  height: 36px;
}

@media screen and (max-width: 768px) {
  .l-header .header_title {
    width: 174px;
    height: 34px;
  }
}

.l-header .header_title a {
  background-image: url(./images/jks_logo2.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.header_menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.header_menu .menu {
  margin-right: 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 768px) {
  .header_menu .menu {
    display: none;
  }
}

.header_menu li {
  margin: 0 .5em;
}

.header_menu a {
  color: #FFF;
}

.header_menu .hamburger_icon {
  width: 60px;
  height: 60px;
  background-color: #006eb1;
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

@media screen and (max-width: 768px) {
  .header_menu .hamburger_icon {
    width: 50px;
    height: 50px;
  }
}

.header_menu .logout {
  width: 60px;
  height: 60px;
  background-color: #006eb1;
  position: absolute;
  color: #FFF;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  font-size: 40px;
  font-size: 4rem;
  z-index: 99;
}

@media screen and (max-width: 768px) {
  .header_menu .logout {
    width: 50px;
    height: 50px;
  }
}

.header_menu .logout img {
  width: 31px;
}

@media screen and (max-width: 768px) {
  .header_menu .logout img {
    width: 24px;
  }
}

/* グローバルナビゲーション */
#global-nav {
  display: none;
  width: auto;
  position: fixed;
  top: 0;
  left: 35%;
  bottom: 0;
  right: 0;
  z-index: 9;
  overflow-y: auto;
  background-color: #000;
}

@media screen and (max-width: 768px) {
  #global-nav {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 479px) {
  #global-nav {
    right: 0;
    left: 0;
  }
}

#global-nav .normal_menu {
  padding: 180px 50px 30px;
  position: absolute;
  right: 70%;
  left: 0;
}

@media screen and (max-width: 479px) {
  #global-nav .normal_menu {
    padding: 100px 20px 30px;
    right: 55%;
  }
}

#global-nav .fc_menu {
  height: 100%;
  padding: 180px 50px 30px;
  background-color: #006eb1;
  position: absolute;
  left: 30%;
  right: 0;
}

@media screen and (max-width: 479px) {
  #global-nav .fc_menu {
    height: auto;
    padding: 100px 20px 30px;
    left: 45%;
  }
}

#global-nav .fc_menu .menu_wrap {
  width: 300px;
}

@media screen and (max-width: 479px) {
  #global-nav .fc_menu .menu_wrap {
    width: 100%;
  }
}

#global-nav .menu_wrap:not(:last-child) {
  margin-bottom: 50px;
}

#global-nav .menu_wrap h1 {
  margin-bottom: 30px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
  color: #FFF;
}

@media screen and (max-width: 479px) {
  #global-nav .menu_wrap h1 {
    margin-bottom: 20px;
    font-size: 10px;
    font-size: 1rem;
  }
}

#global-nav .menu {
  width: 100%;
  display: block;
}

#global-nav li {
  text-align: left;
}

#global-nav li:not(:last-child) {
  margin-bottom: 20px;
}

#global-nav a {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  color: #FFF;
}

@media screen and (max-width: 479px) {
  #global-nav a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

#global-nav a span {
  margin-top: 3px;
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: 'BebasKai';
}

#global-nav .btn {
  margin-top: 20px;
  padding: 1em;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #FFF;
}

@media screen and (max-width: 479px) {
  #global-nav .btn {
    font-size: 10px;
    font-size: 1rem;
  }
}

#global-nav .banner {
  margin-top: 30px;
}

#global-nav .banner img {
  width: 100%;
}

#global-nav hr {
  margin: 30px auto;
  border-bottom: 1px solid #FFF;
}

.category_navi {
  background-color: #000;
  position: relative;
}

@media screen and (max-width: 479px) {
  .category_navi {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

.category_navi ul {
  width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 768px) {
  .category_navi ul {
    width: 100%;
    padding: 10px 0;
  }
}

@media screen and (max-width: 479px) {
  .category_navi ul {
    width: 950px;
  }
}

.category_navi li {
  width: 100%;
  font-size: 10px;
  font-size: 1rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .category_navi li {
    letter-spacing: 0;
  }
}

.category_navi li.active a {
  background-color: #252525;
}

.category_navi a {
  padding: 12px 0;
  display: block;
  color: #FFF;
  line-height: 1;
}

.category_navi a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.category_navi a span {
  width: 100%;
  height: 20px;
  margin-bottom: 6px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.category_navi img {
  width: 18px;
}

.category_child_navi {
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  background-color: rgba(0, 0, 0, 0.75);
}

.category_child_navi ul {
  width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 768px) {
  .category_child_navi ul {
    width: 100%;
    padding: 10px 0;
  }
}

.category_child_navi li {
  width: 100%;
  text-align: center;
}

.category_child_navi a {
  padding: 16px 0;
  color: #FFF;
  display: block;
  font-weight: 600;
  font-size: 13px;
  font-size: 1.3rem;
  background-color: #252525;
}

.category_child_navi .sub {
  margin-top: 5px;
  display: block;
  color: #FFF;
  font-weight: 400;
  font-family: 'BebasKai';
  font-size: 12px;
  font-size: 1.2rem;
}

/* 検索エリア */
.search_wrap {
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.search_wrap input {
  font-size: 16px;
  font-size: 1.6rem;
}

.search_wrap input[type="text"] {
  padding: 1em;
  background-color: #FFF;
  border: 1px solid #CCC;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

.search_wrap input[type="submit"] {
  padding: 1em;
  background-color: #32a5dc;
  color: #FFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

.search_wrap input[type="radio"] {
  margin-right: 5px;
  position: relative;
  -webkit-appearance: button;
  appearance: button;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  padding: 0;
  min-height: auto;
  content: "";
  background-color: #FFFFFF;
  border: 1px solid #999999;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
  vertical-align: middle;
  cursor: pointer;
  top: -2px;
}

.search_wrap input[type="radio"]:checked:after {
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  content: "";
  width: 10px;
  height: 10px;
  background: #32a5dc;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.search_wrap input[type="checkbox"] {
  margin-right: 5px;
  position: relative;
  -webkit-appearance: unset;
  appearance: unset;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  padding: 0;
  min-height: auto;
  content: "";
  background-color: #FFFFFF;
  border: 1px solid #999999;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  vertical-align: middle;
  cursor: pointer;
  top: -2px;
}

.search_wrap input[type="checkbox"]:checked:after {
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  font-family: "FontAwesome";
  content: "\f00c";
  color: #32a5dc;
}

.search_wrap select {
  padding: 1em 30px 1em 1em;
  background-color: #FFF;
  border: 1px solid #CCC;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background: #FFF url(images/arrow/select_arrow01.png) right center no-repeat;
  background-size: contain;
}

.search_wrap .search_area {
  width: 1040px;
  margin: 50px auto;
  padding: 50px;
  background-color: #f1f1f1;
}

@media screen and (max-width: 768px) {
  .search_wrap .search_area {
    width: 100%;
    margin: 0 auto;
    padding: 30px;
  }
}

@media screen and (max-width: 479px) {
  .search_wrap .search_area {
    padding: 30px 20px;
  }
}

.search_wrap .search_box_group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search_wrap .search_box_group .search_box {
  width: 33.3%;
}

@media screen and (max-width: 479px) {
  .search_wrap .search_box_group .search_box {
    width: 100%;
  }
}

.search_wrap .search_box {
  margin-bottom: 50px;
}

@media screen and (max-width: 479px) {
  .search_wrap .search_box {
    margin-bottom: 30px;
  }
}

.search_wrap dt {
  margin-bottom: 10px;
  font-weight: 600;
}

.search_wrap dd label:not(:last-child) {
  margin-right: 10px;
}

.search_wrap .form_wrap input {
  width: 100%;
}

.search_wrap .search_keyword dd {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.search_wrap .search_keyword .key {
  width: 50%;
  margin-right: 20px;
}

@media screen and (max-width: 479px) {
  .search_wrap .search_keyword .key {
    width: 70%;
  }
}

.search_wrap .search_keyword .submit {
  width: 20%;
}

@media screen and (max-width: 479px) {
  .search_wrap .search_keyword .submit {
    width: 30%;
  }
}

.search_wrap .search_category dd {
  margin-bottom: -10px;
  list-style-type: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search_wrap .search_category label {
  width: 25%;
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  .search_wrap .search_category label {
    width: 33.3%;
  }
}

@media screen and (max-width: 479px) {
  .search_wrap .search_category label {
    width: 50%;
    padding-left: 22px;
    text-indent: -22px;
  }
}

.search_wrap .search_category label:not(:last-child) {
  margin-right: 0;
}

.search_wrap .search_all_button {
  margin-top: 30px;
  text-align: center;
}

.sp_menu_bg {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.75);
}

/* ハンバーガーボタン */
.hamburger_icon {
  z-index: 99;
}

#nav-toggle {
  margin: 0;
  display: block;
  width: 32px;
  height: 23px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #nav-toggle {
    width: 24px;
    height: 20px;
  }
}

#nav-toggle div {
  position: relative;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #FFF;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 11px;
}

@media screen and (max-width: 768px) {
  #nav-toggle span:nth-child(2) {
    top: 9px;
  }
}

#nav-toggle span:nth-child(3) {
  top: 22px;
}

@media screen and (max-width: 768px) {
  #nav-toggle span:nth-child(3) {
    top: 18px;
  }
}

.open #nav-toggle span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}

.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

.open #global-nav {
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  background-color: #314c26;
}

/* 前へ・次へ */
.info-page {
  text-align: center;
}

.info-page li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
}

.info-page li:first-child {
  border-right: 1px solid #ccc;
  padding-right: 11px;
}

/* ページャー 前へ・次へ */
.pager {
  margin: 50px auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  list-style-type: none;
}

@media screen and (max-width: 479px) {
  .pager {
    margin-top: 30px;
  }
}

.pager li {
  width: 100%;
}

.pager .page_link {
  padding: 0 15px;
  line-height: 1;
}

.pager .prev {
  border-right: 1px solid #333;
  text-align: right;
}

.pager .prev:last-child {
  border-right: none;
  text-align: center;
}

.pager .next:first-child {
  margin-left: auto;
  border-left: 1px solid #333;
}

/* ページャー 数字 */
.pagination {
  margin-top: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 479px) {
  .pagination {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.pagination ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

@media screen and (max-width: 479px) {
  .pagination ul {
    width: 100%;
    margin: 10px auto 20px;
    order: 1;
  }
}

.pagination li {
  width: 30px;
  height: 30px;
  margin: 0 8px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  font-weight: 400;
  font-family: 'BebasKai';
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #CCCCCC;
}

@media screen and (max-width: 479px) {
  .pagination li {
    margin: 0 5px;
    padding: .6em 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.pagination li.active {
  background-color: #FFF;
}

.pagination li.blank {
  border: none;
  font-size: 12px;
  font-size: 1.2rem;
}

.pagination a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.pagination a:hover {
  background-color: #FFF;
}

@media screen and (max-width: 479px) {
  .pagination p:first-child {
    order: 2;
  }
}

@media screen and (max-width: 479px) {
  .pagination p:last-child {
    order: 3;
  }
}

.pagination .page_link {
  font-size: 12px;
  font-size: 1.2rem;
}

.pagination .prev:before {
  margin-right: 2px;
  content: '＜';
}

.pagination .next:after {
  margin-left: 2px;
  content: '＞';
}

/* プラグイン WP-PageNavi調整用 */
.wp-pagenavi {
  margin-top: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  position: relative;
}

@media screen and (max-width: 479px) {
  .wp-pagenavi {
    margin: 20px -4px 55px;
  }
}

.wp-pagenavi .current,
.wp-pagenavi .page {
  width: 30px;
  height: 30px;
  margin: 0 8px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  font-weight: 400;
  font-family: 'BebasKai';
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #CCCCCC;
}

@media screen and (max-width: 479px) {
  .wp-pagenavi .current,
  .wp-pagenavi .page {
    margin: 0 4px;
    padding: .6em 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.wp-pagenavi .current.active,
.wp-pagenavi .page.active {
  background-color: #FFF;
}

.wp-pagenavi .current.blank,
.wp-pagenavi .page.blank {
  border: none;
  font-size: 12px;
  font-size: 1.2rem;
}

.wp-pagenavi .current {
  background-color: #e2e2e2;
}

.wp-pagenavi .page {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.wp-pagenavi .page:hover {
  background-color: #FFF;
}

@media screen and (max-width: 479px) {
  .wp-pagenavi p:first-child {
    order: 2;
  }
}

@media screen and (max-width: 479px) {
  .wp-pagenavi p:last-child {
    order: 3;
  }
}

.wp-pagenavi .previouspostslink {
  font-size: 12px;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
}

@media screen and (max-width: 479px) {
  .wp-pagenavi .previouspostslink {
    left: 4px;
    bottom: -35px;
  }
}

.wp-pagenavi .previouspostslink:before {
  margin-right: 2px;
  content: '＜';
}

.wp-pagenavi .nextpostslink {
  font-size: 12px;
  font-size: 1.2rem;
  position: absolute;
  right: 0;
}

@media screen and (max-width: 479px) {
  .wp-pagenavi .nextpostslink {
    right: 4px;
    bottom: -35px;
  }
}

.wp-pagenavi .nextpostslink:after {
  margin-left: 2px;
  content: '＞';
}

/* パンくず */
.breadcrumb {
  width: 100%;
  background-color: #E2E2E2;
}

.breadcrumb ul {
  width: 1040px;
  margin: 0 auto;
  padding: 10px 20px;
  list-style-type: none;
}

@media screen and (max-width: 768px) {
  .breadcrumb ul {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .breadcrumb ul {
    padding: 10px 3%;
  }
}

.breadcrumb li {
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 13px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 479px) {
  .breadcrumb li {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.breadcrumb li:last-child {
  font-weight: 600;
}

.breadcrumb li:not(:last-child):after {
  margin: 0 5px 0 12px;
  font-family: "FontAwesome";
  content: "\f105";
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 479px) {
  .breadcrumb li:not(:last-child):after {
    margin: 0 2px 0 8px;
  }
}

/* スマホ限定ナビ */
.sp_navi .menu_group {
  width: 100%;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}

.sp_navi .normal_menu {
  background-color: #000;
}

.sp_navi .normal_menu .menu {
  width: 928px;
}

.sp_navi .normal_menu li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.sp_navi .normal_menu a {
  color: #FFF;
}

.sp_navi .fc_menu {
  background-color: #006eb1;
}

.sp_navi .fc_menu .menu {
  width: 1275px;
}

.sp_navi .fc_menu li {
  border-top: 1px solid #006eb1;
  border-bottom: 1px solid #006eb1;
  border-right: 1px solid #006eb1;
  background-color: #FFF;
}

.sp_navi .fc_menu a {
  color: #006eb1;
}

.sp_navi .menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.sp_navi .menu li {
  width: 116px;
  padding: 1.5em 1em;
  text-align: center;
}

.sp_navi .menu .headline {
  background-color: #006eb1;
  color: #FFF;
  font-weight: 600;
}

/* メインビジュアル */
#main_visual {
  width: 100%;
  margin: 0 auto;
  background-color: #f2f2f2;
}

@media screen and (max-width: 479px) {
  #main_visual {
    height: 100vh;
  }
}

/* Safari用のハックは、Chromeに適用されないようにする */
@supports (-webkit-touch-callout: none) {
  #main_visual {
    /* Safari用のハック */
    height: -webkit-fill-available;
  }
}

#main_visual .catch {
  max-width: 1040px;
  margin-left: -520px;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9;
}

@media screen and (max-width: 479px) {
  #main_visual .catch {
    display: none;
  }
}

#main_visual .sp-slides-container img {
  width: auto;
  height: 100%;
  margin: 0 auto;
  display: block;
  object-fit: cover;
}

#main_visual .sp-slides {
  height: 100%;
}

#main_visual .sp-image-container {
  background: #000;
}

#main_visual .sp-image-container img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}

#main_visual .sp-thumbnails-container {
  margin-top: -40px;
  margin-bottom: -50px;
  padding-bottom: 20px;
  overflow-x: unset;
  overflow-y: -webkit-paged-y;
}

@media screen and (max-width: 479px) {
  #main_visual .sp-thumbnails-container {
    margin-top: 10px;
    overflow-y: auto;
  }
}

#main_visual .sp-bottom-thumbnails .sp-thumbnail-container {
  margin: 0 5px;
  -webkit-box-shadow: 0 0 10px 0 #AAA;
  -moz-box-shadow: 0 0 10px 0 #AAA;
  box-shadow: 0 0 10px 0 #AAA;
}

#main_visual .sp-arrow {
  width: 10px;
}

#title_visual {
  width: 100%;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  #title_visual {
    margin-top: 50px;
  }
}

#title_visual .image_wrap {
  width: 1040px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #title_visual .image_wrap {
    width: 100%;
  }
}

/* 共通 */
.section_wrap {
  width: 100%;
  position: relative;
}

.section_wrap:not(:last-child) {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .section_wrap:not(:last-child) {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 479px) {
  .section_wrap:not(:last-child) {
    margin-bottom: 20px;
  }
}

.section_wrap .content {
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .section_wrap .content {
    width: 100%;
    padding: 0 12px;
  }
}

.section_wrap img {
  max-width: 100%;
}

.section_wrap .headline-type1 {
  position: absolute;
  top: 0;
  left: 0;
}

body:not(.home) .section_wrap .content {
  padding: 0 68px;
}

@media screen and (max-width: 768px) {
  body:not(.home) .section_wrap .content {
    padding: 0 20px;
  }
}

@media screen and (max-width: 479px) {
  body:not(.home) .section_wrap .content {
    padding: 0 12px;
  }
}

#main_contents {
  width: 1040px;
  margin: 0 auto;
  padding: 30px 0;
  background-color: #FFF;
}

@media screen and (max-width: 768px) {
  #main_contents {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  #main_contents {
    padding: 20px 0;
  }
}

.sub_page #main_contents {
  padding: 60px 0 100px;
}

@media screen and (max-width: 479px) {
  .sub_page #main_contents {
    padding: 30px 0 50px;
  }
}

/* もっと見るコンテンツ */
.read_more_contents .l-column_inner {
  display: none;
}

.read_finish_text {
  display: none;
  margin-top: 30px;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
  color: #AAA;
}

/* TOP - NOTICE */
.cnt-notice .tab_menu {
  margin-right: auto;
  list-style-type: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 768px) {
  .cnt-notice .tab_menu {
    width: 100%;
    margin-top: 10px;
  }
}

@media screen and (max-width: 479px) {
  .cnt-notice .tab_menu {
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.cnt-notice .tab_menu li {
  width: 80px;
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .cnt-notice .tab_menu li {
    width: 100%;
    margin: 0 6px;
  }
}

@media screen and (max-width: 479px) {
  .cnt-notice .tab_menu li {
    margin: 0 2px;
  }
}

.cnt-notice .tab_menu a {
  padding: 5px 0;
  border-bottom: 3px solid #CCC;
  display: block;
  text-align: center;
}

.cnt-notice .tab_menu a.active {
  border-color: #006eb1;
  color: #006eb1;
}

.cnt-notice .notice_wrap {
  padding: 30px 30px;
}

@media screen and (max-width: 768px) {
  .cnt-notice .notice_wrap {
    padding: 0;
  }
}

.cnt-notice .notice_wrap dl {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 479px) {
  .cnt-notice .notice_wrap dl {
    display: block;
  }
}

.cnt-notice .notice_wrap dl:not(:last-child) {
  margin-bottom: 15px;
}

.cnt-notice .notice_wrap dt {
  flex: none;
}

@media screen and (max-width: 479px) {
  .cnt-notice .notice_wrap dt {
    margin-bottom: .5em;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.cnt-notice .notice_wrap dd {
  flex: 1;
}

@media screen and (max-width: 479px) {
  .cnt-notice .notice_wrap dd {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.cnt-notice .notice_wrap .cat {
  width: 70px;
  margin: 0 10px;
  padding: 2px 5px;
  display: inline-block;
  background-color: #000;
  color: #FFF;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

.cnt-notice .notice_wrap .fc {
  background-color: #006eb1;
}

/* TOP - Youtube */
.cnt-youtube {
  background-color: #000;
  color: #FFF;
}

.cnt-youtube .content {
  padding-bottom: 20px;
}

.cnt-youtube .youtube_wrap {
  padding: 20px 10px 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 479px) {
  .cnt-youtube .youtube_wrap {
    padding: 0 10px 10px;
    display: block;
  }
}

.cnt-youtube .main_area img,
.cnt-youtube .sub_area img {
  width: 100%;
}

.cnt-youtube .main_area {
  width: 650px;
}

@media screen and (max-width: 768px) {
  .cnt-youtube .main_area {
    width: 66%;
  }
}

@media screen and (max-width: 479px) {
  .cnt-youtube .main_area {
    width: 100%;
    margin-bottom: 20px;
  }
}

.cnt-youtube .main_area dl {
  margin-top: 10px;
}

.cnt-youtube .main_area dt {
  margin-bottom: 5px;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 479px) {
  .cnt-youtube .main_area dt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.cnt-youtube .sub_area {
  width: 297px;
}

@media screen and (max-width: 768px) {
  .cnt-youtube .sub_area {
    width: 29%;
  }
}

@media screen and (max-width: 479px) {
  .cnt-youtube .sub_area {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }
}

.cnt-youtube .sub_area .movie {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 479px) {
  .cnt-youtube .sub_area .movie {
    width: 47.5%;
  }
}

.cnt-youtube .sub_area .movie:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (max-width: 479px) {
  .cnt-youtube .sub_area .movie:not(:last-child) {
    margin-bottom: 0;
  }
}

.cnt-youtube .sub_area .video_area {
  width: 100%;
}

.cnt-youtube .sub_area dl {
  width: 46%;
}

.cnt-youtube .video_wrap {
  border: 1px solid #FFF;
}

/* TOP Bannerエリア */
.cnt-banner .l-column_inner img {
  width: 100%;
}

/* お知らせ */
.page-notice .notice_wrap dl {
  padding-bottom: 15px;
  border-bottom: 1px solid #CCC;
}

.post_detail {
  border: 1px solid #CCC;
}

.post_detail .post_title {
  padding: 30px;
  border-bottom: 1px solid #006eb1;
}

@media screen and (max-width: 479px) {
  .post_detail .post_title {
    padding: 20px;
  }
}

.post_detail .post_title .cat {
  width: 70px;
  margin: 0 10px;
  padding: 2px 5px;
  display: inline-block;
  background-color: #000;
  color: #FFF;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

.post_detail .post_title .fc {
  background-color: #006eb1;
}

.post_detail .post_title p {
  margin-bottom: 10px;
}

.post_detail .post_title h2 {
  font-size: 18px;
  font-size: 1.8rem;
}

.post_detail .cmt_title_area {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 479px) {
  .post_detail .cmt_title_area {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 479px) {
  .post_detail .cmt_title_area p {
    width: 100%;
    order: 1;
  }
}

@media screen and (max-width: 479px) {
  .post_detail .cmt_title_area h2 {
    width: 100%;
    order: 2;
  }
}

.post_detail .text_area {
  padding: 30px;
}

@media screen and (max-width: 479px) {
  .post_detail .text_area {
    padding: 20px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.post_detail .text_area p:not(:last-child) {
  margin-bottom: 50px;
}

@media screen and (max-width: 479px) {
  .post_detail .text_area p:not(:last-child) {
    margin-bottom: 30px;
  }
}

.post_detail .text_area p.text-center {
  text-align: center;
}

.post_detail .text_area iframe {
  max-width: 100%;
}

.post_detail .text_area .btn-detail {
  position: relative;
  right: 0;
}

.post_detail .banner_wrap a {
  display: inline-block;
}

.post_detail .banner_wrap a:not(:last-child) {
  margin-bottom: 30px;
}

/* プロフィール */
.profile-page .site-content {
  padding-bottom: 100px !important;
}

.profile_cnt {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 479px) {
  .profile_cnt {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.profile_cnt .image_area {
  width: 35%;
}

@media screen and (max-width: 479px) {
  .profile_cnt .image_area {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  .profile_cnt .image_area img {
    width: 50%;
  }
}

.profile_cnt .detail_area {
  width: 60%;
}

@media screen and (max-width: 479px) {
  .profile_cnt .detail_area {
    width: 100%;
  }
}

.profile_cnt dl {
  padding: 10px 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #CCC;
}

.profile_cnt dl:first-child {
  border-top: 1px solid #CCC;
}

.profile_cnt dt {
  flex: none;
}

.profile_cnt dd {
  flex: 1;
}

.profile_cnt.cnt01 dl {
  padding: 20px 10px;
}

.profile_cnt.cnt01 dt {
  width: 100px;
}

.profile_cnt.cnt02 dt {
  width: 60px;
}

.profile_cnt.cnt03 .detail_area {
  width: 100%;
}

.profile_cnt.cnt03 dt {
  width: 60px;
}

.profile_cnt.dg_event dt {
  width: 200px;
  letter-spacing: 0;
}

@media screen and (max-width: 479px) {
  .profile_cnt.dg_event dt {
    width: 120px;
  }
}

/* ディスコグラフィー */
.disc_cnt {
  padding: 40px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  border-bottom: 1px solid #CCC;
}

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

.disc_cnt:first-child {
  border-top: 1px solid #CCC;
}

.disc_cnt .image_area {
  width: 35%;
}

.disc_cnt .image_area img {
  width: 100%;
}

.disc_cnt .btn-detail {
  margin-top: 20px;
}

.disc_cnt .detail_area {
  width: 60%;
}

.disc_cnt .date {
  margin-bottom: 6px;
}

.disc_cnt dt {
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 479px) {
  .disc_cnt dt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* メッセージ */
.comment_wrap .comment {
  border: 1px solid #006eb1;
}

.comment_wrap .title {
  padding: 10px;
  background-color: #006eb1;
  color: #FFF;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

.comment_wrap .detail {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 479px) {
  .comment_wrap .detail {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.comment_wrap .name {
  width: 30%;
  padding: 20px;
  background-color: #e2e2e2;
  text-align: center;
}

@media screen and (max-width: 479px) {
  .comment_wrap .name {
    width: 100%;
    padding: 15px;
    text-align: left;
  }
}

.comment_wrap .text {
  width: 70%;
  padding: 20px;
}

@media screen and (max-width: 479px) {
  .comment_wrap .text {
    width: 100%;
    padding: 15px;
  }
}

.comment_edit {
  margin-top: 50px;
}

.comment_edit textarea {
  width: 100%;
  height: 200px;
  padding: 20px;
  border: 1px solid #006eb1;
}

@media screen and (max-width: 479px) {
  .comment_edit textarea {
    padding: 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.comment_edit .submit_area {
  margin-top: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

.comment_edit .btn-submit {
  width: 200px;
  padding: 14px;
}

.message_list {
  margin-bottom: 50px;
}

@media screen and (max-width: 479px) {
  .message_list thead {
    display: none;
  }
}

.message_list thead th {
  font-family: 'BebasKai';
  font-weight: 400;
}

.message_list thead .num {
  width: 80px;
}

.message_list thead .image {
  width: 80px;
}

.message_list thead .title {
  text-align: left;
}

.message_list thead .name {
  width: 180px;
}

.message_list thead .comment {
  width: 120px;
}

.message_list thead .date {
  width: 200px;
}

@media screen and (max-width: 479px) {
  .message_list tbody tr {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #CCC;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.message_list tbody th {
  background: none;
  text-align: left;
  font-weight: 400;
}

@media screen and (max-width: 479px) {
  .message_list tbody th {
    padding: 0;
    display: block;
    border-bottom: 0;
  }
}

.message_list tbody td {
  text-align: center;
}

@media screen and (max-width: 479px) {
  .message_list tbody td {
    padding: 0;
    display: block;
    border-bottom: 0;
    text-align: left;
  }
}

@media screen and (max-width: 479px) {
  .message_list tbody .image {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .message_list tbody .date {
    width: 100%;
    margin-bottom: .5em;
    text-align: left;
    order: 1;
  }
}

@media screen and (max-width: 479px) {
  .message_list tbody .title {
    order: 2;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 479px) {
  .message_list tbody .comment {
    margin-left: .5em;
    order: 3;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 479px) {
  .message_list tbody .comment:before {
    content: '（';
  }
}

@media screen and (max-width: 479px) {
  .message_list tbody .comment:after {
    content: '）';
  }
}

.message_archive {
  margin-bottom: 50px;
}

.message_archive form {
  padding: 10px 20px;
  background-color: #f1f1f1;
  border: 1px solid #CCC;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

@media screen and (max-width: 479px) {
  .message_archive form {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 479px) {
  .message_archive p {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .message_archive p:not(:last-child) {
    margin-bottom: 1em;
  }
}

.message_archive .btn-select {
  width: 250px;
  margin-right: 10px;
  padding: 5px;
  background-color: #FFF;
  border: 1px solid #CCC;
  text-align: center;
  position: relative;
  border-radius: 17px;
  cursor: pointer;
  /* IEでcursorがチラついたので */
}

.message_archive .label {
  position: absolute;
  width: 100%;
  z-index: 1;
}

.message_archive .select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  cursor: pointer;
  width: 100%;
  border: none;
  opacity: 0;
  position: relative;
  z-index: 2;
}

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

.message_archive .select:focus {
  z-index: -1;
  opacity: 1;
}

.message_archive .msg {
  font-size: 12px;
  font-size: 1.2rem;
}

.message_archive input[type="text"] {
  padding: 5px;
  background-color: #FFF;
}

.message_archive input[type="submit"] {
  padding: 5px 10px;
}

/* ギャラリー */
.gallery-page .update {
  margin-bottom: 20px;
  text-align: right;
  display: block;
}

.gallery-page .bwg_thumbnail.bwg_container {
  padding: 0;
}

.gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 {
  width: 100%;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}

.gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 .bwg-item {
  width: 211px;
  margin: 0 20px 20px 0;
}

@media screen and (max-width: 768px) {
  .gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 .bwg-item {
    width: auto;
    margin: 0;
    padding: 10px;
  }
}

.gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 .bwg-item:nth-child(4n) {
  margin: 0 0 20px 0;
}

@media screen and (max-width: 768px) {
  .gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 .bwg-item:nth-child(4n) {
    margin: 0;
  }
}

.gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 .bwg-item > a {
  margin: 0;
}

.gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 .bwg-item0 {
  width: 211px;
  height: 211px;
  background: #FFF;
  border: 1px solid #CCC;
}

@media screen and (max-width: 768px) {
  .gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 .bwg-item0 {
    width: 100%;
    height: auto;
  }
}

.gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 .bwg-item1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: 'object-fit: contain;';
  /*IE対策*/
}

.gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 .bwg-item1 img:hover {
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}

.gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 .bwg-title2,
.gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 .bwg-ecommerce2 {
  font-family: unset;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 .bwg-title2,
  .gallery-page #bwg_container1_0 #bwg_container2_0 .bwg-container-0 .bwg-ecommerce2 {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.gallery-page .bwg_close_btn {
  font-size: 40px;
  font-size: 4rem;
}

.gallery-page .bwg_close_btn:before {
  content: '×';
}

.gallery-page .fa-chevron-left,
.gallery-page .fa-chevron-right {
  width: 30px;
  height: 30px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.gallery-page .fa-chevron-left:before,
.gallery-page .fa-chevron-right:before {
  content: none;
}

.gallery-page .fa-chevron-left {
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Capa_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20206.3%20377.4%22%20style%3D%22enable-background%3Anew%200%200%20206.3%20377.4%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M185.1%2C374c11.6%2C10.6%2C28-5.8%2C17.4-17.4c-57.9-56-114.9-112-172.8-168c57.9-56%2C114.9-112%2C172.8-168%20c11.6-10.6-5.8-28-17.4-17.4C124.3%2C62.2%2C63.5%2C121.1%2C3.6%2C180c-4.8%2C4.8-4.8%2C12.5%2C0%2C17.4C63.5%2C256.2%2C124.3%2C315.1%2C185.1%2C374z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.gallery-page .fa-chevron-right {
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Capa_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20206.3%20377.4%22%20style%3D%22enable-background%3Anew%200%200%20206.3%20377.4%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M202.7%2C197.4c4.8-4.9%2C4.8-12.6%2C0-17.4C142.8%2C121.1%2C82%2C62.2%2C21.2%2C3.2C9.6-7.4-7.8%2C10%2C3.8%2C20.6%20c57.9%2C56%2C114.9%2C112%2C172.8%2C168c-57.9%2C56-114.9%2C112-172.8%2C168c-10.6%2C11.6%2C5.8%2C28%2C17.4%2C17.4C82%2C315.1%2C142.8%2C256.2%2C202.7%2C197.4z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.photo_gallery {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.photo_gallery .photo_cnt {
  width: 235px;
  margin: 0 20px 20px 0;
}

.photo_gallery .photo_cnt:nth-child(4n) {
  margin: 0 0 20px 0;
}

.photo_gallery .image {
  width: 100%;
  height: 235px;
  margin-bottom: 5px;
  display: block;
  border: 1px solid #CCC;
}

.photo_gallery img {
  width: 235px;
  height: 235px;
  object-fit: contain;
}

.movie_gallery {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 479px) {
  .movie_gallery {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.movie_gallery .movie_area {
  width: 48.5%;
}

@media screen and (max-width: 479px) {
  .movie_gallery .movie_area {
    width: 100%;
    margin-bottom: 30px;
  }
}

.movie_gallery .movie_area p {
  margin-top: 5px;
}

@media screen and (max-width: 479px) {
  .movie_gallery .movie_area p {
    margin-top: 10px;
    font-size: 10px;
    font-size: 1rem;
  }
}

.movie_gallery .movie_wrap {
  height: 411px;
  background-color: #000;
}

@media screen and (max-width: 479px) {
  .movie_gallery .movie_wrap {
    height: auto;
  }
}

.movie_gallery .video_wrap {
  background-color: #000;
}

.movie_gallery .detail_area {
  width: 48.5%;
  list-style-type: none;
}

@media screen and (max-width: 479px) {
  .movie_gallery .detail_area {
    width: 100%;
  }
}

.movie_gallery li {
  padding: 10px 10px;
  border-bottom: 1px solid #CCC;
}

.movie_gallery li:first-child {
  border-top: 1px solid #CCC;
}

/* コミュニティ */
@media screen and (max-width: 768px) {
  .page-community .message_archive form {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }
}

.page-community .message_archive input[type="text"] {
  width: 438px;
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .page-community .message_archive input[type="text"] {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_archive input[type="text"] {
    margin: 0;
  }
}

.page-community .message_archive input[type="submit"] {
  width: 100px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-community .message_archive input[type="submit"] {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list thead {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list thead .image {
    width: 20%;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list thead .title {
    width: 40%;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list thead .comment {
    width: 20%;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list thead .date {
    width: 20%;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list tbody tr {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #CCC;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list tbody th {
    padding: 0;
    display: block;
    border-bottom: 0;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list tbody td {
    padding: 0;
    display: block;
    border-bottom: 0;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list tbody .image {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list tbody .date {
    width: 100%;
    margin-bottom: .3em;
    text-align: left;
    order: 1;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list tbody .title {
    order: 2;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list tbody .comment {
    margin-left: .5em;
    order: 3;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list tbody .comment:before {
    content: '（';
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list tbody .comment:after {
    content: '）';
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list tbody .num {
    margin-right: 1em;
    margin-bottom: .3em;
    color: #006eb1;
    font-weight: bold;
  }
}

@media screen and (max-width: 479px) {
  .page-community .message_list tbody .name {
    margin-bottom: .3em;
  }
}

.message_list .more {
  margin-top: 10px;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: right;
  display: block;
}

.message_list .more:after {
  margin-left: 2px;
  content: '＞';
}

.message_list .navi {
  margin-top: -15px;
  padding: 10px 20px;
  background-color: #333;
  color: #FFF;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 768px) {
  .message_list .navi {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 479px) {
  .message_list .navi {
    padding: 15px 15px;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.message_list .navi p {
  margin-right: auto;
}

@media screen and (max-width: 479px) {
  .message_list .navi p {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
}

.message_list .navi a {
  margin-left: 20px;
  color: #FFF;
}

@media screen and (max-width: 479px) {
  .message_list .navi a {
    width: 33.33%;
    margin-left: 0;
    text-align: center;
  }
}

.message_list .navi .asc:after {
  margin-left: 2px;
  content: '▲';
}

.message_list .navi .des:after {
  margin-left: 2px;
  content: '▼';
}

.message_list .pagination.top {
  margin-bottom: 20px;
}

.message_list .headline-group1.bottom {
  margin-top: 20px;
}

.message_list .headline-group1.bottom .btn {
  height: 44px;
  margin-left: auto;
}

.guideline {
  padding: 0 30px;
}

@media screen and (max-width: 768px) {
  .guideline {
    padding: 0;
  }
}

.contents_menu {
  margin: 50px auto 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

.contents_menu dl {
  width: 49%;
  margin-bottom: 2%;
  padding: 20px;
  border: 1px solid #CCC;
  background-color: #f1f1f1;
}

@media screen and (max-width: 479px) {
  .contents_menu dl {
    width: 100%;
    margin-bottom: 15px;
  }
}

.contents_menu dl.col1 {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.contents_menu dl.col1 dt {
  width: 50%;
  margin-bottom: 0;
  text-align: left;
}

.contents_menu dl.col1 dd {
  width: 50%;
}

.contents_menu dt {
  margin-bottom: 14px;
  text-align: center;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .contents_menu dt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.contents_menu dd a {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 479px) {
  .contents_menu dd a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* ダウンロード */
.page-download .post_detail .text_area {
  padding: 50px 30px;
}

.download_cnt {
  width: 500px;
  margin: 0 auto;
}

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

.download_cnt .link {
  margin: 30px auto 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 479px) {
  .download_cnt .link {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.download_cnt .link a {
  width: 23.5%;
  padding: 15px 0;
  display: inline-block;
  line-height: 1;
  border: 1px solid #006eb1;
  color: #006eb1;
  text-align: center;
}

@media screen and (max-width: 479px) {
  .download_cnt .link a {
    width: 48.5%;
    margin-bottom: 3%;
  }
}

/* ダウンロード */
.page-special .post_detail .text_area {
  padding: 50px 30px;
}

/* ラブレター */
.page-letter .comment_edit {
  margin-bottom: 50px;
}

.page-letter .button_wrap {
  margin-top: 20px;
}

.page-letter .button_wrap .btn {
  width: 200px;
  padding: 8px 1em;
}

@media screen and (max-width: 479px) {
  .page-letter .button_wrap .btn {
    width: 45%;
  }
}

.preview_area {
  padding: 100px 80px;
  background-color: #fefef3;
  border: 1px solid #CCC;
}

@media screen and (max-width: 479px) {
  .preview_area {
    padding: 40px 30px;
  }
}

.preview_area p {
  line-height: 50px;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  background: url(images/page-letter/bg_letter.png) left bottom repeat;
  background-size: auto 50px;
}

@media screen and (max-width: 479px) {
  .preview_area p {
    line-height: 40px;
    font-size: 14px;
    font-size: 1.4rem;
    background-size: 50% 40px;
  }
}

/* アーカイブ */
.archive_wrap .post_detail:not(:last-child) {
  margin-bottom: 30px;
}

.archive_wrap .text_area p {
  margin-bottom: 1em !important;
}

.archive_wrap .btn_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

/* よくある質問 */
.faq_contents dt {
  text-indent: -30px;
  border-top: 1px dotted #e5e5e5;
  padding: 13px 10px 12px 40px;
  font-size: 15px;
  cursor: pointer;
}

.faq_contents dt:before {
  margin-right: 5px;
  content: 'Q.';
  font-size: 24px;
  color: #006eb1;
}

.faq_contents dd {
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px dotted #e5e5e5;
  font-size: 13px;
  display: none;
}

.faq_contents dd .inner {
  background: #f5f5f5;
  padding: 30px 30px 30px 98px;
  position: relative;
}

.faq_contents dd .inner:before {
  content: 'A.';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  padding: 14px 28px 12px 15px;
  background: #c33;
  font-family: "Noto Sans";
  font-style: italic;
  font-size: 24px;
  color: #fff;
}

/* サイトマップ */
.sitemap_wrap.area01 {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

.sitemap_wrap.area01 .sitemap {
  width: 45%;
}

.sitemap_wrap.area02 {
  border: 1px solid #006eb1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

.sitemap_wrap.area02 .headline {
  width: 30%;
  padding: 20px;
  background-color: #006eb1;
  color: #FFF;
}

.sitemap_wrap.area02 .sitemap {
  width: 70%;
  padding: 20px;
}

.sitemap_wrap ul {
  list-style-type: none;
}

.sitemap_wrap ul li:not(:last-child) {
  margin-bottom: .8em;
}

.sitemap_wrap .parent {
  margin-bottom: 0;
  margin-left: 12px;
  text-indent: -12px;
}

.sitemap_wrap .parent li:before {
  content: '・';
  margin-right: 5px;
}

.sitemap_wrap .child {
  margin-top: 12px;
  margin-left: 12px;
}

.sitemap_wrap .child li:before {
  content: '→';
  margin-right: 5px;
  font-size: 10px;
  font-size: 1rem;
}

.l-column_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-column_wrap.col1 .l-column_inner {
  margin-bottom: 3%;
}

.l-column_wrap.col2 .l-column_inner {
  width: 48.5%;
  margin: 0 3% 3% 0;
}

.l-column_wrap.col2 .l-column_inner:nth-of-type(2n) {
  margin: 0 0 3% 0;
}

.l-column_wrap.col3 .l-column_inner {
  width: 31%;
  margin: 0 3.5% 3.5% 0;
}

.l-column_wrap.col3 .l-column_inner:nth-of-type(3n) {
  margin: 0 0 3.5% 0;
}

.l-column_wrap.col4 .l-column_inner {
  width: 22.75%;
  margin: 0 3% 3% 0;
}

.l-column_wrap.col4 .l-column_inner:nth-of-type(4n) {
  margin: 0 0 3% 0;
}

@media screen and (max-width: 767px) {
  .l-column_wrap.col2 .l-column_inner {
    margin: 0 0 15px 0;
    width: 100%;
  }
  .l-column_wrap.col2 .l-column_inner:nth-of-type(2n) {
    margin: 0 0 15px 0;
  }
  .l-column_wrap.col3 .l-column_inner {
    margin: 0 0 15px 0;
    width: 100%;
  }
  .l-column_wrap.col3 .l-column_inner:nth-of-type(3n) {
    margin: 0 0 15px 0;
  }
  .l-column_wrap.col4 .l-column_inner {
    margin: 0 0 15px 0;
    width: 100%;
  }
  .l-column_wrap.col4 .l-column_inner:nth-of-type(4n) {
    margin: 0 0 15px 0;
  }
  .sp_col2.col2 {
    margin: auto auto -3%;
  }
  .sp_col2.col2 .l-column_inner {
    margin: 0 3% 3% 0;
    width: 48.5%;
  }
  .sp_col2.col2 .l-column_inner:nth-of-type(2n) {
    margin: 0 0 3% 0;
  }
  .sp_col2.col3 {
    margin: auto auto -3%;
  }
  .sp_col2.col3 .l-column_inner {
    margin: 0 3% 3% 0;
    width: 48.5%;
  }
  .sp_col2.col3 .l-column_inner:nth-of-type(2n) {
    margin: 0 0 3% 0;
  }
  .sp_col2.col3 .l-column_inner:nth-of-type(3n) {
    margin: 0 3% 3% 0;
  }
  .sp_col2.col4 {
    margin: auto auto -3%;
  }
  .sp_col2.col4 .l-column_inner {
    margin: 0 3% 3% 0;
    width: 48.5%;
  }
  .sp_col2.col4 .l-column_inner:nth-of-type(2n) {
    margin: 0 0 3% 0;
  }
  .sp_col2.col4 .l-column_inner:nth-of-type(4n) {
    margin: 0 0 3% 0;
  }
  .sp_col3.col2 {
    margin: auto auto -3%;
  }
  .sp_col3.col2 .l-column_inner {
    margin: 0 3% 3% 0;
    width: 31.3%;
  }
  .sp_col3.col2 .l-column_inner:nth-of-type(2n) {
    margin: 0 3% 3% 0;
  }
  .sp_col3.col2 .l-column_inner:nth-of-type(3n) {
    margin: 0 0 3% 0;
  }
  .sp_col3.col4 {
    margin: auto auto -3%;
  }
  .sp_col3.col4 .l-column_inner {
    margin: 0 3% 3% 0;
    width: 31.3%;
  }
  .sp_col3.col4 .l-column_inner:nth-of-type(4n) {
    margin: 0 auto 3% 0;
  }
  .sp_col3.col4 .l-column_inner:nth-of-type(3n) {
    margin: 0 0 3% 0;
  }
}

/* フッター */
.l-footer {
  width: 100%;
  background-color: #212121;
}

.l-footer .footer_inner {
  padding: 20px 20px;
}

@media screen and (max-width: 768px) {
  .l-footer .footer_inner {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .l-footer .footer_inner {
    padding: 20px 20px;
    display: block;
  }
}

.l-footer .area1 {
  background-color: #1a1a1a;
}

.l-footer .area2 {
  background-color: #000000;
}

.l-footer .navi {
  font-size: 12px;
  font-size: 1.2rem;
}

.l-footer .navi ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

@media screen and (max-width: 479px) {
  .l-footer .navi ul {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }
}

.l-footer .navi li {
  display: inline-block;
}

@media screen and (max-width: 479px) {
  .l-footer .navi li {
    width: 50%;
  }
}

.l-footer .navi li:not(:last-child) {
  margin-right: 1.5em;
}

@media screen and (max-width: 479px) {
  .l-footer .navi li:not(:last-child) {
    margin: 0;
  }
}

.l-footer .navi a {
  color: #FFF;
}

@media screen and (max-width: 479px) {
  .l-footer .navi a {
    width: 100%;
    padding: .5em 0;
    display: block;
  }
}

.l-footer .logo {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.l-footer .logo a {
  margin: 0 10px;
}

.l-footer .copyright {
  font-size: 10px;
  font-size: 1rem;
  color: #989898;
  text-align: center;
}

@media screen and (max-width: 479px) {
  .l-footer .copyright {
    letter-spacing: 0.025em;
  }
}

/* 見出し */
.headline-type1 {
  padding: 1em;
  background-color: #006eb1;
  color: #FFF;
  display: inline-block;
}

.headline-type2 {
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: 0;
  font-family: 'BebasKai';
  font-weight: 400;
}

@media screen and (max-width: 479px) {
  .headline-type2 {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.headline-type2:before {
  margin-right: 10px;
  content: '';
  width: 30px;
  height: 30px;
  display: inline-block;
  background-color: #006eb1;
}

@media screen and (max-width: 479px) {
  .headline-type2:before {
    width: 22px;
    height: 22px;
  }
}

.headline-type3 {
  margin-bottom: 10px;
  color: #006eb1;
}

.headline-type3:before {
  content: '■';
}

.headline-group1 {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

.headline-group1 .title {
  width: 250px;
  padding: 10px;
  background-color: #006eb1;
  font-size: 16px;
  font-size: 1.6rem;
  color: #FFF;
  text-align: center;
}

@media screen and (max-width: 479px) {
  .headline-group1 .title {
    width: 48%;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.headline-group1 .btn {
  width: 200px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

@media screen and (max-width: 479px) {
  .headline-group1 .btn {
    width: 48%;
  }
}

.headline-group2 {
  margin: 0 -20px 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  position: relative;
}

@media screen and (max-width: 768px) {
  .headline-group2 {
    margin: 0 -12px 30px;
    display: block;
  }
}

.headline-group2 .title {
  width: 150px;
  padding: 10px;
  background-color: #006eb1;
  font-size: 16px;
  font-size: 1.6rem;
  color: #FFF;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .headline-group2 .title {
    width: 100px;
    padding: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.headline-group2 .btn {
  width: 100px;
  padding: 8px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .headline-group2 .btn {
    width: 75px;
    margin: 0;
    padding: 5px;
  }
}

.content_catch {
  margin-bottom: 24px;
  font-size: 36px;
  font-size: 3.6rem;
  letter-spacing: 0.3em;
  font-weight: 500;
}

@media screen and (max-width: 479px) {
  .content_catch {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.content_catch span {
  color: #60a5c6;
}

.headline_wrap {
  margin-bottom: 30px;
  padding: 0 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 768px) {
  .headline_wrap {
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .headline_wrap {
    margin-bottom: 20px;
    padding: 0 12px;
  }
}

.headline_wrap .menu {
  list-style-type: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 768px) {
  .headline_wrap .menu {
    margin-top: 10px;
  }
}

@media screen and (max-width: 479px) {
  .headline_wrap .menu {
    margin: 10px -6px 0;
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.headline_wrap .menu li {
  width: 80px;
}

@media screen and (max-width: 768px) {
  .headline_wrap .menu li {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .headline_wrap .menu li {
    margin: 0 6px;
  }
}

.headline_wrap .menu li:not(:last-child) {
  margin-right: 20px;
}

@media screen and (max-width: 479px) {
  .headline_wrap .menu li:not(:last-child) {
    margin-right: auto;
  }
}

.headline_wrap .menu a {
  padding: 5px 0;
  border-bottom: 3px solid #CCC;
  display: block;
  text-align: center;
}

.headline_wrap .menu a.active {
  border-color: #006eb1;
  color: #006eb1;
}

.headline_wrap .gallery li {
  width: 140px;
}

@media screen and (max-width: 768px) {
  .headline_wrap .gallery li {
    width: 100%;
  }
}

.headline_wrap .community li {
  width: 120px;
}

@media screen and (max-width: 768px) {
  .headline_wrap .community li {
    width: 100%;
  }
}

/* ボタン関連 */
.btn {
  display: inline-block;
  text-align: center;
}

.btn-green {
  background-color: green;
  color: #FFF;
}

.btn-black {
  background-color: #000000;
  color: #FFF;
}

.btn-gray {
  background-color: #999;
  color: #FFF;
}

.btn-blue {
  background-color: #006eb1;
  color: #FFF;
}

.btn-center {
  margin: 0 auto;
  display: block;
}

.btn-large {
  width: 400px;
  margin-top: 50px;
  padding: 10px 1em;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 479px) {
  .btn-large {
    width: 100%;
    margin-top: 30px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.btn-mid {
  width: 226px;
  padding: 12px 12px 13px;
}

.btn-small {
  width: 100px;
}

.btn-more {
  padding: 5px 10px;
  display: inline-block;
  line-height: 1;
  background-color: #b2b2b2;
  color: #FFF;
}

@media screen and (max-width: 479px) {
  .btn-more {
    width: 90%;
    margin: 20px auto 0;
    padding: 24px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.btn-detail {
  padding: 5px 10px;
  display: inline-block;
  line-height: 1;
  border: 1px solid #006eb1;
  color: #006eb1;
}

.btn-submit {
  padding: 5px 10px;
  display: block;
  line-height: 1;
  border: 1px solid #006eb1 !important;
  color: #006eb1;
}

/* フォーム関連 */
*:focus {
  outline: none;
}

input::-webkit-input-placeholder {
  color: #CCC;
}

input:-ms-input-placeholder {
  color: #CCC;
}

input::-moz-placeholder {
  color: #CCC;
}

textarea::-webkit-input-placeholder {
  color: #CCC;
}

textarea:-ms-input-placeholder {
  color: #CCC;
}

textarea::-moz-placeholder {
  color: #CCC;
}

/* iOSでのデフォルトスタイルをリセット */
input, button, select, textarea {
  -webkit-appearance: none;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

.checkbox {
  display: none;
}

.checkbox + .checkbox-icon {
  position: relative;
  vertical-align: middle;
}

.checkbox + .checkbox-icon:before {
  content: "\f096";
  font-family: "FontAwesome";
  color: #ccc;
  font-size: 22px;
}

.checkbox:checked + .checkbox-icon:before {
  content: "\f14a";
  color: #cf462e;
}

.table {
  width: 100%;
  border-bottom: 1px solid #CCC;
}

.table.no_form .td {
  padding: 1.5em 1em;
}

.table .tr {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.table .tr:first-child .th {
  border-top: 1px solid #CCC;
}

.table .th {
  width: 30%;
  padding: 1.5em 1em;
  background-color: #f4f4f4;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
  border-top: 1px solid #CCC;
  font-weight: normal;
  text-align: left;
}

.table .td {
  width: 70%;
  padding: 1.5em 1em;
  background-color: #fff;
  border-right: 1px solid #CCC;
  border-top: 1px solid #CCC;
  text-align: left;
}

.table .td span {
  width: 100%;
  display: inline-block;
}

.table .td span:not(:last-child) {
  margin-bottom: 1em;
}

.table .td ul, .table .td ol {
  margin-bottom: 0;
}

.table .td p:not(:last-child) {
  margin-bottom: 1em;
}

.table .attention {
  color: #cf462e;
  margin-left: 3px;
  vertical-align: super;
  font-size: 10px;
  font-size: 1rem;
}

.table input, .table select, .table textarea {
  width: 100%;
  padding: .8em .8em;
  border: 1px solid #CCC;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

.table textarea {
  height: 100%;
}

.table #date span {
  width: 30%;
  margin-bottom: 0;
}

.table #date span:first-child {
  margin-right: 1em;
}

.table #option span {
  width: 30%;
  margin-right: 5px;
}

.table #postal_code span {
  width: 30%;
}

.table .caution {
  margin-top: .5em;
  color: #cf462e;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 479px) {
  .table {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .table .tr {
    display: block;
  }
  .table .th {
    width: 100%;
    padding: 1em;
  }
  .table .td {
    width: 100%;
    border-left: 1px solid #CCC;
  }
  .table input, .table select, .table textarea {
    padding: .8em .8em;
  }
  .table textarea {
    height: 100%;
  }
  .table #date span {
    width: 100%;
  }
  .table #date span:first-child {
    margin-right: 0;
    margin-bottom: 1em;
  }
  .table #option span {
    width: 100%;
    margin-right: 0;
  }
  .table .caution {
    margin-top: 1em;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .table #comment span {
    height: 200px;
  }
  input[type="submit"] {
    width: 75%;
  }
}

.contact_table .th {
  padding: 1.8em 1.5em;
}

@media screen and (max-width: 479px) {
  .contact_table .th {
    padding: 1.2em 1em;
  }
}

.contact_table .td {
  padding: 1em 1.5em;
}

@media screen and (max-width: 479px) {
  .contact_table .td {
    padding: 1em;
  }
}

/* ラジオボタン */
input[type="radio"] {
  display: none;
}

input[type="radio"] + label {
  padding-left: 22px;
  position: relative;
}

input[type="radio"] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #999;
  border-radius: 50%;
}

input[type="radio"]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #006eb1;
  border-radius: 50%;
}

/* チェックボックス */
/*
記述：<input type="checkbox" name=""><span class="checkbox_parts">チェックボックス01</span>
*/
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + .checkbox_parts {
  padding-left: 22px;
  position: relative;
}

input[type="checkbox"] + .checkbox_parts:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #999;
  border-radius: 3px;
}

input[type="checkbox"]:checked + .checkbox_parts:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 5px;
  width: 8px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #006eb1;
  border-right: 3px solid #006eb1;
}

.login .submit input[type="submit"] {
  border: none;
  padding: 0;
  background: url(images/btn_login.gif) no-repeat;
  width: 126px;
  height: 39px;
  cursor: pointer;
}

/* リスト */
ul.list_style_none {
  list-style-type: none;
}

ul.note {
  list-style-type: none;
}

ul.note li {
  text-indent: -1.1em;
  margin-left: 1.1em;
}

ul.note li:before {
  content: '※';
}

ul.note li:not(:last-child) {
  margin-bottom: .3em;
}

/* パネル */
.m-pannel {
  background-color: #FFF;
  border: 1px solid #e5e5e5;
}

.m-pannel .pannel_thumb {
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.m-pannel .pannel_thumb img {
  width: 100%;
  min-height: 100%;
}

.m-pannel .pannel_text {
  margin: 20px;
}

.m-pannel .category {
  padding: 4px 10px 8px;
  display: inline-block;
  background-color: #1d1d1d;
  color: #FFF;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}

.m-pannel .date {
  position: relative;
  top: 2px;
  margin-left: 5px;
  font-size: 14px;
  font-size: 1.4rem;
}

.m-pannel .comment {
  height: 4.5em;
  margin-top: 10px;
  overflow: hidden;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .m-pannel {
    padding: 10px;
  }
  .m-pannel a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  .m-pannel .pannel_thumb {
    width: 30%;
    height: auto;
  }
  .m-pannel .pannel_text {
    width: 66%;
    margin: 0;
  }
  .m-pannel .category {
    padding: 2px 8px 6px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .m-pannel .date {
    top: 2px;
    margin-left: 5px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .m-pannel .comment {
    height: 4.5em;
    margin-top: 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }
}

/* slick.js 調整 */
body .slick-prev {
  width: 50px;
  height: 50px;
  padding: 12px 18px;
  background-color: rgba(96, 165, 198, 0.75);
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}

@media screen and (max-width: 479px) {
  body .slick-prev {
    left: 0;
  }
}

body .slick-prev:before {
  content: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Capa_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20206.3%20377.4%22%20style%3D%22enable-background%3Anew%200%200%20206.3%20377.4%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M185.1%2C374c11.6%2C10.6%2C28-5.8%2C17.4-17.4c-57.9-56-114.9-112-172.8-168c57.9-56%2C114.9-112%2C172.8-168%20c11.6-10.6-5.8-28-17.4-17.4C124.3%2C62.2%2C63.5%2C121.1%2C3.6%2C180c-4.8%2C4.8-4.8%2C12.5%2C0%2C17.4C63.5%2C256.2%2C124.3%2C315.1%2C185.1%2C374z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  opacity: 1;
  filter: alpha(opacity=100);
}

body .slick-prev:hover {
  opacity: 0.75;
  background-color: rgba(96, 165, 198, 0.75);
}

body .slick-prev:focus {
  opacity: 1;
  background-color: rgba(96, 165, 198, 0.75);
}

body .slick-next {
  width: 50px;
  height: 50px;
  padding: 12px 18px;
  background-color: rgba(96, 165, 198, 0.75);
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}

@media screen and (max-width: 479px) {
  body .slick-next {
    right: 0;
  }
}

body .slick-next:before {
  content: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Capa_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20206.3%20377.4%22%20style%3D%22enable-background%3Anew%200%200%20206.3%20377.4%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M202.7%2C197.4c4.8-4.9%2C4.8-12.6%2C0-17.4C142.8%2C121.1%2C82%2C62.2%2C21.2%2C3.2C9.6-7.4-7.8%2C10%2C3.8%2C20.6%20c57.9%2C56%2C114.9%2C112%2C172.8%2C168c-57.9%2C56-114.9%2C112-172.8%2C168c-10.6%2C11.6%2C5.8%2C28%2C17.4%2C17.4C82%2C315.1%2C142.8%2C256.2%2C202.7%2C197.4z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  opacity: 1;
  filter: alpha(opacity=100);
}

body .slick-next:hover {
  opacity: 0.75;
  background-color: rgba(96, 165, 198, 0.75);
}

body .slick-next:focus {
  opacity: 1;
  background-color: rgba(96, 165, 198, 0.75);
}

body .slick-dots {
  bottom: 32px;
}

@media screen and (max-width: 479px) {
  body .slick-dots {
    bottom: 15px;
  }
}

body .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 10px;
}

@media screen and (max-width: 479px) {
  body .slick-dots li {
    margin: 0 5px;
  }
}

body .slick-dots li.slick-active button {
  background-color: white;
}

body .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.75);
}

body .slick-dots li button:before {
  display: none;
}

body .slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* 2020.06.25 追加 */
.sns_menu {
  margin-right: 100px;
  margin-left: -40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sns_menu li {
  width: 20px;
  height: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sns_menu .twitter {
  background-image: url(./images/icon/twitter.png);
}
.sns_menu .insta {
  background-image: url(./images/icon/insta.png);
}
.sns_menu .line {
  background-image: url(./images/icon/line.png);
}
.sns_menu .youtube {
  background-image: url(./images/icon/youtube.png);
}
.sns_menu li img {
  vertical-align: top;
  -webkit-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
.sns_menu a:hover img {
  opacity: 0;
}
@media screen and (max-width: 479px) {
  .sns_menu {
    display: none;
  }
}

.sns_navi {
  margin-bottom: 20px;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sns_navi li {
  width: 100%;
  border-left: 1px solid #CCC;
}
.sns_navi li:last-child {
  border-right: 1px solid #CCC;
}
.sns_navi li a {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.sns_navi li img {
  width: 40px;
}

/* 200729 追加 */
.sp-slides-container img{
  height:100%;
  object-fit: cover;
}

/* 201030 追加 */
.sns_fixed_menu {
  position: fixed;
  left: 30px;
  bottom: 30px;
  list-style-type: none;
}
.sns_fixed_menu li {
  width: 48px;
}
.sns_fixed_menu li:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 479px) {
  .sns_fixed_menu {
    display: none;
  }
}