@charset "UTF-8";
/*-------------------------------------------*/
/*	初期化
/*-------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  box-sizing: border-box; }

body, h1, h2, h3, h4, h5, p,
ul, ol, li, dl, dt, dd,
table,
form, input {
  margin: 0;
  padding: 0; }

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

/*-------------------------------------------*/
/*	基本設定
/*-------------------------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px; }
  @media screen and (max-width: 1079.98px) {
    html {
      scroll-padding-top: 50px; } }
  @media screen and (max-width: 767.98px) {
    html {
      font-size: 14px; } }

html, body {
  height: 100%;
  min-height: 100%; }

body {
  position: relative;
  background: #fff;
  font-family: "Zen Kaku Gothic New", serif;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  pointer-events: all;
  font-weight: 400;
  line-height: 240%;
  letter-spacing: 0.02em;
  color: #282233;
  z-index: -2; }

a {
  display: block;
  text-decoration: none;
  word-break: break-all;
  color: #282233;
  transition: 0.5s all ease 0s; }
  a:hover {
    color: #282233;
    opacity: 0.6; }

button {
  transition: 0.5s all ease 0s;
  cursor: pointer; }

blockquote, q {
  quotes: none; }

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

ol, ul, li {
  list-style: none; }

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

picture,
img {
  vertical-align: top;
  width: 100%;
  max-width: 100%;
  height: auto;
  line-height: 0; }

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none; }

main {
  padding-top: 126px;
  background: #fff; }
  @media screen and (max-width: 1079.98px) {
    main {
      padding-top: 50px; } }

section {
  background: #fff; }

h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 160%;
  letter-spacing: 0.02em; }
  h2 span {
    display: inline-block; }
  h2 .en {
    display: block;
    margin-top: 16px;
    font-weight: 800;
    font-size: 1rem;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0069AD; }
  h2.white {
    color: #fff; }
    h2.white .en {
      color: #fff; }
  @media screen and (max-width: 1079.98px) {
    h2 {
      font-size: 32px; } }
  @media screen and (max-width: 999.98px) {
    h2 {
      font-size: 28px; } }
  @media screen and (max-width: 767.98px) {
    h2 {
      font-size: 24px; } }

.container {
  position: relative;
  z-index: -1; }

.wrap {
  width: 93.939%;
  max-width: 1240px;
  margin: 0 auto; }
  @media screen and (max-width: 767.98px) {
    .wrap {
      width: 90%; } }

.wrap-80 {
  width: 87.878%;
  max-width: 1160px;
  margin: 0 auto; }
  @media screen and (max-width: 767.98px) {
    .wrap-80 {
      width: 90%; } }

.wrap-120 {
  width: 81.818%;
  max-width: 1080px;
  margin: 0 auto; }
  @media screen and (max-width: 767.98px) {
    .wrap-120 {
      width: 90%; } }

.movie div {
  position: relative;
  width: 100%;
  padding-top: 56.25%; }
  .movie div iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%; }

/*-------------------------------------------*/
/*	表示
/*-------------------------------------------*/
[data-in] {
  opacity: 0;
  transform: translateY(-15px);
  transition: opacity 0.55s ease 0.25s, transform 0.55s ease 0.25s; }

[data-in-done="1"] {
  opacity: 1;
  transform: translateY(0); }

[data-in="1"] {
  opacity: 1;
  transform: translateY(0); }

.pc {
  display: block; }
  @media screen and (max-width: 499.98px) {
    .pc {
      display: none; } }

.sp {
  display: none; }
  @media screen and (max-width: 499.98px) {
    .sp {
      display: block; } }

.max-tb {
  display: none; }
  @media screen and (max-width: 767.98px) {
    .max-tb {
      display: block; } }

.min-tb {
  display: block; }
  @media screen and (max-width: 767.98px) {
    .min-tb {
      display: none; } }

.fadein-nav {
  animation-name: fadeInNavAnime;
  animation-fill-mode: backwards;
  animation-duration: 0.45s;
  animation-timing-function: ease;
  animation-delay: 0.25s; }

@keyframes fadeInNavAnime {
  0% {
    opacity: 0;
    transform: translateY(-15px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
.fadein {
  animation-name: fadeInAnime;
  animation-fill-mode: backwards;
  animation-duration: 0.55s;
  animation-timing-function: ease;
  animation-delay: 0.25s; }

@keyframes fadeInAnime {
  0% {
    opacity: 0;
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
.fadedown {
  animation-name: fadeDownAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-15px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.no-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/*-------------------------------------------*/
/*	アイコン
/*-------------------------------------------*/
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../font/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(../font/MaterialIcons-Regular.woff2) format("woff2"), url(../font/MaterialIcons-Regular.woff) format("woff"), url(../font/MaterialIcons-Regular.ttf) format("truetype"); }
.icon {
  display: inline-block;
  vertical-align: middle;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased; }

/*-------------------------------------------*/
/*	印刷
/*-------------------------------------------*/
@media print {
  html, body {
    height: 100%;
    min-height: 100%; } }
/*-------------------------------------------*/
/*	header
/*-------------------------------------------*/
main#top {
  padding-top: 0; }

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 62px;
  background: transparent;
  transition: all 0.25s; }
  header .wrap {
    height: 100%; }
  header h1 {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 410px;
    height: 62px; }
    header h1 a.title {
      display: flex;
      align-items: center;
      width: 410px;
      height: 28px;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden; }
      header h1 a.title span {
        display: block;
        width: 100%;
        height: 100%;
        background: url("./../../assets/img/common/logo.svg") left center/100% no-repeat; }
  header .nav {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1500px;
    transition: transform 0.4s ease-in-out;
    /*scrollbar*/
    scrollbar-width: none;
    -ms-overflow-style: none; }
    header .nav:-webkit-scrollbar {
      display: none; }
    header .nav .wrap {
      position: relative; }
    header .nav .right-area {
      display: flex;
      align-items: center; }
      @media screen and (max-width: 1170px) {
        header .nav .right-area {
          display: none; } }
    header .nav nav {
      height: 62px;
      margin: 0 0 0 auto; }
      header .nav nav > ul {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%; }
        header .nav nav > ul > li > a {
          display: flex;
          align-items: center;
          justify-content: center;
          position: relative;
          height: 62px;
          padding: 2px 24px; }
          header .nav nav > ul > li > a:before {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: 1px;
            height: 14px;
            background: #D6C9B5; }
        header .nav nav > ul > li:nth-last-child(2) a:before {
          content: none; }
        header .nav nav > ul > li:last-child > a {
          padding: 20px 40.5px;
          background: #0069AD;
          color: #fff !important; }
          header .nav nav > ul > li:last-child > a:before {
            content: none; }
          header .nav nav > ul > li:last-child > a span {
            display: block;
            width: 100%;
            height: 100%;
            padding-right: 22px;
            background: url("./../../assets/img/icon/icon-open-w.svg") right top 2.7px/18px 18px no-repeat;
            transition: 0.5s all ease 0s; }
        header .nav nav > ul > li:last-child:hover > a {
          transform: translateY(0);
          color: #fff; }
          header .nav nav > ul > li:last-child:hover > a span {
            transform: translateY(0.5px);
            opacity: 0.8; }
        header .nav nav > ul > li a {
          font-weight: 700;
          font-size: 0.875rem;
          line-height: 160%;
          letter-spacing: 0.02em;
          color: #fff; }
          header .nav nav > ul > li a:link, header .nav nav > ul > li a:visited, header .nav nav > ul > li a:hover {
            color: #fff; }
        header .nav nav > ul > li > a:hover, header .nav nav > ul > li .menu-button a:hover {
          transform: translateY(0.5px);
          opacity: 0.8; }
    header .nav .menu-button {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center; }
      header .nav .menu-button:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 1px;
        height: 14px;
        background: #D6C9B5; }
      header .nav .menu-button .button-area button {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        height: 62px;
        padding: 2px 28.5px 2px 24px;
        background: transparent;
        font-weight: 700;
        font-size: 0.875rem;
        line-height: 160%;
        letter-spacing: 0.02em;
        color: #282233; }
        header .nav .menu-button .button-area button .arrow {
          position: relative;
          display: inline-block;
          width: 9px;
          height: 5.46px;
          margin-left: 8.5px; }
        header .nav .menu-button .button-area button .arrow::before,
        header .nav .menu-button .button-area button .arrow::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: calc(50% - 0.75px);
          width: 1.5px;
          height: 9px;
          border-radius: 9999px;
          background-color: #fff;
          transform-origin: 50% calc(100% - 0.75px); }
        header .nav .menu-button .button-area button .arrow::before {
          transform: rotate(45deg); }
        header .nav .menu-button .button-area button .arrow::after {
          transform: rotate(-45deg); }
      header .nav .menu-button .button-area button[data-toggle-status="1"]::before {
        transform: rotate(180deg); }
      header .nav .menu-button:hover > a {
        opacity: 0.8; }
      header .nav .menu-button:hover .button-area button .arrow::before,
      header .nav .menu-button:hover .button-area button .arrow::after {
        opacity: 0.8; }
    header .nav .menu-list {
      position: absolute;
      top: 62px;
      right: 0;
      width: 100vw;
      /*toggle*/
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-in-out; }

/*header*/
@media screen and (max-width: 1260px) {
  header .nav nav > ul > li > a {
    padding: 2px 18px; }
  header .nav nav > ul > li:last-child > a {
    padding: 20px 30px; }

  header .nav .menu-button .button-area button {
    padding: 2px 21.375px 2px 18px; }

  header .nav .menu-button .button-area {
    right: 12px; } }
@media screen and (max-width: 999.98px) {
  header {
    height: 50px; }
    header h1 {
      height: 50px; } }
@media screen and (max-width: 499.98px) {
  header .wrap {
    width: 95%; }
  header h1 {
    width: 306px; } }
#page header h1 a.title span, header.scroll h1 a.title span {
  background: url("./../../assets/img/common/logo-bk.svg") left center/100% no-repeat; }
#page header .nav nav > ul > li a,
#page header .nav nav > ul > li a:link,
#page header .nav nav > ul > li a:visited,
#page header .nav nav > ul > li a:hover, header.scroll .nav nav > ul > li a,
header.scroll .nav nav > ul > li a:link,
header.scroll .nav nav > ul > li a:visited,
header.scroll .nav nav > ul > li a:hover {
  color: #282233; }
#page header .nav .menu-button .button-area button .arrow::before,
#page header .nav .menu-button .button-area button .arrow::after, header.scroll .nav .menu-button .button-area button .arrow::before,
header.scroll .nav .menu-button .button-area button .arrow::after {
  background-color: #282233; }

#page header {
  background: transparent; }

#page header.scroll, header.scroll {
  background: #fff; }

/*-------------------------------------------*/
/*	sp-nav
/*-------------------------------------------*/
main {
  height: 100%;
  min-height: 100vh;
  transition: all .5s; }

main.active {
  transform: translateX(-300px); }

.hamburger {
  display: none; }
  @media screen and (max-width: 1170px) {
    .hamburger {
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      z-index: 10003;
      width: 62px;
      height: 62px;
      background-color: #0069AD;
      cursor: pointer;
      text-align: center; }
      .hamburger span {
        display: block;
        position: absolute;
        width: 36px;
        height: 1px;
        left: 13px;
        background: #fff;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out; }
        .hamburger span:nth-child(1) {
          top: 19px; }
        .hamburger span:nth-child(2) {
          top: 31px; }
        .hamburger span:nth-child(3) {
          top: 43px; }
      .hamburger.active span:nth-child(1) {
        top: 30px;
        left: 13px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
        top: 30px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg); } }
  @media screen and (max-width: 999.98px) {
    .hamburger {
      width: 50px;
      height: 50px; }
      .hamburger span {
        width: 30px;
        left: 10px; }
        .hamburger span:nth-child(1) {
          top: 14px; }
        .hamburger span:nth-child(2) {
          top: 24px; }
        .hamburger span:nth-child(3) {
          top: 34px; }
      .hamburger.active span:nth-child(1) {
        top: 24px;
        left: 10px; }
      .hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
        top: 24px;
        left: 10px; } }

.overlay {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 0;
  height: 0;
  background-color: rgba(29, 68, 109, 0.8);
  opacity: 0;
  transition: opacity .5s; }
  .overlay.active {
    width: 100%;
    height: 100%;
    opacity: 0.5; }

.sp-nav {
  display: none; }
  .sp-nav ul li {
    margin: 10px 0;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: #fff; }
  .sp-nav a {
    padding: 5px 40px;
    color: #fff; }
  .sp-nav > ul > li > a {
    font-weight: 700; }
  .sp-nav > ul > li > div {
    padding: 5px 40px 0;
    font-weight: 700; }
  .sp-nav > ul > li > ul > li {
    padding: 0; }
  .sp-nav > ul > li > ul > li > a {
    padding: 0 40px; }
  .sp-nav > ul > li > ul > li:last-child {
    margin-bottom: 20px; }
  @media screen and (max-width: 1170px) {
    .sp-nav {
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      z-index: 10002;
      width: 400px;
      height: 100%;
      padding-top: 62px;
      background-color: #0069AD;
      transform: translate(100%);
      transition: all .5s; } }
  @media screen and (max-width: 770px) {
    .sp-nav {
      width: 300px; } }
  .sp-nav.active {
    transform: translateZ(0); }
  @media screen and (max-width: 999.98px) {
    .sp-nav {
      padding-top: 50px; } }

#contact-us {
  background: #EBF4FF; }
  #contact-us .wrap {
    width: 72.121%;
    max-width: 952px;
    margin: 0 auto; }
    #contact-us .wrap h2 {
      text-align: center; }
    #contact-us .wrap > p {
      text-align: center;
      font-style: normal;
      font-weight: 400;
      font-size: 0.875rem;
      line-height: 200%;
      letter-spacing: 0.02em; }
  #contact-us .contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #0069AD;
    background: #fff; }
    #contact-us .contact .number-area {
      width: 100%;
      padding: 40px 20px; }
      #contact-us .contact .number-area .tel {
        width: 424px;
        margin: 0 auto; }
      #contact-us .contact .number-area span.tel-number {
        display: block;
        width: 100%;
        height: 100%;
        background: url("./../img/footer/tel.svg") center/100% no-repeat; }
      #contact-us .contact .number-area span.hours {
        display: none; }
    #contact-us .contact .button-area {
      margin: 0;
      padding: 44px;
      border-left: 1px solid #0069AD; }
  @media screen and (max-width: 1079.98px) {
    #contact-us .wrap {
      width: 87.878%;
      max-width: 1160px;
      margin: 0 auto; } }
  @media screen and (max-width: 870px) {
    #contact-us .contact {
      display: block; }
      #contact-us .contact .number-area {
        padding: 30px 20px 25px; }
        #contact-us .contact .number-area .tel {
          width: 345px; }
          #contact-us .contact .number-area .tel span.tel-number {
            background-image: url("./../img/footer/tel-sp.svg"); }
          #contact-us .contact .number-area .tel span.hours {
            display: block;
            margin-top: 8px;
            text-align: center;
            font-style: normal;
            font-weight: 400;
            font-size: 0.875rem;
            line-height: 200%;
            letter-spacing: 0.02em; }
      #contact-us .contact .button-area {
        padding: 33px;
        border-top: 1px solid #0069AD;
        border-left: none; } }
  @media screen and (max-width: 767.98px) {
    #contact-us .wrap {
      width: 90%; }
    #contact-us .contact .number-area .tel {
      width: 264px; }
      #contact-us .contact .number-area .tel span.hours {
        margin-top: 4px; } }

/*-------------------------------------------*/
/*	フッター
/*-------------------------------------------*/
#footer {
  z-index: 1;
  background: #fff;
  color: #fff; }
  #footer a {
    color: #fff; }
  #footer .bg-img {
    background: url("./../img/footer/bg.jpg") center/cover no-repeat; }
  #footer .bg {
    background-color: rgba(29, 68, 109, 0.8);
    backdrop-filter: blur(4px); }
  #footer .inner {
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 999.98px) {
      #footer .inner {
        display: block; } }
  #footer .info {
    width: 389px; }
    #footer .info h2 {
      white-space: nowrap; }
    #footer .info .data {
      white-space: nowrap;
      font-style: normal;
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 160%;
      letter-spacing: 0.02em; }
      #footer .info .data > div, #footer .info .data a {
        line-height: 160%; }
      #footer .info .data .tel, #footer .info .data .fax {
        margin-top: 8px; }
      @media screen and (max-width: 999.98px) {
        #footer .info .data .tel, #footer .info .data .fax {
          margin-top: 4px; } }
    #footer .info .address {
      display: flex;
      flex-wrap: wrap; }
      #footer .info .address a {
        display: inline-block;
        text-decoration: underline; }
    #footer .info .fsc {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      width: 389px; }
      #footer .info .fsc .image {
        width: 45px; }
      #footer .info .fsc .text {
        width: calc(100% - 45px);
        padding-left: 12px;
        font-weight: 400;
        font-size: 10px;
        line-height: 160%;
        letter-spacing: 0.02em; }
      #footer .info .fsc sup {
        vertical-align: text-bottom;
        font-size: 8px; }
      @media screen and (max-width: 999.98px) {
        #footer .info .fsc {
          width: 420px; } }
      @media screen and (max-width: 499.98px) {
        #footer .info .fsc {
          width: 100%; } }
    @media screen and (max-width: 999.98px) {
      #footer .info {
        width: 100%; } }
  #footer #link {
    display: flex;
    justify-content: flex-end;
    width: calc(100% - 389px - 40px); }
    #footer #link .unit {
      display: flex;
      align-items: flex-start; }
      #footer #link .unit > ul {
        margin-right: 64px; }
        @media screen and (max-width: 1239.98px) {
          #footer #link .unit > ul {
            margin-right: 48px; } }
        #footer #link .unit > ul > li {
          margin-bottom: 24px;
          white-space: nowrap;
          font-style: normal;
          font-weight: 700;
          font-size: 0.875rem;
          line-height: 160%;
          letter-spacing: 0.02em; }
          #footer #link .unit > ul > li:last-child {
            margin-bottom: 0; }
          #footer #link .unit > ul > li > ul > li {
            margin-top: 16px;
            font-style: normal;
            font-weight: 400;
            font-size: 0.875rem;
            line-height: 160%;
            letter-spacing: 0.02em; }
            #footer #link .unit > ul > li > ul > li a:hover {
              transform: translateY(0.5px); }
      #footer #link .unit:last-child > ul:last-child {
        margin-right: 0; }
      @media screen and (max-width: 1180px) {
        #footer #link .unit {
          align-items: stretch;
          flex-wrap: wrap; }
          #footer #link .unit > ul {
            width: 115px;
            height: 161.59px;
            margin-left: 48px;
            margin-right: 64px; }
            #footer #link .unit > ul:last-child {
              margin-top: 16px; }
          #footer #link .unit:first-child {
            justify-content: flex-end; }
          #footer #link .unit:last-child > ul {
            margin-left: 0;
            margin-right: 0; } }
    @media screen and (max-width: 999.98px) {
      #footer #link {
        justify-content: flex-start;
        width: 100%;
        margin-top: 60px; }
        #footer #link .unit > ul {
          width: auto;
          height: auto;
          margin-left: 0;
          margin-right: 48px; }
          #footer #link .unit > ul:last-child {
            margin-top: 0; }
        #footer #link .unit:last-child > ul:first-child {
          margin-right: 48px; } }
    @media screen and (max-width: 767.98px) {
      #footer #link .unit > ul {
        margin-right: 32px; }
      #footer #link .unit:last-child > ul:first-child {
        margin-right: 32px; } }
    @media screen and (max-width: 570px) {
      #footer #link {
        margin-top: 45px; }
        #footer #link .unit {
          width: 50%; }
          #footer #link .unit > ul {
            width: 100%;
            height: 126.41px;
            margin-left: 0;
            margin-right: 0;
            padding-left: 0.875rem; }
            #footer #link .unit > ul:last-child {
              margin-top: 32px; }
          #footer #link .unit:first-child {
            justify-content: flex-end; }
          #footer #link .unit:last-child > ul {
            margin-left: 0;
            margin-right: 0; } }
  #footer .copy {
    border-top: 1px solid #D6C9B5;
    padding: 24px 0;
    font-style: normal;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 120%;
    text-align: right;
    letter-spacing: 0.05em; }

/*--footer--*/
.mt-24 {
  margin-top: 24px; }

.mt-40 {
  margin-top: 40px; }
  @media screen and (max-width: 1079.98px) {
    .mt-40 {
      margin-top: 30px; } }
  @media screen and (max-width: 999.98px) {
    .mt-40 {
      margin-top: 22.5px; } }
  @media screen and (max-width: 767.98px) {
    .mt-40 {
      margin-top: 20px; } }

.mt-48 {
  margin-top: 48px;
  /*75%*/
  /*56.25%*/
  /*50%*/ }
  @media screen and (max-width: 1079.98px) {
    .mt-48 {
      margin-top: 36px; } }
  @media screen and (max-width: 999.98px) {
    .mt-48 {
      margin-top: 27px; } }
  @media screen and (max-width: 767.98px) {
    .mt-48 {
      margin-top: 24px; } }

.mb-48 {
  margin-bottom: 48px; }
  @media screen and (max-width: 1079.98px) {
    .mb-48 {
      margin-bottom: 36px; } }
  @media screen and (max-width: 999.98px) {
    .mb-48 {
      margin-bottom: 27px; } }
  @media screen and (max-width: 767.98px) {
    .mb-48 {
      margin-bottom: 24px; } }

.mt-64 {
  margin-top: 64px; }
  @media screen and (max-width: 1079.98px) {
    .mt-64 {
      margin-top: 48px; } }
  @media screen and (max-width: 999.98px) {
    .mt-64 {
      margin-top: 36px; } }
  @media screen and (max-width: 767.98px) {
    .mt-64 {
      margin-top: 32px; } }

.mb-64 {
  margin-bottom: 64px; }
  @media screen and (max-width: 1079.98px) {
    .mb-64 {
      margin-bottom: 48px; } }
  @media screen and (max-width: 999.98px) {
    .mb-64 {
      margin-bottom: 36px; } }
  @media screen and (max-width: 767.98px) {
    .mb-64 {
      margin-bottom: 32px; } }

.mt-80 {
  margin-top: 80px; }
  @media screen and (max-width: 1079.98px) {
    .mt-80 {
      margin-top: 64px; } }
  @media screen and (max-width: 999.98px) {
    .mt-80 {
      margin-top: 60px; } }
  @media screen and (max-width: 767.98px) {
    .mt-80 {
      margin-top: 40px; } }

.mb-80 {
  margin-bottom: 80px; }
  @media screen and (max-width: 1079.98px) {
    .mb-80 {
      margin-bottom: 64px; } }
  @media screen and (max-width: 999.98px) {
    .mb-80 {
      margin-bottom: 60px; } }
  @media screen and (max-width: 767.98px) {
    .mb-80 {
      margin-bottom: 40px; } }

.mt-100 {
  margin-top: 100px; }
  @media screen and (max-width: 1079.98px) {
    .mt-100 {
      margin-top: 80px; } }
  @media screen and (max-width: 999.98px) {
    .mt-100 {
      margin-top: 75px; } }
  @media screen and (max-width: 767.98px) {
    .mt-100 {
      margin-top: 50px; } }

.pt-48 {
  padding-top: 48px; }
  @media screen and (max-width: 1079.98px) {
    .pt-48 {
      padding-top: 36px; } }
  @media screen and (max-width: 999.98px) {
    .pt-48 {
      padding-top: 27px; } }
  @media screen and (max-width: 767.98px) {
    .pt-48 {
      padding-top: 24px; } }

.pb-48 {
  padding-bottom: 48px; }
  @media screen and (max-width: 1079.98px) {
    .pb-48 {
      padding-bottom: 36px; } }
  @media screen and (max-width: 999.98px) {
    .pb-48 {
      padding-bottom: 27px; } }
  @media screen and (max-width: 767.98px) {
    .pb-48 {
      padding-bottom: 24px; } }

.pt-64 {
  padding-top: 64px; }
  @media screen and (max-width: 1079.98px) {
    .pt-64 {
      padding-top: 48px; } }
  @media screen and (max-width: 999.98px) {
    .pt-64 {
      padding-top: 36px; } }
  @media screen and (max-width: 767.98px) {
    .pt-64 {
      padding-top: 32px; } }

.pb-64 {
  padding-bottom: 64px; }
  @media screen and (max-width: 1079.98px) {
    .pb-64 {
      padding-bottom: 48px; } }
  @media screen and (max-width: 999.98px) {
    .pb-64 {
      padding-bottom: 36px; } }
  @media screen and (max-width: 767.98px) {
    .pb-64 {
      padding-bottom: 32px; } }

.pt-80 {
  padding-top: 80px; }
  @media screen and (max-width: 767.98px) {
    .pt-80 {
      padding-top: 64px; } }
  @media screen and (max-width: 499.98px) {
    .pt-80 {
      padding-top: 40px; } }

.pb-80 {
  padding-bottom: 80px; }
  @media screen and (max-width: 767.98px) {
    .pb-80 {
      padding-bottom: 64px; } }
  @media screen and (max-width: 499.98px) {
    .pb-80 {
      padding-bottom: 40px; } }

.pb-100 {
  padding-bottom: 100px; }
  @media screen and (max-width: 1079.98px) {
    .pb-100 {
      padding-bottom: 80px; } }
  @media screen and (max-width: 999.98px) {
    .pb-100 {
      padding-bottom: 75px; } }
  @media screen and (max-width: 767.98px) {
    .pb-100 {
      padding-bottom: 50px; } }

.pt-120 {
  padding-top: 120px; }
  @media screen and (max-width: 1079.98px) {
    .pt-120 {
      padding-top: 90px; } }
  @media screen and (max-width: 999.98px) {
    .pt-120 {
      padding-top: 67.5px; } }
  @media screen and (max-width: 767.98px) {
    .pt-120 {
      padding-top: 60px; } }

.pb-120 {
  padding-bottom: 120px; }
  @media screen and (max-width: 1079.98px) {
    .pb-120 {
      padding-bottom: 90px; } }
  @media screen and (max-width: 999.98px) {
    .pb-120 {
      padding-bottom: 67.5px; } }
  @media screen and (max-width: 767.98px) {
    .pb-120 {
      padding-bottom: 60px; } }

.pt-160 {
  padding-top: 160px; }
  @media screen and (max-width: 1079.98px) {
    .pt-160 {
      padding-top: 120px; } }
  @media screen and (max-width: 999.98px) {
    .pt-160 {
      padding-top: 90px; } }
  @media screen and (max-width: 767.98px) {
    .pt-160 {
      padding-top: 80px; } }

.pb-160 {
  padding-bottom: 160px; }
  @media screen and (max-width: 1079.98px) {
    .pb-160 {
      padding-bottom: 120px; } }
  @media screen and (max-width: 999.98px) {
    .pb-160 {
      padding-bottom: 90px; } }
  @media screen and (max-width: 767.98px) {
    .pb-160 {
      padding-bottom: 80px; } }

.bold {
  font-weight: bold; }

.red {
  color: #DD4444; }

.bg-blue {
  background-color: #0069AD; }

.bg-blue-l {
  background-color: #EBF4FF; }

.border-b {
  border-top: 1px solid #D6C9B5; }

.border-w {
  border-top: 1px solid #fff; }

.en {
  font-family: "Lato", sans-serif; }

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

.not-wrap {
  white-space: nowrap; }

.not-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.block {
  display: inline-block; }

.flex {
  display: flex; }

#sub-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #EBF4FF; }
  #sub-menu ul li {
    margin: 0 20px;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 160%; }
    #sub-menu ul li a {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #EBF4FF;
      color: #282233; }
      #sub-menu ul li a:hover {
        background: #fff; }
    #sub-menu ul li a, #sub-menu ul li div {
      padding: 4px 16px; }
    #sub-menu ul li.on a, #sub-menu ul li.on div {
      background: #fff; }

.breadcrumbs {
  background: #fff; }
  .breadcrumbs .wrap {
    display: flex;
    align-content: center;
    padding: 16px 0; }
  .breadcrumbs a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 18px;
    padding-right: 13px;
    text-decoration-line: underline;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: #0069AD; }
    .breadcrumbs a:hover {
      color: rgba(40, 34, 51, 0.6); }
    .breadcrumbs a > span > span.block {
      text-decoration-line: underline; }
  .breadcrumbs .wrap > div {
    display: inline-block; }
    .breadcrumbs .wrap > div:first-child a {
      padding-left: 0; }
      .breadcrumbs .wrap > div:first-child a:after {
        content: none; }
  .breadcrumbs .home a > span {
    white-space: nowrap; }
  .breadcrumbs .current {
    position: relative;
    padding-left: 18px; }
    .breadcrumbs .current span {
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 160%;
      letter-spacing: 0.02em; }
  .breadcrumbs a:after, .breadcrumbs .current:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    border-top: solid 1px #282233;
    border-right: solid 1px #282233;
    transform: rotate(45deg) translateX(-50%); }
  @media screen and (max-width: 767.98px) {
    .breadcrumbs .wrap {
      flex-wrap: wrap; }
    .breadcrumbs a {
      font-size: 12px; } }

.note {
  display: flex;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: 0.02em; }
  .note a {
    display: inline-block;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    color: #0069AD; }

.notice {
  display: flex;
  font-weight: 400;
  font-size: 12px;
  line-height: 180%;
  color: rgba(40, 34, 51, 0.6); }
  .notice span {
    margin-right: 4px; }
  .notice a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    color: rgba(40, 34, 51, 0.6); }

.button-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 500;
  font-size: 1rem;
  line-height: 160%; }
  .button-arrow span {
    width: 32px;
    height: 32px;
    margin-left: 16px;
    background: url(./../img/icon/icon-btn-arrow.svg) center/100% no-repeat;
    transition: all .5s; }
    .button-arrow span.back {
      margin: 0 16px 0 0;
      transform: scaleX(-1); }
  .button-arrow:hover {
    transform: translateY(0.75px);
    opacity: 0.6; }

.button-line {
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 160%;
  text-align: right;
  letter-spacing: 0.02em;
  text-decoration-line: underline;
  color: #0069AD; }
  .button-line:hover {
    color: #0069AD;
    opacity: 0.6; }

.button-area {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto; }

@media print, screen and (min-width: 768px) {
  .button-area-line {
    display: flex;
    justify-content: center; }
    .button-area-line .button, .button-area-line .button-arrow {
      margin-right: 40px; }
      .button-area-line .button:last-child, .button-area-line .button-arrow:last-child {
        margin-right: 0; } }
@media screen and (max-width: 767.98px) {
  .button-area-line .button, .button-area-line .button-arrow {
    margin: 16px auto 0; }
    .button-area-line .button:first-child, .button-area-line .button-arrow:first-child {
      margin-top: 0; } }

.table {
  width: 100%;
  max-width: 1160px;
  height: 100%;
  background: #fff; }
  .table th {
    padding: 8px 16px;
    border: 1px solid #D6C9B5;
    text-align: center;
    font-weight: 400; }
  .table td {
    padding: 8px 16px;
    border: 1px solid #D6C9B5; }
  @media screen and (max-width: 499.98px) {
    .table th, .table td {
      padding: 8px 10px; } }
  .table tr.unit th {
    padding-left: 0;
    padding-right: 0; }
    .table tr.unit th > div {
      padding: 0 12px;
      border-right: 2px solid #fff; }
  .table tr.unit th:first-child {
    margin-left: 8px;
    padding-right: 0; }
    .table tr.unit th:first-child:before {
      left: 4px;
      border-radius: 8px 0 0 8px; }
  .table tr.unit th:last-child {
    margin-right: 4px;
    padding-left: 0; }
    .table tr.unit th:last-child:before {
      right: 4px;
      border-radius: 0 8px 8px 0; }
    .table tr.unit th:last-child > div {
      border: none; }
  .table tr.first th:first-child:before {
    left: 0;
    border-radius: 8px; }
  .table tr.first th:first-child > div {
    border: none; }
  .table tr.first th:nth-child(2):before {
    border-radius: 8px 0 0 8px; }
  .table tr.first th:last-child:before {
    border-radius: 0 8px 8px 0; }
  .table tr.first th:last-child > div {
    border: none; }
  .table td.title {
    width: 21.428%;
    max-width: 240px;
    padding: 16px;
    border-bottom: 2px solid;
    vertical-align: middle;
    font-weight: 700;
    line-height: 140%;
    color: #0069AD; }
  .table td.content {
    width: 78.572%;
    padding: 4px; }
    .table td.content > div {
      padding: 16px 24px;
      border-radius: 8px; }
    .table td.content .block {
      display: inline-block; }
    .table td.content a {
      display: inline;
      text-decoration: underline;
      margin-left: 1rem; }
    .table td.content dl dt {
      font-weight: 700;
      font-size: 0.875rem;
      line-height: 140%; }
    .table td.content dl dd ul.list li {
      display: flex; }
    .table td.content .map p {
      margin-bottom: 16px; }
  .table td.unit {
    height: 100%;
    margin-right: 1px;
    padding: 4px 0;
    line-height: 140%; }
    .table td.unit > div {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      padding: 16px 24px; }
    .table td.unit:nth-child(2) {
      padding-left: 4px; }
      .table td.unit:nth-child(2) > div {
        border-radius: 8px 0 0 8px; }
    .table td.unit:nth-child(n+1) {
      padding-right: 1px; }
    .table td.unit:last-child {
      padding-right: 0; }
      .table td.unit:last-child > div {
        border-radius: 0 8px 8px 0; }

.table-scroll {
  overflow: auto;
  white-space: nowrap; }

.dl-area > dl {
  display: flex;
  border-bottom: 1px solid; }
  .dl-area > dl > dt {
    display: flex;
    align-items: center;
    width: 160px;
    padding: 16px 16px 20px;
    font-weight: 700; }
  .dl-area > dl > dd {
    width: calc(100% - 160px);
    padding: 16px 16px 20px;
    font-weight: 400; }
.dl-area dl, .dl-area dt, .dl-area dd {
  font-style: normal;
  line-height: 160%;
  letter-spacing: 0.02em; }

.image-area {
  display: flex;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto; }
  .image-area .image {
    width: 50%; }
  .image-area p {
    margin-top: 8px;
    padding: 0 4px;
    text-align: center;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 160%;
    letter-spacing: 0.02em; }
    @media screen and (max-width: 767.98px) {
      .image-area p {
        padding: 0 8px; } }
    @media screen and (max-width: 499.98px) {
      .image-area p {
        text-align: left; } }

#page #products ~ #link-area {
  padding-top: 80px; }
  @media screen and (max-width: 767.98px) {
    #page #products ~ #link-area {
      padding-top: 64px; } }
  @media screen and (max-width: 499.98px) {
    #page #products ~ #link-area {
      padding-top: 40px; } }

.menu-list {
  background-color: #0069AD; }
  .menu-list .wrap {
    display: flex;
    align-items: center; }
  .menu-list h2 {
    width: 17.742%;
    padding-right: 40px;
    font-style: normal;
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: #fff; }
  .menu-list ul {
    display: flex;
    width: 82.258%;
    padding: 40px 0; }
    .menu-list ul li {
      position: relative;
      width: 33.333%;
      max-width: 340px;
      padding-top: 19.608%;
      background-position: center;
      background-size: cover; }
      .menu-list ul li a {
        display: flex;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 20px 20px 20px 40px;
        font-size: 0.875rem;
        color: #fff !important; }
        .menu-list ul li a h3 {
          z-index: 1;
          font-style: normal;
          font-weight: 800;
          font-size: 1.75rem;
          line-height: 120%;
          letter-spacing: 0.05em;
          text-transform: uppercase;
          text-shadow: 0px 0px 24px rgba(15, 107, 166, 0.5);
          color: #fff; }
          .menu-list ul li a h3 span {
            display: block;
            margin-top: 4px;
            font-weight: 500;
            font-size: 12px;
            line-height: 160%; }
        .menu-list ul li a h3, .menu-list ul li a img {
          transition: 0.5s all ease 0s; }
        .menu-list ul li a:hover {
          transform: translateY(1px);
          opacity: 0.8 !important; }
  @media screen and (max-width: 1239.98px) {
    .menu-list ul li a {
      padding: 20px; } }
  @media screen and (max-width: 1150px) {
    .menu-list ul li a h3 {
      font-size: 1.5rem; } }
  @media screen and (max-width: 999.98px) {
    .menu-list .wrap {
      display: block; }
    .menu-list h2 {
      width: 100%;
      padding: 36px 0 0; }
    .menu-list ul {
      width: 100%;
      padding: 16px 0 36px; } }
  @media screen and (max-width: 849.98px) {
    .menu-list ul {
      display: block; }
      .menu-list ul li {
        width: 100%;
        min-height: 137px;
        margin: 2px auto 0; }
        .menu-list ul li:first-child {
          margin-top: 0; } }
  @media screen and (max-width: 767.98px) {
    .menu-list h2 {
      padding: 32px 0 0; }
    .menu-list ul {
      padding: 16px 0 32px; } }

header .menu-list .wrap {
  align-items: flex-start; }
header .menu-list h2 {
  padding-top: 40px; }
header .menu-list ul li {
  padding-top: 14.26%; }

#products-slider .inner {
  margin-left: 40px; }
  @media print, screen and (max-width: 1079px) {
    #products-slider .inner {
      margin-left: 4.2665%; } }
#products-slider .products-slider {
  display: flex;
  width: 100%;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none; }
  #products-slider .products-slider::-webkit-scrollbar {
    display: none; }
  #products-slider .products-slider .product {
    width: 38.709%;
    max-width: 480px;
    margin-right: 8px; }
    #products-slider .products-slider .product:last-child {
      margin-right: 0; }
    #products-slider .products-slider .product .title-image {
      position: relative; }
    #products-slider .products-slider .product .image {
      overflow: hidden;
      max-height: 320px;
      padding-top: 66.667%;
      background-position: center top;
      background-size: 100% auto; }
    #products-slider .products-slider .product .product-item {
      position: absolute;
      bottom: 24px;
      left: 0;
      width: 100%;
      padding: 0 24px; }
      #products-slider .products-slider .product .product-item h3, #products-slider .products-slider .product .product-item h5 {
        font-weight: 500;
        font-size: 1.5rem;
        line-height: 140%;
        letter-spacing: 0.02em;
        color: #fff; }
      #products-slider .products-slider .product .product-item .data {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%; }
        #products-slider .products-slider .product .product-item .data .button-arrow {
          margin-top: 8px; }
      #products-slider .products-slider .product .product-item ul.tag {
        display: flex;
        flex-wrap: wrap;
        width: calc(100% - 48px); }
        #products-slider .products-slider .product .product-item ul.tag > li {
          width: auto;
          height: 25px;
          margin-top: 8px;
          margin-right: 8px;
          padding: 4px 8px;
          background: #fff;
          white-space: nowrap;
          font-style: normal;
          font-weight: 500;
          font-size: 12px;
          line-height: 17px;
          letter-spacing: 0.02em; }
          #products-slider .products-slider .product .product-item ul.tag > li:last-child {
            margin-right: 0; }
    #products-slider .products-slider .product .spec {
      padding: 4px 24px 0 24px; }
      #products-slider .products-slider .product .spec dl {
        display: flex;
        margin-top: 8px; }
        #products-slider .products-slider .product .spec dl dt {
          width: 80px;
          font-style: normal;
          font-weight: 700;
          font-size: 12px;
          line-height: 160%;
          letter-spacing: 0.02em; }
        #products-slider .products-slider .product .spec dl dd {
          width: calc(100% - 80px);
          font-style: normal;
          font-weight: 400;
          font-size: 12px;
          line-height: 160%;
          letter-spacing: 0.02em; }
#products-slider .slick-list {
  padding: 0 8px 0 0 !important; }
#products-slider .button {
  margin: 80px auto; }
#products-slider .splide__track--draggable {
  padding-right: 8px !important; }
#products-slider .splide__list {
  width: auto;
  backface-visibility: visible;
  overflow: visible; }
#products-slider .splide__slide {
  backface-visibility: visible; }

main#top {
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: -2; }

#top section {
  background: transparent; }
#top h2 {
  padding: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 2rem;
  line-height: 140%;
  letter-spacing: 0.02em; }
  #top h2 .en {
    font-size: 12px; }
  @media screen and (max-width: 1079.98px) {
    #top h2 {
      font-size: 30px; } }
  @media screen and (max-width: 999.98px) {
    #top h2 {
      font-size: 26px; } }
  @media screen and (max-width: 767.98px) {
    #top h2 {
      font-size: 23.5px; } }

#top #fv {
  position: relative;
  height: 851px; }
#top #visual {
  position: fixed;
  display: block;
  width: 100%;
  height: 851px;
  overflow: hidden;
  background: #fff;
  z-index: -1; }
  #top #visual .main-visual div {
    height: 851px;
    margin: 0;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover; }
    @media screen and (max-width: 530px) {
      #top #visual .main-visual div {
        background-position: right top;
        background-size: contain; } }
  #top #visual .mv-01 {
    background-image: url("/assets/img/top/fv/visual01.jpg"); }
  #top #visual .mv-02 {
    background-image: url("/assets/img/top/fv/visual02.jpg"); }
  #top #visual .mv-03 {
    background-image: url("/assets/img/top/fv/visual03.jpg"); }
  #top #visual .mv-04 {
    background-image: url("/assets/img/top/fv/visual04.jpg"); }
  #top #visual .mv-05 {
    background-image: url("/assets/img/top/fv/visual05.jpg"); }
  #top #visual .mv-06 {
    background-image: url("/assets/img/top/fv/visual06.jpg"); }
  #top #visual .mv-07 {
    background-image: url("/assets/img/top/fv/visual07.jpg"); }
  #top #visual .mv-08 {
    background-image: url("/assets/img/top/fv/visual08.jpg"); }
  @media screen and (max-width: 530px) {
    #top #visual .mv-01 {
      background-image: url("/assets/img/top/fv/sp/visual01_sp.jpg"); }
    #top #visual .mv-02 {
      background-image: url("/assets/img/top/fv/sp/visual02_sp.jpg"); }
    #top #visual .mv-03 {
      background-image: url("/assets/img/top/fv/sp/visual03_sp.jpg"); }
    #top #visual .mv-04 {
      background-image: url("/assets/img/top/fv/sp/visual04_sp.jpg"); }
    #top #visual .mv-05 {
      background-image: url("/assets/img/top/fv/sp/visual05_sp.jpg"); }
    #top #visual .mv-06 {
      background-image: url("/assets/img/top/fv/sp/visual06_sp.jpg"); }
    #top #visual .mv-07 {
      background-image: url("/assets/img/top/fv/sp/visual07_sp.jpg"); }
    #top #visual .mv-08 {
      background-image: url("/assets/img/top/fv/sp/visual08_sp.jpg"); } }
#top #catch {
  padding-top: 165px;
  color: #fff; }
  @media screen and (max-width: 1079.98px) {
    #top #catch {
      padding-top: 123.75px; } }
  @media screen and (max-width: 999.98px) {
    #top #catch {
      padding-top: 100px; } }
  @media screen and (max-width: 499.98px) {
    #top #catch {
      padding-top: 82.5px; } }
  #top #catch h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 160%;
    letter-spacing: 0.02em; }
  #top #catch .text {
    margin-top: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 240%;
    letter-spacing: 0.02em; }
  #top #catch .button-area {
    justify-content: flex-start; }
    #top #catch .button-area a {
      color: #fff; }
  @media screen and (max-width: 999.98px) {
    #top #catch .text {
      font-size: 14px; } }
  @media screen and (max-width: 767.98px) {
    #top #catch h2 {
      font-size: 28px; } }
#top #banner {
  margin-top: 100px; }
  @media screen and (max-width: 1079.98px) {
    #top #banner {
      margin-top: 80px; } }
  @media screen and (max-width: 999.98px) {
    #top #banner {
      margin-top: 50px; } }
  #top #banner .wrap {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end; }
    @media screen and (max-width: 999.98px) {
      #top #banner .wrap {
        display: block;
        width: 87.878%;
        max-width: 1160px; } }
  #top #banner .banner {
    width: auto;
    max-width: 100%;
    margin-right: 40px;
    text-align: right; }
    @media screen and (max-width: 1180px) {
      #top #banner .banner {
        margin-right: 20px; } }
    @media screen and (max-width: 999.98px) {
      #top #banner .banner {
        margin: 0 0 0 auto; } }
    @media screen and (max-width: 499.98px) {
      #top #banner .banner {
        width: 100%;
        margin: 0 auto; } }
    #top #banner .banner a {
      display: inline; }
  #top #banner .fsc {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 298px;
    padding: 16px 20px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.8); }
    #top #banner .fsc .image {
      width: 45px; }
    #top #banner .fsc .text {
      width: calc(100% - 45px);
      padding-left: 12px;
      font-weight: 400;
      font-size: 10px;
      line-height: 160%;
      letter-spacing: 0.02em; }
      #top #banner .fsc .text sup {
        vertical-align: text-bottom;
        font-size: 8px; }
    @media screen and (max-width: 1180px) {
      #top #banner .fsc {
        width: 280px;
        padding: 14px 18px; } }
    @media screen and (max-width: 999.98px) {
      #top #banner .fsc {
        align-items: center;
        width: 420px;
        margin: 16px 0 0 auto;
        padding: 12px 16px; } }
    @media screen and (max-width: 499.98px) {
      #top #banner .fsc {
        width: 100%;
        padding: 8px 12px; } }

#top #news {
  position: absolute;
  bottom: 105px;
  width: 100%;
  background: transparent; }
  @media screen and (max-width: 999.98px) {
    #top #news {
      bottom: 81px;
      /*75%*/ } }
  #top #news > div {
    position: relative;
    overflow: hidden;
    background: #fff; }
  #top #news .wrap {
    padding-bottom: 0; }
  #top #news dl {
    display: flex; }
    #top #news dl dt {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 56px;
      padding: 21px 0;
      font-style: normal;
      font-weight: 800;
      font-size: 1.125rem;
      line-height: 120%;
      letter-spacing: 0.05em;
      color: #0069AD; }
    #top #news dl dd {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: calc(100% - 50px);
      padding: 21px 0 21px 40px; }
    @media screen and (max-width: 999.98px) {
      #top #news dl dt {
        align-items: flex-start;
        line-height: 140%; }
      #top #news dl dd {
        flex-wrap: wrap;
        padding: 21px 0 21px 40px; } }
    @media screen and (max-width: 499.98px) {
      #top #news dl {
        display: block; }
        #top #news dl dt {
          width: 100%;
          padding: 16px 16px 0; }
        #top #news dl dd {
          display: block;
          width: 100%;
          padding: 12px 16px 16px; } }
  #top #news .data {
    display: flex;
    align-items: center;
    width: 100%; }
    @media screen and (max-width: 999.98px) {
      #top #news .data {
        flex-wrap: wrap; } }
  #top #news .date {
    margin-right: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.05em; }
  #top #news .category {
    width: 90px;
    height: 25px;
    padding: 4px 8px;
    background-color: #F7F4F0;
    text-align: center;
    white-space: nowrap;
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 0.02em; }
  #top #news .title-area {
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    width: 100%;
    height: 25.6px;
    margin-left: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 160%;
    letter-spacing: 0.02em; }
    #top #news .title-area:hover {
      transform: translateY(0.75px); }
      #top #news .title-area:hover .title {
        opacity: 0.6; }
    @media screen and (max-width: 999.98px) {
      #top #news .title-area {
        align-items: flex-start;
        overflow: hidden;
        width: 100%;
        height: 25.6px;
        margin-top: 6px;
        margin-left: 0; } }
    #top #news .title-area .title {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }
    #top #news .title-area .button-more {
      position: relative;
      margin-left: 16px;
      width: 57px;
      height: 26px; }
      #top #news .title-area .button-more:after {
        content: '⋯more';
        position: absolute;
        top: 0;
        right: 0;
        width: 57px;
        height: 26px;
        white-space: nowrap;
        font-family: "Lato", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 1rem;
        line-height: 160%;
        letter-spacing: 0.05em;
        color: #0069AD; }
  #top #news .button-area-news {
    display: flex;
    align-items: center;
    position: relative;
    width: 186px;
    margin-left: 40px;
    padding-left: 40px; }
    #top #news .button-area-news:after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0.05em;
      transform: translateY(-50%);
      width: 1px;
      height: 14px;
      background: #D6C9B5; }
    @media screen and (max-width: 999.98px) {
      #top #news .button-area-news {
        justify-content: flex-end;
        width: 100%;
        margin-top: 16px;
        margin-left: 0;
        padding-left: 0; }
        #top #news .button-area-news:after {
          content: none; } }
    @media screen and (max-width: 767.98px) {
      #top #news .button-area-news {
        margin-top: 20px; } }

#top #about {
  margin-top: -105px;
  padding-top: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 30%, #FFFFFF 90%); }
  @media screen and (max-width: 1079.98px) {
    #top #about {
      padding-top: 120px; } }
  @media screen and (max-width: 999.98px) {
    #top #about {
      margin-top: -81px;
      /*75%*/ } }
  @media screen and (max-width: 767.98px) {
    #top #about {
      padding-top: 80px; } }
  #top #about .content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; }
    #top #about .content h2 {
      width: 44.827%;
      white-space: nowrap; }
    #top #about .content .text {
      width: 44.828%;
      margin-left: 10.345%;
      font-style: normal;
      font-size: 1rem; }
    #top #about .content .button-area {
      justify-content: flex-start; }
    @media screen and (max-width: 999.98px) {
      #top #about .content {
        flex-direction: column; }
        #top #about .content h2 {
          width: 100%;
          white-space: normal; }
        #top #about .content .text {
          width: 100%;
          margin: 0;
          padding-top: 24px;
          font-size: 0.875rem; } }

#top {
  /*--product--*/ }
  #top #products {
    background-color: #EBF4FF; }
    #top #products .title {
      display: flex;
      align-items: flex-start;
      justify-content: space-between; }
      #top #products .title h2 {
        white-space: nowrap; }
      #top #products .title .text {
        max-width: 520px;
        margin-left: 40px;
        font-style: normal;
        font-weight: 400;
        font-size: 1rem;
        line-height: 240%;
        letter-spacing: 0.02em; }
      @media screen and (max-width: 767.98px) {
        #top #products .title {
          display: block; }
          #top #products .title .text {
            max-width: none;
            margin: 24px 0 0; } }
    #top #products .button {
      margin: 80px auto; }
    #top #products .button-area-line {
      margin-top: 135px;
      /*75%*/
      /*56.25%*/ }
      @media screen and (max-width: 1079.98px) {
        #top #products .button-area-line {
          margin-top: 101.25px; } }
      @media screen and (max-width: 999.98px) {
        #top #products .button-area-line {
          margin-top: 75.9375px; } }
      @media screen and (max-width: 767.98px) {
        #top #products .button-area-line {
          margin-top: 40px; }
          #top #products .button-area-line .button-arrow {
            justify-content: flex-start;
            margin: 0; }
            #top #products .button-area-line .button-arrow:nth-child(n+2) {
              margin-top: 16px; } }

#top #equip {
  background: #fff; }
  #top #equip .image {
    position: relative; }
    #top #equip .image .illust {
      display: block;
      opacity: 0;
      position: absolute;
      top: -110.99px;
      right: 40.62px;
      width: 513.38px; }
      @media screen and (max-width: 999.98px) {
        #top #equip .image .illust {
          top: -64.858px;
          width: 300px; } }
      @media screen and (max-width: 624px) {
        #top #equip .image .illust {
          top: -10px;
          right: 10px; } }
      @media screen and (max-width: 375.98px) {
        #top #equip .image .illust {
          right: 5px; } }
  #top #equip .text {
    text-align: center; }
    @media screen and (max-width: 624px) {
      #top #equip .text {
        text-align: left; } }
  #top #equip .button-area-line {
    width: 148px;
    margin-left: auto;
    margin-right: auto; }
    #top #equip .button-area-line .button-arrow {
      justify-content: flex-end; }
    @media screen and (max-width: 767.98px) {
      #top #equip .button-area-line {
        margin-left: 0;
        margin-right: 0; }
        #top #equip .button-area-line .button-arrow {
          justify-content: flex-start; }
          #top #equip .button-area-line .button-arrow:nth-child(n+2) {
            margin-top: 16px; } }

#top #sustainability {
  background: #EBF4FF; }
  #top #sustainability .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 81.818%;
    max-width: 1080px;
    margin: 0 auto; }
    #top #sustainability .wrap .image {
      width: 44.444%; }
    #top #sustainability .wrap .text {
      width: 44.444%; }
      #top #sustainability .wrap .text sup {
        vertical-align: 10%;
        font-size: 0.75rem; }
    #top #sustainability .wrap .button-area {
      justify-content: flex-start; }
    @media screen and (max-width: 767.98px) {
      #top #sustainability .wrap {
        width: 90%; } }
    @media screen and (max-width: 600px) {
      #top #sustainability .wrap {
        flex-direction: column; }
        #top #sustainability .wrap .image {
          order: 2;
          width: 80%;
          max-width: 300px;
          margin: 40px auto 0; }
        #top #sustainability .wrap .text {
          order: 1;
          width: 100%; }
          #top #sustainability .wrap .text h2 br {
            display: none; } }

#top #recruit {
  background: #fff; }
  #top #recruit .wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
    border: 8px solid #F7F4F0; }
    #top #recruit .wrap:after {
      content: 'RECRUIT';
      position: absolute;
      bottom: 40px;
      left: -8px;
      font-family: "Lato", sans-serif;
      font-style: normal;
      font-weight: 800;
      font-size: 120px;
      line-height: 100%;
      letter-spacing: 0.05em;
      color: #F7F4F0; }
    #top #recruit .wrap .text {
      position: relative;
      z-index: 2;
      width: 50.646%;
      padding: 86px 80px; }
    #top #recruit .wrap .image {
      position: relative;
      z-index: 3;
      width: 49.354%;
      padding-top: 46.048%;
      background: url("/assets/img/top/recruit/recruit.jpg") center/cover no-repeat; }
    #top #recruit .wrap .button-area {
      justify-content: flex-start; }
    @media screen and (max-width: 1079.98px) {
      #top #recruit .wrap .text {
        padding: 64.5px 6.25%; } }
    @media screen and (max-width: 999.98px) {
      #top #recruit .wrap {
        display: block; }
        #top #recruit .wrap:after {
          bottom: 62.5%; }
        #top #recruit .wrap .text {
          width: 100%;
          padding: 48.375px 6.25%; }
        #top #recruit .wrap .image {
          width: 100%;
          padding-top: 75%;
          background-image: url("/assets/img/top/recruit/recruit-sp.jpg"); } }
    @media screen and (max-width: 767.98px) {
      #top #recruit .wrap .text {
        padding: 43px 6.25%; } }
    @media screen and (max-width: 600px) {
      #top #recruit .wrap:after {
        bottom: 38%;
        font-size: 72px; } }

#page main {
  padding-top: 62px; }
  @media screen and (max-width: 999.98px) {
    #page main {
      padding-top: 50px; } }
#page .title h3, #page .title h4 {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em; }
#page .title h3 {
  line-height: 140%;
  font-size: 1.75rem; }
#page .title h4 {
  line-height: 160%;
  font-size: 1.5rem; }
#page .page-title .wrap-80 {
  display: flex;
  align-items: center;
  justify-content: space-between; }
#page .page-title .sub-menu {
  width: 224px;
  padding: 24px 38px;
  background: #EBF4FF; }
  #page .page-title .sub-menu li {
    margin-top: 16px; }
    @media print, screen and (min-width: 768px) {
      #page .page-title .sub-menu li:first-child {
        margin-top: 0; } }
    #page .page-title .sub-menu li a {
      font-style: normal;
      font-weight: 500;
      font-size: 1rem;
      line-height: 160%;
      color: #282233; }
@media screen and (max-width: 767.98px) {
  #page .page-title .wrap-80 {
    display: block;
    width: 100%; }
  #page .page-title h2 {
    width: 90%;
    margin: 0 auto; }
  #page .page-title .sub-menu {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
    padding: 24px 19px; }
    #page .page-title .sub-menu li {
      margin: 0 12px; }
      #page .page-title .sub-menu li a {
        padding: 4px 0;
        white-space: nowrap; } }
@media screen and (max-width: 600px) {
  #page .page-title .sub-menu {
    flex-wrap: wrap;
    padding: 16px 11px 24px; }
    #page .page-title .sub-menu li {
      width: calc(50% - 16px);
      margin: 8px 8px 0; }
      #page .page-title .sub-menu li a {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        height: 52px;
        padding: 4px 18.75px;
        border: 1px solid #fff;
        white-space: normal; }
        #page .page-title .sub-menu li a:hover {
          opacity: 1.0;
          background: #fff;
          color: rgba(40, 34, 51, 0.6); } }
#page .page-fv {
  position: relative;
  width: 96.969%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: 0; }
  @media print, screen and (min-width: 1321px) {
    #page .page-fv {
      margin-right: auto; } }
  #page .page-fv .image {
    position: relative;
    border-left: 4px solid #0069AD; }
    #page .page-fv .image:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(29, 68, 109, 0) 35.92%, rgba(29, 68, 109, 0) 65.13%, rgba(29, 68, 109, 0.2) 94.35%); }
  #page .page-fv h3 {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-style: normal;
    font-weight: 500;
    font-size: 2rem;
    line-height: 140%;
    letter-spacing: 0.02em;
    color: #fff; }
  @media screen and (max-width: 767.98px) {
    #page .page-fv {
      width: 95%; } }
  @media screen and (max-width: 499.98px) {
    #page .page-fv h3 {
      bottom: 20px;
      left: 20px;
      font-size: 1.75rem; } }
#page .page-link {
  position: sticky;
  top: 130px;
  z-index: 500;
  margin-top: -26px; }
  #page .page-link ul {
    display: flex;
    filter: drop-shadow(0px 8px 32px rgba(0, 0, 0, 0.06)); }
    #page .page-link ul li {
      width: 50%;
      background: #fff; }
      #page .page-link ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        height: 52px;
        padding: 16px 0;
        text-align: center;
        font-weight: 700;
        font-size: 14px;
        line-height: 140%;
        color: #282233; }
        #page .page-link ul li a:before {
          content: '';
          position: absolute;
          top: 50%;
          right: 0;
          transform: translateY(-50%);
          width: 2px;
          height: 16px;
          background: rgba(40, 34, 51, 0.2); }
        #page .page-link ul li a:hover {
          opacity: 0.6; }
        #page .page-link ul li a .open {
          width: 20px;
          height: 20px;
          margin-left: 4px;
          background: url("./../img/icon/icon-open.svg") center/100% no-repeat; }
      #page .page-link ul li:last-child > a:before {
        content: none; }
      #page .page-link ul li.on {
        background: #0069AD; }
        #page .page-link ul li.on a {
          color: #fff; }
          #page .page-link ul li.on a:before {
            content: none; }
  #page .page-link.inner {
    position: relative;
    top: 0; }
    #page .page-link.inner ul {
      filter: none; }
      #page .page-link.inner ul li a span {
        position: relative;
        padding-right: 24px; }
        #page .page-link.inner ul li a span:after {
          content: '';
          position: absolute;
          top: 38%;
          right: 5px;
          width: 6px;
          height: 6px;
          border-top: solid 2px #282233;
          border-right: solid 2px #282233;
          transform: rotate(135deg) translateX(-50%); }
  @media print, screen and (min-width: 768px) {
    #page .page-link ul li:first-child {
      border-radius: 50px 0 0 50px; }
    #page .page-link ul li:last-child {
      border-radius: 0 50px 50px 0; } }
  @media screen and (max-width: 1079.98px) {
    #page .page-link {
      top: 60px; } }
  @media screen and (max-width: 767.98px) {
    #page .page-link {
      margin-top: -18px; }
      #page .page-link ul {
        flex-wrap: wrap; }
        #page .page-link ul li {
          width: calc(50% - 2px);
          margin-top: 4px;
          margin-right: 4px;
          border-radius: 50px; }
          #page .page-link ul li:nth-child(-n+2) {
            margin-top: 0; }
          #page .page-link ul li:nth-child(2n) {
            margin-right: 0; }
          #page .page-link ul li a {
            width: 100%;
            height: 36px; }
            #page .page-link ul li a:before {
              content: none; }
      #page .page-link.inner ul {
        filter: drop-shadow(0px 8px 32px rgba(0, 0, 0, 0.06)); } }
#page .page-1col .content, #page .page-2col .content {
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 200%;
  letter-spacing: 0.02em; }
  #page .page-1col .content h5, #page .page-2col .content h5 {
    font-style: normal;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 160%;
    letter-spacing: 0.02em; }
  #page .page-1col .content h5 + p, #page .page-2col .content h5 + p {
    margin-top: 16px; }
  #page .page-1col .content .text, #page .page-2col .content .text {
    line-height: 240%; }
#page .page-2col {
  display: flex;
  align-items: flex-start;
  justify-content: space-between; }
  #page .page-2col .title {
    width: calc(100% - 720px - 40px); }
  #page .page-2col .content {
    width: 720px;
    margin-left: 40px; }
  @media screen and (max-width: 1200px) {
    #page .page-2col .title {
      width: calc(100% - 720px - 30px); }
    #page .page-2col .content {
      margin-left: 30px; } }
  @media screen and (max-width: 1180px) {
    #page .page-2col {
      display: block; }
      #page .page-2col .title {
        width: 100%; }
        #page .page-2col .title br {
          display: none; }
        #page .page-2col .title br.break {
          display: block !important; }
      #page .page-2col .content {
        width: 100%;
        margin: 0;
        padding-top: 24px; } }
#page .wrap-120 .page-2col .title {
  width: calc(100% - 680px - 40px); }
#page .wrap-120 .page-2col .content {
  width: 680px;
  margin-left: 40px; }
@media screen and (max-width: 1200px) {
  #page .wrap-120 .page-2col .title {
    width: calc(100% - 680px - 30px); }
  #page .wrap-120 .page-2col .content {
    margin-left: 30px; } }
@media screen and (max-width: 1180px) {
  #page .wrap-120 .page-2col {
    display: block; }
    #page .wrap-120 .page-2col .title {
      width: 100%; }
    #page .wrap-120 .page-2col .content {
      width: 100%;
      margin: 0;
      padding-top: 24px; } }

@media screen and (max-width: 767.98px) {
  #page #entry #sub-menu ul {
    flex-wrap: wrap;
    padding-top: 0; }
    #page #entry #sub-menu ul li {
      width: calc(50% - 40px);
      margin-top: 16px; } }
@media screen and (max-width: 499.98px) {
  #page #entry #sub-menu ul li {
    width: calc(50% - 20px);
    margin: 16px 10px 0; } }
#page ul.entry-list > li {
  display: flex;
  justify-content: flex-end;
  padding: 24px 0;
  border-bottom: 1px solid #EBF4FF;
  background: #fff; }
  #page ul.entry-list > li .date {
    width: 78px;
    margin-top: 4.5px;
    margin-left: 24px;
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 120%;
    letter-spacing: 0.05em; }
  #page ul.entry-list > li .item {
    display: flex;
    align-items: flex-start;
    width: calc(100% - 24px - 78px - 16px);
    margin-left: 16px; }
    #page ul.entry-list > li .item .category a {
      width: 90px;
      height: 25px;
      padding: 4px;
      background: #EBF4FF;
      text-align: center;
      white-space: nowrap;
      font-style: normal;
      font-weight: 500;
      font-size: 12px;
      line-height: 17px;
      letter-spacing: 0.02em; }
    #page ul.entry-list > li .item .title {
      position: relative;
      width: calc(100% - 90px);
      padding-left: 16px;
      padding-right: calc(16px + 57px + 24px);
      font-style: normal;
      font-weight: 400;
      font-size: 1rem;
      line-height: 160%;
      letter-spacing: 0.02em;
      color: #282233; }
      #page ul.entry-list > li .item .title:after {
        content: '⋯more';
        position: absolute;
        top: 0;
        right: 24px;
        width: 57px;
        height: 26px;
        white-space: nowrap;
        font-family: "Lato", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 1rem;
        line-height: 160%;
        letter-spacing: 0.05em;
        color: #0069AD; }
  #page ul.entry-list > li .button-area-all {
    display: flex;
    align-items: center; }
    @media screen and (max-width: 767.98px) {
      #page ul.entry-list > li .button-area-all {
        margin-top: -21.6px; } }
    #page ul.entry-list > li .button-area-all .button-arrow span {
      width: 20px;
      height: 20px;
      margin-left: 0; }
  @media screen and (max-width: 1079.98px) {
    #page ul.entry-list > li .item {
      display: block; }
      #page ul.entry-list > li .item .title {
        width: 100%;
        margin-top: 8px;
        padding-left: 0; } }
  @media screen and (max-width: 767.98px) {
    #page ul.entry-list > li {
      justify-content: flex-start;
      flex-wrap: wrap; }
      #page ul.entry-list > li .date {
        width: 100%;
        margin-bottom: 10px; }
      #page ul.entry-list > li .item {
        width: calc(100% - 24px);
        margin-left: 24px; } }
  @media screen and (max-width: 499.98px) {
    #page ul.entry-list > li .date {
      margin-left: 16px; }
    #page ul.entry-list > li .item {
      margin-left: 16px; }
      #page ul.entry-list > li .item .category a {
        font-size: 11px; }
      #page ul.entry-list > li .item .title {
        margin-top: 4px;
        padding-right: calc(16px + 57px + 8px); }
        #page ul.entry-list > li .item .title:after {
          right: 8px; } }
#page #pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  text-align: center; }
  #page #pagination a, #page #pagination span {
    display: block; }
  #page #pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: 16px;
    border-radius: 50%;
    border: 1px solid #EBF4FF;
    background-color: #EBF4FF;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0.05em;
    color: #0069AD; }
    #page #pagination .page-numbers:first-child {
      margin-left: 0; }
    #page #pagination .page-numbers.dots {
      border: none;
      background-color: transparent; }
    #page #pagination .page-numbers.current {
      background-color: #fff; }
    @media screen and (max-width: 499.98px) {
      #page #pagination .page-numbers {
        width: 32px;
        height: 32px; } }
  #page #pagination .prev, #page #pagination .next {
    width: 80px;
    border: none;
    border-radius: 0;
    white-space: nowrap;
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0;
    color: #282233; }
  #page #pagination .prev {
    padding-left: 48px;
    background: url(./../img/icon/prev.svg) left center/80px 32px no-repeat; }
    @media screen and (max-width: 767.98px) {
      #page #pagination .prev {
        margin-right: 8px; } }
  #page #pagination .next {
    margin-left: 16px;
    padding-right: 48px;
    background: url(./../img/icon/next.svg) right center/80px 32px no-repeat; }
    @media screen and (max-width: 767.98px) {
      #page #pagination .next {
        margin-left: 14px; } }

#page #detail ~ #footer {
  background: #EBF4FF; }
#page #detail {
  background: #EBF4FF; }
  #page #detail .breadcrumbs {
    background: #EBF4FF; }
  #page #detail .entry {
    background: #EBF4FF; }
    #page #detail .entry .box {
      position: relative;
      padding: 64px 0;
      background: #fff; }
      @media screen and (max-width: 1079.98px) {
        #page #detail .entry .box {
          padding: 48px 0; } }
      @media screen and (max-width: 999.98px) {
        #page #detail .entry .box {
          padding: 36px 0; } }
      @media screen and (max-width: 767.98px) {
        #page #detail .entry .box {
          padding: 32px 0; } }
      #page #detail .entry .box .inner {
        width: 87.096%;
        max-width: 1080px;
        margin: 0 auto; }
      #page #detail .entry .box .item-top {
        display: flex;
        align-items: center; }
        #page #detail .entry .box .item-top .date {
          margin-right: 16px;
          font-style: normal;
          font-weight: 400;
          font-size: 0.875rem;
          line-height: 120%;
          letter-spacing: 0.05em; }
        #page #detail .entry .box .item-top .category {
          font-style: normal;
          font-weight: 500;
          font-size: 12px;
          line-height: 17px;
          letter-spacing: 0.02em; }
      #page #detail .entry .box .entry-title {
        margin-top: 16px;
        font-style: normal;
        font-weight: 500;
        font-size: 2rem;
        line-height: 140%;
        letter-spacing: 0.02em; }
      #page #detail .entry .box .entry-body {
        font-weight: 400;
        font-size: 1rem;
        line-height: 240%;
        letter-spacing: 0.02em; }
        #page #detail .entry .box .entry-body img {
          display: inline-block;
          width: auto; }
        #page #detail .entry .box .entry-body a {
          display: inline;
          text-decoration-line: underline;
          color: #0069AD; }
        #page #detail .entry .box .entry-body h1, #page #detail .entry .box .entry-body h2, #page #detail .entry .box .entry-body h3, #page #detail .entry .box .entry-body h4, #page #detail .entry .box .entry-body h5, #page #detail .entry .box .entry-body h6 {
          font-style: normal;
          font-weight: 500;
          line-height: 140%;
          letter-spacing: 0.02em;
          color: #282233; }
        #page #detail .entry .box .entry-body h1 {
          font-size: 2rem; }
        #page #detail .entry .box .entry-body h2 {
          font-size: 1.75rem; }
        #page #detail .entry .box .entry-body h3 {
          font-size: 1.5rem; }
        #page #detail .entry .box .entry-body h4 {
          font-size: 1.375rem; }
        #page #detail .entry .box .entry-body h5 {
          font-size: 1.25rem; }
        #page #detail .entry .box .entry-body h6 {
          font-size: 1.125rem; }
        #page #detail .entry .box .entry-body table {
          width: 100%;
          background: #fff;
          font-weight: 400;
          font-size: 0.875rem;
          line-height: 160%;
          letter-spacing: 0.02em; }
          #page #detail .entry .box .entry-body table th {
            padding: 8px 16px;
            border: 1px solid #D6C9B5;
            text-align: center;
            font-weight: 400; }
          #page #detail .entry .box .entry-body table td {
            padding: 8px 16px;
            border: 1px solid #D6C9B5; }
          @media screen and (max-width: 499.98px) {
            #page #detail .entry .box .entry-body table th, #page #detail .entry .box .entry-body table td {
              padding: 8px 10px; } }
    #page #detail .entry .button-area {
      justify-content: flex-start; }

#page #about .right-text {
  margin-top: 8px; }
#page #about #message .content > p.text:nth-child(n+2) {
  margin-top: calc(0.875rem*2.4); }
#page #about #message .right-text {
  margin-top: calc(0.875rem*2.4); }
#page #about #info .dl-area > dl {
  border-color: #fff; }
#page #about #info .officer > dd > dl {
  display: flex; }
  #page #about #info .officer > dd > dl > dt {
    width: 147px;
    white-space: nowrap; }
#page #about #info #agency > dd {
  padding: 0; }
  #page #about #info #agency > dd > dl {
    display: flex;
    align-items: center;
    padding: 16px 16px 20px;
    border-top: 1px solid #fff;
    font-size: 0.875rem; }
    #page #about #info #agency > dd > dl:first-child {
      border: none; }
    #page #about #info #agency > dd > dl > dt {
      width: 228px;
      padding-right: 16px;
      white-space: nowrap; }
      #page #about #info #agency > dd > dl > dt a {
        color: #0069AD; }
    #page #about #info #agency > dd > dl > dd > dl {
      display: flex; }
      #page #about #info #agency > dd > dl > dd > dl > dt {
        width: 188px; }
      #page #about #info #agency > dd > dl > dd > dl > dd {
        padding-right: 16px; }
@media screen and (max-width: 820px) {
  #page #about #info #agency > dd > dl {
    display: block; }
    #page #about #info #agency > dd > dl > dt {
      width: 100%;
      padding-right: 0; }
    #page #about #info #agency > dd > dl > dd {
      margin-top: 10px; }
      #page #about #info #agency > dd > dl > dd > dl > dd {
        width: calc(100% - 188px); } }
#page #about #info #agency .en {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.05em; }
@media screen and (max-width: 600px) {
  #page #about #info .officer, #page #about #info #agency {
    display: block !important; }
    #page #about #info .officer > dt, #page #about #info #agency > dt {
      width: 100%;
      padding-bottom: 16px; }
    #page #about #info .officer > dd, #page #about #info #agency > dd {
      width: 100%; }
  #page #about #info .officer > dd {
    padding-top: 0; }
    #page #about #info .officer > dd > dl > dt {
      width: 160px; }
    #page #about #info .officer > dd > dl > dd {
      width: calc(100% - 160px);
      padding-right: 0; }
  #page #about #info #agency > dd > dl:first-child {
    padding-top: 0; }
  #page #about #info #agency > dd > dl > dd {
    width: 100%; }
    #page #about #info #agency > dd > dl > dd > dl > dt {
      width: 160px; }
    #page #about #info #agency > dd > dl > dd > dl > dd {
      width: calc(100% - 160px);
      padding-right: 0; } }
#page #about #info .map {
  height: 400px; }
#page #about #info .address {
  margin-top: 24px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 240%;
  letter-spacing: 0.02em; }
#page #about #info .access {
  margin-top: 8px; }
  #page #about #info .access dl {
    display: flex;
    margin-top: 16px; }
    #page #about #info .access dl dt {
      width: 153px;
      font-weight: 700;
      line-height: 160%;
      letter-spacing: 0.02em; }
    #page #about #info .access dl dd {
      width: calc(100% - 153px);
      font-weight: 400;
      line-height: 160%;
      letter-spacing: 0.02em; }
#page #about #organization #chart .image {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto; }
#page #about #organization #chart .right-text {
  margin-top: 8px; }
#page #about #other .fsc .data, #page #about #other .sdgs .data {
  width: 72.223%; }
#page #about #other .fsc .image, #page #about #other .sdgs .image {
  width: 27.777%;
  padding-left: 24px;
  text-align: center; }
#page #about #other .fsc {
  display: flex;
  align-items: flex-start; }
  #page #about #other .fsc h5 sup {
    vertical-align: super;
    font-size: 0.875rem; }
  #page #about #other .fsc .image img {
    width: 114.17px; }
  #page #about #other .fsc .text sup {
    vertical-align: 10%;
    font-size: 0.75rem; }
#page #about #other .sdgs .flex {
  align-items: center; }
#page #about #other .sdgs .image img {
  min-width: 170px;
  max-width: 200px; }
#page #about #other .sdgs .button-area {
  justify-content: flex-start;
  margin-top: 16px; }
@media screen and (max-width: 849.98px) {
  #page #about #other .fsc .image, #page #about #other .sdgs .image {
    padding-left: 16px; }
  #page #about #other .fsc .image img {
    width: 85.5px; }
  #page #about #other .sdgs .image img {
    min-width: auto;
    max-width: 160px; } }

#page #history .icon-area {
  margin-top: 24px; }
  #page #history .icon-area ul {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    #page #history .icon-area ul li {
      width: 36px;
      margin-left: 8px; }
#page #history #intro {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  #page #history #intro .text-area {
    width: calc(100% - 520px - 40px);
    max-width: 520px;
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 240%;
    letter-spacing: 0.02em; }
    #page #history #intro .text-area .button-area {
      align-items: flex-end;
      justify-content: flex-start; }
      #page #history #intro .text-area .button-area .image {
        width: 80px; }
      #page #history #intro .text-area .button-area .button-arrow {
        margin-left: 16px; }
  #page #history #intro > .image {
    width: 520px;
    margin-left: 40px; }
  @media screen and (max-width: 1160px) {
    #page #history #intro .text-area {
      width: calc(100% - 486px - 30px);
      max-width: none; }
    #page #history #intro > .image {
      width: 486px;
      max-width: 486px;
      margin-left: 30px; } }
  @media screen and (max-width: 1079.98px) {
    #page #history #intro {
      display: block; }
      #page #history #intro .text-area {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: none; }
        #page #history #intro .text-area .button-area {
          margin-top: 0; }
      #page #history #intro > .image {
        width: 100%;
        margin: 30px auto 0; } }
  @media screen and (max-width: 999.98px) {
    #page #history #intro .text-area .button-area {
      margin: 0 0 0 auto; } }
  @media screen and (max-width: 849.98px) {
    #page #history #intro .text-area {
      display: block; }
      #page #history #intro .text-area .button-area {
        margin-top: 22.5px; } }
  @media screen and (max-width: 767.98px) {
    #page #history #intro .text-area .button-area {
      margin-top: 20px; }
    #page #history #intro > .image {
      max-width: 360px; } }
#page #history #timeline ul li:nth-child(2n-1) {
  background: #EBF4FF; }
#page #history #timeline ul li:first-child {
  padding-top: 80px; }
  @media screen and (max-width: 767.98px) {
    #page #history #timeline ul li:first-child {
      padding-top: 64px; } }
  @media screen and (max-width: 499.98px) {
    #page #history #timeline ul li:first-child {
      padding-top: 40px; } }
#page #history #timeline ul li:last-child {
  padding-bottom: 80px; }
  @media screen and (max-width: 767.98px) {
    #page #history #timeline ul li:last-child {
      padding-bottom: 64px; } }
  @media screen and (max-width: 499.98px) {
    #page #history #timeline ul li:last-child {
      padding-bottom: 40px; } }
#page #history #timeline ul li .wrap-80 {
  display: flex;
  align-items: stretch; }
#page #history #timeline ul li .year {
  position: relative;
  min-height: 160px;
  padding-top: 20px;
  padding-right: 40px;
  border-right: 1px solid #D6C9B5;
  white-space: nowrap;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #0069AD; }
#page #history #timeline ul li .event {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 56px; }
  @media screen and (max-width: 1079.98px) {
    #page #history #timeline ul li .event {
      padding-bottom: 42px; } }
  @media screen and (max-width: 999.98px) {
    #page #history #timeline ul li .event {
      padding-bottom: 31.5px; } }
  @media screen and (max-width: 767.98px) {
    #page #history #timeline ul li .event {
      padding-bottom: 28px; } }
  #page #history #timeline ul li .event dl {
    display: flex;
    align-items: stretch;
    position: relative; }
    #page #history #timeline ul li .event dl:after {
      content: '';
      position: absolute;
      top: 5px;
      left: -8px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #0069AD; }
    #page #history #timeline ul li .event dl:nth-child(n+2) {
      margin-top: 100px; }
    #page #history #timeline ul li .event dl dt {
      display: flex;
      justify-content: space-between;
      width: 102px;
      margin: 0 40px;
      font-style: normal;
      font-weight: 700;
      font-size: 1rem;
      line-height: 160%;
      letter-spacing: 0.02em; }
    #page #history #timeline ul li .event dl dd {
      width: calc(100% - 102px - 40px - 40px);
      font-style: normal;
      font-weight: 400;
      font-size: 0.875rem;
      line-height: 200%;
      letter-spacing: 0.02em; }
      #page #history #timeline ul li .event dl dd .image-area {
        justify-content: flex-end;
        width: 100%;
        max-width: 764px;
        margin-top: 24px; }
        #page #history #timeline ul li .event dl dd .image-area p {
          padding: 0 8px; }
@media screen and (max-width: 1079.98px) {
  #page #history #timeline ul li .event dl dd .image-area p {
    text-align: left; } }
@media screen and (max-width: 999.98px) {
  #page #history #timeline ul li .year {
    padding-right: 30px;
    font-size: 56px; }
  #page #history #timeline ul li .event dl dt {
    margin: 0 30px; }
  #page #history #timeline ul li .event dl dd {
    width: calc(100% - 102px - 30px - 30px); } }
@media screen and (max-width: 767.98px) {
  #page #history #timeline ul li .wrap-80 {
    display: block; }
  #page #history #timeline ul li .year {
    min-height: auto;
    padding-right: 0;
    border: none; }
  #page #history #timeline ul li .event {
    padding-top: 10px;
    padding-bottom: 0; }
    #page #history #timeline ul li .event dl {
      display: block;
      padding-top: 10px;
      border-left: 1px solid #D6C9B5; }
      #page #history #timeline ul li .event dl:after {
        top: 13.5px; }
      #page #history #timeline ul li .event dl dt {
        margin-left: 20px; }
      #page #history #timeline ul li .event dl dd {
        width: 100%;
        padding: 4px 0 28px 20px; }
        #page #history #timeline ul li .event dl dd .image-area {
          justify-content: center; }
          #page #history #timeline ul li .event dl dd .image-area .image {
            width: auto;
            min-width: 50%;
            max-width: 260px; }
      #page #history #timeline ul li .event dl:nth-child(n+2) {
        margin-top: 0;
        padding-top: 30px; }
        #page #history #timeline ul li .event dl:nth-child(n+2):after {
          top: 33.5px; } }
@media screen and (max-width: 499.98px) {
  #page #history #timeline ul li .event dl dd .image-area {
    display: block; }
    #page #history #timeline ul li .event dl dd .image-area .image {
      margin: 0 auto; }
      #page #history #timeline ul li .event dl dd .image-area .image:nth-child(n+2) {
        margin-top: 20px; } }

#page #facilities .factory-slide-main {
  position: relative; }
  #page #facilities .factory-slide-main img {
    display: block;
    width: 100%;
    height: auto; }
  #page #facilities .factory-slide-main .slick-arrow {
    position: absolute;
    top: calc(50% - 36px);
    width: 72px;
    height: 72px;
    background: url("./../../assets/img/icon/arrow.svg") center/100% no-repeat;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    z-index: 5; }
  #page #facilities .factory-slide-main .slick-prev {
    left: calc(17.614% - 36px);
    transform: scale(-1, 1); }
  #page #facilities .factory-slide-main .slick-next {
    right: calc(17.614% - 36px); }
  @media screen and (max-width: 1079.98px) {
    #page #facilities .factory-slide-main .slick-arrow {
      top: calc(50% - 31px);
      width: 62px;
      height: 62px; }
    #page #facilities .factory-slide-main .slick-prev {
      left: calc(17.614% - 31px); }
    #page #facilities .factory-slide-main .slick-next {
      right: calc(17.614% - 31px); } }
  @media screen and (max-width: 767.98px) {
    #page #facilities .factory-slide-main .slick-arrow {
      top: calc(50% - 25px);
      width: 50px;
      height: 50px; }
    #page #facilities .factory-slide-main .slick-prev {
      left: calc(17.614% - 25px); }
    #page #facilities .factory-slide-main .slick-next {
      right: calc(17.614% - 25px); } }
#page #facilities .factory-thumb .thumb-grid {
  display: flex;
  flex-wrap: wrap;
  width: 1168px !important;
  margin: -4px auto; }
  @media screen and (max-width: 1200px) {
    #page #facilities .factory-thumb .thumb-grid {
      width: 940px !important; } }
  @media screen and (max-width: 980px) {
    #page #facilities .factory-thumb .thumb-grid {
      width: 752px !important; } }
  @media screen and (max-width: 785px) {
    #page #facilities .factory-thumb .thumb-grid {
      width: 616px !important; } }
  @media screen and (max-width: 650px) {
    #page #facilities .factory-thumb .thumb-grid {
      width: 528px !important; } }
  @media screen and (max-width: 560px) {
    #page #facilities .factory-thumb .thumb-grid {
      width: 400px !important; } }
  @media screen and (max-width: 420px) {
    #page #facilities .factory-thumb .thumb-grid {
      width: 90vw !important; } }
#page #facilities .factory-thumb .thumb {
  display: block;
  width: 89.33px !important;
  height: 89.33px;
  margin: 4px;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  transition: 0.05s all ease 0s; }
  @media screen and (max-width: 1200px) {
    #page #facilities .factory-thumb .thumb {
      width: 86px !important;
      height: 86px; } }
  @media screen and (max-width: 785px) {
    #page #facilities .factory-thumb .thumb {
      width: 80px !important;
      height: 80px; } }
  @media screen and (max-width: 560px) {
    #page #facilities .factory-thumb .thumb {
      width: 72px !important;
      height: 72px; } }
  @media screen and (max-width: 420px) {
    #page #facilities .factory-thumb .thumb {
      width: calc(22.5vw - 8px) !important;
      height: calc(22.5vw - 8px); } }
  #page #facilities .factory-thumb .thumb.is-active {
    position: relative;
    opacity: 1;
    outline: 4px solid #0069AD; }
    #page #facilities .factory-thumb .thumb.is-active:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(29, 68, 109, 0.4); }
#page #facilities #manufacture .table {
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: 0.02em; }
#page #facilities #manufacture #produce .table td:first-child {
  text-align: center; }
#page #facilities #manufacture .page-2col .title, #page #facilities #manufacture .page-2col .inner {
  width: 520px; }
#page #facilities #manufacture .page-2col #power .image {
  max-width: 520px;
  margin: 24px auto 0; }
@media screen and (max-width: 1239.98px) {
  #page #facilities #manufacture .page-2col .title, #page #facilities #manufacture .page-2col .inner {
    width: 497px; } }
@media screen and (max-width: 1180px) {
  #page #facilities #manufacture .page-2col .title, #page #facilities #manufacture .page-2col .inner {
    width: 100%; } }
#page #facilities #manufacture #image-area ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: -16px;
  margin-left: -16px; }
  #page #facilities #manufacture #image-area ul li {
    width: calc(25% - 16px);
    margin-top: 16px;
    margin-left: 16px; }
    @media screen and (max-width: 999.98px) {
      #page #facilities #manufacture #image-area ul li {
        width: calc(33.333% - 16px); } }
    @media screen and (max-width: 600px) {
      #page #facilities #manufacture #image-area ul li {
        width: calc(50% - 16px); } }
    @media screen and (max-width: 499.98px) {
      #page #facilities #manufacture #image-area ul li {
        width: calc(50% - 10px);
        margin-top: 10px;
        margin-left: 10px; } }

#page #sustainability .icon-area {
  margin-top: 24px; }
  #page #sustainability .icon-area ul {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    #page #sustainability .icon-area ul li {
      width: 46px;
      margin-left: 8px; }
      @media screen and (max-width: 600px) {
        #page #sustainability .icon-area ul li {
          width: 36px; } }
#page #sustainability #intro {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  #page #sustainability #intro .text {
    width: calc(100% - 520px - 40px);
    max-width: 520px;
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 240%;
    letter-spacing: 0.02em; }
  #page #sustainability #intro .agree {
    width: 520px;
    margin-left: 40px; }
  #page #sustainability #intro .fsc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 27px 24px;
    border: 1px solid #D6C9B5;
    border-radius: 4px; }
    #page #sustainability #intro .fsc .image {
      width: 45px; }
    #page #sustainability #intro .fsc .text {
      width: calc(100% - 45px);
      padding-left: 16px;
      font-weight: 400;
      font-size: 12px;
      line-height: 160%;
      letter-spacing: 0.02em; }
    #page #sustainability #intro .fsc sup {
      vertical-align: 10%;
      font-size: 0.75rem; }
  #page #sustainability #intro .sdgs {
    width: 100%;
    margin-top: 16px;
    padding: 24px 8px;
    border: 1px solid #D6C9B5;
    border-radius: 4px; }
    #page #sustainability #intro .sdgs .flex {
      align-items: center; }
    #page #sustainability #intro .sdgs .image {
      position: relative;
      width: 82px; }
      #page #sustainability #intro .sdgs .image:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 1px;
        height: 36px;
        background: #D6C9B5; }
      #page #sustainability #intro .sdgs .image img {
        width: 78px; }
    #page #sustainability #intro .sdgs ul {
      display: flex;
      width: calc(100% - 86px); }
      #page #sustainability #intro .sdgs ul li {
        width: 48px;
        margin-top: 4px;
        margin-left: 6px; }
    #page #sustainability #intro .sdgs p {
      margin-top: 4px;
      text-align: center;
      font-weight: 400;
      font-size: 12px;
      line-height: 160%;
      letter-spacing: 0.02em; }
  @media screen and (max-width: 1160px) {
    #page #sustainability #intro .text {
      width: calc(100% - 486px - 30px); }
    #page #sustainability #intro .agree {
      width: 486px;
      max-width: 486px;
      margin-left: 30px; }
    #page #sustainability #intro .fsc {
      padding: 18px; }
    #page #sustainability #intro .sdgs {
      padding: 18px 8px; } }
  @media screen and (max-width: 1079.98px) {
    #page #sustainability #intro {
      display: block; }
      #page #sustainability #intro .text {
        width: 100%;
        max-width: none; }
      #page #sustainability #intro .agree {
        margin: 30px auto 0; } }
  @media screen and (max-width: 600px) {
    #page #sustainability #intro .agree {
      width: 100%; }
    #page #sustainability #intro .sdgs ul {
      flex-wrap: wrap; } }
#page #sustainability #info .officer > dd > dl {
  display: flex; }
  #page #sustainability #info .officer > dd > dl > dt {
    width: 147px;
    white-space: nowrap; }
#page #sustainability #info .agency > dd {
  padding: 0; }
  #page #sustainability #info .agency > dd > dl {
    display: flex;
    align-items: center;
    padding: 16px 16px 20px;
    border-top: 1px solid #fff;
    font-size: 0.875rem; }
    #page #sustainability #info .agency > dd > dl:first-child {
      border: none; }
    #page #sustainability #info .agency > dd > dl > dt {
      width: 228px;
      padding-right: 16px;
      white-space: nowrap; }
      #page #sustainability #info .agency > dd > dl > dt a {
        color: #0069AD; }
    #page #sustainability #info .agency > dd > dl > dd > dl {
      display: flex; }
      #page #sustainability #info .agency > dd > dl > dd > dl > dt {
        width: 188px; }
      #page #sustainability #info .agency > dd > dl > dd > dl > dd {
        padding-right: 16px; }
#page #sustainability #info .agency .en {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.05em; }
#page #sustainability #info .map {
  height: 400px; }
#page #sustainability #info .address {
  margin-top: 24px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 240%;
  letter-spacing: 0.02em; }
#page #sustainability #info .access {
  margin-top: 8px; }
  #page #sustainability #info .access dl {
    display: flex;
    margin-top: 16px; }
    #page #sustainability #info .access dl dt {
      width: 153px;
      font-weight: 700;
      line-height: 160%;
      letter-spacing: 0.02em; }
    #page #sustainability #info .access dl dd {
      width: calc(100% - 153px);
      font-weight: 400;
      line-height: 160%;
      letter-spacing: 0.02em; }
#page #sustainability #recycle .page-2col .title h4 .br-recycle {
  display: none; }
@media screen and (max-width: 1260px) {
  #page #sustainability #recycle .page-2col .title h4 .br-recycle {
    display: block; }
  #page #sustainability #recycle .page-2col .title h4 .br-recycle2 {
    display: none; } }
@media screen and (max-width: 1180px) {
  #page #sustainability #recycle .page-2col .title h4 .br-recycle {
    display: none; } }
@media screen and (max-width: 499.98px) {
  #page #sustainability #recycle .page-2col .title h4 .block {
    display: inline; } }
@media screen and (max-width: 375.98px) {
  #page #sustainability #recycle .page-2col .title h4 .block {
    display: inline-block; } }
#page #sustainability #organization #chart .right-text {
  margin-top: 8px; }
#page #sustainability #energy #boiler.page-2col .title h4 .br-boiler {
  display: none; }
@media screen and (max-width: 1260px) {
  #page #sustainability #energy #boiler.page-2col .title h4 .br-boiler {
    display: block; } }
@media screen and (max-width: 1180px) {
  #page #sustainability #energy #boiler.page-2col .title h4 .br-boiler {
    display: none; }
  #page #sustainability #energy #boiler.page-2col .title h4 .br-boiler2 {
    display: none; } }
@media screen and (max-width: 600px) {
  #page #sustainability #energy #boiler.page-2col .title h4 .br-boiler {
    display: block; }
  #page #sustainability #energy #boiler.page-2col .title h4 .br-boiler2 {
    display: none; } }
@media screen and (max-width: 499.98px) {
  #page #sustainability #energy #boiler.page-2col .title h4 .br-boiler {
    display: none; }
  #page #sustainability #energy #boiler.page-2col .title h4 .br-boiler2 {
    display: block; } }
@media screen and (max-width: 375.98px) {
  #page #sustainability #energy #boiler.page-2col .title h4 .block {
    display: inline-block; } }

#page #products #sub-menu ul li a, #page #products #sub-menu ul li div {
  min-width: 160px;
  padding: 4px 8px; }
@media screen and (max-width: 600px) {
  #page #products #sub-menu ul li {
    margin: 0 8px; }
    #page #products #sub-menu ul li a, #page #products #sub-menu ul li div {
      width: calc(50% - 16px); } }
#page #products .products-area {
  display: flex;
  flex-wrap: wrap;
  max-width: 720px; }
  #page #products .products-area .product {
    position: relative;
    width: calc(50% - 8px);
    margin-top: 40px; }
    #page #products .products-area .product .title-image {
      position: relative; }
    #page #products .products-area .product .image {
      overflow: hidden;
      width: 100%;
      max-height: 234.67px;
      padding-top: calc((100% - 8px)*0.66667);
      background-position: center top;
      background-size: 100% auto;
      transition: 0.3s all; }
      #page #products .products-area .product .image.back {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1; }
    #page #products .products-area .product a:hover {
      opacity: 1.0; }
      #page #products .products-area .product a:hover .image.back {
        opacity: 1.0;
        z-index: 2; }
    #page #products .products-area .product .item {
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 3;
      width: 100%;
      padding: 24px;
      background: linear-gradient(rgba(0, 0, 0, 0) 2%, rgba(0, 0, 0, 0.1) 98%); }
      #page #products .products-area .product .item h5 {
        font-weight: 500;
        font-size: 1.5rem;
        line-height: 140%;
        letter-spacing: 0.02em;
        color: #fff; }
      #page #products .products-area .product .item .data {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        width: 100%; }
        #page #products .products-area .product .item .data .button-arrow {
          margin-top: 8px; }
      #page #products .products-area .product .item ul.tag {
        display: flex;
        flex-wrap: wrap;
        width: calc(100% - 48px); }
        #page #products .products-area .product .item ul.tag > li {
          width: auto;
          height: 25px;
          margin-top: 8px;
          margin-right: 8px;
          padding: 4px 8px;
          background: #fff;
          white-space: nowrap;
          font-style: normal;
          font-weight: 500;
          font-size: 12px;
          line-height: 17px;
          letter-spacing: 0.02em; }
          #page #products .products-area .product .item ul.tag > li:last-child {
            margin-right: 0; }
    #page #products .products-area .product .spec {
      padding: 4px 24px 0 24px; }
      #page #products .products-area .product .spec dl {
        display: flex;
        margin-top: 8px; }
        #page #products .products-area .product .spec dl dt {
          width: 80px;
          font-style: normal;
          font-weight: 700;
          font-size: 12px;
          line-height: 160%;
          letter-spacing: 0.02em; }
        #page #products .products-area .product .spec dl dd {
          width: calc(100% - 80px);
          font-style: normal;
          font-weight: 400;
          font-size: 12px;
          line-height: 160%;
          letter-spacing: 0.02em; }
  #page #products .products-area p {
    margin-top: 8px;
    padding: 0 4px;
    text-align: center;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 160%;
    letter-spacing: 0.02em; }
  @media screen and (min-width: 1180px) {
    #page #products .products-area .product:nth-child(2n) {
      margin-left: 16px; } }
  @media screen and (max-width: 1180px) {
    #page #products .products-area {
      max-width: none; } }
  @media screen and (max-width: 1180px) and (min-width: 1001px) {
    #page #products .products-area .product {
      width: calc(33.333% - 11px);
      margin-right: 16px; }
      #page #products .products-area .product:nth-child(3n) {
        margin-right: 0; } }
  @media screen and (max-width: 1079.98px) {
    #page #products .products-area .product {
      margin-top: 30px; } }
  @media screen and (max-width: 999.98px) {
    #page #products .products-area {
      margin-left: -16px; }
      #page #products .products-area .product {
        width: calc(50% - 16px);
        margin-top: 22.5px;
        margin-left: 16px; } }
  @media screen and (max-width: 767.98px) {
    #page #products .products-area .product {
      margin-top: 20px; }
    #page #products .products-area p {
      padding: 0 8px; } }
  @media screen and (max-width: 600px) {
    #page #products .products-area .product .item {
      position: static;
      padding: 8px 4px 4px;
      background: transparent; }
      #page #products .products-area .product .item h5 {
        color: #282233; }
      #page #products .products-area .product .item ul.tag {
        width: 100%; }
        #page #products .products-area .product .item ul.tag > li {
          border: 1px solid rgba(40, 34, 51, 0.2); }
      #page #products .products-area .product .item .data {
        display: block; }
        #page #products .products-area .product .item .data .button-arrow {
          width: 100%;
          align-items: flex-end;
          justify-content: flex-end;
          position: absolute;
          top: 0;
          right: 0;
          z-index: 3;
          width: 100%;
          max-height: 234.67px;
          margin-top: 0;
          padding-bottom: calc((100% - 8px) * 0.66667);
          transition: all .5s; }
          #page #products .products-area .product .item .data .button-arrow > span {
            position: absolute;
            bottom: 16px;
            right: 16px; }
    #page #products .products-area .product .spec {
      padding: 4px 12px 0 12px; }
      #page #products .products-area .product .spec dl {
        display: block; }
        #page #products .products-area .product .spec dl dt, #page #products .products-area .product .spec dl dd {
          width: 100%; }
        #page #products .products-area .product .spec dl dd {
          margin-top: 2px; } }
  @media screen and (max-width: 499.98px) {
    #page #products .products-area p {
      text-align: left; } }
  @media screen and (max-width: 413.98px) {
    #page #products .products-area .product .item .data .button-arrow > span {
      bottom: 10px;
      right: 10px; } }
  @media screen and (max-width: 375.98px) {
    #page #products .products-area .product {
      max-width: 320px; } }

#page #products-list #sub-menu ul li a, #page #products-list #sub-menu ul li div {
  min-width: 160px;
  padding: 4px 8px; }
@media screen and (max-width: 600px) {
  #page #products-list #sub-menu ul li {
    margin: 0 8px; }
    #page #products-list #sub-menu ul li a, #page #products-list #sub-menu ul li div {
      width: calc(50% - 16px); } }
#page #products-list #search-area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between; }
  @media screen and (max-width: 999.98px) {
    #page #products-list #search-area {
      display: block; } }
#page #products-list #pagination {
  width: 100%; }
#page #products-list .search-sidebar-inner {
  width: 320px;
  padding: 48px 40px;
  border: 1px solid #0069AD;
  background: #fff; }
  @media screen and (max-width: 999.98px) {
    #page #products-list .search-sidebar-inner {
      width: 81.818%;
      max-width: 1080px;
      margin: 0 auto 36px; } }
  @media screen and (max-width: 767.98px) {
    #page #products-list .search-sidebar-inner {
      width: 87.878%;
      padding: 24px 20px; } }
  @media screen and (max-width: 499.98px) {
    #page #products-list .search-sidebar-inner {
      width: 100%; } }
#page #products-list .searchandfilter > div > ul > li {
  margin-bottom: 40px; }
  #page #products-list .searchandfilter > div > ul > li > ul li {
    margin-top: 24px; }
  #page #products-list .searchandfilter > div > ul > li:first-child {
    position: relative; }
    #page #products-list .searchandfilter > div > ul > li:first-child:after {
      content: url(./../img/icon/search.svg);
      position: absolute;
      right: 19px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      cursor: pointer; }
  #page #products-list .searchandfilter > div > ul > li:last-child {
    position: relative;
    padding: 0; }
#page #products-list .searchandfilter h4 {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: 0.02em; }
#page #products-list .searchandfilter ul {
  transition: max-height 0.5s ease-out, opacity 0.25s ease; }
  #page #products-list .searchandfilter ul li {
    width: 100%;
    padding: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 160%;
    letter-spacing: 0.02em; }
    #page #products-list .searchandfilter ul li label {
      display: flex;
      align-items: center;
      cursor: pointer; }
      #page #products-list .searchandfilter ul li label input[type="checkbox"] {
        position: relative;
        width: 24px;
        height: 24px;
        margin-right: 8px;
        border: 1px solid rgba(40, 34, 51, 0.2);
        border-radius: 4px;
        background: #fff; }
      #page #products-list .searchandfilter ul li label input[type="checkbox"]:checked:after {
        content: '';
        position: absolute;
        top: 5px;
        left: 3.5px;
        width: 12px;
        height: 6px;
        border-left: 3px solid #0069AD;
        border-bottom: 3px solid #0069AD;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg); }
    #page #products-list .searchandfilter ul li input[type="text"] {
      position: relative;
      width: 100%;
      padding: 12px 48px 12px 16px;
      border-radius: 4px;
      background: #F2F2F2;
      border-radius: 4px;
      font-style: normal;
      font-weight: 500;
      font-size: 1rem;
      line-height: 160%;
      letter-spacing: 0.02em;
      color: #282233; }
      #page #products-list .searchandfilter ul li input[type="text"]:placeholder {
        font-style: normal;
        font-weight: 500;
        font-size: 1rem;
        line-height: 160%;
        letter-spacing: 0.02em;
        color: rgba(40, 34, 51, 0.2); }
    #page #products-list .searchandfilter ul li input[type="submit"] {
      width: 100%;
      padding: 12px 16px;
      border: none;
      background: url(./../img/icon/icon-btn-arrow-w.svg) right 32px center/32px 32px no-repeat #0069AD;
      cursor: pointer;
      font-family: "Zen Kaku Gothic New", serif;
      font-style: normal;
      font-weight: 500;
      font-size: 1rem;
      line-height: 160%;
      color: #fff;
      transition: all .5s; }
      #page #products-list .searchandfilter ul li input[type="submit"]:hover {
        transform: translateY(0.75px);
        opacity: 0.6; }
#page #products-list .searchandfilter ul.children {
  margin-left: 24px; }
  #page #products-list .searchandfilter ul.children > li {
    margin-top: 16px !important;
    margin-bottom: 0; }
@media screen and (max-width: 999.98px) {
  #page #products-list .searchandfilter > div > ul {
    display: flex;
    flex-wrap: wrap; }
    #page #products-list .searchandfilter > div > ul > li {
      width: calc(50% - 16px);
      margin: 0 8px 30px; }
      #page #products-list .searchandfilter > div > ul > li:first-child {
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
      #page #products-list .searchandfilter > div > ul > li:last-child {
        width: 100%;
        display: block;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto; }
  #page #products-list .searchandfilter h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0;
    cursor: pointer; }
    #page #products-list .searchandfilter h4::after {
      content: '';
      display: block;
      width: 8px;
      height: 8px;
      margin-right: 8px;
      border-top: 2px solid #0069AD;
      border-right: 2px solid #0069AD;
      transform: rotate(135deg);
      transition: transform 0.5s; }
    #page #products-list .searchandfilter h4.is-active::after {
      transform: rotate(-45deg); }
  #page #products-list .searchandfilter > div > ul > li {
    transition: all .5s; }
    #page #products-list .searchandfilter > div > ul > li > ul {
      overflow: hidden;
      display: block !important;
      max-height: 0;
      padding-bottom: 0;
      opacity: 0;
      transition: all .5s; }
    #page #products-list .searchandfilter > div > ul > li h4.is-active + ul {
      max-height: 1000px;
      padding-bottom: 20px;
      opacity: 1; }
  #page #products-list .searchandfilter .sidebar-reset {
    margin-top: 15px;
    text-align: center; }
    #page #products-list .searchandfilter .sidebar-reset .reset-link {
      font-size: 13px;
      color: #0069AD;
      text-decoration: none;
      font-weight: bold; } }
#page #products-list .sidebar-reset a {
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: #0069AD; }
@media screen and (max-width: 999.98px) {
  #page #products-list .sidebar-reset {
    text-align: center; } }
#page #products-list .products-area {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 320px);
  max-width: none;
  padding-left: 40px; }
  #page #products-list .products-area .product {
    width: calc(50% - 8px);
    margin-bottom: 40px; }
    #page #products-list .products-area .product:nth-child(2n) {
      margin-left: 16px; }
    #page #products-list .products-area .product .title-image {
      position: relative; }
    #page #products-list .products-area .product .image {
      overflow: hidden;
      width: 100%;
      max-height: 234.67px;
      padding-bottom: calc((100% - 8px)*0.66667);
      background-position: center top;
      background-size: 100% auto;
      transition: 0.3s all; }
      #page #products-list .products-area .product .image.back {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1; }
    #page #products-list .products-area .product a:hover {
      opacity: 1.0; }
      #page #products-list .products-area .product a:hover .image.back {
        opacity: 1.0;
        z-index: 2; }
    #page #products-list .products-area .product .item {
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 3;
      width: 100%;
      padding: 24px;
      background: linear-gradient(rgba(0, 0, 0, 0) 2%, rgba(0, 0, 0, 0.1) 98%); }
      #page #products-list .products-area .product .item h5 {
        font-weight: 500;
        font-size: 1.5rem;
        line-height: 140%;
        letter-spacing: 0.02em;
        color: #fff; }
      #page #products-list .products-area .product .item .data {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        width: 100%; }
        #page #products-list .products-area .product .item .data .button-arrow {
          margin-top: 8px; }
      #page #products-list .products-area .product .item ul.tag {
        display: flex;
        flex-wrap: wrap;
        width: calc(100% - 48px); }
        #page #products-list .products-area .product .item ul.tag > li {
          width: auto;
          height: 25px;
          margin-top: 8px;
          margin-right: 8px;
          padding: 4px 8px;
          background: #fff;
          white-space: nowrap;
          font-style: normal;
          font-weight: 500;
          font-size: 12px;
          line-height: 17px;
          letter-spacing: 0.02em; }
          #page #products-list .products-area .product .item ul.tag > li:last-child {
            margin-right: 0; }
    #page #products-list .products-area .product .spec {
      padding: 4px 24px 0 24px; }
      #page #products-list .products-area .product .spec dl {
        display: flex;
        margin-top: 8px; }
        #page #products-list .products-area .product .spec dl dt {
          width: 80px;
          font-style: normal;
          font-weight: 700;
          font-size: 12px;
          line-height: 160%;
          letter-spacing: 0.02em; }
        #page #products-list .products-area .product .spec dl dd {
          width: calc(100% - 80px);
          font-style: normal;
          font-weight: 400;
          font-size: 12px;
          line-height: 160%;
          letter-spacing: 0.02em; }
  #page #products-list .products-area p {
    margin-top: 8px;
    padding: 0 4px;
    text-align: center;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 160%;
    letter-spacing: 0.02em; }
  @media screen and (max-width: 1200px) {
    #page #products-list .products-area {
      padding-left: 30px; } }
  @media screen and (max-width: 1079.98px) {
    #page #products-list .products-area {
      padding-left: 24px; }
      #page #products-list .products-area .product {
        margin-bottom: 30px; } }
  @media screen and (max-width: 999.98px) {
    #page #products-list .products-area {
      width: calc(100% + 16px);
      margin-left: -16px;
      padding-left: 0; }
      #page #products-list .products-area .product {
        width: calc(50% - 16px);
        margin-bottom: 22.5px;
        margin-left: 16px; } }
  @media screen and (max-width: 767.98px) {
    #page #products-list .products-area .product {
      margin-bottom: 20px; }
    #page #products-list .products-area p {
      padding: 0 8px; } }
  @media screen and (max-width: 600px) {
    #page #products-list .products-area .product .item {
      position: static;
      padding: 8px 4px 4px;
      background: transparent; }
      #page #products-list .products-area .product .item h5 {
        color: #282233; }
      #page #products-list .products-area .product .item ul.tag {
        width: 100%; }
        #page #products-list .products-area .product .item ul.tag > li {
          border: 1px solid rgba(40, 34, 51, 0.2); }
      #page #products-list .products-area .product .item .data {
        display: block; }
        #page #products-list .products-area .product .item .data .button-arrow {
          width: 100%;
          align-items: flex-end;
          justify-content: flex-end;
          position: absolute;
          top: 0;
          right: 0;
          z-index: 3;
          width: 100%;
          max-height: 234.67px;
          margin-top: 0;
          padding-bottom: calc((100% - 8px) * 0.66667);
          transition: all .5s; }
          #page #products-list .products-area .product .item .data .button-arrow > span {
            position: absolute;
            bottom: 16px;
            right: 16px; }
    #page #products-list .products-area .product .spec {
      padding: 4px 12px 0 12px; }
      #page #products-list .products-area .product .spec dl {
        display: block; }
        #page #products-list .products-area .product .spec dl dt, #page #products-list .products-area .product .spec dl dd {
          width: 100%; }
        #page #products-list .products-area .product .spec dl dd {
          margin-top: 2px; } }
  @media screen and (max-width: 499.98px) {
    #page #products-list .products-area p {
      text-align: left; } }
  @media screen and (max-width: 413.98px) {
    #page #products-list .products-area .product .item .data .button-arrow > span {
      bottom: 10px;
      right: 10px; } }
  @media screen and (max-width: 375.98px) {
    #page #products-list .products-area .product {
      max-width: 320px; } }

#page #product-detail .breadcrumbs {
  background: #EBF4FF; }
#page #product-detail #entry-area {
  display: flex;
  background: #EBF4FF; }
#page #product-detail .image-entry {
  width: 50%; }
  #page #product-detail .image-entry .slide {
    margin-bottom: 4px; }
#page #product-detail .item {
  width: 43.939%;
  margin: 0 auto; }
  #page #product-detail .item section {
    margin-top: 4px;
    padding: 32px 40px; }
    #page #product-detail .item section:first-child {
      margin-top: 0; }
#page #product-detail #product-data {
  padding: 40px; }
  #page #product-detail #product-data .series-container {
    display: flex; }
  #page #product-detail #product-data .series {
    margin-bottom: 8px;
    white-space: nowrap;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 160%;
    letter-spacing: 0.02em; }
  #page #product-detail #product-data .series:not(:first-child)::before {
    content: "・"; }
  #page #product-detail #product-data h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 2.25rem;
    line-height: 160%;
    letter-spacing: 0.02em; }
  #page #product-detail #product-data sup {
    vertical-align: 10%;
    font-size: 0.75rem; }
  #page #product-detail #product-data ul.tag {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px; }
    #page #product-detail #product-data ul.tag > li {
      width: auto;
      height: 25px;
      margin-top: 8px;
      margin-right: 8px;
      padding: 4px 8px;
      background: #F7F4F0;
      white-space: nowrap;
      font-style: normal;
      font-weight: 500;
      font-size: 12px;
      line-height: 17px;
      letter-spacing: 0.02em; }
      #page #product-detail #product-data ul.tag > li:last-child {
        margin-right: 0; }
  #page #product-detail #product-data .entry-text {
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 200%;
    letter-spacing: 0.02em; }
  #page #product-detail #product-data .view .image {
    width: 100%;
    max-width: 500px; }
  #page #product-detail #product-data .fsc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 27px 24px;
    border: 1px solid #D6C9B5; }
    #page #product-detail #product-data .fsc .image {
      width: 45px; }
    #page #product-detail #product-data .fsc .text {
      width: calc(100% - 45px);
      padding-left: 16px;
      font-weight: 400;
      font-style: normal;
      font-weight: 400;
      font-size: 12px;
      line-height: 160%;
      letter-spacing: 0.02em; }
#page #product-detail .product-section > dl {
  display: flex; }
  #page #product-detail .product-section > dl > dt {
    width: 144px;
    padding-right: 20px;
    white-space: nowrap;
    font-style: normal;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 160%;
    letter-spacing: 0.02em; }
  #page #product-detail .product-section > dl > dd {
    width: calc(100% - 144px);
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 200%;
    letter-spacing: 0.02em; }
    #page #product-detail .product-section > dl > dd .sample-number dl {
      display: flex;
      align-items: flex-start; }
      #page #product-detail .product-section > dl > dd .sample-number dl dt {
        width: 182px; }
      #page #product-detail .product-section > dl > dd .sample-number dl dd {
        position: relative;
        padding-left: 17px;
        white-space: nowrap; }
        #page #product-detail .product-section > dl > dd .sample-number dl dd:after {
          content: '…';
          position: absolute;
          bottom: 0;
          left: 0; }
  @media screen and (max-width: 1200px) {
    #page #product-detail .product-section > dl > dt {
      width: 124px; }
    #page #product-detail .product-section > dl > dd {
      width: calc(100% - 124px); } }
  @media screen and (max-width: 999.98px) {
    #page #product-detail .product-section > dl {
      display: block; }
      #page #product-detail .product-section > dl > dt {
        width: 100%;
        padding: 0; }
      #page #product-detail .product-section > dl > dd {
        width: 100%;
        margin-top: 8px;
        padding: 0; } }
#page #product-detail .paper-thickness table {
  width: 100%;
  max-width: 356px;
  border-bottom: 1px solid #D6C9B5; }
  #page #product-detail .paper-thickness table th {
    padding: 8px;
    border-top: 1px solid #D6C9B5;
    border-bottom: 1px solid #D6C9B5;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0.02em; }
    #page #product-detail .paper-thickness table th:first-child {
      width: 33.334%; }
    #page #product-detail .paper-thickness table th:nth-child(2) {
      width: 66.666%; }
  #page #product-detail .paper-thickness table td {
    padding: 0 8px 8px;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 160%;
    letter-spacing: 0.02em; }
    #page #product-detail .paper-thickness table td:first-child {
      width: 33.334%; }
    #page #product-detail .paper-thickness table td:nth-child(2) {
      width: 66.666%; }
  #page #product-detail .paper-thickness table tr:nth-child(2) td {
    padding-top: 8px; }
  #page #product-detail .paper-thickness table tr:last-child td {
    padding-bottom: 16px; }
#page #product-detail .paper-thickness .note {
  margin-top: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.02em; }
#page #product-detail .size-options .note {
  margin-top: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.02em; }
#page #product-detail .price-guide ul {
  display: flex;
  margin-top: 26px; }
  #page #product-detail .price-guide ul li {
    display: none;
    position: relative;
    width: 20%;
    max-width: 71.2px;
    height: 12px; }
    #page #product-detail .price-guide ul li:first-child {
      background: #d0e0ed; }
    #page #product-detail .price-guide ul li:nth-child(2) {
      background: #a1c2db; }
    #page #product-detail .price-guide ul li:nth-child(3) {
      background: #74a3ca; }
    #page #product-detail .price-guide ul li:nth-child(4) {
      background: #4b85b8; }
    #page #product-detail .price-guide ul li:last-child {
      background: #2c67a8; }
    #page #product-detail .price-guide ul li .number {
      display: none;
      position: absolute;
      top: -28px;
      left: 50%;
      transform: translateX(-50%);
      font-family: "Lato", sans-serif;
      font-style: normal;
      font-weight: 500;
      font-size: 1rem;
      line-height: 160%;
      letter-spacing: 0.05em; }
#page #product-detail .price-guide.no1 ul li:first-child, #page #product-detail .price-guide.no1 ul li:first-child .number {
  display: block; }
#page #product-detail .price-guide.no2 ul li:nth-child(-n+2) {
  display: block; }
#page #product-detail .price-guide.no2 ul li:nth-child(2) .number {
  display: block; }
#page #product-detail .price-guide.no3 ul li:nth-child(-n+3) {
  display: block; }
#page #product-detail .price-guide.no3 ul li:nth-child(3) .number {
  display: block; }
#page #product-detail .price-guide.no4 ul li:nth-child(-n+4) {
  display: block; }
#page #product-detail .price-guide.no4 ul li:nth-child(4) .number {
  display: block; }
#page #product-detail .price-guide.no5 ul li:nth-child(-n+5) {
  display: block; }
#page #product-detail .price-guide.no5 ul li:last-child .number {
  display: block; }
#page #product-detail .price-guide .note {
  margin-top: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.02em; }
#page #product-detail .delivery-processing a {
  display: inline;
  text-decoration: underline;
  color: #0069AD; }
#page #product-detail #entry-area + .button-area {
  background: #EBF4FF; }
  #page #product-detail #entry-area + .button-area .button-arrow {
    justify-content: flex-start; }
#page #product-detail #products-slider .title-area {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  #page #product-detail #products-slider .title-area h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 140%;
    letter-spacing: 0.02em; }
  #page #product-detail #products-slider .title-area .button-area {
    justify-content: flex-end;
    margin: 0; }
@media screen and (max-width: 1079.98px) {
  #page #product-detail #product-data {
    padding: 40px 20px; }
    #page #product-detail #product-data .entry-text {
      padding: 0 4px; } }
@media screen and (max-width: 849.98px) {
  #page #product-detail #product-data {
    padding: 40px; }
    #page #product-detail #product-data .entry-text {
      padding: 0; }
  #page #product-detail #entry-area {
    flex-direction: column; }
  #page #product-detail .image-entry {
    width: 100%; }
  #page #product-detail .item {
    width: 87.878%;
    max-width: 1160px;
    margin: 22.5px auto 0; } }
  @media screen and (max-width: 849.98px) and (max-width: 767.98px) {
    #page #product-detail .item {
      width: 90%; } }
@media screen and (max-width: 849.98px) {
  #page #product-detail .slick-arrow {
    position: absolute;
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
    background: url("./../../assets/img/icon/arrow.svg") center/100% no-repeat;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    z-index: 5; }
  #page #product-detail .slick-prev {
    left: calc(17.614% - 25px);
    transform: scale(-1, 1); }
  #page #product-detail .slick-next {
    right: calc(17.614% - 25px); }
  #page #product-detail .slick-slide {
    margin: 0 2px; }
  #page #product-detail .slick-list {
    margin: 0 -2px; }
  #page #product-detail .slick-dots {
    display: flex;
    justify-content: center;
    width: 81.818%;
    max-width: 1080px;
    margin: 0 auto;
    height: 30px; }
    #page #product-detail .slick-dots li {
      margin-left: 20px; }
      #page #product-detail .slick-dots li:first-child {
        margin-left: 0; }
      #page #product-detail .slick-dots li button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(29, 68, 109, 0.2);
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden; }
    #page #product-detail .slick-dots li.slick-active button {
      border: 1px solid #0069AD;
      background: #0069AD; } }
@media screen and (max-width: 767.98px) {
  #page #product-detail .item {
    margin-top: 20px; }
  #page #product-detail #products-slider .inner {
    margin-left: 5%; } }
@media screen and (max-width: 499.98px) {
  #page #product-detail #product-data {
    padding: 40px 20px; }
  #page #product-detail #products-slider .title-area {
    display: block; }
  #page #product-detail #products-slider .button-area {
    margin-top: 16px; } }
@media screen and (max-width: 413.98px) {
  #page #product-detail #product-data .series {
    font-size: 0.875rem; } }

#page #craftsmanship #process .page-fv-scroll {
  margin-left: 6.060%;
  margin-right: auto;
  padding-right: 20px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  white-space: nowrap;
  scroll-behavior: smooth; }
  #page #craftsmanship #process .page-fv-scroll > img {
    display: block;
    width: auto;
    max-width: none; }
#page #craftsmanship #process .page-fv-scroll::-webkit-scrollbar {
  display: none; }
#page #craftsmanship #process .button-area {
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0; }
  #page #craftsmanship #process .button-area button {
    padding-right: 18px;
    background: url(./../img/icon/double-arrow.svg) right center/10.5px 8px no-repeat;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 800;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.05em;
    color: #0069AD; }
#page #craftsmanship #process .content {
  margin-left: 0; }
@media screen and (max-width: 1239.98px) {
  #page #craftsmanship #process .page-fv-scroll > img {
    width: 2600px; } }
@media screen and (max-width: 1180px) {
  #page #craftsmanship #process .page-2col {
    display: flex; }
  #page #craftsmanship #process .button-area {
    justify-content: flex-end; }
  #page #craftsmanship #process .content {
    padding-top: 0; } }
@media screen and (max-width: 999.98px) {
  #page #craftsmanship #process .page-fv-scroll > img {
    width: 2200px; } }
@media screen and (max-width: 900px) {
  #page #craftsmanship #process .page-2col {
    flex-wrap: wrap; }
  #page #craftsmanship #process .button-area {
    order: 1;
    margin: 0 auto; }
  #page #craftsmanship #process .content {
    order: 2;
    margin-top: 24px; } }
@media screen and (max-width: 767.98px) {
  #page #craftsmanship #process .page-fv-scroll > img {
    width: 2000px; } }
@media screen and (max-width: 499.98px) {
  #page #craftsmanship #process .page-fv-scroll > img {
    width: 1800px; } }

#page #privacy ul.list li {
  display: flex; }

#page .form-area {
  padding-top: 32px;
  padding-bottom: 32px;
  background: #EBF4FF;
  line-height: 160%; }
  @media screen and (max-width: 1180px) {
    #page .form-area {
      margin-top: 24px !important; } }
  #page .form-area h4 {
    margin-bottom: 16px; }
  #page .form-area form {
    position: relative; }
    #page .form-area form #form-input > p {
      margin: 24px 16px 0;
      font-style: normal;
      font-weight: 700;
      font-size: 0.875rem;
      line-height: 160%;
      letter-spacing: 0.02em; }
      #page .form-area form #form-input > p > br {
        display: none; }
      #page .form-area form #form-input > p .flex {
        margin-top: 16px;
        font-style: normal;
        font-weight: 400;
        font-size: 0.875rem;
        line-height: 160%;
        letter-spacing: 0.02em; }
  #page .form-area label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    line-height: 160%; }
  #page .form-area input, #page .form-area textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 4px;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: #282233; }
    #page .form-area input::placeholder, #page .form-area textarea::placeholder {
      color: rgba(40, 34, 51, 0.2); }
    #page .form-area input:nth-child(n+2), #page .form-area textarea:nth-child(n+2) {
      margin-top: 12px; }
  #page .form-area input[type="text"], #page .form-area input[type="email"], #page .form-area input[type="tel"], #page .form-area textarea {
    background: #F2F2F2; }
  #page .form-area input[type="radio"], #page .form-area input[type="checkbox"] {
    position: relative;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 1px solid rgba(40, 34, 51, 0.2);
    background: #fff;
    cursor: pointer; }
  #page .form-area input[type="radio"] + span, #page .form-area input[type="checkbox"] + span {
    width: calc(100% - 24px - 8px); }
  #page .form-area input[type="radio"] {
    border-radius: 25px; }
  #page .form-area input[type="radio"]:checked:after {
    position: absolute;
    content: "";
    top: 2.5px;
    left: 2.5px;
    width: 15px;
    height: 15px;
    border-radius: 25px;
    background-color: #0069AD; }
  #page .form-area input[type="checkbox"]:checked:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 3px;
    width: 12px;
    height: 7px;
    border-left: 2px solid #0069AD;
    border-bottom: 2px solid #0069AD;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  #page .form-area select {
    width: 120px;
    height: 50px;
    padding: 12px 16px;
    border-radius: 4px;
    background: url(./../../assets/img/icon/icon-arrow-b.svg) right 8px center/24px #F2F2F2 no-repeat; }
    #page .form-area select::placeholder {
      color: rgba(40, 34, 51, 0.2); }
  #page .form-area input.wpcf7-submit {
    width: 100%;
    max-height: 105px;
    padding: 40px;
    border-radius: 0;
    background: url(./../img/icon/icon-btn-arrow-w.svg) left calc(50% + 100px) center/32px no-repeat #0069AD;
    font-family: "Zen Kaku Gothic New", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 160%;
    color: #fff;
    cursor: pointer; }
  #page .form-area .hidden-fields-container {
    display: none; }
  #page .form-area .required {
    margin-left: 8px;
    padding-bottom: 3px;
    border-bottom: 1px solid #0069AD;
    font-style: normal;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: #0069AD; }
  #page .form-area .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-top: 12px; }
  #page .form-area .wpcf7-list-item {
    display: block;
    margin-top: 24px;
    margin-left: 2px; }
    #page .form-area .wpcf7-list-item.first {
      margin-top: 12px; }
  #page .form-area .wpcf7-list-item-label {
    margin-left: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 160%;
    letter-spacing: 0.02em; }
  #page .form-area .wpcf7-radio, #page .form-area .wpcf7-checkbox {
    display: block;
    margin-top: 24px; }
  #page .form-area .wpcf7-spinner {
    display: none; }
  #page .form-area .wpcf7-not-valid-tip {
    margin-top: 8px;
    font-weight: 500;
    color: #DD4444 !important; }
  #page .form-area .wpcf7 form.invalid .wpcf7-response-output, #page .form-area .wpcf7 form.unaccepted .wpcf7-response-output, #page .form-area .wpcf7 form.payment-required .wpcf7-response-output {
    padding: 16px;
    border: 1px solid #DD4444 !important;
    border-color: #DD4444 !important;
    font-style: normal;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: #DD4444; }
  #page .form-area .wpcf7 form .wpcf7-response-output {
    margin: 64px 0 0 0 !important; }
  #page .form-area .wpcf7 form.sent .wpcf7-response-output {
    border: none !important;
    background: #EBF4FF;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 240%;
    letter-spacing: 0.02em; }
  #page .form-area .wpcf7-form.sent .button input {
    opacity: 0.5;
    pointer-events: none; }
  #page .form-area .people {
    position: absolute;
    bottom: 12px;
    left: 128px;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 160%;
    letter-spacing: 0.02em; }
  #page .form-area .privacy label {
    justify-content: center; }
  #page .form-area .privacy input[type="checkbox"] + span {
    width: auto; }
  #page .form-area .privacy .wpcf7-list-item.first {
    margin-left: 0; }
  #page .form-area .button {
    display: flex;
    justify-content: center;
    position: relative;
    width: calc(100% + 112px);
    margin: 48px -56px -32px; }
    #page .form-area .button input {
      width: 100%;
      max-height: 105px;
      padding: 40px;
      border-radius: 0;
      background: url(./../img/icon/icon-btn-arrow-w.svg) left calc(50% + 100px) center/32px no-repeat #0069AD;
      font-family: "Zen Kaku Gothic New", serif;
      font-style: normal;
      font-weight: 500;
      font-size: 1rem;
      line-height: 160%;
      color: #fff;
      cursor: pointer; }
    @media screen and (max-width: 767.98px) {
      #page .form-area .button {
        width: calc(100% + 72px);
        margin: 48px -36px -32px; } }
  #page .form-area .button-line {
    text-align: center;
    font-size: 1rem; }
  #page .form-area .form-tab {
    display: flex;
    justify-content: space-between; }
    #page .form-area .form-tab li {
      z-index: 2;
      width: calc(50% - 3px);
      padding: 8px;
      border: 1px solid #0069AD;
      border-bottom: none;
      border-radius: 8px 8px 0 0;
      background: #0069AD;
      text-align: center;
      color: #fff; }
      #page .form-area .form-tab li label {
        justify-content: center;
        font-style: normal;
        font-weight: 500;
        font-size: 0.875rem;
        line-height: 160%; }
  #page .form-area .form {
    border: 1px solid #0069AD;
    border-radius: 8px;
    background: #fff;
    padding: 8px 0 0; }
  #page .form-area.tab .form-tab + .form, #page .form-area.tab .form-tab ~ .form {
    margin-top: -1.5px;
    padding: 9.5px 0 0; }
  #page .form-area.tab .form {
    display: none;
    border-radius: 0 0 8px 8px; }
  #page .form-area.tab .form-tab-input {
    display: none; }
  #page .form-area.tab #tab-individual:checked ~ #tab-content-individual,
  #page .form-area.tab #tab-corporation:checked ~ #tab-content-corporation {
    display: block; }
  #page .form-area.tab #tab-individual:checked ~ .form-tab .individual,
  #page .form-area.tab #tab-corporation:checked ~ .form-tab .corporation {
    background: #fff;
    color: #0069AD; }
  #page .form-area .group-people input[type="text"] {
    width: 120px; }
#page #contact ~ #contact-us,
#page #privacy ~ #contact-us,
#page #entry ~ #contact-us,
#page #detail ~ #contact-us {
  display: none; }
#page #contact #intro {
  text-align: center; }
  #page #contact #intro a {
    display: inline;
    color: #0069AD; }
  @media screen and (max-width: 499.98px) {
    #page #contact #intro {
      text-align: left; }
      #page #contact #intro br {
        display: none; }
      #page #contact #intro br.break {
        display: block !important; } }
#page #contact #faq {
  border: 8px solid #F7F4F0; }
  #page #contact #faq h3 {
    margin-bottom: 16px;
    padding-left: 40px;
    padding-right: 40px; }
  #page #contact #faq ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap; }
    #page #contact #faq ul li {
      width: calc(50% - 80px);
      margin: 24px 40px 0; }
  #page #contact #faq dl {
    border: 1px solid #D6C9B5; }
    #page #contact #faq dl dt {
      position: relative;
      padding: 16.5px 24px 16.5px 66px;
      background: #F7F4F0;
      font-style: normal;
      font-weight: 500;
      font-size: 14px;
      line-height: 160%;
      letter-spacing: 0.02em;
      color: #333333; }
      #page #contact #faq dl dt:after {
        content: 'Q';
        position: absolute;
        top: 0;
        left: 24px;
        width: 26px;
        height: 51px;
        font-family: "Lato", sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 2rem;
        line-height: 160%;
        letter-spacing: 0.05em;
        text-align: center;
        color: #333333; }
    #page #contact #faq dl dd {
      position: relative;
      padding: 14.5px 24px 14.5px 66px;
      font-style: normal;
      font-weight: 400;
      font-size: 14px;
      line-height: 160%;
      letter-spacing: 0.02em;
      color: #282233; }
      #page #contact #faq dl dd:after {
        content: 'A';
        position: absolute;
        top: 0;
        left: 24px;
        width: 26px;
        height: 51px;
        font-family: "Lato", sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 2rem;
        line-height: 160%;
        text-align: center;
        letter-spacing: 0.05em;
        color: #333333; }
  @media screen and (max-width: 1239.98px) {
    #page #contact #faq ul li {
      width: calc(50% - 60px); }
    #page #contact #faq ul li:nth-child(2n) {
      margin-left: 0; } }
  @media screen and (max-width: 999.98px) {
    #page #contact #faq ul li {
      width: 100%; }
    #page #contact #faq ul li:nth-child(2n) {
      margin-left: 40px; } }
  @media screen and (max-width: 767.98px) {
    #page #contact #faq h3 {
      padding-left: 20px;
      padding-right: 20px; }
    #page #contact #faq ul li {
      width: 100%;
      margin: 24px 20px 0; }
    #page #contact #faq ul li:nth-child(2n) {
      margin-left: 20px; }
    #page #contact #faq dl dt, #page #contact #faq dl dd {
      padding-left: 48px;
      padding-right: 14px; }
    #page #contact #faq dl dt:after, #page #contact #faq dl dd:after {
      top: 4px;
      left: 14px; } }
#page #contact #tel ul li {
  padding: 40px;
  border: 1px solid #0069AD;
  background: #fff; }
  #page #contact #tel ul li:nth-child(n+2) {
    margin-top: 24px; }
  #page #contact #tel ul li h5 {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0.02em; }
    #page #contact #tel ul li h5 span {
      display: inline-block;
      font-style: normal;
      font-weight: 400;
      font-size: 12px;
      line-height: 160%;
      letter-spacing: 0.02em; }
  #page #contact #tel ul li .number {
    display: block;
    width: 523px;
    height: 64px;
    margin: 16px 0 0 auto; }
  #page #contact #tel ul li span.tel-number {
    display: block;
    width: 100%;
    height: 100%;
    background: url("./../img/contact/tel.svg") center/100% no-repeat; }
  #page #contact #tel ul li span.fax-number {
    display: block;
    width: 100%;
    height: 100%;
    background: url("./../img/contact/fax.svg") center/100% no-repeat; }
  #page #contact #tel ul li .note {
    width: fit-content;
    margin: 16px 0 0 auto;
    padding-bottom: 3px;
    border-bottom: 1px solid #0069AD;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: #0069AD; }
  @media screen and (max-width: 1180px) {
    #page #contact #tel ul li .number {
      width: 424px;
      height: 51.885px;
      margin: 16px auto 0; } }
  @media screen and (max-width: 767.98px) {
    #page #contact #tel ul li {
      padding: 6.25%; }
      #page #contact #tel ul li .number {
        width: 400px;
        height: 48.948px; } }
  @media screen and (max-width: 499.98px) {
    #page #contact #tel ul li .number {
      width: 100%;
      margin: 8px auto 0; } }
#page #contact #form .content {
  padding-top: 24px;
  padding-left: 40px;
  padding-right: 40px;
  border: 1px solid #0069AD;
  background: #fff; }
  @media screen and (max-width: 767.98px) {
    #page #contact #form .content {
      padding-left: 20px;
      padding-right: 20px; } }
#page #contact #form-confirm h3 {
  margin-top: 12.8px;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 240%;
  letter-spacing: 0.02em; }
#page #contact #form-confirm .confirm-table {
  width: 100%;
  margin-top: 12.8px; }
  #page #contact #form-confirm .confirm-table tr {
    border-bottom: 1px solid rgba(40, 34, 51, 0.2); }
    #page #contact #form-confirm .confirm-table tr th {
      width: 250px;
      padding: 16px;
      text-align: left;
      font-style: normal;
      font-weight: 700;
      font-size: 14px;
      line-height: 200%;
      letter-spacing: 0.02em; }
    #page #contact #form-confirm .confirm-table tr td {
      width: calc(100% - 250px);
      padding: 16px 0;
      text-align: left;
      font-style: normal;
      font-weight: 400;
      font-size: 14px;
      line-height: 200%;
      letter-spacing: 0.02em; }
    @media screen and (max-width: 767.98px) {
      #page #contact #form-confirm .confirm-table tr th, #page #contact #form-confirm .confirm-table tr td {
        display: block;
        width: 100%; }
      #page #contact #form-confirm .confirm-table tr th {
        padding: 16px 16px 4px; }
      #page #contact #form-confirm .confirm-table tr td {
        padding: 0 16px 16px; } }
#page #contact #form-confirm .button {
  display: block;
  width: calc(100% + 80px);
  margin: 48px -40px -32px; }
  @media screen and (max-width: 767.98px) {
    #page #contact #form-confirm .button {
      width: calc(100% + 40px);
      margin: 48px -20px -32px; } }
#page #contact #form-confirm #back-btn {
  position: relative;
  padding: 30px 40px;
  background: url(./../img/icon/icon-btn-arrow-w-back.svg) left calc(50% - 100px) top 27px/32px no-repeat #0069AD; }
#page #contact #form-confirm input.wpcf7-submit {
  margin-top: 1px;
  padding: 30px 40px;
  background-position: left calc(50% + 100px) top 27px; }
