/* リセット */

* {
  box-sizing: border-box;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}

table {
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

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

strong {
  font-weight: bold;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

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

abbr, acronym {
  border: 0;
}

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

/* Noto Sans JP -------------------------------------*/

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 300;
  src: url('../../../fonts/NotoSansCJKjp-Light.woff2') format('woff2'),
    url('../../../fonts/NotoSansCJKjp-Light.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('../../../fonts/NotoSansCJKjp-Regular.woff2') format('woff2'),
    url('../../../fonts/NotoSansCJKjp-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: url('../../../fonts/NotoSansCJKjp-Medium.woff2') format('woff2'),
    url('../../../fonts/NotoSansCJKjp-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('../../../fonts/NotoSansCJKjp-Bold.woff2') format('woff2'),
    url('../../../fonts/NotoSansCJKjp-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  src: url('../../../fonts/NotoSansCJKjp-Black.woff2') format('woff2'),
    url('../../../fonts/NotoSansCJKjp-Black.woff') format('woff');
}


/* Zen Kaku Gothic Antique -------------------------------------*/

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 300;
  src: url('../../../fonts/ZenKakuGothicAntique-Light.woff2') format('woff2'),
    url('../../../fonts/ZenKakuGothicAntique-Light.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 400;
  src: url('../../../fonts/ZenKakuGothicAntique-Regular.woff2') format('woff2'),
    url('../../../fonts/ZenKakuGothicAntique-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 500;
  src: url('../../../fonts/ZenKakuGothicAntique-Medium.woff2') format('woff2'),
    url('../../../fonts/ZenKakuGothicAntique-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 700;
  src: url('../../../fonts/ZenKakuGothicAntique-Bold.woff2') format('woff2'),
    url('../../../fonts/ZenKakuGothicAntique-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 900;
  src: url('../../../fonts/ZenKakuGothicAntique-Black.woff2') format('woff2'),
    url('../../../fonts/ZenKakuGothicAntique-Black.woff') format('woff');
}


/*-------------------------------------------------
/* 基本
--------------------------------------------------*/

:root {
  --color-text: #221816;
  --color-main: #0B4491;
  --color-back: #F0F3F7;

  --color-dark-blue: #07133f;
  --color-blue: #4d89c7;
  --color-light-blue: #aae4f9;
  --color-bright-blue: #bfd3dd;

  --color-vivid-blue: #1fa9e2;
  --color-vivid-light-blue: #00d8ff;
  --color-vivid-light-red: #fc9292;

  --color-red: #e5004f;
  --color-orange: #ea5514;

  --color-taste-analysis: #f1a71d;
  --color-odor-analysis: #0070c0;
  --color-component-analysis: #196b24;

  --color-gray: #82888E;
  --color-light-gray: #E1E4E9;
  --color-visited: #585858;

  --linear-gradient-blue: linear-gradient(to right, #6dbcea, #4d89c7);
  --linear-gradient-blue: linear-gradient(90deg,rgba(109, 188, 234, 1) 0%, rgba(77, 137, 199, 1) 100%);
  --linear-gradient-orange: linear-gradient(to right, #ea5514, #e95162);
  --linear-gradient-orange: linear-gradient(90deg,rgba(234, 85, 20, 1) 0%, rgba(233, 81, 98, 1) 100%);

  --linear-gradient-faq: linear-gradient(45deg,#1fa9e2 40%, #00d8ff 100%);
  --linear-gradient-request: linear-gradient(45deg,#ea5514 40%, #fc9292 100%);

  --box-shadow: 0 0 3px rgba(141, 155, 170, 0.2);
  --box-shadow-hover: 0 0 20px 10px rgba(2, 8, 10, 0.2);

  --font-family-main: 'Zen Kaku Gothic Antique', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-family-sans: 'Noto Sans CJK JP', 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en: "Poppins", sans-serif;
  --font-oswald: "Oswald", sans-serif;
}

.page-container {
  font-family: var(--font-family-main);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.6;
  background-color: var(--color-back);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
}

.foot-copy,
.en {
  font-family: var(--font-en);
}

.page-container a:link {
  text-decoration: none;
  line-height: normal;
}

.page-container a:visited {
  text-decoration: none;
}

.page-container a:hover {
  text-decoration: underline;
}

.page-container a:active {
  text-decoration: none;
}

/* iPhoneTELリンク色変更なしにする */
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

.page-container img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

.page-container {
  position: relative;
  margin-top: 80px;
}

html {
  scroll-behavior: smooth;
}



/*****************************************
*
* 印刷用
*
******************************************/

@media print {
  body {
    width: 1200px;
    transform: scale(0.8);
    transform-origin: 0 0;
    -webkit-print-color-adjust: exact;
  }

  /* FireFoxテーブル印刷バグ回避 */
  _:-ms-lang(x)::-ms-backdrop, .wrapper {
    overflow: auto;
    display: table;
  }


  /* アニメーション無効 */
  [class^="animation"], [class*=" animation"],
  footer,
  .topmain {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/*****************************************
*
* contents
*
******************************************/

.page-container {
  padding-bottom: 160px;
}


/*------------------------------------------*/
/* タイトル
/*------------------------------------------*/

#titleimg {
  width: 1100px;
}

.customize-pages__title {
  position: relative;
  display: flex;
  align-items: center;
  height: 100px;
  text-align: left;
  color: white;
  font-size: 2.2rem;
}

.customize-pages__title::before {
  content: '';
  display: inline-block;
  background: url('../img/common/icon_line.svg') no-repeat;
  background-size: 100%;
  width: 35px;
  height: 28px;
  margin-right: 10px;
}

.customize-pages__title .en {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-top: 5px;
  margin-left: 10px;
}

/* ぱんくず --------------------------------*/

#secondpankuzu {
  width: 1100px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px 0;
  margin: 0 auto;
}

a.pankuzu:link {
  text-decoration: none;
  color: var(--color-text);
}

a.pankuzu:hover {
  text-decoration: underline;
}
