@charset "utf-8";

/******************************************
各ページ共通のスタイルを定義
*******************************************/

/* ----------------------------------------

再定義

---------------------------------------- */
html {
  overflow-y: scroll;
}
body {
  line-height: 1.67;
  background-color: #fff;
  font-family: 游ゴシック, Verdana, "Hiragino Kaku Gothic Pro",
    "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
    "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: #333;
  word-wrap: break-word;
}
/*IE用のズレ調整*/
_:-ms-input-placeholder,
:root body {
  font-family: Meiryo, sans-serif;
}
body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a {
  color: #262626;
  outline: none;
  text-decoration: none;
}
a:hover,
a:visited:hover {
  text-decoration: none;
  opacity: 0.7;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
table {
  table-layout: fixed;
}
input,
select,
textarea {
  max-width: 100%;
}
input[type="button"],
select {
  cursor: pointer;
  outline: none;
}
:focus::-webkit-input-placeholder {
  color: transparent;
} /* Webkit */
:focus:-moz-placeholder {
  color: transparent;
} /* Firefox 18 以前 */
:focus::-moz-placeholder {
  color: transparent;
} /* Firefox 19 以降 */
::-webkit-input-placeholder {
  color: #888;
  opacity: 1;
}
:-moz-placeholder {
  color: #888;
  opacity: 1;
}
::-moz-placeholder {
  color: #888;
  opacity: 1;
}
input[type="submit"],
input[type="button"] {
  -webkit-appearance: button;
  appearance: button;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}
select {
  outline: none;
}
body ::-webkit-scrollbar {
  width: 12px;
}
body ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
body ::-webkit-scrollbar-thumb,
body ::-webkit-scrollbar-thumb:window-inactive {
  background: #bcbcbc;
}
@media screen and (max-width: 767px) {
  body ::-webkit-scrollbar {
    width: 8px;
  }
}

@media all and (min-width: 768px) {
  a[href^="tel:"] {
    cursor: default;
    text-decoration: none;
    pointer-events: none;
    display: inline-block; /*for ie11*/
  }
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.464;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
}

/* ----------------------------------------

container

---------------------------------------- */
#container {
  margin: 0 auto;
  /*font-size: 100%;  fontsize 13px */
  /*font-size: 107.7%;  fontsize 14px */
  font-size: 115.4%; /*fontsize 15px */
  /*min-width: xxxxpx;*/
  position: relative;
  min-width: 1264px;
}
/*#container:before{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	content: "";
	background: url(/files/img/common/color_line.png);
	background-size: contain;
}*/
@media screen and (max-width: 767px) {
  #container {
    min-width: inherit;
    font-size: 100%;
  }
  #container:before {
    display: none;
  }
}

/*
**
子要素のフォントサイズ指定は以下を参照
http://bueltge.de/test/emchart.html
例)
基準フォントサイズが13pxで、
特定の要素を12pxにしたい時は92.4%と指定
**
*/

/* ----------------------------------------

content

---------------------------------------- */
#content {
  width: 100%;
}

/* ----------------------------------------

header

---------------------------------------- */
#header {
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-width: 1120px;
  display: flex;
  align-items: center;
  background: #fff url(/files/img/common/color_line.png) repeat-x;
  background-size: contain;
}
#header > .inner {
  display: flex;
  align-items: center;
  margin: 20px auto;
}
#header .hdr_logo {
  float: left;
}
.siteID {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.siteID .logo_25th {
  display: inline-block;
  width: 54px;
  margin: 0 0 0 20px;
}
#header .hdr_txtarea {
  float: right;
  display: inline-block;
  width: 90%;
  width: -webkit-calc(100% - 190px);
  width: calc(100% - 190px);
}
#header .hdr_txtarea_01 {
  float: right;
  display: flex;
  align-items: center;
}

#header .hdr_txtarea_01 > div {
  border: 1px solid #c6c6c6;
  font-size: 92.9%;
  width: 140px;
  text-align: center;
  display: inline-block;
  margin-right: 15px;
  padding: 5px;
}
#header .hdr_txtarea_01 > p {
  display: inline-block;
  font-size: 214.3%;
  line-height: 1;
}
#header .hdr_txtarea_02 {
  float: right;
  font-weight: bold;
  font-size: 107.2%;
  margin-top: 15px;
  width: 100%;
}

#header .globalNav li a {
  position: relative;
}
#header .globalNav li a:before {
  content: "";
  backface-visibility: hidden;
  position: absolute;
  top: 30px;
  left: 50%;
  height: 1px;
  width: 0;
  background-color: #f85a5a;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
#header .globalNav li a:hover {
  opacity: 1;
  color: #f85a5a;
}
#header .globalNav li a:hover:before {
  width: 100%;
}
#header .globalNav li .menulist01 {
  top: 50px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all ease;
  background-color: #fff;
  box-sizing: border-box;
  padding: 10px 19px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
  display: block !important;
  color: #ccc;
  max-width: 1400px;
  margin: 0 auto;
}
#header .globalNav > nav > li:nth-of-type(2) ul {
  width: 1200px;
}

#header .globalNav li:hover > .menulist01 {
  visibility: visible;
  opacity: 1;
}
#header .globalNav li li {
  display: block;
  padding: 8px 0;
}
#header .globalNav li li a {
  color: #ccc;
}
#header .globalNav li li > a:before {
  background-color: #fff;
}
#header .globalNav li li a:after {
  display: none;
}
.spmenu {
  display: none;
}

#header .hdr_txtarea_02 .globalNav ul {
  float: left;
}
#header .hdr_txtarea_02 .globalNav ul > li {
  display: inline-block;
  margin-right: 20px;
}
#header .hdr_txtarea_02 .globalNav ul > li:last-child {
  margin-right: 0;
}
#header .hdr_contactbox {
  float: right;
  margin-left: 30px;
}
#header .hdr_contactbox a {
  background-color: #f85a5a;
  border-radius: 16.5px;
  color: #fff;
  padding: 5px 20px;
  padding-left: 35px;
}
#header .hdr_contactbox a:hover {
  opacity: 0.7;
}

#header .globalNav .accordion + ul,
#header .globalNav li li {
  display: none;
}
#header .globalNav {
  float: right;
}
.menulist01 {
  position: absolute;
  left: 0;
  top: 110px !important;
  z-index: 1000;
  width: 100% !important;
  min-width: 1264px;
  background-color: rgba(255, 255, 255, 0.85) !important;
  display: none;
  color: #262626 !important;
  transform: translateX(0) !important;
  height: 220px;
  max-width: inherit !important;
  left: 0;
  right: 0;
  margin-right: 0 !important;
  float: none;
  text-align: center;
  padding: 0 !important;
}
.menulist01 > ul {
  width: 1070px;
  margin: 0 auto !important;
  float: none !important;
}
.menulist01 > ul li a {
  color: #262626 !important;
}
.menulist01 > ul li {
  padding: 40px 0 !important;
}
.menulist01 > ul li img {
  /*height: 100px;*/
  max-width: 100%;
  margin-bottom: 15px;
}
.menulist01 > ul li dl dd span {
  position: relative;
  padding-right: 10px;
  font-size: 112.5%;
}
.menulist01 > ul li dl dd span:after {
  position: absolute;
  content: "";
  background-image: url(/files/img/common/icon_arw_02.png);
  width: 16px;
  height: 4px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  background-size: contain;
  right: -15px;
}
.menulist01 > ul li dl dd span.icon_taget_01:after {
  position: absolute;
  content: "";
  background-image: url(/files/img/common/icon_taget_01.png);
  width: 14px;
  height: 11px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  background-size: contain;
  right: -15px;
}
.globalNav ul > li:nth-child(2) .menulist01 ul > li {
  width: 24.4%;
  float: left;
  margin-right: 0.8% !important;
}
.globalNav ul > li:nth-child(2) .menulist01 ul > li:last-child {
  margin-right: 0 !important;
}

@media screen and (max-width: 767px) {
  #header .hdr_logo {
    position: inherit;
  }
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #c6c6c6;
    height: 56px;
    min-width: inherit;
  }
  .header_inner {
    background: #fff;
    border-bottom: 1px solid #eeeeee;
  }
  #header .globalNav_list {
    display: none;
  }
  .siteID {
    width: 227px;
    margin: 0;
    position: absolute;
    top: 12px;
    left: 20px;
    align-items: flex-start;
  }
  .siteID a {
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    height: 35px;
    /* display: block; */
  }
  .siteID img {
    display: none;
  }
  .siteID .logo_25th {
    display: inline-block;
    width: 38px;
    margin: 0 0 0 10px;
  }
  .sp_hdr_emicon {
    display: block;
    position: absolute;
    top: 15px;
    /* transform: translate(0,-50%); */
    right: 75px;
    width: 20px;
  }

  .spmenu {
    display: block;
  }
  .spHdrBtn {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    line-height: 1;
    width: 55px;
    height: 53px;
    z-index: 1100;
    background: #f85a5a;
    cursor: pointer;
  }
  .spHdrBtn a {
    display: inline-block;
    width: 55px;
    height: 55px;
  }
  .spHdrBtn span {
    width: 17px;
    height: 2px;
    left: 20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    background-color: #fff;
  }
  .spHdrBtn span:nth-of-type(1) {
    top: 17px;
  }
  .spHdrBtn span:nth-of-type(2) {
    top: 25px;
  }
  .spHdrBtn span:nth-of-type(3) {
    top: 33px;
  }
  .spHdrBtn.active span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
  }
  .spHdrBtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .spHdrBtn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }
  .spHdrCnt {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 55px;
    pointer-events: none;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    z-index: -100;
    background: #fff;
  }
  .spHdrCnt.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    pointer-events: auto;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .spGNav {
    position: relative;
    border-top: 1px solid #c6c6c6;
  }
  .spGNav_list > li {
    position: relative;
    float: none;
    background: #fff;
    border-bottom: 1px solid #c6c6c6;
    text-align: left;
    letter-spacing: 0.1em;
  }
  .spGNav_list > li > a,
  .spGNav_list > li > span {
    display: block;
    width: auto;
    padding: 18px 20px;
    text-decoration: none;
  }
  .spGNav_list > li .spGNav_tit {
    font-weight: bold;
  }
  .spGNav_list > li > a:after {
    content: "";
    background: url(/files/img/common/icon_arw_02.png) no-repeat;
    background-size: 100% 100%;
    display: block;
    width: 23px;
    height: 6px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    right: 10px;
  }
  .spGNav_tit {
    font-size: 15px;
  }
  .spGNav_subtit {
    font-size: 14px;
    color: #262626;
    margin-left: 15px;
    font-family: "Cormorant Garamond", serif;
  }
  .spGNav_list_sub {
    border-top: 1px solid #c6c6c6;
    background: #f2f2f2;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 12px;
  }
  #header .globalNav li li {
    display: block;
  }
  .spGNav_list_sub > li {
    width: 50%;
    border-bottom: 1px solid #c6c6c6;
    position: relative;
    padding-left: 25px;
  }
  .spGNav_list_sub > li:nth-child(2n + 1) {
    border-right: 1px solid #c6c6c6;
  }
  .spGNav_list_sub > li:nth-last-child(1),
  .spGNav_list_sub > li:nth-last-child(2):nth-child(2n + 1) {
    border-bottom: none;
  }
  .spGNav_list_sub > li > a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    height: 100%;
    padding: 12px 15px;
  }
  .spGNav_list_sub > li:before {
    content: "";
    background-color: #f85a5a;
    background-size: 100% 100%;
    display: block;
    width: 10px;
    height: 1px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    left: 20px;
  }
  .spGNav_blk {
    padding: 20px;
  }
  .spGNav_blk > li {
    width: 49%;
    float: left;
  }
  .spGNav_blk > li img {
    margin-bottom: 5px;
  }
  .spGNav_blk > li:first-child {
    margin-right: 2%;
  }
  #header:before {
    background: url(/files/img/common/color_line_sp.png);
  }
}

/* noscript
------------------------------- */
#noscript {
  margin-bottom: 15px;
  padding: 0.5em 1em;
  border: 2px solid #ccc;
  color: #333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ----------------------------------------

content

---------------------------------------- */
#content {
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  #content {
    margin-top: 56px;
  }
}

/* topicPath
------------------------------- */
#topicPath {
  margin: 30px auto 50px;
}
#topicPath li {
  display: inline;
  padding-right: 13px;
}
#topicPath li:before {
  content: "/";
  padding-right: 13px;
  vertical-align: middle;
}
#topicPath li#topPage {
  padding-left: 0;
  background: none;
}
#topicPath li#topPage:before {
  content: none;
}
@media screen and (max-width: 767px) {
  #topicPath {
    margin: 15px auto 25px;
  }
  #topicPath ol {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* ----------------------------------------

content - main

---------------------------------------- */
#main {
  margin-bottom: 110px;
}
@media screen and (max-width: 767px) {
  #main {
    margin-bottom: 60px;
  }
}
/* ----------------------------------------

content - sub

---------------------------------------- */
#sub {
}

/* ----------------------------------------

footer

---------------------------------------- */
#footer {
  position: relative;
}
#footer .ftr_bg_blk {
  background-color: #3a3a3a;
  color: #fff;
  padding: 40px 0 60px;
}
#footer .ftr_bg_blk a {
  background-color: #3a3a3a;
  color: #fff;
}

#footer .ftr_logo {
  float: left;
  width: 20%;
  text-align: center;
}
#footer .ftr_txtarea {
  float: left;
  width: 80%;
}
#footer .ftr_txtarea .ftr_txtarea_01,
#footer .ftr_txtarea .ftr_txtarea_02 {
  margin-bottom: 30px;
}
#footer .ftr_txtarea .ftr_txtarea_01 {
  float: left;
}
#footer .ftr_txtarea .ftr_txtarea_01 li {
  display: inline-block;
  margin-right: 20px;
}
#footer .ftr_txtarea .ftr_txtarea_01 li:last-child {
  margin-right: 0;
}
#footer .ftr_txtarea .ftr_txtarea_02 {
  float: right;
  padding-right: 40px;
}
#footer .ftr_txtarea .ftr_txtarea_02 li {
  display: inline-block;
  margin-right: 20px;
}
#footer .ftr_txtarea .ftr_txtarea_02 li:last-child {
  margin-right: 0;
}

#footer .ftr_txtarea .ftr_txtarea_03 li {
  width: 50%;
  float: left;
}
#footer .ftr_txtarea .ftr_txtarea_03 li:first-of-type {
  width: 100%;
  margin-bottom: 20px;
}
#footer .ftr_txtarea .ftr_txtarea_03 li dt,
#footer .ftr_txtarea .ftr_txtarea_03 li dd {
  /*display: inline-block;*/
  vertical-align: top;
}
#footer .ftr_txtarea .ftr_txtarea_03 li dt {
  margin-right: 20px;
}
#footer > div > small {
  display: block;
  padding: 15px;
  text-align: center;
  color: #585756;
  font-size: 85.8%;
}

@media screen and (max-width: 767px) {
  #footer .ftr_txtarea .ftr_txtarea_03 li {
    width: 100%;
    float: none;
  }
  #footer .ftr_txtarea .ftr_txtarea_03 li:first-of-type {
    margin-bottom: 0;
  }
  #footer .ftr_logo {
    float: none;
    width: 100%;
    text-align: left;
  }
  #footer .ftr_txtarea {
    float: none;
    width: 100%;
  }
  #footer .ftr_txtarea .ftr_txtarea_03 li dt,
  #footer .ftr_txtarea .ftr_txtarea_03 li dd {
    display: block;
  }
  #footer .ftr_bg_blk .clearfix {
    max-width: inherit;
    width: 90%;
    margin: 0 auto;
  }
  #footer .ftr_txtarea .ftr_txtarea_03 li:first-child ,
  #footer .ftr_txtarea .ftr_txtarea_03 li:nth-child(2n) {
    position: relative;
  }
  #footer .ftr_txtarea .ftr_txtarea_03 li:first-child:before ,
  #footer .ftr_txtarea .ftr_txtarea_03 li:nth-child(2n):before {
    content: "";
    background: #fff;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  #footer .ftr_txtarea .ftr_txtarea_03 li dl {
    padding: 20px 0;
    line-height: 1.8;
  }
  #footer .ftr_txtarea .ftr_txtarea_03 li:last-child dl {
    padding-bottom: 0;
  }
}

/* pagetop
------------------------------- */
#pagetop {
  z-index: 100;
  position: fixed;
  right: 0;
}
#pagetop a {
  display: block;
  position: relative;
  color: #000;
  text-decoration: none;
}
#pagetop a:hover {
  opacity: 0.7;
}
#pagetop span {
  position: relative;
  padding-top: 30px;
}
#pagetop span:before {
  position: absolute;
  content: "";
  background: url(/files/img/common/icon_arw_03.png);
  width: 4px;
  height: 16px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#pagetop span.pgt {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 128.6%;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 767px) {
  #pagetop a {
    width: 30px;
    height: 90px;
  }
}

/* ----------------------------------------

top_contact

---------------------------------------- */
.top_bggry_01 {
  background-image: url(/files/img/common/bggry_01.jpg);
  width: 100%;
  padding: 30px 0;
}

#top_contact .top_contact_list li {
  width: 50%;
  float: left;
  text-align: center;
  font-weight: bold;
}
#top_contact .top_contact_list li > dl dt {
  font-size: 171.5%;
}
#top_contact .top_contact_list li > dl dd .top_contact_list_01 a {
  font-size: 285.7%;
  color: #f85a5a;
}
#top_contact .top_contact_list li:last-child > dl dd a {
  background-color: #f85a5a;
  border-radius: 28px;
  color: #fff;
  padding-left: 55px;
  width: 260px;
  height: 56px;
  display: block;
  font-size: 114.3%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 20px;
}
.icon_email {
  padding-left: 10px;
}
#top_contact .top_bggry_01 {
  padding: 30px 0 50px;
}
#top_contact .top_contact_list {
  max-width: 1120px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #top_contact .top_bggry_01 {
    padding: 30px 0 40px;
  }
  #top_contact .top_contact_list li {
    width: 100%;
    float: none;
  }
  #top_contact .top_contact_list li dl {
    position: relative;
  }
  #top_contact .top_contact_list li:first-child dl:before {
    content: "";
    background: #fff;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  #top_contact .top_contact_list li:first-child dl {
    padding-bottom: 30px;
  }

  #top_contact .top_contact_list li:last-child dl {
    padding-top: 30px;
  }
  #top_contact .top_contact_list li:first-child > dl dd a {
    background-color: #3a3a3a;
    border-radius: 28px;
    color: #fff;
    padding-left: 0;
    width: 260px;
    height: 56px;
    display: block;
    font-size: 146.2%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  #top_contact .top_contact_list li:last-child > dl dd a {
    padding-left: 15px;
    margin-top: 5px;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
  }
  #top_contact .top_contact_list .icon_email_01 {
    padding-left: 10px;
  }
}

/* ----------------------------------------

section

---------------------------------------- */
section {
  margin-bottom: 100px;
}
.inner {
  width: 88%;
  max-width: 1400px;
  min-width: 1120px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  section {
    margin-bottom: 60px;
  }
  .inner {
    max-width: none;
    min-width: auto;
  }
}

/*ftr_txtarea_sp
---------------------------------------- */

.ftr_txtarea_sp {
  margin-top: 25px;
}

/*gdpr_area
---------------------------------------- */
#gdpr_area {
  display: none;
  position: fixed;
  z-index: 9999;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  line-height: 1.8;
}
#gdpr_area a {
  text-decoration: underline;
}
#gdpr_area .gdpr_area_inner {
  position: relative;
  width: 900px;
  margin: 0 auto;
  padding: 15px 40px 15px 0;
}
#gdpr_area .gdpr_area_inner a {
  color: #fff;
}
#gdpr_area .gdpr_area_inner span.break {
  display: block;
}
#gdpr_area .gdpr_link_sp {
  display: none;
}
#gdpr_area .gdpr_btn_agree {
  cursor: pointer;
  position: absolute;
  top: 17px;
  right: 0;
  display: block;
  width: 18px;
  height: 18px;
  text-indent: -9999px;
  background-color: #999;
}
#gdpr_area .gdpr_btn_agree:after,
#gdpr_area .gdpr_btn_agree:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 8px;
  display: block;
  width: 2px;
  height: 15px;
  background-color: #f5f5f5;
  transform: rotate(45deg);
}
#gdpr_area .gdpr_btn_agree:before {
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  #gdpr_area .gdpr_area_inner {
    width: 100%;
    padding: 15px 30px 15px 15px;
  }
}

/* ----------------------------------------

clearfix

---------------------------------------- */

/* Modern Browsers
------------------------------- */
.xxx:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
  line-height: 0;
}

/* Legacy IE
------------------------------- */
.xxx {
  *zoom: 1;
}
