@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

body, div, span, ol, ul, li, table, tr, th, td, dl, dt, dd, img, a, p, h1, h2, h3, h4, h5, h6, nav, header, footer, section, article, form, input, textarea, button, text {
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  padding: 0;
  margin: 0;
  border: none;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  box-sizing: border-box;
  letter-spacing: 0.02em;
}

html, body {
  position: relative;
  font-size: 18px;
  text-align: center;
  width: 100%;
  line-height: 1;
  background-color: #2e2e2e;
}





/* - - - - - - - - - - - layout (common) - - - - - - - - - - - */

img, video, object {
  max-width: 100%;
  height: auto;
}

body, th, td {
  color: #fff;
}

a {
  color: #e50012;
  text-decoration: underline;
  transition: all .2s ease-in-out;
}

a:visited {
  color: #e50012;
  text-decoration: underline;
}

a:hover,
a:active {
  color: #e50012;
  text-decoration: none;
}

ul li {
  list-style-type: none;
}

img {
  display: block;
  vertical-align: top;
  border-style: none;
}

video {
  display: block;
}

object {
  vertical-align: top;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.small {
  font-size: 12px;
}

.red {
  color: #C00;
}

.note {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

::selection {
  background: rgba(26,26,26,0.50);
  color: #fff;
}

::-moz-selection {
  background: rgba(26,26,26,0.50);
  color: #fff;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.35em;
}

sub {
  bottom: -0em;
}

.cnt a[target="_blank"] {
  padding-right: 18px;
  background: url("../images/icn_new_rd.png") right center / 10px 10px no-repeat;
}

/* scroll animation */
.sc_animation,
.sc_animation::before,
.sc_animation::after {
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.popin {
  opacity: 0;
  will-change: transform, opacity;
}

.popin.active {
  animation: popIn 0.5s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 0.6s;
  transform-origin: center;
}

@keyframes popIn {
  0% { opacity: 0; transform: translateY(24px) scale(0.92); }
  40% { opacity: 0.6; transform: translateY(-6px) scale(1,1.03); }
  70% { opacity: 1; transform: translateY(3px) scale(1,0.99); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.fadeup {
  transform: translate(0,30px);
  opacity: 0;
}

.fadeup.active {
  animation: fadeUp 2.0s cubic-bezier(.2,1.3,.3,1) both;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translate(0,0); }
}

/* content */
.cnt {
  position: relative;
}

.cnt_inner {
  position: relative;
}

/* zoom */
.zoom {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.zoom img {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover .zoom img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

/* mv */
.mv {
  position: relative;
}

.mv_cnt {
  position: relative;
  z-index: 2;
}









/*==================================================================================================================================*/



/*layout (pc) */



/*==================================================================================================================================*/

/* - - - - - - - - - - - - - - - - - (common) - - - - - - - - - - - - - - - - - */

.cnt_pc { display: block !important; }
.cnt_pc_inline { display: inline !important; }
.cnt_pc_inlineblock { display: inline-block !important; }
.cnt_pc_flex { display: flex !important; }
.cnt_pc_inlineflex { display: inline-flex !important; }
.cnt_pc_table { display: table !important; }
.cnt_pc_tablecell { display: table-cell !important; }
.cnt_pc_tablerow { display: table-row !important; }
.cnt_sp { display: none !important; }
.cnt_sp_inline { display: none !important; }
.cnt_sp_inlineblock { display: none !important; }
.cnt_sp_flex { display: none !important; }
.cnt_sp_inlineflex { display: none !important; }
.cnt_sp_table { display: none !important; }
.cnt_sp_tablecell { display: none !important; }
.cnt_sp_tablerow { display: none !important; }





/* - - - - - - - - - - - - - - - - - (header) - - - - - - - - - - - - - - - - - */

#headfix {
  position: fixed;
  top: 0;
  z-index: 99999;
  width: 100%;
  transition: transform .6s cubic-bezier(0.19, 1, 0.22, 1);
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 30px 0 0;
}

#header h1 {
  position: relative;
}

#header h1 a {
  display: block;
  padding: 28px 30px 28px;
  border-radius: 0px 6px 6px 0px;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

#header h1 a img {
  width: auto;
  height: 28px;
}





/* - - - - - - - - - - - - - - - - - (nav) - - - - - - - - - - - - - - - - - */

/* spmenu */

a.spmenu {
  display: block;
  cursor: pointer;
  margin: 0 0 0 12px;
  padding: 19px 14px 0;
  width: 68px;
  height: 68px;
  border-radius: 10px;
  border: 2px solid #fff;
  z-index: 99999;
  color: #fff;
  text-decoration: none;
}

a.spmenu:hover {
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .6s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-trigger {
  position: relative;
  width: 36px;
  height: 26px;
  float: none;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.top .menu-trigger span,
#header.opened .menu-trigger span {
  background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 12px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

a.spmenu:hover .menu-trigger:not(.active) span:nth-of-type(1) {
  top: 3px;
}

a.spmenu:hover .menu-trigger:not(.active) span:nth-of-type(3) {
  bottom: 3px;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  width: 100%;
  transform: translateY(-12px) rotate(315deg);
}





/* lang switch */

.lang_switch {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 80px;
  height: 68px;
  margin: 0 0 0 auto;
}

.lang_switch li {
  height: 28px;
  border: 2px solid #fff;
}

.lang_switch li.sw_jp {
  width: 40px;
  margin-bottom: 12px;
  border-radius: 6px 0px 0px 6px;
  border-right: 1px solid #fff;
}

.lang_switch li.sw_en {
  width: 40px;
  margin-bottom: 12px;
  border-radius: 0px 6px 6px 0px;
  border-left: 1px solid #fff;
}

.lang_switch li.sw_ru {
  width: 80px;
  border-radius: 6px;
}

.lang_switch li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 2px;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.lang_switch li a:hover {
  background: rgba(255,255,255,0.30);
}

.lang_switch li.active a {
  background: #fff;
  font-weight: 700;
  color: #1f3b90;
}






/* mnav */

nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 0 0;
  background: rgba(17,17,17,0.90);
  background-attachment: fixed;
  z-index: 9999;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(5px);
}

nav::-webkit-scrollbar {
  display:none;
}

#mnav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 100px 0 100px;
}

.mnav {
  display: inline-block;
}

.mnav li {
  border-bottom: 1px solid rgba(255,255,255,0.20);
  text-align: left;
  line-height: 1.7;
  opacity: 0;
  transform: translate(-50px, 0);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.mnav.active li {
  opacity: 1;
  transform: translate(0, 0);
}

.mnav li:nth-child(1) { transition-delay: .1s; }
.mnav li:nth-child(2) { transition-delay: .2s; }
.mnav li:nth-child(3) { transition-delay: .3s; }
.mnav li:nth-child(4) { transition-delay: .4s; }
.mnav li:nth-child(5) { transition-delay: .5s; }
.mnav li:nth-child(6) { transition-delay: .6s; }

.mnav li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  font-weight: 500;
  color: #ddd;
  text-decoration: none;
}

.mnav li a span {
  display: inline-block;
  padding: 0 10px 0 0;
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
}

.mnav li a:hover {
  padding: 10px 17px 10px 23px;
}

.mnav li a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  display: block;
  content: "";
  background: rgba(255,255,255,0.12);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.mnav li:not(.current) a:hover::before {
  width: 100%;
}

.mnav li.current {
  border-left: 6px solid #e50012;
}

.mnav li.current a,
.mnav li.current a span {
  color: #888;
}





/* - - - - - - - - - - - - - - - - - (footer) - - - - - - - - - - - - - - - - - */

footer {
  position: relative;
  width: 100%;
  padding: 150px 5% 150px;
  background: rgba(17,17,17,0.80);
}

.copyright {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  color: #fff;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

.pagetop a {
  position: relative;
  display: block;
  width: 76px;
  height: 76px;
  opacity: 0.8;
}

.pagetop a:hover {
  opacity: 0.5;
}










/* - - - - - - - - - - - - - - - - - (content top) - - - - - - - - - - - - - - - - - */

/* top mv */

#topmv_wrapeer {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#topmv {
  position: relative;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#topmv_movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_mv_bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  max-width: 676px;
  transform: translateX(-50%) !important;
}

.top_mv_cnt {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.top_mv_cnt_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  padding: 70px 50px;
  transform: translate(-50%, -50%);
}

.en .top_mv_cnt_inner,
.ru .top_mv_cnt_inner {
  width: 70%;
}

.top_mv_cnt_t {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(2) translate(0, 100%);
  transition-delay: .5s;
}

.top_mv_cnt_b {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  transform: scale(2) translate(0, -100%);
  transition-delay: .7s;
}

.top_mv_cnt_t.active,
.top_mv_cnt_b.active {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

.top_mv_cnt p span {
  display: block;
  margin: 0 auto;
  font-weight: bold;
  font-size: 42px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.en .top_mv_cnt p span {
  font-size: 36px;
}

.ru .top_mv_cnt p span {
  font-size: 38px;
}





/* top_content */

.cnt_top {
  position: relative;
  padding: 100px 0 150px;
  color: #333;
}

.cnt_top_box {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 50px;
  border-radius: 20px;
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(10px);
  --webkit-backdrop-filter: blur(10px);
}

.cnt_top_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}

.cnt_top_list li {
  flex-basis: 48.5%;
  max-width: 570px;
  margin: 0 0 65px;
}

.cnt_top_list li a {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #333;
  text-decoration: none;
}

.en .cnt_top_list li a,
.ru .cnt_top_list li a {
  font-weight: 600;
}

.cnt_top_list li a:hover {
  color: #666;
}

.cnt_top_list li a span.zoom {
  position: relative;
  margin: 0 0 10px;
  border-radius: 0px 0px 0px 30px;
}

.cnt_top_list li a span.zoom span.top_ph_ttl {
  position: absolute;
  top: -11px;
  right: -3px;
  font-weight: 500;
  font-size: 74px;
  text-align: right;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
  transition: letter-spacing .3s cubic-bezier(0.19, 1, 0.22, 1);
}

.cnt_top_list li a:hover span.zoom span.top_ph_ttl {
  letter-spacing: .03em;
}

.top_topics {
  line-height: 1.6;
  text-align: left;
}

.top_topics dl {
  display: flex;
  align-items: center;
}

.top_topics dt {
  margin: 0 24px 20px 0;
  padding: 5px 24px 5px 0;
  border-right: 4px solid #999;
  font-weight: 700;
  font-size: 22px;
  white-space: nowrap;
}

.top_topics dd {
  flex: 1;
  margin: 0 0 20px 0;
  font-weight: 500;
}





/* - - - - - - - - - - - - - - - - - (content cnt) - - - - - - - - - - - - - - - - - */

/* mv */

.mv {
  position: relative;
  overflow: hidden;
}

.mv_ph {
  width: 92%;
  margin: 0 0 0 8%;
  border-radius: 0 0 0 30px;
  overflow: hidden;
}

.mv_title {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  transform: translate(0, -50%);
  line-height: 1.6;
  text-align: center;
  color: #fff;
}

.title_s {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 32px;
}

.en .title_s,
.ru .title_s {
  font-weight: 700;
  font-size: 48px;
}

.title_s::before {
  position: absolute;
  top: -15px;
  left: -26px;
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  background: url("../images/icn_title.png") left top / cover no-repeat;
}

.title_l {
  margin: 5px 0 0;
  font-weight: 600;
  font-size: 54px;
}





/* cnt */

.bg_cnt_b {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.cnt {
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin: -190px auto 170px;
  padding: 120px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
}

.cnt::before {
  position: absolute;
  top: -80px;
  left: -120px;
  display: block;
  content: "";
  width: 516px;
  height: 516px;
  background: url("../images/bg_cnt_t.png") left top / cover no-repeat;
}

.cnt_inner {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  line-height: 2;
  text-align: left;
  color: #333;
}

.cnt_inner > *:first-child {
  margin-top: 0;
}

.cnt_inner > *:last-child {
  margin-bottom: 0;
}

.cnt_inner h2 {
  position: relative;
  margin: 120px auto 40px;
  padding: 0 0 0 45px;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.4;
}

.cnt_inner h2::before {
  position: absolute;
  top: -6px;
  left: 0;
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  background: url("../images/icn_h2.png") left top / cover no-repeat;
}

.cnt_inner p {
  margin: 0 auto 2em;
}

table {
  width: 100%;
  margin: 0 auto 100px;
  border-collapse: collapse;
}

table th {
  padding: 25px 50px 25px 0;
  border-bottom: 1px solid #bbb;
  font-weight: 500;
  vertical-align: top;
  white-space: nowrap;
  color: #333;
}

table td {
  padding: 25px 0 25px;
  border-bottom: 1px solid #bbb;
  vertical-align: top;
  color: #333;
}

table.history th {
  font-weight: 600;
  font-size: 40px;
  color: rgba(229,0,18,0.70);
  letter-spacing: .04em;
}

table.history th span {
  display: inline-block;
  padding: 0 0 0 4px;
  font-weight: 500;
  font-size: 20px;
  vertical-align: middle;
}

table.history th span.current {
  font-weight: 600;
  font-size: 28px;
}

p.story {
  position: relative;
  width: 76%;
}

p.story::before {
  position: absolute;
  top: -60px;
  left: -0.8em;
  display: block;
  content: "“";
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 94px;
  color: rgba(229,0,18,0.25);
}

p.story::after {
  position: absolute;
  top: -60px;
  right: -0.8em;
  display: block;
  content: "”";
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 94px;
  color: rgba(229,0,18,0.25);
}

ul.items {
  display: flex;
  flex-wrap: wrap;
}

.flexbox:before {
  content: "";
  display: block;
  width: 25%;
  height: 0;
  order: 1;
}

.flexbox:after {
  content: "";
  display: block;
  width: 25%;
  height: 0;
}

ul.items li {
  flex-basis: 25%;
  padding: 40px 24px 10px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

ul.items li:nth-child(-n+4) {
  padding-top: 0;
}

ul.items li:nth-child(4n) {
  border-right: none;
}

ul.items li:nth-last-child(-n+4) {
  border-bottom: none;
}

.item_num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 10px;
  border: 8px solid #999;
  border-radius: 100vw;
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  color: #999;
}

ul.items li h3 {
  margin: 0 auto 13px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  line-height: 1.3;
}

ul.items li p {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

ul.items li p span {
  display: inline-block;
}

.nw_cnt {
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.nw_cnt > div {
  flex-basis: 48%;
}

.nw_cnt h3 {
  margin: 0 0 15px;
  border-bottom: 1px solid #ccc;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.6;
}

.nw_cnt p span {
  display: inline-block;
}

h3.h3_group {
  position: relative;
  padding: 0 0 10px 1.2em;
  font-weight: 500;
  font-size: 20px;
}

h3.h3_group::before {
  position: absolute;
  top: 13px;
  left: 0;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: #ccc;
}

p.lead {
  font-weight: 500;
  font-size: 22px;
}

.access_map {
  width: 100%;
  height: 400px;
  margin: 0 auto 50px;
}

.access_map iframe {
  width: 100%;
}

h3.h3_access {
  position: relative;
  margin: 0 auto 20px;
  padding: 0 0 15px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
}

h3.h3_access::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  content: "";
  width: 60px;
  height: 4px;
  background: #ccc;
  transform: translate(-50%, 0);
}

.tel_box {
  margin: 0 auto 100px;
  padding: 30px 20px;
  border: 5px solid #999;
  text-align: center;
}

.tel_box p {
  margin-bottom: 0;
  display: inline-block;
  text-align: left;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.6;
}

.tel_box p span {
  font-weight: normal;
  font-size: 16px;
}

.list_form {
}

.list_form dt {
  clear: both;
  float: left;
  width: 240px;
  margin: 2px 0 40px;
  padding: 1px 5px 1px 10px;
  border-left: 6px solid #e50012;
  line-height: 1.8;
  font-weight: 700;
}

.list_form dt span {
  color: #C00;
  font-size: 1.0625rem;
}

.list_form dd {
  margin: 0 0 40px;
  padding: 0 0 1px 240px;
}

form {
  clear: both;
}

select {
  padding: 8px;
  border: 2px solid #999;
  border-radius: 10px;
  font-size: 1.0625rem;
  cursor: pointer;
}

input[type=text] {
  width: 100%;
  padding: 8px;
  border: 2px solid #999;
  border-radius: 10px;
  font-size: 1.0625rem;
}

textarea {
  width: 100%;
  height: 160px;
  padding: 8px;
  border: 2px solid #999;
  border-radius: 10px;
  font-size: 1.0625rem;
}

input[type="text"]:focus,
textarea:focus {
  border: 2px solid #999;
  border-radius: 10px;
  box-shadow: 0 0 7px #999;
}

::-webkit-input-placeholder { color: #BBBBBB; }
::-ms-input-placeholder { color: #BBBBBB; }
:-ms-input-placeholder { color: #BBBBBB; }
:placeholder-shown { color: #BBBBBB; }

input.button,
input.submit {
  width: 340px;
  margin: 0 0 20px;
  padding: 20px;
  border-radius: 100vw;
  background: url("../images/icn_arrow_r_wh.png") right 20px center / 16px 16px no-repeat #111;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFF;
  transition: all .2s ease-in-out;
  cursor: pointer;
}

input.submit {
  width: 50%;
  min-width: 340px;
  padding: 20px 40px;
  white-space: normal;
  cursor: pointer;
}

input.button:hover,
input.submit:hover {
  background: url("../images/icn_arrow_r_wh.png") right 22px center / 16px 16px no-repeat #333;
}

input.button_small {
  width: 280px;
  padding: 10px;
  background: url("../images/icn_arrow_r_wh.png") left 16px center / 10px 10px no-repeat #777;
  border-radius: 100vw;
  font-size: 1.0625rem;
  color: #fff;
  transition: all .2s ease-in-out;
  cursor: pointer;
}

input.button_small:hover {
  background: url("../images/icn_arrow_r_wh.png") left 18px center / 10px 10px no-repeat #555;
}

p.error_messe {
  margin-bottom: 20px;
  color: #C00;
}

.formTable {
  width: 80%;
  margin: 0 auto 60px;
  border-collapse: collapse;
  border-top: 1px solid #CCCCCC;
}

.formTable th {
  padding: 15px 15px 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #CCCCCC;
  white-space: nowrap;
}

.formTable td {
  padding: 15px 15px 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #CCCCCC;
  white-space: normal;
  word-break: break-all;
}





/*==================================================================================================================================*/



/*layout (tablet) */



/*==================================================================================================================================*/

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

/* - - - - - - - - - - - - - - - - - (content xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx) - - - - - - - - - - - - - - - - - */

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */





/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */





/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */





}





/*==================================================================================================================================*/



/*layout (smartphone) */



/*==================================================================================================================================*/

@media only screen and (min-width: 1px) and (max-width: 767px) {

/* - - - - - - - - - - - - - - - - - (common) - - - - - - - - - - - - - - - - - */

.cnt_pc { display: none !important; }
.cnt_pc_inline { display: none !important; }
.cnt_pc_inlineblock { display: none !important; }
.cnt_pc_flex { display: none !important; }
.cnt_pc_inlineflex { display: none !important; }
.cnt_pc_table { display: none !important; }
.cnt_pc_tablecell { display: none !important; }
.cnt_pc_tablerow { display: none !important; }
.cnt_sp { display: block !important; }
.cnt_sp_inline { display: inline !important; }
.cnt_sp_inlineblock { display: inline-block !important; }
.cnt_sp_flex { display: flex !important; }
.cnt_sp_inlineflex { display: inline-flex !important; }
.cnt_sp_table { display: table !important; }
.cnt_sp_tablecell { display: table-cell !important; }
.cnt_sp_tablerow { display: table-row !important; }

html, body {
  font-size: 17px;
}





/* - - - - - - - - - - - - - - - - - (header) - - - - - - - - - - - - - - - - - */

#headfix {
  position: fixed;
  top: 0;
  z-index: 99999;
  width: 100%;
  transition: transform .6s cubic-bezier(0.19, 1, 0.22, 1);
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 10px 0 0;
}

#header h1 {
  position: relative;
  margin: 0 4px 0 0;
}

#header h1 a {
  display: block;
  padding: 12px 15px 12px;
  border-radius: 0px 4px 4px 0px;
  background: #fff;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

#header h1 a img {
  width: auto;
  height: 15px;
}





/* - - - - - - - - - - - - - - - - - (nav) - - - - - - - - - - - - - - - - - */

/* spmenu */

a.spmenu {
  display: block;
  cursor: pointer;
  margin: 0 0 0 4px;
  padding: 14px 8px 0;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  border: 2px solid #fff;
  z-index: 99999;
  color: #fff;
  text-decoration: none;
}

a.spmenu:hover {
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .6s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-trigger {
  position: relative;
  width: 22px;
  height: 16px;
  float: none;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.top .menu-trigger span,
#header.opened .menu-trigger span {
  background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 7px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

a.spmenu:hover .menu-trigger:not(.active) span:nth-of-type(1) {
  top: 3px;
}

a.spmenu:hover .menu-trigger:not(.active) span:nth-of-type(3) {
  bottom: 3px;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(7px) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  width: 100%;
  transform: translateY(-7px) rotate(315deg);
}





/* lang switch */

.lang_switch {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 68px;
  height: 48px;
  margin: 0 0 0 auto;
}

.lang_switch li {
  height: 22px;
  border: 2px solid #fff;
}

.lang_switch li.sw_jp {
  width: 34px;
  margin-bottom: 4px;
  border-radius: 4px 0px 0px 4px;
  border-right: 1px solid #fff;
}

.lang_switch li.sw_en {
  width: 34px;
  margin-bottom: 4px;
  border-radius: 0px 4px 4px 0px;
  border-left: 1px solid #fff;
}

.lang_switch li.sw_ru {
  width: 68px;
  border-radius: 4px;
}

.lang_switch li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 1px;
  font-weight: 500;
  font-size: 11px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.lang_switch li a:hover {
  background: rgba(255,255,255,0.30);
}

.lang_switch li.active a {
  background: #fff;
  font-weight: 700;
  color: #1f3b90;
}






/* mnav */

nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 0 0;
  background: rgba(17,17,17,0.90);
  background-attachment: fixed;
  z-index: 9999;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(5px);
}

nav::-webkit-scrollbar {
  display:none;
}

#mnav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 60px 6% 60px;
}

.mnav {
  display: inline-block;
}

.mnav li {
  border-bottom: 1px solid rgba(255,255,255,0.20);
  text-align: left;
  line-height: 1.7;
  opacity: 0;
  transform: translate(-50px, 0);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.mnav.active li {
  opacity: 1;
  transform: translate(0, 0);
}

.mnav li:nth-child(1) { transition-delay: .1s; }
.mnav li:nth-child(2) { transition-delay: .2s; }
.mnav li:nth-child(3) { transition-delay: .3s; }
.mnav li:nth-child(4) { transition-delay: .4s; }
.mnav li:nth-child(5) { transition-delay: .5s; }
.mnav li:nth-child(6) { transition-delay: .6s; }

.mnav li a {
  position: relative;
  display: block;
  padding: 7px 15px;
  font-weight: 500;
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
}

.mnav li a span {
  display: inline-block;
  padding: 0 10px 0 0;
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
}

.ru .mnav li a span {
  font-size: 19px;
}

.mnav li a:hover {
  padding: 7px 12px 7px 18px;
}

.mnav li a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  display: block;
  content: "";
  background: rgba(255,255,255,0.12);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.mnav li:not(.current) a:hover::before {
  width: 100%;
}

.mnav li.current {
  border-left: 5px solid #e50012;
}

.mnav li.current a,
.mnav li.current a span {
  color: #888;
}





/* - - - - - - - - - - - - - - - - - (footer) - - - - - - - - - - - - - - - - - */

footer {
  position: relative;
  width: 100%;
  padding: 100px 5% 100px;
  background: rgba(17,17,17,0.80);
}

.copyright {
  font-weight: normal;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  color: #fff;
}

.pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
}

.pagetop a {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  opacity: 0.8;
}

.pagetop a:hover {
  opacity: 0.5;
}










/* - - - - - - - - - - - - - - - - - (content top) - - - - - - - - - - - - - - - - - */

/* top mv */

#topmv_wrapeer {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#topmv {
  position: relative;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#topmv_movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_mv_bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  max-width: 676px;
  transform: translateX(-50%) !important;
}

.top_mv_cnt {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.top_mv_cnt_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84%;
  padding: 25px 20px;
  transform: translate(-50%, -50%);
}

.en .top_mv_cnt_inner,
.ru .top_mv_cnt_inner {
  width: 84%;
}

.top_mv_cnt_t {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(2) translate(0, 100%);
  transition-delay: .5s;
}

.top_mv_cnt_b {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  transform: scale(2) translate(0, -100%);
  transition-delay: .7s;
}

.top_mv_cnt_t.active,
.top_mv_cnt_b.active {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

.top_mv_cnt p span {
  display: block;
  margin: 0 auto;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.en .top_mv_cnt p span {
  font-size: 22px;
}

.ru .top_mv_cnt p span {
  font-size: 24px;
}





/* top_content */

.cnt_top {
  position: relative;
  padding: 80px 0 80px;
  color: #333;
}

.cnt_top_box {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 5%;
  border-radius: 15px;
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(10px);
  --webkit-backdrop-filter: blur(10px);
}

.cnt_top_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}

.cnt_top_list li {
  flex-basis: 100%;
  max-width: 570px;
  margin: 0 0 30px;
}

.cnt_top_list li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #333;
  text-decoration: none;
}

.en .cnt_top_list li a,
.ru .cnt_top_list li a {
  font-weight: 600;
}

.cnt_top_list li a:hover {
  color: #666;
}

.cnt_top_list li a span.zoom {
  position: relative;
  margin: 0 0 10px;
  border-radius: 0px 0px 0px 20px;
}

.cnt_top_list li a span.zoom span.top_ph_ttl {
  position: absolute;
  top: -11px;
  right: -3px;
  font-weight: 500;
  font-size: 54px;
  text-align: right;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
  transition: letter-spacing .3s cubic-bezier(0.19, 1, 0.22, 1);
}

.cnt_top_list li a:hover span.zoom span.top_ph_ttl {
  letter-spacing: .03em;
}

.top_topics {
  line-height: 1.6;
  text-align: left;
}

.top_topics dl {
  display: block;
  align-items: center;
}

.top_topics dt {
  display: inline-block;
  margin: 0 0 14px 0;
  padding: 0 0 5px 0;
  border-right: none;
  border-bottom: 3px solid #999;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

.top_topics dd {
  flex: 1;
  margin: 0 0 0 0;
  font-weight: 500;
}





/* - - - - - - - - - - - - - - - - - (content cnt) - - - - - - - - - - - - - - - - - */

/* mv */

.mv {
  position: relative;
  overflow: hidden;
}

.mv_ph {
  width: 95%;
  margin: 0 0 0 5%;
  border-radius: 0 0 0 20px;
  overflow: hidden;
}

.mv_ph img {
  width: 180%;
  min-width: 180%;
  margin: 0 -40%;
}

.mv_title {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  transform: translate(0, -50%);
  line-height: 1.6;
  text-align: center;
  color: #fff;
}

.title_s {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 22px;
}

.en .title_s,
.ru .title_s {
  font-weight: 700;
  font-size: 26px;
}

.title_s::before {
  position: absolute;
  top: -10px;
  left: -20px;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/icn_title.png") left top / cover no-repeat;
}

.title_l {
  margin: 5px 0 0;
  font-weight: 600;
  font-size: 28px;
}





/* cnt */

.bg_cnt_b {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.cnt {
  position: relative;
  width: 84%;
  max-width: 1200px;
  margin: -80px auto 80px;
  padding: 80px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
}

.cnt::before {
  position: absolute;
  top: -40px;
  left: -60px;
  display: block;
  content: "";
  width: 260px;
  height: 260px;
  background: url("../images/bg_cnt_t.png") left top / cover no-repeat;
}

.cnt_inner {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  line-height: 2;
  text-align: left;
  color: #333;
}

.cnt_inner > *:first-child {
  margin-top: 0;
}

.cnt_inner > *:last-child {
  margin-bottom: 0;
}

.cnt_inner h2 {
  position: relative;
  margin: 80px auto 15px;
  padding: 0 0 0 15px;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
}

.cnt_inner h2::before {
  position: absolute;
  top: -6px;
  left: 0;
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: url("../images/icn_h2.png") left top / cover no-repeat;
}

.cnt_inner p {
  margin: 0 auto 2em;
}

table {
  width: 100%;
  margin: 0 auto 50px;
  border-collapse: collapse;
}

table th {
  display: block;
  padding: 20px 0 5px 0;
  border-bottom: none;
  font-weight: 500;
  vertical-align: top;
  white-space: nowrap;
  color: #333;
}

table td {
  display: block;
  padding: 0 0 20px;
  border-bottom: 1px solid #bbb;
  vertical-align: top;
  color: #333;
}

table.history th {
  font-weight: 600;
  font-size: 32px;
  color: rgba(229,0,18,0.70);
  letter-spacing: .04em;
  line-height: 1.2;
}

table.history th span {
  display: inline-block;
  padding: 0 0 0 4px;
  font-weight: 500;
  font-size: 18px;
  vertical-align: middle;
}

table.history th span.current {
  font-weight: 600;
  font-size: 26px;
}

p.story {
  position: relative;
  width: 84%;
}

p.story::before {
  position: absolute;
  top: -20px;
  left: -0.8em;
  display: block;
  content: "“";
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: rgba(229,0,18,0.25);
}

p.story::after {
  position: absolute;
  top: -20px;
  right: -0.8em;
  display: block;
  content: "”";
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: rgba(229,0,18,0.25);
}

ul.items {
  display: flex;
  flex-wrap: wrap;
}

.flexbox:before {
  content: "";
  display: none;
  width: 25%;
  height: 0;
  order: 1;
}

.flexbox:after {
  content: "";
  display: none;
  width: 25%;
  height: 0;
}

ul.items li {
  flex-basis: 100%;
  padding: 40px 0 0;
  border-right: none;
  border-bottom: none;
}

ul.items li:nth-child(-n+4) {
  padding-top: 0;
}

ul.items li:nth-child(4n) {
  border-right: none;
}

ul.items li:nth-last-child(-n+4) {
  border-bottom: none;
}

.item_num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 10px;
  border: 8px solid #999;
  border-radius: 100vw;
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  color: #999;
}

ul.items li h3 {
  margin: 0 auto 13px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  line-height: 1.3;
}

ul.items li p {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

ul.items li p span {
  display: inline-block;
}

.nw_cnt {
  display: block;
  justify-content: space-between;
  text-align: left;
}

.nw_cnt > div {
  flex-basis: 100%;
}

.nw_cnt h3 {
  margin: 0 0 15px;
  border-bottom: 1px solid #ccc;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.6;
}

.nw_cnt p span {
  display: inline-block;
}

h3.h3_group {
  position: relative;
  padding: 0 0 6px 1.2em;
  font-weight: 500;
  font-size: 18px;
}

h3.h3_group::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: #ccc;
}

p.lead {
  font-weight: 500;
  font-size: 20px;
}

.access_map {
  width: 100%;
  height: 320px;
  margin: 0 auto 30px;
}

.access_map iframe {
  width: 100%;
  height: 320px;
}

h3.h3_access {
  position: relative;
  margin: 0 auto 15px;
  padding: 0 0 12px;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.6;
  text-align: center;
}

h3.h3_access::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  content: "";
  width: 60px;
  height: 4px;
  background: #ccc;
  transform: translate(-50%, 0);
}

.tel_box {
  margin: 0 auto 60px;
  padding: 20px 15px;
  border: 4px solid #999;
  text-align: center;
}

.tel_box p {
  margin-bottom: 0;
  display: inline-block;
  text-align: left;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
}

.tel_box p span {
  display: block;
  font-weight: normal;
  font-size: 15px;
}

.list_form {
}

.list_form dt {
  clear: both;
  float: none;
  width: auto;
  margin: 2px 0 12px;
  padding: 1px 5px 1px 10px;
  border-left: 6px solid #e50012;
  line-height: 1.8;
  font-weight: 700;
}

.list_form dt span {
  color: #C00;
  font-size: 1.0625rem;
}

.list_form dd {
  margin: 0 0 25px;
  padding: 0 0 1px 0;
}

form {
  clear: both;
}

select {
  padding: 8px;
  border: 2px solid #999;
  border-radius: 10px;
  font-size: 1.0625rem;
  cursor: pointer;
}

input[type=text] {
  width: 100%;
  padding: 8px;
  border: 2px solid #999;
  border-radius: 10px;
  font-size: 1.0625rem;
}

textarea {
  width: 100%;
  height: 160px;
  padding: 8px;
  border: 2px solid #999;
  border-radius: 10px;
  font-size: 1.0625rem;
}

input[type="text"]:focus,
textarea:focus {
  border: 2px solid #999;
  border-radius: 10px;
  box-shadow: 0 0 7px #999;
}

::-webkit-input-placeholder { color: #BBBBBB; }
::-ms-input-placeholder { color: #BBBBBB; }
:-ms-input-placeholder { color: #BBBBBB; }
:placeholder-shown { color: #BBBBBB; }

input.button,
input.submit {
  width: 100%;
  margin: 0 0 20px;
  padding: 20px;
  border-radius: 100vw;
  background: url("../images/icn_arrow_r_wh.png") right 20px center / 16px 16px no-repeat #111;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFF;
  transition: all .2s ease-in-out;
  cursor: pointer;
}

input.submit {
  width: 100%;
  min-width: 100%;
  padding: 20px 40px;
  white-space: normal;
  cursor: pointer;
}

input.button:hover,
input.submit:hover {
  background: url("../images/icn_arrow_r_wh.png") right 22px center / 16px 16px no-repeat #333;
}

input.button_small {
  width: 80%;
  padding: 10px;
  background: url("../images/icn_arrow_r_wh.png") left 16px center / 10px 10px no-repeat #777;
  border-radius: 100vw;
  font-size: 1.0625rem;
  color: #fff;
  transition: all .2s ease-in-out;
  cursor: pointer;
}

input.button_small:hover {
  background: url("../images/icn_arrow_r_wh.png") left 18px center / 10px 10px no-repeat #555;
}

p.error_messe {
  margin-bottom: 20px;
  color: #C00;
}

.formTable {
  width: 900%;
  margin: 0 auto 60px;
  border-collapse: collapse;
  border-top: 1px solid #CCCCCC;
}

.formTable th {
  display: block;
  padding: 15px 0 5px;
  text-align: left;
  vertical-align: top;
  border-bottom: none;
  white-space: nowrap;
}

.formTable td {
  display: block;
  padding: 0 0 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #CCCCCC;
  white-space: normal;
  word-break: break-all;
}





}





/* - - - - - - - - - - - - - - - - - (print) - - - - - - - - - - - - - - - - - */

@media print {
  .hd_nav { position: absolute; }
  .aos-init { opacity: 1 !important; transform: translateZ(0); }
  .pagetop { display: none !important; }
  #topmv_wrapeer { background-image: none !important; }
  .sc_animation, .popin { opacity: 1; }
}





/* - - - - - - - - - - - /end - - - - - - - - - - - */




