@charset "UTF-8";

/*--------------------------------------------------------------
# 共通
--------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

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;
  vertical-align: baseline;
}

article, header, footer, main, aside, figure, figcaption, nav, section {
  display: block;
}

input, textarea, button {
  margin: 0;
  padding: 0;
  border-radius: 0;
  outline: 0;
  background: none;
}

input,
textarea {
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

::-webkit-input-placeholder {
  color: #949FAA;
}
::-moz-placeholder {
  color: #949FAA;
  opacity: 1;
}
input:-ms-input-placeholder,
:-ms-input-placeholder {
  color: #949FAA;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]:focus {
  outline: 0;
}

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

button {
  border: 0;
}

body {
  font-family: 'YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', 'Meiryo','ＭＳ ゴシック',sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 1;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-break: strict;
  word-break: break-word;
  overflow-wrap: break-word;
	word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /*background: #373737;*/
  background: #fff;
}

body.is_open {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6,6,6,.55);
}

h1,h2,h3,h4,h5,h6 { clear: both; }

p { margin: 0; }
strong { font-weight: bold; }

hr {
  border: solid 1px #E6E6E6;
  margin: 0 0 20px;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border: 0;
  outline: 0;
  transition: all .3s ease-in-out;
}

.thumb img {
  width: 100%;
}

figure {
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.wrap {
  width: 1100px;
  margin: 0 auto;
}

.row {
  display: flex;
}

.sp {
  display: none;
}

  .sp_br {
    display: none;
  }

.visually_hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.card {
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(44,40,40,.11);
}

.info {
  display: flex;
}

.info span {
  flex: 1;
}

.info::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url(../img/common/ico_info.svg) no-repeat 0 0 / cover;
  margin: 0 8px 0 0;
}

/*--------------------------------------------------------------
# ヘッダー
--------------------------------------------------------------*/
header {
  background: #000;
  position: relative;
}

.hd_cont {
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color:#F7D533;
}
/*.hd_logo {

  display: flex;
}*/
.hd_logo img {
    width: 150px;

    margin-right: 15px;
}

.hd_logo span {
    font-size: 0.8vw;
    margin-left: 15px;
    color:#fff;
}

.hd_link a {
  font-size: 16px;
  color: #fff;
  text-shadow: 0 2px 3px rgba(0,0,0,.5);
}

.hd_link li + li {
  margin: 0 0 0 62px;
}

.login a,
.logout a {
  font-size: 16px;
  font-weight: normal;
  text-shadow: none;
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.login a::before,
.logout a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/common/ico_login.svg) no-repeat 0 0 / cover;
  margin: 0 10px 0 0;
}


/*---------------------------------------------------------
### JP/EN lang_switch
---------------------------------------------------------*/
.lang_switch {
  margin: 5px 0 0 0;
  display: inline-flex;
  height: 23px;
  border: 1px solid #3f3f3f;
}
.lang_switch li {
 text-align: center;
 font-size: 12px;
 justify-content: center;
 align-items: center;
}
.lang_switch li a {
 display: block;
 text-decoration: none;
 padding: 5px;
 color:#fff;
}
.lang_switch li a:hover {
 background: #44305a;
}
.lang_switch li a.on {
 background: #F7D533;
 color:#000;
}


/*--------------------------------------------------------------
# フッター
--------------------------------------------------------------*/
footer {
  background: #000;
  padding: 32px 0;
  margin: 2px 0 0;
}

.ft_cont {
  justify-content: space-between;
  align-items: center;
}

.ft_ttl {
  align-items: center;
  color: #fff;
}

.ft_ttl h2 {
  font-size: 20px;
  font-weight: bold;
}

.ft_ttl p {
  font-size: 14px;
  margin: 0 0 0 40px;
  line-height: 1.7em;
}

.ft_btn_area {
  align-items: center;
}

.btn_ft {
  font-size: 15px;
  font-weight: bold;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 40px;
  background: #d3aa2b;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(44,40,40,.11);
}

.btn_ft + .btn_ft {
  margin: 0 0 0 84px;
}

.btn_ft:hover {
  background: #251c2f;
  color:white;
}
/*--------------------------------------------------------------
# ブレイクポイント
--------------------------------------------------------------*/
@media screen and (max-width: 1130px) {

  .wrap {
    width: 90%;
  }

}/* max-width: 1130px */

@media screen and (max-width: 925px) {

  .hd_link a {
    font-size: 13px;

  }

  .hd_link li + li {
    margin: 0 0 0 20px;
  }

}/* max-width: 925px */

@media screen and (max-width: 768px) {

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
  .sp_br {
    display: block;
  }

  main {
    padding: 58px 0;
  }

  /* ヘッダー */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;

  }

  .hd_cont {
    padding: 12px 0;
    font-size: 80%;
  }

  .hd_logo img {
    width: 100px;
  }
  .hd_logo span {
    display: none;
  }


  .btn_ham {
    height: 22px;
    cursor: pointer;
  }

  .ham_line {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 5px;
    position: relative;
  }

  .ham_line::before,
  .ham_line::after {
    content: "";
    position: absolute;
    display: block;
    width: 18px;
    height: 2px;
    right: 0;
    background: #fff;
    border-radius: 5px;
    transition: all .1s ease-in;
  }

  .ham_line::before {
    top: -7px;
  }

  .ham_line::after {
    top: 7px;
  }

  .btn_ham[aria-expanded="true"] .ham_line {
    background-color: transparent;
  }

  .btn_ham[aria-expanded="true"] .ham_line::before,
  .btn_ham[aria-expanded="true"] .ham_line::after {
    top: -2px;
    width: 22px;
    background: #fff;
  }

  .btn_ham[aria-expanded="true"] .ham_line::before {
    transform: rotate(45deg);
  }

  .btn_ham[aria-expanded="true"] .ham_line::after {
    transform: rotate(-45deg);
  }

  .sp_nav {
    position: fixed;
    top: 58px;
    right: -100%;
    width: 235px;
    transition: all .2s ease-in;
    z-index: 5;
  }

  .sp_nav.is_open {
    right: 0;
  }

  .sp_menu {
    overflow: auto;
    max-height: calc(100vh - 58px);
  }

  .sp_menu a {
    font-size: 14px;
    display: block;
    color: #fff;
    background: #251c2f;
    padding: 20px 16px;
    border-top: dashed 1px #000;
  }

  .sp_menu li:first-child a,
  .sp_menu li:last-child a {
    border-top: 0;
  }

  .sp_menu .login a,
  .sp_menu .logout a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
  }

  .sp_menu .login a {
    background: #39284c;
  }

  .sp_menu .logout a {
    background: #39284c;
  }

  /* フッター */
  footer {
    margin: 1px 0 0 0;
    padding: 44px 0;
  }

  .ft_cont,
  .ft_ttl {
    flex-direction: column;
  }

  .ft_ttl p {
    margin: 10px 0 0;
  }

  .ft_btn_area {
    margin: 20px 0 0;
  }

  .btn_ft + .btn_ft {
    margin: 0 0 0 40px;
  }

}/* max-width: 768px */


@media screen and (max-width: 480px) {

  /* ヘッダー */
  .sp_nav {
    width: 62vw;
  }

  .sp_menu a {
    font-size: 4.2vw;
  }

  .sp_menu .login a,
  .sp_menu .logout a {
    font-size: 4.8vw;
  }

  /* フッター */
  .ft_cont,
  .ft_ttl {
    align-items: flex-start;
  }

  .ft_ttl h2 {
    font-size: 5.3vw;
  }

  .ft_ttl p {
    margin: 50px 25px 0;
    font-size: 3.7vw;
  }

  .ft_btn_area {
    margin: 30px 0 0;
    padding: 0 25px;
    flex-wrap: wrap;
    width: 100%;
  }

  .btn_ft {
    width: 100%;
    height: 13.8vw;
    font-size: 4vw;
  }

  .btn_ft + .btn_ft {
    margin: 30px 0 0;
  }

}/* max-width: 480px */
