@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
/* 共通見出し（h2相当）*/
.common-heading {
  display: block;
  padding-bottom: 0.45em;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 700;
  color: #003371;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #98A6B5;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767.98px) {
  .common-heading {
    font-size: 2rem;
  }
}

.common-subheading {
  display: block;
  line-height: 1.2;
  font-size: 3rem;
  font-weight: 700;
  color: #003371;
  padding-bottom: 0.5em;
  margin-bottom: 0.7em;
  border-bottom: 5px solid #ACACAC;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767.98px) {
  .common-subheading {
    font-size: 2rem;
    border-bottom: 3px solid #ACACAC;
  }
}

.main-subheading {
  display: block;
  line-height: 1.2;
  background-color: #eee;
  color: #000;
  border-left: 10px solid #003371;
  padding: 0.93em 0.5em 0.9em 1.1em;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767.98px) {
  .main-subheading {
    font-size: 1.6rem;
    border-left: 8px solid #003371;
    padding: 0.93em 0.5em 0.9em 1em;
  }
}

@media screen and (min-width: 768px), print {
  .common-list {
    margin-left: 1em;
  }
}
.common-list li {
  position: relative;
  list-style: none;
  font-size: 2rem;
  line-height: 1.2;
  color: #000000;
  padding-left: 1.1em;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .common-list li {
    font-size: 1.6rem;
  }
}
.common-list li:not(:last-child) {
  margin-bottom: 0.5em;
}
.common-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background-color: #003371;
}
@media screen and (max-width: 767.98px) {
  .common-list li::before {
    width: 10px;
    height: 10px;
  }
}

/* 共通見出し（h3相当）*/
/* 注釈（※）用インデント */
.note {
  margin-left: 1em;
  text-indent: -1em;
}

.link-button {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  background-color: #003371;
  border-radius: 10em;
  padding: 0.9em 2.5em;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 359.98px) {
  .link-button {
    font-size: 1.4rem;
  }
}
.link-button:hover {
  background-color: #449DBF;
  color: #fff;
}
.link-button:hover::after {
  border-color: #fff;
}

.link-button__primary {
  display: inline-block;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  background-color: #33B6CF;
  border-radius: 0.5em;
  padding: 0.75em 2em;
  text-align: center;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1439.98px) {
  .link-button__primary {
    padding: 0.75em 1.5em;
  }
}
@media screen and (max-width: 767.98px) {
  .link-button__primary {
    font-size: 1.8rem;
    padding: 0.65em 1.3em;
  }
}
@media screen and (max-width: 479.98px) {
  .link-button__primary {
    font-size: 1.6rem;
    padding: 0.6em 1em;
  }
}
@media screen and (max-width: 359.98px) {
  .link-button__primary {
    font-size: 1.4rem;
  }
}
.link-button__primary:hover {
  opacity: 0.8;
}

.link-button__secondary {
  position: relative;
  display: inline-block;
  padding-left: 1.3em;
  color: #000000;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.link-button__secondary::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #003371;
  font-size: 1rem;
}
.link-button__secondary:hover {
  color: #003371;
}
.link-button__secondary font {
  font-size: 1rem !important;
  display: block;
}

/* 共通リンクボタン（ホバー）*/
/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.inner::after {
  content: "";
  display: table;
  clear: both;
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}
.anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -151px;
  padding-bottom: 150px;
  background: transparent;
  z-index: -100;
}
@media screen and (min-width: 1100px), print {
  .anchor-point::before {
    margin-top: -209px;
    padding-bottom: 209px;
  }
}

@media screen and (min-width: 1100px), print {
  .global-contact {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.global-contact-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 280px;
  height: 100px;
}
@media screen and (min-width: 1100px), print {
  .global-contact-nav {
    width: 260px;
    height: 100px;
  }
}
@media screen and (min-width: 1440px), print {
  .global-contact-nav {
    width: 280px;
  }
}
@media screen and (min-width: 1600px), print {
  .global-contact-nav {
    width: 280px;
  }
}
@media screen and (max-width: 1099.98px) {
  .global-contact-nav {
    width: 100%;
    height: 100px;
  }
}
.global-contact-translate {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 50px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.74);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 1099.98px) {
  .global-contact-translate {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    font-size: 1.5rem;
    width: calc(100% - 50px);
  }
}
.global-contact-translate.pressed {
  background-color: #000000;
}
.global-contact-translate:hover {
  background-color: #000000;
}
.global-contact-translate span {
  font-weight: 700;
}
.global-contact-item {
  width: 50%;
  height: 100%;
}
.global-contact-item.__login {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #449DBF;
  padding: 0.5em;
  text-align: center;
}
.global-contact-item.__login .login-define dt a {
  position: relative;
  display: inline-block;
  padding-left: 1.5em;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.7em;
  line-height: 1.2;
  transition: opacity 0.3s ease;
}
.global-contact-item.__login .login-define dt a font {
  font-size: 1.2rem;
}
.global-contact-item.__login .login-define dt a:hover {
  opacity: 0.8;
}
.global-contact-item.__login .login-define dt a::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.2em;
  display: block;
  width: 14px;
  height: 18px;
  background: url("../img/base/icon_key_wht.svg") no-repeat center/cover;
}
.global-contact-item.__mail .mail-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.05em;
  background-color: #003371;
  border-left: 2px solid #003371;
  transition: all 0.3s ease;
}
.global-contact-item.__mail .mail-button:hover {
  background-color: #449DBF;
}
.global-contact-item.__mail .mail-button .en {
  font-size: 1.2rem;
  margin-top: 0.5em;
}
.global-contact-item.__mail .mail-button .jp {
  font-size: 1.6rem;
}
.global-contact-item.__mail .mail-button span {
  position: relative;
  font-weight: 700;
  display: block;
}

/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 320px;
  color: #000000;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  background-color: #fff;
}

html.nav-open,
html.contact-open {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}
/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (min-width: 1100px), print {
  .wrapper {
    overflow: hidden;
  }
}

/* --------------------------------

  header

-------------------------------- */
.header {
  position: relative;
}
.header .inner {
  position: static;
  max-width: none;
  z-index: auto;
}
@media screen and (min-width: 1100px), print {
  .header .inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding-top: 100px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1010;
  }
}
.header-logo {
  display: flex;
  align-items: center;
  position: absolute;
  top: 26px;
  left: 20px;
}
@media screen and (min-width: 1600px), print {
  .header-logo {
    top: 26px;
    left: 20px;
  }
}
@media screen and (max-width: 1099.98px) {
  .header-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    font-size: 100%;
    z-index: 900;
    padding: 0 0 0 0.5em;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
  }
}
.header-logo .site-logo {
  width: 300px;
}
@media screen and (max-width: 1439.98px) {
  .header-logo .site-logo {
    width: 300px;
  }
}
@media screen and (max-width: 1099.98px) {
  .header-logo .site-logo {
    width: 280px;
  }
}
@media screen and (max-width: 479.98px) {
  .header-logo .site-logo {
    width: 240px;
  }
}
@media screen and (max-width: 359.98px) {
  .header-logo .site-logo {
    width: 240px;
  }
}
.header-logo a,
.header-logo img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1099.98px) {
  .header-content {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    opacity: 0;
    z-index: 1120;
    margin-right: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .header-content {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-open .header-content {
    left: 0;
    margin: 60px 0 0;
    pointer-events: auto;
    opacity: 1;
  }
}
@media screen and (max-width: 1099.98px) {
  .header-content-inner {
    display: block;
    position: relative;
    width: 100%;
    margin: auto;
    padding: 0;
    background-color: #fff;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.header .pankuzu {
  background: #449DBF;
  padding: 0em 0 0 7em;
}
@media screen and (max-width: 1439.98px) {
  .header .pankuzu {
    padding: 0em 3em;
  }
}
@media screen and (max-width: 1099.98px) {
  .header .pankuzu {
    padding: 0em 3em;
  }
}
@media screen and (max-width: 767.98px) {
  .header .pankuzu {
    padding: 0em 2em;
  }
}
@media screen and (max-width: 575.98px) {
  .header .pankuzu {
    padding: 0em 1em;
  }
}
.header .pankuzu ul {
  margin: 0 auto;
  padding: 0;
}
.header .pankuzu li {
  display: inline-block;
  padding: 12px 0 10px 0;
  color: #fff;
}
.header .pankuzu li a:after {
  content: " > ";
  padding: 0 10px;
  color: #333;
}
.header .pankuzu li a {
  color: #fff;
}

/* スクロール時固定用 */
@media screen and (max-width: 1099.98px) {
  .header.fixed .header-logo {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  }
  .header.fixed .header-logo.hide {
    box-shadow: none;
  }
}
@media screen and (min-width: 1100px) {
  .header.fixed .inner {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform 0.2s;
  }
  #top .header.fixed .inner {
    position: fixed;
    top: -60px;
  }
  .header.fixed .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  }
}

/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
  position: fixed;
  top: 0;
  right: -290px;
  width: 290px;
  height: 100%;
  z-index: 1010;
  opacity: 1;
}
@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 100%;
    height: auto;
    margin: 0;
    opacity: 1;
    transition: none;
    z-index: 1010;
    max-width: 760px;
  }
}
@media screen and (min-width: 1280px), print {
  .nav {
    max-width: 890px;
  }
}
@media screen and (min-width: 1440px), print {
  .nav {
    max-width: 970px;
  }
}
@media screen and (min-width: 1600px), print {
  .nav {
    max-width: 1101px;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav {
    transition: right 0.3s;
  }
}
.nav-open .nav {
  right: 0;
  opacity: 1;
}
@media screen and (min-width: 1100px), print {
  .nav-open .nav {
    right: 0;
  }
}
.contact-open .nav {
  z-index: 920;
}
.nav .inner {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  z-index: 1;
}
@media screen and (max-width: 1099.98px) {
  .nav .inner {
    overflow-x: hidden;
    overflow-y: auto;
  }
}
.nav .nav-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 1100px), print {
  .nav .nav-container {
    position: static;
    background-color: transparent;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100px;
    padding-right: 260px;
  }
}
@media screen and (min-width: 1440px), print {
  .nav .nav-container {
    padding-right: 280px;
  }
}
@media screen and (min-width: 1600px), print {
  .nav .nav-container {
    padding-right: 280px;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav .nav-container {
    padding-bottom: 60px;
  }
}

/* メインナビ */
@media screen and (max-width: 1099.98px) {
  .main-nav {
    opacity: 0;
    padding: 53px 10px 15px;
  }
  .nav-open .main-nav {
    opacity: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav {
    position: relative;
    display: flex;
    align-items: flex-end;
    flex: 1;
    max-width: 500px;
  }
}
@media screen and (min-width: 1280px), print {
  .main-nav {
    max-width: 630px;
  }
}
@media screen and (min-width: 1440px), print {
  .main-nav {
    max-width: 630px;
  }
}
@media screen and (min-width: 1600px), print {
  .main-nav {
    max-width: 680px;
  }
}
.main-nav .nav-item {
  flex-grow: 1;
  position: relative;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item {
    margin-right: 0.5em;
  }
}
@media screen and (min-width: 1600px), print {
  .main-nav .nav-item {
    margin-right: 1em;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item {
    position: relative;
  }
}
.main-nav .nav-item.main-nav-active .nav-link {
  color: #003371;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item.main-nav-active .nav-link {
    color: #003371;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item.main-nav-active .nav-link .jp {
    border-color: #003371;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-news .nav-link span, .main-nav .nav-company .nav-link span {
    padding-left: 0.8em;
    padding-right: 0.8em;
  }
}
.main-nav .nav-link {
  position: relative;
  display: block;
  line-height: 1.2;
  font-feature-settings: "palt";
  transition: color 0.3s ease;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    color: #000000;
    letter-spacing: 0.05em;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1280px), print {
  .main-nav .nav-link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    font-size: 1.5rem;
    height: 55px;
    color: #000;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 0 2em 0 0.5em;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link::before {
    content: "";
    position: absolute;
    right: 0.6em;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    display: block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #003371;
    border-left: 1px solid #003371;
  }
}
.main-nav .nav-link:hover {
  color: #003371;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link:hover {
    color: #003371;
  }
  .main-nav .nav-link:hover span {
    border-color: #003371;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link .jp {
    padding-bottom: 0.45em;
    margin-bottom: 0.45em;
    transition: border 0.4s ease;
    border-bottom: 3px solid #C8D5E5;
  }
}
.main-nav .nav-link .en {
  text-align: center;
  color: #003371;
  font-size: 1.3rem;
  font-weight: 700;
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link .en {
    font-size: 1.2rem;
    margin-top: 0.2em;
  }
}
.main-nav .nav-link span {
  position: relative;
  display: block;
  font-weight: 700;
}
/* ナビゲーション開閉ボタン */
.nav-button {
  display: block;
  position: fixed;
  top: 11px;
  right: 0.5em;
  width: 40px;
  height: 40px;
  line-height: 1;
  border-radius: 0;
  cursor: pointer;
  z-index: 910;
}
@media screen and (min-width: 1100px), print {
  .nav-button {
    display: none;
  }
}
.nav-open .nav-button {
  display: none;
}
.nav-button-icon {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 14px;
  left: 0;
  width: 26px;
  height: 2px;
  margin: auto;
  border-radius: 10em;
  background-color: #003371;
}
.nav-button-icon::before, .nav-button-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 10em;
  background-color: #003371;
}
.nav-button-icon::before {
  margin-top: -7px;
}
.nav-button-icon::after {
  margin-top: 7px;
}
.nav-button::after {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  color: #003371;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #003371;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 1100px), print {
  .nav-close-button {
    display: none;
  }
}
.nav-close-button .nav-button-icon {
  background: none;
  bottom: 16px;
}
.nav-close-button .nav-button-icon::before, .nav-close-button .nav-button-icon::after {
  margin-top: 0;
  background-color: #fff;
}
.nav-close-button .nav-button-icon::before {
  transform: rotate(45deg);
}
.nav-close-button .nav-button-icon::after {
  transform: rotate(-45deg);
}
.nav-close-button::after {
  content: "CLOSE";
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

/* ナビゲーション背景 */
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}
.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: auto;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
}
.nav-open .nav-screen-overlay {
  pointer-events: auto;
  opacity: 0.4;
  cursor: pointer;
}

@media screen and (min-width: 1100px) {
  .nav.fixed {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform 0.2s;
  }
  #top .nav.fixed {
    top: -60px;
  }
  .nav.fixed .contact-button {
    right: -13px;
  }
}

/* --------------------------------

  main

-------------------------------- */
.main {
  display: block;
  position: relative;
  padding: 2em 1em 0 1em;
  background: #fff;
  z-index: 100;
  flex: 1;
  overflow-x: hidden;
}
#top .main {
  padding: 0 1em 0 1em;
}
@media screen and (min-width: 1100px), print {
  .main {
    padding: 5em 2em 0 2em;
    overflow: visible;
  }
  #top .main {
    padding: 0 2em 0 2em;
  }
}

.main > .inner {
  max-width: none;
}

/* --------------------------------

  footer

-------------------------------- */
.footer .inner {
  max-width: 1140px;
}
@media screen and (max-width: 639.98px) {
  .footer-map {
    position: relative;
    padding-top: 90%;
  }
}
@media screen and (max-width: 639.98px) {
  .footer-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4em 2em;
}
@media screen and (max-width: 767.98px) {
  .footer-container {
    padding: 2.5em 1em;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 479.98px) {
  .footer-container {
    padding: 2em 1em;
  }
}
.footer-nav {
  display: flex;
}
.footer-nav-list:first-child {
  margin-right: 4em;
}
@media screen and (max-width: 991.98px) {
  .footer-nav-list:first-child {
    margin-right: 2em;
  }
}
@media screen and (max-width: 479.98px) {
  .footer-nav-list:first-child {
    margin-right: 1.5em;
  }
}
.footer-nav-list li {
  position: relative;
  list-style: none;
}
.footer-nav-list li:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width: 479.98px) {
  .footer-nav-list li:not(:last-child) {
    margin-bottom: 0.5em;
  }
}
.footer-nav-list li a {
  position: relative;
  display: inline-block;
  padding-left: 1.1em;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000000;
  transition: color 0.3s ease;
}
@media screen and (max-width: 479.98px) {
  .footer-nav-list li a {
    font-size: 1.4rem;
  }
}
.footer-nav-list li a:hover {
  color: #449DBF;
}
.footer-nav-list li a:hover::before {
  background-color: #449DBF;
}
.footer-nav-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #27364E;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 479.98px) {
  .footer-nav-list li a::before {
    width: 10px;
    height: 10px;
  }
}
.footer-main {
  margin-right: 2em;
}
@media screen and (max-width: 991.98px) {
  .footer-main {
    margin-right: 1.5em;
  }
}
@media screen and (max-width: 767.98px) {
  .footer-main {
    margin-right: 0;
    margin-bottom: 1.5em;
  }
}
.footer-logo dt {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 479.98px) {
  .footer-logo dt {
    text-align: center;
    margin-bottom: 1em;
  }
}
.footer-logo dd {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  color: #000000;
}
@media screen and (max-width: 479.98px) {
  .footer-logo dd {
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: center;
  }
}
.footer .pagetop {
  display: block;
  position: fixed;
  right: 5px;
  bottom: 10px;
  width: 45px;
  height: 45px;
  text-align: center;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 0.3s;
}
@media screen and (min-width: 768px), print {
  .footer .pagetop {
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1100px), print {
  .footer .pagetop {
    right: 10px;
    bottom: 10px;
  }
}
.footer .pagetop.fixed {
  opacity: 1;
  pointer-events: auto;
}
.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  border-radius: 0.35rem;
  background-color: #449DBF;
  transition-property: background-color;
  transition-duration: 0.2s;
}
.footer .pagetop a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #003371;
}
.footer .pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}
.footer .copy {
  overflow: hidden;
  background-color: #003371;
  padding: 1.5em 1em 1.5em 1em;
}
.footer .copy small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1099.98px) {
  .footer .copy small {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .footer .copy small {
    font-size: 1.4rem;
  }
}
.footer .copy #current-year {
  padding: 0 3px;
}
@media screen and (max-width: 479.98px) {
  .footer .copy #current-year {
    display: block;
  }
}
.footer .copy span {
  font-weight: 400;
}
@media screen and (max-width: 479.98px) {
  .footer .copy span {
    display: none;
  }
}

.swiper-container {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  z-index: 1;
}
@media screen and (min-width: 1100px), print {
  .swiper-container {
    height: 813px;
  }
}
.swiper-img {
  display: block;
  position: relative;
}
.swiper-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
@media screen and (min-width: 1100px), print {
  .swiper-img img {
    min-height: 813px;
  }
}
@media screen and (max-width: 1099.98px) {
  .swiper-img img {
    min-height: 65vw;
  }
}
.swiper-catch {
  font-size: 4rem;
  line-height: 1.3;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", sans-serif;
  color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}
@media screen and (min-width: 1100px), print {
  .swiper-catch {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0 1.5em 1em;
  }
}
@media screen and (min-width: 1280px), print {
  .swiper-catch {
    padding: 0 0 2em 2em;
  }
}
@media screen and (min-width: 1600px), print {
  .swiper-catch {
    padding: 0 0 2.5em 3.5em;
  }
}
@media screen and (max-width: 1099.98px) {
  .swiper-catch {
    background-color: #00ADEF;
    color: #F5FE01;
    padding: 0.5em;
    width: 100%;
    display: block;
    font-size: 4rem;
    text-align: center;
  }
}
@media screen and (max-width: 767.98px) {
  .swiper-catch {
    font-size: 3rem;
  }
}
@media screen and (max-width: 479.98px) {
  .swiper-catch {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 359.98px) {
  .swiper-catch {
    font-size: 2rem;
  }
}
.swiper-catch span {
  display: block;
  font-weight: 900;
}

.slider {
  position: relative;
  overflow: hidden;
}
.slider .inner {
  width: 100%;
  height: 100%;
  max-width: none;
}
.slider-main {
  position: relative;
}
.slider-main-container {
  display: block;
  position: relative;
}
.slider-main-container::before {
  content: "";
  display: block;
  padding-top: 40.7%;
}
@media screen and (min-width: 1100px), print {
  .slider-main-container::before {
    padding-top: 813px;
  }
}
@media screen and (min-width: 768px), print {
  .slider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.slider .swiper-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  z-index: 100;
}
@media screen and (max-width: 1099.98px) {
  .slider .swiper-pagination {
    justify-content: center;
    bottom: 30px;
  }
}
@media screen and (max-width: 639.98px) {
  .slider .swiper-pagination {
    bottom: 15px;
  }
}
.slider .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  background-color: #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 8px;
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
  margin: 0;
  border-radius: 0;
}
@media screen and (max-width: 639.98px) {
  .slider .swiper-pagination .swiper-pagination-bullet {
    height: 5px;
    width: 25px;
  }
}
.slider .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
  margin: 0 13px 0 0;
}
.slider .swiper-pagination .swiper-pagination-bullet span {
  font-weight: 500;
}
.slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #003371;
}

.swiper-arrow {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  z-index: 1200;
  max-width: 1175px;
}
@media screen and (min-width: 1600px), print {
  .swiper-arrow {
    max-width: 1310px;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.page-title {
  height: 420px;
  padding: 3.5em 7em;
}
@media screen and (max-width: 1439.98px) {
  .page-title {
    padding: 2em 3em;
  }
}
@media screen and (max-width: 1099.98px) {
  .page-title {
    height: 320px;
  }
}
@media screen and (max-width: 767.98px) {
  .page-title {
    height: 280px;
    padding: 1.5em 2em;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title {
    height: 180px;
    padding: 1em 1em;
  }
}
.news-page .page-title {
  background: url("../img/pages/news/bg.jpg") no-repeat center/cover;
}
.products-page .page-title {
  background: url("../img/pages/products/bg.jpg") no-repeat center/cover;
}
.brand-page .page-title {
  background: url("../img/pages/brand/bg.jpg") no-repeat center/cover;
}
.company-page .page-title {
  background: url("../img/pages/company/bg.jpg") no-repeat center/cover;
}
.login-page .page-title {
  background: url("../img/pages/login/bg.jpg") no-repeat center/cover;
}
.commodity_market-page .page-title {
  background: url("../img/pages/commodity_market/bg.jpg") no-repeat center/cover;
}
.newspaper-page .page-title {
  background: url("../img/pages/newspaper/bg.jpg") no-repeat center/cover;
}
.contact-page .page-title {
  background: url("../img/pages/contact/bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 1099.98px) {
  .page-title {
    z-index: 0;
  }
}
.page-title-inner {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: center;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0 auto;
}
.page-title-name .en {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 767.98px) {
  .page-title-name .en {
    font-size: 4rem;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title-name .en {
    font-size: 3rem;
    margin-bottom: 0;
  }
}
.page-title-name .jp {
  font-weight: 700;
  font-size: 3rem;
}
@media screen and (max-width: 767.98px) {
  .page-title-name .jp {
    font-size: 2rem;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title-name .jp {
    font-size: 1.8rem;
  }
}
.page-title-name span {
  display: block;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: left;
}

/* --------------------------------

  アニメーション

-------------------------------- */
._anim-point.tak-products-container {
  transition-property: transform opacity;
  transition-delay: 0.5s;
  transition-duration: 1s;
  transition-timing-function: ease;
  transform: translateY(30px);
  opacity: 0;
}
._anim-point.tak-products-header {
  transition-property: transform opacity;
  transition-delay: 0.5s;
  transition-duration: 1s;
  transition-timing-function: ease;
  transform: translateY(30px);
  opacity: 0;
}
._anim-point.tak-about-container {
  transition-property: transform opacity;
  transition-delay: 0.5s;
  transition-duration: 1s;
  transition-timing-function: ease;
  transform: translateY(30px);
  opacity: 0;
}
._anim-point.tak-brand-container {
  transition-property: transform opacity;
  transition-delay: 0.5s;
  transition-duration: 1s;
  transition-timing-function: ease;
  transform: translateY(30px);
  opacity: 0;
}
._anim-point.tak-menu-container .tak-menu-item:first-child {
  transition-property: transform opacity;
  transition-delay: 0.5s;
  transition-duration: 1s;
  transition-timing-function: ease;
  transform: translateX(-100%);
  opacity: 0;
}
@media screen and (max-width: 767.98px) {
  ._anim-point.tak-menu-container .tak-menu-item:first-child {
    transform: translateY(30px);
  }
}
._anim-point.tak-menu-container .tak-menu-item:last-child {
  transition-property: transform opacity;
  transition-delay: 0.5s;
  transition-duration: 1s;
  transition-timing-function: ease;
  transform: translateX(100%);
  opacity: 0;
}
@media screen and (max-width: 767.98px) {
  ._anim-point.tak-menu-container .tak-menu-item:last-child {
    transform: translateY(30px);
  }
}
._anim-point.tak-news-block .tak-news-block__inner {
  transition-property: transform opacity;
  transition-delay: 0.5s;
  transition-duration: 1s;
  transition-timing-function: ease;
  transform: translateX(-100%);
  opacity: 0;
}
@media screen and (max-width: 1099.98px) {
  ._anim-point.tak-news-block .tak-news-block__inner {
    transform: translateY(30px);
  }
}
._anim-point.tak-member-block .tak-member-block__inner {
  transition-property: transform opacity;
  transition-delay: 0.5s;
  transition-duration: 1s;
  transition-timing-function: ease;
  transform: translateX(100%);
  opacity: 0;
}
@media screen and (max-width: 1099.98px) {
  ._anim-point.tak-member-block .tak-member-block__inner {
    transform: translateY(30px);
  }
}
._anim-point.active.tak-products-container {
  transform: translateY(0);
  opacity: 1;
}
._anim-point.active.tak-products-header {
  transform: translateY(0);
  opacity: 1;
}
._anim-point.active.tak-brand-container {
  transform: translateY(0);
  opacity: 1;
}
._anim-point.active.tak-about-container {
  transform: translateY(0);
  opacity: 1;
}
._anim-point.active.tak-menu-container .tak-menu-item:first-child {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 767.98px) {
  ._anim-point.active.tak-menu-container .tak-menu-item:first-child {
    transform: translateY(0);
  }
}
._anim-point.active.tak-menu-container .tak-menu-item:last-child {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 767.98px) {
  ._anim-point.active.tak-menu-container .tak-menu-item:last-child {
    transform: translateY(0);
  }
}
._anim-point.active.tak-news-block .tak-news-block__inner, ._anim-point.active.tak-member-block .tak-member-block__inner {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 1099.98px) {
  ._anim-point.active.tak-news-block .tak-news-block__inner, ._anim-point.active.tak-member-block .tak-member-block__inner {
    transform: translateY(0);
  }
}

/* --------------------------------

  上部固定ボタン（お問い合わせ）

-------------------------------- */
/* お問い合わせ（電話）*/
.tel-button {
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55px;
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1;
  color: #fff;
  text-align: center;
  border: none;
  background: #003371;
  cursor: pointer;
  border-left: 1px solid #fff;
  z-index: 990;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px), print {
  .tel-button {
    display: none;
  }
}
.tel-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url("../img/base/icon-tel_wht.png") center no-repeat;
  background-size: contain;
}
.tel-button::after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2rem;
}
.tel-button:hover {
  background-color: #449DBF;
}
.tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* --------------------------------

  フォーム部品

-------------------------------- */
.form-fin-link:hover {
  color: #003371;
}

.contact-form-section {
  padding: 0 1em 2.5em 1em;
}
@media screen and (min-width: 1100px), print {
  .contact-form-section {
    padding: 0 2em 5em 2em;
  }
}

/* レイアウト用 */
.form-check {
  margin-bottom: 0;
  padding-left: 0;
}
.form-check-inline {
  padding-left: 0;
}
.form-check-label {
  display: inline-flex;
  vertical-align: top;
  position: relative;
  font-weight: 500;
  cursor: pointer;
  font-size: 1.8rem;
  color: #666666;
  font-feature-settings: "palt";
}
.form-check-icon {
  display: block;
  margin: 2px 0.6em 0 0;
}
@media screen and (max-width: 639.98px) {
  .form-check-icon {
    margin: 2px 0.6em 0 0;
  }
}
.form-check-icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
  background-color: #fff;
  transition: border-color 0.2s, background-color 0.2s;
}
@media screen and (min-width: 640px), print {
  .form-check-icon::before {
    width: 24px;
    height: 24px;
  }
}
.form-check-checkbox::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 8px;
  width: 9px;
  height: 14px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}
@media screen and (min-width: 640px), print {
  .form-check-checkbox::after {
    top: 5px;
    left: 8px;
    width: 9px;
    height: 14px;
  }
}
.form-check-radio::before {
  border-radius: 100%;
  border-color: #666666;
  width: 22px;
  height: 22px;
}
.form-check-radio::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 4px;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: transparent;
  transition: background-color 0.2s;
}
@media screen and (min-width: 1100px), print {
  .form-check-radio::after {
    left: 4px;
    width: 14px;
    height: 14px;
  }
}
.form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-check-input[type=radio]:checked + .form-check-icon::after {
  background-color: #003371;
}
.form-check-input[type=checkbox]:checked + .form-check-icon::before {
  border-color: #003371;
  background-color: #003371;
}
.form-check-input[type=checkbox].validate-error + .form-check-icon::before, .form-check-input[type=radio].validate-error + .form-check-icon::before {
  border-color: #c00;
}

.privacy-check-agree {
  text-align: center;
  margin-top: 2em;
}
.privacy-check-agree input {
  display: none;
}
.privacy-check-agree input:checked + label::after {
  opacity: 1;
}
.privacy-check-agree label {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
  padding-left: 2em;
  display: inline-block;
}
.privacy-check-agree label::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 0.2em;
  border: 1px solid #003371;
}
.privacy-check-agree label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: -1px;
  display: block;
  width: 10px;
  height: 15px;
  transform: rotate(-135deg);
  border-top: 3px solid #003371;
  border-left: 3px solid #003371;
  opacity: 0;
}

.form-table {
  display: block;
  line-height: 1.5;
}
.form-table tbody {
  display: block;
}
.form-table tr {
  display: table;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 767.98px) {
  .form-table tr {
    display: block;
    padding: 0;
  }
  .form-table tr:not(:last-child) {
    margin-bottom: 2em;
  }
}
.form-table th {
  position: relative;
  vertical-align: top;
  width: 245px;
  padding: 1.15em 1em 1em 1em;
  background-color: #EEEEEE;
}
@media screen and (max-width: 767.98px) {
  .form-table th {
    display: block;
    width: auto;
    margin-bottom: 1em;
    padding: 0 0 0.5em;
    border-bottom: 2px solid #003371;
    background: none;
  }
}
.form-table td {
  vertical-align: middle;
  font-weight: 500;
  padding: 1em;
  font-size: 1.8rem;
  color: #666666;
}
@media screen and (max-width: 1099.98px) {
  .form-table td {
    padding-right: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .form-table td {
    display: block;
    padding: 0 0.5em;
  }
}
.form-table td div {
  font-weight: 500;
}

/* レイアウト用：タイトル */
.form-label {
  max-width: 100%;
  min-width: 6em;
}

/* レイアウト用：チェックボックス・ラジオボタン */
.form-check {
  margin: 0 1.5em 1em 0;
}
@media screen and (max-width: 479.98px) {
  .form-check {
    margin: 0 0 0.5em 0;
  }
}
.form-check-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -1.5em -1em 0;
}
@media screen and (max-width: 479.98px) {
  .form-check-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 0 -0.5em 0;
  }
}
.form-check-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -1.5em -1em 0;
}
@media screen and (max-width: 479.98px) {
  .form-check-box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 0 -0.5em 0;
  }
}

/* フォーム部品：タイトル */
.form-title {
  vertical-align: middle;
  font-weight: 500;
  font-size: 1.8rem;
  color: #666666;
}
.form-title .desc {
  font-size: 1.2rem;
  line-height: 1.2;
  display: block;
  margin-top: 0.4em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767.98px) {
  .form-title .desc {
    display: inline-block;
    margin-left: 0.5em;
  }
}

@media screen and (max-width: 767.98px) {
  .contact-form {
    margin-top: 2em;
  }
}

/* フォーム部品：入力必須マーク */
.form-icon {
  float: right;
}
.form-icon::before {
  content: "";
  display: block;
  width: 58px;
  margin: auto;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 1.8em;
  text-align: center;
  border-radius: 0;
  font-weight: 400;
  margin-top: -2px;
}
@media screen and (max-width: 767.98px) {
  .form-icon::before {
    font-size: 1.6rem;
    line-height: 1.8em;
  }
}
@media screen and (max-width: 479.98px) {
  .form-icon::before {
    font-size: 1.4rem;
    width: 50px;
    margin-top: 1px;
  }
}
.form-icon-required::before {
  content: "必須";
  color: #fff;
  background-color: #c00;
}
@media screen and (max-width: 767.98px) {
  .form-icon-free::before {
    content: "任意";
    color: #fff;
    background-color: #fff;
  }
}

/* フォーム部品：入力欄 */
.form-control {
  width: 100%;
  height: 2.28em;
  margin-top: -0.5em;
  margin-bottom: -0.5em;
  padding: 0 0.5em;
  color: #000000;
  font-family: inherit;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 0;
  border: 1px solid #D6D6D6;
  background-color: #fff;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:active, .form-control:focus {
  border-color: #444444;
  background-color: #fff;
  outline: none;
}
.form-control:active, .form-control:focus {
  box-shadow: none;
  border-color: #444444;
  background-color: #fff;
  outline: none;
}
@media screen and (max-width: 767.98px) {
  .form-control {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.form-group-fluid {
  margin-bottom: 1em;
}
@media screen and (max-width: 479.98px) {
  .form-group-fluid {
    margin-bottom: 0.6em;
  }
}
.form-group-fluid .form-text-left {
  font-size: 1.7rem;
  line-height: 1.2;
  color: #545454;
}

.form-short {
  max-width: 120px;
  text-align: center;
}

.form-middle {
  max-width: 233px;
}

.form-low {
  height: 1.6em;
}
@media screen and (max-width: 767.98px) {
  .form-low {
    height: 2em;
  }
}

.form-inline {
  display: inline-flex;
  margin-top: 0;
  margin-bottom: 0;
}
.form-inline-right {
  margin-left: 0.5em;
}
.form-inline-left {
  margin-right: 0.5em;
}
.form-inline-both {
  margin-right: 0.5em;
  margin-left: 0.5em;
}

/* フォーム部品：テキストエリア */
.form-textarea {
  resize: vertical;
  vertical-align: top;
  height: 8em;
  min-height: 2.5em;
  max-height: 16em;
  padding: 0.5em 0.5em 0;
}
.form-textarea-low {
  height: 2.5em;
}
.form-textarea-high {
  height: 16em;
}

/* フォーム部品：セレクト */
.select-wrap {
  position: relative;
  max-width: 233px;
  color: #000000;
  background-color: #fff;
}
@media screen and (max-width: 479.98px) {
  .select-wrap {
    max-width: 233px;
  }
}
@media screen and (max-width: 359.98px) {
  .select-wrap {
    max-width: 233px;
  }
}
.select-wrap select {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 1.8em;
  padding-left: 1.1em;
  color: #666666;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-wrap select option {
  background-color: #fff;
}
.select-wrap select::-ms-expand {
  display: none;
}
.select-wrap .select-icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  margin: auto;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 9px solid #666666;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 1;
}

/* フォーム部品：ラジオボタン、チェックボックス共通 */
.form-box {
  position: absolute;
  opacity: 0;
}
.form-box + label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
  padding-left: 26px;
  cursor: pointer;
}
.form-box + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  border: 1px solid #ccc;
  background: #fff;
}
.form-box + label::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
}
.form-box:checked + label {
  color: #003371;
}
.form-box:checked + label::before {
  border-color: #003371;
}

/* フォーム部品：ラジオボタン */
.form-box-radio + label::before {
  border-radius: 100%;
}
.form-box-radio + label::after {
  top: 0;
  bottom: 0;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
  opacity: 1;
}
.form-box-radio:checked + label::after {
  background-color: #003371;
  opacity: 1;
}

/* フォーム部品：チェックボックス */
.form-box-check + label::before {
  border-radius: 0;
}
.form-box-check + label::after {
  top: -10px;
  bottom: 0;
  left: 3px;
  width: 20px;
  height: 10px;
  border-left: 3px solid #003371;
  border-bottom: 3px solid #003371;
  opacity: 0;
  transform: rotate(-45deg);
}
.form-box-check:checked + label::after {
  opacity: 1;
}

/* フォーム部品：エラーメッセージ */
input.validate-error,
select.validate-error,
textarea.validate-error {
  border-color: #c00;
}

span.validate-error {
  display: block !important;
  font-size: 0.85em;
  color: #c00;
}
span.validate-error:first-of-type {
  margin-top: 1em;
}
.error-message-check span.validate-error:first-of-type {
  margin-top: 0;
  margin-bottom: -0.5em;
}
.error-message-check span.validate-error:not(:first-of-type) {
  display: none !important;
}

/* フォーム部品：送信ボタン */
.form-buttons {
  padding-top: 2em;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .form-buttons {
    padding-top: 3em;
  }
}

.form-button[disabled] {
  pointer-events: none;
}

.form-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 72px;
  border: 0;
  border-radius: 0;
  background: none;
  font-weight: normal;
  font-size: 100%;
  font-size: 1.8rem;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-align: center;
  margin: 0.5em;
  padding: 0.8em 2em 0.8em 3em;
  color: #fff;
  line-height: 1.1;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.form-button-send {
  border-color: #003371;
  background: #003371;
  border-radius: 10em;
}
.form-button-send:hover {
  border-color: #449DBF;
  background: #449DBF;
}
.form-button-back {
  border-color: #999;
  background: #999;
}
.form-button-back:hover {
  border-color: #ccc;
  background: #ccc;
}
.form-button-inline {
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.425em 0.9em 0.45em 0.9em;
  font-size: 1.7rem;
}
.form-button-inline::after {
  display: none;
}
.form-button-search {
  border-color: #fff;
  background: #D6D6D6;
}
.form-button-search:hover {
  border-color: #003371;
  background: #003371;
}
.form-button-upload {
  margin: 0;
  padding: 0.8em 1em;
  font-size: 1.1em;
  color: #fff;
  background: #e21664;
}
.form-button-upload:hover {
  color: #fff;
  text-decoration: none;
  background: #e94709;
}
.form-button-upload::after {
  display: none;
}

.form-area-age .form-short {
  margin-right: 1em;
}
@media screen and (max-width: 479.98px) {
  .form-area-age .form-short {
    margin-right: 0.6em;
  }
}

/* --------------------------------

  ローディング

-------------------------------- */
.loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.6s ease;
}
@media screen and (max-width: 1099.98px) {
  .loader {
    position: absolute;
    height: auto;
    padding-top: 50%;
  }
}
.loader.loading {
  opacity: 1;
  pointer-events: auto;
}
.loader::before {
  content: "";
  display: block;
  position: absolute;
  top: -45px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  margin: auto;
  border: 4px solid #ddd;
  border-top: 4px solid #003371;
  border-radius: 50%;
  z-index: 1;
  animation: spin 3s linear infinite;
}
@media screen and (max-width: 1099.98px) {
  .loader::before {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    border-top: 2px solid #003371;
    top: 0;
  }
}
.loader img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 140px;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* --------------------------------

  id01　トップページ

-------------------------------- */
/* ページ内共通 */
.section {
  margin-right: -1em;
  margin-left: -1em;
}
@media screen and (min-width: 1100px), print {
  .section {
    margin-right: -2em;
    margin-left: -2em;
  }
}
.section-secondary {
  padding-right: 1em;
  padding-left: 1em;
}
@media screen and (min-width: 1100px), print {
  .section-secondary {
    padding-right: 2em;
    padding-left: 2em;
  }
}
.section-secondary:not(:last-child) {
  margin-bottom: 10em;
}
@media screen and (max-width: 639.98px) {
  .section-secondary:not(:last-child) {
    margin-bottom: 3em;
  }
}
.section-secondary .inner {
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .section-secondary .inner {
    line-height: 1.8;
  }
}
.section-dummy {
  text-align: center;
}
.section-dummy:not(:last-child) {
  margin-bottom: 5em;
}
.section-dummy .inner {
  max-width: none;
  text-align: center;
}
.section-dummy_wide {
  overflow: hidden;
}
.section-dummy_wide .inner {
  margin-right: -23%;
  margin-left: -23%;
}
@media screen and (min-width: 1100px), print {
  .section-dummy_wide .inner {
    margin-right: -250px;
    margin-left: -250px;
  }
}
.section-header {
  max-width: 1100px;
  margin: 0 auto 2.5em;
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .section-header {
    margin: 0 auto 5em;
  }
}
.section-heading {
  display: block;
  max-width: 539px;
  margin: 0 auto;
  text-align: center;
  color: #003371;
}
.section-heading .en {
  line-height: 1.2;
  font-size: 3.5rem;
  font-weight: 700;
  display: block;
  padding-bottom: 0.25em;
  margin-bottom: 0.5em;
  border-bottom: 5px solid #003371;
}
@media screen and (max-width: 767.98px) {
  .section-heading .en {
    font-size: 2.8rem;
    border-bottom: 4px solid #003371;
  }
}
.section-heading .jp {
  display: block;
  line-height: 1.2;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .section-heading .jp {
    font-size: 1.8rem;
  }
}

.tak-intro-section .inner {
  max-width: none;
}
.tak-intro-container {
  display: flex;
}
@media screen and (max-width: 1099.98px) {
  .tak-intro-container {
    flex-direction: column;
  }
}

.tak-news-block {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  background-color: #fff;
  padding: 6em 6em 6em 6em;
}
@media screen and (max-width: 1439.98px) {
  .tak-news-block {
    padding: 3em 3em 3em 3em;
  }
}
@media screen and (max-width: 1099.98px) {
  .tak-news-block {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 767.98px) {
  .tak-news-block {
    padding: 2em;
  }
}
@media screen and (max-width: 479.98px) {
  .tak-news-block {
    padding: 1.5em 1em;
  }
}
.tak-news-block__inner {
  max-width: 530px;
  width: 100%;
}
.tak-news-block .common-heading {
  padding-top: 0.65em;
}
@media screen and (max-width: 1099.98px) {
  .tak-news-block .common-heading {
    padding-top: 0;
  }
}

.tak-member-block {
  width: 50%;
  background-color: #003371;
  padding: 6em 6em 6em 6em;
}
@media screen and (max-width: 1439.98px) {
  .tak-member-block {
    padding: 3em 3em 3em 3em;
  }
}
@media screen and (max-width: 1099.98px) {
  .tak-member-block {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 767.98px) {
  .tak-member-block {
    padding: 2em;
  }
}
@media screen and (max-width: 479.98px) {
  .tak-member-block {
    padding: 1.5em 1em;
  }
}
.tak-member-block__inner {
  max-width: 530px;
  width: 100%;
}

.member-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
  border-bottom: 2px solid #98A6B5;
}
@media screen and (max-width: 767.98px) {
  .member-header {
    padding-bottom: 0.8em;
    margin-bottom: 1em;
  }
}
.member-heading {
  position: relative;
  display: block;
  color: #fff;
  line-height: 1.2;
  font-size: 2.7rem;
  font-weight: 700;
  padding-left: 1.2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .member-heading {
    font-size: 2rem;
  }
}
@media screen and (max-width: 359.98px) {
  .member-heading {
    font-size: 1.8rem;
  }
}
.member-heading::before {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  display: block;
  width: 19px;
  height: 24px;
  background: url("../img/base/icon_key_wht.svg") no-repeat center/cover;
}
@media screen and (max-width: 767.98px) {
  .member-heading::before {
    width: 16px;
    height: 20px;
  }
}
@media screen and (max-width: 359.98px) {
  .member-heading::before {
    width: 14px;
    height: 18px;
    top: 0.05em;
  }
}
.member-more {
  margin-left: 1em;
}
@media screen and (max-width: 1439.98px) {
  .member-more {
    margin-left: 0.5em;
  }
}
.member-text {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.028em;
  color: #fff;
  margin-top: 1em;
}
@media screen and (max-width: 767.98px) {
  .member-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .member-text {
    font-size: 1.4rem;
  }
}
.member-link-button {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 0.5em;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #4A5053;
  padding: 1.15em 2.3em 1.15em 1.2em;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .member-link-button {
    font-size: 1.6rem;
  }
}
.member-link-button:hover {
  opacity: 0.8;
}
.member-link-button::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 14px solid #003371;
}
@media screen and (max-width: 767.98px) {
  .member-link-button::after {
    right: 15px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid #003371;
  }
}
.member-link-button span {
  position: relative;
  font-weight: 700;
  display: block;
  padding-left: 4em;
}
@media screen and (max-width: 767.98px) {
  .member-link-button span {
    padding-left: 3.5em;
  }
}
.member-link-button span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.member-link-button.__accent1 span::before {
  width: 58px;
  height: 55px;
  background: url("../img/base/icon_rosoku.png") no-repeat center/cover;
}
@media screen and (max-width: 767.98px) {
  .member-link-button.__accent1 span::before {
    width: 40px;
    height: 38px;
  }
}
.member-link-button.__accent2 span::before {
  width: 62px;
  height: 55px;
  background: url("../img/base/icon_shinbun.png") no-repeat center/cover;
}
@media screen and (max-width: 767.98px) {
  .member-link-button.__accent2 span::before {
    width: 43px;
    height: 38px;
  }
}
.member-buttons-more:not(:last-child) {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767.98px) {
  .member-buttons-more:not(:last-child) {
    margin-bottom: 1em;
  }
}

.tak-about-section {
  padding: 3em 1em;
  background: url("../img/top/bg01.jpg") no-repeat center/cover;
}
@media screen and (min-width: 1100px), print {
  .tak-about-section {
    padding: 7.5em 2em;
  }
}
@media screen and (max-width: 479.98px) {
  .tak-about-section {
    padding: 2.5em 1em;
  }
}
.tak-about-heading {
  display: block;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 767.98px) {
  .tak-about-heading {
    font-size: 2rem;
  }
}
@media screen and (max-width: 359.98px) {
  .tak-about-heading {
    font-size: 1.8rem;
  }
}
.tak-about-text {
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  line-height: 2.5;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .tak-about-text {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 359.98px) {
  .tak-about-text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.tak-about-text .br {
  display: block;
}
.tak-about-more {
  text-align: center;
  margin-top: 2em;
}
@media screen and (max-width: 767.98px) {
  .tak-about-more {
    margin-top: 1.5em;
  }
}

.tak-brand-section {
  padding: 3em 1em;
}
@media screen and (min-width: 1100px), print {
  .tak-brand-section {
    padding: 7.5em 2em;
  }
}
@media screen and (max-width: 479.98px) {
  .tak-brand-section {
    padding: 2.5em 1em;
  }
}
.tak-brand-section .inner {
  max-width: 1300px;
}
@media screen and (max-width: 1099.98px) {
  .tak-brand-section .inner {
    max-width: 643px;
  }
}
.tak-brand-container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1099.98px) {
  .tak-brand-container {
    flex-direction: column;
  }
}
.tak-brand-main {
  flex: 1;
  min-width: 0;
  margin-right: 1.5em;
}
@media screen and (max-width: 1099.98px) {
  .tak-brand-main {
    margin-right: 0;
    margin-bottom: 2em;
  }
}
.tak-brand-heading {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 0.6em;
  color: #003371;
}
@media screen and (max-width: 1099.98px) {
  .tak-brand-heading {
    text-align: center;
  }
}
@media screen and (max-width: 767.98px) {
  .tak-brand-heading {
    font-size: 2rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 359.98px) {
  .tak-brand-heading {
    font-size: 1.8rem;
  }
}
.tak-brand-heading .br {
  display: block;
}
.tak-brand-image {
  max-width: 643px;
}
@media screen and (max-width: 1279.98px) {
  .tak-brand-image {
    max-width: 520px;
  }
}
@media screen and (max-width: 1099.98px) {
  .tak-brand-image {
    max-width: 643px;
  }
}
.tak-brand-text {
  font-size: 1.8rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.9;
  word-break: break-all;
  word-wrap: break-word;
}
@media screen and (max-width: 767.98px) {
  .tak-brand-text {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 359.98px) {
  .tak-brand-text {
    font-size: 1.4rem;
  }
}
.tak-brand-text .br {
  display: block;
}
@media screen and (max-width: 767.98px) {
  .tak-brand-text .br {
    display: none;
  }
}
.tak-brand-more {
  text-align: center;
  margin-top: 3em;
}
@media screen and (max-width: 1099.98px) {
  .tak-brand-more {
    margin-top: 1.5em;
  }
}

.tak-products-section {
  padding: 3em 1em;
  background-color: #E1E1E1;
}
@media screen and (min-width: 1100px), print {
  .tak-products-section {
    padding: 6em 2em;
  }
}
@media screen and (max-width: 479.98px) {
  .tak-products-section {
    padding: 2.5em 1em;
  }
}
.tak-products-section .inner {
  max-width: 1302px;
}
.tak-products-header {
  text-align: center;
  margin-bottom: 3.5em;
}
@media screen and (max-width: 767.98px) {
  .tak-products-header {
    margin-bottom: 2em;
  }
}
.tak-products-heading {
  display: block;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1em;
}
@media screen and (max-width: 767.98px) {
  .tak-products-heading {
    font-size: 2rem;
  }
}
.tak-products-desc {
  font-size: 1.8rem;
  line-height: 1.2;
  color: #000000;
}
@media screen and (max-width: 767.98px) {
  .tak-products-desc {
    font-size: 1.6rem;
  }
}
.tak-products-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2em -2.5em 0;
}
@media screen and (max-width: 767.98px) {
  .tak-products-container {
    margin: 0 -1em -2em 0;
  }
}
.tak-products-item {
  width: calc(33.33333% - 32px);
  margin: 0 2em 2.5em 0;
}
@media screen and (max-width: 1099.98px) {
  .tak-products-item {
    width: calc(50% - 32px);
  }
}
@media screen and (max-width: 767.98px) {
  .tak-products-item {
    width: calc(50% - 16px);
    margin: 0 1em 2em 0;
  }
}
@media screen and (max-width: 479.98px) {
  .tak-products-item {
    width: 100%;
  }
}
.tak-products-more {
  text-align: center;
  margin-top: 3em;
}
@media screen and (max-width: 767.98px) {
  .tak-products-more {
    margin-top: 2em;
  }
}
.tak-products-link:hover .tak-products-title {
  color: #003371;
}
.tak-products-link:hover .tak-products-image img {
  transform: scale(1.1);
}
.tak-products-image {
  position: relative;
  overflow: hidden;
}
.tak-products-image::before {
  content: "";
  display: block;
  padding-top: 40.5%;
}
.tak-products-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.tak-products-title {
  text-align: center;
  margin-top: 0.8em;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .tak-products-title {
    font-size: 1.6rem;
  }
}

.tak-menu-section {
  padding: 2.5em 1em;
}
@media screen and (min-width: 1100px), print {
  .tak-menu-section {
    padding: 5em 2em;
  }
}
.tak-menu-section .inner {
  max-width: 1302px;
}
.tak-menu-container {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .tak-menu-container {
    flex-direction: column;
  }
}
.tak-menu-item {
  width: 50%;
}
@media screen and (max-width: 767.98px) {
  .tak-menu-item {
    width: 100%;
  }
}
.tak-menu-item:first-child {
  margin-right: 2em;
}
@media screen and (max-width: 1099.98px) {
  .tak-menu-item:first-child {
    margin-right: 1em;
  }
}
@media screen and (max-width: 767.98px) {
  .tak-menu-item:first-child {
    margin-right: 0;
    margin-bottom: 1.5em;
  }
}
.tak-menu-link:hover .tak-menu-title {
  background-color: #449DBF;
}
.tak-menu-link:hover .tak-menu-image img {
  transform: scale(1.1);
}
.tak-menu-title {
  display: block;
  text-align: center;
  padding: 0.9em;
  background-color: #003371;
  color: #fff;
  line-height: 1.2;
  font-size: 2.5rem;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .tak-menu-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 479.98px) {
  .tak-menu-title {
    font-size: 1.8rem;
    padding: 0.8em;
  }
}
.tak-menu-image {
  position: relative;
  overflow: hidden;
}
.tak-menu-image::before {
  content: "";
  display: block;
  padding-top: 41.5%;
}
.tak-menu-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tak-contact-section .inner {
  max-width: none;
}
.tak-contact-wrap {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .tak-contact-wrap {
    flex-direction: column;
  }
}
.tak-contact-tel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 230px;
  background: url("../img/top/bg03.jpg") no-repeat center/cover;
  padding: 1.5em;
  z-index: -1;
}
@media screen and (max-width: 767.98px) {
  .tak-contact-tel {
    width: 100%;
    height: 180px;
    padding: 1em;
  }
}
.tak-contact-tel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.67);
}
.tak-contact-tel__num .tel-link {
  position: relative;
  display: inline-block;
  color: #fff;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", sans-serif;
  font-size: 4.6rem;
  line-height: 1.2;
  font-weight: 700;
  padding-left: 1.3em;
}
@media screen and (max-width: 1099.98px) {
  .tak-contact-tel__num .tel-link {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 359.98px) {
  .tak-contact-tel__num .tel-link {
    font-size: 2.8rem;
  }
}
.tak-contact-tel__num .tel-link::before {
  content: "☎";
  position: absolute;
  left: 0;
  top: 0;
}
.tak-contact-tel__time {
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.2;
  margin-top: 0.9em;
}
@media screen and (max-width: 1099.98px) {
  .tak-contact-tel__time {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 359.98px) {
  .tak-contact-tel__time {
    font-size: 1.4rem;
  }
}
.tak-contact-tel__header {
  margin-bottom: 0.6em;
}
.tak-contact-tel__heading {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: #fff;
}
.tak-contact-tel__heading .en {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 1099.98px) {
  .tak-contact-tel__heading .en {
    font-size: 3rem;
  }
}
@media screen and (max-width: 359.98px) {
  .tak-contact-tel__heading .en {
    font-size: 2.8rem;
  }
}
.tak-contact-tel__heading .jp {
  display: block;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-left: 1em;
  padding-bottom: 0.1em;
}
@media screen and (max-width: 1099.98px) {
  .tak-contact-tel__heading .jp {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 359.98px) {
  .tak-contact-tel__heading .jp {
    font-size: 1.4rem;
  }
}
.tak-contact-mail {
  width: 50%;
  height: 230px;
}
@media screen and (max-width: 767.98px) {
  .tak-contact-mail {
    width: 100%;
    height: 180px;
  }
}
.tak-contact-mail__heading {
  display: block;
  text-align: center;
  color: #fff;
}
.tak-contact-mail__heading .en {
  font-size: 4.5rem;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 1099.98px) {
  .tak-contact-mail__heading .en {
    font-size: 3.2rem;
  }
}
.tak-contact-mail__heading .jp {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-top: 0.35em;
}
@media screen and (max-width: 1099.98px) {
  .tak-contact-mail__heading .jp {
    font-size: 1.8rem;
  }
}
.tak-contact-mail__heading span {
  display: block;
}
.tak-contact-mail__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1.5em;
  background: url("../img/top/bg04.jpg") no-repeat center/cover;
  z-index: 0;
}
@media screen and (max-width: 767.98px) {
  .tak-contact-mail__link {
    padding: 1em;
  }
}
.tak-contact-mail__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s ease;
  background-color: rgba(48, 48, 48, 0.59);
}
.tak-contact-mail__link:hover::before {
  opacity: 0;
}
.tak-contact-member__link {
  position: relative;
  display: block;
  padding: 5.2em 8em;
  background: url("../img/top/bg02.jpg") no-repeat center/cover;
  z-index: 0;
}
@media screen and (max-width: 1279.98px) {
  .tak-contact-member__link {
    padding: 4em 4em;
  }
}
@media screen and (max-width: 1099.98px) {
  .tak-contact-member__link {
    padding: 4em 2em;
  }
}
@media screen and (max-width: 767.98px) {
  .tak-contact-member__link {
    padding: 3em 3.5em 3em 1.5em;
  }
}
@media screen and (max-width: 479.98px) {
  .tak-contact-member__link {
    padding: 2em 1.5em 2.5em 1.5em;
    text-align: center;
  }
}
.tak-contact-member__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8em;
  transform: translateY(-50%);
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 32px solid #fff;
  transition: border 0.3s ease;
}
@media screen and (max-width: 1279.98px) {
  .tak-contact-member__link::after {
    right: 4em;
  }
}
@media screen and (max-width: 1099.98px) {
  .tak-contact-member__link::after {
    right: 2em;
  }
}
@media screen and (max-width: 767.98px) {
  .tak-contact-member__link::after {
    right: 1.5em;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #fff;
  }
}
@media screen and (max-width: 479.98px) {
  .tak-contact-member__link::after {
    right: auto;
    left: 50%;
    bottom: 1em;
    top: auto;
    border-top: 15px solid #fff;
    border-bottom: none;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transform: translateX(-50%);
  }
}
.tak-contact-member__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  background-color: rgba(32, 90, 141, 0.67);
  transition: opacity 0.3s ease;
}
.tak-contact-member__link:hover::before {
  opacity: 0;
}
.tak-contact-member__link:hover::after {
  border-left-color: #003371;
}
@media screen and (max-width: 479.98px) {
  .tak-contact-member__link:hover::after {
    border-left-color: transparent;
    border-top-color: #003371;
  }
}
.tak-contact-member__heading {
  position: relative;
  display: block;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  padding-left: 1.8em;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 1099.98px) {
  .tak-contact-member__heading {
    font-size: 2.8rem;
    margin-bottom: 0.6em;
  }
}
@media screen and (max-width: 767.98px) {
  .tak-contact-member__heading {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 479.98px) {
  .tak-contact-member__heading {
    text-align: center;
    display: inline-block;
  }
}
.tak-contact-member__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.5em;
  display: block;
  width: 45px;
  height: 58px;
  background: url("../img/base/icon_key_wht.svg") no-repeat center/cover;
}
@media screen and (max-width: 1099.98px) {
  .tak-contact-member__heading::before {
    width: 35px;
    height: 45px;
  }
}
@media screen and (max-width: 767.98px) {
  .tak-contact-member__heading::before {
    width: 28px;
    height: 36px;
  }
}
.tak-contact-member__text {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 1099.98px) {
  .tak-contact-member__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .tak-contact-member__text {
    font-size: 1.4rem;
  }
}
.tak-contact-member__text .br {
  display: block;
}

/* --------------------------------

  idxx　商品ラインナップ

-------------------------------- */
.products-intro-section {
  padding: 3em 1em;
  background: url("../img/pages/products/bg1.jpg") no-repeat center/cover;
}
@media screen and (min-width: 1100px), print {
  .products-intro-section {
    padding: 6em 2em;
  }
}
.products-intro-text {
  text-align: center;
  color: #fff;
  line-height: 1.6;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 768px), print {
  .products-intro-text {
    font-size: 1.8rem;
  }
}
.products-intro-text .br {
  display: none;
}
@media screen and (min-width: 640px), print {
  .products-intro-text .br {
    display: block;
  }
}
.products-intro-more {
  text-align: center;
  margin-top: 1.5em;
}

.products-section {
  padding: 2.5em 0;
}
@media screen and (min-width: 1100px), print {
  .products-section {
    padding: 5em 0;
  }
}
.products-section .inner {
  max-width: none;
}
.products-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 479.98px) {
  .products-table {
    min-width: 520px;
  }
}
.products-table th, .products-table td {
  vertical-align: middle;
  line-height: 1.77;
  font-feature-settings: "palt";
  border: 1px solid #DBDBDB;
  padding: 1em 1.5em;
}
@media screen and (max-width: 767.98px) {
  .products-table th, .products-table td {
    padding: 1em 1em;
  }
}
.products-table th {
  background-color: #EFEFEF;
  color: #003371;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  width: 152px;
}
@media screen and (max-width: 1099.98px) {
  .products-table th {
    font-size: 1.6rem;
    width: 132px;
  }
}
@media screen and (max-width: 767.98px) {
  .products-table th {
    width: 122px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 639.98px) {
  .products-table th {
    font-size: 1.3rem;
    width: 100px;
  }
}
.products-table td {
  font-size: 1.8rem;
  color: #000000;
}
@media screen and (max-width: 1099.98px) {
  .products-table td {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .products-table td {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 639.98px) {
  .products-table td {
    font-size: 1.2rem;
  }
}
.products-table td strong {
  font-weight: 700;
}
.products-table-area {
  margin-top: 2em;
}
@media screen and (min-width: 768px), print {
  .products-table-area {
    margin-top: 3em;
  }
}
@media screen and (max-width: 479.98px) {
  .products-table-area {
    overflow-x: auto;
  }
}
.products-block {
  padding: 2.5em 1em;
}
.products-block:first-child {
  padding-top: 0;
}
.products-block:nth-child(2n) {
  background-color: #F6F6F6;
}
.products-block:nth-child(2n+1) {
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .products-block {
    padding: 5em 2em;
  }
}
.products-block-inner {
  max-width: 1316px;
  margin: 0 auto;
}
.products-text {
  color: #000;
  line-height: 1.77;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .products-text {
    font-size: 1.8rem;
  }
}
.products-text .br {
  display: none;
}
@media screen and (min-width: 640px), print {
  .products-text .br {
    display: block;
  }
}
.products-wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1099.98px) {
  .products-wrap {
    flex-direction: column;
  }
}
.products-main {
  width: 65%;
  margin-right: 1em;
}
@media screen and (max-width: 1099.98px) {
  .products-main {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2em;
  }
}
.products-image {
  width: 35%;
}
@media screen and (max-width: 1099.98px) {
  .products-image {
    width: 100%;
    text-align: center;
  }
}

/* --------------------------------

  idxx　TAKブランドとは

-------------------------------- */
.brand-section {
  padding: 0 1em 2.5em 1em;
}
@media screen and (min-width: 1100px), print {
  .brand-section {
    padding: 0 2em 5em 2em;
  }
}
.brand-section .inner {
  max-width: none;
}
.brand-heading {
  text-align: center;
  font-size: 3rem;
  line-height: 2;
  font-weight: 700;
  color: #474747;
  margin-bottom: 3em;
}
@media screen and (max-width: 1099.98px) {
  .brand-heading {
    font-size: 2rem;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 767.98px) {
  .brand-heading {
    margin-bottom: 1em;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.brand-heading .br {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .brand-heading .br {
    display: block;
  }
}
.brand-text {
  font-size: 2rem;
  line-height: 2;
  color: #474747;
  text-align: center;
}
@media screen and (max-width: 1099.98px) {
  .brand-text {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767.98px) {
  .brand-text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.brand-text p {
  font-weight: 500;
}
.brand-text p:not(:last-child) {
  margin-bottom: 2em;
}
@media screen and (max-width: 767.98px) {
  .brand-text p:not(:last-child) {
    margin-bottom: 1em;
  }
}
.brand-text .br {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .brand-text .br {
    display: block;
  }
}
.brand-wrap {
  position: relative;
  padding: 2em 1em 3em 1em;
  margin: 0 -1em;
  background: url("../img/pages/brand/bg1.jpg") no-repeat center/cover;
}
.brand-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 60%, white 100%);
}
@media screen and (min-width: 1100px), print {
  .brand-wrap {
    padding: 4em 2em 6em 2em;
    margin: 0 -2em;
  }
}
.brand-iframe {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 479.98px) {
  .brand-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.brand-iframe img {
  text-align: center;
}

.brand-strength-section {
  padding: 3em 1em 3em 1em;
}
@media screen and (min-width: 1100px), print {
  .brand-strength-section {
    padding: 6em 2em 6em 2em;
  }
}
.brand-strength-section .inner {
  max-width: none;
}
@media screen and (max-width: 1099.98px) {
  .brand-strength-section .inner {
    max-width: 792px;
  }
}
.brand-strength-section .common-list {
  margin-top: 1em;
  margin-bottom: 1em;
}
@media screen and (min-width: 1100px), print {
  .brand-strength-section .common-list {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }
}
.brand-strength-container {
  margin: 0 -1em;
}
@media screen and (min-width: 1100px), print {
  .brand-strength-container {
    margin: 0 -2em;
  }
}
.brand-strength-block {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1099.98px) {
  .brand-strength-block {
    flex-direction: column;
  }
}
.brand-strength-block:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1099.98px) {
  .brand-strength-block:nth-child(2n) {
    flex-direction: column;
  }
}
.brand-strength-block:nth-child(2n) .brand-strength-main {
  margin-left: 5em;
}
@media screen and (max-width: 1439.98px) {
  .brand-strength-block:nth-child(2n) .brand-strength-main {
    margin-left: 2em;
  }
}
@media screen and (max-width: 1099.98px) {
  .brand-strength-block:nth-child(2n) .brand-strength-main {
    margin-left: 0;
    margin-bottom: 2em;
  }
}
.brand-strength-block:nth-child(2n+1) .brand-strength-main {
  margin-right: 5em;
}
@media screen and (max-width: 1439.98px) {
  .brand-strength-block:nth-child(2n+1) .brand-strength-main {
    margin-right: 2em;
  }
}
@media screen and (max-width: 1099.98px) {
  .brand-strength-block:nth-child(2n+1) .brand-strength-main {
    margin-right: 0;
    margin-bottom: 2em;
  }
}
.brand-strength-block:not(:last-child) {
  margin-bottom: 3em;
}
@media screen and (min-width: 768px), print {
  .brand-strength-block:not(:last-child) {
    margin-bottom: 6em;
  }
}
.brand-strength-main {
  width: 50%;
  padding: 1em;
}
@media screen and (min-width: 1100px), print {
  .brand-strength-main {
    padding: 2em;
  }
}
@media screen and (max-width: 1099.98px) {
  .brand-strength-main {
    width: 100%;
    padding: 0 1em;
  }
}
.brand-strength-image {
  width: 50%;
}
@media screen and (max-width: 1099.98px) {
  .brand-strength-image {
    width: 100%;
    text-align: center;
    padding: 0 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .brand-strength-image img {
    width: 100%;
    height: 431px;
    object-fit: cover;
  }
}
.brand-strength-text {
  font-size: 2rem;
  line-height: 1.6;
  color: #474747;
}
@media screen and (max-width: 1099.98px) {
  .brand-strength-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .brand-strength-text {
    font-size: 1.6rem;
  }
}
.brand-strength-text p {
  font-weight: 700;
}
.brand-strength-text .br {
  display: none;
}
@media screen and (min-width: 768px), print {
  .brand-strength-text .br {
    display: block;
  }
}

.brand-data-section {
  padding: 3em 1em 3em 1em;
  background-color: #F6F6F6;
}
@media screen and (min-width: 1100px), print {
  .brand-data-section {
    padding: 6em 2em 6em 2em;
  }
}
.brand-data-section .inner {
  max-width: 1316px;
}
@media screen and (max-width: 1439.98px) {
  .brand-data-section .inner {
    max-width: 650px;
  }
}
@media screen and (max-width: 767.98px) {
  .brand-data-section .inner {
    max-width: 450px;
  }
}
.brand-data-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -1em -1em 0;
}
@media screen and (max-width: 479.98px) {
  .brand-data-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.brand-data-item {
  width: 317px;
  height: 317px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1em;
  margin: 0 1em 1em 0;
}
@media screen and (max-width: 1439.98px) {
  .brand-data-item {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 767.98px) {
  .brand-data-item {
    height: 217px;
  }
}
@media screen and (max-width: 479.98px) {
  .brand-data-item {
    width: 237px;
    height: 237px;
  }
}
.brand-data-item:nth-child(2n+1) {
  background-color: #003371;
}
.brand-data-item:nth-child(2n) {
  background-color: #33B6CF;
}
.brand-data-title {
  text-align: center;
  line-height: 1.2;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  margin-top: 0.6em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767.98px) {
  .brand-data-title {
    font-size: 2.2rem;
  }
}
.brand-data-title span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 767.98px) {
  .brand-data-title span {
    font-size: 1.6rem;
  }
}
.brand-data-foot {
  display: flex;
  margin-top: 5em;
}
@media screen and (max-width: 767.98px) {
  .brand-data-foot {
    margin-top: 2.5em;
  }
}
.brand-data-more {
  width: 50%;
}
.brand-data-more:first-child {
  margin-right: 2em;
}
@media screen and (max-width: 767.98px) {
  .brand-data-more:first-child {
    margin-right: 1em;
  }
}
@media screen and (max-width: 479.98px) {
  .brand-data-more:first-child {
    margin-right: 0.5em;
  }
}
.brand-data-link {
  display: block;
  text-align: center;
  padding: 0.85em 1em;
  line-height: 1.2;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  background-color: #003371;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .brand-data-link {
    font-size: 2rem;
  }
}
@media screen and (max-width: 479.98px) {
  .brand-data-link {
    font-size: 1.6rem;
    padding: 0.85em 0.5em;
  }
}
@media screen and (max-width: 359.98px) {
  .brand-data-link {
    font-size: 1.4rem;
  }
}
.brand-data-link:hover {
  background-color: #33B6CF;
}

/* --------------------------------

  idxx　企業情報

-------------------------------- */
.company-greeting-section {
  padding: 0 1em 2.5em 1em;
}
@media screen and (min-width: 1100px), print {
  .company-greeting-section {
    padding: 0 2em 5em 2em;
  }
}
.company-greeting-section .inner {
  max-width: 1206px;
}
.company-greeting-container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .company-greeting-container {
    flex-direction: column;
  }
}
.company-greeting-main {
  flex: 1;
  min-width: 0;
  margin-right: 5em;
}
@media screen and (max-width: 1099.98px) {
  .company-greeting-main {
    margin-right: 2em;
  }
}
@media screen and (max-width: 767.98px) {
  .company-greeting-main {
    margin-right: 0;
    margin-bottom: 2em;
  }
}
.company-greeting-heading {
  display: block;
  line-height: 1.2;
  font-size: 3.7rem;
  font-weight: 700;
  color: #003371;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 1099.98px) {
  .company-greeting-heading {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .company-greeting-heading {
    font-size: 2rem;
  }
}
.company-greeting-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #434343;
  line-height: 1.6;
}
@media screen and (max-width: 1099.98px) {
  .company-greeting-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .company-greeting-text {
    font-size: 1.6rem;
  }
}
.company-greeting-text .br {
  display: none;
}
@media screen and (min-width: 768px), print {
  .company-greeting-text .br {
    display: block;
  }
}
.company-greeting-name {
  text-align: right;
  margin-top: 3em;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #3B3B3B;
  font-weight: 500;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 1099.98px) {
  .company-greeting-name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .company-greeting-name {
    font-size: 1.8rem;
    margin-top: 2em;
  }
}

.company-attitube-section {
  padding: 2.5em 1em 2.5em 1em;
  background-color: #F6F6F6;
}
@media screen and (min-width: 1100px), print {
  .company-attitube-section {
    padding: 5em 2em 5em 2em;
  }
}
.company-attitube-section .inner {
  max-width: 1316px;
}
.company-attitube-item:not(:last-child) {
  margin-bottom: 2em;
}
@media screen and (min-width: 768px), print {
  .company-attitube-item:not(:last-child) {
    margin-bottom: 4em;
  }
}
.company-attitube-name {
  text-align: right;
  margin-top: 4em;
  font-size: 3.5rem;
  line-height: 1.2;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #3B3B3B;
}
@media screen and (max-width: 1099.98px) {
  .company-attitube-name {
    margin-top: 2em;
    font-size: 3rem;
  }
}
@media screen and (max-width: 767.98px) {
  .company-attitube-name {
    font-size: 2rem;
  }
}
.company-attitube-head {
  display: flex;
  margin-bottom: 2em;
}
@media screen and (max-width: 1099.98px) {
  .company-attitube-head {
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 575.98px) {
  .company-attitube-head {
    flex-direction: column;
    margin-bottom: 1em;
  }
}
.company-attitube-head .title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  color: #fff;
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  background-color: #003371;
  padding: 0.7em 0.5em;
}
@media screen and (max-width: 1279.98px) {
  .company-attitube-head .title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .company-attitube-head .title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 575.98px) {
  .company-attitube-head .title {
    width: 100%;
    font-size: 1.6rem;
  }
}
.company-attitube-head .name {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 428px;
  color: #fff;
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  background-color: #9B9C9C;
  padding: 0.7em 0.5em;
}
@media screen and (max-width: 1279.98px) {
  .company-attitube-head .name {
    font-size: 2rem;
    width: 260px;
  }
}
@media screen and (max-width: 767.98px) {
  .company-attitube-head .name {
    font-size: 1.8rem;
    width: 160px;
  }
}
@media screen and (max-width: 575.98px) {
  .company-attitube-head .name {
    width: 100%;
    font-size: 1.6rem;
  }
}
.company-attitube-text {
  font-size: 2rem;
  line-height: 1.66;
  color: #3A3A3A;
}
@media screen and (max-width: 1099.98px) {
  .company-attitube-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .company-attitube-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 479.98px) {
  .company-attitube-text {
    font-size: 1.4rem;
  }
}
.company-attitube-text .br {
  display: none;
}
@media screen and (min-width: 768px), print {
  .company-attitube-text .br {
    display: block;
  }
}

.company-about-section {
  padding: 2.5em 1em 2.5em 1em;
}
@media screen and (min-width: 1100px), print {
  .company-about-section {
    padding: 5em 2em 5em 2em;
  }
}
.company-about-section .inner {
  max-width: 1246px;
}
.company-about-section .section-heading .en {
  color: #000;
  border-bottom: none;
  padding-bottom: 0;
}
.company-about-section .section-heading .jp {
  color: #000;
}

.company-table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.company-table th, .company-table td {
  vertical-align: top;
  line-height: 1.66;
}
@media screen and (max-width: 767.98px) {
  .company-table th, .company-table td {
    display: block;
  }
}
.company-table th {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003371;
  width: 10em;
  border-bottom: 1px solid #CDD6DD;
  padding: 0.6em 0;
}
@media screen and (max-width: 1099.98px) {
  .company-table th {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .company-table th {
    width: 100%;
    padding: 0.5em 0 0.4em 0;
  }
}
@media screen and (max-width: 479.98px) {
  .company-table th {
    font-size: 1.6rem;
  }
}
.company-table td {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  border-bottom: 1px solid #CDD6DD;
  padding: 0.97em 0;
}
@media screen and (max-width: 1099.98px) {
  .company-table td {
    font-size: 1.6rem;
    padding: 0.79em 0;
  }
}
@media screen and (max-width: 767.98px) {
  .company-table td {
    border-bottom: none;
    padding: 0.6em 0 0.6em 0.5em;
  }
}
@media screen and (max-width: 479.98px) {
  .company-table td {
    font-size: 1.4rem;
  }
}
.company-table td .btn:not(:last-child) {
  margin-bottom: 0.5em;
}

.company-history-section {
  padding: 2.5em 1em 2.5em 1em;
  background-color: #F6F6F6;
}
@media screen and (min-width: 1100px), print {
  .company-history-section {
    padding: 5em 2em 5em 2em;
  }
}
.company-history-section .inner {
  max-width: 1246px;
}
.company-history-section .section-heading .en {
  color: #000;
  border-bottom: none;
  padding-bottom: 0;
}
.company-history-section .section-heading .jp {
  color: #000;
}
.company-history-section .company-table th, .company-history-section .company-table td {
  vertical-align: middle;
}

.company-cookie-section {
  padding: 2.5em 1em 2.5em 1em;
}
@media screen and (min-width: 1100px), print {
  .company-cookie-section {
    padding: 5em 2em 5em 2em;
  }
}
.company-cookie-section .inner {
  max-width: 1246px;
}
.company-cookie-section .section-heading .en {
  color: #000;
  border-bottom: none;
  padding-bottom: 0;
}
.company-cookie-section .section-heading .jp {
  color: #000;
}

/* --------------------------------

  idxx　商品相場情報

-------------------------------- */
.market-price-section {
  padding: 0 1em 2.5em 1em;
}
@media screen and (min-width: 1100px), print {
  .market-price-section {
    padding: 0 2em 5em 2em;
  }
}
.market-price-section .inner {
  max-width: 1300px;
}
.market-price-image {
  text-align: center;
}
.market-price-image:not(:last-child) {
  margin-bottom: 2.5em;
}
@media screen and (min-width: 1100px), print {
  .market-price-image:not(:last-child) {
    margin-bottom: 6em;
  }
}

/* --------------------------------

  資料請求

-------------------------------- */
.member-att {
  margin-bottom: 3em;
}
@media screen and (min-width: 768px), print {
  .member-att {
    margin-bottom: 5em;
  }
}
@media screen and (min-width: 768px), print {
  .member-att-body {
    padding: 0 1em;
  }
}
.member-att-text {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  color: #434343;
}
.member-att-text .br {
  display: none;
}
@media screen and (min-width: 768px), print {
  .member-att-text .br {
    display: block;
  }
}

.contact-us-desc {
  font-feature-settings: "palt";
  line-height: 1.6;
  font-size: 1.6rem;
  color: #000;
  margin-top: 1em;
}
.contact-us-main {
  position: relative;
  margin-bottom: 0.5em;
  padding: 1em;
  color: #000000;
  line-height: 1.5;
  text-align: center;
  background-color: #eee;
}
@media screen and (min-width: 768px), print {
  .contact-us-main {
    padding: 1.5em;
    text-align: left;
    border-left: 125px solid #003371;
  }
}
@media screen and (min-width: 1100px), print {
  .contact-us-main {
    border-left-width: 183px;
  }
}
@media screen and (max-width: 767.98px) {
  .contact-us-main {
    padding: 1em 1em 0.6em 1em;
  }
}
@media screen and (max-width: 479.98px) {
  .contact-us-main {
    padding: 1em 1em 0.5em 1em;
  }
}
.contact-us-main::before {
  content: "";
  display: block;
  height: 93.3333333333px;
  margin: -1em -1em 1em;
  background: #003371 url("../img/base/tel-contact.png") center no-repeat;
  background-size: auto 70%;
  z-index: 1;
  background-color: #A02729;
}
@media screen and (max-width: 1099.98px) {
  .contact-us-main::before {
    height: 70.8333333333px;
  }
}
@media screen and (max-width: 767.98px) {
  .contact-us-main::before {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .contact-us-main::before {
    position: absolute;
    top: 50%;
    left: -125px;
    width: 117px;
    margin: 0;
    background: url("../img/base/tel-contact.png") center no-repeat;
    background-size: contain;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1100px), print {
  .contact-us-main::before {
    left: -180px;
    width: 174px;
  }
}
.contact-us-tel {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px), print {
  .contact-us-tel {
    margin-bottom: 0;
  }
}
.contact-us-tel dl {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767.98px) {
  .contact-us-tel dl {
    position: relative;
    display: inline-block;
    padding-left: 86px;
  }
}
@media screen and (max-width: 479.98px) {
  .contact-us-tel dl {
    padding-left: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .contact-us-tel dl::before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 75px;
    height: 75px;
    border-radius: 100%;
    background: #003371 url("../img/base/tel-contact.png") center no-repeat;
    background-size: 55%;
  }
}
@media screen and (max-width: 479.98px) {
  .contact-us-tel dl::before {
    position: static;
    margin: 0 auto 0.3em;
    background-size: 52%;
    background-position-x: 16px;
    transform: translateY(0);
  }
}
.contact-us-tel dl dt {
  margin-bottom: 0.2em;
  padding-left: 0.2em;
}
@media screen and (max-width: 767.98px) {
  .contact-us-tel dl dt {
    text-align: left;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 479.98px) {
  .contact-us-tel dl dt {
    text-align: center;
  }
}
.contact-us-tel .tel-link {
  display: inline-block;
  position: relative;
  color: #003371;
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-feature-settings: "palt";
}
@media screen and (min-width: 1100px), print {
  .contact-us-tel .tel-link {
    font-size: 6.5rem;
  }
}
@media screen and (max-width: 479.98px) {
  .contact-us-tel .tel-link {
    font-size: 3.6rem;
  }
}
.contact-us-tel a.tel-link {
  color: #003371;
}
.contact-us-tel a.tel-link:hover {
  color: #003371;
  text-decoration: none;
}

.contact-form-info {
  margin-bottom: 3em;
}
@media screen and (min-width: 768px), print {
  .contact-form-info {
    margin-bottom: 5em;
  }
}
.contact-form-info-container {
  padding: 0 0.5em;
}
@media screen and (min-width: 480px), print {
  .contact-form-info-container {
    padding: 0 1em;
  }
}
.contact-form-info-text {
  margin-top: 1em;
  line-height: 1.65;
  font-size: 1.8rem;
  color: #666666;
}
@media screen and (max-width: 1099.98px) {
  .contact-form-info-text {
    font-size: 1.6rem;
  }
}
.contact-form-info-text .br {
  display: none;
}
@media screen and (min-width: 640px), print {
  .contact-form-info-text .br {
    display: block;
  }
}
.contact-form-info-text .intro {
  margin-bottom: 1em;
}
.contact-form-info-text .fax-num {
  color: #07529F;
  margin-left: 1em;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", sans-serif;
}
.contact-form-info-text .mail a {
  color: #07529F;
  transition: all 0.2s ease;
}
.contact-form-info-text .mail a:hover {
  text-decoration: underline;
}
.contact-form-main-desc {
  font-size: 1.6rem;
  line-height: 1.2;
  color: #000;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1099.98px) {
  .contact-form-main-desc {
    font-size: 1.6rem;
  }
}
.contact-form-main-container {
  padding: 0 1em;
}
@media screen and (max-width: 767.98px) {
  .contact-form-main-container {
    padding: 0;
  }
}
.contact-form-privacy {
  margin-top: 3em;
}

/* 個人情報及び特定個人情報保護方針 */
.contact-privacy {
  height: 30em;
  padding: 1em;
  font-size: 0.9em;
  border: 1px solid #ddd;
  background-color: #fff;
  overflow-y: scroll;
}
@media screen and (min-width: 640px), print {
  .contact-privacy {
    height: 20em;
  }
}
@media screen and (min-width: 768px), print {
  .contact-privacy {
    font-size: 0.95em;
  }
}
.contact-privacy-section .inner {
  padding: 0;
  line-height: 1.5;
}
.contact-privacy h3 {
  margin: 1.5em 0 0.8em;
  padding: 0 0 0.5em;
  line-height: 1.1;
  font-weight: 600;
  font-size: 1.1em;
  color: #003371;
  border-bottom: 1px solid #003371;
}
.contact-privacy ul {
  margin-top: 0.5em;
}
.contact-privacy ol {
  margin-bottom: 0.85em;
}
.contact-privacy ol > ol {
  margin-top: 0.5em;
}
.contact-privacy dl {
  float: right;
  margin-top: 1.5em;
}
.contact-privacy .tel-link {
  color: #000000;
}
.contact-privacy a.tel-link {
  color: #000000;
}
.contact-privacy a.tel-link:hover {
  color: #003371;
}

/* --------------------------------

  idxx　お知らせ

-------------------------------- */
.news-section {
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .news-section {
    padding: 0 2em;
  }
}
.news-section .news-list {
  margin-bottom: 2.5em;
}
@media screen and (max-width: 479.98px) {
  .news-section .news-list {
    margin-bottom: 2em;
  }
}
.news-section.__newspaper .inner {
  max-width: 1316px;
}
.news-section.__newspaper .news-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1em 2em 0;
}
@media screen and (max-width: 479.98px) {
  .news-section.__newspaper .news-list {
    margin: 0 -1em 1em 0;
  }
}
.news-section.__newspaper .news-topics {
  width: calc(33.33333% - 16px);
  margin: 0 1em 2em 0;
  padding: 0;
  border: none;
}
@media screen and (max-width: 991.98px) {
  .news-section.__newspaper .news-topics {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 479.98px) {
  .news-section.__newspaper .news-topics {
    width: 100%;
  }
}
.news-section.__newspaper .news-link {
  display: block;
}
.news-section.__newspaper .news-link:hover {
  color: #003371;
}
.news-section.__newspaper .news-link:hover .news-date {
  color: #003371;
}
.news-section.__newspaper .news-date {
  margin: 0 0 1em 0;
}
@media screen and (max-width: 767.98px) {
  .news-section.__newspaper .news-date {
    font-size: 1.6rem;
    margin: 0 0 0.6em 0;
  }
}
.news-section.__newspaper .news-title {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 1099.98px) {
  .news-section.__newspaper .news-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 479.98px) {
  .news-section.__newspaper .news-title {
    font-size: 1.6rem;
  }
}
.news-section.__newspaper .news-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1em;
}
.news-section.__newspaper .news-img::before {
  content: "";
  display: block;
  padding-top: 65%;
}
.news-section.__newspaper .news-img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
}
.news-detail-section .news-date {
  margin-bottom: 0.7em;
}
.news-topics {
  padding: 1.25em 0 1.25em 0;
  border-bottom: 1px solid #CDD6DD;
}
@media screen and (max-width: 767.98px) {
  .news-topics {
    padding: 1em 0 1em 0;
  }
}
@media screen and (max-width: 479.98px) {
  .news-topics {
    padding: 1em 0;
  }
}
.news-link {
  display: flex;
  color: #707F89;
  line-height: 1.2;
  font-size: 1.8rem;
  font-feature-settings: "palt";
  transition: color 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .news-link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 575.98px) {
  .news-link {
    flex-direction: column;
  }
}
.news-link:hover {
  text-decoration: none;
  color: #003371;
}
.news-link:hover .news-title {
  color: #003371;
}
.news-date {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.2;
  font-feature-settings: "palt";
  width: 5.9em;
  margin-right: 0.5em;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .news-date {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 639.98px) {
  .news-date {
    width: 5.6em;
  }
}
@media screen and (max-width: 575.98px) {
  .news-date {
    margin-right: 0;
    margin-bottom: 0.3em;
  }
}
.news-title {
  flex: 1;
  min-width: 0;
  color: #3B4043;
  transition: color 0.3s ease;
}
@media screen and (max-width: 575.98px) {
  .news-title {
    margin-left: 0;
    display: block;
  }
}
.news-body {
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
}
.news-text {
  word-break: break-all;
  word-wrap: break-word;
}
.news-text p,
.news-text div {
  word-break: break-all;
  word-wrap: break-word;
}
.news-more {
  text-align: center;
  margin-top: 1.5em;
}
.news-more__area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3.5em -1em 2em 0;
}
@media screen and (max-width: 767.98px) {
  .news-more__area {
    margin: 2em -1em 1em 0;
  }
}
.news-back {
  text-align: center;
  margin-top: 4em;
}
@media screen and (max-width: 767.98px) {
  .news-back {
    margin-top: 2em;
  }
}
.news-section {
  padding: 0 1em 3em 1em;
}
@media screen and (min-width: 1100px), print {
  .news-section {
    padding: 0 2em 5em 2em;
  }
}
.news-detail-section {
  padding: 0 1em 3em 1em;
}
@media screen and (min-width: 1100px), print {
  .news-detail-section {
    padding: 0 2em 5em 2em;
  }
}
.news-detail-section .news-date {
  margin-top: 0.3em;
}
/* 251030 追記 */
.company-links {
  text-align: center;
}
.company-links-col + .company-links-col {
  margin-top: 2rem;
}
.company-links-item + .company-links-item {
  margin-top: 2rem;
}
.company-links-item {
  margin-inline: auto;
}
.company-links-bnr3 {
  max-width: 40%;
}
.company-links-bnr4 {
  max-width: 30%;
}
.company-links img {
  height: auto;
}
@media screen and (min-width: 768px), print {
  .company-links {
    display: flex;
    align-items: center;
    gap: 0 2rem;
  }
  .company-links-col + .company-links-col {
    margin-top: 0;
  }
  .company-links-item + .company-links-item {
    margin-top: 1rem;
  }
  .company-links-item {
    margin-inline: 0;
  }
  .company-links-bnr3, .company-links-bnr4 {
    max-width: none;
  }
}
@media screen and (min-width: 1100px), print {
  .company-links {
    gap: 0 3rem;
  }
}