@charset "UTF-8";
* {
  box-sizing: border-box;
}

/*  reset
------------------------------------*/
html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}

table {
  width: 100%;
  border-collapse: collapse;
}

caption,
th,
td {
  text-align: left;
}

/*  common
------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  min-width: 1080px;
  background: url(../images/top/lineup_bg.jpg) center top;
  color: #040000;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", Yu Gothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  font-feature-settings: "palt";
  font-display: swap;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
}

.flexbox_list {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}

.cf {
  /* For IE 6/7 (trigger hasLayout) */
  zoom: 1;
}
.cf:before, .cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}

a {
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

a:link,
a:visited {
  color: #040000;
  text-decoration: none;
}

a:hover,
a:visited {
  color: #040000;
  text-decoration: none;
}

a:hover {
  opacity: .7;
}

img {
  max-width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: bottom;
  object-fit: cover;
}

p {
  line-height: 2;
  font-feature-settings: "palt";
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  align-items: top;
  justify-content: space-between;
}

.flexbox.mid {
  align-items: center;
}

.flexbox.center {
  justify-content: center;
}

.flexbox.reverse {
  flex-direction: row-reverse;
}

.flL {
  float: left;
}

.flR {
  float: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.taR {
  text-align: right;
}

.rel {
  position: relative;
}

.mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.gothic {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", Yu Gothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.en {
  font-family: "Oswald", sans-serif;
}

.en02 {
  font-family: "EB Garamond", serif;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 2px;
}

.max {
  width: 100%;
}

@media screen and (max-width: 768px) {
  body {
    min-width: 0;
    font-size: 1.5rem;
  }

  p {
    line-height: 1.5;
  }

  .sp_max {
    width: 100%;
  }
}
/*  navi
------------------------------------*/
#globalnavi {
  display: none;
  position: fixed;
  right: 0;
  top: 75px;
  background: rgba(124, 123, 120, 0.9);
  font-size: 1.8rem;
  line-height: 1.5;
  z-index: 9999;
}
#globalnavi ul {
  padding: 20px 0;
}
#globalnavi ul li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
}

#globalnavi__open {
  position: fixed;
  right: 0;
  top: 0;
  width: 75px;
  height: 75px;
  cursor: pointer;
  padding-top: 38px;
  text-align: left;
  transition: all .4s;
  z-index: 9999;
}
#globalnavi__open.open {
  background: rgba(124, 123, 120, 0.5);
}
#globalnavi__open.open .bar {
  background: transparent;
}
#globalnavi__open.open .bar:before {
  transform: rotate(45deg) translate(7px, 5px);
}
#globalnavi__open.open .bar:after {
  transform: rotate(-45deg) translate(8px, -8px);
}
#globalnavi__open .bar {
  position: relative;
  display: block;
  width: 46px;
  height: 2px;
  margin: 0 auto;
  background: #040000;
}
#globalnavi__open .bar:before, #globalnavi__open .bar:after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 46px;
  height: 2px;
  background: #040000;
}
#globalnavi__open .bar:before {
  top: -10px;
}
#globalnavi__open .bar:after {
  top: 10px;
}
#globalnavi__open .text {
  display: block;
  text-align: left;
  text-indent: -9999px;
}

@media screen and (max-width: 768px) {
  #globalnavi {
    top: 50px;
    font-size: 1.5rem;
  }
  #globalnavi ul {
    padding: 20px 0;
  }

  #globalnavi__open {
    width: 60px;
    height: 50px;
    padding-top: 26px;
  }
  #globalnavi__open.open .bar:before {
    transform: rotate(45deg) translate(7px, 5px);
  }
  #globalnavi__open.open .bar:after {
    transform: rotate(-45deg) translate(8px, -8px);
  }
  #globalnavi__open .bar {
    width: 30px;
  }
  #globalnavi__open .bar:before, #globalnavi__open .bar:after {
    width: 30px;
  }
  #globalnavi__open .bar:before {
    top: -10px;
  }
  #globalnavi__open .bar:after {
    top: 10px;
  }
}
/*  header
------------------------------------*/
#header {
  padding: 15px;
  background: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #header {
    padding: 14px;
  }
  #header img {
    width: 148px;
    height: auto;
  }
}
/*  content
------------------------------------*/
.container {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
}

.wide_container {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
}

.text_break > span {
  display: inline-block;
}

a.button {
  position: relative;
  display: inline-block;
  min-width: 372px;
  max-width: 100%;
  padding: 12px 35px 12px 20px;
  border: 1px solid currentColor;
  border-radius: 5px;
  color: currentColor;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
}
a.button:hover .arrow {
  transform: translateX(5px);
}
a.button .arrow {
  position: absolute;
  right: -40px;
  top: 50%;
  width: 71px;
  height: 10px;
  margin-top: -8px;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  #wrapper {
    min-width: auto;
  }

  .wide_container {
    width: calc(100% - 40px);
  }

  .container {
    width: calc(100% - 40px);
  }

  a.button {
    min-width: 0;
    width: 94%;
    margin-right: 3%;
    padding: 0.75em 2em 0.75em 0.75em;
    font-size: 1.5rem;
  }
  a.button .arrow {
    right: -1.2em;
    width: 3.2em;
    height: auto;
  }
}
/*  footer
------------------------------------*/
#footer {
  position: relative;
  padding: 0;
  background: #fff;
}
#footer .footer__logo {
  line-height: 1;
  text-align: center;
}
#footer .pagetop {
  position: fixed;
  right: 25px;
  bottom: 12px;
  line-height: 1;
  z-index: 5000;
}
#footer .pagetop a {
  display: block;
}

@media screen and (max-width: 768px) {
  #footer {
    padding: 0;
  }
  #footer img {
    width: 300px;
    height: auto;
  }
  #footer .pagetop {
    right: 10px;
    width: 40px;
  }
}
/* common */
.pc_block {
  display: block;
}

.sp_block {
  display: none;
}

.pc_inline {
  display: inline;
}

.sp_inline {
  display: none;
}

.pc_hidden {
  display: none !important;
}

@media screen and (max-width: 768px) {
  /* common */
  .pc_block {
    display: none;
  }

  .sp_block {
    display: block;
  }

  .pc_inline {
    display: none;
  }

  .sp_inline {
    display: inline;
  }

  .sp_hidden {
    display: none !important;
  }

  .pc_hidden {
    display: block !important;
  }
}
