@charset "UTF-8";

/* =========================================================
  共通設定（変数・リセット・共通パーツ）
  全ページ共通
========================================================= */

:root {
  --main-color: #000000;
  --sub-color: #f3f3f3;
  --key-color: #031953;
  --dark-color: #242f4d;
  --btn-contact: #cf1515;
  --btn-register: #2c28dd;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}

html {
  font-size: 100%;
  overflow: auto;
  scroll-padding-top: 185px;
}

body {
  font-family: "Roboto", "Noto Sans JP", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック体", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-size: 16px;
  letter-spacing: 2px;
  width: 100%;
  background: white;
  margin: 0 auto;
  padding: 0;
  color: #1d2129;
  overflow: hidden;
  line-height: 1.8;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

main {
  position: relative;
}

/* main要素にpageクラスが付くページの上部マージン（使用ページ: press.php） */
main.page {
  margin-top: 110px;
}

.wrap {
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  background-size: 3018px;
  background-position-y: 100vh;
  background-position-x: center;
  padding-top: 100px;
}

.section_inner {
  max-width: 1000px;
  margin: 130px auto 0;
}

/* head */
.page_ttl_bg {
  /* margin-bottom: 30px; */
  padding: 16px 20px 16px 20px;
  color: #fff;
  background-color: var(--dark-color);
}
.page_ttl_bg .head_jp {
  line-height: 1.4;
  font-size: 26px;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin: 0 0 0 0;
}
.page_ttl_bg .head_en{
  line-height: 1;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding-top: 10px;
  margin-top: 0px;
}
.section_ttl_bg {
  margin-bottom: 30px;
  padding: 5px 0;
  background-color: var(--dark-color);
  color: white;
  font-size: 28px;
  text-align: center;
}
.section_ttl_line {
  font-size: 26px;
  line-height: 24px;
  border-bottom: 2px solid var(--dark-color);
  padding: 16px 5px;
  margin-bottom: 20px;
  margin-top: 50px;
  text-align: left;
}
.ttl_frame {
  padding: 10px 10px 10px 20px;
  margin-block: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  background: #ffffff url(../img/bg_h302.svg) left center no-repeat;
  background-size: 8px;
  border: 1px solid #333;
  color: #000;
}
.ttl_square {
  padding: 10px 10px 10px 20px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  background: #ffffff url(../img/bg_h401.svg) left center no-repeat;
  background-size: 8px;
  border-bottom: 1px dashed #e6e6e6;
  color: #00275d;
}

.f_wrap {
  display: flex;
}

.mb_only {
  display: none;
}

.pc_only {
  display: block;
}

.fadein {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 1s;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.btn_center {
  margin: 50px auto 0;
  text-align: center;
  .btn_blue {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    position: relative;
    display: inline-block;
    padding: 16px 10px;
    background-color: #1a3781;
    color: white;
    width: 30%;
    border-radius: 999px;
    transition: all 0.4s;
  }
  .btn_blue:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0px;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -4px;
  }
  .btn_blue:hover {
    opacity: 0.8;
  }
}

/* =========================================================
  header（include/menu.php, include/header.php）
  全ページ共通
========================================================= */

.header_title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 125px;
}

nav {
  display: flex;
  flex-direction: column;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

nav ul a {
  color: white;
}

nav ul a:hover {
  color: #ffe70e;
}

.page nav ul a {
  color: #000;
}

.menu-trigger {
  display: none;
}

/* cnv_btn */
.cnv_btn {
  display: flex;
  gap: 10px;
}

.cnv_btn a {
  display: block;
  text-align: center;
  padding: 13px 0;
  width: 200px;
  color: white;
  letter-spacing: 2px;
  font-weight: bold;
  border-radius: 999px;
}

.cnv_btn a.regist {
  background-color: var(--btn-register);
  border: 1px solid var(--btn-register);
}

.cnv_btn a.regist:hover {
  background-color: white;
  color: var(--btn-register);
  transition: 0.3s;
  font-weight: bold;
  border: 1px solid var(--btn-register);
}

.cnv_btn a.contact {
  background-color: var(--btn-contact);
  border: 1px solid var(--btn-contact);
}

.cnv_btn a.contact:hover {
  background-color: white;
  color: var(--btn-contact);
  transition: 0.3s;
  font-weight: bold;
  border: 1px solid var(--btn-contact);
}

/* fixed_header */
.fixed_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  transition: 0.2s;
}

.fixed_header .header_right {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
}

body .hidden_part {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1;
  color: white;
}

.fixed_header .header_right .hidden_part li:first-child {
  display: flex;
  line-height: 1.3;
  align-items: center;
}

.fixed_header .header_right .hidden_part li:last-child .txt_sml {
  font-size: 14px;
}

.fixed_header .header_menu_head {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  /* background-color: #000; */
  background-color: var(--key-color);
}
.fixed_header .header_logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.fixed_header .header_logo a {
  display: block;
  line-height: 1;
  padding-left: 25px;
}

.fixed_header .header_logo a img {
  max-width: 685px;
  height: 45px;
}

.fixed_header .header_menu_body {
  width: 100%;
  /* background: linear-gradient(to bottom, #ffffff 0%, #ececec 100%); */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  /* background-color: var(--key-color); */
  background-color: #fff;
}

.fixed_header .header_menu_body nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  width: 100%;
  height: 100%;
}

.fixed_header .header_menu_body nav li {
  height: 100%;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 180px;
  border-right: 1px solid #ddd;
}

.fixed_header .header_menu_body nav li.nav_home {
  max-width: 70px;
}

.fixed_header .header_menu_body nav li a {
  /* color: #fff; */
  color: var(--key-color);
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
  transition: 0.3s;
}

.fixed_header .header_menu_body nav li a.is_disabled {
  color: #ccc;
  pointer-events: none;
}

.fixed_header .header_menu_body nav li a:hover {
  transition: 0.5s;
  opacity: 0.7;
  /* color: var(--key-color); */
}

.fixed_header .header_menu_body nav li:first-child a {
  max-width: 67px;
}

.fixed_header .header_menu_body nav li:first-child a:hover path {
  /* fill: var(--key-color); */
  opacity: 0.7;
}

.fixed_header .header_menu_body nav li a div {
  display: block;
}

.fixed_header .header_menu_body nav li a img {
  height: 20px;
}



/* .fixed_header .header_menu_body nav li a.fd {
  flex-direction: column;
  line-height: 1.6;

  >div {
    line-height: 1;
    font-size: 11px;
  }
} */

/* =========================================================
  footer（include/footer.php）
  全ページ共通
   ========================================================= */

footer {
  position: relative;
  background-color: #000;
  color: white;
  text-align: center;
  padding: 30px 0 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 100px;
}

#footer_organization {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

#footer_organization span {
  font-size: 14px;
  display: block;
  font-weight: normal;
  line-height: 1.5;
}

#footer_organization span:first-child {
  font-weight: bold;
  font-size: 18px;
  margin-top: 2px;
}

#footer_tel {
  margin-top: 8px;
  line-height: 1.5;
}

#footer_tel div.box {
  display: none;
  border: 1px solid #fff;
  font-size: 12px;
  font-weight: normal;
  padding: 4px 17px;
  line-height: 12px;
  margin-right: 20px;
  vertical-align: middle;
}

#footer_tel span.tel_text {
  font-size: 20px;
  font-weight: bold;
  vertical-align: baseline;
}

#footer_tel span:last-child {
  font-size: 14px;
  display: block;
}

#footer_tel a {
  color: white;
  text-decoration: none;
  font-size: 27px;
  font-weight: bold;
}

#footer_adress {
  font-size: 14px;
  margin-top: 6px;
}

#footer_adress a {
  color: white;
}

#footer_adress span {
  font-size: 12px;
  display: block;
}

#footer_copyright {
  margin-top: 50px;
}

.fixed_btn_wrap_for_ie {
  width: 100%;
  left: 0;
  display: block;
  position: fixed;
  height: 50px;
  bottom: 0;
  z-index: 30;
}

.fixed_btn_wrap {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  height: 50px;
}

.fixed_btn {
  right: 0;
  display: block;
  background-color: #ffe70e;
  width: 24%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.fixed_btn.btn1 {
  background-color: var(--btn-register);
}

.fixed_btn.btn2 {
  background-color: var(--btn-contact);
}

.fixed_btn:hover {
  background-color: white;
  font-weight: bold;
  transition: 0.3s;
}

.fixed_btn.btn1:hover {
  color: var(--btn-register);
  transition: 0.3s;
  border: 1px solid var(--btn-register);
}

.fixed_btn.btn2:hover {
  color: var(--btn-contact);
  transition: 0.3s;
  border: 1px solid var(--btn-contact);
}

.fixed_btn img {
  width: 25px;
  margin-right: 10px;
}

.fixed_btn_wrap>div.scrolltotop {
  width: 50px;
  background-color: #5C5C5C;
  cursor: pointer;
  position: relative;
}

.fixed_btn_wrap>div.scrolltotop::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 0px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  position: absolute;
  top: 50%;
  right: 18px;
  margin-top: -4px;
}

#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  z-index: 200;
  height: 50px;
  background-color: var(--key-color);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#page-top img {
  width: 35%;
  cursor: pointer;
}

/* 固定お問合せ・登録ボタンを非表示（使用ページ: mail/index.php, v-mail/index.php） */
.stop .fixed_btn_wrap_for_ie {
  display: none;
}

/* =========================================================
  トップページ（index.php）
========================================================= */

.front_page .wrap {
  padding-top: 0;
}

.front_page header {
  height: auto;
  min-height: 740px;
  background-image: url(../img/mv_bg.png);
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  background-attachment: fixed;
  margin-top: 140px;
}

.front_page header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(193, 44, 31, 0.1);
}

.front_page.onLoad header::before {
  background-color: rgba(44, 44, 75, 0.8);
  transition: 2s;
}

.front_page header>div::before {
  content: "";
  position: absolute;
  transform: skewX(-13deg);
  width: 1130px;
  height: 90%;
  min-height: 740px;
  margin: 0 auto;
  background-color: rgba(45, 80, 29, 0.1);
  border-right: 8px solid rgba(255, 255, 0, 0);
  border-left: 8px solid rgba(255, 255, 0, 0);
  z-index: 8;
}

.front_page.onLoad header>div::before {
  background-color: rgba(3, 25, 83, 0.6);
  border-right: 8px solid rgba(255, 255, 0, 0.9);
  border-left: 8px solid rgba(255, 255, 0, 0.9);
  transition: 2s;
}

.front_page header>div {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.front_page header div.main_logo {
  max-width: 850px;
  z-index: 10;
}

.front_page header div.main_logo .main_logo_wrap {
  text-align: center;
}

.front_page header div.main_logo img {
  width: 100%;
}
.front_page header div.main_logo .catch {
  margin: 0 0 40px;
  padding: 5px 40px;
  display: inline-block;
  font-weight: bold;
  background-color: rgb(255, 255, 0);
  border-radius: 5px;
}
.front_page header div.main_logo .catch p {
  position: relative;
  font-size: 30px;
  padding-inline: 44px;
  &:after,&:before {
    position: absolute;
    top: 50%;
    width: 22px;
    height: 2px;
    content: "";
    background: #000;
  }
  &:after {
    left: 0;
    /* transform: rotate(50deg) */
  }
    &:before {
    right: 0;
    /* transform: rotate(-50deg) */
  }
}

.front_page header .logo_data {
  font-size: 24px;
  font-weight: bold;
  color: white;
  line-height: 1;
  margin: 40px 0;
  text-align: center;
}

.front_page header .logo_data a {
  color: white;
  text-decoration: underline;
}

.front_page header .logo_data>div {
  margin: 20px auto;
}

.front_page header .logo_data div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.front_page header .logo_data div:first-child span {
  font-size: 42px;
}

.front_page header .logo_data div:first-child>div:last-child {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.front_page header .logo_data .info .txt_sml {
  font-size: 19px;
}

.front_page header .sponsor {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin: -20px 0 20px;
}
.front_page header .btn {
  z-index: 10;
  width: 100%;
  padding: 30px 0 0;
}

.front_page header .btn a {
  display: flex;
  color: white;
  width: 90%;
  max-width: 420px;
  margin: 0 auto 20px;
  justify-content: center;
  font-weight: bold;
  height: 66px;
  font-size: 18px;
  align-items: center;
  background-image: url(../img/arrow_right_white.svg);
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 7px;
  transition: 0.3s;
  border-radius: 999px;
}

.front_page header .btn a.btn_contact {
  background-color: var(--btn-contact);
  border: 2px solid var(--btn-contact);
}

.front_page header .btn a.btn_contact:hover {
  border: 2px solid var(--btn-contact);
  color: var(--btn-contact);
  background-color: white;
  background-image: url(../img/arrow_right_org.svg);
}

.front_page header .btn a.btn_register {
  margin-bottom: 0;
  background-color: var(--btn-register);
  border: 2px solid var(--btn-register);
}

.front_page header .btn a.btn_register:hover {
  border: 2px solid var(--btn-register);
  color: var(--btn-register);
  background-color: white;
  background-image: url(../img/arrow_right_blue.svg);
}

/* .front_page section {
  padding: 0 15px;
} */

.front_page .top_bnr {
  text-align: center;
  margin: 0 auto 30px;
  width: 90%;
  max-width: 800px;
}

.front_page .top_bnr a {
  display: block;
}

.front_page .top_bnr a:hover {
  opacity: 0.85;
}

.front_page .news_section {
  margin-bottom: 60px;
  position: relative;
}

.front_page .news_section>div>div {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #e6e3e3;
  padding: 20px;
  max-height: 300px;
  overflow-y: scroll;
  background-color: rgba(255, 255, 255, 0.3);
}

.front_page .news_section .info li {
  display: flex;
  border-bottom: 1px dotted #666;
  padding: 15px;
  gap: 20px;
}

.front_page .news_section .info li:last-child {
  border-bottom: 0;
}

.front_page .news_section .info li .info_date {
  min-width: 100px;
  font-weight: bold;
  color: #001c08;
}

.front_page .news_section .info li .info_title {
  display: block;
}

.front_page .news_section .info li .info_title img {
  margin-right: 15px;
}

/* .front_page .overview_section {
  padding-top: 140px;
  margin-top: -120px;
} */

.front_page .overview_section h2 {
  margin-top: 0;
}

.front_page .overview_section table {
  margin: 0 auto;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0px;
  border-top: 1px dashed #cccccc;
}

.front_page .overview_section table th {
  width: 130px;
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  border-bottom: 1px dashed #cccccc;
  padding: 15px 0;
}

.front_page .overview_section table th span {
  font-size: 12px;
  display: block;
  margin-top: -5px;
}

.front_page .overview_section table td {
  padding-left: 20px;
  vertical-align: top;
  border-bottom: 1px dashed #cccccc;
  padding: 15px 0;
}

.front_page .overview_section table td a {
  color: blue;
}

.front_page .products_section .f_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 15px;
}

.front_page .products_section .f_wrap>div {
  width: 32.5%;
  padding: 30px 25px;
  background-color: rgb(0 0 0 / 2%);
}

.front_page .products_section .f_wrap>div h3 {
  font-size: 20px;
  font-weight: bold;
  border-left: 5px solid var(--key-color);
  padding-left: 15px;
  line-height: 1.3;
  min-height: 53px;
  display: flex;
  align-items: center;
}

.front_page .products_section .f_wrap>div h3+div {
  margin-top: 20px;
}

.front_page .visitors_section .content_box li {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  padding: 20px;
  background-color: rgba(0, 0, 0, 2%);
}

.front_page .visitors_section .content_box li>div {
  font-weight: normal;
  padding-left: 30px;
  font-size: 16px;
}

.front_page .visitors_section .content_box li h3 {
  font-size: 20px;
  font-weight: bold;
  border-left: 5px solid var(--key-color);
  padding-left: 15px;
  line-height: 1.3;
}

.front_page .visitors_section .content_box li h3+div {
  margin-top: 20px;
}
.front_page .access_section .access_map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}
.front_page .access_section .access_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =========================================================
   各ページ共通パーツ
   ========================================================= */

/* 出展問合せ完了セクション（使用ページ: thanks.php） */
.page .last_section {
  margin-bottom: 60px;
}

/* フォーム説明文の下マージン（使用ページ: register.php, mail/index.php, v-mail/index.php） */
.contact p,
.stop p {
  margin-bottom: 30px;
}

/* =========================================================
   プレスページ（press.php）
   ========================================================= */

.mediapartner {
  display: flex;
  gap: 50px;
  align-items: center;
  row-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;

  >a {
    display: flex;
    height: auto;

    img {
      max-height: 100px;
    }
  }

  >a:nth-child(3) img {
    max-height: 100px;
  }

  >a:nth-child(4) img {
    max-height: 70px;
  }

  >a:nth-child(5) img {
    max-height: 45px;
  }

  >a:nth-child(6) img {
    max-height: 70px;
  }

  >a:nth-child(7) img {
    max-height: 45px;
    margin-top: 10px;
  }
}

#press #contact_press {
  border: 3px solid var(--dark-color);
  max-width: 1060px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  padding-bottom: 40px;
  padding: 30px;
}

#press .content_block {
  display: flex;
  justify-content: space-between;
}

#press .content_block .content_body {
  flex: 2;
  margin-right: 30px;
}

#press .content_block .content_img {
  flex: 1.4;
}

#press .content_block .content_img img {
  max-width: 100%;
}

#press .tel_no {
  font-size: 30px;
  font-weight: 700;
}

#press .release_list dd {
  margin-bottom: 15px;
}

.release_list {
  margin-bottom: 8px;
}

#press #mediapartner {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  row-gap: 10px;
  justify-content: center;

  >a {
    display: flex;
  }

  >a:nth-child(3) img {
    max-height: 100px;
  }

  >a:nth-child(4) img {
    max-height: 70px;
  }
}

.press .interview_section,
.press .press_section,
.press .mediapartner_section,
.press .register_section {
  padding-top: 110px;
  margin-top: -110px;
}

#satori__creative_container {
  margin-top: 50px;
}