@charset "UTF-8";
/* -------------------------- */
/* basis */
/* -------------------------- */
html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  color: #000;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4em;
  line-height: 1.6;
  overflow-y: scroll;
  position: relative;
}

/* コンテンツ幅 */
.container {
  padding: 0 30px;
}

/* 表示制御 */

.hidden_xs {
  display: none;
}

.hidden_all {
  display: none;
}

/* フォント制御 */
.txt_normal {
  font-size: 1.4rem;
  line-height: 1.6;
}

.txt_c {
  text-align: center;
}

.txt_r {
  text-align: right;
}

/* 画像制御 */
.img_responsive {
  width: 100%;
  height: auto;
}

.thum_img {
  line-height: 0;
}

.icon {
  width: 15px;
  height: 15px;
  vertical-align: middle;
}

/* -------------------------- */
/* reset */
/* -------------------------- */
h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul, ol, li {
  list-style: none;
}

* {
  box-sizing: border-box;
}

/* -------------------------- */
/* link */
/* -------------------------- */
a {
  outline: none;
  transition: all 0.3s;
}

a:link, a:visited {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

a:active {
  text-decoration: none;
}

/* -------------------------- */
/* flexbox */
/* -------------------------- */
/* x_type01 スマホ縦並び、TB横並び */
.flexible_x_type01 {
  display: flex;
  flex-direction: column;
}

/* x_type02 スマホ横並び、TB縦並び */
.flexible_x_type02 {
  display: flex;
  flex-direction: row;
}

/* x_type03 横並び */
.flexible_x_type03 {
  display: flex;
  flex-direction: row;
}

/* x_type04 横並び折返し */
.flexible_x_type04 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/* y_type01 縦並び */
.flexible_y_type01 {
  display: flex;
  flex-direction: column;
}

/* -------------------------- */
/* bg */
/* -------------------------- */
.bg_color01 {
  background: #f2f2f2;
}

/* -------------------------- */
/* title */
/* -------------------------- */
/* title_section */
.title_section {
  margin-bottom: 15px;
  font-family: "Noto Serif JP";
  font-size: 2rem;
  text-align: center;
}

/* title_contents01 */
.title_contents01 {
  width: 100%;
  color: #fff;
  display: table;
  text-align: center;
}

.title_contents01 em {
  margin: 0 auto 10px;
  background: #000;
  display: table;
  font-family: "Roboto Slab";
  font-size: 2.2rem;
  font-style: normal;
  line-height: 0.8;
}

.title_contents01 span {
  margin: 0 auto;
  background: #000;
  display: table;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}

/* title_contents02 */
.title_contents02 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
}

/* bg_slanting */
.bg_slanting {
  transform: skewX(-20deg);
}

.bg_slanting span {
  display: block;
  transform: skewX(20deg);
}

/* -------------------------- */
/* text img */
/* -------------------------- */
/* txt_catch */
.txt_catch {
  margin-bottom: 30px;
  font-family: "Noto Serif JP";
  font-size: 2rem;
  text-align: center;
}

/* txt_caution */
.txt_caution {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.2rem;
  line-height: 1.4;
}

.time {
  color: #d90000;
  font-family: "Roboto Slab";
  font-size: 1.2rem;
}

.time span {
  font-size: 1.6rem;
}

.img_trimming {
  background: #f2f2f2;
  border: 1px solid #a3a3a3;
  overflow: hidden;
  position: relative;
}

.img_trimming img {
  width: auto;
  height: 100%;
  max-width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, -50%);
}

/* -------------------------- */
/* btn */
/* -------------------------- */
/* btn_more01 */
.btn_default01 {
  padding-right: 40px;
  color: #000;
  font-family: "Roboto";
  position: relative;
  z-index: 1;
}

.btn_default01:after {
  width: 32px;
  height: 2px;
  margin: auto;
  background: #000;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  line-height: 0;
}

.btn_default01.btn_color01 {
  color: #fff;
}

.btn_default01.btn_color01:after {
  background: #fff;
}

/* btn_default02 */
.btn_default02 {
  width: 100%;
  height: 45px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

/* btn_back */
.btn_back {
  color: #000;
  font-family: "Roboto";
  font-size: 1.5rem;
}

.btn_back.color_white {
  color: #fff;
}

.btn_back.color_white .icon {
  fill: #fff;
}

.btn_back .icon {
  margin-right: 10px;
}

/* btn_contact */
.btn_contact a {
  height: 100px;
  background: #d90000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
}

.btn_contact a .btn_contact_txt em {
  margin-bottom: 5px;
  display: block;
  font-family: "Noto Serif JP";
  font-size: 2.7rem;
  font-style: normal;
}

.btn_contact a .btn_contact_txt span {
  display: block;
  font-size: 1.2rem;
}

.btn_contact a .icon {
  margin-left: 10px;
  fill: #fff;
}

/* -------------------------- */
/* form */
/* -------------------------- */
.input {
  width: 100%;
  height: 42px;
  padding: 15px 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 1.6rem;
  -webkit-appearance: none;
}

.input:focus {
  background-color: #f0f9fc;
}

.post_code {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.post_code::before {
  content: "〒";
  margin-right: 10px;
}

.post_code .input {
  margin-bottom: 0 !important;
}

.input_size01 {
  width: 100%;
}

.input_size02 {
  width: 100%;
  height: 100px;
}

.input_size03 {
  width: 150px;
}

.input_size04 {
  width: 100%;
}

.input_size05 {
  width: 100%;
}

.cms_input_bottom {
  margin-bottom: 10px;
}

.input_btn {
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  transition: all 0.3s;
}

.input_btn:hover {
  opacity: 0.7;
}

.input_check {
  height: 20px;
  cursor: pointer;
  display: block;
  position: relative;
}

.input_check input[type=radio],
.input_check input[type=checkbox] {
  display: none;
  position: relative;
}

.input_check input[type=radio] + span,
.input_check input[type=checkbox] + span {
  height: 20px;
  padding-left: 35px;
  display: inline-block;
}

.input_check input[type=radio] + span::before,
.input_check input[type=checkbox] + span::before {
  border: 1px solid #e1e1e1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all .2s;
}

.input_check input[type=radio] + span::before {
  width: 20px;
  height: 20px;
  border-radius: 40px;
}

.input_check input[type=checkbox] + span::before {
  width: 20px;
  height: 20px;
  border-radius: 0;
}

.input_check input[type=checkbox]:checked + span::before {
  background: #d90000;
  border-color: #d90000;
}

.input_check input[type=checkbox]:checked + span::after {
  width: 20px;
  height: 20px;
  background: url(../images/icon/icon_check.svg) no-repeat center/15px auto;
  border-radius: 3px;
  content: "";
  position: absolute;
  left: 1px;
  top: 0;
  line-height: 1;
  vertical-align: middle;
}

.input_check input[type=radio]:checked + span::after {
  width: 12px;
  height: 12px;
  background: #d90000;
  border-radius: 15px;
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
}

.form_radio {
  display: flex;
  flex-wrap: wrap;
  margin-top: -15px;
  margin-bottom: 15px;
}

.form_radio li {
  margin-top: 15px;
}

.form_radio li:not(:last-child) {
  margin-right: 40px;
}

/* input_check_btn */
.input_check_btn {
  width: 100%;
  height: 42px;
  display: block;
  cursor: pointer;
  position: relative;
}

.input_check_btn input {
  display: none;
  position: relative;
}

.input_check_btn input + span {
  width: 100%;
  height: 44px;
  color: #87CEFA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.input_check_btn input + span:before {
  width: calc(100% - 4px);
  height: 40px;
  background: #fff;
  border: 2px solid #87CEFA;
  border-radius: 100px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all .2s;
  z-index: -1;
}

.input_check_btn input:checked + span {
  color: #fff !important;
}

.input_check_btn input:checked + span:before {
  background: #87CEFA;
}

.input_check_btn input:checked + span:after {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  background: url(/images/icon/icon_check.svg) no-repeat left top/15px auto;
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  vertical-align: middle;
  z-index: 2;
}

.input_check_btn img {
  width: 32px;
  height: auto;
  border: 1px solid #d4dbe1;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

/* select */
.select_box {
  width: 100%;
  height: 42px;
  background: #fff;
  border: 1px solid #d3d3d3;
  position: relative;
}

.select_box:before {
  width: 45px;
  height: 100%;
  background: #d3d3d3;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}

.select_box:after {
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 8.7px 5px 0 5px;
  border-color: #000 transparent;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 17px;
}

.select_box .input_select {
  width: 100%;
  background: #fbf6f0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  text-indent: 0.01px;
  text-overflow: "";
  height: 45px;
  padding: 0 25px 0 10px;
  border: none;
  border-radius: 3px;
  text-indent: .01px;
  background-size: auto 45px;
  font-size: 1.6rem;
  position: relative;
  z-index: 4;
}

.select_box::-ms-expand {
  display: none;
}

.select_box select {
  width: 100%;
  background: #f4f4f4;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  text-indent: 0.01px;
  text-overflow: "";
  height: 40px;
  padding: 0 25px 0 10px;
  border: none;
  border-radius: 3px;
  text-indent: .01px;
  background-size: auto 45px;
  font-size: 1.4rem;
  position: relative;
  z-index: 4;
}

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

/* file */
.input_fileUpload {
  display: none;
}

.file_label {
  width: 170px;
  height: 40px;
  background: #d90000;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.file_label:hover {
  opacity: 0.7;
}

.error_txt {
  padding-top: 5px;
  color: #d90000;
}

.error_txt:empty {
  display: none;
}

/* required */
.required {
  width: 42px;
  height: 20px;
  margin-left: 10px;
  padding: 2px 0;
  background: #E63946;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-align: center;
  vertical-align: middle;
}

/* -------------------------- */
/* list */
/* -------------------------- */
/* list_disc */
.list_disc li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
  position: relative;
}

.list_disc li::before {
  content: "・";
}

/* list_decimel */
.list_decimel {
  padding: 0;
}

.list_decimel li {
  margin-left: 1.5em;
  list-style: decimal;
  line-height: 1.6;
}

/* list_caution */
.list_caution li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.2rem;
  line-height: 1.4;
}

.list_caution li:not(:last-child) {
  margin-bottom: 5px;
}

.list_caution li a {
  color: #444;
  text-decoration: underline;
}

/* list_count */
.list_count {
  padding: 0;
}

.list_count > li {
  padding-left: 2.6em;
  counter-increment: cnt;
  text-indent: -2.6em;
  line-height: 1.6;
}

.list_count > li:before {
  display: marker;
  content: "（" counter(cnt) "）";
}

/* pager */
.pager {
  overflow: hidden;
}

.pager .container {
  display: flex;
  justify-content: center;
}

.pager_list {
  margin: 0 -2px;
  letter-spacing: -4px;
}

.pager_list li {
  display: inline-block;
  margin: 0 2px;
  letter-spacing: 0;
}

.pager_list li a, .pager_list li span {
  display: block;
  padding: 10px 13px;
  font-family: "Roboto Slab";
  line-height: 1;
}

.pager_list li a {
  background: #fff;
  border: 1px solid #212121;
  color: #212121;
}

.pager_list li span, .pager_list li a:hover {
  background-color: #212121;
  border: 1px solid #212121;
  color: #fff;
  text-decoration: none;
}

/* pager_black */
.pager_black .pager_list li a {
  border: 1px solid #fff;
}

.pager_black .pager_list li span, .pager_black .pager_list li a:hover {
  border: 1px solid #fff;
}

/* anker_link_list */
.anker_link_list {
  width: 100%;
  margin-top: 50px;
  box-shadow: 0 14px 15px 0 rgba(0, 0, 0, 0.2);
}

.anker_link_list li:not(:last-child) {
  margin-bottom: 1px;
}

.anker_link_list li a {
  padding: 10px;
  background: #000;
  color: #fff;
  display: block;
  text-align: center;
  position: relative;
}

.anker_link_list li a:after {
  width: 13px;
  height: 13px;
  background: url(/images/icon/icon_arrow.svg) no-repeat left center/cover;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

/* -------------------------- */
/* table */
/* -------------------------- */
.table_default {
  background: #fff;
  border-top: 2px solid #212121;
  border-bottom: 2px solid #212121;
  text-align: center;
}

.table_default dt {
  width: 100%;
  padding-top: 10px;
  font-weight: bold;
}

.table_default dt:nth-of-type(even) {
  background: #F3FAFF;
}

.table_default dd {
  width: 100%;
  padding: 5px 10px 10px 10px;
}

.table_default dd:nth-of-type(even) {
  background: #F3FAFF;
}

/* table_line */
.table_line {
  width: auto;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  align-items: center;
}

.table_line > dt, .table_line > dd {
  width: 100%;
}

.table_line > dt {
  padding: 10px 0 0;
  font-weight: bold;
}

.table_line > dd {
  padding: 0 0 10px;
}

.table_line > dd:not(:last-of-type) {
  border-bottom: 1px solid #d3d3d3;
}

.table_line > dd a {
  color: #d90000;
  text-decoration: underline;
  word-break: break-all;
}

/* -------------------------- */
/* header */
/* -------------------------- */

/* header */
.header {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 500;
}

.header .header_logo {
  width: 200px;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  z-index: 500;
}

.header .header_logo a {
  height: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.header .global_navi .fat-nav__wrapper {
  height: 100% !important;
  transform: inherit !important;
}

.header .global_navi .global_navi_inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header .global_navi .global_navi_inner .global_navi_inner_list {
  width: 80%;
  margin: 25px 0 30px;
  border-top: 1px solid #707070;
}

.header .global_navi .global_navi_inner .global_navi_inner_list > li {
  border-bottom: 1px solid #707070;
  overflow: hidden;
}

.header .global_navi .global_navi_inner .global_navi_inner_list > li > a {
  padding: 8px 15px;
  color: #212121;
  display: block;
  font-size: 1.2rem;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap.menu_sp {
  display: block;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap.menu_pc {
  display: none;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li > a .menu_list_txt {
  color: #212121;
  display: block;
  font-size: 1.2rem;
  padding: 4px 15px 4px 30px;
  order: 2;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li > a .menu_list_txt em {
  display: none;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li > a .thum_img {
  display: none;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li:first-child .menu_list_txt {
  padding: 0 15px 4px 30px;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li:last-child .menu_list_txt {
  padding: 4px 15px 12px 30px;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents {
  width: 100%;
  padding: 25px 0 10px;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 10000;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents .global_navi_mega {
  margin: 0 -12px;
  display: flex;
  flex-wrap: wrap;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents .global_navi_mega li {
  /*
							width: 25%;
							margin-bottom: 15px;
							padding: 0 12px;
							*/
}

.header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents .global_navi_mega li a {
  display: block;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents .global_navi_mega li a .menu_list_txt {
  color: #212121;
  display: block;
  font-size: 1.2rem;
  padding: 4px 15px 4px 30px;
  order: 2;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents .global_navi_mega li a .menu_list_txt em {
  display: none;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents .global_navi_mega li a .thum_img {
  display: none;
}

.header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents .global_navi_mega li a:hover .global_navi_mega_txt {
  color: #d90000;
}

.header .header_btn {
  width: 80%;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
}

.header .header_btn li {
  width: calc( 100% /3);
}

.header .header_btn li a {
  height: 50px;
  background: #b5b5b5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.2rem;
}

.header .header_btn li a .icon {
  margin-bottom: 5px;
  display: block;
  fill: #fff;
}

.header .header_btn li a span {
  display: block;
  line-height: 1;
}

.header .header_btn li a[href^="tel"] {
  background: #d90000;
}

.header .header_btn li a[href^="/contact/"] {
  background: #000;
}

.header .header_btn li:not(:last-child) {
  border-right: 1px solid #fff;
}

.header .header_btn li:nth-child(1) {
  width: 50%;
  border-right: none;
}

.header .header_btn li:nth-child(2) {
  width: 50%;
  border-right: none;
}

/* -------------------------- */
/* content */
/* -------------------------- */
/* content_header */
.content_header {
  margin-top: -60px;
  padding: 90px 0 30px;
  background: url(/images/common/bg_header.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 1;
}

.content_header:after {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.content_header .container {
  display: flex;
  align-items: center;
  z-index: 2;
}

.content_header + .container {
  position: relative;
  z-index: 2;
}

.content_header .content_header_title {
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.content_header .content_header_title em {
  width: 100%;
  padding-right: 15px;
  display: block;
  font-family: "Roboto Slab";
  font-size: 3rem;
  font-style: normal;
}

.content_header .content_header_title em span {
  font-size: 3rem;
}

.content_header .content_header_title > span {
  width: 100%;
  padding-top: 10px;
  display: block;
  font-size: 1.6rem;
}

/* breadcrumb */
.breadcrumb {
  padding: 10px 0 30px;
}

.breadcrumb .breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.breadcrumb .breadcrumb_list li {
  max-width: 300px;
  font-size: 1.4rem;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb .breadcrumb_list li a {
  color: #212121;
  font-size: 1.2rem;
}

.breadcrumb .breadcrumb_list li:not(:last-child):after {
  margin: 0 5px 0 10px;
  content: "〉";
}

/* movie */
.movie {
  height: 0;
  margin-top: 30px;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}

.movie_iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

/* box_white */
.box_white {
  padding: 15px;
  background: #fff;
  position: relative;
  z-index: 5;
}

.box_white .box_map {
  width: 100%;
  height: 250px;
  margin-top: 10px;
  border: none;
}

/* contents_wrap */
.contents_wrap:not(:first-of-type) .contents_head {
  margin-top: 30px;
}

/* anchor */
.anchor {
  position: relative;
  top: 0;
}

/* contents_head */
.contents_head {
  padding: 0 30px;
  position: relative;
}

.contents_head .title_contents01 {
  margin: auto;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

/* contents_catch */
.contents_catch {
  padding-top: 30px;
  text-align: center;
}

.contents_catch .contents_catch_txt {
  text-align: center;
}

/* contents_box */
.contents_box {
  margin-top: 30px;
  padding: 30px 0;
  background: #f2f2f2;
}

.contents_box:before {
  width: 100%;
  height: 80px;
  background: #fff;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.contents_box .contents_list {
  display: flex;
  flex-direction: column;
}

.contents_box .contents_list:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #a3a3a3;
}

.contents_box .contents_list .contents_inner {
  order: 2;
}

.contents_box .contents_list .contents_inner .contents_title {
  margin-bottom: 10px;
}

.contents_box .contents_list .contents_inner .contents_title > span {
  display: block;
  font-family: "Roboto";
  font-size: 1.2rem;
}

.contents_box .contents_list .contents_inner .contents_title em {
  display: block;
  font-size: 1.6rem;
  font-style: normal;
}

.contents_box .contents_list .contents_inner .contents_title em span {
  font-size: 1.2rem;
  display: inline-block;
}

.contents_box .contents_list .thum_img {
  min-height: 10px;
  margin-bottom: 10px;
  order: 1;
}

/* contents_item */
.contents_item {
  padding: 30px 0 15px;
}

.contents_item .contents_item_list {
  display: table;
  margin: 0 auto;
}

.contents_item .contents_item_list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contents_item .contents_item_list li .safety_img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  background: #fff;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contents_item .contents_item_list li .safety_img .icon {
  width: 40px;
  height: 40px;
}

.contents_item .contents_item_list li .txt_normal {
  flex: 1;
}

.contents_item .contents_item_list li .txt_normal br {
  display: none;
}

/* news */
.news .news_form {
  padding: 0 30px;
}

.news .news_form .select_box {
  margin-bottom: 20px;
}

.news .news_form .container {
  padding: 0;
}

.news .news_tab {
  display: none;
}

.news .news_box .news_box_inner {
  display: none;
}

.news .news_box .news_box_inner.show {
  display: block;
}

.news .news_list {
  margin-bottom: 25px;
  border-top: 1px solid #d3d3d3;
}

.news .news_list li {
  border-bottom: 1px solid #d3d3d3;
}

.news .news_list li a {
  display: flex;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.news .news_list .news_list_img {
  width: 115px;
  position: relative;
}

.news .news_list .news_list_img .news_list_img_category {
  width: 100%;
  height: 30px;
  background: #d90000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-align: center;
}

.news .news_list .news_list_img .thum_img {
  height: 85px;
  overflow: hidden;
}

.news .news_list .news_list_img .thum_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news .news_list .news_list_inner {
  flex: 1;
  padding-left: 10px;
}

.news .news_list .news_list_inner .news_list_inner_time {
  display: block;
  min-width: 125px;
  margin-bottom: 5px;
}

.news .news_list .news_list_inner .news_list_inner_title {
  margin-bottom: 5px;
  min-width: 125px;
  color: #d90000;
  font-size: 1.4rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news .news_list .news_list_inner .news_list_inner_txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #6e6e6e;
}

.news .news_list .icon {
  display: none;
}

/* news_category */
.news_category {
  width: 120px;
  height: 30px;
  background: #d90000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-align: center;
}

/* anniversary */
.anniversary {
  position: relative;
  z-index: 1;
}

.anniversary_title {
  margin-bottom: 30px;
  text-align: center;
}

.anniversary_title .thum_img {
  width: 120px;
  margin: 0 auto 5px;
}

.anniversary_title .anniversary_txt {
  line-height: 1.4;
}

.anniversary_title .anniversary_txt em {
  display: block;
  font-family: "Roboto Slab";
  font-size: 2.8rem;
  font-style: normal;
}

.anniversary_title .anniversary_txt span {
  display: block;
  font-family: "Noto Serif JP";
  font-size: 2rem;
  font-weight: 700;
}

/* -------------------------- */
/* footer */
/* -------------------------- */
.footer {
  padding-top: 40px;
  border-top: 1px solid #d3d3d3;
}

/* footer_contents */
.footer_contents {
  padding-bottom: 30px;
}

.footer_contents .footer_contents_list {
  margin-bottom: 20px;
}

.footer_contents .footer_contents_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.footer_contents .footer_contents_list .footer_contents_list_txt {
  height: 100%;
  display: flex;
  flex-direction: column;
  order: 2;
}

.footer_contents .footer_contents_list .footer_contents_list_txt_title {
  margin-bottom: 5px;
  color: #212121;
  font-size: 1.8rem;
}

.footer_contents .footer_contents_list .footer_contents_list_txt_sub {
  width: 100%;
  margin-bottom: 10px;
  color: #6e6e6e;
  font-size: 1.2rem;
  line-height: 1.4;
}

.footer_contents .footer_contents_list .footer_contents_list_txt .btn_default01 {
  width: 8em;
  margin-top: auto;
  display: inline-block;
}

.footer_contents .footer_contents_list .thum_img {
  min-height: 10px;
  margin-bottom: 10px;
  border: 1px solid #212121;
  order: 1;
}

/* footer_contact */
.footer_contact {
  margin-bottom: 20px;
}

.footer_contact a {
  padding: 20px 10px;
  color: #212121;
  border: 1px solid #212121;
  display: block;
  text-align: center;
}

.footer_contact a > .icon {
  width: 60px;
  height: 50px;
}

.footer_contact_title {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.footer_contact_tel {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.footer_contact_tel .icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.footer_contact_tel span {
  display: block;
  font-family: "Roboto Slab";
  font-size: 2.8rem;
}

.footer_contact_info {
  display: inline-block;
  font-size: 1.2rem;
  overflow: hidden;
  text-align: left;
}

.footer_contact_info dt {
  width: 65px;
  float: left;
}

.footer_contact_info dd {
  padding-left: 65px;
}

/* map */
.map {
  width: 100%;
  height: 250px;
  margin-bottom: -6px;
  border: none;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.3s;
}

.map:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

/* instagram */
.instagram_list {
  display: flex;
  flex-wrap: wrap;
}

.instagram_list li {
  width: calc(100% / 3);
}

.instagram_list li:nth-last-child(-n+1) {
  display: none;
}

.instagram_list li a {
  display: block;
  position: relative;
  padding-top: 100%;
}

.instagram_list li a img {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram_list li a.btn_ig {
  position: relative;
  background: -webkit-linear-gradient(135deg, #4C64D2 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #4C64D2 0%, #f13f79 70%) no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-family: "Roboto";
  font-size: 1.2rem;
  height: 100%;
  line-height: 1.6;
  overflow: hidden;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  transition: all .2s linear;
  z-index: 1;
}

.instagram_list li a.btn_ig .icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  fill: #fff;
}

.instagram_list li a.btn_ig span:before {
  content: '';
  position: absolute;
  bottom: -100px;
  /*ずらす*/
  left: -70px;
  /*ずらす*/
  width: 200px;
  /*グラデーションカバーの幅*/
  height: 200px;
  /*グラデーションカバーの高さ*/
  background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  z-index: -1;
}

/* footer_company */
.footer_company {
  padding-top: 40px;
  background: #000;
}

.footer_company .container {
  padding: 0;
}

.footer_company_name {
  padding: 0 30px;
  text-align: center;
}

.footer_company_name_logo {
  width: 240px;
  margin: 0 auto 15px;
}

.footer_company_name_logo a {
  display: block;
  line-height: 0;
}

.footer_company_name_add {
  margin-bottom: 30px;
  color: #fff;
  font-size: 1.2rem;
  font-style: normal;
}

.footer_company_list {
  padding-bottom: 20px;
}

.footer_company_list li {
  width: 260px;
  margin: 0 auto 20px;
}

.footer_company_list li a {
  display: block;
  line-height: 0;
}

/* footer_nav */
.footer_nav_list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #6e6e6e;
}

.footer_nav_list > li {
  width: 50%;
  border-bottom: 1px solid #6e6e6e;
}

.footer_nav_list > li:nth-child(odd) {
  border-right: 1px solid #6e6e6e;
}

.footer_nav_list > li > a {
  height: 45px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_nav_list > li .footer_nav_sec {
  display: none;
}

/* footer_link */
.footer_link {
  padding: 25px 30px 30px;
  display: flex;
  flex-direction: column;
}

.footer_link .copy {
  order: 2;
}

.footer_link .copy small {
  display: block;
  line-height: 1.2;
}

.footer_link_nav {
  margin-bottom: 25px;
  order: 1;
}

.footer_link_nav_list li {
  padding: 5px 0;
}

.footer_link_nav_list li a {
  color: #000;
}

/* btn_top */
.btn_top {
  width: 60px;
  height: 60px;
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 500;
}

.btn_top a {
  height: 50px;
  background: #b5b5b5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.2rem;
  height: 100%;
}

.btn_top a .icon {
  margin-bottom: 5px;
  display: block;
  fill: #fff;
  transform: rotate(-90deg);
}

.btn_top a span {
  display: block;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
  .container.container_l {
    padding: 0 60px;
  }
  .visible_xs {
    display: none;
  }
  .hidden_xs {
    display: block;
  }
  .flexible_x_type01 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .flexible_x_type02 {
    flex-direction: column;
  }
  .title_section {
    font-size: 2.4rem;
  }
  .txt_catch {
    font-size: 2.6rem;
  }
  .txt_catch rt {
    margin-bottom: -5px;
    font-size: 1rem;
  }
  .btn_default01 {
    padding-right: 40px;
  }
  .btn_default02 {
    width: 320px;
    height: 55px;
    margin: 0 auto;
  }
  .form_radio {
    margin-bottom: 0;
  }
  .input_check_btn input + span {
    font-size: 1.4rem;
  }
  .pager .container {
    justify-content: flex-start;
  }
  .table_default {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .table_default dt {
    width: 30%;
    padding: 10px 10px 10px 30px;
  }
  .table_default dd {
    width: 70%;
    padding: 10px;
  }
  .table_line {
    border-top: none;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .table_line > dt {
    width: 25%;
    padding: 15px;
  }
  .table_line > dt:not(:last-of-type) {
    border-bottom: 1px solid #d3d3d3;
  }
  .table_line > dt:first-of-type {
    border-top: 1px solid #d3d3d3;
  }
  .table_line > dd {
    width: 75%;
    padding: 15px;
  }
  .table_line > dd:first-of-type {
    border-top: 1px solid #d3d3d3;
  }
  .table_line .tel a {
    color: #000;
    pointer-events: none;
    text-decoration: none;
  }
  .header {
    padding-left: 0;
  }
  .header:after {
    width: 100%;
  }
  .header .header_logo {
    width: 260px;
  }
  .header .header_logo a {
    padding: 0 25px;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list {
    margin-top: 0;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list > li > a {
    padding: 12px 15px;
    font-size: 1.4rem;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li > a .menu_list_txt {
    padding: 6px 15px 6px 30px;
    font-size: 1.4rem;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents .global_navi_mega li a .menu_list_txt {
    padding: 6px 15px 6px 30px;
    font-size: 1.4rem;
  }
  .content_header {
    padding: 120px 0 60px;
  }
  .content_header .content_header_title {
    line-height: 1;
  }
  .content_header .content_header_title em {
    width: auto;
    font-size: 4rem;
  }
  .content_header .content_header_title > span {
    width: auto;
  }
  .breadcrumb {
    padding: 15px 0 30px;
  }
  .breadcrumb .breadcrumb_list li {
    max-width: 350px;
  }
  .movie {
    margin-top: 40px;
  }
  .box_white {
    padding: 30px;
  }
  .box_white .box_white_list {
    display: flex;
    flex-wrap: wrap;
  }
  .box_white .box_white_list li:not(:last-child) {
    padding-right: 15px;
  }
  .box_white .box_white_list li:not(:last-child):after {
    margin-left: 15px;
    content: "／";
  }
  .contents_catch .contents_catch_txt {
    font-size: 1.6rem;
  }
  .contents_box .container {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
  }
  .contents_box .contents_list {
    width: 50%;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  .contents_box .contents_list:not(:last-child) {
    padding-bottom: 0;
    border-bottom: none;
  }
  .contents_box .contents_list .contents_inner .contents_title em {
    font-size: 1.8rem;
  }
  .contents_item {
    padding: 60px 0;
  }
  .contents_item .contents_item_list {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
  }
  .contents_item .contents_item_list li {
    width: 20%;
    padding: 0 10px;
    flex-direction: column;
  }
  .contents_item .contents_item_list li .safety_img {
    width: 100%;
    height: 0;
    margin: 0 0 10px;
    padding: 50% 0;
    overflow: hidden;
    position: relative;
  }
  .contents_item .contents_item_list li .safety_img .icon {
    width: 60px;
    height: 60px;
  }
  .contents_item .contents_item_list li .txt_normal {
    flex: inherit;
    text-align: center;
  }
  .news .news_form {
    padding: 0;
  }
  .news .news_form .select_box {
    display: none;
  }
  .news .news_form .container {
    padding: 0 30px;
  }
  .news .news_tab {
    padding: 0 30px;
    display: block;
    position: relative;
  }
  .news .news_tab:after {
    width: 100%;
    height: 1px;
    background: #212121;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  .news .news_tab .news_tab_list {
    border: 1px solid #212121;
    border-bottom: none;
    display: flex;
  }
  .news .news_tab .news_tab_list li {
    height: 55px;
    background: #212121;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
  .news .news_tab .news_tab_list li:hover {
    background: #fff;
    color: #212121;
  }
  .news .news_tab .news_tab_list li.active {
    background: #fff;
    color: #212121;
  }
  .news .news_tab .news_tab_list li.active:hover {
    background: #fff;
    color: #212121;
  }
  .news .news_box .news_box_btn {
    text-align: right;
  }
  .news .news_list {
    border-top: none;
  }
  .news .news_list li a {
    padding: 20px 40px 30px 20px;
    display: flex;
  }
  .news .news_list .news_list_inner {
    padding-left: 20px;
    flex: 1;
  }
  .news .news_list .news_list_inner .news_list_inner_title {
    display: block;
    -webkit-line-clamp: none;
    overflow: visible;
  }
  .news .news_list .news_list_inner .news_list_inner_txt {
    margin-top: 15px;
  }
  .anniversary_title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
  }
  .anniversary_title .thum_img {
    width: 160px;
    margin: 0;
  }
  .anniversary_title .anniversary_txt {
    padding-left: 15px;
    line-height: 1.2;
  }
  .anniversary_title .anniversary_txt em {
    font-size: 4.2rem;
  }
  .anniversary_title .anniversary_txt span {
    font-size: 2.2rem;
  }
  .footer {
    padding-top: 70px;
  }
  .footer_contents {
    padding-bottom: 50px;
  }
  .footer_contents .container {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
  }
  .footer_contents .footer_contents_list {
    width: calc(100% / 3);
    padding: 0 10px;
  }
  .footer_contents .footer_contents_list a {
    padding: 15px;
    background: url(/images/footer/bg_line_pc.jpg) #02ba04 no-repeat right center/cover;
    border: 1px solid #212121;
  }
  .footer_contents .footer_contents_list a.footer_reserve {
    background-image: url(/images/footer/bg_reserve_pc.jpg);
  }
  .footer_contents .footer_contents_list .footer_contents_list_txt br {
    display: none;
  }
  .footer_contents .footer_contents_list .footer_contents_list_txt_title, .footer_contents .footer_contents_list .footer_contents_list_txt_sub {
    color: #ffffff;
    text-shadow: 0 0 2px #02ba04, 0 0 2px #02ba04, 0 0 2px #02ba04, 0 0 2px #02ba04, 0 0 2px #02ba04, 0 0 2px #02ba04, 0 0 5px #02ba04;
  }
  .footer_contents .footer_contents_list .thum_img {
    display: none;
  }
  .footer_contact {
    width: calc(100% / 3);
    padding: 0 10px;
  }
  .footer_contact a {
    height: 100%;
  }
  .footer_contact a > .icon {
    margin-top: 20px;
  }
  .map {
    margin-bottom: -6px;
  }
  .instagram_list li {
    width: calc(100% / 7);
  }
  .instagram_list li:nth-last-child(-n+2) {
    display: block;
  }
  .footer_company_list {
    display: flex;
    justify-content: center;
  }
  .footer_company_list li {
    margin: 0 10px 20px;
  }
  .footer_nav_list {
    display: flex;
    flex-wrap: wrap;
  }
  .footer_link {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer_link .copy {
    order: 1;
  }
  .footer_link_nav {
    margin-bottom: 0;
    order: 2;
  }
  .footer_link_nav_list {
    display: flex;
  }
  .footer_link_nav_list li {
    margin-left: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 50px;
  }
  .container.container_m {
    padding: 0 130px;
  }
  .container.container_l {
    padding: 0 200px;
  }
  .txt_normal {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .title_section {
    margin-bottom: 30px;
    font-size: 3.4rem;
  }
  .title_contents01 em {
    margin-bottom: 15px;
    font-size: 3.5rem;
  }
  .title_contents01 span {
    font-size: 1.4rem;
  }
  .title_contents01 {
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
  .title_contents02 {
    margin-bottom: 15px;
    font-size: 2.4rem;
  }
  .txt_catch {
    margin-top: -30px;
    font-size: 4.3rem;
  }
  .txt_catch rt {
    margin-bottom: -8px;
    font-size: 1.6rem;
  }
  .txt_caution {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .time {
    font-size: 1.4rem;
    line-height: 1;
  }
  .time span {
    font-size: 2rem;
  }
  .btn_default01 {
    padding-right: 55px;
    font-size: 1.6rem;
  }
  .btn_default01:after {
    width: 40px;
  }
  .btn_default02 {
    width: 380px;
    height: 100px;
    font-size: 2rem;
  }
  .btn_back {
    font-size: 1.6rem;
  }
  .btn_back .icon {
    margin: 0 15px 3px;
  }
  .btn_contact a {
    height: 230px;
  }
  .btn_contact a .btn_contact_txt em {
    margin-bottom: 13px;
    font-size: 3.4rem;
  }
  .btn_contact a .btn_contact_txt span {
    font-size: 1.4rem;
    text-align-last: justify;
    text-justify: inter-ideograph;
  }
  .btn_contact a .icon {
    width: 25px;
    height: 25px;
    margin-left: 30px;
  }
  .input {
    height: 48px;
    padding: 15px;
  }
  .input_size02 {
    height: 290px;
  }
  .input_size04 {
    width: 50%;
  }
  .input_size05 {
    width: 400px;
  }
  .input_check {
    height: 30px;
  }
  .input_check input[type=radio] + span,
  .input_check input[type=checkbox] + span {
    height: 30px;
    padding-left: 45px;
    line-height: 30px;
  }
  .input_check input[type=radio] + span::before {
    width: 30px;
    height: 30px;
    border-radius: 30px;
  }
  .input_check input[type=checkbox] + span::before {
    width: 30px;
    height: 30px;
    top: -3px;
  }
  .input_check input[type=checkbox]:checked + span::after {
    width: 30px;
    height: 30px;
    top: -2px;
  }
  .input_check input[type=checkbox] + span::before {
    width: 30px;
    height: 30px;
  }
  .input_check input[type=radio]:checked + span::after {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: 6px;
    top: 6px;
  }
  .input_check_btn {
    height: 65px;
  }
  .input_check_btn input + span {
    height: 65px;
    font-size: 1.8rem;
  }
  .input_check_btn input + span:before {
    height: 65px;
  }
  .input_check_btn img {
    width: 62px;
    left: 50px;
  }
  .input_check_btn input:checked + span:after {
    width: 25px;
    height: 25px;
    margin-top: 2px;
    background-size: 25px auto;
    right: 35px;
  }
  .required {
    width: 70px;
    height: 30px;
    font-size: 1.2rem;
  }
  .list_disc li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .list_decimel {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .list_caution li li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .list_count li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .pager_list {
    margin: 0 -6px;
  }
  .pager_list li {
    margin: 0 6px;
  }
  .pager_list li a, .pager_list li span {
    padding: 15px 18px;
    font-size: 1.8rem;
  }
  .anker_link_list {
    display: flex;
    overflow: hidden;
  }
  .anker_link_list li {
    flex: 1;
  }
  .anker_link_list li:not(:last-child) {
    margin-bottom: 0;
    border-right: 1px solid #fff;
  }
  .anker_link_list li a {
    padding: 15px;
    font-size: 1.6rem;
  }
  .table_default {
    font-size: 1.8rem;
  }
  .table_default dt {
    width: 25%;
    padding: 15px 15px 15px 60px;
  }
  .table_default dd {
    width: 75%;
    padding: 15px 60px 15px 15px;
  }
  .table_line {
    font-size: 1.6rem;
  }
  .table_line > dt {
    width: 20%;
    padding: 30px;
  }
  .table_line > dd {
    width: 80%;
    padding: 30px 15px;
  }
  .no-scroll {
    overflow: scroll !important;
  }
  .header {
    height: auto;
    padding-left: 0;
    display: block;
    position: absolute;
    top: 77px;
  }
  .header:after {
    width: 100%;
    height: 80px;
    content: "";
    background: -webkit-linear-gradient(top, #000, transparent);
    background: linear-gradient(to bottom, #000, transparent);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
  }
  .header .header_logo {
    width: 345px;
    height: 80px;
    position: relative;
    z-index: 1000;
  }
  .header .global_navi {
    height: 100%;
    display: block !important;
    position: relative;
    top: -80px;
    flex: 1;
    z-index: 500;
  }
  .header .global_navi .global_navi_inner {
    flex-direction: row;
    justify-content: flex-end;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list {
    width: 100%;
    height: 80px;
    margin: 0;
    padding-right: 90px;
    display: flex;
    justify-content: flex-end;
    border-top: none;
    position: relative;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list > li {
    border-bottom: none;
    display: inline;
    overflow: inherit;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list > li > a {
    height: 100%;
    padding: 0 10px;
    color: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.4rem;
    line-height: 1.2;
    position: relative;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap > a:hover {
    background: #d90000;
    opacity: 1;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap.menu_sp {
    display: none;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap.menu_pc {
    display: block;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 30px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 40px 0;
    visibility: hidden;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li {
    width: 48%;
    padding: 15px 15px 50px 15px;
    max-width: 635px;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li > a {
    color: #fff;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li > a .menu_list_txt {
    color: #fff;
    height: 100%;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.2;
    position: relative;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li > a .menu_list_txt em {
    display: block;
    font-family: "Roboto Slab";
    font-style: normal;
    line-height: 0.8;
    padding-top: 1.5em;
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li > a .thum_img {
    display: inline-block;
    order: 1;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li > a:hover {
    color: #fff;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li:first-child .menu_list_txt {
    padding: 0;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .global_navi_inner_list_childwrap .global_navi_inner_list_child > li:last-child .menu_list_txt {
    padding: 0;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents .global_navi_mega li {
    width: 48%;
    padding: 15px 15px 50px 15px;
    max-width: 635px;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents .global_navi_mega li a {
    color: #fff;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents .global_navi_mega li a .menu_list_txt {
    color: #fff;
    height: 100%;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.2;
    position: relative;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents .global_navi_mega li a .menu_list_txt em {
    display: table;
    font-family: "Roboto Slab";
    font-style: normal;
    line-height: 0.8;
    padding-top: 1.5em;
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list .menu_contents .global_navi_mega li a .thum_img {
    display: inline-block;
    order: 1;
  }
  .header .header_btn {
    width: 77px;
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 500;
  }
  .header .header_btn li {
    width: 77px;
    height: 77px;
  }
  .header .header_btn li a {
    height: 100%;
  }
  .header .header_btn li a .icon {
    width: 20px;
    height: 20px;
  }
  .header .header_btn li:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  .header .header_btn li:nth-child(1) {
    display: none;
  }
  .header .header_btn li:nth-child(2) {
    width: 100%;
    border: none;
  }
  .header .header_btn li:nth-child(2) a[href^="/contact/"] {
    background: #d90000;
  }
  .content_header {
    height: 580px;
    margin-top: -80px;
    padding: 0 0 40px;
  }
  .content_header .container {
    height: 100%;
  }
  .content_header .container:before, .content_header .container:after {
    height: 200px;
    background: #fff;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
  .content_header .container:before {
    max-width: 1230px;
    margin: 0 auto;
    right: 0;
  }
  .content_header .container:after {
    width: 50%;
  }
  .content_header .content_header_title em {
    font-size: 8.6rem;
  }
  .content_header .content_header_title em span {
    font-size: 6rem;
  }
  .content_header .content_header_title > span {
    font-size: 2.4rem;
  }
  .content_header.content_header_gray .container:before, .content_header.content_header_gray .container:after {
    background: #f2f2f2;
  }
  .breadcrumb {
    margin-top: -200px;
    padding: 30px 0 60px;
  }
  .breadcrumb .breadcrumb_list {
    min-height: 25px;
  }
  .breadcrumb .breadcrumb_list li {
    max-width: 450px;
  }
  .breadcrumb .breadcrumb_list li a {
    font-size: 1.4rem;
  }
  .breadcrumb .breadcrumb_list li:not(:last-child):after {
    margin: 0 10px 0 15px;
  }
  .movie {
    margin-top: 60px;
  }
  .box_white {
    margin: 0 80px;
    padding: 40px;
  }
  .box_white .box_map {
    height: 300px;
    margin-top: 20px;
  }
  .anchor {
    top: 80px;
  }
  .anchor.first {
    top: 0;
  }
  .contents_head {
    padding: 80px 50px 0;
  }
  .contents_head .title_contents01 {
    padding-top: 80px;
  }
  .contents_catch {
    padding-top: 80px;
  }
  .contents_catch .contents_catch_txt {
    font-size: 2.4rem;
  }
  .contents_box {
    margin-top: 80px;
    padding: 0 0 30px;
    position: relative;
  }
  .contents_box .container {
    padding: 0 30px;
  }
  .contents_box .contents_list {
    margin-bottom: 50px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }
  .contents_box .contents_list:not(:last-child) {
    margin-bottom: 50px;
  }
  .contents_box .contents_list .contents_inner .contents_title {
    margin-bottom: 15px;
  }
  .contents_box .contents_list .contents_inner .contents_title > span {
    font-size: 1.6rem;
  }
  .contents_box .contents_list .contents_inner .contents_title em {
    font-size: 2.4rem;
  }
  .contents_box .contents_list .contents_inner .contents_title em span {
    font-size: 1.6rem;
  }
  .contents_box .contents_list .thum_img {
    margin-bottom: 20px;
  }
  .contents_item {
    padding: 80px 0;
  }
  .contents_item .contents_item_list {
    margin: 0 -20px;
  }
  .contents_item .contents_item_list li {
    padding: 0 20px;
  }
  .contents_item .contents_item_list li .safety_img .icon {
    width: 90px;
    height: 90px;
  }
  .contents_item .contents_item_list li .txt_normal br {
    display: block;
  }
  .news .news_tab {
    padding: 0;
  }
  .news .news_tab .news_tab_list {
    width: 1230px;
    margin: 0 auto;
  }
  .news .news_tab .news_tab_list li {
    height: 80px;
    font-size: 1.6rem;
  }
  .news .news_list {
    margin-bottom: 35px;
  }
  .news .news_list li a {
    padding: 40px 90px 40px 40px;
  }
  .news .news_list .news_list_img {
    width: 150px;
  }
  .news .news_list .news_list_img .news_list_img_category {
    width: 125px;
    height: 35px;
    font-size: 1.2rem;
    position: absolute;
    left: 180px;
    top: 0;
  }
  .news .news_list .news_list_img .thum_img {
    width: 150px;
    height: 113px;
  }
  .news .news_list .news_list_inner {
    padding-top: 10px;
    padding-left: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .news .news_list .news_list_inner .news_list_inner_time {
    top: inherit;
    left: inherit;
    padding: 0 25px 0 150px;
  }
  .news .news_list .news_list_inner .news_list_inner_title {
    position: relative;
    top: inherit;
    left: inherit;
    font-size: 1.6rem;
  }
  .news .news_list .news_list_inner .news_list_inner_txt {
    width: 100%;
    display: block;
    -webkit-line-clamp: none;
    overflow: visible;
  }
  .news .news_list .icon {
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    right: 40px;
    bottom: 0;
  }
  .news_category {
    width: 125px;
    height: 35px;
    font-size: 1.2rem;
  }
  .anniversary_title {
    margin-bottom: 65px;
  }
  .anniversary_title .thum_img {
    width: 255px;
  }
  .anniversary_title .anniversary_txt {
    padding-left: 30px;
    line-height: 1;
  }
  .anniversary_title .anniversary_txt em {
    font-size: 8rem;
  }
  .anniversary_title .anniversary_txt span {
    font-size: 4.3rem;
  }
  .footer {
    padding-top: 80px;
  }
  .footer_contents {
    padding-bottom: 80px;
  }
  .footer_contents .container {
    padding: 0 30px;
  }
  .footer_contents .footer_contents_list {
    margin-bottom: 0;
    padding: 0 20px;
  }
  .footer_contents .footer_contents_list a {
    padding: 30px 40px;
    background-position: right -80px center;
  }
  .footer_contents .footer_contents_list .footer_contents_list_txt br {
    display: block;
  }
  .footer_contents .footer_contents_list .footer_contents_list_txt_title {
    margin-bottom: 15px;
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .footer_contents .footer_contents_list .footer_contents_list_txt_sub {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
  .footer_contents .footer_contents_list .footer_contents_list_txt .btn_default01 {
    width: 9em;
  }
  .footer_contact {
    margin-bottom: 0;
    padding: 0 20px;
  }
  .footer_contact a {
    padding: 40px 10px 20px;
  }
  .footer_contact a > .icon {
    width: 70px;
    height: 60px;
    margin-top: 20px;
  }
  .footer_contact a[href^="tel"] {
    pointer-events: none;
  }
  .footer_contact_title {
    margin-bottom: 15px;
    font-size: 2rem;
  }
  .footer_contact_tel .icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .footer_contact_tel span {
    font-size: 4rem;
  }
  .footer_contact_info {
    font-size: 1.4rem;
  }
  .footer_contact_info dt {
    width: 70px;
  }
  .footer_contact_info dd {
    padding-left: 70px;
  }
  .map {
    height: 350px;
  }
  .instagram_list li a.btn_ig .icon {
    width: 64px;
    height: 64px;
  }
  .footer_company {
    padding: 70px 0;
  }
  .footer_company .container {
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
  }
  .footer_company_name {
    padding: 0;
    text-align: left;
  }
  .footer_company_name_logo {
    width: 240px;
    margin: 0 0 20px;
  }
  .footer_company_name_add {
    margin-bottom: 35px;
    font-size: 1.4rem;
  }
  .footer_company_list {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 525px;
    margin-top: -25px;
    padding-bottom: 0;
  }
  .footer_company_list li {
    width: 250px;
    margin: 0 0 0 25px;
    margin: 25px 0 0 0;
  }
  .footer_nav_list {
    border: none;
    display: block;
    column-count: 3;
    column-width: auto;
    column-gap: 40px;
  }
  .footer_nav_list > li {
    width: 100%;
    margin-bottom: 35px;
    border-bottom: none;
  }
  .footer_nav_list > li:nth-child(odd) {
    border-right: none;
  }
  .footer_nav_list > li > a {
    height: auto;
    display: block;
    font-size: 1.6rem;
  }
  .footer_nav_list > li .footer_nav_sec {
    padding: 5px 0 0 15px;
    display: block;
  }
  .footer_nav_list > li .footer_nav_sec li a {
    color: #fff;
  }
  .footer_link {
    padding: 25px 40px;
    max-width: 1330px;
    margin: 0 auto;
  }
  .footer_link .copy small {
    font-size: 1.4rem;
  }
  .btn_top {
    width: 77px;
    height: 77px;
  }
  .btn_top a .icon {
    width: 20px;
    height: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .instagram_list li a.btn_ig {
    font-size: 1.4rem;
  }
  .instagram_list li a.btn_ig .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
  }
}

/*# sourceMappingURL=map/import.css.map */
