@charset "UTF-8";
/*
Theme Name: ANAP 2025
Theme URI: https://www.anapnet.com/
Description: ANAP公式サイト2025年リニューアル版テーマ
Version: 2025.1.0
Author: ANAP Holdings
*/
/*
 * ANAP Holdings モバイルメニュースタイル
 * ハンバーガーメニューの実装
 */
/* ========================================
   モバイルメニューオーバーレイ
   ======================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   モバイルメニューコンテナ
   ======================================== */
.mobile-menu-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 375px;
  height: 100%;
  background-color: #F5F5F5;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-container {
  transform: translateX(0);
}

/* ========================================
   モバイルメニューヘッダー
   ======================================== */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E0E0E0;
  position: relative;
}

.mobile-logo {
  display: block;
  max-width: 120px;
}

.mobile-logo img {
  width: 100%;
  height: auto;
}

.mobile-menu-close {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #131313;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

.mobile-lang-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #131313;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-lang-btn:hover {
  opacity: 0.8;
}

/* ========================================
   モバイルメニューナビゲーション
   ======================================== */
.mobile-menu-nav {
  flex: 1;
  padding: 20px 0;
  background: #EEEEEE;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-item {
  border-bottom: 1px solid #E0E0E0;
}

.mobile-menu-item > a,
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #131313;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s;
}

.mobile-menu-item > a:hover,
.mobile-menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* サブメニュー矢印アイコン */
.submenu-arrow {
  transition: transform 0.3s ease;
}

.mobile-menu-item.active .submenu-arrow {
  transform: rotate(180deg);
}

/* サブメニュー */
.mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.03);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu-item.active .mobile-submenu {
  max-height: 500px;
}

.mobile-submenu li {
  border-bottom: 1px solid #E0E0E0;
}

.mobile-submenu li:last-child {
  border-bottom: none;
}

.mobile-submenu a {
  display: block;
  padding: 12px 20px 12px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #131313;
  text-decoration: none;
  transition: background-color 0.2s;
}

.mobile-submenu a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* ========================================
   モバイルメニューフッター
   ======================================== */
.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid #E0E0E0;
  background-color: #FFFFFF;
}

.mobile-menu-footer a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #131313;
  text-decoration: none;
  padding: 8px 0;
}

.mobile-menu-footer a:hover {
  opacity: 0.7;
}

/* ========================================
   ハンバーガーメニューボタン（既存のheaderに存在）
   ======================================== */
.menuBar {
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.menuBar span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #131313;
  transition: all 0.3s ease;
}

/* ハンバーガーメニューアクティブ時のアニメーション */
.menuBar.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menuBar.active span:nth-child(2) {
  opacity: 0;
}

.menuBar.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   レスポンシブ表示
   ======================================== */
@media (max-width: 768px) {
  .menuBar {
    display: flex;
  }
  /* デスクトップメニューを非表示 */
  .nav_wrap {
    display: none;
  }
}
/* 小型スマートフォン */
@media (max-width: 375px) {
  .mobile-menu-container {
    width: 90%;
  }
  .mobile-menu-item > a,
  .mobile-menu-toggle {
    font-size: 15px;
    padding: 14px 18px;
  }
  .mobile-submenu a {
    font-size: 13px;
    padding: 10px 18px 10px 36px;
  }
}
/* デスクトップでモバイルメニューを完全に非表示 */
@media (min-width: 769px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}
/* ========================================
   ボディスクロール制御
   ======================================== */
body.mobile-menu-open {
  overflow: hidden;
}

/* ====================================================
tuika
==================================================== */
h1, h2, h3, h4, h5, h6, pre, code, input, textarea, select, button {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

/* ====================================================
ALL CONTENTS
==================================================== */
.content_box {
  max-width: 100%;
  width: 1400px;
  margin: 0 auto;
  padding: 100px 140px 130px;
  background: #ffffff;
  margin-bottom: 100px;
  box-sizing: border-box;
  font-size: 15px;
}

.ttl_h2 {
  text-align: center;
  line-height: 1;
  color: #666666;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 90px;
  margin-bottom: 70px;
  letter-spacing: 1px;
  font-weight: bold;
}

.ttl_h2:first-child {
  text-align: center;
  line-height: 1;
  color: #666666;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 70px;
  letter-spacing: 1px;
  font-weight: bold;
}

.ttl_h2 span {
  font-weight: 900;
  font-size: 36px;
  font-size: 3.6rem;
  display: block;
  margin: 0px auto 17px;
  letter-spacing: 2px;
}

.ttl_h2b {
  text-align: center;
  line-height: 1;
  font-size: 30px;
  font-size: 3rem;
  margin-top: 70px;
  margin-bottom: 50px;
  letter-spacing: 4px;
  font-weight: bold;
}

.sec_page h3 {
  font-size: 20px;
  margin: 0 0 35px;
  font-weight: bold;
}

@media only screen and (max-width: 980px) {
  .content_box {
    width: 90%;
    margin: 0 auto 40px;
    padding: 35px 20px 30px;
    box-sizing: border-box;
    font-size: 13px;
  }
  .ttl_h2 {
    font-size: 11px;
    font-size: 1.1rem;
    margin-top: 40px;
    margin-bottom: 35px;
  }
  .ttl_h2 span {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 13px;
    letter-spacing: 1px;
  }
  .ttl_h2b {
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: 40px;
    margin-bottom: 30px;
    letter-spacing: 2px;
  }
  .sec_page h3 {
    margin: 0 0 20px;
    font-size: 17px;
  }
}
a:hover {
  color: inherit;
  text-decoration: none;
}

.btn_style01:hover {
  color: #ffffff;
}

#main-header .header .logo_wrap {
  width: 140px;
}

@media screen and (max-width: 768px) {
  #main-header .header .logo_wrap {
    width: 86px;
  }
}
.sec-brand img {
  filter: grayscale(1);
  opacity: 0.5;
  margin-bottom: 15px;
}

.sec-brand img:hover {
  filter: grayscale(0);
  opacity: 0.9;
}

.ttl_style01 span {
  text-transform: uppercase;
}

.sec_page {
  font-size: 1.6rem;
  line-height: 2.14;
  color: #3d3d3d;
  letter-spacing: -0.5px;
  padding-bottom: 30px;
}

.sec_page p {
  font-size: 1.6rem;
  line-height: 2.14;
  color: #3d3d3d;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.anchor {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}

@media only screen and (max-width: 980px) {
  .sec_page, .sec_page p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
/* メインスライダー
------------------------------------------------------------*/
#slider {
  width: 100%;
  margin: 80px auto 0;
  position: relative;
  overflow: hidden;
}

#slider .uk-panel {
  display: inline-block;
  position: absolute;
  bottom: 15%;
  left: 3%;
}

#slider .slide_sub {
  color: #ebdebf;
  font-size: 13px;
  margin: 0;
  padding: 0;
  letter-spacing: 2px;
  font-style: italic;
}

#slider h1.slide_title {
  margin: 0 auto;
  padding: 0 0 20px;
  box-sizing: border-box;
  text-align: left;
}

#slider .slide_sub2 {
  color: #fff;
  font-size: 14px;
  margin: 0;
  padding: 0;
  letter-spacing: 2px;
  text-align: left;
}

#slider .sls01 {
  font-weight: 400;
}

#slider .sls02 {
  color: #ccaa59;
}

@media only screen and (max-width: 980px) {
  #slider {
    margin: 80px auto 0;
  }
  #slider .slide_sub {
    display: none;
  }
  #slider h1.slide_title img {
    width: 180px;
  }
  #slider .slide_sub2 {
    font-size: 12px;
    letter-spacing: 0;
  }
}
/* Table
------------------------------------------------------------*/
table {
  font-size: 15px;
  width: 99.9%;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  color: #000;
  font-size: 13px;
  margin: 8px auto;
}

th {
  color: #2b3d49;
  background-color: #eee;
  padding: 10px 5px 10px 5px;
  text-align: left;
  font-weight: bold;
  background: #f1f4f5;
}

td {
  padding: 10px 5px;
  text-align: left;
}

table.con_tbl {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
  margin: 25px auto 25px;
}

.con_tbl th {
  border-bottom: 1px solid #e5e5e5;
  color: #444;
  background: #fff;
  padding: 25px 20px;
  vertical-align: middle;
  font-size: 15px;
  width: 22%;
  box-sizing: border-box;
}

.con_tbl td {
  border-bottom: 1px solid #e5e5e5;
  padding: 25px 20px;
  background: #fff;
  color: #444;
  font-size: 15px;
  vertical-align: top;
  box-sizing: border-box;
}

.con_tbl th p {
  font-size: 15px;
}

.con_tbl td ul li span {
  display: inline-block;
  width: 70px;
  font-weight: bold;
}

.tbl_sub {
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  table.con_tbl {
    border-bottom: none;
  }
  .con_tbl th {
    display: block;
    width: 100%;
    border-right: none;
    padding: 10px 7px;
    font-size: 14px;
  }
  .con_tbl td {
    display: block;
    padding: 10px 7px;
    font-size: 14px;
  }
  .con_tbl th p {
    font-size: 14px;
  }
  .con_tbl td ul li span {
    width: 50px;
  }
}
/* コンタクトフォーム
--------------------------------------------------------------------*/
.con_tbl th p, .con_tbl td p {
  margin: 0;
  padding: 0;
}

.con_tbl input, .con_tbl textarea {
  border: 1px solid #d8d8d8;
}

.con_tbl ::placeholder {
  color: #797979;
}

.CF7_req {
  font-size: 14px;
  padding: 0;
  color: #f79034;
  margin-left: 5px;
}

.CF7_btn {
  text-align: center;
  margin-top: 20px;
}

.wpcf7 input.wpcf7-submit {
  display: inline-block;
  margin: 25px 0 5px 50px;
  padding: 20px 0;
  width: 270px;
  max-width: 90%;
  background: #444;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.wpcf7 input.wpcf7-submit:hover {
  opacity: 0.7;
  border: none;
}

.wpcf7-spinner {
  width: 0;
  margin: 0;
}

.con_scrollbox {
  margin: 25px 0;
  padding: 25px;
  border: 1px solid #ddd;
  height: 200px;
  box-sizing: border-box;
  overflow: scroll;
  font-size: 14px;
}

.con_scrollbox h3 {
  font-size: 15px;
}

.con_scrollbox p {
  font-size: 14px;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .con_tbl th {
    width: 30%;
    background-color: #f6f6f6;
  }
}
@media screen and (max-width: 768px) {
  .wpcf7 input.wpcf7-submit {
    margin: 25px 0 5px 40px;
    width: 200px;
  }
}
/*--- form ----------------------------------------------------------- */
form {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: inherit;
}

fieldset {
  padding: 3px;
  border: none;
}

legend {
  padding: 0 10px;
  background-color: #fff;
}

input, textarea, select {
  padding: 8px 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #ddd;
  background-color: #fff;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
  max-width: 100%;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.06);
}

input:hover, textarea:hover {
  background: #f7f7f7;
  border-color: #aaa;
}

a:focus, textarea:focus, input:focus {
  outline: none;
}

textarea {
  padding: 3px 10px;
}

input.submit {
  padding: 3px 5px;
  font-size: 100%;
  border: none;
}

input.submit:hover {
  border: none;
}

input[type=radio] {
  display: inline-block;
  border: none;
  background-color: transparent;
  background-image: none;
}

input[type=checkbox] {
  position: relative;
  width: 17px;
  height: 17px;
  vertical-align: -1px;
  margin-right: 5px;
}

select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

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

@media only screen and (max-width: 1200px) {
  input, textarea {
    width: 99%;
    padding: 5px 3px;
  }
  input[type=radio] {
    display: inline-block;
    width: 20px;
  }
  .mwform-tel-field input {
    width: 50px;
  }
  .mwform-checkbox-field input {
    display: inline-block;
    width: 18px;
  }
}
/* ====================================================
COMPANY INFO
==================================================== */
.tm_autr {
  text-align: right;
}

.tm_autr span {
  font-size: 20px;
  font-weight: bold;
}

@media only screen and (max-width: 980px) {
  .tm_autr span {
    font-size: 17px;
  }
}
#pageTop {
  display: none;
  position: fixed;
  margin: 0;
  bottom: 40px;
  right: 25px;
  width: 45px;
  height: 45px;
  line-height: 40px;
  text-align: center;
  z-index: 1;
}

#pageTop a {
  display: block;
  background: #999 url(images/page_up.png) center center no-repeat;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

#pageTop a:hover {
  background: #ccc url(images/page_up.png) center center no-repeat;
}

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

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

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

/*
 * ANAP Holdings フロントページスタイル
 * Figmaデザインに基づくトップページのスタイル定義
 */
/* ========================================
   変数定義
   ======================================== */
:root {
  --color-black: #131313;
  --color-white: #FFFFFF;
  --color-gray-light: #EEEEEE;
  --color-japan: #D00038;
  --color-bitcoin: #F7931A;
  --color-orange: #FF6B00;
  --color-red: #E31E24;
  --color-blue: #4A90E2;
  --color-purple: #9B59B6;
  --color-green: #27AE60;
  --font-noto: 'Noto Sans JP', sans-serif;
  --font-roboto: 'Roboto', sans-serif;
  --font-futura: 'Futura', 'Trebuchet MS', 'Arial', sans-serif;
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero-section {
  min-height: 100vh;
  background-color: var(--color-gray-light);
  padding: 280px 0 1px;
  position: relative;
}

/* NEWS BOXESフローティング配置 */
.news-boxes-floating {
  position: absolute;
  top: 120px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.news-boxes-floating .news-box {
  border: 1px solid #000000;
  border-radius: 0;
  padding: 16px 20px;
  width: 200px;
  position: relative;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.news-boxes-floating .news-box:hover {
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.02);
}

.news-box-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
}

.news-boxes-floating .news-box-title {
  font-family: var(--font-futura);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-align: left;
}

.news-boxes-floating .news-box-text {
  font-family: var(--font-noto);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-black);
  text-align: left;
}

.news-boxes-floating .arrow-icon {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M6 4L10 8L6 12' fill='none' stroke='%23131313' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.hero-content {
  max-width: 1392px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.hero-title {
  font-family: var(--font-futura);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.95;
  color: var(--color-black);
  margin-bottom: 200px;
  letter-spacing: 0;
  text-align: left;
}

.hero-title-image {
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}
.hero-title-image.sp {
  display: none;
}

@media (max-width: 768px) {
  .hero-title-image.sp {
    display: block;
    width: calc(100% - 36px);
    margin: 20% auto;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-title .text-japan {
  color: var(--color-japan);
  font-style: italic;
}

.hero-title .text-bitcoin {
  color: var(--color-bitcoin);
  font-style: italic;
}

.hero-title-underline {
  width: 120px;
  height: 3px;
  background-color: var(--color-black);
  margin-bottom: 40px;
}

.hero-description {
  margin-bottom: 50px;
  text-align: left;
}

.hero-text-main {
  font-family: var(--font-roboto);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 60px;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* ミッション */
.mission-section {
  position: relative;
  margin-bottom: 64px;
}

.mission-section:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100vw;
  border-top: 1px solid black;
  z-index: 0;
}

.mission-section:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100vw;
  border-bottom: 1px solid black;
  z-index: 0;
}

.mission-section .lines {
  border-left: 1px solid black;
  border-right: 1px solid black;
}

.mission-section .lines:first-child {
  position: relative;
  font-family: var(--font-roboto);
  font-size: 40px;
  font-weight: bold;
  padding: 24px;
}
@media (max-width: 768px) {
  .mission-section .lines:first-child {
    font-size: 24px;
  }
}

.mission-section .lines:first-child:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100vw;
  border-bottom: 1px solid black;
  z-index: 0;
}

.mission-section .lines:nth-child(2) {
  display: flex;
}
@media (max-width: 768px) {
  .mission-section .lines:nth-child(2) {
    flex-wrap: wrap;
  }
}

.mission-section .lines:nth-child(2) .mission-icon-container {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .mission-section .lines:nth-child(2) .mission-icon-container {
    width: 33.3333333333%;
    border-bottom: 1px solid black;
  }
}

.mission-section .lines:nth-child(2) .mission-icon-container div {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid black;
}

.mission-section .lines:nth-child(2) .mission-icon-container div:first-child {
  background-color: #000000;
  color: white;
  width: 128px;
  height: 29px;
  font-family: var(--font-noto);
  font-size: 16px;
}
@media (max-width: 768px) {
  .mission-section .lines:nth-child(2) .mission-icon-container div:first-child {
    width: 100%;
    border-right: 1px solid white;
  }
}

.mission-section .lines:nth-child(2) .mission-icon-container div:last-child {
  flex-grow: 1;
  height: 108px;
}

.mission-section .mission-description {
  font-size: 16px;
  padding: 24px 48px;
  font-family: var(--font-noto);
}
@media (max-width: 768px) {
  .mission-section .mission-description {
    width: 100%;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .mission-section .lines:nth-child(2) .mission-icon-container:nth-child(3) div {
    border-right: none;
  }
}
/* 3つの特徴アイコン */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1392px;
  margin: 0;
  padding: 0;
}

.feature-item {
  background-color: var(--color-white);
  border: 1px solid #D0D0D0;
  border-radius: 8px;
  padding: 36px 28px;
  text-align: left;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 0 20px 0;
  background-color: transparent;
  border: 1px solid #D0D0D0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-title {
  font-family: var(--font-noto);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-black);
  padding: 10px 24px;
  border-radius: 24px;
  display: inline-block;
  margin-bottom: 20px;
}

.feature-text {
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 28.8px;
  letter-spacing: 1px;
  text-align: left;
  padding-left: 16px;
  border-left: 3px solid var(--color-black);
}

/* ========================================
   トピックスセクション
   ======================================== */
.topics-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.topics-section .inner {
  max-width: 1392px;
  margin: 0 auto;
  padding: 0 60px;
}

.topics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  margin-right: auto;
}

.topics-title {
  font-family: var(--font-futura);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  letter-spacing: 1px;
}

.topics-link {
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
  text-decoration: none;
  transition: opacity 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topics-link::after {
  content: "→";
  font-size: 16px;
}

.topics-link:hover {
  opacity: 0.7;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.topic-card {
  background-color: var(--color-white);
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  padding: 24px 20px;
  transition: box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  /*min-height: 200px;*/
}

.topic-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.topic-label {
  font-family: var(--font-noto);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-white);
  padding: 5px 12px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0;
  text-align: center;
}

.topic-label.red {
  background-color: var(--color-red);
}

.topic-label.blue {
  background-color: var(--color-blue);
}

.topic-label.purple {
  background-color: var(--color-purple);
}

.topic-label.orange {
  background-color: var(--color-orange);
}

.topic-label.green {
  background-color: var(--color-green);
}

.topic-title {
  font-family: var(--font-noto);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.topic-date {
  font-family: var(--font-roboto);
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  margin-top: auto;
}

/* ========================================
   ANAPロゴセクション
   ======================================== */
.anap-logo-section {
  padding: 100px 0;
  background-color: var(--color-white);
  overflow: hidden;
}

.anap-logo-bg {
  text-align: center;
}

.anap-logo-text {
  font-family: var(--font-futura);
  font-size: 160px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-black);
  text-stroke: 1.5px var(--color-black);
  letter-spacing: 0.08em;
  display: inline-block;
  white-space: nowrap;
}

@keyframes logo-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ========================================
   POLICYセクション
   ======================================== */
.policy-section {
  padding: 80px 0;
  background-color: var(--color-gray-light);
}

.policy-section .inner {
  max-width: 1392px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-title {
  font-family: var(--font-futura);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.policy-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}

.policy-subtitle {
  font-family: var(--font-noto);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 28px;
  line-height: 1.5;
}

.policy-list {
  list-style: none;
  padding: 0;
}

.policy-list li {
  font-family: var(--font-noto);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-black);
  padding: 14px 0;
  position: relative;
  padding-left: 24px;
}

.policy-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  font-size: 10px;
  color: var(--color-black);
}

.policy-right {
  position: relative;
}

.policy-image-container {
  position: relative;
  margin-bottom: 30px;
}

.policy-belief-text {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-futura);
  font-size: 80px;
  font-weight: 900;
  color: var(--color-black);
  letter-spacing: 0.1em;
  z-index: 5;
  transform-origin: center center;
}

.policy-image {
  width: 100%;
  height: auto;
  border: 1px solid #D0D0D0;
  border-radius: 12px;
  display: block;
}

.policy-icons {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-icon-item {
  width: 64px;
  height: 64px;
  background-color: var(--color-white);
  border: 1px solid #D0D0D0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
}

.policy-text-overlay {
  background-color: var(--color-white);
  padding: 40px;
  border: 1px solid #D0D0D0;
  border-radius: 12px;
}

.overlay-title {
  font-family: var(--font-futura);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 20px;
}

.overlay-title .text-orange {
  color: var(--color-orange);
  font-style: italic;
}

.overlay-text {
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.9;
}

/* ========================================
   SERVICEセクション
   ======================================== */
.service-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.service-section .inner {
  max-width: 1392px;
  margin: 0 auto;
  padding: 0 60px;
}

.service-description {
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  text-align: left;
  margin-bottom: 50px;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  text-align: left;
  padding: 0;
  border: 1px solid #D0D0D0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 100%;
  height: 200px;
  margin-bottom: 0;
  background-color: #F0F0F0;
  border-bottom: 1px solid #D0D0D0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 80px;
  height: 80px;
}

.service-card-title {
  font-family: var(--font-noto);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 16px;
  padding: 0 24px;
  padding-top: 24px;
}

.service-card-text {
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.8;
  padding: 0 24px;
  padding-bottom: 24px;
}

/* ========================================
   SOLUTIONセクション
   ======================================== */
.solution-section {
  padding: 80px 0;
  background-color: var(--color-black);
  color: var(--color-white);
}

.solution-section .inner {
  max-width: 1392px;
  margin: 0 auto;
  padding: 0 60px;
}

.solution-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}

.solution-title {
  font-family: var(--font-futura);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 40px;
  letter-spacing: 1px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.solution-list {
  list-style: none;
  padding: 0;
}

.solution-list li a {
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  padding: 16px 0 16px 32px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.3s, opacity 0.3s;
  position: relative;
}

.solution-list li a::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--color-white);
  font-size: 12px;
}

.solution-list li a:hover {
  color: var(--color-orange);
}

.solution-list li a.active {
  color: var(--color-orange);
  font-weight: 700;
}

.solution-list li a.active::before {
  color: var(--color-orange);
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solution-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 80%, transparent 100%);
  padding: 32px;
  color: var(--color-white);
}

.solution-card-title {
  font-family: var(--font-noto);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.4;
}

.solution-card-link {
  font-family: var(--font-noto);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background-color: var(--color-black);
  border-radius: 4px;
  transition: background-color 0.3s;
}

.solution-card-link:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* ========================================
   レスポンシブデザイン（タブレット）
   ======================================== */
@media (max-width: 1024px) {
  .hero-content {
    padding: 0 40px;
  }
  .hero-title {
    font-size: 56px;
  }
  .hero-text-main {
    font-size: 16px;
  }
  .hero-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .policy-content,
  .solution-content {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   レスポンシブデザイン（スマートフォン）
   ======================================== */
@media (max-width: 768px) {
  /* ヒーローセクション */
  .hero-section {
    min-height: auto;
    padding: 100px 0 1px;
  }
  .hero-content {
    padding: 0 20px;
  }
  /* NEWS BOXESをモバイルでは下部に配置 */
  .news-boxes-floating {
    position: fixed;
    top: auto;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 16px);
    max-width: 100%;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  }
  .news-boxes-floating.fade-out {
    opacity: 0;
    visibility: hidden;
  }
  .news-boxes-floating .news-box {
    width: 100%;
    max-width: 100%;
    background-color: var(--color-gray-light);
  }
  .news-boxes-floating .news-box:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .hero-title {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .hero-text-main {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  .hero-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-item {
    padding: 30px 24px;
  }
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  .feature-icon img {
    width: 40px;
    height: 40px;
  }
  .feature-title {
    font-size: 14px;
    padding: 6px 16px;
    margin-bottom: 12px;
  }
  .feature-text {
    font-size: 14px;
    line-height: 1.7;
  }
  /* トピックスセクション */
  .topics-section {
    padding: 60px 0;
  }
  .topics-section .inner {
    padding: 0 20px;
  }
  .topics-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
  }
  .topics-title {
    font-size: 32px;
  }
  .topics-link {
    font-size: 13px;
  }
  .topics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .topic-card {
    padding: 20px 16px;
  }
  .topic-label {
    font-size: 10px;
    padding: 4px 10px;
  }
  .topic-title {
    font-size: 14px;
    line-height: 1.6;
    min-height: auto;
  }
  .topic-date {
    font-size: 12px;
  }
  /* ANAPロゴセクション */
  .anap-logo-section {
    padding: 60px 0;
  }
  .anap-logo-text {
    font-size: 60px;
    -webkit-text-stroke: 1px var(--color-black);
    letter-spacing: 0.05em;
  }
  /* POLICYセクション */
  .policy-section {
    padding: 60px 0;
  }
  .policy-section .inner {
    padding: 0 20px;
  }
  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .policy-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .policy-subtitle {
    font-size: 18px;
  }
  .policy-list li {
    font-size: 14px;
    padding: 10px 0 10px 16px;
  }
  .policy-text-overlay {
    padding: 30px 24px;
  }
  .overlay-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .overlay-text {
    font-size: 13px;
    line-height: 1.8;
  }
  /* SERVICEセクション */
  .service-section {
    padding: 60px 0;
  }
  .service-section .inner {
    padding: 0 20px;
  }
  .service-description {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-icon {
    height: 160px;
    margin-bottom: 20px;
  }
  .service-icon img {
    width: 60px;
    height: 60px;
  }
  .service-card-title {
    font-size: 17px;
    margin-bottom: 12px;
  }
  .service-card-text {
    font-size: 13px;
    line-height: 1.7;
  }
  /* SOLUTIONセクション */
  .solution-section {
    padding: 60px 0;
  }
  .solution-section .inner {
    padding: 0 20px;
  }
  .solution-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .solution-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .solution-list li a {
    font-size: 15px;
    padding: 14px 0;
  }
  .solution-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .solution-card {
    aspect-ratio: 16/10;
  }
  .solution-card-overlay {
    padding: 24px;
  }
  .solution-card-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .solution-card-link {
    font-size: 13px;
    padding: 6px 14px;
  }
}
/* ========================================
   レスポンシブデザイン（375px - スマートフォン標準）
   ======================================== */
@media (max-width: 375px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-text-main {
    font-size: 14px;
  }
  .anap-logo-text {
    font-size: 36px;
  }
  .section-title {
    font-size: 28px;
  }
  .news-box-title {
    font-size: 24px;
  }
  .news-box-link {
    font-size: 16px;
  }
}
/* ========================================
   トピックスカルーセルセクション
   ======================================== */
.topics-carousel-section-inline {
  margin: 40px 0;
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  box-sizing: border-box;
}
.topics-carousel-section-inline:before, .topics-carousel-section-inline:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  border-top: 1px solid black;
  z-index: 0;
}
.topics-carousel-section-inline:before {
  top: 0;
}
.topics-carousel-section-inline:after {
  bottom: 0;
}

.topics-carousel-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.topics-carousel-container:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 25px;
  width: 100vw;
  border-top: 1px solid black;
  z-index: 0;
}

.topics-carousel {
  display: flex;
  gap: 16px;
  will-change: transform;
  width: max-content;
}

.topics-carousel-container .topics-carousel-link {
  width: 212px;
  height: 134px;
  padding: 9px 35px;
  border: 1px solid black;
  position: absolute;
  left: 8%;
  background-color: var(--color-gray-light);
  z-index: 2;
  font-size: 16px;
}

.topics-carousel-container .topics-carousel-link .lead {
  font-size: 36px;
}

.topics-carousel-container .topics-carousel-link .link {
  position: absolute;
  bottom: 12px;
}

.topics-carousel-container .topics-carousel-link .link img {
  width: 24px;
  height: 24px;
}

.topics-carousel .topic-card {
  min-width: 240px;
  max-width: 240px;
  background-color: var(--color-white);
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  border-radius: 0;
  padding: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.topics-carousel .topic-card:hover {
  transform: translateY(-4px);
  border-color: #999;
}

.topics-carousel .topic-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  /*margin-bottom: 12px;*/
  border-bottom: 1px solid #000000;
  height: 24px;
}

.topics-carousel .topic-label.red {
  background-color: var(--color-red);
}

.topics-carousel .topic-label.blue {
  background-color: var(--color-blue);
}

.topics-carousel .topic-label.purple {
  background-color: var(--color-purple);
}

.topics-carousel .topic-label.orange {
  background-color: var(--color-bitcoin);
}

.topics-carousel .topic-label.green {
  background-color: var(--color-green);
}

.topics-carousel .topic-title {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  max-height: 48px;
  padding: 0 16px;
}

.topics-carousel .topic-title a {
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.topics-carousel .topic-title a:hover {
  color: var(--color-bitcoin);
}

.topics-carousel .topic-date {
  padding: 0 16px 12px;
  font-size: 14px;
  font-weight: 900;
  color: #666;
  font-family: var(--font-roboto);
}

/* ANAP HOLDINGSロゴ横並びバナー */
.anap-logo-banner {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  overflow: hidden;
  padding: 30px 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.anap-logo-scroll {
  display: flex;
  gap: 16px;
  align-items: center;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.anap-logo-scroll-row1 {
  animation: scroll-left 30s linear infinite;
}

.anap-logo-scroll-row2 {
  animation: scroll-right 30s linear infinite;
}

.anap-logo-scroll img {
  height: 127px;
  width: auto;
  opacity: 0.8;
  flex-shrink: 0;
}

.section-policy {
  position: relative;
  width: 100vw;
  display: flex;
  background-color: var(--color-gray-light);
  justify-content: center;
}
.section-policy > img {
  max-height: 800px;
}
@media (max-width: 768px) {
  .section-policy > img {
    width: 100%;
    max-height: none;
  }
}
.section-policy:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100vw;
  border-top: 1px solid black;
  z-index: 0;
}
.section-policy:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100vw;
  border-bottom: 1px solid black;
  z-index: 0;
}

.section-divider {
  position: relative;
  width: 100vw;
  display: flex;
  background-color: var(--color-gray-light);
  justify-content: center;
}
.section-divider > img {
  max-height: 80px;
}

.section-solution {
  position: relative;
  width: 100vw;
  display: flex;
  background-color: var(--color-gray-light);
  justify-content: center;
}
.section-solution:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100vw;
  border-top: 1px solid black;
  z-index: 0;
}
.section-solution:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100vw;
  border-bottom: 1px solid black;
  z-index: 0;
}
.section-solution .section-solution-container {
  max-width: 96.65%;
}
.section-solution .solution-container {
  width: 100%;
  max-width: 1392px;
  border-left: 1px solid black;
  border-right: 1px solid black;
}
.section-solution .solution-container .heading {
  padding: 24px;
  border-bottom: 1px solid black;
}
.section-solution .solution-container .heading h3 {
  font-family: var(--font-futura);
  font-size: 60px;
  line-height: 60px;
  font-weight: 500;
  color: var(--color-black);
  letter-spacing: 0.5px;
  text-align: left;
}
.section-solution .solution-container .label {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid black;
}
.section-solution .solution-container .label .label-title {
  font-family: var(--font-noto);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
}
.section-solution .solution-container .label .solution-navigation {
  display: flex;
  gap: 8px;
}
.section-solution .solution-container .label .solution-navigation > div {
  background-color: #000000;
  cursor: pointer;
}
.section-solution .solution-container .label .solution-navigation > div svg {
  color: #FFFFFF;
}
.section-solution .solution-container .solution-slider {
  padding: 24px;
}
.section-solution .solution-container .solution-slider .swiper-slide p {
  font-family: var(--font-noto);
  padding-top: 12px;
  font-size: 18px;
  font-weight: 700;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .topics-carousel-section-inline {
    padding: 0 20px;
  }
  .topics-carousel .topic-card {
    min-width: 280px;
    max-width: 280px;
    padding: 20px;
  }
  .topics-carousel .topic-title {
    font-size: 14px;
    min-height: 65px;
  }
  .anap-logo-scroll img {
    height: 100%;
  }
}
.main_content.page-index {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 !important;
}

/* ====================================================
reset style
==================================================== */
html {
  overflow-y: scroll;
  font-size: 10px;
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

img {
  vertical-align: middle;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input,
textarea,
select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

del,
ins {
  text-decoration: none;
}

main {
  display: block;
}

/* ====================================================
Font
==================================================== */
/* ====================================================
Position & transform
==================================================== */
/* ====================================================
Color
==================================================== */
/* ====================================================
Sizing
==================================================== */
/* ====================================================
Misc
==================================================== */
/* ====================================================
Media Quary
==================================================== */
/* ====================================================
Base style & container
==================================================== */
body {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna";
  line-height: 1.4;
  color: #3d3d3d;
}

body.fix {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  a {
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
img {
  max-width: 100%;
}

.inner,
.inner-860 {
  max-width: 1140px;
  margin: auto;
  padding: 0px 20px;
}

.inner-1440 {
  max-width: 1400px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 374px) {
  .sp-374 {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
}

#main-header .header {
  padding: 20px 50px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  #main-header .header {
    padding: 20px;
    border-bottom: none;
  }
}
#main-header .header .logo_wrap {
  width: 171px;
}

@media screen and (max-width: 1100px) {
  #main-header .header .logo_wrap {
    width: 150px;
  }
}
@media screen and (max-width: 850px) {
  #main-header .header .logo_wrap {
    width: 120px;
  }
}
@media screen and (max-width: 768px) {
  #main-header .header .logo_wrap {
    width: 86px;
    margin: auto;
  }
  #main-header .header .logo_wrap .shopping-cart {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 21px;
    right: 80px;
  }
}
#main-header .header .nav_wrap {
  width: calc(100% - 171px);
}

@media screen and (max-width: 1100px) {
  #main-header .header .nav_wrap {
    width: calc(100% - 150px);
  }
}
@media screen and (max-width: 850px) {
  #main-header .header .nav_wrap {
    width: calc(100% - 120px);
  }
}
@media screen and (max-width: 768px) {
  #main-header .header .nav_wrap {
    background: #ffffff;
    position: absolute;
    top: 100%;
    height: 100vh;
    padding-bottom: 80px;
    overflow-x: hidden;
    left: 0;
    width: 100%;
    border-top: 1px solid #dddddd;
    padding-top: 0;
    display: none;
  }
}
#main-header .header .nav_wrap .navGlobalIn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#main-header .header .nav_wrap .navGlobalIn .i18n-switch {
  padding: 0;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background-color: #000000;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #main-header .header .nav_wrap .navGlobalIn {
    display: block;
  }
}
#main-header .header .nav_wrap .navGlobalIn li {
  padding: 0px 14px;
  cursor: pointer;
  position: relative;
}

@media screen and (max-width: 1100px) {
  #main-header .header .nav_wrap .navGlobalIn li {
    padding: 0 6px;
  }
}
@media screen and (max-width: 768px) {
  #main-header .header .nav_wrap .navGlobalIn li {
    position: relative;
  }
  #main-header .header .nav_wrap .navGlobalIn li .submenu-button {
    display: block;
    width: 64px;
    height: 70px;
    top: 0;
    right: 0;
    position: absolute;
    background: url(images/ico-plus.png) no-repeat center center;
    background-size: 13px 13px;
    cursor: pointer;
  }
}
#main-header .header .nav_wrap .navGlobalIn li > a {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 40px 2px;
  border-bottom: solid 2px transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1100px) {
  #main-header .header .nav_wrap .navGlobalIn li > a {
    font-size: 11px;
    font-size: 1.1rem;
    letter-spacing: 0;
    padding: 30px 1px;
  }
}
@media screen and (max-width: 768px) {
  #main-header .header .nav_wrap .navGlobalIn li > a {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 25px 0px;
    border-bottom: solid 1px #dddddd;
  }
}
#main-header .header .nav_wrap .navGlobalIn li > a img {
  margin-top: -5px;
}

@media screen and (max-width: 768px) {
  #main-header .header .nav_wrap .navGlobalIn li > a img {
    margin-top: -2px;
    margin-left: 5px;
  }
}
#main-header .header .nav_wrap .navGlobalIn li .btn_style01 {
  padding: 0;
}

@media screen and (min-width: 769px) {
  #main-header .header .nav_wrap .navGlobalIn li:hover > a {
    border-bottom: solid 2px #e3426e;
  }
  #main-header .header .nav_wrap .navGlobalIn li:hover .mega {
    display: block;
  }
}
#main-header .header .nav_wrap .navGlobalIn li:last-child {
  padding-right: 0;
}

#main-header .header .nav_wrap .navGlobalIn li:last-child a {
  margin-left: 3px;
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 1100px) {
  #main-header .header .nav_wrap .navGlobalIn li:last-child a {
    width: auto;
    margin-left: 0;
  }
}
#main-header .header .nav_wrap .navGlobalIn li .mega {
  background: #ffffff;
  display: none;
  z-index: 10;
  -webkit-box-shadow: 0 4px 5px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 5px -1px rgba(0, 0, 0, 0.2);
  width: 200px;
  position: absolute;
  left: 0;
  border: 0;
  transform: translateY(-1px);
}

@media screen and (max-width: 1100px) {
  #main-header .header .nav_wrap .navGlobalIn li .mega {
    top: 76px;
  }
}
@media screen and (max-width: 768px) {
  #main-header .header .nav_wrap .navGlobalIn li .mega {
    position: static;
    top: auto;
    left: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
#main-header .header .nav_wrap .navGlobalIn li .mega ul {
  padding: 40px 0;
  margin-left: -35px;
  margin-right: -35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1100px) {
  #main-header .header .nav_wrap .navGlobalIn li .mega ul {
    padding: 30px 0;
  }
}
#main-header .header .nav_wrap .navGlobalIn li .mega ul li {
  padding: 0 35px;
}

@media screen and (max-width: 1100px) {
  #main-header .header .nav_wrap .navGlobalIn li .mega ul li {
    padding: 0 15px;
  }
}
#main-header .header .nav_wrap .navGlobalIn li .mega ul li a {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2.3;
  padding: 0;
  border-bottom: 0;
  width: auto;
}

@media screen and (max-width: 768px) {
  #main-header .header .nav_wrap .navGlobalIn li .mega ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
  }
  #main-header .header .nav_wrap .navGlobalIn li .mega ul li {
    width: 100%;
  }
  #main-header .header .nav_wrap .navGlobalIn li .mega ul li a {
    background: #eeeeee;
    border-bottom: solid 1px #fff;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 11px 0;
  }
  #main-header .header .nav_wrap .navGlobalIn li .mega ul li:last-child a {
    border-bottom: solid 1px #ddd;
  }
}
#main-header .menuBar {
  display: none;
}

@media screen and (max-width: 768px) {
  #main-header .menuBar {
    z-index: 99;
    position: absolute;
    top: 5px;
    left: 10px;
    display: block !important;
    height: 60px;
    width: 60px;
    border-left: none;
  }
  #main-header .menuBar span {
    height: 2px;
    display: block;
    width: 32px;
    border-radius: 4px;
    background: #000;
    position: absolute;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    right: 17px;
  }
  #main-header .menuBar span:nth-child(1) {
    top: 24px;
  }
  #main-header .menuBar span:nth-child(2) {
    top: 32px;
  }
  #main-header .menuBar.on {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  #main-header .menuBar.on span:nth-child(1) {
    top: 30px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #main-header .menuBar.on span:nth-child(2) {
    top: 30px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 1;
  }
}
#main-footer {
  position: relative;
  background: #eeeeee;
  padding: 94px 0px 10px;
}

@media screen and (max-width: 768px) {
  #main-footer {
    padding: 25px 0px 5px;
  }
}
#main-footer .coppyRight {
  text-align: center;
  color: #999999;
  font-size: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  margin-top: 95px;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  #main-footer .coppyRight {
    font-size: 10px;
    font-size: 1rem;
    margin-top: 35px;
  }
}
#main-footer .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #main-footer .footer {
    display: block;
  }
}
#main-footer .footer .footer-l {
  width: 244px;
}

@media screen and (max-width: 768px) {
  #main-footer .footer .footer-l {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
#main-footer .footer .footer-l .logoF {
  display: block;
  margin-bottom: 45px;
  width: 235px;
}

@media screen and (max-width: 768px) {
  #main-footer .footer .footer-l .logoF {
    width: 100%;
    text-align: center;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 22px;
    padding-top: 35px;
    border-top: 1px solid #dcdcdc;
    margin-bottom: 0;
  }
  #main-footer .footer .footer-l .logoF img {
    max-width: 141px;
    margin: auto;
  }
}
#main-footer .footer .footer-l p {
  color: #666666;
  font-weight: 900;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  #main-footer .footer .footer-l p {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 10px;
    font-size: 1rem;
  }
}
#main-footer .footer .footer-l .list_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 23px -10px 0px;
}

@media screen and (max-width: 768px) {
  #main-footer .footer .footer-l .list_sns {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 0 5px 0px;
  }
}
#main-footer .footer .footer-l .list_sns li {
  padding: 0px 10px;
}

@media screen and (max-width: 768px) {
  #main-footer .footer .footer-l .list_sns li {
    padding: 0px 5px;
  }
}
#main-footer .footer .footer-l .list_sns li img {
  width: 46px;
}

@media screen and (max-width: 768px) {
  #main-footer .footer .footer-l .list_sns li img {
    width: 30px;
  }
}
/* #main-footer .footer .footer-r {
   width: calc(100% - 244px);
   padding-left: 16%;
} */
@media screen and (max-width: 1200px) {
  #main-footer .footer .footer-r {
    padding-left: 15%;
  }
}
@media screen and (max-width: 1000px) {
  #main-footer .footer .footer-r {
    padding-left: 5%;
  }
}
@media screen and (max-width: 768px) {
  #main-footer .footer .footer-r {
    /*      display: none; */
  }
}
#main-footer .footer .footer-r .listF {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-top: 6px;
}

#main-footer .footer .footer-r .listF .item:nth-child(1) {
  width: 25%;
}

#main-footer .footer .footer-r .listF .item:nth-child(2) {
  width: 50%;
}

@media screen and (max-width: 1200px) {
  #main-footer .footer .footer-r .listF .item {
    padding: 0px 15px !important;
    width: 33.33%;
  }
}
@media screen and (max-width: 990px) {
  #main-footer .footer .footer-r .listF .item {
    padding: 0px 10px !important;
  }
}
@media screen and (max-width: 768px) {
  #main-footer .footer .footer-r .listF .item {
    padding: 0 !important;
  }
}
#main-footer .footer .footer-r .listF .item:nth-of-type(2) a {
  margin-bottom: 15px;
}

#main-footer .footer .footer-r .listF .item:nth-of-type(2) .listF-sub {
  padding-left: 28px;
}

@media screen and (max-width: 990px) {
  #main-footer .footer .footer-r .listF .item:nth-of-type(2) .listF-sub {
    padding-left: 14px;
  }
}
#main-footer .footer .footer-r .listF .item:nth-child(3) {
  padding-left: 0;
  width: 25%;
}

@media screen and (max-width: 1200px) {
  #main-footer .footer .footer-r .listF .item:nth-child(3) {
    width: 33.33%;
    padding-left: 0;
  }
}
@media screen and (min-width: 769px) {
  #main-footer .footer .footer-r .listF .item:nth-child(3) a {
    margin-bottom: 15px;
  }
}
#main-footer .footer .footer-r .listF .item a {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #3d3d3d;
}

@media screen and (max-width: 990px) {
  #main-footer .footer .footer-r .listF .item a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
#main-footer .footer .footer-r .listF .item a img {
  margin-top: -3px;
  margin-left: 4px;
}

#main-footer .footer .footer-r .listF .item .listF-sub {
  padding-left: 14px;
}

.list-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  padding: 90px 0 85px 0;
}

.list-menu .item {
  width: 33.33%;
  padding: 0 15px;
}

.list-menu .item a {
  display: block;
}

.list-menu .item a:hover {
  opacity: 0.6;
}

.list-menu .item img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.list-menu .item .ttl {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2.3;
}

.backTop {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 100px;
  bottom: 10%;
  z-index: 10;
  background: #c4c4c4;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .backTop {
    width: 30px;
    height: 30px;
    bottom: 10%;
    right: 10px;
  }
}
.backTop i {
  color: #fff;
  font-size: 25px;
  font-size: 2.5rem;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .backTop i {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .backTop {
    bottom: 30px;
  }
}
/*
#overview
モジュールスタイルガイド

これはサイト全体に適用されるモジュールのパーツ群です。
必ずこちらのパーツを使用してコーディングするようにお願いします。
*/
/*
#colors
@背景色 #996600
@文字色 #333
@リンク #ccc
*/
/*
#styleguide
パンくずモジュール

パンくずのモジュールです。

@depulicated
@非推奨
@todo
@common

```
<div class="breadcrumb">
<a href='/'>トップページ</a> <i class='fa fa-angle-right' aria-hidden='true'></i> <span>ページ1</span>
</div>

```

*/
/*
#styleguide
見出しモジュール　識別子はttl

見出しモジュールは、セクションごとの見出しとなる要素（HTML5の分類で、「ヘッディングコンテンツ(Heading Content)」となるh1やh2などの要素、見出しとみなすことが出来そうなp要素の事です。
クラス名として識別子、「 ttl 」をつけて管理します。

```
<h1 class="ttlCom01"><span class="ttlCom01In">見出しモジュール</span></h1>
<h2 class="ttlCom02">見出しモジュール</h2>
<h3 class="ttlCom03">見出しモジュール</h3>

```

*/
/*
#styleguide
テキストモジュール　識別子はtxt

テキストモジュールは、p要素やテキストに該当するspan要素などのコンテンツ内の本文のことです。
基本的に、サイト内のテキストはテキストモジュールに該当します。クラス名として識別子「txt」をつけます。

```
<p class="txtBasic">テキストモジュール、識別子は～</p>

```

*/
/*
#styleguide
リンクモジュール　識別子はlink

リンクモジュールは、基本的にa要素のようにリンクが関係するモジュールの事です。クラス名として識別子「link」をつけます。
通常は、テキスト内にリンクが存在する場合にモジュールとして分ける事が多いです。

```
<a href="" class="linkCmn">OOCSS</a>

```

*/
/*
#styleguide
ボタンモジュール　識別子はbtn

ボタンモジュールは、見た目や役割がボタン上の要素の事です。クラス名をつける要素は特に指定はありませんが、button要素やa要素、a要素を囲むdiv要素に付与するパターンが多いです。
クラス名として識別子「btn」をつけます。

```
<div class="btn btnRed">ボタン</div>
<br>
<div class="btn btnBlue">ボタン</div>

```

*/
/*
#styleguide
リストモジュール　識別子はlist

リストモジュールは、リスト状の同じものが連続して並ぶものが該当します。基本的には、ul、ol、dl要素の様な明確にリスト分けされるものが該当しますが、div要素でも構いません。クラス名として識別子「list」をつけます。
また、クラス名を付与する場所はリストの親要素、つまり連続するリストの子要素がliだとすると、ul要素やol要素に識別子「list」を付与したクラス名をつけます。

```
<ul class="listOption">
   <li class="item">HTML</li>
   <li class="item">CSS</li>
   <li class="item">JavaScript</li>
</ul>

```

*/
/*
#styleguide
ボックスモジュール　識別子はbox

ボックスモジュールは、ボックス状のものが該当します。基本的には見出しやテキストなどの要素を含み込むボーダー付きの箱をボックスモジュールとしてみなします。クラス名として識別子「box」をつけます。

```
<div class="boxReading">
   <h2 class="ttlCom01">ボックスモジュールとは</h2>
      <p class="txtCom01">モジュールコーディングという考え方～</p>
      <a href="" class="linkCom01">続きを読む</a>
</div>

```

*/
/*
#styleguide
グリッドモジュール　識別子はgrid（子要素にはcol)

2カラムや3カラムなど、カラム分けするレイアウトのモジュールが該当します。識別子「grid」を付与します。
子要素には「col」を付与します。基本的に、親に「gridXXX」というメインクラスを付与して、「column-2」や「column-3」などカラム数と対応する数字込みのサブクラスを付与します。

```

<div class="gridCom column-3">
   <div class="col">
      <img class="imageCodingDetail" src="img/XXX.jpg">
   <h2 class="ttlCodingDetail">コーディングの秘訣その1</h2>
   <p class="txtCodingDetail">モジュールコーディングという考え方は～</p>
   </div>
   <div class="col">
      <img class="imageCodingDetail" src="img/XXX.jpg">
   <h2 class="ttlCodingDetail">コーディングの秘訣その1</h2>
   <p class="txtCodingDetail">モジュールコーディングという考え方は～</p>
   </div>
   <div class="col">
      <img class="imageCodingDetail" src="img/XXX.jpg">
   <h2 class="ttlCodingDetail">コーディングの秘訣その1</h2>
   <p class="txtCodingDetail">モジュールコーディングという考え方は～</p>
   </div>
</div>


```

*/
/*
#styleguide
FORMモジュール　

フォーム用の部品になります。

```

<form actione="">
<dl>
   <dt>テキスト</dt>
   <dd><input type="text" name="" value=""></dd>
   <dt>パスワード</dt>
   <dd><input type="password" name="passwd" value=""></dd>
   <dt>ラジオボタン</dt>
   <dd><input type="radio" name="" value="" checked="checked" />テスト1
   <input type="radio" name="" value="" />テスト2
   <input type="radio" name="" value="" />テスト3</dd>
   <dt>チェックボックス</dt>
   <dd><input type="checkbox" name="" value="" checked="checked" />テスト1
   <input type="checkbox" name="" value="" />テスト2
   <input type="checkbox" name="" value="" checked="checked" />テスト3</dd>
   <dt>プルダウン</dt>
   <dd><select name="">
   <option value="" selected="selected">テスト1</option>
   <option value="">テスト2</option>
   <option value="">テスト3</option>
   </select></dd>
   <dt>テキストエリア</dt>
   <dd><textarea name="" rows="5" cols="20">テキストエリア</textarea></dd>
</dl>
<div>
   <input type="button" name="btn1" value="汎用ボタン">
   <input type="reset" name="btn2" value="リセット" >
   <input type="submit" name="btn3" value="送信" >
</div>
</form>


```

*/
/* ====================================================
MODULE
==================================================== */
/*パンくずMODULE*/
/*見出しMODULE*/
.ttl_style01 {
  text-align: center;
  line-height: 1;
  color: #666666;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 104px;
  letter-spacing: 3px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .ttl_style01 {
    font-size: 11px;
    font-size: 1.1rem;
    margin-bottom: 35px;
  }
}
.ttl_style01 span {
  font-weight: 900;
  font-size: 44px;
  font-size: 4.4rem;
  display: block;
  margin: 0px auto 20px;
  font-family: "Lato", sans-serif;
  letter-spacing: 4px;
}

@media screen and (max-width: 768px) {
  .ttl_style01 span {
    font-size: 30px;
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
}
.ttl_style02 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  color: #666666;
  font-weight: bold;
  padding: 27px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #c4c4c4;
}

@media screen and (max-width: 1000px) {
  .ttl_style02 {
    padding: 27px 15px;
  }
}
@media screen and (max-width: 768px) {
  .ttl_style02 {
    padding: 25px 20px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.ttl_style02 .btn_style02:before {
  top: 6px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ttl_style02 .btn_style02:before {
    top: 8px;
  }
}
/*テキストMODULE*/
.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left;
}

/*リンクMODULE*/
/*ボタンMODULE*/
.btn_style01 {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  width: 195px;
  height: 50px;
  background: #c4c4c4;
}

.btn_style01 img {
  margin-left: 10px;
}

.btn_style01.w100 {
  width: 100%;
}

.btn_style02 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  position: relative;
  padding-left: 21px;
}

.btn_style02:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 12px;
  left: 0;
  top: 4px;
  background: url("images/ico-arr-r.png") no-repeat;
  background-size: cover;
  background-position: left center;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .btn_style02:before {
    top: 5px;
  }
}
.btn_style02 img {
  position: relative;
  top: -1px;
  margin-left: 5px;
}

@media screen and (max-width: 768px) {
  .btn_style02 {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .btn_style02 img {
    top: 0;
  }
}
.btn_style03 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}

.btn_style03 img {
  position: relative;
  top: -1px;
  margin-left: 5px;
}

@media screen and (max-width: 768px) {
  .btn_style03 {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .btn_style03 img {
    top: 0;
  }
}
/*リストMODULE*/
.list {
  padding: 25px 33px;
}

@media screen and (max-width: 768px) {
  .list {
    padding: 20px 20px;
  }
}
.list li {
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

@media screen and (max-width: 1000px) {
  .list {
    padding: 25px 15px;
  }
}
@media screen and (max-width: 800px) {
  .list .btn_style01 {
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .list .btn_style01 {
    height: 50px;
  }
}
.list_news .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .list_news .item a {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.list_news .item a .date {
  color: #3d3d3d;
  letter-spacing: 1px;
}

.list_news .item a .cat {
  min-width: 60px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0px 15px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffffff;
  margin-top: 5px;
}

.list_news .item a .cat.purple {
  background: #ed0084;
}

.list_news .item a .cat.green {
  background: #05b995;
}

.list_news .item a .cat.blue {
  background: #0049ac;
}

.list_news .item a .cat.lightBlue {
  background: #369ee3;
}

@media screen and (max-width: 768px) {
  .list_news .item a .cat {
    font-size: 11px;
    font-size: 1.1rem;
    margin-top: 3px;
  }
}
@media screen and (max-width: 768px) {
  .list_news .item a p {
    width: 100%;
    margin-top: 5px;
  }
}
.list_news .item a p img {
  width: 14px;
  margin-left: 5px;
  position: relative;
  top: -2px;
}

.list_style01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .list_style01 {
    display: block;
  }
}
.list_style01 .list_item {
  margin-bottom: 40px;
  margin-right: 40px;
  background: #ffffff;
  width: calc(33.33% - 26.67px);
}

.list_style01 .list_item:nth-child(3n+2) {
  margin-right: 0;
}

.list_style01 .list_item:nth-child(1) {
  width: calc(67.2% - 20px);
  margin-right: 40px;
}

.list_style01 .list_item:nth-child(2) {
  width: calc(32.8% - 20px);
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .list_style01 .list_item {
    width: 100% !important;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/*ボックスMODULE*/
.box_news {
  background: #ffffff;
}

/*グリッドMODULE*/
/*フォームMODULE*/
.main_content {
  background: #f3f4f5;
  margin: 0px 30px 30px;
  padding-top: 215px;
}

@media (max-width: 1100px) {
  .main_content {
    padding-top: 126px;
  }
}
@media screen and (max-width: 768px) {
  .main_content {
    margin: 0 0 30px;
    padding-top: 100px;
  }
}
.main_content-page {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .main_content-page {
    margin: 0 0 30px;
    padding-top: 100px;
  }
}
.page-index {
  /*padding-top: 30px !important;*/
}

@media (max-width: 1100px) {
  .page-index {
    padding-top: 30px !important;
  }
}
@media screen and (max-width: 768px) {
  .page-index {
    padding-top: 20px !important;
  }
}
.ico-link {
  width: 13px;
}

.ico-pdf {
  width: 14px;
}

.information {
  background: #fff;
  padding-top: 96px;
  padding-bottom: 95px;
}

@media screen and (max-width: 768px) {
  .information {
    padding-top: 55px;
    padding-bottom: 50px;
  }
}
.information .ttl-information {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  color: #666666;
  text-align: center;
  font-weight: 900;
  margin-bottom: 58px;
  letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
  .information .ttl-information {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 35px;
    letter-spacing: 1px;
  }
}
.information .list-link-information ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -30px;
}

.information .list-link-information ul li {
  width: calc((100% - 80px) / 3);
  margin-right: 40px;
  margin-bottom: 30px;
}

@supports (-ms-ime-align: auto) {
  .information .list-link-information ul li {
    width: calc((100% - 81px) / 3);
  }
}
@media screen and (max-width: 768px) {
  .information .list-link-information ul li {
    width: calc((100% - 15px) / 2);
    margin-bottom: 11px;
    margin-right: 15px;
  }
}
.information .list-link-information ul li:nth-child(3n+3) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .information .list-link-information ul li:nth-child(3n+3) {
    margin-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .information .list-link-information ul li:nth-child(2n+2) {
    margin-right: 0;
  }
}
.information .list-link-information ul li a {
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  display: block;
  background: #eee;
  padding: 25px;
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 768px) {
  .information .list-link-information ul li a {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 15px 12px;
  }
}
.information .list-link-information ul li a:after {
  content: "";
  display: block;
  background: url(images/w_arr.png) no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
}

@media screen and (max-width: 768px) {
  .information .list-link-information ul li a:after {
    right: 5px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.information-02 {
  padding-top: 113px;
  padding-bottom: 82px;
}

@media screen and (max-width: 768px) {
  .information-02 {
    padding-top: 47px;
    padding-bottom: 43px;
  }
}
.information-02 .ttl-information {
  letter-spacing: 2.3px;
}

@media screen and (max-width: 768px) {
  .information-02 .ttl-information {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 35px;
    letter-spacing: 1px;
  }
}
.information-02 .list-link-information {
  max-width: 710px;
  margin: 0 auto;
}

.information-02 .list-link-information ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -30px;
}

.information-02 .list-link-information ul li {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
  margin-bottom: 30px;
}

@supports (-ms-ime-align: auto) {
  .information-02 .list-link-information ul li {
    width: calc((100% - 61px) / 2);
  }
}
.information-02 .list-link-information ul li:nth-child(2n+2) {
  margin-right: 0;
}

.information-02 .list-link-information ul li:nth-child(3) {
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .information-02 .list-link-information ul li:nth-child(3) {
    margin-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .information-02 .list-link-information ul li a {
    padding: 16.5px 12px;
  }
}
@media screen and (max-width: 768px) {
  .information-02 .list-link-information ul li {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .sec_company-message .inner.p-20,
  .sec_company-message .p-20.inner-860 {
    padding: 0 20px;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.sec_ir {
  padding: 0px 0px 110px;
}

@media screen and (max-width: 990px) {
  .sec_ir {
    padding: 0px 0px 30px;
  }
}
.sec_ir .btn_style01 {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .sec_ir .btn_style01 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_ir {
    padding-bottom: 10px;
  }
}
@-webkit-keyframes flow {
  from {
    top: 20px;
  }
  to {
    top: 100px;
  }
}
@keyframes flow {
  from {
    top: 20px;
  }
  to {
    top: 100px;
  }
}
@-webkit-keyframes flow2 {
  from {
    top: 20px;
  }
  to {
    top: 130%;
  }
}
@keyframes flow2 {
  from {
    top: 20px;
  }
  to {
    top: 130%;
  }
}
.btn-scrool {
  bottom: 21px;
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .btn-scrool {
    bottom: 11px;
  }
}
.scroll {
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-block;
  padding-bottom: 40px;
  height: 60px;
  overflow: hidden;
  color: #fff;
  font-family: "Lato", sans-serif;
}

@media screen and (max-width: 768px) {
  .scroll {
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: 1px;
  }
}
.scroll b {
  position: absolute;
  height: 30px;
  width: 1px;
  left: 50%;
  top: 28px;
  background: #fff;
  -webkit-animation: flow 3s infinite;
  /* Safari 4.0 - 8.0 */
  animation: flow 3s infinite;
}

@media screen and (max-width: 768px) {
  .scroll b {
    height: 30px;
    top: 20px;
    -webkit-animation: flow2 2s infinite;
    /* Safari 4.0 - 8.0 */
    animation: flow2 2s infinite;
  }
}
.main-visual {
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .main-visual {
    padding: 0;
    margin-bottom: 0;
    background: #ffffff;
  }
}
.main-visual img {
  display: block;
  width: 100%;
}

.main-visual video {
  max-height: 100vh;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

@media screen and (max-width: 768px) {
  .main-visual video {
    height: 100vh;
  }
}
.main-visual .inner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .main-visual .inner-text {
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-left: 16%;
    top: 48%;
  }
}
.main-visual .inner-text p {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 2.33;
  color: #fff;
  font-weight: 500;
  text-shadow: 1px 1px 50px #000;
  letter-spacing: 5px;
}

@media screen and (max-width: 990px) {
  .main-visual .inner-text p {
    letter-spacing: 0px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .main-visual .inner-text p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2.35;
    letter-spacing: 0;
  }
}
.sec-news {
  padding: 80px 0 62px;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .sec-news {
    padding-top: 22px;
    margin-left: 0;
    margin-right: 0;
    background: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0;
  }
  .sec-news .inner,
  .sec-news .inner-860 {
    background: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.sec-news .ttl_style01 {
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .sec-news .ttl_style01 {
    margin-bottom: 8px;
  }
}
.sec-news .list_news {
  max-width: 860px;
  margin: 0 auto 31px;
  padding-bottom: 15px;
}

.sec-news .list_news li {
  letter-spacing: 1.5px;
}

@media screen and (min-width: 769px) {
  .sec-news .list_news li {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .sec-news .list_news {
    margin: 0 0 -16px 0;
    padding: 25px 0 30px;
  }
}
.sec-news .list_news .item a .cat {
  min-width: 35px;
}

@media screen and (max-width: 768px) {
  .sec-news .list_news .item a .cat {
    height: 15px;
    line-height: 17px;
  }
}
.sec-box01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .sec-box01 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #ffffff;
    margin-bottom: 0;
    padding-bottom: 64px;
  }
}
.sec-box01 .img {
  width: 47.9166666667%;
}

@media screen and (max-width: 768px) {
  .sec-box01 .img {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 43px;
  }
}
.sec-box01 .img img {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.sec-box01 .content {
  width: 52.0833333333%;
  padding-left: 83px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

@media screen and (max-width: 990px) {
  .sec-box01 .content {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .sec-box01 .content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sec-box01 .content .ttl_style01 {
  width: 100%;
  margin-bottom: 60px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .sec-box01 .content .ttl_style01 {
    margin-bottom: 38px;
  }
}
.sec-box01 .content .txtBase {
  margin-bottom: 20px;
  width: 100%;
}

.sec-box01 .content .btn_type01 {
  margin-left: 0;
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .sec-box01 .content .btn_type01 {
    width: 100%;
    max-width: 100%;
  }
}
.sec-box01.style02 {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .sec-box01.style02 {
    padding-top: 82px;
    background: #ffffff;
    margin-bottom: 0;
    padding-bottom: 84px;
  }
}
.sec-box01.style02 .img {
  width: calc(37.5% + 200px);
  margin-left: -200px;
  padding-top: 85px;
}

@media screen and (max-width: 1200px) {
  .sec-box01.style02 .img {
    margin-left: -50px;
    width: calc(37.5% + 50px);
  }
  .sec-box01.style02 .img img {
    min-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
  }
}
@media screen and (max-width: 768px) {
  .sec-box01.style02 .img {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-top: 0;
    padding-left: 45px;
    padding-right: 0;
    margin-left: 0;
    margin-top: -131px;
    margin-bottom: 0;
    text-align: right;
  }
  .sec-box01.style02 .img img {
    min-height: 1px;
  }
}
.sec-box01.style02 .content {
  background: #f3f4f5;
  width: 62.5%;
  padding-top: 85px;
  padding-bottom: 85px;
  padding-left: 22%;
}

@media screen and (max-width: 1600px) {
  .sec-box01.style02 .content {
    padding-left: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .sec-box01.style02 .content {
    padding-left: 5%;
    padding-right: 70px;
  }
}
@media screen and (max-width: 768px) {
  .sec-box01.style02 .content {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-bottom: 175px;
    padding-top: 60px;
  }
}
.sec-box01.style02 .content .ttl_style01 {
  margin-bottom: 30px;
}

.sec-box01.style02 .content .txtBase {
  line-height: 2;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .sec-box01.style02 .content .txtBase {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  .sec-box01.style02 .content .btn_type01 {
    max-width: 72%;
  }
}
.txt-des {
  color: #666666;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.29;
  margin-bottom: 30px;
}

.txt-des span {
  font-size: 32px;
  font-size: 3.2rem;
}

@media screen and (max-width: 768px) {
  .txt-des {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .txt-des span {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
.sec-box02 {
  margin-bottom: 110px;
  position: relative;
}

.sec-box02 .inner,
.sec-box02 .inner-860 {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sec-box02 {
    background: #fff;
    margin-bottom: 0;
    padding-bottom: 104px;
  }
  .sec-box02 .inner,
  .sec-box02 .inner-860 {
    position: relative;
    padding: 0;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 2;
    background: url(images/bg-01-sp.png) no-repeat;
    background-size: cover;
  }
}
.sec-box02:before {
  content: "";
  position: absolute;
  height: calc(100% - 74px);
  width: 100%;
  left: 0;
  top: 37px;
  background: url(images/bg-01.png) no-repeat;
  background-size: cover;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .sec-box02:before {
    top: 0;
    height: 100%;
    display: none;
    background-size: cover;
    z-index: 1;
  }
}
.sec-box02 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .sec-box02 .wrap {
    padding: 62px 20px 20px;
  }
}
.sec-box02 .img {
  width: 39.0909090909%;
}

@media screen and (max-width: 768px) {
  .sec-box02 .img {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-left: 47px;
    margin-bottom: -50px;
    text-align: right;
  }
}
.sec-box02 .content {
  width: 60.9090909091%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

@media screen and (max-width: 768px) {
  .sec-box02 .content {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 64px;
  }
}
.sec-box02 .content .ttl_style01 {
  width: 100%;
  margin-bottom: 36px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .sec-box02 .content .ttl_style01 {
    margin-bottom: 32px;
  }
}
.sec-box02 .content .txt-des {
  width: 100%;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .sec-box02 .content .txt-des {
    margin-bottom: 36px;
  }
}
.sec-box02 .content .btn_type01 {
  margin-left: 0;
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .sec-box02 .content .btn_type01 {
    width: 72%;
  }
}
.sec-brand {
  padding: 110px 0 127px;
  background: #f3f4f5;
  margin-bottom: 140px;
}

.sec-brand .ttl_style01 {
  margin-bottom: 75px;
}

@media screen and (max-width: 768px) {
  .sec-brand {
    padding-top: 60px;
    padding-bottom: 51px;
    margin-bottom: 0;
  }
  .sec-brand .ttl_style01 {
    margin-bottom: 45px;
  }
}
.list-brand {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -40px;
}

@media screen and (max-width: 990px) {
  .list-brand {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -23px;
  }
}
@media screen and (max-width: 768px) {
  .list-brand {
    margin-bottom: -15px;
    margin-left: -8px;
    margin-right: -8px;
  }
}
.list-brand:after {
  content: "";
  display: block;
  clear: both;
}

.list-brand .item {
  float: left;
  width: 25%;
  padding: 0 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 990px) {
  .list-brand .item {
    padding: 0 10px;
    margin-bottom: 23px;
  }
}
@media screen and (max-width: 768px) {
  .list-brand .item {
    width: 33.33%;
    margin-bottom: 15px;
    padding: 0 8px;
  }
}
.list-brand .item .wrap {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .list-brand .item .wrap {
    cursor: pointer;
  }
}
.list-brand .item .wrap:hover .logo img {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .list-brand .item .wrap:hover .logo img {
    opacity: 1;
  }
}
.list-brand .item .wrap:hover .itemHover {
  opacity: 1;
}

.list-brand .item .wrap:hover .itemHover img {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .list-brand .item .wrap:hover .itemHover {
    opacity: 0;
  }
}
.list-brand .item .wrap .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  /*.list-brand .item .wrap .link {
     display: none;
  }*/
}
.list-brand .item .logo {
  width: 100%;
  height: 80px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ffffff;
  padding: 0 10px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .list-brand .item .logo {
    display: block;
    text-align: center;
    padding-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .list-brand .item .logo {
    height: 35px;
    padding: 9px 10px;
  }
  .list-brand .item .logo .pc {
    display: inline-block;
    width: 100%;
  }
  .list-brand .item .logo img {
    max-width: 100%;
    max-height: 100%;
  }
}
.list-brand .item .itemHover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 12px 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  overflow: hidden;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .list-brand .item .itemHover {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
@media screen and (max-width: 990px) {
  .list-brand .item .itemHover {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 800px) {
  .list-brand .item .itemHover {
    padding-top: 10px;
  }
}
.list-brand .item .itemHover p {
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: -1px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .list-brand .item .itemHover p {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 990px) {
  .list-brand .item .itemHover p {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.5;
  }
}
@media (max-width: 800px) {
  .list-brand .item .itemHover p {
    font-size: 10px;
    font-size: 1rem;
    max-height: 120px;
    overflow-x: hidden;
    overflow-y: auto;
  }
}
.list-brand .item .itemHover .logo {
  background: transparent;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .list-brand .item .itemHover .logo {
    position: relative;
    z-index: 2;
  }
  .list-brand .item .itemHover .logo a {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .list-brand .item .itemHover .logo a .pc {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  .list-brand .item .itemHover .logo img {
    position: relative;
    z-index: 3;
  }
}
@media (max-width: 800px) {
  .list-brand .item .itemHover .logo {
    max-height: 70px;
    padding: 0 10px;
  }
}
@media (max-width: 800px) {
  .list-brand .item .itemHover img {
    max-height: 50px;
  }
}
.list-brand .item:nth-child(1) {
  width: 50%;
}

.list-brand .item:nth-child(10) {
  clear: both;
}

@media (min-width: 769px) and (max-width: 1089px) {
  .list-brand .item:nth-child(1) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .list-brand .item:nth-child(1) {
    width: 66.66%;
  }
}
.list-brand .item:nth-child(1) .logo {
  height: 160px;
}

@media screen and (max-width: 768px) {
  .list-brand .item:nth-child(1) .logo {
    height: 70px;
    padding: 15px 10px;
  }
}
.list-brand .item:nth-child(1) .itemHover {
  padding-left: 50px;
  padding-right: 50px;
}

.list-brand .item:nth-child(1) .itemHover p {
  font-size: 13px;
  font-size: 1.3rem;
  margin-top: 145px;
  letter-spacing: -1px;
}

@media screen and (max-width: 990px) {
  .list-brand .item:nth-child(1) .itemHover p {
    margin-top: 80px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .list-brand .item:nth-child(2) {
    margin-bottom: 25px;
  }
}
@media (max-width: 380px) {
  .list-brand .item:nth-child(2) {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 768px) {
  .list-brand .item:nth-child(6) {
    margin-bottom: 16px;
  }
}
.sec-contact {
  padding: 71px 0 175px;
}

@media screen and (max-width: 768px) {
  .sec-contact {
    padding-top: 11px;
    padding-bottom: 80px;
    background: #ffffff;
  }
}
.sec-contact .wrap {
  background: #f3f4f5;
  padding: 0 30px;
}

.sec-contact .ttl_style01 {
  -webkit-transform: translateY(-26px);
  -ms-transform: translateY(-26px);
  transform: translateY(-26px);
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .sec-contact .ttl_style01 {
    -webkit-transform: translateY(-18px);
    -ms-transform: translateY(-18px);
    transform: translateY(-18px);
    margin-bottom: 1px;
  }
}
.sec-contact .txtBase {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sec-contact .txtBase {
    margin-bottom: 32px;
  }
}
.page-index {
  padding-top: 0;
  background: #ffffff;
}

.page-index .btn_type01 {
  padding: 21px 10px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
}

@media screen and (min-width: 769px) {
  .page-index .btn_type01 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .page-index .btn_type01 {
    padding: 14px 10px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .page-index .ttl_style01 span {
    font-size: 35px;
    font-size: 3.5rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  .page-index .ttl_style01 span {
    font-size: 30px;
    font-size: 3rem;
    margin-bottom: 20px;
  }
}
.page-index .sec-contact .btn_type01 {
  margin-bottom: -15px;
  width: 100%;
  max-width: 600px !important;
  font-size: 18px !important;
  padding: 32px 10px !important;
  -webkit-transform: translateY(49px);
  -ms-transform: translateY(49px);
  transform: translateY(49px);
}

@media screen and (max-width: 768px) {
  .page-index .sec-contact .btn_type01 {
    padding: 14px 10px !important;
    max-width: 250px !important;
    -webkit-transform: translateY(16px);
    -ms-transform: translateY(16px);
    transform: translateY(16px);
    font-size: 13px !important;
  }
}
.box-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: 100;
}

.box-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.box-modal .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.box-modal .wrap {
  width: 300px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 25px 36px;
  position: relative;
  margin-top: 100px;
  max-height: calc(100vh - 140px);
}

@media screen and (max-width: 321px) {
  .box-modal .wrap {
    width: 280px;
  }
}
.box-modal .wrap .content {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  overflow-x: hidden;
}

.box-modal .wrap .close {
  width: 25px;
  height: 25px;
  display: inline-block;
  top: -40px;
  right: 13px;
  position: absolute;
}

.box-modal .wrap p {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 40px;
}

.box-modal .wrap .logo a {
  display: block;
  text-align: center;
}

.box-modal .wrap .logo img {
  max-height: 40px;
}

.full {
  margin-left: -30px;
  margin-right: -30px;
}

@media screen and (max-width: 768px) {
  .full {
    margin-left: 0;
    margin-right: 0;
  }
}
.style_vh img {
  margin-left: 8px !important;
  margin-top: -4px;
}

.page-ir_information_notice .sec-information {
  padding: 0 0 115px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_notice .sec-information {
    padding: 0;
  }
}
.page-ir_information_notice .sec-information .wrap_content {
  padding-top: 120px;
  padding-bottom: 170px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .page-ir_information_notice .sec-information .wrap_content {
    padding-bottom: 25px;
    margin-bottom: 35px;
    padding-top: 25px;
  }
}
.page-ir_information_notice .sec-information .wrap_content .list_link {
  margin-bottom: 93px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_notice .sec-information .wrap_content .list_link {
    margin-bottom: 27px;
  }
}
.page-ir_information_notice .sec-information .wrap_content .ttl-note {
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  color: #666666;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_notice .sec-information .wrap_content .ttl-note {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 32px;
    text-align: center;
  }
}
.page-ir_information_notice .sec-information .wrap_content p {
  line-height: 2.1;
  font-size: 14px;
  font-size: 1.4rem;
  color: #3d3d3d;
}

@media screen and (max-width: 768px) {
  .page-ir_information_notice .sec-information .wrap_content p {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2;
  }
}
@media screen and (max-width: 360px) {
  .page-ir_information_notice .sec-information .wrap_content p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.page-ir_information_benefit .sec-information {
  padding: 0 0 115px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .sec-information {
    padding: 0;
  }
}
.page-ir_information_benefit .sec-information .wrap_content {
  padding-top: 117px;
  padding-bottom: 135px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .sec-information .wrap_content {
    padding-bottom: 25px;
    padding-top: 25px;
    margin-bottom: 35px;
  }
}
.page-ir_information_benefit .sec-information .wrap_content .list_link {
  margin-bottom: 105px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .sec-information .wrap_content .list_link {
    margin-bottom: 35px;
  }
}
.page-ir_information_benefit .sec-information .wrap_content .ttl_type01 {
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .sec-information .wrap_content .ttl_type01 {
    margin-bottom: 20px;
  }
}
.page-ir_information_benefit .txt-des {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.1;
  margin-bottom: 132px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .txt-des {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.9;
    text-align: left;
    margin-bottom: 50px;
  }
}
.page-ir_information_benefit .item {
  margin-bottom: 62px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item {
    margin-bottom: 20px;
  }
}
.page-ir_information_benefit .item .ttl_type02 {
  margin-bottom: 28px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item .ttl_type02 {
    margin-bottom: 20px;
  }
}
.page-ir_information_benefit .item p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.1;
  color: #3d3d3d;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item p {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.9;
  }
}
@media screen and (max-width: 320px) {
  .page-ir_information_benefit .item p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.page-ir_information_benefit .item a {
  display: inline-block;
  padding: 20px 26px;
  margin-top: 23px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  background: #bbbbbb;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item a {
    margin-top: 0;
    display: block;
    width: 100%;
    padding: 17px 0;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.page-ir_information_benefit .item .table table {
  width: 100%;
  border: 1px solid #ccc;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item .table table {
    margin-top: 18px;
  }
}
.page-ir_information_benefit .item .table table tr th {
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  background: #f4f4f4;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  color: #666666;
  padding: 14px 0;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item .table table tr th {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 11px 0;
  }
}
.page-ir_information_benefit .item .table table tr td {
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  font-size: 14px;
  font-size: 1.4rem;
  color: #3d3d3d;
  padding: 15px 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item .table table tr td {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 12px 0;
    line-height: 1.5;
  }
}
.page-ir_information_benefit .item .table table tr td:nth-child(1) {
  width: 400px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item .table table tr td:nth-child(1) {
    width: 40.67%;
  }
}
.page-ir_information_benefit .item .table table tr td:nth-child(2) {
  width: calc(100% - 400px);
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item .table table tr td:nth-child(2) {
    width: 59.33%;
  }
}
.page-ir_information_benefit .item.box-issuance-criteria {
  margin-bottom: 87px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item.box-issuance-criteria {
    margin-bottom: 48px;
  }
}
.page-ir_information_benefit .item.box-shareholder-benefit {
  margin-bottom: 93px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item.box-shareholder-benefit {
    margin-bottom: 55px;
  }
}
.page-ir_information_benefit .item.box-shareholder-benefit p {
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item.box-shareholder-benefit p {
    margin-bottom: 27px;
    letter-spacing: 0;
  }
}
.page-ir_information_benefit .item.box-shareholder-benefit p span {
  display: block;
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item.box-shareholder-benefit p span {
    margin-bottom: 25px;
    letter-spacing: -1px;
  }
}
@media screen and (max-width: 320px) {
  .page-ir_information_benefit .item.box-shareholder-benefit p span {
    letter-spacing: 1px;
  }
}
.page-ir_information_benefit .item.box-time {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .page-ir_information_benefit .item.box-time {
    margin-bottom: 35px;
  }
}
.wrap_content {
  padding: 100px 0 137px;
  background: #ffffff;
  margin-bottom: 167px;
}

@media screen and (max-width: 990px) {
  .wrap_content {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .wrap_content {
    padding-top: 30px;
    padding-bottom: 45px;
    margin-bottom: 47px;
  }
}
.inner-1400 {
  max-width: 1440px;
}

.btn_type01 {
  border: solid 2px #cccccc;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #bbbbbb;
  display: inline-block;
  width: 100%;
  padding: 15.5px 10px;
  text-align: center;
  -webkit-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.btn_type01 img {
  margin-left: 20px;
}

.btn_type01.active {
  background: #bbbbbb;
  color: #fff;
  border-color: #bbbbbb;
}

.btn_type01.style02 {
  max-width: 300px;
  margin: 0 auto;
}

.btn_type01:hover {
  opacity: 1;
  background: #888888;
  border: 2px solid #888888;
  color: #eee;
  -webkit-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

@media screen and (max-width: 1200px) {
  .btn_type01 {
    padding: 9px 7px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .btn_type01 img {
    margin-left: 10px;
  }
}
.list_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 120px;
}

@media screen and (max-width: 990px) {
  .list_link {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .list_link {
    margin-left: -7px;
    margin-right: -7px;
    margin-bottom: 42px;
  }
}
.list_link li {
  width: 20%;
  padding: 0 10px;
}

@media screen and (max-width: 768px) {
  .list_link li {
    width: 50%;
    padding: 0 7px;
    margin-bottom: 13px;
  }
}
.list_link.list_link_03 {
  margin-left: -20px;
  margin-right: -20px;
}

@media screen and (max-width: 1200px) {
  .list_link.list_link_03 {
    margin-left: -7px;
    margin-right: -7px;
  }
}
@media screen and (max-width: 768px) {
  .list_link.list_link_03 {
    margin: 0 0 41px;
  }
}
.list_link.list_link_03 li {
  width: 33.333%;
  padding: 0 20px;
}

@media screen and (max-width: 1200px) {
  .list_link.list_link_03 li {
    padding: 0 7px;
  }
}
@media screen and (max-width: 768px) {
  .list_link.list_link_03 li {
    width: 100%;
    margin-bottom: 13px;
    padding: 0;
  }
}
.ttl_type01 {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 90px;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .ttl_type01 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 58px;
  }
}
.ttl_type02 {
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  color: #666666;
  line-height: 1.3;
  margin-bottom: 37px;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  .ttl_type02 {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.ttl_type03 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #666666;
  font-weight: bold;
  line-height: 1.875;
  margin-bottom: 10px;
  padding-left: 15px;
  border-left: solid 5px;
  letter-spacing: -0.7px;
}

@media screen and (max-width: 768px) {
  .ttl_type03 {
    font-size: 13px;
    font-size: 1.3rem;
    border-left: solid 3px;
    line-height: 1.38;
    padding-left: 6px;
    margin-bottom: 13px;
  }
}
.txtBase {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.875;
}

@media screen and (max-width: 768px) {
  .txtBase {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.8461538462;
  }
}
.table01 {
  margin-bottom: 34px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .table01 {
    margin-bottom: 29px;
  }
}
.table01 tr {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  border-bottom: solid 1px #c4c4c4;
}

@media screen and (max-width: 768px) {
  .table01 tr {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.table01 tr:first-child {
  border-top: solid 1px #c4c4c4;
}

.table01 tr td {
  padding: 14px 0;
}

.table01 tr td:nth-child(2n+1) {
  width: 260px;
  font-weight: 500;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .table01 tr td:nth-child(2n+1) {
    padding-right: 0;
    padding-left: 5px;
  }
}
.table01 tr td:nth-child(2n+2) {
  width: calc(100% - 260px);
  letter-spacing: -0.5px;
}

.table01.style02 {
  table-layout: fixed;
}

@media screen and (max-width: 768px) {
  .table01.style02 tr {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.table01.style02 tr td:nth-child(1) {
  width: 73%;
}

@media screen and (max-width: 768px) {
  .table01.style02 tr td:nth-child(1) {
    width: 44%;
  }
}
@media screen and (max-width: 768px) and (max-width: 321px) {
  .table01.style02 tr td:nth-child(1) {
    letter-spacing: -1px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.table01.style02 tr td:nth-child(2) {
  width: 15%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .table01.style02 tr td:nth-child(2) {
    width: 25%;
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 321px) {
  .table01.style02 tr td:nth-child(2) {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.table01.style02 tr td:nth-child(3) {
  width: 15%;
  font-weight: normal;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .table01.style02 tr td:nth-child(3) {
    width: 31%;
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 321px) {
  .table01.style02 tr td:nth-child(3) {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.table01.style02 tr.head {
  font-weight: 500;
  background: #f4f4f4;
}

.table01.style02 tr.head td {
  text-align: center;
}

.table01.style02 tr.head td:nth-child(1) {
  text-align: left;
  padding-left: 23%;
}

@media screen and (max-width: 768px) {
  .table01.style02 tr.head td:nth-child(1) {
    padding-left: 0;
    text-align: center;
  }
}
.table01.style02 tr.head td:nth-child(3) {
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .table01.style01 tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 17px 0 14px;
    line-height: 1.6923076923;
  }
  .table01.style01 tr td:nth-child(1) {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
  .table01.style01 tr td:nth-child(2) {
    width: 100%;
    padding: 0;
  }
}
.p-20 {
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .p-20 {
    padding: 0 10px;
  }
}
.item_info {
  margin-bottom: 80px;
}

.item_info:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .item_info {
    margin-bottom: 46px;
  }
}
.item_info .txtBase {
  letter-spacing: -0.7px;
}

.list_char {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
}

@media screen and (max-width: 768px) {
  .list_char {
    margin: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.list_char .item {
  width: 50%;
  padding: 0 20px;
}

.list_char .item .ttl_type03 {
  margin-bottom: 43px;
}

@media screen and (max-width: 768px) {
  .list_char .item .ttl_type03 {
    margin-bottom: 30px;
  }
}
.list_char .item img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .list_char .item img {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .list_char .item {
    width: 100%;
    padding: 0;
    margin-bottom: 50px;
  }
  .list_char .item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .list_char .item:nth-child(2) .ttl_type03 {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .list_char .item > *:last-child {
    margin-bottom: 0;
  }
}
.page-ir_information .sec_ir {
  padding-bottom: 10px;
}

.select {
  border: solid 1px #cccccc;
  border-radius: 5px;
  width: 260px;
  padding: 10px 10px;
  color: #666666;
  background: #f4f4f4 url(images/ico-down.png) no-repeat center right 12px;
  height: 45px;
  font-size: 14px;
  font-size: 1.4rem;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

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

.select:hover,
.select:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

@media screen and (max-width: 768px) {
  .select {
    width: 100%;
    font-size: 13px;
    font-size: 1.3rem;
    height: 43px;
  }
}
.title01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .title01 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 27px;
  }
  .title01 .select {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 38px;
  }
}
.title01 .ttl_type02 {
  width: calc(100% - 260px);
  padding-right: 10px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .title01 .ttl_type02 {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.list01 li {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 26px 0;
  border-bottom: solid 1px #c4c4c4;
  color: #3d3d3d;
}

.list01 li span {
  display: inline-block;
  min-width: 166px;
  padding-right: 10px;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .list01 li span {
    width: 100%;
    margin-bottom: 12px;
  }
}
.list01 li img {
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  .list01 li img {
    margin-left: 10px;
    width: 12px;
  }
}
@media screen and (max-width: 768px) {
  .list01 li {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 17px 0;
  }
}
.box_document {
  display: block;
}

.page-ir_information_holders {
  margin-bottom: 0;
}

.page-company_mission .sec_mission {
  padding-bottom: 52px;
}

@media screen and (max-width: 768px) {
  .page-company_mission .sec_mission {
    padding-bottom: 10px;
  }
}
.page-company_mission .sec_mission .inner,
.page-company_mission .sec_mission .inner-860 {
  padding: 0 15px;
}

@media screen and (max-width: 768px) {
  .page-company_mission .sec_mission .inner,
  .page-company_mission .sec_mission .inner-860 {
    padding: 0 20px;
  }
}
.page-company_mission .sec_mission .wrap_content {
  padding-top: 123px;
  padding-bottom: 160px;
}

@media screen and (max-width: 768px) {
  .page-company_mission .sec_mission .wrap_content {
    padding: 30px 0 40px;
  }
}
.page-company_mission .sec_mission .p-20 {
  padding: 0 20px !important;
}

.page-company_mission .txt-intro {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.1;
  color: #3d3d3d;
  margin-bottom: 115px;
}

@media screen and (max-width: 768px) {
  .page-company_mission .txt-intro {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.95;
    margin-bottom: 63px;
  }
}
.page-company_mission .list-mission .item {
  margin-bottom: 64px;
}

@media screen and (max-width: 768px) {
  .page-company_mission .list-mission .item {
    margin-bottom: 50px;
  }
}
.page-company_mission .list-mission .item:last-child {
  margin-bottom: 85px;
}

@media screen and (max-width: 768px) {
  .page-company_mission .list-mission .item:last-child {
    margin-bottom: 50px;
  }
}
.page-company_mission .list-mission .item span {
  display: block;
  font-size: 20px;
  font-size: 2rem;
  line-height: 2;
  font-weight: 500;
  color: #666666;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
}

@media screen and (max-width: 768px) {
  .page-company_mission .list-mission .item span {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 22px;
  }
}
.page-company_mission .list-mission .item p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.1;
  color: #3d3d3d;
}

@media screen and (max-width: 768px) {
  .page-company_mission .list-mission .item p {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.95;
  }
}
.page-company_mission .signature {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.1;
  color: #3d3d3d;
  display: block;
}

@media screen and (max-width: 768px) {
  .page-company_mission .signature {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.9;
  }
}
.p-15 {
  padding: 0 15px !important;
}

@media screen and (max-width: 768px) {
  .p-15 {
    padding: 0 20px !important;
  }
}
.content-company-profile {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .content-company-profile {
    padding-bottom: 29px;
  }
}
.content-company-profile .ttl_type01 {
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .content-company-profile .ttl_type01 {
    margin-bottom: 36px;
  }
}
.content-company-profile .img-profile {
  margin-bottom: 93px;
}

@media screen and (max-width: 990px) {
  .content-company-profile .img-profile {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .content-company-profile .img-profile {
    margin-bottom: 40px;
  }
}
.content-company-profile .item_info .table01 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.content-company-profile .item_info .table01 tr td {
  display: inline-block;
}

.content-company-profile .item_info .table01 tr td:nth-child(2n+1) {
  width: 400px;
}

@media screen and (max-width: 1200px) {
  .content-company-profile .item_info .table01 tr td:nth-child(2n+1) {
    width: 270px;
  }
}
@media screen and (max-width: 768px) {
  .content-company-profile .item_info .table01 tr td:nth-child(2n+1) {
    width: 100%;
    padding-left: 0;
  }
}
.content-company-profile .item_info .table01 tr td:nth-child(2n+2) {
  width: calc(100% - 400px);
}

@media screen and (max-width: 1200px) {
  .content-company-profile .item_info .table01 tr td:nth-child(2n+2) {
    width: calc(100% - 270px);
  }
}
@media screen and (max-width: 768px) {
  .content-company-profile .item_info .table01 tr td:nth-child(2n+2) {
    width: 100%;
  }
}
.content-profile dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
}

.content-profile dl:last-child {
  margin-bottom: 0;
}

.content-profile dl dt {
  width: 160px;
  padding-right: 20px;
  font-weight: normal;
}

@media screen and (max-width: 1200px) {
  .content-profile dl dt {
    width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .content-profile dl dt {
    width: 140px;
  }
}
.content-profile dl dd {
  width: calc(100% - 160px);
}

@media screen and (max-width: 1200px) {
  .content-profile dl dd {
    width: calc(100% - 120px);
  }
}
@media screen and (max-width: 768px) {
  .content-profile dl dd {
    width: calc(100% - 140px);
  }
}
@media screen and (max-width: 768px) {
  .content-company-profile .item_info .content-profile02 {
    margin-bottom: -15px;
    display: block;
  }
}
.content-company-profile .item_info .content-profile02 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.content-company-profile .item_info .content-profile02 dl dd {
  width: 33.333%;
  padding-right: 10px;
  margin-bottom: 8px;
}

.content-company-profile .list-txt-profile {
  margin-bottom: 77px;
  margin-top: -13px;
  letter-spacing: -0.7px;
}

@media screen and (max-width: 990px) {
  .content-company-profile .list-txt-profile {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .content-company-profile .list-txt-profile {
    margin-top: -3px;
    letter-spacing: -1px;
    line-height: 1.7;
    margin-bottom: 22px;
  }
}
.content-company-profile .list-txt-profile li {
  color: #3d3d3d;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  font-size: 1.3rem;
}

.content-company-profile .list-txt-profile li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .content-company-profile .list-txt-profile li {
    margin-bottom: 1px;
  }
}
.content-company-profile .gg-map iframe {
  width: 100%;
  height: 320px;
}

@media screen and (max-width: 768px) {
  .content-company-profile .gg-map iframe {
    height: 130px;
  }
}
.img-gird {
  text-align: center;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  .img-gird::-webkit-scrollbar {
    height: 10px;
  }
  .img-gird::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #dddddd;
  }
  .img-gird::-webkit-scrollbar-thumb {
    background: #dddddd;
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .img-gird .img-scroll {
    width: 750px;
    padding-bottom: 87px;
  }
}
.scroll-img {
  overflow: hidden;
  position: relative;
}

.scroll-img .arrow-right {
  position: absolute;
  top: 50%;
  left: 42%;
  -webkit-transform: transltate(-50%, -50%);
  -ms-transform: transltate(-50%, -50%);
  transform: transltate(-50%, -50%);
  z-index: 2;
  display: none;
}

@media screen and (max-width: 767px) {
  .scroll-img .arrow-right {
    display: block;
  }
}
.scroll-img .arrow-right.off {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  .scroll-img.touch-on .arrow-right {
    display: none;
  }
}
.page-company_organization_index .content-company-profile {
  padding-bottom: 99px;
  margin-bottom: 75px;
}

.page-company_organization_index .ttl_type01 {
  margin-bottom: 98px;
}

@media screen and (max-width: 990px) {
  .page-company_organization_index .ttl_type01 {
    margin-bottom: 50px;
  }
}
.inner-860 {
  max-width: 900px;
}

.group_step {
  width: 100%;
  max-width: 411px;
  margin: 0 auto 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .group_step {
    max-width: 239px;
    font-size: 10px;
    font-size: 1rem;
    margin-bottom: 41px;
  }
}
.group_step .step {
  width: 33.33%;
  text-align: center;
  position: relative;
  padding-top: 26px;
  color: #888;
}

@media screen and (max-width: 768px) {
  .group_step .step {
    padding-top: 24px;
  }
}
.group_step .step:before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: #dddddd;
  border-radius: 50%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .group_step .step:before {
    width: 10px;
    height: 10px;
  }
}
.group_step .step:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #dddddd;
  border-radius: 50%;
  top: 7px;
  left: -50%;
}

@media screen and (max-width: 768px) {
  .group_step .step:after {
    top: 5px;
  }
}
.group_step .step:first-child:after {
  display: none;
}

.group_step .step.active {
  color: #666;
}

.group_step .step.active:before,
.group_step .step.active:after {
  background: #888888;
}

.form {
  font-size: 14px;
  font-size: 1.4rem;
  color: #3d3d3d;
  line-height: 2;
}

.form input,
.form select,
.form textarea {
  border-radius: 0;
}

@media screen and (max-width: 768px) {
  .form {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.9230769231;
  }
}
@media screen and (max-width: 768px) and (-ms-high-contrast: active), screen and (max-width: 768px) and (-ms-high-contrast: none) {
  .form {
    line-height: 1.923;
  }
}
.form form {
  width: 100%;
  display: block;
}

.form .group_import {
  width: 100%;
  max-width: 805px;
  margin-left: auto;
  margin-bottom: 58px;
}

@media screen and (max-width: 768px) {
  .form .group_import {
    margin-bottom: 55px;
  }
}
.form .group_import .rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .form .group_import .rows {
    margin-bottom: 11px;
  }
}
.form .group_import .rows .txt {
  font-weight: 500;
  width: 25.466%;
  margin-top: 11px;
  position: relative;
}

@media only screen and (max-width: 1023px) {
  .form .group_import .rows .txt {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .form .group_import .rows .txt {
    margin-bottom: 8px;
  }
}
.form .group_import .rows .txt.required:before {
  position: absolute;
  content: "必須";
  font-size: 12px;
  font-size: 1.2rem;
  background: #c00000;
  color: #fff;
  line-height: 1.8;
  padding: 0 7px;
  top: 4px;
  left: -55px;
}

@media only screen and (max-width: 1023px) {
  .form .group_import .rows .txt.required:before {
    position: inherit;
    top: 0;
    left: 0;
    margin-right: 6px;
  }
}
@media screen and (max-width: 768px) {
  .form .group_import .rows .txt.required:before {
    font-size: 11px;
    font-size: 1.1rem;
    display: inline-block;
    padding: 0 8px 0 6px;
  }
}
.form .group_import .rows .box_form {
  width: 74.534%;
}

@media only screen and (max-width: 1023px) {
  .form .group_import .rows .box_form {
    width: 100%;
  }
}
.form .group_import .rows .box_form input,
.form .group_import .rows .box_form select,
.form .group_import .rows .box_form textarea {
  display: block;
  width: 100%;
  background: #f4f4f4;
  border: none;
  padding: 13px 19px;
}

@media screen and (max-width: 768px) {
  .form .group_import .rows .box_form input,
  .form .group_import .rows .box_form select,
  .form .group_import .rows .box_form textarea {
    padding: 11px 13px;
  }
}
.form .group_import .rows .box_form textarea {
  height: 200px;
  resize: none;
}

@media screen and (max-width: 768px) {
  .form .group_import .rows .box_form textarea {
    height: 170px;
  }
}
.form .group_import .rows .box_form.box-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form .group_import .rows .box_form.box-select .select-box {
  width: 36.67%;
}

@media screen and (max-width: 768px) {
  .form .group_import .rows .box_form.box-select .select-box {
    width: 100%;
    margin-bottom: 21px;
  }
}
.form .group_import .rows .box_form.box-select input {
  width: 46.67%;
}

@media screen and (max-width: 768px) {
  .form .group_import .rows .box_form.box-select input {
    width: calc(100% - 51px);
  }
}
.form .group_import .rows .box_form.box-select .txt_quest {
  width: 16.66%;
  font-weight: 500;
  padding: 9px 0 0 37px;
}

@media screen and (max-width: 768px) {
  .form .group_import .rows .box_form.box-select .txt_quest {
    width: 51px;
    padding: 8px 0 0;
  }
}
.form .check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 57px;
}

@media screen and (max-width: 768px) {
  .form .check {
    margin-bottom: 39px;
  }
}
@media screen and (max-width: 340px) {
  .form .check {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.form .check label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  padding-left: 59px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .form .check label {
    padding-left: 9px;
  }
}
.form .check label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.form .check label input:checked ~ .checkmark {
  background-color: #ccc;
}

.form .check label input:checked ~ .checkmark:after {
  display: block;
}

.form .check label .checkmark {
  position: absolute;
  top: 8px;
  left: 19px;
  height: 15px;
  width: 15px;
  background: #f4f4f4;
  border: 1px solid #c6c6c6;
}

@media screen and (max-width: 768px) {
  .form .check label .checkmark {
    top: 5px;
    left: -20px;
    height: 17px;
    width: 17px;
  }
}
@media screen and (max-width: 340px) {
  .form .check label .checkmark {
    top: 2px;
  }
}
.form .check label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 3px;
  top: 0;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .form .check label .checkmark:after {
    left: 4px;
    top: 1px;
  }
}
.form .select-box {
  position: relative;
}

.form .select-box:after {
  position: absolute;
  content: "";
  border-top: 7px solid #666666;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form .select-box select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.form .result {
  margin-top: 11px;
}

@media screen and (max-width: 768px) {
  .form .result {
    margin-top: 9px;
  }
}
.form.confirm .group_import {
  margin-bottom: 117px;
}

@media screen and (max-width: 768px) {
  .form.confirm .group_import {
    margin-bottom: 55px;
  }
}
.form.confirm .group_import .rows {
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .form.confirm .group_import .rows {
    margin-bottom: 16px;
  }
}
.form.confirm .group_import .result {
  padding-left: 21px;
}

@media screen and (max-width: 768px) {
  .form.confirm .group_import .result {
    padding-left: 0;
  }
}
.form.confirm .group_import .result.style02 {
  letter-spacing: -1.5px;
}

@media screen and (max-width: 768px) {
  .form.confirm .group_import .result.style02 {
    letter-spacing: -2.5px;
  }
}
.submit {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
  background: #bbbbbb;
  border: none;
  color: #fff;
  width: 100%;
  max-width: 300px;
  height: 70px;
  padding: 10px;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.submit:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .submit {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.8461538462;
    height: 55px;
    padding: 12px 10px 8px;
  }
}
@media screen and (max-width: 768px) and (-ms-high-contrast: active), screen and (max-width: 768px) and (-ms-high-contrast: none) {
  .submit {
    line-height: 1.846;
  }
}
.group-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .group-submit {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.group-submit .submit {
  margin: 0 15px;
  max-width: 360px;
}

.group-submit .submit.style02 {
  color: #aaaaaa;
  background: #ffffff;
  border: solid 1px #aaa;
  max-width: 240px;
}

@media screen and (max-width: 768px) {
  .group-submit .submit.style02 {
    max-width: 100%;
    margin-bottom: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.group-submit .submit.style03 {
  min-width: 300px;
  text-align: center;
  line-height: 1;
  padding: 23px 10px;
}

@media screen and (max-width: 768px) {
  .group-submit .submit.style03 {
    min-width: 200px;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 768px) {
  .group-submit .submit {
    max-width: 100%;
    margin: 0 0 11px 0;
    padding: 8px 10px 8px;
  }
}
.des2 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 39px;
}

@media screen and (max-width: 768px) {
  .des2 {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.7;
    margin-bottom: 26px;
  }
}
.thanks .des {
  margin-bottom: 50px !important;
}

@media screen and (max-width: 768px) {
  .thanks .des {
    margin-bottom: 44px !important;
  }
}
.box_scroll {
  width: 100%;
  max-width: 840px;
  margin-left: auto;
  border: 1px solid #bbbbbb;
  margin-bottom: 54px;
}

@media screen and (max-width: 768px) {
  .box_scroll {
    line-height: 1.75;
    margin-bottom: 35px;
  }
}
.box_scroll .wrap {
  width: 100%;
  max-height: 198px;
  padding: 13px 11px 0 31px;
}

@media screen and (max-width: 768px) {
  .box_scroll .wrap {
    max-height: 188px;
    padding: 9px 8px 0 18px;
  }
}
.box_scroll .wrap .ttl {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #666666;
  margin-bottom: 11px;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .box_scroll .wrap .ttl {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6428571429;
    margin-bottom: 18px;
    margin-top: 12px;
  }
}
@media screen and (max-width: 768px) and (-ms-high-contrast: active), screen and (max-width: 768px) and (-ms-high-contrast: none) {
  .box_scroll .wrap .ttl {
    line-height: 1.643;
  }
}
.box_scroll .wrap ul li {
  margin-bottom: 29px;
}

@media screen and (max-width: 768px) {
  .box_scroll .wrap ul li {
    margin-bottom: 19px;
  }
}
@media screen and (max-width: 768px) {
  .box_scroll .mCSB_container {
    padding-right: 15px;
  }
}
.sec_contact {
  padding-bottom: 78px;
}

@media screen and (max-width: 768px) {
  .sec_contact {
    padding-bottom: 13px;
  }
}
.sec_contact .wrap_content {
  padding-top: 128px;
  padding-bottom: 127px;
}

@media screen and (max-width: 768px) {
  .sec_contact .wrap_content {
    padding-top: 51px;
    padding-bottom: 52px;
  }
}
.sec_contact .des {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.7px;
  margin-bottom: 87px;
}

@media screen and (max-width: 768px) {
  .sec_contact .des {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.9230769231;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) and (-ms-high-contrast: active), screen and (max-width: 768px) and (-ms-high-contrast: none) {
  .sec_contact .des {
    line-height: 1.923;
  }
}
@media screen and (max-width: 374px) {
  .sec_contact .des {
    letter-spacing: -0.2px;
  }
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

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

@media screen and (max-width: 768px) {
  .page-contact_confirm .des {
    margin-bottom: 30px;
  }
}
@media (max-width: 340px) {
  .m-420 {
    display: none;
  }
}
.page-company_index {
  padding-bottom: 83px;
}

@media screen and (max-width: 768px) {
  .page-company_index {
    margin-bottom: 20px;
    padding-bottom: 8px;
  }
}
.page-company_index .wrap_content {
  padding: 125px 0px;
}

@media screen and (max-width: 768px) {
  .page-company_index .wrap_content {
    padding: 40px 0px;
  }
}
.list_style02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .list_style02 {
    display: block;
    padding: 0px 20px;
  }
}
@media screen and (max-width: 340px) {
  .list_style02 {
    padding: 0px 10px;
  }
}
.list_style02 .item {
  margin-right: 33px;
  width: calc(33.33% - 22px);
  margin-bottom: 33px;
}

.list_style02 .item:nth-child(3n) {
  margin-right: 0;
}

.list_style02 .item a {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: block;
}

.list_style02 .item a:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  .list_style02 .item {
    width: 100%;
    margin: 0px 0px 40px;
  }
}
.list_style02 .item .item_content {
  padding: 20px 0px 0px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
  color: #666666;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .list_style02 .item .item_content {
    font-size: 14px;
    font-size: 1.4rem;
    padding-top: 18px;
  }
}
.list_style03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .list_style03 {
    display: block;
    padding: 0 10px;
  }
}
.list_style03 .item {
  width: calc(33.33% - 26.67px);
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .list_style03 .item {
    width: 100%;
    margin-bottom: 15px;
  }
  .list_style03 .item:last-child {
    margin-bottom: 0;
  }
}
.list_style03 .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  background: #c4c4c4;
  color: #ffffff;
  line-height: 1.44;
  height: 80px;
}

@media screen and (max-width: 768px) {
  .list_style03 .item a {
    height: 55px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.list_style03 .item:nth-child(3n) {
  margin-right: 0;
}

.sec_company-message .ttl {
  color: #666666;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 58px;
}

@media screen and (max-width: 768px) {
  .sec_company-message .ttl {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 27px;
    line-height: 1.875;
  }
}
.sec_company-message p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.14;
  color: #3d3d3d;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

@media screen and (max-width: 768px) {
  .sec_company-message p {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.92;
    margin-bottom: 30px;
  }
}
.sec_company-message .author {
  text-align: right;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .sec_company-message .author {
    margin-top: 60px;
  }
}
.sec_company-message .author span {
  font-size: 18px;
  font-size: 1.8rem;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 0;
  margin-left: 22px;
}

@media screen and (max-width: 768px) {
  .sec_company-message .author span {
    font-size: 16px;
    font-size: 1.6rem;
    margin-left: 15px;
  }
}
.page-privacy .sec_privacy .p-20 {
  padding: 0 20px !important;
}

.page-privacy .sec_privacy .wrap_content {
  background: transparent;
  padding-bottom: 120px;
  margin-bottom: 30px;
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .wrap_content {
    padding-bottom: 30px;
  }
}
.page-privacy .sec_privacy .page {
  margin-bottom: 50px;
  background: #fff;
  padding: 114px 0 120px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page {
    padding: 30px 0 40px;
    margin-bottom: 30px;
  }
}
.page-privacy .sec_privacy .page .txt-intro {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  color: #3d3d3d;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page .txt-intro {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.95;
    margin-bottom: 57px;
  }
}
.page-privacy .sec_privacy .page .list-privacy .item {
  margin-bottom: 65px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page .list-privacy .item {
    margin-bottom: 50px;
  }
}
.page-privacy .sec_privacy .page .list-privacy .item:last-child {
  margin-bottom: 0;
}

.page-privacy .sec_privacy .page .list-privacy .item .ttl-item {
  font-size: 20px;
  font-size: 2rem;
  line-height: 2;
  font-weight: bold;
  color: #666666;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page .list-privacy .item .ttl-item span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page .list-privacy .item .ttl-item {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 2;
    padding-left: 20px;
    margin-bottom: 17px;
  }
}
.page-privacy .sec_privacy .page .list-privacy .item p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  color: #3d3d3d;
  margin-bottom: 27px;
  letter-spacing: -0.1px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page .list-privacy .item p {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.95;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
  }
}
.page-privacy .sec_privacy .page .list-privacy .item ul {
  margin-bottom: 27px;
}

.page-privacy .sec_privacy .page .list-privacy .item ul:last-child {
  margin-bottom: 0;
}

.page-privacy .sec_privacy .page .list-privacy .item ul li {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  color: #3d3d3d;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page .list-privacy .item ul li {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.95;
  }
}
.page-privacy .sec_privacy .page .box-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 98px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page .box-logo {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 68px;
    max-width: 375px;
    margin-left: auto;
    margin-right: 0;
  }
}
.page-privacy .sec_privacy .page .box-logo .img {
  margin-right: 37px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page .box-logo .img {
    width: 34%;
    margin-right: 0;
  }
}
.page-privacy .sec_privacy .page .box-logo .info {
  letter-spacing: 1px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  color: #3d3d3d;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page .box-logo .info {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.95;
    text-align: right;
    padding-top: 8px;
  }
}
.page-privacy .sec_privacy .page .ttl-main {
  font-size: 24px;
  font-size: 2.4rem;
  color: #666666;
  font-weight: bold;
  margin-bottom: 110px;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page .ttl-main {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 62px;
    letter-spacing: 0;
  }
}
.page-privacy .sec_privacy .page-second {
  padding: 123px 0 100px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page-second {
    padding: 52px 0 35px;
    margin-bottom: 0;
  }
}
.page-privacy .sec_privacy .page-second .list-privacy {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page-second .list-privacy {
    margin-bottom: 58px;
  }
}
.page-privacy .sec_privacy .page-second .list-privacy .item {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .page-second .list-privacy .item {
    margin-bottom: 54px;
  }
}
.page-privacy .sec_privacy .box-info-company {
  margin-bottom: 54px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .box-info-company {
    margin-bottom: 48px;
  }
}
.page-privacy .sec_privacy .box-info-company .ttl-info-company {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #3d3d3d;
  padding-left: 10px;
  border-left: 5px solid #888888;
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .box-info-company .ttl-info-company {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }
}
.page-privacy .sec_privacy .box-info-company .content {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  color: #3d3d3d;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .box-info-company .content {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.95;
    margin-bottom: 35px;
    letter-spacing: 0;
  }
}
.page-privacy .sec_privacy .box-invoice {
  padding: 55px 63px 35px;
  border: 5px solid #eeeeee;
  margin-top: 66px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .box-invoice {
    margin-top: 50px;
    padding: 23px 20px 23px;
  }
}
.page-privacy .sec_privacy .box-invoice .ttl-invoice {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  color: #666666;
  margin-bottom: 32px;
  letter-spacing: 1.5px;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .box-invoice .ttl-invoice {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.page-privacy .sec_privacy .box-invoice .content .item {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  color: #3d3d3d;
  margin-bottom: 28px;
}

.page-privacy .sec_privacy .box-invoice .content .item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .page-privacy .sec_privacy .box-invoice .content .item {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.95;
    margin-bottom: 25px;
    letter-spacing: -0.1px;
  }
}
a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
.page-company_history_index .ttl_type01 {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .page-company_history_index .ttl_type01 {
    margin-bottom: 26px;
  }
}
.table-history .table02 tr {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .table-history .table02 tr {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 21px;
  }
}
@media screen and (max-width: 768px) {
  .table-history .table02 tr:first-child {
    border-top: 0;
  }
}
.table-history .table02 tr td {
  padding: 24px 0;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .table-history .table02 tr td {
    padding: 12px 0;
  }
}
.table-history .table02 tr td:nth-child(2n+1) {
  width: 207px;
  color: #666666;
  padding: 19px 10px 15px 47px;
  letter-spacing: 0.75px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 22px;
  font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
  .table-history .table02 tr td:nth-child(2n+1) {
    width: 100%;
    padding: 9px 0;
    letter-spacing: 0;
    border-bottom: solid 1px #c4c4c4;
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.table-history .table02 tr td:nth-child(2n+2) {
  width: calc(100% - 207px);
}

@media screen and (max-width: 768px) {
  .table-history .table02 tr td:nth-child(2n+2) {
    width: 100%;
    line-height: 1.92;
  }
}
.table-history .table02 tr td dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px dotted #c4c4c4;
  margin-bottom: 24px;
  padding-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .table-history .table02 tr td dl {
    margin-bottom: 14px;
    padding-bottom: 14px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.table-history .table02 tr td dl:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.table-history .table02 tr td dl dt {
  width: 102px;
  padding-left: 32px;
  padding-right: 15px;
}

@media screen and (max-width: 768px) {
  .table-history .table02 tr td dl dt {
    padding-left: 0;
    width: 55px;
  }
}
.table-history .table02 tr td dl dd {
  width: calc(100% - 102px);
}

@media screen and (max-width: 768px) {
  .table-history .table02 tr td dl dd {
    width: calc(100% - 55px);
  }
}
.area .ttl {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  color: #666666;
  letter-spacing: 1px;
  margin-bottom: 13px;
}

@media screen and (max-width: 768px) {
  .area .ttl {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 7px;
  }
}
.list-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px 109px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: 500;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .list-area {
    line-height: 1.857;
  }
}
@media screen and (max-width: 768px) {
  .list-area {
    font-size: 13px;
    font-size: 1.3rem;
    margin: 0 -7px 108px;
  }
}
.list-area li {
  width: 25%;
  padding: 10px 10px 11px;
}

@media screen and (max-width: 768px) {
  .list-area li {
    width: 50%;
    padding: 7px;
  }
}
.list-area li span {
  display: block;
  text-align: center;
  border: 1px solid #999;
  color: #999;
  padding: 14px 10px;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

@media screen and (max-width: 768px) {
  .list-area li span {
    padding: 8px 2px 8px 0;
  }
}
.list-area li span:hover,
.list-area li span.active {
  color: #fff;
  background: #999;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.group-shoplist .txtBase {
  display: none;
}

.group-shoplist h2 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: bold;
  border-bottom: 1px solid #000;
  color: #666666;
  padding: 0 0 20px 2px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .group-shoplist h2 {
    line-height: 1.44;
  }
}
@media screen and (max-width: 768px) {
  .group-shoplist h2 {
    font-size: 13px;
    font-size: 1.3rem;
    padding-bottom: 10px;
    margin-bottom: 24px;
  }
}
.shoplist h3 {
  color: #666666;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
  background: #f4f4f4;
  padding: 15px 13px 14px;
}

@media screen and (max-width: 768px) {
  .shoplist h3 {
    font-size: 15px;
    font-size: 1.5rem;
    padding: 5px 11px 6px;
  }
}
.shoplist.hidden {
  display: none;
}

.list-shop li {
  min-height: 120px;
  border-bottom: 1px solid #dddddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 8px;
}

@media screen and (max-width: 768px) {
  .list-shop li {
    padding: 31px 10px 23px 11px;
  }
}
.list-shop li:last-child {
  border-bottom: none;
}

.list-shop li .name {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.8;
  padding-left: 4px;
  width: 28.78%;
  padding-right: 15px;
}

.list-shop li .name span:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .list-shop li .name span {
    text-decoration: underline;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .list-shop li .name {
    min-height: 119px;
    padding-top: 39px;
  }
}
@media screen and (max-width: 990px) {
  .list-shop li .name {
    width: 100%;
    padding: 0;
    margin-bottom: 21px;
  }
}
@media screen and (max-width: 990px) and (-ms-high-contrast: active), screen and (max-width: 990px) and (-ms-high-contrast: none) {
  .list-shop li .name {
    padding-top: 0;
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .list-shop li .name {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.list-shop li .address {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.1428571429;
  width: 43.42%;
  letter-spacing: 0.4px;
  padding-right: 15px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .list-shop li .address {
    line-height: 2.143;
  }
}
@media screen and (max-width: 990px) {
  .list-shop li .address {
    width: 100%;
    padding: 0;
    margin-bottom: 11px;
  }
}
@media screen and (max-width: 768px) {
  .list-shop li .address {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.9230769231;
  }
}
@media screen and (max-width: 768px) and (-ms-high-contrast: active), screen and (max-width: 768px) and (-ms-high-contrast: none) {
  .list-shop li .address {
    line-height: 1.923;
  }
}
.list-shop li .list-logo {
  width: 27.8%;
}

@media screen and (max-width: 990px) {
  .list-shop li .list-logo {
    width: 100%;
    padding: 0 0 0 3px;
  }
  .list-shop li .list-logo a {
    margin: 11px 38px 11px 0 !important;
  }
}
.list-shop li .list-logo a {
  margin: 5px 23px 5px 0;
}

/*.list-shop li .list-logo a:nth-child(3n) {
   margin-right: 0;
}*/
.list-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-logo a {
  margin: 10px 12px 10px 0;
}

.list-logo a:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 990px) {
  .list-logo a {
    margin: 10px 12px 10px 0;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s all;
  -o-transition: 0.4s all;
  transition: 0.4s all;
}

.modal .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.modal .wrap .main {
  width: 100%;
  max-width: 960px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.modal .wrap .main .content {
  background: #ffffff;
  height: 488px;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .modal .wrap .main .content {
    height: auto;
  }
}
.modal .wrap .main .content .head {
  background: #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 21px 23px 20px 36px;
}

@media screen and (max-width: 768px) {
  .modal .wrap .main .content .head {
    padding: 17px 17px 18px 19px;
  }
}
.modal .wrap .main .content .head .ttl {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: #666666;
  letter-spacing: 1.7px;
}

@media screen and (max-width: 768px) {
  .modal .wrap .main .content .head .ttl {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.modal .wrap .main .content .head .follow {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  color: #666666;
  font-weight: 900;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 2.167;
  letter-spacing: 0.6px;
  min-width: 150px;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .modal .wrap .main .content .head .follow {
    min-width: auto;
    max-width: 30px;
    padding: 0;
  }
}
.modal .wrap .main .content .head .follow a {
  margin-left: 16px;
  width: 40px;
}

@media screen and (max-width: 768px) {
  .modal .wrap .main .content .head .follow a {
    margin-left: 0;
  }
}
.modal .wrap .main .content .modal-scroll {
  max-height: 400px;
  overflow-y: auto;
}

.modal .wrap .main .content .modal-scroll .mCSB_scrollTools {
  top: 10px;
  right: 10px;
  bottom: 10px;
}

.modal .wrap .main .content .modal-scroll .mCSB_container .content-shop {
  padding-right: 10px;
}

.modal .wrap .main .content-shop {
  padding: 40px 40px 37px 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .modal .wrap .main .content-shop {
    max-height: 60vh;
    padding: 21px 20px 37px 20px;
  }
}
.modal .wrap .main .content-shop .img {
  width: 39.28%;
  margin-right: 4.53%;
}

@media screen and (max-width: 768px) {
  .modal .wrap .main .content-shop .img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 29px;
  }
}
.modal .wrap .main .content-shop table {
  width: 56.19%;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .modal .wrap .main .content-shop table {
    font-size: 13px;
    font-size: 1.3rem;
    width: 100%;
  }
}
.modal .wrap .main .content-shop table tr {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}

.modal .wrap .main .content-shop table tr td {
  width: 75%;
  padding: 10px 0 12px;
  letter-spacing: 0.2px;
}

@media screen and (max-width: 768px) {
  .modal .wrap .main .content-shop table tr td {
    width: 100% !important;
    display: block;
    padding: 2px 0 3px;
  }
}
.modal .wrap .main .content-shop table tr td:first-child {
  font-weight: 500;
  width: 25%;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .modal .wrap .main .content-shop table tr td:first-child {
    padding-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .modal .wrap .main .content-shop table tr td:last-child {
    padding-bottom: 17px;
  }
}
.modal .wrap .main .content-shop table tr td .map {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .modal .wrap .main .content-shop table tr td .map {
    margin-top: 6px;
  }
}
.modal .wrap .main .content-shop table tr td .map img {
  vertical-align: -2px;
  width: 12px;
}

@media screen and (max-width: 768px) {
  .modal .wrap .main .content-shop table tr td .map img {
    vertical-align: -4px;
    width: 12px;
  }
}
.modal .wrap .main .content-shop table tr td .map a {
  text-decoration: underline;
}

.modal .wrap .main .content-shop table tr:last-child {
  padding: 21px 0 21px;
}

.modal .wrap .main .content .content-modal {
  display: none;
}

.modal .wrap .main .content .content-modal.on {
  display: block;
}

.modal .wrap .main .cancel {
  margin: 0 10px 23px auto;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .modal .wrap .main .cancel {
    width: 24px;
    height: 24px;
    margin: 0 19px 17px auto;
  }
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.sec_shoplist {
  padding-bottom: 33px;
}

@media screen and (max-width: 768px) {
  .sec_shoplist {
    padding-bottom: 22px;
  }
}
.sec_shoplist .wrap_content {
  padding: 126px 0 145px;
}

@media screen and (max-width: 768px) {
  .sec_shoplist .wrap_content {
    padding: 41px 0 41px;
  }
}
.list02 {
  margin-bottom: 50px;
  display: none;
}

@media screen and (max-width: 768px) {
  .list02 {
    margin-bottom: 30px;
  }
}
.list02 li {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .list02 li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.list02 li ul {
  display: none;
  margin: 15px 0;
}

.btn-show {
  cursor: pointer;
}

.mb_YTPlayer {
  padding-bottom: 45vw !important;
}

.inline-YTPlayer {
  max-width: none !important;
  pointer-events: none;
}

.inline-YTPlayer .mbYTP_wrapper {
  position: relative;
  width: 100vw;
  padding-top: 56.5vw !important;
}

.inline-YTPlayer .mbYTP_wrapper iframe {
  position: absolute;
  top: 35% !important;
  right: 50% !important;
  left: auto !important;
  width: 95% !important;
  height: 100% !important;
  transform: translate(50%, -50%);
}

@media print {
  .sp {
    display: none;
  }
}
/* 200528 */
.tr {
  text-align: right;
}

/* 220405 */
.t-bold {
  font-weight: bold;
}

.mt10 {
  margin-top: 10px;
}

.pl20 {
  padding-left: 20px;
}

.indent {
  padding-left: 1.6rem;
  text-indent: -1.6rem;
}

.guideline-logo {
  margin-top: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .guideline-logo img {
    width: 100%;
  }
}
/*20221104追加　recruit*/
.sec_recruit {
  padding-bottom: 33px;
}

.page-recruit .sec_recruit .page .txt-intro {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  color: #3d3d3d;
  margin: 70px 0;
  text-align: center;
}

.btn_recruit {
  width: 30%;
  margin: 0 auto;
}

.btn_twc {
  width: 20%;
}

.btn_twc a {
  display: block;
  border: solid 2px #c0777c;
  padding: 20px 15px 15px;
}

.btn_twc a p {
  text-align: center;
  margin-top: 10px;
  font-size: 1.5rem;
}

/* IR.css */
.irTextBold {
  font-weight: bold;
}

.irTextRight {
  text-align: right;
}

.irText + .ttl_type02 {
  margin-bottom: 28px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.ttl_type01_sub {
  font-size: 1.5rem;
  display: block;
  color: #3d3d3d;
}

.indent-information {
  padding-left: 1em;
  text-indent: -1em;
}

.governance_img {
  margin: 40px auto 0 auto;
  display: block;
}

.faq {
  font-size: 1.4rem;
  line-height: 1.875;
}

.faq dd, .faq dt {
  position: relative;
  padding: 30px 50px;
}

.faq dd {
  margin-bottom: 15px;
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 15px;
  background: #f3f4f5;
  padding: 30px 50px;
}

.faq dt::before {
  content: "Q";
  color: #fff;
  background-color: #56c1fc;
  padding: 0px 7px;
}

.faq dd::before {
  content: "A";
  color: #fff;
  background-color: #fb56a0;
  padding: 0px 7px;
}

.faq dt::before,
.faq dd::before {
  position: absolute;
  display: block;
  left: 0;
  top: 30px;
  font-weight: 700;
  margin-left: 15px;
}

.faq dt:first-child {
  border-top: 1px solid #c4c4c4;
}

.faq .faq_list {
  padding-left: 2em;
}

.faq .faq_list li {
  list-style-type: disc;
  text-indent: 0;
}

.inner_eirTab {
  width: 100%;
  display: flex;
  margin-bottom: 40px;
}

.inner_eirTab_link {
  display: block;
  border: 1px solid #c4c4c4;
  color: #666666;
  width: 50%;
  font-size: 1.6rem;
  text-align: center;
  padding: 20px 0;
}

.inner_eirTab_link:first-child {
  margin-right: 3%;
}

.inner_eirTab .active {
  background-color: #c4c4c4;
  color: #fff;
}

.irSubLinkWrapp,
.irSubLink-libraryWrapp {
  margin-bottom: 100px;
}

.irSubLinkWrapp ul,
.irSubLink-libraryWrapp ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.irSubLinkWrapp ul li {
  width: 24%;
  margin-right: 1%;
}

.irSubLinkWrapp ul li a,
.irSubLink-libraryWrapp ul li a {
  color: #bbbbbb;
  border: 2px solid #cccccc;
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  background: #fff;
  padding: 15.5px 10px;
  font-weight: 500;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.irSubLink-libraryWrapp ul li {
  width: 19%;
  margin-right: 1%;
}

.sp-br {
  display: none;
}

.irPb0 {
  padding-top: 0 !important;
}

.eirIcon {
  text-align: center;
}

.eirIcon::after {
  content: none !important;
}

.alertmailLink {
  display: block;
  width: 100%;
  background-color: #666666;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  font-size: 1.4rem;
  margin-top: 70px;
}

.alertmailLink:hover {
  color: #fff;
}

.irTopTitle {
  width: 100%;
  display: inline-block !important;
}

.irTopSunLink {
  margin-left: 25px;
  float: right;
}

.irnewsWrapp {
  position: relative;
}

.irnewsWrapp .irTopSunLink {
  position: absolute;
  right: 22%;
  top: 20px;
}

.eircurrent {
  background: #bbbbbb !important;
  color: #fff !important;
  border-color: #bbbbbb !important;
}

.ir-list-link-information li {
  width: 31% !important;
  margin-right: 3% !important;
}

.ir-list-link-information li:nth-child(3n+3) {
  margin-right: 0 !important;
}

/*.eir .eirItem {
  margin-bottom: 10px;
}

.eir .eirItem a {
  padding-bottom: 10px;
  border-bottom: 1px solid #c4c4c4;
}*/
@media screen and (max-width: 999px) {
  .irSubLink-libraryWrapp ul li {
    width: calc((100% - 15px) / 2);
    margin-bottom: 11px;
    margin-right: 15px;
  }
  .irSubLink-libraryWrapp ul li:nth-child(even) {
    margin-right: 0;
  }
  .irSubLink-libraryWrapp ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    padding: 15px 12px;
    height: 50px;
  }
  .sp-br {
    display: block;
  }
  .irSubLinkWrapp ul li a, .irSubLink-libraryWrapp ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 66px;
  }
  .ttl_type01_sub {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .inner_eirTab {
    width: 100%;
    display: block;
  }
  .inner_eirTab_link {
    width: 100%;
    font-size: 1.3rem;
  }
  .inner_eirTab_link:first-child {
    margin: 0 0 20px 0;
  }
  .irSubLinkWrapp,
  .irSubLink-libraryWrapp {
    margin-bottom: 58px;
  }
  .irSubLinkWrapp ul li {
    width: calc((100% - 15px) / 2);
    margin-bottom: 11px;
    margin-right: 15px;
  }
  .irSubLinkWrapp ul li:nth-child(even) {
    margin-right: 0;
  }
  .irSubLinkWrapp ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    padding: 15px 12px;
    height: 66px;
  }
  .faq dd, .faq dt {
    padding: 15px 30px 15px 50px;
  }
  .faq dt::before, .faq dd::before {
    top: 15px;
  }
  .alertmailLink {
    margin-top: 20px;
  }
  .irnewsWrapp .irTopSunLink {
    position: absolute;
    right: 25px;
    top: 20px;
  }
}
.benefit_link {
  margin-top: 0 !important;
  padding: 0 !important;
  color: #3D3D3D !important;
  background: none !important;
}

.benefit_brandtxt {
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 0 !important;
}

.benefit_txt {
  margin-bottom: 20px;
}

/*# sourceMappingURL=style.css.map */
