@charset "UTF-8";
/* -------------------------------------------------------------------------
	Web font
------------------------------------------------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Leckerli+One);
/* -------------------------------------------------------------------------
	Foundation
------------------------------------------------------------------------- */
/* Vendor */
/* Variable */
/*

brakepoints

*/
/*

base color

*/
/* $color_sub : ; */
/*

text color

*/
@font-face {
  font-family: 'FF Noto';
  src: url("/assets/woff2/NotoSans-VariableFont_wdth,wght.woff2") format("woff2-variations");
  /* formatに注意 */
  font-weight: 100 900;
  /* 対応する太さの範囲を指定 */ }

@font-face {
  font-family: 'FF Noto SC';
  src: url("/assets/woff2/NotoSansSC-VariableFont_wght.woff2") format("woff2-variations");
  /* formatに注意 */
  font-weight: 100 900;
  /* 対応する太さの範囲を指定 */ }

@font-face {
  font-family: 'FF Noto Serif';
  src: url("/assets/woff2/NotoSerif-VariableFont_wdth,wght.woff2") format("woff2-variations");
  /* formatに注意 */
  font-weight: 100 900;
  /* 対応する太さの範囲を指定 */ }

@font-face {
  font-family: 'FF Noto Serif SC';
  src: url("/assets/woff2/NotoSerifSC-VariableFont_wght.woff2") format("woff2-variations");
  /* formatに注意 */
  font-weight: 100 900;
  /* 対応する太さの範囲を指定 */ }

/*

base font size

*/
/* $basic_font_size : 14, 87.5%; */
/* $basic_font_size : 15, 93.75%; */
/* $basic_font_size : 16, 100%; */
@font-face {
  font-family: 'icomoon';
  src: url("fonts/icomoon.eot?s4ysxq");
  src: url("fonts/icomoon.eot?s4ysxq#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?s4ysxq") format("truetype"), url("fonts/icomoon.woff?s4ysxq") format("woff"), url("fonts/icomoon.svg?s4ysxq#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-blank:before {
  content: "\e919";
  color: #0093e6; }

.icon-arrow-right:before {
  content: "\e918";
  color: #0093e6; }

.icon-privacy:before {
  content: "\e917";
  color: #0093e6; }

.icon-net-zero:before {
  content: "\e908";
  color: #0093e6; }

.icon-manegement:before {
  content: "\e909";
  color: #0193e6; }

.icon-interview:before {
  content: "\e90a";
  color: #0193e5; }

.icon-news:before {
  content: "\e90b";
  color: #0093e6; }

.icon-organic-chemical:before {
  content: "\e90c";
  color: #0193e6; }

.icon-solver:before {
  content: "\e90d";
  color: #0193e6; }

.icon-study:before {
  content: "\e90e";
  color: #0193e6; }

.icon-chemical:before {
  content: "\e90f";
  color: #0193e6; }

.icon-customer:before {
  content: "\e910";
  color: #0193e6; }

.icon-targets:before {
  content: "\e911";
  color: #0093e6; }

.icon-contact:before {
  content: "\e912";
  color: #0093e6; }

.icon-alert:before {
  content: "\e913";
  color: #0093e6; }

.icon-history:before {
  content: "\e914";
  color: #0193e6; }

.icon-online:before {
  content: "\e915";
  color: #0193e6; }

.icon-corporate:before {
  content: "\e916";
  color: #0193e6; }

.icon-pump:before {
  content: "\e905";
  color: #fff; }

.icon-safety:before {
  content: "\e906";
  color: #fff; }

.icon-grobal:before {
  content: "\e907";
  color: #fff; }

.icon-minus-c:before {
  content: "\e903";
  color: #fff; }

.icon-plus-c:before {
  content: "\e904";
  color: #0193e6; }

.icon-menu:before {
  content: "\e900";
  color: #fff; }

.icon-quart:before {
  content: "\e901";
  color: #0093e6; }

.icon-cross:before {
  content: "\e902";
  color: #fff; }

/*

width

*/
/* Function */
/* Mixin */
/*

clear

*/
/*

メディアクエリ

ブレークポイント定義
```sass
$breakpoints:(
	tablet: 959px,
	sp: 679px
);
```

● max-widthで指定する
```sass
@include mq(sp) {
	height:40px;
}
```
```output css
@media all and (max-width: 679px) {
	height: 40px;
}
```

● 範囲指定する場合は、引数に2つ入れる
```sass
@include mq(sp tablet) {
	height:40px;
}
```
```output css
@media all and (min-width: 680px) and (max-width: 959px) {
	height: 40px;
}
```

● min-widthで指定する場合は第2引数をtrueにする
```sass
@include mq(tablet, true) {
	height:40px;
}
```
```output css
@media all and (min-width: 960px) {
	height: 40px;
}
```

*/
/*

ブレイクポイントごとのキーワードとマージンの組み合わせを作る

```sass
@include create_margins(
	(
		default:(
			l:50px,
			m:40px,
			s:30px,
			xs:20px
		),
		tablet:(
			l:40px,
			m:30px,
			s:25px
		),
		sp:(
			l:30px,
			m:25px,
			s:20px,
			xs:15px
		)
	)
)
```

それぞれのキーワードに対する上下左右のマージン用クラスを
ブレークポイントの数だけ出力します

```output css
.rmb_l { margin-bottom: 50px !important; }
.rmt_l { margin-top: 50px !important; }
.rmr_l { margin-right: 50px !important; }
.rml_l { margin-left: 50px !important; }
～略～

@media screen and (max-width: 959px) {
  .rmb_l { margin-bottom: 40px !important; }
  .rmt_l { margin-top: 40px !important; }
  .rmr_l { margin-right: 40px !important; }
  .rml_l { margin-left: 40px !important; }
	～略～
}

@media screen and (max-width: 679px) {
  .rmb_l { margin-bottom: 30px !important; }
  .rmt_l { margin-top: 30px !important; }
  .rmr_l { margin-right: 30px !important; }
  .rml_l { margin-left: 30px !important; }
	～略～
}
```

*/
/*

章番号用mixin (IE8以上)

キャプションに章番号をつける場合
```sass
$counterName: oreoreCounter;
.parent-section {
	@include resetCounter($counterName);
	h2 {
		@include addCounter($counterName, '第', '章');
	}
}
```

入れ子になってるリストに通し番号(1-1-1など）を付ける場合
```sass
$counterName: listCounter;
ol {
	@include resetCounter($counterName);
	li {
		@include addCounters($counterName, '-');
	}
}
```

*/
/*

sp heighlight

*/
/* _keyframes */
@-webkit-keyframes hop {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    /* 10px上に移動 */ }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    /* 元の位置に戻る */ } }
@keyframes hop {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    /* 10px上に移動 */ }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    /* 元の位置に戻る */ } }

/* G-Menu Animation */
:root {
  /* アニメーションの起点と速度を変数として定義 */
  --g-menu-origin-x: calc(100% - 35px);
  /* 右から35pxの位置 */
  --g-menu-origin-y: 30px;
  /* 上から30pxの位置 */
  --g-menu-anim-duration: 0.3s;
  --g-menu-anim-easing: cubic-bezier(0.25, 1, 0.5, 1); }

/* Base */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

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

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

input, textarea {
  margin: 0;
  padding: 0; }

small {
  font-size: smaller; }

sup {
  font-size: 0.7em;
  vertical-align: top; }

sub {
  font-size: 0.7em;
  vertical-align: baseline; }

/* YUI 3.9.1 (build 5852) Copyright 2013 Yahoo! Inc. http://yuilibrary.com/license/ */
/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
  font: 81.25%/1.231 arial, sans-serif;
  *font-size: small;
  /* for IE */
  *font: x-small;
  /* for IE in quirks mode */ }

/**
 * Nudge down to get to 13px equivalent for these form elements
 */
select,
input,
button,
textarea {
  font: 99% arial,sans-serif; }

/**
 * To help tables remember to inherit
 */
table {
  font-size: inherit;
  font: 100%; }

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%; }

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssfonts {
  display: none; }

/*

プロジェクトにおける基本的なスタイル
（ページ全体の背景や、基本的なタイポグラフィ）
※ クラスは使わない

*/
html.no_scroll {
  overflow: hidden; }

body {
  font-family: "FF Noto", "FF Noto SC", sans-serif;
  font-weight: 400px;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  line-break: strict;
  color: #333333;
  min-width: 1280px;
  overflow-x: auto;
  width: 100%; }
  @media all and (max-width: 679px) {
    body {
      width: 100%;
      min-width: auto; } }
  body.-active {
    overflow-y: hidden; }

.wrapper {
  width: 100%; }

img {
  vertical-align: bottom; }
  @media all and (max-width: 1280px) {
    img {
      max-width: 100%;
      height: auto; } }

a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: auto; }

p {
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }

i {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  i:before {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.core {
  font-family: "FF Noto Serif", "FF Noto Serif SC", serif;
  font-weight: 600;
  -webkit-transform: scale(0.85, 1);
  -ms-transform: scale(0.85, 1);
  transform: scale(0.85, 1);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  display: block; }

.serif {
  font-family: "FF Noto Serif", "FF Noto Serif SC", serif;
  font-weight: 600; }

.pu-product {
  line-height: 1.231;
  font-family: "FF Noto", "FF Noto SC", sans-serif;
  font-weight: 400;
  line-height: 1.231;
  font-weight: 400;
  font-family: "FF Noto", "FF Noto SC", sans-serif;
  /* /リセット用 */ }
  .pu-product p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 400; }
  .pu-product a {
    color: #333333;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: auto; }
    .pu-product a:hover {
      text-decoration: none; }
  .pu-product ol,
  .pu-product ul,
  .pu-product dl {
    margin-top: 0;
    margin-bottom: 0; }
  .pu-product li {
    color: #333333; }
  .pu-product p {
    color: #333333; }
  .pu-product button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .pu-product button:focus {
      outline: none; }
  .pu-product p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 400; }
  .pu-product a {
    color: #333333;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: auto; }
  .pu-product ol,
  .pu-product ul,
  .pu-product dl {
    margin-top: 0;
    margin-bottom: 0; }

.z-rower {
  z-index: 10; }

.modal--h-set {
  height: 670px; }
  @media all and (max-width: 679px) {
    .modal--h-set {
      height: 465px; } }

.modal--h-set--type2 {
  height: 550px; }
  @media all and (max-width: 679px) {
    .modal--h-set--type2 {
      height: 350px; } }

body .modal {
  z-index: 11000; }

body .modal--permanent .modal {
  z-index: 1000; }

body .modal-backdrop {
  z-index: 10999; }

body .breadcrumb-wrapper {
  z-index: 5000; }

/* 中国語用 */
/* -------------------------------------------------------------------------
	Layout
------------------------------------------------------------------------- */
.g-menu {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: visibility 0s var(--g-menu-anim-duration);
  transition: visibility 0s var(--g-menu-anim-duration);
  line-height: 1.231;
  font-family: "FF Noto", "FF Noto SC", sans-serif;
  font-weight: 400; }
  @media all and (max-width: 679px) {
    .g-menu {
      display: none; } }
  .g-menu p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 400; }
  .g-menu a {
    color: #333333;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: auto; }
    .g-menu a:hover {
      text-decoration: none; }
  .g-menu ol,
  .g-menu ul,
  .g-menu dl {
    margin-top: 0;
    margin-bottom: 0; }
  .g-menu li {
    color: #333333; }
  .g-menu p {
    color: #333333; }
  .g-menu button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .g-menu button:focus {
      outline: none; }
  .g-menu .g-menu__overlay {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    -webkit-transition: opacity var(--g-menu-anim-duration) ease-out;
    transition: opacity var(--g-menu-anim-duration) ease-out;
    cursor: pointer; }
  .g-menu .g-menu__anim-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-clip-path: circle(0 at var(--g-menu-origin-x) var(--g-menu-origin-y));
    clip-path: circle(0 at var(--g-menu-origin-x) var(--g-menu-origin-y));
    -webkit-transition: -webkit-clip-path var(--g-menu-anim-duration) var(--g-menu-anim-easing);
    transition: clip-path var(--g-menu-anim-duration) var(--g-menu-anim-easing), -webkit-clip-path var(--g-menu-anim-duration) var(--g-menu-anim-easing); }
  .g-menu .g-menu__wrapper {
    width: 100%;
    height: 100%;
    display: block;
    padding: 30px 35px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: auto; }
  .g-menu .g-menu__container {
    width: 100%;
    min-width: 1210px;
    min-height: 100%;
    background-color: #fff;
    border-radius: 5px;
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(400px, 3fr) minmax(770px, 7fr);
    grid-template-columns: minmax(400px, 3fr) minmax(770px, 7fr);
    background-color: #0193E6; }
    .g-menu .g-menu__container .g-menu__close-button {
      position: absolute;
      top: 30px;
      right: 30px;
      cursor: pointer; }
    .g-menu .g-menu__container .g-menu__sidebar {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: end;
      min-width: 400px;
      background-color: #fff;
      font-weight: 350;
      border-radius: 5px 0 0 5px; }
      .g-menu .g-menu__container .g-menu__sidebar .g-menu__sidebar__inner {
        padding-left: 5%;
        width: 100%; }
      .g-menu .g-menu__container .g-menu__sidebar .g-menu__logo {
        margin-top: 60px;
        width: 250px;
        display: block; }
        .g-menu .g-menu__container .g-menu__sidebar .g-menu__logo img {
          width: 100%; }
      .g-menu .g-menu__container .g-menu__sidebar .g-menu__title {
        font-size: 30px;
        font-weight: 700;
        padding-left: 30px;
        margin-top: 30px;
        display: block; }
      .g-menu .g-menu__container .g-menu__sidebar .g-menu__nav {
        margin-top: 30px;
        width: 100%; }
        .g-menu .g-menu__container .g-menu__sidebar .g-menu__nav .g-menu__nav-list {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column; }
          .g-menu .g-menu__container .g-menu__sidebar .g-menu__nav .g-menu__nav-list .g-menu__nav-item {
            font-size: clamp(calc(32px * 0.75), calc(32vw / 1440 * 100), calc(34px));
            cursor: pointer;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding-left: 30px;
            height: 60px;
            border-radius: 30px 0 0 30px;
            white-space: nowrap;
            -webkit-box-pack: left;
            -ms-flex-pack: left;
            justify-content: left;
            font-weight: 400; }
            .g-menu .g-menu__container .g-menu__sidebar .g-menu__nav .g-menu__nav-list .g-menu__nav-item .core {
              font-weight: 600; }
            .g-menu .g-menu__container .g-menu__sidebar .g-menu__nav .g-menu__nav-list .g-menu__nav-item i {
              font-size: 21px;
              margin-left: 10px; }
              .g-menu .g-menu__container .g-menu__sidebar .g-menu__nav .g-menu__nav-list .g-menu__nav-item i.--core {
                margin-left: -8%; }
                .g-menu .g-menu__container .g-menu__sidebar .g-menu__nav .g-menu__nav-list .g-menu__nav-item i.--core.--cn {
                  margin-left: -4%; }
            .g-menu .g-menu__container .g-menu__sidebar .g-menu__nav .g-menu__nav-list .g-menu__nav-item .icon-minus-c {
              display: none; }
          .g-menu .g-menu__container .g-menu__sidebar .g-menu__nav .g-menu__nav-list .g-menu__nav-item.--active {
            color: #fff;
            background-color: #0193E6; }
            .g-menu .g-menu__container .g-menu__sidebar .g-menu__nav .g-menu__nav-list .g-menu__nav-item.--active .icon-minus-c {
              display: block; }
            .g-menu .g-menu__container .g-menu__sidebar .g-menu__nav .g-menu__nav-list .g-menu__nav-item.--active .icon-plus-c {
              display: none; }
    .g-menu .g-menu__container .g-menu__content {
      background-color: #0193E6;
      display: none;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding-top: 80px;
      padding-bottom: 80px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      border-radius: 0 5px 5px 0; }
      .g-menu .g-menu__container .g-menu__content.show {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .g-menu .g-menu__container .g-menu__content .g-menu__section {
        width: 770px; }
  .g-menu.show {
    visibility: visible;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    /* 表示される際は遅延なく表示 */
    /* showクラスが付いた際のコンテナ */ }
    .g-menu.show .g-menu__overlay {
      opacity: 1; }
    .g-menu.show .g-menu__anim-container {
      -webkit-clip-path: circle(150% at var(--g-menu-origin-x) var(--g-menu-origin-y));
      clip-path: circle(150% at var(--g-menu-origin-x) var(--g-menu-origin-y)); }

.g-menu--sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  /* iOSでのアドレスバー考慮 */
  background-color: #fff;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  /* opacityを0.4秒かけて変化させ、visibilityはアニメーション終了後に切り替える
    (これによりアニメーション中にクリックできなくなる)*/
  -webkit-transition: opacity 0.3s ease, visibility 0s 0.3s;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  line-height: 1.231;
  font-family: "FF Noto", "FF Noto SC", sans-serif;
  font-weight: 400; }
  @media all and (max-width: 679px) {
    .g-menu--sp {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .g-menu--sp p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 400; }
  .g-menu--sp a {
    color: #333333;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: auto; }
    .g-menu--sp a:hover {
      text-decoration: none; }
  .g-menu--sp ol,
  .g-menu--sp ul,
  .g-menu--sp dl {
    margin-top: 0;
    margin-bottom: 0; }
  .g-menu--sp li {
    color: #333333; }
  .g-menu--sp p {
    color: #333333; }
  .g-menu--sp button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .g-menu--sp button:focus {
      outline: none; }
  .g-menu--sp.show--sp {
    opacity: 1;
    visibility: visible;
    /* visibilityを即座に切り替え、その後opacityを0.4秒かけて変化させる*/
    -webkit-transition: opacity 0.3s ease, visibility 0s 0s;
    transition: opacity 0.3s ease, visibility 0s 0s; }
  .g-menu--sp .g-menu--sp__logo {
    margin-top: 10px;
    height: 40px; }
    .g-menu--sp .g-menu--sp__logo img {
      height: 100%; }
  .g-menu--sp .g-menu--sp__close-btn {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0193E6;
    border: none;
    border-radius: 5px;
    z-index: 10000; }
  .g-menu--sp .g-menu--sp__container {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-y: auto;
    /* この要素をスクロールさせる */
    -webkit-overflow-scrolling: touch;
    /* iOSでの慣性スクロールを有効に */ }
    .g-menu--sp .g-menu--sp__container .g-menu--sp__container__inner {
      /* 親要素の残りの高さをすべて使う */
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      /* コンテンツがはみ出た場合にのみ縦スクロールを許可 */
      overflow-y: auto;
      /* iOSでの慣性スクロールを有効化 */
      -webkit-overflow-scrolling: touch;
      /* bodyと重複するpaddingやmarginがあればリセット */
      padding: 0 0px 15px; }
    .g-menu--sp .g-menu--sp__container .g-menu--sp__heading {
      margin-top: 30px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-bottom: 20px; }
      .g-menu--sp .g-menu--sp__container .g-menu--sp__heading .g-menu--sp__title {
        font-size: 18px;
        font-weight: bold; }
      .g-menu--sp .g-menu--sp__container .g-menu--sp__heading .g-menu--sp__language-selector {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px; }
        .g-menu--sp .g-menu--sp__container .g-menu--sp__heading .g-menu--sp__language-selector .g-menu--sp__language-option {
          width: 28px; }
    .g-menu--sp .g-menu--sp__container .g-menu--sp__body .g-menu--sp__nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 5px; }
      .g-menu--sp .g-menu--sp__container .g-menu--sp__body .g-menu--sp__nav .g-menu--sp__accordion-item {
        background-color: #0193E6;
        border-radius: 5px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 15px; }
        .g-menu--sp .g-menu--sp__container .g-menu--sp__body .g-menu--sp__nav .g-menu--sp__accordion-item[open] .g-menu--sp__accordion-title .icon-plus-c {
          display: none; }
        .g-menu--sp .g-menu--sp__container .g-menu--sp__body .g-menu--sp__nav .g-menu--sp__accordion-item[open] .g-menu--sp__accordion-title .icon-minus-c {
          display: block; }
        .g-menu--sp .g-menu--sp__container .g-menu--sp__body .g-menu--sp__nav .g-menu--sp__accordion-item .g-menu--sp__accordion-title {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          color: #fff;
          font-size: 20px;
          font-weight: 400;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          .g-menu--sp .g-menu--sp__container .g-menu--sp__body .g-menu--sp__nav .g-menu--sp__accordion-item .g-menu--sp__accordion-title .core {
            font-weight: 600; }
          .g-menu--sp .g-menu--sp__container .g-menu--sp__body .g-menu--sp__nav .g-menu--sp__accordion-item .g-menu--sp__accordion-title .icon-plus-c:before {
            color: #fff; }
          .g-menu--sp .g-menu--sp__container .g-menu--sp__body .g-menu--sp__nav .g-menu--sp__accordion-item .g-menu--sp__accordion-title .icon-minus-c {
            display: none; }
        .g-menu--sp .g-menu--sp__container .g-menu--sp__body .g-menu--sp__nav .g-menu--sp__accordion-item .g-menu--sp__accordion-content {
          margin-top: 15px; }

.g-menu__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px; }
  @media all and (max-width: 679px) {
    .g-menu__grid {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 5px; } }
  .g-menu__grid .g-menu__grid-item {
    background-color: #fff;
    border-radius: 5px;
    height: 88px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); }
    @media all and (max-width: 679px) {
      .g-menu__grid .g-menu__grid-item {
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); } }
    .g-menu__grid .g-menu__grid-item:hover {
      background-color: #4ED6FF;
      color: #fff; }
      .g-menu__grid .g-menu__grid-item:hover p {
        color: #fff; }
      .g-menu__grid .g-menu__grid-item:hover i::before {
        color: #fff; }
      .g-menu__grid .g-menu__grid-item:hover .detail-list li span,
      .g-menu__grid .g-menu__grid-item:hover .detail-list li a {
        color: #fff !important; }
    .g-menu__grid .g-menu__grid-item.now, .g-menu__grid .g-menu__grid-item:has(.now) {
      background-color: #4ED6FF;
      color: #fff; }
      .g-menu__grid .g-menu__grid-item.now p, .g-menu__grid .g-menu__grid-item:has(.now) p {
        color: #fff; }
      .g-menu__grid .g-menu__grid-item.now i::before, .g-menu__grid .g-menu__grid-item:has(.now) i::before {
        color: #fff; }
      .g-menu__grid .g-menu__grid-item.now .detail-list li span,
      .g-menu__grid .g-menu__grid-item.now .detail-list li a, .g-menu__grid .g-menu__grid-item:has(.now) .detail-list li span,
      .g-menu__grid .g-menu__grid-item:has(.now) .detail-list li a {
        color: #fff !important; }
    @media all and (max-width: 679px) {
      .g-menu__grid .g-menu__grid-item {
        padding: 15px;
        height: -webkit-fit-content;
        height: fit-content;
        gap: 10px; } }
    .g-menu__grid .g-menu__grid-item p {
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .g-menu__grid .g-menu__grid-item i {
      font-size: 48px; }
      @media all and (max-width: 679px) {
        .g-menu__grid .g-menu__grid-item i {
          font-size: 38px; } }
    .g-menu__grid .g-menu__grid-item .icon-logo {
      display: block;
      width: 48px; }
    .g-menu__grid .g-menu__grid-item .g-menu__grid-text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .g-menu__grid .g-menu__grid-item .g-menu__grid-text .g-menu__grid-title {
        font-size: 20px;
        font-weight: 700;
        white-space: nowrap; }
        @media all and (max-width: 679px) {
          .g-menu__grid .g-menu__grid-item .g-menu__grid-text .g-menu__grid-title {
            font-size: 16px;
            white-space: wrap; } }
      .g-menu__grid .g-menu__grid-item .g-menu__grid-text .g-menu__grid-subtitle {
        margin-top: 5px; }
        @media all and (max-width: 679px) {
          .g-menu__grid .g-menu__grid-item .g-menu__grid-text .g-menu__grid-subtitle {
            font-size: 12px; } }
  .g-menu__grid .g-menu__grid-item.--wide {
    -ms-grid-column: 1;
    grid-column-start: 1;
    grid-column-end: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media all and (max-width: 679px) {
      .g-menu__grid .g-menu__grid-item.--wide {
        grid-column-end: 2;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        gap: 10px; } }
    .g-menu__grid .g-menu__grid-item.--wide:hover .detail-list {
      color: #fff; }
    .g-menu__grid .g-menu__grid-item.--wide.now .detail-list, .g-menu__grid .g-menu__grid-item.--wide:has(.now) .detail-list {
      color: #fff; }
    .g-menu__grid .g-menu__grid-item.--wide .g-menu__grid-item-main {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 15px; }
    .g-menu__grid .g-menu__grid-item.--wide .detail-list {
      display: -ms-grid;
      display: grid;
      grid-auto-flow: column;
      -ms-grid-rows: (auto)[2];
      grid-template-rows: repeat(2, auto);
      row-gap: 5px;
      -webkit-column-gap: 30px;
      column-gap: 30px;
      font-size: 16px;
      width: 50%; }
      @media all and (max-width: 679px) {
        .g-menu__grid .g-menu__grid-item.--wide .detail-list {
          font-size: 14px;
          -ms-grid-rows: auto;
          grid-template-rows: auto;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          margin-left: 50px;
          width: auto; } }
      .g-menu__grid .g-menu__grid-item.--wide .detail-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 5px;
        max-width: 100%; }
        .g-menu__grid .g-menu__grid-item.--wide .detail-list li span {
          color: #0193E6;
          font-weight: 700;
          -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .g-menu__grid .g-menu__grid-item.--wide .detail-list li a {
          text-decoration: underline;
          font-weight: 500; }
        .g-menu__grid .g-menu__grid-item.--wide .detail-list li:hover a {
          text-decoration: none; }
        .g-menu__grid .g-menu__grid-item.--wide .detail-list li.now a, .g-menu__grid .g-menu__grid-item.--wide .detail-list li:has(.now) a {
          text-decoration: none; }
    .g-menu__grid .g-menu__grid-item.--wide.--cn-casestudy .detail-list {
      width: 65%;
      -webkit-column-gap: 10px;
      column-gap: 10px; }
  .g-menu__grid .g-menu__grid-item.--wide02 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    grid-column-end: 3; }
    @media all and (max-width: 679px) {
      .g-menu__grid .g-menu__grid-item.--wide02 {
        grid-column-end: 2; } }

.g-menu__product .g-menu__product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px; }
  @media all and (max-width: 679px) {
    .g-menu__product .g-menu__product-list {
      gap: 5px; } }
  .g-menu__product .g-menu__product-list .g-menu__product-item {
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    height: 130px;
    padding: 10px 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); }
    @media all and (max-width: 679px) {
      .g-menu__product .g-menu__product-list .g-menu__product-item {
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); } }
    @media all and (max-width: 679px) {
      .g-menu__product .g-menu__product-list .g-menu__product-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: -webkit-fit-content;
        height: fit-content;
        padding: 10px; } }
    .g-menu__product .g-menu__product-list .g-menu__product-item .text .subtitle {
      font-size: 12px;
      color: #0193E6;
      font-weight: bold;
      width: 270px; }
    .g-menu__product .g-menu__product-list .g-menu__product-item .text .title {
      font-size: 16px;
      font-weight: 700;
      margin-top: -10px; }
      @media all and (max-width: 679px) {
        .g-menu__product .g-menu__product-list .g-menu__product-item .text .title {
          font-size: 17px; } }
      .g-menu__product .g-menu__product-list .g-menu__product-item .text .title span {
        font-size: 56px; }
        @media all and (max-width: 679px) {
          .g-menu__product .g-menu__product-list .g-menu__product-item .text .title span {
            font-size: 62px; } }
    .g-menu__product .g-menu__product-list .g-menu__product-item .text .g-menu__product__info-group {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 110px 1fr;
      grid-template-columns: 110px 1fr;
      gap: 1px;
      text-align: center;
      margin-top: -5px; }
      @media all and (max-width: 679px) {
        .g-menu__product .g-menu__product-list .g-menu__product-item .text .g-menu__product__info-group {
          -ms-grid-columns: 3fr 4fr;
          grid-template-columns: 3fr 4fr; } }
      .g-menu__product .g-menu__product-list .g-menu__product-item .text .g-menu__product__info-group .g-menu__product__info-item .category {
        background-color: #333333;
        color: #fff;
        font-size: 10px;
        margin-bottom: 5px; }
      .g-menu__product .g-menu__product-list .g-menu__product-item .text .g-menu__product__info-group .g-menu__product__info-item .value {
        font-size: 10px;
        font-weight: 700; }
        @media all and (max-width: 679px) {
          .g-menu__product .g-menu__product-list .g-menu__product-item .text .g-menu__product__info-group .g-menu__product__info-item .value {
            font-size: 11px; } }
        .g-menu__product .g-menu__product-list .g-menu__product-item .text .g-menu__product__info-group .g-menu__product__info-item .value .number {
          font-size: 20px;
          letter-spacing: -0.03em; }
          @media all and (max-width: 679px) {
            .g-menu__product .g-menu__product-list .g-menu__product-item .text .g-menu__product__info-group .g-menu__product__info-item .value .number {
              font-size: 21px; } }
        .g-menu__product .g-menu__product-list .g-menu__product-item .text .g-menu__product__info-group .g-menu__product__info-item .value .between {
          position: relative;
          top: -3px; }
        .g-menu__product .g-menu__product-list .g-menu__product-item .text .g-menu__product__info-group .g-menu__product__info-item .value .--blue {
          color: #00B1E6;
          background-color: transparent; }
        .g-menu__product .g-menu__product-list .g-menu__product-item .text .g-menu__product__info-group .g-menu__product__info-item .value .--red {
          color: #E65800;
          background-color: transparent; }
        .g-menu__product .g-menu__product-list .g-menu__product-item .text .g-menu__product__info-group .g-menu__product__info-item .value .minmax {
          font-size: 12px; }
          @media all and (max-width: 679px) {
            .g-menu__product .g-menu__product-list .g-menu__product-item .text .g-menu__product__info-group .g-menu__product__info-item .value .minmax {
              font-size: 13px;
              letter-spacing: -0.05em; } }
      .g-menu__product .g-menu__product-list .g-menu__product-item .text .g-menu__product__info-group .g-menu__product__info-item.--temperature .value {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 5px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
    .g-menu__product .g-menu__product-list .g-menu__product-item .image {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 3px; }
      @media all and (max-width: 679px) {
        .g-menu__product .g-menu__product-list .g-menu__product-item .image {
          -ms-grid-columns: 1fr 1fr;
          grid-template-columns: 1fr 1fr; } }
      .g-menu__product .g-menu__product-list .g-menu__product-item .image .image__item {
        width: 100%;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: relative; }
        .g-menu__product .g-menu__product-list .g-menu__product-item .image .image__item:hover .--hover {
          opacity: 1; }
        .g-menu__product .g-menu__product-list .g-menu__product-item .image .image__item.now .--hover, .g-menu__product .g-menu__product-list .g-menu__product-item .image .image__item:has(.now) .--hover {
          opacity: 1; }
        .g-menu__product .g-menu__product-list .g-menu__product-item .image .image__item img {
          width: 100%;
          border-radius: 5px; }
        .g-menu__product .g-menu__product-list .g-menu__product-item .image .image__item .--hover {
          opacity: 0;
          position: absolute;
          top: 0;
          left: 0;
          z-index: 1;
          -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease; }

.g-menu__partners-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .g-menu__partners-content .g-menu__partners-map {
    width: 640px;
    margin: 0 auto;
    position: relative; }
    @media all and (max-width: 679px) {
      .g-menu__partners-content .g-menu__partners-map {
        width: 100%; } }
    .g-menu__partners-content .g-menu__partners-map .map {
      width: 100%; }
    .g-menu__partners-content .g-menu__partners-map .pin {
      position: absolute;
      display: inline-block;
      height: 40px; }
    .g-menu__partners-content .g-menu__partners-map .pin.animate-hop {
      -webkit-animation: hop 1s ease-in-out infinite;
      animation: hop 1s ease-in-out infinite; }
    .g-menu__partners-content .g-menu__partners-map .pin.--north-america {
      top: 25%;
      right: 22%; }
    .g-menu__partners-content .g-menu__partners-map .pin.--eu {
      top: 20%;
      left: 10%; }
    .g-menu__partners-content .g-menu__partners-map .pin.--china {
      top: 30%;
      left: 35%; }
    .g-menu__partners-content .g-menu__partners-map .pin.--china-sp {
      top: 30%;
      left: 30%; }
    .g-menu__partners-content .g-menu__partners-map .pin.--south-america {
      top: 58%;
      right: 8%; }
    .g-menu__partners-content .g-menu__partners-map .pin.--korea {
      top: 29%;
      left: 39%; }
    .g-menu__partners-content .g-menu__partners-map .pin.--taiwan {
      top: 37%;
      left: 37.25%; }
    .g-menu__partners-content .g-menu__partners-map .pin.--australia {
      top: 68%;
      left: 41%; }
    .g-menu__partners-content .g-menu__partners-map .pin.--thailand {
      top: 42%;
      left: 32%; }
    .g-menu__partners-content .g-menu__partners-map .pin.--singapore {
      top: 52%;
      left: 32%;
      z-index: 3; }
    .g-menu__partners-content .g-menu__partners-map .pin.--malaysia {
      top: 48%;
      left: 32%;
      z-index: 2; }
    .g-menu__partners-content .g-menu__partners-map .pin.--viet-nam {
      top: 43%;
      left: 34%;
      z-index: 1; }
  .g-menu__partners-content .g-menu__partners-list {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 20px; }
    @media all and (max-width: 679px) {
      .g-menu__partners-content .g-menu__partners-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 5px; } }
    .g-menu__partners-content .g-menu__partners-list .partners-item {
      background-color: #fff;
      height: 50px;
      border-radius: 5px;
      -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      @media all and (max-width: 679px) {
        .g-menu__partners-content .g-menu__partners-list .partners-item {
          -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); } }
      @media all and (max-width: 679px) {
        .g-menu__partners-content .g-menu__partners-list .partners-item {
          height: 40px; } }
      .g-menu__partners-content .g-menu__partners-list .partners-item:hover {
        background-color: #4ED6FF; }
        .g-menu__partners-content .g-menu__partners-list .partners-item:hover a {
          color: #fff; }
        .g-menu__partners-content .g-menu__partners-list .partners-item:hover i::before {
          color: #fff; }
        .g-menu__partners-content .g-menu__partners-list .partners-item:hover .special-partner {
          color: #fff; }
      .g-menu__partners-content .g-menu__partners-list .partners-item.now, .g-menu__partners-content .g-menu__partners-list .partners-item:has(.now) {
        background-color: #4ED6FF; }
        .g-menu__partners-content .g-menu__partners-list .partners-item.now a, .g-menu__partners-content .g-menu__partners-list .partners-item:has(.now) a {
          color: #fff; }
        .g-menu__partners-content .g-menu__partners-list .partners-item.now i::before, .g-menu__partners-content .g-menu__partners-list .partners-item:has(.now) i::before {
          color: #fff; }
        .g-menu__partners-content .g-menu__partners-list .partners-item.now .special-partner, .g-menu__partners-content .g-menu__partners-list .partners-item:has(.now) .special-partner {
          color: #fff; }
      .g-menu__partners-content .g-menu__partners-list .partners-item a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 20px;
        font-weight: 600;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 15px;
        width: 100%;
        height: 100%; }
        @media all and (max-width: 679px) {
          .g-menu__partners-content .g-menu__partners-list .partners-item a {
            font-size: 16px; } }
        .g-menu__partners-content .g-menu__partners-list .partners-item a i {
          font-size: 8px;
          margin-right: 5px; }
      .g-menu__partners-content .g-menu__partners-list .partners-item .special-partner {
        color: #E65800;
        font-size: 13px;
        margin-left: 2px;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease; }

.g-menu__exhibitions-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px; }
  @media all and (max-width: 679px) {
    .g-menu__exhibitions-list {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 5px; } }
  .g-menu__exhibitions-list .g-menu__exhibition-item {
    background-color: #fff;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    height: 88px; }
    @media all and (max-width: 679px) {
      .g-menu__exhibitions-list .g-menu__exhibition-item {
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); } }
    @media all and (max-width: 679px) {
      .g-menu__exhibitions-list .g-menu__exhibition-item {
        height: -webkit-fit-content;
        height: fit-content;
        padding: 15px; } }
    .g-menu__exhibitions-list .g-menu__exhibition-item:hover {
      color: #fff;
      background-color: #4ED6FF; }
      .g-menu__exhibitions-list .g-menu__exhibition-item:hover i::before {
        color: #fff; }
    .g-menu__exhibitions-list .g-menu__exhibition-item.now, .g-menu__exhibitions-list .g-menu__exhibition-item:has(.now) {
      color: #fff;
      background-color: #4ED6FF; }
      .g-menu__exhibitions-list .g-menu__exhibition-item.now i::before, .g-menu__exhibitions-list .g-menu__exhibition-item:has(.now) i::before {
        color: #fff; }
    .g-menu__exhibitions-list .g-menu__exhibition-item img {
      width: 335px;
      display: block; }
      @media all and (max-width: 679px) {
        .g-menu__exhibitions-list .g-menu__exhibition-item img {
          width: 100%; } }

.g-menu__links-section {
  width: 770px;
  margin-top: 50px; }
  @media all and (max-width: 679px) {
    .g-menu__links-section {
      width: 100%;
      margin-top: 20px;
      margin-bottom: 60px; } }
  .g-menu__links-section .g-menu__links-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    width: 100%; }
    .g-menu__links-section .g-menu__links-list .g-menu__links-item {
      background-color: #2E2C83;
      width: 100%;
      border-radius: 5px;
      font-size: 20px;
      font-weight: 600;
      color: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      height: 40px;
      position: relative;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); }
      @media all and (max-width: 679px) {
        .g-menu__links-section .g-menu__links-list .g-menu__links-item {
          -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); } }
      .g-menu__links-section .g-menu__links-list .g-menu__links-item a {
        color: #fff; }
      .g-menu__links-section .g-menu__links-list .g-menu__links-item:hover {
        background-color: #4ED6FF; }
      @media all and (max-width: 679px) {
        .g-menu__links-section .g-menu__links-list .g-menu__links-item {
          height: -webkit-fit-content;
          height: fit-content;
          font-size: 18px;
          padding: 10px 0; } }
  @media all and (max-width: 679px) and (max-width: 679px) {
    .g-menu__links-section .g-menu__links-list .g-menu__links-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }
      .g-menu__links-section .g-menu__links-list .g-menu__links-item .g-menu__links-group {
        position: absolute;
        top: 50%;
        -webkit-transform: translatey(-50%);
        -ms-transform: translatey(-50%);
        transform: translatey(-50%);
        right: 20px;
        font-size: 14px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 5px;
        color: #fff;
        font-weight: 500; }
        @media all and (max-width: 679px) {
          .g-menu__links-section .g-menu__links-list .g-menu__links-item .g-menu__links-group {
            position: relative;
            right: auto;
            top: auto;
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0); } }
        .g-menu__links-section .g-menu__links-list .g-menu__links-item .g-menu__links-group .g-menu__link {
          color: #fff;
          font-weight: 500;
          text-decoration: underline; }
          .g-menu__links-section .g-menu__links-list .g-menu__links-item .g-menu__links-group .g-menu__link:hover {
            text-decoration: none; }

:root {
  --header-nav-transiton: transform 0.3s ease-out, opacity 0.3s ease-out; }

#global-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%; }
  @media all and (max-width: 1280px) {
    #global-header {
      max-width: 1280px; } }
  @media all and (max-width: 679px) {
    #global-header {
      width: 100%; } }
  #global-header.is-scrolled {
    pointer-events: none; }
    #global-header.is-scrolled .header__nav,
    #global-header.is-scrolled .header__language-selector {
      opacity: 0;
      pointer-events: none; }
    #global-header.is-scrolled .header__logo,
    #global-header.is-scrolled .header__menu-btn {
      pointer-events: auto; }
    #global-header.is-scrolled .g-menu {
      pointer-events: auto; }
  #global-header.safari-ipad .header .header__nav .header__nav-list {
    gap: 0; }

.header {
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 35px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.231;
  font-family: "FF Noto", "FF Noto SC", sans-serif;
  font-weight: 400; }
  @media all and (max-width: 1280px) {
    .header {
      padding: 0 25px; } }
  .header .safari-ipad .header__nav .header__nav-list {
    gap: 0; }
  @media all and (max-width: 679px) {
    .header {
      height: 60px;
      min-width: auto;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 0 10px; } }
  .header p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 400; }
  .header a {
    color: #333333;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: auto; }
    .header a:hover {
      text-decoration: none; }
  .header ol,
  .header ul,
  .header dl {
    margin-top: 0;
    margin-bottom: 0; }
  .header li {
    color: #333333; }
  .header p {
    color: #333333; }
  .header button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .header button:focus {
      outline: none; }
  .header .header__logo {
    height: 50px;
    z-index: 110;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
    .header .header__logo img {
      height: 100%; }
    @media all and (min-width: 680px) {
      .header .header__logo {
        margin-right: 12px; } }
    @media all and (max-width: 679px) {
      .header .header__logo {
        height: 40px;
        top: 10px;
        left: 10px; } }
  .header .header__menu-btn {
    background-color: #0193E6;
    width: 50px;
    height: 50px;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
    .header .header__menu-btn:hover {
      background-color: #4ED6FF; }
    @media all and (max-width: 679px) {
      .header .header__menu-btn {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px; } }
    .header .header__menu-btn i {
      font-size: 32px;
      margin-top: 10px; }
      @media all and (max-width: 679px) {
        .header .header__menu-btn i {
          font-size: 26px;
          margin-top: 8px; } }
  .header .header__nav {
    margin-left: auto;
    -webkit-transition: var(--header-nav-transiton);
    transition: var(--header-nav-transiton); }
    .header .header__nav .header__nav-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 25px;
      white-space: nowrap;
      margin-bottom: 0; }
      @media all and (max-width: 1280px) {
        .header .header__nav .header__nav-list {
          gap: 20px; } }
      .header .header__nav .header__nav-list .header__nav-item {
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        cursor: pointer;
        position: relative;
        width: -webkit-fit-content;
        width: fit-content; }
        .header .header__nav .header__nav-list .header__nav-item .header__nav-text {
          font-size: clamp(calc(16px * 0.75), calc(16vw / 1440 * 100), calc(18px)); }
          @media all and (max-width: 1280px) {
            .header .header__nav .header__nav-list .header__nav-item .header__nav-text {
              font-size: 14px; } }
        .header .header__nav .header__nav-list .header__nav-item:hover {
          color: #0193E6; }
          .header .header__nav .header__nav-list .header__nav-item:hover a {
            color: #0193E6;
            text-decoration: none;
            /*干打消し用用*/ }
          .header .header__nav .header__nav-list .header__nav-item:hover .header__nav-text {
            color: #0193E6; }
          .header .header__nav .header__nav-list .header__nav-item:hover .header__nav-detail {
            top: 20px;
            visibility: visible;
            opacity: 1;
            -webkit-transition-delay: 0s;
            transition-delay: 0s; }
        .header .header__nav .header__nav-list .header__nav-item:has(.now) {
          color: #0193E6; }
          .header .header__nav .header__nav-list .header__nav-item:has(.now) a {
            color: #0193E6;
            text-decoration: none;
            /*干打消し用用*/ }
          .header .header__nav .header__nav-list .header__nav-item:has(.now) .header__nav-text {
            color: #0193E6; }
        .header .header__nav .header__nav-list .header__nav-item p {
          font-size: 18px; }
        .header .header__nav .header__nav-list .header__nav-item .header__nav-detail {
          visibility: hidden;
          position: absolute;
          left: 50%;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%);
          top: 40px;
          opacity: 0;
          -webkit-box-sizing: border-box;
          box-sizing: border-box;
          -webkit-transition-property: opacity, top, visibility;
          transition-property: opacity, top, visibility;
          -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
          -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
          -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
          padding-top: 10px; }
          .header .header__nav .header__nav-list .header__nav-item .header__nav-detail ul {
            display: -ms-grid;
            display: grid;
            -ms-grid-columns: max-content max-content max-content;
            grid-template-columns: max-content max-content max-content;
            gap: 1px;
            background-color: #cccccc;
            border: 1px solid #cccccc; }
            .header .header__nav .header__nav-list .header__nav-item .header__nav-detail ul li {
              padding: 5px 20px;
              -webkit-transition: all .3s ease;
              transition: all .3s ease;
              background-color: #fff; }
              .header .header__nav .header__nav-list .header__nav-item .header__nav-detail ul li.clear {
                pointer-events: none; }
                .header .header__nav .header__nav-list .header__nav-item .header__nav-detail ul li.clear.--col2 {
                  grid-column: 2 / -1; }
              .header .header__nav .header__nav-list .header__nav-item .header__nav-detail ul li a {
                color: #333333;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: baseline;
                -ms-flex-align: baseline;
                align-items: baseline;
                width: 100%;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                height: 100%;
                font-size: 13px; }
                .header .header__nav .header__nav-list .header__nav-item .header__nav-detail ul li a .small {
                  font-size: 0.85em; }
              .header .header__nav .header__nav-list .header__nav-item .header__nav-detail ul li:hover {
                background-color: #4ED6FF; }
                .header .header__nav .header__nav-list .header__nav-item .header__nav-detail ul li:hover a {
                  color: #fff; }
              .header .header__nav .header__nav-list .header__nav-item .header__nav-detail ul li:has(.now) {
                background-color: #4ED6FF; }
                .header .header__nav .header__nav-list .header__nav-item .header__nav-detail ul li:has(.now) a {
                  color: #fff; }
          .header .header__nav .header__nav-list .header__nav-item .header__nav-detail.header__nav-detail--col1 ul {
            -ms-grid-columns: max-content;
            grid-template-columns: max-content; }
          @media all and (max-width: 1280px) {
            .header .header__nav .header__nav-list .header__nav-item .header__nav-detail.header__nav-detail--col2 ul {
              -ms-grid-columns: max-content max-content;
              grid-template-columns: max-content max-content; } }
  .header .header__language-selector {
    margin-left: 30px;
    margin-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 5px;
    -webkit-transition: var(--header-nav-transiton);
    transition: var(--header-nav-transiton); }
    @media all and (max-width: 1280px) {
      .header .header__language-selector {
        margin-right: 20px;
        margin-left: 20px; } }
    .header .header__language-selector a {
      display: block;
      width: 37px;
      height: -webkit-fit-content;
      height: fit-content; }
      .header .header__language-selector a:hover {
        opacity: 0.7; }
      .header .header__language-selector a img {
        width: 100%; }

/* -------------------------------------------------------------------------
	Object
------------------------------------------------------------------------- */
/* Component */
/*

line

*/
hr.line {
  border-color: #dddddd; }

/*

標準のマーカーを使ったリスト

*/
.list_disc > li, .list_square > li, .list_decimal > li, .list_decimal_zero > li, .list_dot > li, .list_circle > li, .list_decimal_01 > li, .list_decimal_02 > li, .list_decimal_03 > li, .list_decimal_04 > li, .list_upper_alpha_01 > li {
  margin-bottom: 7px; }
  .list_disc > li:last-child, .list_square > li:last-child, .list_decimal > li:last-child, .list_decimal_zero > li:last-child, .list_dot > li:last-child, .list_circle > li:last-child, .list_decimal_01 > li:last-child, .list_decimal_02 > li:last-child, .list_decimal_03 > li:last-child, .list_decimal_04 > li:last-child, .list_upper_alpha_01 > li:last-child {
    margin-bottom: 0; }

.list_disc {
  margin-left: 1.2em;
  list-style: disc; }

.list_square {
  margin-left: 1.2em;
  list-style: square; }

.list_decimal {
  margin-left: 1.7em;
  list-style: decimal; }

.list_decimal_zero {
  margin-left: 2.3em;
  list-style: decimal-leading-zero; }

/*

beforeでマーカーを作ったリスト (IE8以上)

*/
/* ---- ・ ---- */
.list_dot > li {
  text-indent: -1em;
  margin-left: 1em; }
  .list_dot > li:before {
    content: "・"; }
  .list_dot > li > * {
    text-indent: 0; }

/* ---- ● ---- */
.list_circle > li {
  text-indent: -1em;
  margin-left: 1em; }
  .list_circle > li:before {
    content: "● "; }
  .list_circle > li > * {
    text-indent: 0; }

/* ---- 1. ---- */
.list_decimal_01 > li {
  counter-increment: decimal_01;
  margin-left: 1.2em;
  text-indent: -1.2em; }
  .list_decimal_01 > li:before {
    content: counter(decimal_01) ". "; }
  .list_decimal_01 > li > * {
    text-indent: 0; }

/* ---- (1) ---- */
.list_decimal_02 > li {
  counter-increment: decimal_02;
  margin-left: 1.5em;
  text-indent: -1.5em; }
  .list_decimal_02 > li:before {
    content: "(" counter(decimal_02) ") "; }
  .list_decimal_02 > li > * {
    text-indent: 0; }

/* ---- [1] ---- */
.list_decimal_03 > li {
  counter-increment: decimal_03;
  margin-left: 1.5em;
  text-indent: -1.5em; }
  .list_decimal_03 > li:before {
    content: "[" counter(decimal_03) "] "; }
  .list_decimal_03 > li > * {
    text-indent: 0; }

/* ---- 丸数字 ---- */
.list_decimal_04 > li {
  counter-increment: decimal_04;
  margin-left: 1.5em;
  text-indent: -1.5em; }
  .list_decimal_04 > li:before {
    content: counter(decimal_04);
    border: 1px solid #000;
    padding: 0 3px;
    font-size: 10px;
    margin-right: 5px;
    text-align: center;
    line-height: 1;
    border-radius: 50%; }
  .list_decimal_04 > li > * {
    text-indent: 0; }

/* ---- upper alpha ---- */
.list_upper_alpha_01 > li {
  counter-increment: upper_alpha_01;
  margin-left: 1.5em;
  text-indent: -1.5em; }
  .list_upper_alpha_01 > li:before {
    content: counter(upper_alpha_01, upper-alpha) ") "; }
  .list_upper_alpha_01 > li > * {
    text-indent: 0; }

/*

no support message

*/
.noscript,
.legacy_ie_message {
  background-color: #fff9d7;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1px; }

.legacy_ie_message {
  display: none; }
  .regacy_ie .legacy_ie_message {
    display: block; }

/*

注釈 (IE8以上)

*/
/* ---- ※（注釈） ---- */
.notes {
  margin-left: 1.3em !important;
  text-indent: -1.3em !important; }
  .notes:before {
    content: "※ "; }
  .notes > * {
    text-indent: 0; }

/* ---- ※n （番号付き注釈）---- */
.notes_num {
  counter-increment: decimal_notes;
  margin-left: 1.9em !important;
  text-indent: -1.9em !important; }
  .notes_num:before {
    content: "※" counter(decimal_notes) " "; }
  .notes_num > * {
    text-indent: 0; }

/* Project */
.core-heading {
  margin: 0 auto 15px;
  text-align: center; }
  .core-heading.--g-menu {
    width: 378px; }
  .core-heading img {
    width: 100%; }
  @media all and (max-width: 679px) {
    .core-heading {
      width: 100%;
      max-width: 288px;
      margin: 20px auto 10px; } }

.core-section {
  width: 770px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px; }
  @media all and (max-width: 679px) {
    .core-section {
      width: 100%;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      height: -webkit-fit-content;
      height: fit-content;
      gap: 5px; } }
  .core-section p {
    color: #fff; }
  .core-section .core-section-item {
    padding: 24px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    background-size: cover;
    border-radius: 10px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden; }
    @media all and (max-width: 679px) {
      .core-section .core-section-item {
        padding: 30px 20px; } }
    .core-section .core-section-item:nth-child(1) {
      background-image: url("/assets/img/common/item_bg_01.jpg"); }
      @media all and (max-width: 679px) {
        .core-section .core-section-item:nth-child(1) {
          background-image: url("/assets/img/common/item_bg_sp_01.jpg"); } }
    .core-section .core-section-item:nth-child(2) {
      background-image: url("/assets/img/common/item_bg_02.jpg"); }
      @media all and (max-width: 679px) {
        .core-section .core-section-item:nth-child(2) {
          background-image: url("/assets/img/common/item_bg_sp_02.jpg"); } }
    .core-section .core-section-item:nth-child(3) {
      background-image: url("/assets/img/common/item_bg_03.jpg"); }
      @media all and (max-width: 679px) {
        .core-section .core-section-item:nth-child(3) {
          background-image: url("/assets/img/common/item_bg_sp_03.jpg"); } }
    .core-section .core-section-item:hover {
      background-color: #F27B18;
      text-decoration: none; }
    .core-section .core-section-item.now, .core-section .core-section-item:has(.now) {
      background-color: #F27B18;
      text-decoration: none; }
    .core-section .core-section-item.now::after, .core-section .core-section-item:has(.now)::after {
      opacity: 1; }
    .core-section .core-section-item::before {
      position: absolute;
      content: "";
      display: block;
      border: #fff solid 3px;
      border-radius: 5px;
      width: calc(100% - 18px);
      height: calc(100% - 20px);
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 1; }
    .core-section .core-section-item::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #F27B18;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease; }
    .core-section .core-section-item:hover::after {
      opacity: 1; }
    .core-section .core-section-item .core-section-body {
      z-index: 1; }
    .core-section .core-section-item .core-section-heading {
      font-size: 22px;
      letter-spacing: -0.03em;
      line-height: 1.2;
      font-weight: 700; }
      @media all and (max-width: 679px) {
        .core-section .core-section-item .core-section-heading {
          font-size: 18px; } }
    .core-section .core-section-item .core-section-heading--sub {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.03em; }
      @media all and (max-width: 679px) {
        .core-section .core-section-item .core-section-heading--sub {
          font-size: 16px; } }
    .core-section .core-section-item i {
      display: inline-block;
      font-size: 50px;
      margin-top: 18px;
      margin-bottom: 16px; }
      @media all and (max-width: 679px) {
        .core-section .core-section-item i {
          font-size: 40px;
          margin-top: 10px;
          margin-bottom: 10px; } }
    .core-section .core-section-item .core-section-text {
      margin-top: 16px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: -0.04em; }

.details_accordion {
  --details-accordion--padding--x: 10px;
  --details-accordion--padding--y: 10px;
  --details-accordion--icon--size: 10px;
  --details-accordion--icon--thickness: 1px;
  --details-accordion--icon--color: #333333;
  border-top: 1px solid #dddddd;
  overflow: hidden; }
  .details_accordion:last-child {
    border-bottom: 1px solid #dddddd; }

.details_accordion_title {
  position: relative;
  display: block;
  cursor: pointer; }
  .details_accordion_title::-webkit-details-marker {
    display: none; }
  .details_accordion_title__text {
    display: block;
    padding: var(--details-accordion--padding--y) var(--details-accordion--padding--x); }
  .details_accordion_title__icon {
    position: absolute;
    top: calc(50% - (var(--details-accordion--icon--size) / 2));
    right: var(--details-accordion--padding--x);
    display: block;
    width: var(--details-accordion--icon--size);
    height: var(--details-accordion--icon--size); }
    .details_accordion_title__icon.--open::before, .details_accordion_title__icon.--open::after {
      -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: rotate(90deg); }
    .details_accordion_title__icon.--open::before {
      opacity: 0; }
    .details_accordion_title__icon::before, .details_accordion_title__icon::after {
      content: "";
      position: absolute;
      display: block;
      background-color: var(--details-accordion--icon--color);
      -webkit-transition: .4s ease;
      transition: .4s ease;
      -webkit-transition-property: opacity, -webkit-transform;
      transition-property: opacity, -webkit-transform;
      transition-property: opacity, transform;
      transition-property: opacity, transform, -webkit-transform; }
    .details_accordion_title__icon::before {
      top: calc(50% - (var(--details-accordion--icon--thickness) / 2));
      left: 0;
      width: 100%;
      height: var(--details-accordion--icon--thickness); }
    .details_accordion_title__icon::after {
      top: 0;
      left: calc(50% - (var(--details-accordion--icon--thickness) / 2));
      width: var(--details-accordion--icon--thickness);
      height: 100%; }

.details_accordion_content__inner {
  padding: 0 var(--details-accordion--padding--x) var(--details-accordion--padding--y); }

.heading_lv1,
.heading_lv2,
.heading_lv3,
.heading_lv4 {
  font-feature-settings: "palt";
  letter-spacing: .1em; }

.heading_lv1 {
  margin-bottom: 30px;
  font-size: fs(30);
  font-weight: normal; }
  @media all and (max-width: 679px) {
    .heading_lv1 {
      margin-bottom: 20px; } }

.heading_lv2 {
  margin-top: 50px;
  margin-bottom: 25px;
  border-left: 3px solid #2E2C83;
  padding-left: 10px;
  font-size: fs(20);
  font-weight: normal; }
  @media all and (max-width: 679px) {
    .heading_lv2 {
      margin-top: 30px;
      margin-bottom: 20px; } }

.heading_lv3 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2E2C83;
  font-size: fs(16);
  font-weight: normal; }
  @media all and (max-width: 679px) {
    .heading_lv3 {
      margin-top: 25px; } }

.heading_lv4 {
  margin-top: 20px;
  margin-bottom: 10px; }

@font-face {
  font-family: 'icomoon';
  src: url("../font/icomoon.eot?5eruf6");
  src: url("../font/icomoon.eot?5eruf6#iefix") format("embedded-opentype"), url("../font/icomoon.ttf?5eruf6") format("truetype"), url("../font/icomoon.woff?5eruf6") format("woff"), url("../font/icomoon.svg?5eruf6#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon--"]:before, [class*=" icon--"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon--mobile:before {
  content: "\e000"; }

.icon--laptop:before {
  content: "\e001"; }

.icon--desktop:before {
  content: "\e002"; }

.icon--tablet:before {
  content: "\e003"; }

.icon--phone:before {
  content: "\e004"; }

.icon--document:before {
  content: "\e005"; }

.icon--documents:before {
  content: "\e006"; }

.icon--search:before {
  content: "\e007"; }

.icon--clipboard:before {
  content: "\e008"; }

.icon--newspaper:before {
  content: "\e009"; }

.icon--notebook:before {
  content: "\e00a"; }

.icon--book-open:before {
  content: "\e00b"; }

.icon--browser:before {
  content: "\e00c"; }

.icon--calendar:before {
  content: "\e00d"; }

.icon--presentation:before {
  content: "\e00e"; }

.icon--picture:before {
  content: "\e00f"; }

.icon--pictures:before {
  content: "\e010"; }

.icon--video:before {
  content: "\e011"; }

.icon--camera:before {
  content: "\e012"; }

.icon--printer:before {
  content: "\e013"; }

.icon--toolbox:before {
  content: "\e014"; }

.icon--briefcase:before {
  content: "\e015"; }

.icon--wallet:before {
  content: "\e016"; }

.icon--gift:before {
  content: "\e017"; }

.icon--bargraph:before {
  content: "\e018"; }

.icon--grid:before {
  content: "\e019"; }

.icon--expand:before {
  content: "\e01a"; }

.icon--focus:before {
  content: "\e01b"; }

.icon--edit:before {
  content: "\e01c"; }

.icon--adjustments:before {
  content: "\e01d"; }

.icon--ribbon:before {
  content: "\e01e"; }

.icon--hourglass:before {
  content: "\e01f"; }

.icon--lock:before {
  content: "\e020"; }

.icon--megaphone:before {
  content: "\e021"; }

.icon--shield:before {
  content: "\e022"; }

.icon--trophy:before {
  content: "\e023"; }

.icon--flag:before {
  content: "\e024"; }

.icon--map:before {
  content: "\e025"; }

.icon--puzzle:before {
  content: "\e026"; }

.icon--basket:before {
  content: "\e027"; }

.icon--envelope:before {
  content: "\e028"; }

.icon--streetsign:before {
  content: "\e029"; }

.icon--telescope:before {
  content: "\e02a"; }

.icon--gears:before {
  content: "\e02b"; }

.icon--key:before {
  content: "\e02c"; }

.icon--paperclip:before {
  content: "\e02d"; }

.icon--attachment:before {
  content: "\e02e"; }

.icon--pricetags:before {
  content: "\e02f"; }

.icon--lightbulb:before {
  content: "\e030"; }

.icon--layers:before {
  content: "\e031"; }

.icon--pencil:before {
  content: "\e032"; }

.icon--tools:before {
  content: "\e033"; }

.icon--tools-2:before {
  content: "\e034"; }

.icon--scissors:before {
  content: "\e035"; }

.icon--paintbrush:before {
  content: "\e036"; }

.icon--magnifying-glass:before {
  content: "\e037"; }

.icon--circle-compass:before {
  content: "\e038"; }

.icon--linegraph:before {
  content: "\e039"; }

.icon--mic:before {
  content: "\e03a"; }

.icon--strategy:before {
  content: "\e03b"; }

.icon--beaker:before {
  content: "\e03c"; }

.icon--caution:before {
  content: "\e03d"; }

.icon--recycle:before {
  content: "\e03e"; }

.icon--anchor:before {
  content: "\e03f"; }

.icon--profile-male:before {
  content: "\e040"; }

.icon--profile-female:before {
  content: "\e041"; }

.icon--bike:before {
  content: "\e042"; }

.icon--wine:before {
  content: "\e043"; }

.icon--hotairballoon:before {
  content: "\e044"; }

.icon--globe:before {
  content: "\e045"; }

.icon--genius:before {
  content: "\e046"; }

.icon--map-pin:before {
  content: "\e047"; }

.icon--dial:before {
  content: "\e048"; }

.icon--chat:before {
  content: "\e049"; }

.icon--heart:before {
  content: "\e04a"; }

.icon--cloud:before {
  content: "\e04b"; }

.icon--upload:before {
  content: "\e04c"; }

.icon--download:before {
  content: "\e04d"; }

.icon--target:before {
  content: "\e04e"; }

.icon--hazardous:before {
  content: "\e04f"; }

.icon--piechart:before {
  content: "\e050"; }

.icon--speedometer:before {
  content: "\e051"; }

.icon--global:before {
  content: "\e052"; }

.icon--compass:before {
  content: "\e053"; }

.icon--lifesaver:before {
  content: "\e054"; }

.icon--clock:before {
  content: "\e055"; }

.icon--aperture:before {
  content: "\e056"; }

.icon--quote:before {
  content: "\e057"; }

.icon--scope:before {
  content: "\e058"; }

.icon--alarmclock:before {
  content: "\e059"; }

.icon--refresh:before {
  content: "\e05a"; }

.icon--happy:before {
  content: "\e05b"; }

.icon--sad:before {
  content: "\e05c"; }

.icon--facebook:before {
  content: "\e05d"; }

.icon--twitter:before {
  content: "\e05e"; }

.icon--googleplus:before {
  content: "\e05f"; }

.icon--rss:before {
  content: "\e060"; }

.icon--tumblr:before {
  content: "\e061"; }

.icon--linkedin:before {
  content: "\e062"; }

.icon--dribbble:before {
  content: "\e063"; }

.rmb_l {
  margin-bottom: 50px !important; }

.rmt_l {
  margin-top: 50px !important; }

.rmr_l {
  margin-right: 50px !important; }

.rml_l {
  margin-left: 50px !important; }

.rmb_m {
  margin-bottom: 40px !important; }

.rmt_m {
  margin-top: 40px !important; }

.rmr_m {
  margin-right: 40px !important; }

.rml_m {
  margin-left: 40px !important; }

.rmb_s {
  margin-bottom: 30px !important; }

.rmt_s {
  margin-top: 30px !important; }

.rmr_s {
  margin-right: 30px !important; }

.rml_s {
  margin-left: 30px !important; }

.rmb_xs {
  margin-bottom: 20px !important; }

.rmt_xs {
  margin-top: 20px !important; }

.rmr_xs {
  margin-right: 20px !important; }

.rml_xs {
  margin-left: 20px !important; }

@media all and (max-width: 959px) {
  .rmb_l {
    margin-bottom: 40px !important; }
  .rmt_l {
    margin-top: 40px !important; }
  .rmr_l {
    margin-right: 40px !important; }
  .rml_l {
    margin-left: 40px !important; }
  .rmb_m {
    margin-bottom: 30px !important; }
  .rmt_m {
    margin-top: 30px !important; }
  .rmr_m {
    margin-right: 30px !important; }
  .rml_m {
    margin-left: 30px !important; }
  .rmb_s {
    margin-bottom: 25px !important; }
  .rmt_s {
    margin-top: 25px !important; }
  .rmr_s {
    margin-right: 25px !important; }
  .rml_s {
    margin-left: 25px !important; } }

@media all and (max-width: 679px) {
  .rmb_l {
    margin-bottom: 30px !important; }
  .rmt_l {
    margin-top: 30px !important; }
  .rmr_l {
    margin-right: 30px !important; }
  .rml_l {
    margin-left: 30px !important; }
  .rmb_m {
    margin-bottom: 25px !important; }
  .rmt_m {
    margin-top: 25px !important; }
  .rmr_m {
    margin-right: 25px !important; }
  .rml_m {
    margin-left: 25px !important; }
  .rmb_s {
    margin-bottom: 20px !important; }
  .rmt_s {
    margin-top: 20px !important; }
  .rmr_s {
    margin-right: 20px !important; }
  .rml_s {
    margin-left: 20px !important; }
  .rmb_xs {
    margin-bottom: 15px !important; }
  .rmt_xs {
    margin-top: 15px !important; }
  .rmr_xs {
    margin-right: 15px !important; }
  .rml_xs {
    margin-left: 15px !important; } }

.margin_example {
  margin-bottom: per(40px, 860px); }

.panel__item {
  background-color: #eee;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 3px; }

@media all and (min-width: 680px) {
  body .container.car-top-margin {
    min-width: 500px; } }

@media all and (max-width: 679px) {
  body .carousel-container.carousel-container--reno {
    padding: 0 5vw; } }

@media all and (min-width: 1650px) {
  body .carousel-container.carousel-container--reno .carousel-image-container img {
    min-height: 200px; } }

body .carousel-container.carousel-container--reno .carousel-inner {
  max-width: 70vw; }
  @media all and (max-width: 679px) {
    body .carousel-container.carousel-container--reno .carousel-inner {
      max-width: none;
      width: 100%; } }

body .carousel-container.carousel-container--reno .carousel-control-prev,
body .carousel-container.carousel-container--reno .carousel-control-next {
  width: -webkit-fit-content;
  width: fit-content; }

body .content-segment.--reno .image-grid-container .image-item img {
  height: 100%;
  width: 100%; }

body .accordion-content-wrapper-top p {
  font-size: 18px; }

body .container-class {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

body .breadcrumb-wrapper {
  right: 35px; }

body #fluid-show {
  min-height: 300px; }
  body #fluid-show .embed-responsive {
    min-height: 300px; }

body .fixed-msg p {
  font-size: 4rem; }
  @media all and (max-width: 679px) {
    body .fixed-msg p {
      font-size: 2rem; } }

body .casestudy-fz {
  font-size: 16px; }
  @media all and (max-width: 679px) {
    body .casestudy-fz {
      font-size: 12px; } }
  body .casestudy-fz P {
    font-size: var(--PAGETITLE-FONTSIZE);
    line-height: 1.4; }
    @media all and (max-width: 679px) {
      body .casestudy-fz P {
        font-size: 19px; } }

body #features .row {
  margin-right: 0;
  margin-left: 0; }

body .interview.--reno p {
  font-size: 20px; }
  @media all and (max-width: 679px) {
    body .interview.--reno p {
      font-size: 13px; } }

@media all and (min-width: 680px) {
  body .custom-switch.--reno {
    padding-left: 3rem; } }

.section {
  margin-top: 50px;
  margin-bottom: 50px;
  border-top: 1px solid #dddddd; }
  .section:last-child {
    margin-bottom: 0; }
  @media all and (max-width: 679px) {
    .section {
      margin-top: 30px;
      margin-bottom: 30px; } }

.tab__btns {
  overflow: hidden; }
  .tab__btns > li {
    width: 33.33%;
    float: left;
    padding: 10px;
    border-top: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    background-color: #f1f1f1; }
    .tab__btns > li:hover {
      background-color: #fff; }
    .tab__btns > li.selected {
      background-color: #fff;
      border-bottom: 1px solid #fff; }
    .tab__btns > li:last-child {
      border-right: 1px solid #dddddd; }

.tab__contents > div {
  padding: 30px;
  border: 1px solid #dddddd;
  border-top: none; }

.top_content p, .top_content li, .top_content dt, .top_content dd,
.lower_content p,
.lower_content li,
.lower_content dt,
.lower_content dd {
  line-height: 1.75; }

.top_content * + p, .top_content * + ul, .top_content * + ol,
.lower_content * + p,
.lower_content * + ul,
.lower_content * + ol {
  margin-top: 15px;
  margin-bottom: 15px; }

.top_content pre,
.lower_content pre {
  margin: 10px 0 20px;
  background-color: #333;
  border: 1px solid #e5e5e5;
  color: #fff;
  padding: 10px;
  font-family: "Courier New", Courier, monospace;
  border-radius: 4px;
  line-height: 1.3;
  overflow: auto;
  text-align: left; }
  .top_content pre .comment,
  .lower_content pre .comment {
    color: #999; }
  .top_content pre .red,
  .lower_content pre .red {
    color: skyblue; }

.toggle:last-of-type,
.accordion:last-of-type {
  border-bottom: 1px solid #dddddd; }

.toggle__title,
.accordion__title {
  border-top: 1px solid #dddddd;
  display: block;
  padding: 10px 0;
  cursor: pointer; }
  .toggle__title:hover,
  .accordion__title:hover {
    background-color: #f1f1f1; }
  .toggle__title:before,
  .accordion__title:before {
    content: "+";
    display: inline-block;
    width: 18px;
    text-align: center; }

.toggle__content,
.accordion__content {
  padding: 15px; }

.toggle.selected .title:before,
.accordion.selected .title:before {
  content: "-"; }

/* Scope */
.content-width {
  max-width: 1140px;
  margin: 0 auto; }
  @media all and (max-width: 679px) {
    .content-width {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 0 15px; } }

.sp_block {
  display: none; }
  @media all and (max-width: 679px) {
    .sp_block {
      display: block; } }

.top .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: center;
  align-self: center;
  width: -webkit-fit-content;
  width: fit-content;
  padding-bottom: 60px;
  width: 100%; }
  @media all and (max-width: 679px) {
    .top .main {
      padding: 0 15px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      margin-top: 10px;
      padding-bottom: 40px; } }
  .top .main .main__container {
    width: 82.15%;
    position: relative; }
    @media all and (max-width: 679px) {
      .top .main .main__container {
        width: 100%; } }
    .top .main .main__container .main__image {
      width: 100%; }
    .top .main .main__container .main__btn-list {
      position: absolute;
      bottom: 2.5%;
      left: 0;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      width: 66.6%; }
      @media all and (max-width: 679px) {
        .top .main .main__container .main__btn-list {
          width: 100%;
          bottom: -1%; } }
      .top .main .main__container .main__btn-list .main__btn-item {
        width: 100%;
        display: block;
        -webkit-box-shadow: 1 1 3px black;
        box-shadow: 1 1 3px black;
        position: relative; }
        .top .main .main__container .main__btn-list .main__btn-item img {
          width: 100%; }
        .top .main .main__container .main__btn-list .main__btn-item .hover {
          position: absolute;
          top: 0;
          left: 0;
          opacity: 0;
          visibility: hidden;
          -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .top .main .main__container .main__btn-list .main__btn-item:hover .hover {
          opacity: 1;
          visibility: visible; }

.top .top-quote {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px; }
  @media all and (max-width: 679px) {
    .top .top-quote {
      padding-top: 45px;
      padding-bottom: 45px; } }
  .top .top-quote .top-quote__border {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40px auto 1fr;
    grid-template-columns: 40px auto 1fr;
    -webkit-column-gap: 10px;
    column-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media all and (max-width: 679px) {
      .top .top-quote .top-quote__border {
        -ms-grid-columns: 20px auto 1fr;
        grid-template-columns: 20px auto 1fr; } }
    .top .top-quote .top-quote__border.--end {
      -ms-grid-columns: 1fr auto 40px;
      grid-template-columns: 1fr auto 40px; }
      @media all and (max-width: 679px) {
        .top .top-quote .top-quote__border.--end {
          -ms-grid-columns: 1fr auto 20px;
          grid-template-columns: 1fr auto 20px; } }
    .top .top-quote .top-quote__border span {
      width: 100%;
      height: 3px;
      background-color: #333333; }
    .top .top-quote .top-quote__border i {
      font-size: 29px; }
      @media all and (max-width: 679px) {
        .top .top-quote .top-quote__border i {
          font-size: 13px; } }
    .top .top-quote .top-quote__border i.--start {
      left: 40px; }
      @media all and (max-width: 679px) {
        .top .top-quote .top-quote__border i.--start {
          left: 20px; } }
    .top .top-quote .top-quote__border i.--end {
      right: 40px; }
      @media all and (max-width: 679px) {
        .top .top-quote .top-quote__border i.--end {
          right: 20px; } }
  .top .top-quote .top-quote__text {
    font-size: 32px;
    font-weight: 700;
    margin: 45px 0 50px;
    padding: 0 70px;
    letter-spacing: -0.03em; }
    @media all and (max-width: 679px) {
      .top .top-quote .top-quote__text {
        font-size: 20px;
        padding: 0 25px;
        margin: 15px 0;
        letter-spacing: 0; } }
  .top .top-quote .top-quote__attribution {
    text-align: center;
    font-size: 20px;
    letter-spacing: -0.03em;
    margin-top: 45px;
    line-height: 1.35; }
    @media all and (max-width: 679px) {
      .top .top-quote .top-quote__attribution {
        font-size: 16px;
        text-align: left;
        margin-top: 35px; } }
    .top .top-quote .top-quote__attribution a {
      color: #0193E6; }
      .top .top-quote .top-quote__attribution a span {
        text-decoration: underline; }
        .top .top-quote .top-quote__attribution a span:hover {
          color: #0193E6; }
      .top .top-quote .top-quote__attribution a i {
        font-size: 12px; }
      .top .top-quote .top-quote__attribution a:hover span {
        text-decoration: none; }

.top .top-core {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 70px;
  margin-bottom: 90px; }
  @media all and (max-width: 679px) {
    .top .top-core {
      margin-top: 30px; } }
  .top .top-core .core-heading {
    width: 640px;
    max-width: none; }
    @media all and (max-width: 679px) {
      .top .top-core .core-heading {
        width: 100%; } }
    .top .top-core .core-heading img {
      width: 100%; }
  .top .top-core .core-section {
    width: 100%;
    margin-top: 40px; }
    @media all and (max-width: 679px) {
      .top .top-core .core-section {
        height: -webkit-fit-content;
        height: fit-content;
        margin-top: 25px; } }
    .top .top-core .core-section .core-section-heading {
      font-size: 38px;
      line-height: 1.3; }
      @media all and (max-width: 679px) {
        .top .top-core .core-section .core-section-heading {
          font-size: 18px; } }
    .top .top-core .core-section .core-section-heading--sub {
      font-size: 26px;
      line-height: 1.3; }
      @media all and (max-width: 679px) {
        .top .top-core .core-section .core-section-heading--sub {
          font-size: 16px;
          line-height: 1.2; } }
    .top .top-core .core-section .core-section-item {
      padding: 75px 20px; }
      @media all and (max-width: 679px) {
        .top .top-core .core-section .core-section-item {
          padding: 30px 20px; } }
      .top .top-core .core-section .core-section-item i {
        font-size: 80px;
        margin-top: 30px;
        margin-bottom: 30px; }
        @media all and (max-width: 679px) {
          .top .top-core .core-section .core-section-item i {
            font-size: 40px;
            margin-top: 10px;
            margin-bottom: 10px; } }
    .top .top-core .core-section .core-section-text {
      font-size: 18px;
      line-height: 1.86; }
      @media all and (max-width: 679px) {
        .top .top-core .core-section .core-section-text {
          font-size: 12px;
          line-height: 1.41; } }

.top_product {
  margin-top: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%; }
  @media all and (max-width: 679px) {
    .top_product {
      margin-top: 30px;
      padding: 0 10px; } }
  .top_product .top_product_container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: -webkit-fit-content;
    width: fit-content;
    background-color: transparent;
    border-radius: 12px;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    overflow: hidden;
    margin: 0 auto; }
    @media all and (max-width: 679px) {
      .top_product .top_product_container {
        padding: 10px;
        width: -webkit-fit-content;
        width: fit-content; } }
  .top_product .content-width--inner {
    max-width: 1140px; }
    @media all and (max-width: 679px) {
      .top_product .content-width--inner {
        max-width: 100;
        width: 100%; } }
  .top_product .top_product-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px; }
    @media all and (max-width: 679px) {
      .top_product .top_product-list {
        gap: 5px; } }
    .top_product .top_product-list .top_product-item {
      border-radius: 10px;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 10px;
      background-color: #fff;
      -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
      padding: 16px; }
      @media all and (max-width: 679px) {
        .top_product .top_product-list .top_product-item {
          -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); } }
      @media all and (max-width: 679px) {
        .top_product .top_product-list .top_product-item {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          height: -webkit-fit-content;
          height: fit-content;
          padding: 10px; } }
      .top_product .top_product-list .top_product-item .text {
        width: 400px;
        -ms-flex-negative: 0;
        flex-shrink: 0; }
        @media all and (max-width: 679px) {
          .top_product .top_product-list .top_product-item .text {
            width: 100%; } }
        .top_product .top_product-list .top_product-item .text .subtitle {
          font-size: 20px;
          color: #0193E6;
          font-weight: bold;
          width: 270px;
          margin-left: 5px;
          white-space: nowrap; }
          @media all and (max-width: 679px) {
            .top_product .top_product-list .top_product-item .text .subtitle {
              font-size: 16px; } }
        .top_product .top_product-list .top_product-item .text .title {
          font-size: 28px;
          font-weight: 700;
          margin-top: -20px; }
          @media all and (max-width: 679px) {
            .top_product .top_product-list .top_product-item .text .title {
              font-size: 17px;
              margin-top: -10px; } }
          .top_product .top_product-list .top_product-item .text .title span {
            font-size: 92px;
            letter-spacing: -0.05em;
            text-align: left; }
            @media all and (max-width: 679px) {
              .top_product .top_product-list .top_product-item .text .title span {
                font-size: 62px; } }
        .top_product .top_product-list .top_product-item .text .top_product__info-group {
          display: -ms-grid;
          display: grid;
          -ms-grid-columns: 3fr 4fr;
          grid-template-columns: 3fr 4fr;
          gap: 1px;
          text-align: center;
          margin-top: -5px; }
          @media all and (max-width: 679px) {
            .top_product .top_product-list .top_product-item .text .top_product__info-group {
              -ms-grid-columns: 3fr 4fr;
              grid-template-columns: 3fr 4fr; } }
          .top_product .top_product-list .top_product-item .text .top_product__info-group .top_product__info-item .category {
            background-color: #333333;
            color: #fff;
            font-size: 14px; }
            @media all and (max-width: 679px) {
              .top_product .top_product-list .top_product-item .text .top_product__info-group .top_product__info-item .category {
                margin-bottom: 5px;
                font-size: 10px; } }
          .top_product .top_product-list .top_product-item .text .top_product__info-group .top_product__info-item .value {
            font-size: 14px;
            font-weight: 700; }
            @media all and (max-width: 679px) {
              .top_product .top_product-list .top_product-item .text .top_product__info-group .top_product__info-item .value {
                font-size: 11px; } }
            .top_product .top_product-list .top_product-item .text .top_product__info-group .top_product__info-item .value .number {
              font-size: 28px;
              letter-spacing: -0.03em; }
              @media all and (max-width: 679px) {
                .top_product .top_product-list .top_product-item .text .top_product__info-group .top_product__info-item .value .number {
                  font-size: 21px; } }
            .top_product .top_product-list .top_product-item .text .top_product__info-group .top_product__info-item .value .between {
              position: relative;
              top: -3px; }
            .top_product .top_product-list .top_product-item .text .top_product__info-group .top_product__info-item .value .--blue {
              color: #00B1E6;
              background-color: transparent; }
            .top_product .top_product-list .top_product-item .text .top_product__info-group .top_product__info-item .value .--red {
              color: #E65800;
              background-color: transparent; }
            .top_product .top_product-list .top_product-item .text .top_product__info-group .top_product__info-item .value .minmax {
              font-size: 18px; }
              @media all and (max-width: 679px) {
                .top_product .top_product-list .top_product-item .text .top_product__info-group .top_product__info-item .value .minmax {
                  font-size: 13px;
                  letter-spacing: -0.05em; } }
          .top_product .top_product-list .top_product-item .text .top_product__info-group .top_product__info-item.--temperature .value {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            gap: 5px;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center; }
      .top_product .top_product-list .top_product-item .image {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3px; }
        @media all and (max-width: 679px) {
          .top_product .top_product-list .top_product-item .image {
            -ms-grid-columns: 1fr 1fr;
            grid-template-columns: 1fr 1fr; } }
        .top_product .top_product-list .top_product-item .image .image__item {
          width: 100%;
          -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease;
          position: relative;
          border-radius: 10px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          .top_product .top_product-list .top_product-item .image .image__item:hover {
            -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
            transform: scale(1.1);
            z-index: 10;
            -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); }
            @media all and (max-width: 679px) {
              .top_product .top_product-list .top_product-item .image .image__item:hover {
                -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
                box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); } }
            .top_product .top_product-list .top_product-item .image .image__item:hover .--hover {
              opacity: 1; }
          .top_product .top_product-list .top_product-item .image .image__item.now .--hover, .top_product .top_product-list .top_product-item .image .image__item:has(.now) .--hover {
            opacity: 1; }
          .top_product .top_product-list .top_product-item .image .image__item img {
            width: 100%;
            border-radius: 5px; }
          .top_product .top_product-list .top_product-item .image .image__item .--hover {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease; }

/* Utility */
.align_l {
  text-align: left !important; }

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

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

.valign_m {
  vertical-align: middle; }

.valign_t {
  vertical-align: top; }

.valign_b {
  vertical-align: bottom; }

/*for modern browser*/
.clear_fix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden; }

/*for IE 5.5-7*/
.clear_fix {
  zoom: 1; }

.clear_both {
  clear: both;
  height: 1px;
  font-size: 1px;
  text-align: center;
  line-height: 0; }

.clear {
  clear: both; }

/*

display用クラス

PC向け
.none
.block
.inline_block
.inline
.table
.table_cell

タブレット向け
.tablet_none
.tablet_block
.tablet_inline_block
.tablet_inline
.tablet_table
.tablet_table_cell

スマホ向け
.sp_none
.sp_block
.sp_inline_block
.sp_inline
.sp_table
.sp_table_cell

*/
.none {
  display: none !important; }

.block {
  display: block !important; }

.inline_block {
  display: inline-block  !important; }

.inline {
  display: inline !important; }

.table {
  display: table !important; }

.table_cell {
  display: table-cell !important; }

@media all and (max-width: 1280px) {
  .liquid_none {
    display: none !important; } }

@media all and (max-width: 959px) {
  .tablet_none {
    display: none !important; } }

@media all and (max-width: 679px) {
  .sp_none {
    display: none !important; } }

@media all and (max-width: 320px) {
  .sp_small_none {
    display: none !important; } }

@media all and (max-width: 1280px) {
  .liquid_block {
    display: block !important; }
  .liquid_inline_block {
    display: inline-block !important; }
  .liquid_inline {
    display: inline !important; }
  .liquid_table {
    display: table !important; }
  .liquid_cell {
    display: table-cell !important; } }

@media all and (max-width: 959px) {
  .tablet_block {
    display: block !important; }
  .tablet_inline_block {
    display: inline-block !important; }
  .tablet_inline {
    display: inline !important; }
  .tablet_table {
    display: table !important; }
  .tablet_cell {
    display: table-cell !important; } }

@media all and (max-width: 679px) {
  .sp_block {
    display: block !important; }
  .sp_inline_block {
    display: inline-block !important; }
  .sp_inline {
    display: inline !important; }
  .sp_table {
    display: table !important; }
  .sp_cell {
    display: table-cell !important; } }

@media all and (max-width: 320px) {
  .sp_small_block {
    display: block !important; }
  .sp_small_inline_block {
    display: inline-block !important; }
  .sp_small_inline {
    display: inline !important; }
  .sp_small_table {
    display: table !important; }
  .sp_small_cell {
    display: table-cell !important; } }

.float_r {
  float: right;
  display: inline; }

.float_l {
  float: left;
  display: inline; }

/*

fluid image

*/
.fluid_img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* IE8 */ }

/*

justify layout

```html
<ul class="just_layout">
	<li class ="just_layout__item"></li>
	<li class ="just_layout__item"></li>
</ul>
```

*/
.just_layout {
  text-align: justify;
  text-justify: distribute-all-lines;
  zoom: 1;
  display: block;
  line-height: 0; }
  .just_layout:after {
    line-height: 0;
    visibility: hidden;
    content: "";
    display: inline-block;
    width: 100%; }
  .just_layout__item {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    line-height: normal; }

* html .just_layout .just_layout__item {
  display: inline;
  zoom: 1; }

*:first-child + html .just_layout .just_layout__item {
  display: inline;
  zoom: 1; }

/*

margin and padding

5刻みで上下左右のマージンとパディングのクラスを定義
$start_value x 5の値から、$end_value x 5 までを設定

```class
.mb-5
.mt-5
.mr-5
.ml-5

.mb0
.mt0
.mr0
.ml0

.mb5
.mt5
.mr5
.ml5

.mb10
.mt10
.mr10
.ml10

.pb-5
.pt-5
.pr-5
.pl-5

.pb0
.pt0
.pr0
.pl0

.pb5
.pt5
.pr5
.pl5

.pb10
.pt10
.pr10
.pl10
```

レスポンシブ用に$breakpointsのキーを接頭辞にしたクラスも書き出します。
```class
.tablet_mb10
.sp_mb10
```

*/
/*

font

*/
.smaller {
  font-size: 85% !important; }

.larger {
  font-size: larger !important; }

.bold {
  font-weight: bold !important; }

.weight_normal {
  font-weight: normal !important; }

.style_normal {
  font-style: normal !important; }

/*

line height

*/
.lh_l {
  line-height: 1.75 !important; }

.lh_m {
  line-height: 1.5 !important; }

.lh_s {
  line-height: 1.3 !important; }

.lh_xs {
  line-height: 1 !important; }

/*

font-feature-settings

*/
.ffs_palt {
  font-feature-settings: "palt" !important;
  letter-spacing: .08em; }

.ffs_normal {
  font-feature-settings: normal !important;
  letter-spacing: .08em; }

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