@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  letter-spacing: 0.1rem;
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
  border-top: 1px solid transparent;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul,
ol,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

p {
  margin: 0;
}

/* ブレークポイントの定義 */
/* mixinの定義 */
/* ---------------------
//  ベース
//  ---------------------*/
/* 変数の定義 */
html,
body {
  width: 100%;
  color: #111111;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "MS Pゴ シック", "MS PGothic", sans‐serif;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

@font-face {
  font-family: "avenir-ascii";
  src: local("Avenir");
  unicode-range: U+0000-00FF;
}
p,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  transition: 0.3s;
  opacity: 0.5;
}

img {
  vertical-align: bottom;
}

/* ---------------------
 共通コンテンツ
 ---------------------*/
@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp_only {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .pc_flex {
    display: none !important;
  }
}

.sp_flex {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp_flex {
    display: flex !important;
  }
}

/* ---------------------
 エラーページ
 ---------------------*/
.errors-page-main {
  padding: 48px 0 148px 0;
}
@media screen and (max-width: 768px) {
  .errors-page-main {
    padding: 40px 20px 80px 20px;
  }
}
.errors-page-main figure {
  width: 148px;
  margin: 0 auto 24px auto;
}
@media screen and (max-width: 768px) {
  .errors-page-main figure {
    width: 110px;
  }
}
.errors-page-main h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .errors-page-main h1 {
    font-size: 24px;
    line-height: 40px;
  }
}
.errors-page-main p {
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .errors-page-main p {
    text-align: justify;
  }
}

header {
  width: 100%;
}

.header-fix {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 8;
  background: #fff;
}

body.database .header-top-left .htl05 a {
  font-weight: 600;
}
body.database .header-top-left .htl05:after {
  opacity: 1;
}

body.service .header-top-left .htl01 a {
  font-weight: 600;
}
body.service .header-top-left .htl01:after {
  opacity: 1;
}

body.is-product-list .header-top-left .htl02 a, body.is-product-detail .header-top-left .htl02 a {
  font-weight: 600;
}
body.is-product-list .header-top-left .htl02:after, body.is-product-detail .header-top-left .htl02:after {
  opacity: 1;
}

.header-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.header-top-logo {
  width: 150px;
  display: flex;
  align-items: center;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .header-top-logo {
    width: 100%;
    height: 48px;
    justify-content: space-between;
    padding: 0 16px;
  }
  .header-top-logo .logo {
    width: 90px;
  }
}
.header-top .header-top-left {
  margin: 0 auto 0 40px;
}
.header-top .header-top-left ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-top .header-top-left ul li {
  height: 70px;
  position: relative;
}
.header-top .header-top-left ul li:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #000;
  opacity: 0;
}
.header-top .header-top-left ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  height: 100%;
  font-weight: 300;
}
.header-top .header-top-left ul li a img {
  width: 13px;
}
.header-top .header-top-left ul li a span {
  font-size: 12px;
  font-weight: 400;
  line-height: 20.4px;
  letter-spacing: 0.349999994px;
  color: #D94141;
}
.header-top .header-top-left ul li:hover:after {
  opacity: 1;
}
.header-top .header-top-right {
  display: flex;
  align-items: center;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .header-top .header-top-right {
    width: 100%;
  }
}
.header-top .header-top-right .header-report-area {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  padding: 15px 25px;
  gap: 24px;
  margin: 0;
}
.header-top .header-top-right .header-report-area dt {
  width: 120px;
}
.header-top .header-top-right .header-report-area dd {
  font-size: 14px;
}
.header-top .header-top-right .icon-text a {
  width: 100%;
  height: 70px;
  display: block;
  box-sizing: border-box;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .header-top .header-top-right .icon-text a {
    height: 40px;
    padding: 7px 0;
  }
}
.header-top .header-top-right .icon-text a dl {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  row-gap: 5px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .header-top .header-top-right .icon-text a dl {
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5px;
  }
}
.header-top .header-top-right .icon-text a dl dt {
  font-weight: 600;
  font-size: 14px;
  transition: ease 0.3s;
}
.header-top .header-top-right .icon-text a dl dd img {
  display: block;
}
.header-top .header-top-right .icon-text.sample-order {
  width: 160px;
}
.header-top .header-top-right .icon-text.sample-order a {
  background: #fff;
  border: 1px solid;
}
.header-top .header-top-right .icon-text.sample-order a:hover {
  background: #F0F0F0;
  border: 1px solid #111111;
  opacity: 0.7;
}
.header-top .header-top-right .icon-text.document-request {
  width: 130px;
}
@media screen and (max-width: 768px) {
  .header-top .header-top-right .icon-text.document-request {
    width: 50%;
  }
}
.header-top .header-top-right .icon-text.document-request a {
  background: #111111;
  border: 1px solid #111111;
}
.header-top .header-top-right .icon-text.document-request a dl dt {
  color: #fff;
}
.header-top .header-top-right .icon-text.document-request a:hover {
  opacity: 0.7;
}
.header-top .header-top-right .icon-text.ask-contact {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .header-top .header-top-right .icon-text.ask-contact {
    width: 50%;
  }
}
.header-top .header-top-right .icon-text.ask-contact a {
  background: #1f9970;
  border: 1px solid #1f9970;
}
.header-top .header-top-right .icon-text.ask-contact a dl dt {
  color: #fff;
}
.header-top .header-top-right .icon-text.ask-contact a:hover {
  opacity: 0.8;
}

.header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 32px;
  background: #f0f0f0;
  border-top: 1px solid #E5E5E5;
  height: 60px;
  border-bottom: 1px solid #E5E5E5;
}
.header-bottom nav {
  display: flex;
  align-items: center;
}
.header-bottom nav .menu-item {
  display: flex;
  flex-shrink: 0;
  height: 64px;
  padding-right: 30px;
}
.header-bottom nav .menu-item:nth-of-type(2):before {
  margin: auto;
  display: block;
  height: 30px;
  border-left: 1px solid #b2b2b2;
  content: "";
  padding-left: 30px;
}
.header-bottom nav .menu-item .bold a {
  font-weight: 600;
}
.header-bottom nav .menu-item_link {
  font-size: 14px;
  padding: 0 40px 0 0;
  position: relative;
}
.header-bottom nav .menu-item_link:last-child {
  padding: 0;
}
.header-bottom nav .menu-item_link.active-bar > a {
  position: relative;
}
.header-bottom nav .menu-item_link.active-bar > a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #111;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 17px;
}
.header-bottom nav .menu-item_link > p {
  font-weight: 600;
  display: flex;
  cursor: pointer;
  align-items: center;
  height: 100%;
}
.header-bottom nav .menu-item_link > p span {
  -webkit-transform: rotate(45deg);
  -webkit-transition: ease 0.3s;
  border: 0;
  border-bottom: solid 1px #111111;
  border-right: solid 1px #111111;
  content: "";
  height: 11px;
  margin-left: 8px;
  margin-top: -6px;
  transform: rotate(45deg);
  transition: ease 0.3s;
  width: 11px;
}
.header-bottom nav .menu-item_link > a {
  display: flex;
  align-items: center;
  font-weight: 600;
  height: 100%;
}
.header-bottom nav .menu-item_link > a > span {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.349999994px;
  margin-right: 5px;
  color: #D94141;
}
.header-bottom nav .menu-item_link .mylist-link {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  padding-bottom: 24px;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}
.header-bottom nav .menu-item_link .mylist-link img {
  width: 22px;
}
.header-bottom nav .menu-item_link.active > p span {
  transform: rotate(225deg);
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .header-bottom nav .menu-item_link.action .hover-menu {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .header-bottom nav .menu-item {
    width: 100%;
  }
  .header-bottom nav .menu-item .menu-item_link {
    width: 50%;
    padding: 0;
    border-bottom: 4px solid transparent;
    box-sizing: content-box;
  }
  .header-bottom nav .menu-item .menu-item_link > p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding-top: 4px;
  }
  .header-bottom nav .menu-item .menu-item_link > p:before {
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
  }
  .header-bottom nav .menu-item .menu-item_link.action {
    border-bottom: 4px solid #1F9970;
  }
}
.header-bottom .wood-notice {
  margin-left: 20px;
}
.header-bottom-right {
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-bottom-right .faq {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.header-bottom .signup-login {
  display: flex;
}
.header-bottom .signup-login a {
  padding: 3px 16px;
  font-size: 14px;
  font-weight: 600;
}
.header-bottom .signup-login a:first-of-type {
  border-right: 1px solid;
}
.header-bottom .signup-login a:last-of-type {
  padding: 3px 0 3px 16px;
}
.header-bottom .mypage-logout {
  position: relative;
  margin-left: auto;
  padding-left: 24px;
}
.header-bottom .mylist-link dl {
  margin: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.header-bottom .mylist-link dl dt {
  font-size: 11px;
  font-weight: 300;
  color: #111111;
}
.header-bottom .mylist-link dl dd {
  width: 25px;
}
.header-bottom .mylist-link dl dd img {
  display: block;
}

.hd-top {
  width: 100%;
  background: #111111;
  height: 75px;
  z-index: 6;
  position: fixed;
  top: 0px;
  left: 0px;
}
@media screen and (max-width: 768px) {
  .hd-top {
    height: 50px;
  }
}

.internal .hd-top {
  background: #1d6c50;
}
.internal .hd-top:before {
  position: fixed;
  left: 0;
  top: 0;
  content: "";
  width: 123px;
  height: 123px;
  background-image: url(../images/internal.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .internal .hd-top {
    height: auto;
  }
  .internal .hd-top:before {
    position: static;
    content: "社内版";
    background: #cd0000;
    width: 100%;
    height: auto;
    background-image: none;
    color: #fff;
    font-size: 12px;
    text-align: center;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .internal .hd-menu {
    top: 70px;
  }
}

.hd-inr {
  width: 1200px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .hd-inr {
    width: 100%;
    padding: 10px 15px;
  }
}
.hd-inr_bg {
  background: #111111;
}

.hd-bnr {
  width: 438px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd-bnr a {
  width: 49%;
}
.hd-bnr a img {
  width: 100%;
}

.hd-logo_img {
  width: 132px;
}
@media screen and (max-width: 768px) {
  .hd-logo_img {
    width: 100px;
    margin-right: 0;
  }
}
.hd-logo .hd-detail {
  border-radius: 3px;
  width: 154px;
  overflow: hidden;
}
.hd-logo .hd-detail a {
  line-height: 26px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 35px;
  color: #fff;
  display: block;
  width: 100%;
  background: #757575;
}

input[type=text] {
  width: 100%;
  padding: 5px 10px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.hd-input {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin-right: 15px;
}
.hd-input input {
  font-size: 12px;
  line-height: 25px;
  border: 1px solid #797979;
}
.hd-input_icon {
  position: absolute;
  top: 0px;
  right: 0px;
}
.hd-input_img {
  width: 36px;
  height: 36px;
  display: block;
}

.hd-icon {
  color: #fff;
  display: flex;
}
@media screen and (max-width: 768px) {
  .hd-icon {
    margin: 0 25px 0 auto;
  }
}
.hd-icon_text {
  font-size: 12px;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .hd-icon_text {
    width: 100px;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 3px 10px;
    text-align: center;
  }
}
.hd-icon_item {
  position: relative;
}
.hd-icon_signup {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hd-icon_signup .signup {
  height: 40px;
  border-radius: 20px;
  background: #fff;
}
.hd-icon_signup .signup a {
  text-align: center;
  padding: 9px 25px;
  display: block;
  color: #111111;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hd-icon_signup .signup a span {
  width: 20px;
  margin-right: 5px;
}
.hd-icon_signup .signup a span img {
  width: 100%;
}
.hd-icon_signup.first {
  margin-left: 30px;
}
.hd-icon_signup.first .signup {
  background: #1ea676;
}
.hd-icon_signup.first .signup a {
  color: #fff;
}
.hd-icon_info {
  padding-left: 20px;
}
.hd-icon_img {
  margin: 0 auto;
  width: 25px;
  height: 25px;
  text-align: center;
  margin-bottom: 5px;
}
.hd-icon_img img {
  width: 100%;
}
.hd-icon_count {
  background: #d50000;
  border-radius: 50%;
  display: inline-block;
  font-size: 11px;
  height: 19px;
  line-height: 20px;
  position: absolute;
  right: 7px;
  text-align: center;
  top: 0;
  width: 19px;
  border: 2px solid #111111;
}

.mypage-icon {
  position: relative;
}
.mypage-icon .mypage-container {
  position: absolute;
  width: 107px;
  top: 30px;
  left: 0;
  display: block;
  background-color: #fff;
  padding: 20px;
  box-shadow: 2px 2px 2px #aaa;
  display: none;
}
.mypage-icon .mypage-container li {
  color: #000;
  font-size: 11px;
}
.mypage-icon .mypage-container li:first-of-type {
  margin-bottom: 8px;
}
.mypage-icon:hover .mypage-container {
  display: block;
}

.header-news {
  display: flex;
}
.header-news h4 {
  color: #757575;
  font-size: 16px;
  padding-right: 20px;
  border-right: 1px solid #757575;
}
.header-news article {
  padding-left: 20px;
}
.header-news article a {
  color: #757575;
  font-size: 14px;
  width: 700px;
  /* 省略せずに表示するサイズを指定 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.hd-menu {
  background: #fff;
  display: flex;
  height: 40px;
  z-index: 5;
  position: fixed;
  width: 100%;
  top: 75px;
  left: 0px;
  box-shadow: 2px 2px 2px #ddd;
}
@media screen and (max-width: 768px) {
  .hd-menu {
    margin-top: 0;
    position: fixed;
    top: 50px;
    width: 100%;
    z-index: 5;
  }
  .hd-menu .hd-inr {
    padding: 0;
  }
}
.hd-menu .menu-item {
  display: flex;
  width: 100%;
}
.hd-menu .menu-item_link {
  font-size: 14px;
  padding: 0 40px 0 0;
  position: relative;
}
.hd-menu .menu-item_link:last-child {
  padding: 0;
}
.hd-menu .menu-item_link > p {
  font-weight: 500;
  display: flex;
  cursor: pointer;
}
.hd-menu .menu-item_link > p span {
  -webkit-transform: rotate(45deg);
  -webkit-transition: ease 0.3s;
  border: 0;
  border-bottom: solid 1px #111111;
  border-right: solid 1px #111111;
  content: "";
  height: 11px;
  margin-left: 8px;
  margin-top: 2px;
  transform: rotate(45deg);
  transition: ease 0.3s;
  width: 11px;
}
.hd-menu .menu-item_link.active > p span {
  transform: rotate(225deg);
  border-bottom: solid 1px #1f9970;
  border-right: solid 1px #1f9970;
  margin-top: 8px;
}
.hd-menu .menu-item_link .bnr {
  width: 331px;
  display: block;
  margin-bottom: 20px;
}
.hd-menu .menu-item_link .bnr:last-child {
  margin-bottom: 0;
}
.hd-menu .menu-item_link .bnr img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hd-menu .menu-item_link.action .hover-menu {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .hd-menu .menu-item {
    width: 100%;
  }
  .hd-menu .menu-item .menu-item_link {
    width: 50%;
    padding: 0;
    border-bottom: 4px solid transparent;
    box-sizing: content-box;
  }
  .hd-menu .menu-item .menu-item_link > p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding-top: 4px;
  }
  .hd-menu .menu-item .menu-item_link > p:before {
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
  }
  .hd-menu .menu-item .menu-item_link.action {
    border-bottom: 4px solid #1F9970;
  }
  .hd-menu .mil1 {
    position: relative;
  }
  .hd-menu .mil1 .sp-bnr {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
  .hd-menu .mil1 .sp-bnr img {
    width: 100%;
  }
  .hd-menu .mil1 .sp-bnr:last-of-type {
    margin-bottom: 0;
  }
  .hd-menu .mil1 > p:before {
    background-image: url(../images/icon/icon_shiryo.svg);
  }
  .hd-menu .mil1:after {
    position: absolute;
    right: 0;
    top: 11px;
    width: 1px;
    height: 20px;
    content: "";
    background: #b2b2b2;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .hd-menu .mil1 {
    order: -1;
  }
  .hd-menu .mil1 h2 p:before {
    background-image: url(../images/icon/icon_shiryo.svg);
  }
}
@media screen and (max-width: 768px) {
  .hd-menu .mil2 > p:before {
    background-image: url(../images/top/icon_consult.svg);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .hd-menu .mil2 h2 p:before {
    background-image: url(../images/top/icon_consult.svg);
  }
  .hd-menu .mil2 .btn2:before {
    background: url(../images/icon/icon_mail-w.svg);
  }
}

@media screen and (max-width: 768px) {
  .internal .hover-menu {
    top: 110px;
  }
}

.hover-menu {
  margin: 0 auto;
  display: none;
  position: absolute;
  background: #fff;
  left: 0px;
  box-shadow: 0px 2px 4px #b2b2b2;
  z-index: 10;
}
.hover-menu.normal-menu {
  width: 150px;
  left: -50px;
}
.hover-menu.normal-menu .hover-menu_cover a {
  display: block;
  font-size: 14px;
}
.hover-menu.normal-menu .hover-menu_cover a:first-of-type {
  margin-bottom: 10px;
}
.hover-menu.open {
  display: block;
}
@media screen and (max-width: 768px) {
  .hover-menu {
    position: fixed;
    box-shadow: none;
    width: 100%;
    display: block;
    height: 0;
    overflow: hidden;
    transition: ease 0.3s;
    top: 90px;
    background: #e5e5e5;
  }
  .hover-menu h2 {
    margin-bottom: 16px;
  }
  .hover-menu h2 p {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
  }
  .hover-menu h2 p:before {
    content: "";
    width: 21px;
    height: 21px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
  }
  .hover-menu h2 p .batsu {
    width: 17px;
    display: block;
    margin: -3px 0 0 auto;
  }
  .hover-menu h2 p .batsu img {
    width: 100%;
    display: block;
  }
  .hover-menu .hd-input {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: 16px;
  }
  .hover-menu .hd-input input {
    font-size: 12px;
    line-height: 25px;
  }
  .hover-menu .hd-input_icon {
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .hover-menu .hd-input_img {
    width: 35px;
    height: 35px;
  }
}
.hover-menu_cover {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .hover-menu_cover {
    padding: 24px 16px;
  }
}
.hover-menu_search01 {
  padding-top: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .hover-menu_search01 {
    padding-bottom: 0;
  }
}
.hover-menu_search01 .filter {
  margin: 10px 0 0 50%;
}
.hover-menu_search01 .filter a {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.1em;
  color: #1f9970;
}
@media screen and (max-width: 768px) {
  .hover-menu_search01 .filter {
    margin: 0;
    width: 48%;
  }
  .hover-menu_search01 .filter a {
    width: 100%;
    padding: 5px;
    color: #fff;
    display: block;
    text-align: center;
    background: #757575;
    border-radius: 5px;
  }
}
.hover-menu_search03 .filter2 {
  width: 154px;
  height: 35px;
  background: #757575;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  border-radius: 5px;
  margin-top: 10px;
}
.hover-menu .banner-list li {
  width: 320px;
  margin-bottom: 10px;
}
.hover-menu .banner-list li a img {
  width: 100%;
}
.hover-menu_search02 {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.hover-menu_tell {
  padding: 10px 30px;
  background: #e5f6ef;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .hover-menu_tell {
    padding: 0px 16px;
    background: transparent;
    margin-bottom: 24px;
  }
  .hover-menu_tell dl {
    justify-content: center;
  }
  .hover-menu_tell p {
    text-align: center;
    color: #111111;
  }
}
.hover-menu_tell dl {
  margin: 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .hover-menu_tell dl {
    margin-bottom: 10px;
  }
}
.hover-menu_tell dl dt {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.1em;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .hover-menu_tell dl dt {
    color: #1f9970;
  }
}
.hover-menu_tell dl dd {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.1em;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .hover-menu_tell dl dd {
    font-size: 24px;
    font-weight: 600;
    color: #1f9970;
    pointer-events: auto;
  }
}
.hover-menu_tell p {
  font-size: 11px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1em;
  color: #757575;
}
.hover-menu_title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}
.hover-menu.soudan h3 {
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .hover-menu.soudan h3 {
    padding: 0px 16px 0px 16px;
    font-size: 12px;
    text-align: center;
  }
}
.hover-menu.shiryo h3 {
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .hover-menu.shiryo h3 {
    padding: 0px 16px 0px 16px;
    font-size: 12px;
    text-align: center;
  }
}
.hover-menu .hover-list {
  width: 345px;
}
@media screen and (max-width: 768px) {
  .hover-menu .hover-list {
    width: 100%;
    margin-bottom: 15px;
  }
}
.hover-menu .hover-list li {
  margin-bottom: 15px;
}
.hover-menu .hover-list li:last-of-type {
  margin-bottom: 0;
}
.hover-menu .hover-list li a {
  display: flex;
  align-items: center;
}
.hover-menu .hover-list li a .img {
  width: 45px;
  height: 45px;
  border-radius: 3px;
  background: #e5e5e5;
  transition: ease 0.3s;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hover-menu .hover-list li a .img span {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: ease 0.3s;
}
.hover-menu .hover-list li a .txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1em;
  transition: ease 0.3s;
}
.hover-menu .hover-list li a .txt span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1em;
  color: #757575;
}
.hover-menu .hover-list li a:hover {
  opacity: 1;
}
.hover-menu .hover-list li a:hover .img {
  background: #1f9970;
}
.hover-menu .hover-list li a:hover .txt {
  color: #1f9970;
}
@media screen and (max-width: 768px) {
  .hover-menu .hover-list li a {
    background: #fff;
    padding: 5px;
    border-radius: 5px;
  }
  .hover-menu .hover-list li a .img {
    width: 30px;
    height: 30px;
    background: #fff;
    transition: ease 0.3s;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hover-menu .hover-list li a .img span {
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: ease 0.3s;
  }
  .hover-menu .hover-list li a .txt {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1em;
    transition: ease 0.3s;
  }
  .hover-menu .hover-list li a .txt span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.1em;
    color: #757575;
  }
  .hover-menu .hover-list li a:hover {
    background: #1f9970;
  }
  .hover-menu .hover-list li a:hover .img {
    background: #1f9970;
  }
  .hover-menu .hover-list li a:hover .txt {
    color: #fff;
  }
}
.hover-menu .hover-list li.sc01 .img span {
  background: url(../images/icon/icon_flooring-b.svg);
}
.hover-menu .hover-list li.sc01:hover .img span {
  background: url(../images/icon/icon_flooring-w.svg);
}
.hover-menu .hover-list li.sc02 .img span {
  background: url(../images/icon/icon_Paneling-b.svg);
}
.hover-menu .hover-list li.sc02:hover .img span {
  background: url(../images/icon/icon_Paneling-w.svg);
}
.hover-menu .hover-list li.sc03 .img span {
  background: url(../images/icon/icon_deck-b.svg);
}
.hover-menu .hover-list li.sc03:hover .img span {
  background: url(../images/icon/icon_deck-w.svg);
}
.hover-menu .hover-list li.sc04 .img span {
  background: url(../images/icon/icon_wall-b.svg);
}
.hover-menu .hover-list li.sc04:hover .img span {
  background: url(../images/icon/icon_wall-w.svg);
}
.hover-menu .hover-list li.sc05 .img span {
  background: url(../images/icon/icon_zousakuzai-b.svg);
}
.hover-menu .hover-list li.sc05:hover .img span {
  background: url(../images/icon/icon_zousakuzai-w.svg);
}
.hover-menu .hover-list li.sc06 .img span {
  background: url(../images/icon/icon_oneboard-b.svg);
}
.hover-menu .hover-list li.sc06:hover .img span {
  background: url(../images/icon/icon_oneboard-w.svg);
}
.hover-menu .hover-list li.wood .img span {
  background-image: url(../images/icon/icon_wood-b.svg);
}
.hover-menu .hover-list li.wood:hover .img span {
  background-image: url(../images/icon/icon_wood-w.svg);
}
.hover-menu .hover-list li.report .img span {
  background-image: url(../images/icon/icon_report-b.svg);
}
.hover-menu .hover-list li.report:hover .img span {
  background-image: url(../images/icon/icon_report-w.svg);
}
.hover-menu .hover-list li.case .img span {
  background: url(../images/icon/icon_jirei-b.svg);
}
.hover-menu .hover-list li.case:hover .img span {
  background: url(../images/icon/icon_jirei-w.svg);
}
.hover-menu .hover-list li.special .img span {
  background: url(../images/icon/icon_tokusyu-b.svg);
}
.hover-menu .hover-list li.special:hover .img span {
  background: url(../images/icon/icon_tokusyu-w.svg);
}
.hover-menu .hover-list li.contact .img span {
  background: url(../images/icon/icon_mail-b.svg);
}
.hover-menu .hover-list li.contact:hover .img span {
  background: url(../images/icon/icon_mail-w.svg);
}
.hover-menu .hover-list li.h_blog .img span {
  background: url(../images/icon/icon_blog-b.svg);
}
.hover-menu .hover-list li.h_blog:hover .img span {
  background: url(../images/icon/icon_blog-w.svg);
}
.hover-menu .hover-list li.hojyokin .img span {
  background: url(../images/icon/icon_hojokin-b.svg);
}
.hover-menu .hover-list li.hojyokin:hover .img span {
  background: url(../images/icon/icon_hojokin-w.svg);
}
.hover-menu .hover-list li.fsc .img span {
  background: url(../images/icon/icon_fsc-b.svg);
}
.hover-menu .hover-list li.fsc:hover .img span {
  background: url(../images/icon/icon_fsc-w.svg);
}
.hover-menu .hover-list li.about .img span {
  background: url(../images/icon/icon_about-b.svg);
}
.hover-menu .hover-list li.about:hover .img span {
  background: url(../images/icon/icon_about-w.svg);
}
.hover-menu .hover-list li.beginner .img span {
  background: url(../images/icon/icon_beginner-b.svg);
}
.hover-menu .hover-list li.beginner:hover .img span {
  background: url(../images/icon/icon_beginner-w.svg);
}
.hover-menu .hover-list li.riyo-guide .img span {
  background: url(../images/icon/icon_guide-b.svg);
}
.hover-menu .hover-list li.riyo-guide:hover .img span {
  background: url(../images/icon/icon_guide-w.svg);
}
.hover-menu .hover-list li.coordinate .img span {
  background: url(../images/icon/icon_coordinator-b.svg);
}
.hover-menu .hover-list li.coordinate:hover .img span {
  background: url(../images/icon/icon_coordinator-w.svg);
}
.hover-menu .hover-list.search_cate {
  display: grid;
  grid-template-columns: 50% 50%;
}
.hover-menu .hover-list.search_cate li:nth-of-type(5) {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .hover-menu .hover-list.search_cate {
    grid-template-columns: 48% 48%;
    -moz-column-gap: 4%;
         column-gap: 4%;
  }
}

/* hamburger overlay */
.hamburger {
  width: 32px;
  height: 32px;
}

.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  cursor: pointer;
  padding: 0;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 24px;
  height: 16px;
  float: right;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 7px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.active .menu-trigger span:nth-of-type(3) {
  display: none !important;
}

.active .menu-trigger {
  transform: rotate(360deg);
}

.active .menu-trigger span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}

.active .menu-trigger span:nth-of-type(2) {
  transform: translateY(0) rotate(45deg);
}

.active .menu-trigger span:nth-of-type(3) {
  /*opacity: 0;*/
  display: flex;
}

.overlay {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.5);
  transition: ease 0.3s;
}

.active .overlay {
  opacity: 1;
  pointer-events: auto;
}

.active2 .overlay {
  opacity: 1;
  pointer-events: auto;
}

header .navigation-content {
  position: fixed;
  background: #f9f9f9;
  top: -220%;
  left: 0;
  width: 100%;
  transition: ease 0.6s;
  z-index: 5;
  padding: 0;
  box-sizing: content-box;
  background: #fff;
}

body.active .navigation-content {
  top: 48px;
}

.hamburger-content-inner {
  overflow: scroll;
  height: 100%;
  padding: 0;
}

body.active {
  overflow: hidden;
}

.internal .navigation-content {
  top: 70px;
}

.active .navigation-content {
  box-shadow: 0 10px 10px rgba(0, 26, 99, 0.2);
  height: 80vh;
}

.navigation-content {
  border-top: 1px solid #b2b2b2;
}
.navigation-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  margin-top: 30px;
}
.navigation-content .btn.green {
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation-content .hb-tell-area h5 {
  font-size: 14px;
  text-align: center;
}
.navigation-content .hb-tell-area dl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.navigation-content .hb-tell-area dl dt {
  font-size: 16px;
  font-weight: 500;
}
.navigation-content .hb-tell-area dl dd {
  font-size: 24px;
  font-weight: 500;
  color: #1f9970;
}
.navigation-content .hb-tell-area p.time {
  text-align: center;
  width: 100%;
}
.navigation-content h3,
.navigation-content li,
.navigation-content p {
  font-size: 14px;
}
.navigation-content h3 a,
.navigation-content li a,
.navigation-content p a {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1em;
  padding: 10px 16px;
}
.navigation-content .hb-bnr {
  padding: 0 15px;
}
.navigation-content .hb-bnr a {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.navigation-content .hb-bnr a img {
  width: 100%;
}
.navigation-content .hb-bnr2 {
  padding: 10px 15px;
}
.navigation-content .hb-bnr2 a {
  width: 100%;
  display: block;
  border: 1px solid #b2b2b2;
}
.navigation-content .hb-bnr2 a img {
  width: 100%;
}
.navigation-content .signup-login {
  display: flex;
  padding: 12px 0;
  border-top: 1px solid #b2b2b2;
  border-bottom: 1px solid #b2b2b2;
}
.navigation-content .signup-login a {
  width: 50%;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.navigation-content .signup-login a:first-of-type {
  border-right: 1px solid #757575;
}
.navigation-content .go-mylist a {
  display: flex;
  align-items: center;
}
.navigation-content .go-mylist a:before {
  content: "";
  width: 20px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background: url(../images/icon/icon_mylist-b.svg);
  margin-right: 10px;
}
.navigation-content .go-mylist2 {
  border-top: 1px solid #b2b2b2;
  border-bottom: 1px solid #b2b2b2;
}
.navigation-content .go-mylist2 a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}
.navigation-content .go-mylist2 a:before {
  content: "";
  width: 22px;
  height: 18px;
  background: url(../images/common/icon_mypage.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}
.navigation-content .go-mylist3 a {
  display: flex !important;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}
.navigation-content .go-mylist3 a:before {
  content: "";
  width: 22px;
  height: 18px;
  background: url(../images/common/icon_mylist.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}
.navigation-content .parent > li {
  border-bottom: 1px solid #b2b2b2;
}
.navigation-content .parent > li.etree-report-link {
  background: #f0f0f0;
}
.navigation-content .parent > li.etree-report-link a {
  display: flex;
  gap: 10px;
  color: #111;
}
.navigation-content .parent > li.etree-report-link.first {
  padding: 4px 0;
  border-top: 1px solid #b2b2b2;
}
.navigation-content .parent > li.etree-report-link.last {
  border-bottom: 1px solid #b2b2b2;
}
.navigation-content .parent > li .direct {
  padding: 10px 15px;
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.navigation-content .parent > li .direct span {
  background: #F2DADA;
  color: #CD0000;
  font-size: 11px;
  line-height: 11px;
  padding: 3px 5px;
  margin-right: 5px;
}
.navigation-content .parent > li .acc-btn {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: normal;
}
.navigation-content .parent > li .acc-btn span {
  -webkit-transform: rotate(45deg);
  -webkit-transition: ease 0.3s;
  border: 0;
  border-bottom: solid 1px #111111;
  border-right: solid 1px #111111;
  content: "";
  height: 11px;
  margin-left: 2px;
  margin-top: 2px;
  transform: rotate(45deg);
  transition: ease 0.3s;
  width: 11px;
}
.navigation-content .parent > li .acc-btn.action span {
  transform: rotate(225deg);
  margin-top: 2px;
}
.navigation-content .parent > li.acc-selection ul {
  padding: 15px 15px 15px 25px;
}
.navigation-content .parent > li.acc-selection ul li {
  margin-bottom: 10px;
}
.navigation-content .parent > li.acc-selection ul li a {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
}
.navigation-content .parent > li.acc-selection ul li img {
  width: 100%;
  display: block;
}
.navigation-content .parent > li.acc-selection ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  top: 0;
}
.navigation-content .parent > li.acc-cover h2 a {
  font-size: 14px;
  padding: 10px 15px;
  display: block;
  width: 100%;
}
.navigation-content .parent > li.acc-cover h3 {
  font-size: 14px;
  color: #757575;
  font-weight: 600;
  padding: 10px 15px 10px 25px;
  border-top: 1px solid #e5e5e5;
}
.navigation-content .parent > li.acc-normal h3 {
  font-size: 14px;
  color: #757575;
  font-weight: 600;
  margin-bottom: 5px;
  border-top: 1px solid #e5e5e5;
}
.navigation-content .parent > li.acc-normal ul li a {
  padding: 10px 15px 10px 25px;
  font-size: 14px;
  display: block;
  font-weight: 600;
}
.navigation-content .parent > li.acc-normal ul li a span {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.349999994px;
  color: #D94141;
  margin-right: 5px;
}
.navigation-content .parent > li.acc-normal ul.has-border li {
  border-top: 1px solid #e5e5e5;
}
.navigation-content .parent > li.acc-normal .useful-info {
  opacity: 1;
  font-weight: 600;
}
.navigation-content .parent > li .acc-content h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.1em;
}
.navigation-content .parent > li .acc-content h3 a {
  padding: 10px 15px 10px 25px;
  color: #111;
  display: block;
  font-weight: 600;
}
.navigation-content .btn.text-green {
  margin-top: 15px;
}
.navigation-content .link {
  margin: 20px auto 0 auto;
  display: flex;
  justify-content: right;
  align-items: center;
  color: #1f9970;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.1em;
  width: 170px;
}
.navigation-content .link:before {
  content: "▶︎";
  display: block;
}
.navigation-content .hamburger-logout {
  margin-top: 30px;
  padding: 10px;
  border-top: 1px solid #e5e5e5;
  color: #757575;
}
.navigation-content .hamburger-logout a {
  display: block;
  text-align: center;
}

/* hamburger overlay end */
.certification-lp-bottom {
  width: 1200px;
  margin: 0 auto;
  display: block;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .certification-lp-bottom {
    width: calc(100% - 40px);
    padding: 40px 0;
  }
}

.certification-lp-bottom a {
  width: 100%;
  display: block;
}

.certification-lp-bottom a img {
  width: 100%;
  display: block;
}

.news-bottom-bnr {
  width: 1200px;
  margin: 0 auto;
  display: block;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .news-bottom-bnr {
    width: calc(100% - 40px);
    padding: 40px 0;
  }
}
.news-bottom-bnr a {
  width: 100%;
  display: block;
}
.news-bottom-bnr a img {
  width: 100%;
  display: block;
}

.footer {
  background: #111111;
}
@media screen and (max-width: 768px) {
  .footer {
    background: none;
  }
}

.space {
  content: "";
  height: 20px;
  width: 100%;
}

.footer-content {
  background: #111111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
  padding: 50px 0 30px 0;
}
.footer-content .left {
  width: 800px;
  display: flex;
  justify-content: space-between;
}
.footer-content .left .menu:last-of-type {
  margin-right: 0;
}
.footer-content .left .menu-title {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 4px;
  padding-bottom: 8px;
  font-weight: 500;
  border-bottom: 1px solid #757575;
}
.footer-content .left .menu-link {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
}
.footer-content .right {
  width: 300px;
}
.footer-content .right p.p1 {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 10px;
}
.footer-content .right .btn2 {
  width: 100%;
  margin-bottom: 30px;
}
.footer-content .right .btn2::before {
  background: url("../images/icon/icon_mail-w.svg");
}
.footer-content .right .tell-contact {
  margin-bottom: 40px;
}
.footer-content .right .tell-contact h4 {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1em;
  color: #fff;
}
.footer-content .right .tell-contact dl {
  display: flex;
  align-items: center;
  margin: 0;
}
.footer-content .right .tell-contact dl dt {
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.1em;
  color: #fff;
  margin-right: 10px;
}
.footer-content .right .tell-contact dl dd {
  font-size: 24px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0.1em;
  color: #fff;
  font-family: Arial, "Liberation Sans", "Nimbus Sans L", sans-serif;
}
.footer-content .right .tell-contact p {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1em;
  color: #fff;
}
.footer-content .right .footer-fsc {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer-content .right .footer-fsc {
    width: 260px;
    margin: 0 auto;
  }
}
.footer-content .right .footer-fsc figure {
  width: 33%;
}
.footer-content .right .footer-fsc figure img {
  width: 100%;
}
.footer-content .right .footer-fsc p {
  width: 55%;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: justify;
}
.footer-content .sns {
  width: 100%;
}
.footer-content .sns_cover {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  width: 100px;
}
.footer-content .sns_cover-icon {
  width: 30px;
  text-align: center;
}
.footer-content .sns_cover-icon .twitter {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .footer-content {
    width: 100%;
    background: none;
    flex-wrap: wrap;
    padding: 0;
  }
  .footer-content .left {
    width: 100%;
    flex-wrap: wrap;
  }
  .footer-content .left .menu {
    width: 100%;
  }
  .footer-content .left .menu-title {
    margin-bottom: 0px;
    background: #e5e5e5;
    color: #111;
    padding: 5px 15px;
    border-bottom: 1px solid #b2b2b2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .footer-content .left .menu-title span {
    -webkit-transform: rotate(45deg);
    -webkit-transition: ease 0.3s;
    border: 0;
    border-bottom: solid 1px #111111;
    border-right: solid 1px #111111;
    content: "";
    height: 11px;
    margin-left: -4px;
    margin-top: -4px;
    transform: rotate(45deg);
    transition: ease 0.3s;
    width: 11px;
  }
  .footer-content .left .menu-title.action span {
    transform: rotate(225deg);
    margin-top: 0px;
  }
  .footer-content .left .menu-item {
    padding: 10px 0;
  }
  .footer-content .left .menu-link {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #1f9970;
    padding: 10px 15px;
    width: 100%;
  }
  .footer-content .right {
    width: 100%;
    background: #111;
    padding: 40px 15px 50px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-content .right .btn2 {
    width: 265px;
    margin-bottom: 30px;
  }
  .footer-content .right .btn2::before {
    background: url("../images/icon/icon_mail-w.svg");
  }
  .footer-content .sns {
    background: #111;
  }
  .footer-content .sns_cover {
    width: 150px;
    margin: 0 auto 40px auto;
  }
}

.footer-end-content {
  display: flex;
  justify-content: space-around;
  border-top: 2px solid #757575;
  padding-top: 12px;
  margin: 0 auto;
  width: 1200px;
}
@media screen and (max-width: 768px) {
  .footer-end-content {
    padding-top: 0;
    border-top: none;
    width: 100%;
  }
}
.footer-end-content .copyright {
  background: #111111;
  color: #fff;
  font-size: 10px;
  margin: 0 auto;
  padding: 0 0 22px 0;
  text-align: right;
  width: 1200px;
}
@media screen and (max-width: 768px) {
  .footer-end-content .copyright {
    width: 100%;
    text-align: center;
  }
}

.footer-mail-tell {
  padding: 60px 0;
  border-top: 1px solid #E5E5E5;
}
.footer-mail-tell h3 {
  text-align: center;
  margin: 0 0 auto 32px;
  font-weight: 600;
  font-size: 23px;
}
.footer-mail-tell .container {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 32px auto;
}
.footer-mail-tell .container a.mail {
  color: white;
  vertical-align: middle;
  display: block;
  background-color: #1f9970;
  width: 400px;
  height: 120px;
  text-align: center;
  padding: 20px 0px;
  border-radius: 60px;
}
.footer-mail-tell .container a.mail p {
  padding-top: 8px;
  font-weight: 600;
  font-size: 20px;
}
.footer-mail-tell .container .tell {
  vertical-align: middle;
  display: block;
  width: 400px;
  height: 120px;
  text-align: center;
  padding: 8px 0px;
  border: 1px solid #111111;
  border-radius: 60px;
}
.footer-mail-tell .container .tell .p1 {
  font-weight: 600;
  font-size: 24px;
  margin: 4px;
}
.footer-mail-tell .container .tell .p2 {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .footer-mail-tell-sp {
    padding: 40px 0;
  }
  .footer-mail-tell-sp h3 {
    text-align: center;
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 20px;
    line-height: 170%;
  }
  .footer-mail-tell-sp a img {
    margin-top: 14px;
  }
  .footer-mail-tell-sp .mail {
    color: white;
    vertical-align: middle;
    display: block;
    background-color: #1f9970;
    width: 343px;
    height: 120px;
    text-align: center;
    padding: 16px 0px;
    border-radius: 60px;
    margin: 24px auto;
  }
  .footer-mail-tell-sp .mail p {
    font-weight: 600;
    font-size: 20px;
    line-height: 170%;
    margin-top: 8px;
  }
  .footer-mail-tell-sp .tell {
    vertical-align: middle;
    display: block;
    width: 343px;
    height: 120px;
    text-align: center;
    padding: 8px 0px;
    border: 1px solid #111111;
    border-radius: 60px;
    margin: auto;
  }
  .footer-mail-tell-sp .tell .p1 {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    margin-top: 10px;
  }
  .footer-mail-tell-sp .tell .p2 {
    margin-top: 8px;
    font-weight: 300;
    font-size: 12px;
  }
}
.footer-bnr {
  background: #f0f0f0;
  padding: 50px 0;
}

.footer-bnr-list {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-bnr-list:after {
  content: "";
  display: block;
  width: 385px;
}

.footer-bnr-block {
  width: 385px;
  margin-bottom: 20px;
}

.footer-bnr-block .comment {
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  color: #111;
  text-align: center;
}

.footer-bnr-block figure {
  width: 100%;
  display: block;
}

.footer-bnr-block figure img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 768px) {
  .footer-bnr {
    background: #f0f0f0;
    padding: 30px 20px;
  }
  .footer-bnr-list {
    width: 100%;
  }
  .footer-bnr-block {
    width: 100%;
  }
}
.for-shipper-request {
  border: 2px solid #E5E5E5;
  width: 832px;
  margin: 0px auto 64px;
}
.for-shipper-request .for-shipper-request-title {
  margin: 40px auto 16px;
  /* JP/H2 (20px) Bold */
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 600;
  font-size: 20px;
  line-height: 170%;
  /* ボックスの高さと同一、または34px */
  text-align: center;
  letter-spacing: 0.1em;
}
.for-shipper-request .for-shipper-request-description {
  margin-bottom: 16px;
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 300;
  font-size: 16px;
  line-height: 200%;
  /* または32px */
  text-align: center;
  letter-spacing: 0.1em;
}
.for-shipper-request .btn {
  margin: 16px auto 40px;
}

@media screen and (max-width: 768px) {
  .for-shipper-request {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
    padding: 16px;
  }
  .for-shipper-request .btn {
    margin: 16px 0px;
    width: 100%;
  }
}
.top-page .en-title {
  display: inline-block;
  font-size: 13px;
  line-height: 26px;
  background: linear-gradient(transparent 60%, #36b289 60%);
  margin-bottom: 10px;
}
.top-page h2 {
  font-size: 24px;
  line-height: 40px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .top-page h2 {
    font-size: 20px;
    line-height: 34px;
  }
}
.top-page .title-area {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top-page .title-area {
    width: 100%;
    padding: 0 20px;
  }
}

.selection-article {
  border: 1px solid #e5e5e5;
  margin-right: -1px;
  margin-bottom: -1px;
}
.selection-article a picture {
  width: 100%;
  display: block;
}
.selection-article a picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.selection-article a .text {
  padding: 10px;
  height: 144px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .selection-article a .text {
    height: auto;
  }
}
.selection-article a .text h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 10px;
}
.selection-article a .text p {
  font-size: 14px;
  color: #111;
}

#fv {
  margin-bottom: 50px;
  padding-top: 32px;
}
@media screen and (max-width: 768px) {
  #fv {
    margin-bottom: 30px;
  }
}
#fv .container {
  position: relative;
}
#fv .container .cover-text {
  position: absolute;
  top: 0;
  left: calc(30.3% + 3px);
  height: 520px;
  width: calc(30.3% - 8px);
  background: #fff;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15px;
  border: 10px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  #fv .container .cover-text {
    position: static;
    width: 100%;
    height: auto;
    border: none;
    padding: 8px 20px 40px;
  }
}
#fv .container .cover-text h1 {
  font-size: 24px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  display: block;
}
@media screen and (max-width: 768px) {
  #fv .container .cover-text h1 {
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 10px;
  }
}
#fv .container .cover-text p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #fv .container .cover-text p {
    margin-bottom: 10px;
  }
}
#fv .container .cover-text .btn {
  margin: 0 auto;
}
#fv .fv-swiper {
  height: 520px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #fv .fv-swiper {
    height: 345px;
  }
}
#fv .fv-swiper .swiper-slide {
  position: relative;
}
#fv .fv-swiper .swiper-slide picture {
  width: 100%;
  height: 520px;
  display: block;
  position: relative;
}
#fv .fv-swiper .swiper-slide picture:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  #fv .fv-swiper .swiper-slide picture {
    height: 345px;
  }
}
#fv .fv-swiper .swiper-slide picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#fv .fv-swiper .swiper-slide .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  height: 128px;
}
@media screen and (max-width: 768px) {
  #fv .fv-swiper .swiper-slide .text {
    padding: 15px;
    height: 148px;
  }
}
#fv .fv-swiper .swiper-slide .text h3 {
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #fv .fv-swiper .swiper-slide .text h3 {
    font-size: 16px;
    line-height: 32px;
  }
}
#fv .fv-swiper .swiper-slide .text p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
#fv .fv-button-prev {
  position: absolute;
  top: 38%;
  left: 0;
  z-index: 4;
  cursor: pointer;
}
#fv .fv-button-prev:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  #fv .fv-button-prev {
    display: none;
  }
}
#fv .fv-button-next {
  position: absolute;
  top: 38%;
  right: 0;
  z-index: 4;
  cursor: pointer;
}
#fv .fv-button-next:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  #fv .fv-button-next {
    display: none;
  }
}

#top-portal {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #top-portal {
    padding-bottom: 48px;
  }
}
#top-portal .container {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top-portal .container {
    width: 100%;
    padding: 0 20px;
  }
}
#top-portal .container.portal-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  #top-portal .container.portal-list {
    gap: 24px;
  }
}
#top-portal .container .portal-block {
  width: calc(50% - 16px);
}
#top-portal .container .portal-block.portal-full {
  width: 100%;
}
#top-portal .container .portal-block.portal-full picture {
  width: 476px;
  height: 280px;
}
#top-portal .container .portal-block.portal-full .text {
  width: calc(100% - 476px);
  padding: 56px 32px;
}
#top-portal .container .portal-block.portal-full .text h3 {
  font-size: 24px;
  line-height: 40.8px;
}
#top-portal .container .portal-block.portal-full .text p {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #top-portal .container .portal-block {
    width: 100% !important;
  }
}
#top-portal .container .portal-block picture {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top-portal .container .portal-block picture {
    width: 100% !important;
    height: auto !important;
  }
}
#top-portal .container .portal-block picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#top-portal .container .portal-block .text {
  width: 100%;
  border: 1px solid #E5E5E5;
  border-top: none;
  padding: 20px 22px;
  min-height: 177px;
}
@media screen and (max-width: 768px) {
  #top-portal .container .portal-block .text {
    padding: 20px !important;
    width: 100% !important;
    border: 1px solid #E5E5E5;
    border-top: none;
    min-height: auto;
  }
}
#top-portal .container .portal-block .text h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 30.6px;
  letter-spacing: 1.3500000238px;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  #top-portal .container .portal-block .text h3 {
    font-size: 16px !important;
    line-height: 32px !important;
    letter-spacing: 0.1em;
    justify-content: start;
    text-align: left;
  }
}
#top-portal .container .portal-block .text h3 span {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.349999994px;
  color: #D94141;
  display: inline-block;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  #top-portal .container .portal-block .text h3 span {
    display: inline-block;
    margin: 0 5px 0 0;
  }
}
#top-portal .container .portal-block .text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  letter-spacing: 1.0499999523px;
  text-align: left;
  text-align: justify;
  margin-bottom: 8px;
}
#top-portal .container .portal-block .text .btn {
  margin: 0 auto;
}
#top-portal .container .portal-block .text a:not(.btn) {
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  letter-spacing: 1.0499999523px;
  text-align: left;
  color: #007B65;
  text-decoration: underline;
}

#top-selection .container {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  #top-selection .container {
    padding: 40px 0 48px 0;
  }
}
#top-selection .container.tsc01 {
  background-image: url(../images/top/selection01.webp);
}
@media screen and (max-width: 768px) {
  #top-selection .container.tsc01 {
    background-image: url(../images/top/selection01_sp.webp);
  }
}
#top-selection .container.tsc02 {
  background-image: url(../images/top/selection02.webp);
}
@media screen and (max-width: 768px) {
  #top-selection .container.tsc02 {
    background-image: url(../images/top/selection02_sp.webp);
  }
}
#top-selection .container.tsc03 {
  background-image: url(../images/top/selection03.webp);
}
@media screen and (max-width: 768px) {
  #top-selection .container.tsc03 {
    background-image: url(../images/top/selection03_sp.webp);
  }
}
#top-selection .container .content {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 1200px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #top-selection .container .content {
    width: 100%;
    height: auto;
  }
}
#top-selection .container .content .left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #top-selection .container .content .left {
    width: 100%;
    padding: 0px 20px 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  #top-selection .container .content .left .en-title {
    display: block;
    text-align: center;
    width: 110px;
    margin: 0 auto 10px auto;
  }
}
#top-selection .container .content .left h3 {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0px 0px 16px 0px #000000;
  font-size: 24px;
  line-height: 40px;
}
@media screen and (max-width: 768px) {
  #top-selection .container .content .left h3 {
    text-align: center;
    font-size: 20px;
    line-height: 34px;
  }
}
#top-selection .container .content .left p {
  color: #fff;
}
#top-selection .container .content .left .normal {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #top-selection .container .content .left .normal {
    text-align: center;
  }
}
#top-selection .container .content .left .btn {
  margin: 0;
}
@media screen and (max-width: 768px) {
  #top-selection .container .content .left .btn {
    margin: 0 auto;
  }
}
#top-selection .container .content .right {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #top-selection .container .content .right {
    width: 100%;
    padding: 0 20px;
  }
}
#top-selection .container .content .right article {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #top-selection .container .content .right article {
    width: 100%;
  }
}
#top-selection .container .content .right article a picture {
  height: 198px;
}

#pickup {
  padding: 100px 0 50px 0;
}
@media screen and (max-width: 768px) {
  #pickup {
    padding: 50px 0;
  }
}
#pickup .en-title {
  margin: 0 auto;
  text-align: center;
  width: 61px;
  display: block;
  margin-bottom: 10px;
}
#pickup h2 {
  text-align: center;
  margin-bottom: 35px;
}
#pickup .pickup-list {
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #pickup .pickup-list {
    width: 100%;
    padding: 0 20px;
  }
}
#pickup .pickup-list article {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  #pickup .pickup-list article {
    width: 100%;
  }
}
#pickup .pickup-list article a picture {
  height: 266px;
}
#pickup .pickup-list article a .text {
  height: 100px;
}
@media screen and (max-width: 768px) {
  #pickup .pickup-list article a .text {
    height: auto;
  }
}
#pickup .btn {
  margin-top: 40px;
  width: 280px;
  line-height: 48px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #top-support .over-text {
    width: 100%;
    padding: 0 20px;
  }
}
#top-support .arrow {
  margin: 0 auto 20px auto;
  width: 24px;
}
@media screen and (max-width: 768px) {
  #top-support .arrow {
    margin: 0 auto 10px auto;
  }
}
#top-support h2 {
  text-align: center;
  margin-bottom: 10px;
}
#top-support .normal {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #top-support {
    width: 100%;
  }
}

.support-three {
  display: flex;
  flex-wrap: wrap;
}
.support-three .support-block {
  width: 33.3333333333%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .support-three .support-block {
    width: 100%;
  }
}
.support-three .support-block picture {
  position: relative;
  width: 100%;
  height: 286px;
  display: block;
}
.support-three .support-block picture:after {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  left: 0;
  top: 0;
  z-index: 2;
  content: "";
  display: block;
}
.support-three .support-block picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.support-three .support-block .text {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .support-three .support-block .text {
    padding: 0 16px;
  }
}
.support-three .support-block .text h4 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #fff;
  text-align: center;
}
.support-three .support-block .text p {
  color: #fff;
}

#top-works {
  border-top: 1px solid #e5e5e5;
  padding: 100px 0 50px 0;
}
@media screen and (max-width: 768px) {
  #top-works {
    padding: 50px 0;
  }
}
#top-works .container {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top-works .container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #top-works .container .over-text {
    width: 100%;
    padding: 0 20px;
  }
}
#top-works .container .en-title {
  margin: 0 auto;
  text-align: center;
  width: 51px;
  display: block;
  margin-bottom: 10px;
}
#top-works .container h2 {
  text-align: center;
  margin-bottom: 8px;
}
#top-works .container p.normal {
  text-align: center;
  margin-bottom: 40px;
}
#top-works .container .top-works-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #top-works .container .top-works-list {
    width: 100%;
    padding: 0 20px;
  }
}
#top-works .container .top-works-list article {
  border: 1px solid #e5e5e5;
}
#top-works .container .top-works-list article a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#top-works .container .top-works-list article a picture {
  width: 50%;
  height: 409px;
  display: block;
}
@media screen and (max-width: 768px) {
  #top-works .container .top-works-list article a picture {
    width: 100%;
    height: 239px;
  }
}
#top-works .container .top-works-list article a picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-works .container .top-works-list article a .text {
  width: 50%;
  padding: 0 64px;
}
@media screen and (max-width: 768px) {
  #top-works .container .top-works-list article a .text {
    width: 100%;
    padding: 24px;
  }
}
#top-works .container .top-works-list article a .text h3 {
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 10px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #top-works .container .top-works-list article a .text h3 {
    font-size: 16px;
    line-height: 32px;
  }
}
#top-works .container .top-works-list article a .text p {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 10px;
}
#top-works .container .top-works-list article a .text ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#top-works .container .top-works-list article a .text ul li {
  border: 1px solid #e5e5e5;
  padding: 2px 8px;
  border-radius: 20px;
  color: #757575;
  font-size: 11px;
}
#top-works .container .top-works-list article:nth-of-type(even) a {
  flex-direction: row-reverse;
}
#top-works .container .btn {
  margin: 40px auto 0 auto;
  width: 280px;
  line-height: 48px;
  font-size: 16px;
}

#top-report {
  padding: 50px 0 80px 0;
}
@media screen and (max-width: 768px) {
  #top-report {
    padding: 0 0 50px 0;
  }
}
@media screen and (max-width: 768px) {
  #top-report .container {
    width: 100%;
    padding: 0 20px;
    position: relative;
  }
}
#top-report .container .btn {
  margin: 48px auto 0 auto;
  width: 280px;
  line-height: 48px;
  font-size: 16px;
}
#top-report .container .en-title {
  margin: 0 auto;
  text-align: center;
  width: 61px;
  display: block;
  margin-bottom: 10px;
}
#top-report .container h2 {
  text-align: center;
  margin-bottom: 8px;
}
#top-report .container p.normal {
  text-align: center;
  margin-bottom: 40px;
}
#top-report .container .report-button-prev {
  position: absolute;
  top: 37%;
  left: 0;
  z-index: 5;
  cursor: pointer;
}
#top-report .container .report-button-prev:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  #top-report .container .report-button-prev {
    top: 42%;
  }
  #top-report .container .report-button-prev img {
    width: 40px;
  }
}
#top-report .container .report-button-next {
  position: absolute;
  top: 37%;
  right: 0;
  z-index: 5;
  cursor: pointer;
}
#top-report .container .report-button-next:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  #top-report .container .report-button-next {
    top: 42%;
  }
  #top-report .container .report-button-next img {
    width: 40px;
  }
}
#top-report .container .top-report-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#top-report .container article a picture {
  width: 100%;
  height: 198px;
  display: block;
}
#top-report .container article a picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-report .container article a .text {
  padding: 10px 0;
}
#top-report .container article a .text h3 {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
}
#top-report .container article a .text p.date {
  font-size: 13px;
  color: #757575;
}

#top-event {
  background: url(../images/top/event.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #top-event {
    background: url(../images/top/event_sp.webp);
  }
}
#top-event .container {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top-event .container {
    width: 100%;
    padding: 0 20px;
  }
}
#top-event .container .en-title {
  margin: 0 auto;
  text-align: center;
  width: 61px;
  display: block;
  margin-bottom: 10px;
  color: #fff;
}
#top-event .container h2 {
  text-align: center;
  margin-bottom: 8px;
  color: #fff;
}
#top-event .container p.normal {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}
#top-event .container .event-three {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #top-event .container .event-three {
    gap: 20px;
  }
}
#top-event .container .event-three .event-three-block {
  padding: 40px;
  width: 32%;
  border: 1px solid #fff;
  background: rgba(17, 17, 17, 0.4);
}
@media screen and (max-width: 768px) {
  #top-event .container .event-three .event-three-block {
    width: 100%;
    padding: 20px;
  }
}
#top-event .container .event-three .event-three-block h3 {
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
#top-event .container .event-three .event-three-block p {
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  text-align: center;
}
#top-event .container .btn-up {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}
#top-event .container .btn {
  margin: 48px auto 0 auto;
  width: 280px;
  line-height: 48px;
  font-size: 16px;
  border: none;
}

#top-news {
  padding: 70px 0;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
  #top-news {
    padding: 50px 0;
  }
}
#top-news .container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #e5e5e5;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  #top-news .container {
    padding: 0;
    border-top: none;
  }
}
@media screen and (max-width: 768px) {
  #top-news .container {
    width: 100%;
    padding: 0 20px;
  }
}
#top-news .container h2 {
  width: 180px;
  font-family: Noto Sans JP;
}
@media screen and (max-width: 768px) {
  #top-news .container h2 {
    width: 100%;
  }
}
#top-news .container .news-list {
  width: 1020px;
}
@media screen and (max-width: 768px) {
  #top-news .container .news-list {
    width: 100%;
  }
}
#top-news .container .news-list article {
  border-bottom: 1px solid #e5e5e5;
}
#top-news .container .news-list article a {
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#top-news .container .news-list article a .date {
  font-size: 13px;
  width: 100px;
}
@media screen and (max-width: 768px) {
  #top-news .container .news-list article a .date {
    width: 100%;
  }
}
#top-news .container .news-list article a h3 {
  width: 900px;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #top-news .container .news-list article a h3 {
    width: 100%;
  }
}
#top-news .container .news-list .news-list-link {
  text-align: right;
  font-size: 14px;
  padding-top: 16px;
  padding-bottom: 16px;
}
#top-news .container .news-list .news-list-link a {
  text-decoration: underline;
  color: #36b289;
}

.tell-consult {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 7;
}
@media screen and (max-width: 768px) {
  .tell-consult {
    width: 100%;
    right: 0;
    left: 0;
    margin: 0;
  }
}
.tell-consult .tell-sp-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #000;
  width: calc(100% - 32px);
  height: 40px;
  border-radius: 20px;
  margin: 0 auto;
}
.tell-consult .tell-sp-btn.action {
  display: none;
}
.tell-consult .tell-sp-btn a {
  color: #fff;
  font-size: 14px;
}
.tell-consult .tell-sp-btn figure {
  width: 15px;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.tell-consult .tell-sp-btn figure img {
  width: 100%;
}
.tell-consult .tell-sp-btn .action-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/icon/close.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.tell-consult .box {
  width: 380px;
  box-shadow: 0 5px 5px #aaa;
}
.tell-consult .box .box-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  font-size: 14px;
  background: #000;
  width: 100%;
  height: 40px;
}
.tell-consult .box .box-title figure {
  width: 15px;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.tell-consult .box .box-title figure img {
  width: 100%;
}
.tell-consult .box .box-title .action-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/icon/arrow_btm.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.tell-consult .box .box-title.action .action-btn {
  background: url(../images/icon/close.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.tell-consult .box .box-contents {
  background: #fff;
  padding: 20px 0;
}
.tell-consult .box .box-contents dl {
  text-align: center;
  margin-bottom: 20px;
}
.tell-consult .box .box-contents dl dt {
  font-size: 12px;
}
.tell-consult .box .box-contents dl dd {
  width: 100%;
  height: 39px;
  background: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.tell-consult .box .box-contents p {
  text-align: center;
  font-size: 12px;
}

.industry-job-registration-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-job-registration-modal .modal-content {
  background: #fff;
  padding: 40px 80px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .industry-job-registration-modal .modal-content {
    width: 90%;
    padding: 20px 20px;
  }
}
.industry-job-registration-modal .modal-content h2 {
  font-size: 28px;
  margin-top: 8px;
  font-weight: 500;
  color: #007B65;
}
@media screen and (max-width: 768px) {
  .industry-job-registration-modal .modal-content h2 {
    font-size: 18px;
  }
}
.industry-job-registration-modal .modal-content p {
  font-size: 18px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .industry-job-registration-modal .modal-content p {
    font-size: 14px;
  }
}
.industry-job-registration-modal .modal-content .modal-header {
  display: flex;
  justify-content: flex-end;
}
.industry-job-registration-modal .modal-content .modal-header .modal-close {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 24px;
}
.industry-job-registration-modal .modal-content > button {
  margin: 24px auto 0 auto;
}
.industry-job-registration-modal .modal-content .privacy-policy-agreement {
  margin: 16px 0;
  font-size: 16px;
}
.industry-job-registration-modal .modal-content .privacy-policy-agreement input {
  display: inline-block;
}
.industry-job-registration-modal .modal-content .privacy-policy-agreement span a {
  color: #757575;
  text-decoration: underline;
}
.industry-job-registration-modal .modal-content .privacy-policy-agreement span a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 24px;
  background-repeat: no-repeat;
  background-image: url(../../../images/service/link.svg);
  background-size: contain;
  background-position: bottom;
  margin-left: 5px;
}

.industry-job-registration-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.btn.green:disabled {
  background-color: #ccc !important;
  color: #fff !important;
  cursor: not-allowed !important;
  border: none;
  opacity: 0.7;
}

.button-black {
  background: #111111;
  color: white;
  text-align: center;
  padding: 4px 0;
  width: 100%;
  display: inline-block;
  font-size: 12px;
  height: 25px;
}

.wood-notice {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: underline;
  color: #444444;
  font-size: 14px;
}
.wood-notice figure {
  width: 16px;
  height: 16px;
}
.wood-notice figure img {
  display: block;
}

.notice-area {
  margin-top: 10px;
}

input[type=checkbox] {
  display: none;
}

.error {
  color: red;
  border: none;
  font-size: 12px;
  font-weight: 400;
  padding-left: 10px;
}

label.disabled .checkbox01 {
  color: #B2B2B2;
  text-decoration: line-through;
}
label.disabled:after {
  color: #757575;
  display: block;
  content: "※現在サンプル発送サービスを停止しています。";
  font-size: 12px;
}

.checkbox01 {
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px 0 5px 30px;
  position: relative;
}

.check-text {
  font-size: 14px;
  /*letter-spacing: 0px;*/
}

.checkbox01::before {
  background: #fff;
  border: 1px solid #231815;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.checkbox01::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  display: block;
  height: 10px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 6px;
}

input[type=checkbox]:checked + .checkbox01::before {
  background-color: #1f9970;
  border-color: transparent;
}

input[type=checkbox]:checked + .checkbox01::after {
  opacity: 1;
}

.checkbox02 {
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px 0 5px 30px;
  position: relative;
  font-size: 13px;
}
.checkbox02:before {
  border: 1px solid #757575;
  content: "";
  display: block;
  height: 14px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 14px;
}
.checkbox02:after {
  border-bottom: 2px solid #757575;
  border-right: 2px solid #757575;
  content: "";
  display: block;
  height: 9px;
  left: 9px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 6px;
}
.checkbox02 span {
  display: block;
  width: 100%;
}
.checkbox02:hover span {
  background-color: #ccc;
}

input[type=checkbox]:checked + .checkbox02::after {
  opacity: 1;
}

.pp-agree .checkbox01 {
  padding: 5px 0 5px 42px;
}

.pp-agree .checkbox01::before {
  left: 16px;
  margin-top: -7px;
}

.pp-agree .checkbox01::after {
  left: 21px;
  margin-top: -6px;
}

.pp-agree .checkbox img {
  width: 15px;
  vertical-align: initial;
  margin: 0 2px;
}

.search-input select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

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

.search-input {
  font-size: 14px;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.search-input.input_02 {
  position: relative;
  border-radius: 5px;
  border: 1px solid #9d9d9d;
  background: #ffffff;
  width: 120px;
}

.search-input.input_02::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 1px #000;
  border-right: solid 1px #000;
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -6px;
  transform: rotate(45deg);
}

.search-input.input_02 select {
  padding: 8px 38px 8px 8px;
  color: #000;
}

/* ラジオボタン02 */
input[type=radio] {
  display: none;
}

.radio01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0px 27px;
  position: relative;
  width: auto;
  font-size: 13px;
  line-height: 26px;
  letter-spacing: 0.1em;
  display: block;
}

.radio01::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  content: "";
  display: block;
  height: 13px;
  left: 5px;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  width: 13px;
}

.radio01::after {
  background: #007b50;
  border-radius: 50%;
  content: "";
  display: block;
  height: 7px;
  left: 8px;
  margin-top: -2px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 2px);
  width: 7px;
}

input[type=radio]:checked + .radio01::before {
  border-color: #007b50;
}

input[type=radio]:checked + .radio01::after {
  opacity: 1;
}

.form-box {
  margin-bottom: 50px;
}
.form-box dl {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 0 32px 0;
}
@media screen and (max-width: 768px) {
  .form-box dl {
    align-items: center;
    margin: 0 0 20px 0;
  }
}
.form-box dl dt {
  margin-left: 0;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 2px;
  width: 160px;
  padding-top: 0px;
}
@media screen and (max-width: 768px) {
  .form-box dl dt {
    width: auto;
    height: auto;
    padding: 0 !important;
    margin-bottom: 10px;
    letter-spacing: 0px;
  }
}
.form-box dl .form-input {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .form-box dl .form-input {
    width: 100%;
  }
}
.form-box dl .form-input .ft2-box {
  width: 48%;
}
.form-box dl .pass-length {
  font-size: 12px;
}

.form-text-box1 {
  border: 1px solid #b3b3b3 !important;
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding-left: 10px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .form-text-box1 {
    font-size: 12px;
  }
}

.form-text-box2 {
  border: 1px solid #b3b3b3 !important;
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .form-text-box2 {
    font-size: 12px;
  }
}

.form-text-box3 {
  border: 1px solid #b3b3b3 !important;
  box-sizing: border-box;
  width: 100px;
  height: 34px;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .form-text-box3 {
    width: 25% !important;
    font-size: 12px;
  }
}

.hyphen {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.form-text-box4 {
  border: 1px solid #b3b3b3 !important;
  box-sizing: border-box;
  width: 230px !important;
  height: 34px;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .form-text-box4 {
    font-size: 12px;
  }
}

.register-input-invalid-submit-button {
  cursor: not-allowed;
}

@media screen and (max-width: 768px) {
  .form-text-box4-container {
    width: 100%;
  }
}
.form-text-box4-container button {
  background: #757575;
  border-radius: 3px;
  color: white;
  padding: 3px 24px 5px;
  margin-left: 16px;
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 170%;
}
@media screen and (max-width: 768px) {
  .form-text-box4-container button {
    width: 80px;
    padding: 3px 0px 5px;
  }
}

.two-input {
  display: flex;
  justify-content: space-between;
}

form .btn {
  outline: none;
  caret-color: transparent;
}

.upload-files-main {
  cursor: pointer;
  display: block;
  font-size: 16px;
  height: 40px;
}

.upload-button2 {
  align-items: center;
  background-color: #757575;
  border-radius: 5px;
  color: #fff;
  display: flex;
  font-size: 12px;
  height: 28px;
  justify-content: center;
  width: 215px;
}
.upload-button2 span[data-v-5f8799f8] {
  font-size: 12px;
  font-weight: 400;
}

.contact-main {
  display: block;
  background-color: #f0f0f0;
  width: 100%;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .contact-main {
    background-color: #fff;
    padding-bottom: 0px;
  }
}
.contact-main .login {
  background: linear-gradient(#CD0000, #CD0000);
  border-radius: 50px;
  color: #fff;
  display: block;
  font-weight: 400;
  height: 40px;
}
.contact-main .contact-catchcopy {
  background: white;
  width: 1060px;
  margin: auto;
  padding: 50px 0 80px 0;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-catchcopy {
    width: 100%;
    padding: 30px 0;
  }
}
.contact-main .contact-cmn {
  margin: 0 auto;
  width: 80%;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn {
    width: 100%;
    padding: 0 16px 100px 16px;
  }
}
.contact-main .contact-cmn .link {
  width: 140px;
  text-align: center;
  margin: 0 auto 40px auto;
}
.contact-main .contact-cmn .link a {
  font-size: 14px;
  letter-spacing: 0.2px;
  color: #1f9970;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn .link {
    width: 140px;
  }
}
.contact-main .contact-cmn.contact-form form dl.address {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn.contact-form form dl.address {
    margin-bottom: 10px;
  }
}
.contact-main .contact-cmn.contact-form form dl.address dt {
  height: auto;
}
.contact-main .contact-cmn.contact-form form dd.hissu {
  width: 70px;
}
.contact-main .contact-cmn.contact-form form dd.hissu span {
  background-color: #d94141;
  color: #fff;
  padding: 5px 10px;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn.contact-form form dd.hissu {
    padding: 0 !important;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    padding: 0 5px;
    line-height: 11px;
    margin-bottom: 10px;
  }
}
.contact-main .contact-cmn.contact-form form dd.form-input {
  width: 610px;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn.contact-form form dd.form-input {
    width: 100%;
  }
}
.contact-main .contact-cmn.login-info form {
  padding: 40px 0;
}
.contact-main .contact-cmn.login-info form .form-box {
  width: 650px;
  margin: 0 auto;
}
.contact-main .contact-cmn.login-info form .form-box dl {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-main .contact-cmn.login-info form .form-box dl dd {
  width: 500px;
  flex: 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn.login-info form .form-box {
    width: 100%;
  }
  .contact-main .contact-cmn.login-info form .form-box dl {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .contact-main .contact-cmn.login-info form .form-box dl dd {
    width: 100%;
  }
}
.contact-main .contact-cmn form .form-details-name {
  line-height: 10px;
  padding-top: 0px;
}
.contact-main .contact-cmn form .check-area {
  margin-bottom: 30px;
  display: block !important;
}
.contact-main .contact-cmn form .contents-top {
  vertical-align: top;
  padding-top: 5px;
  font-weight: 600;
}
.contact-main .contact-cmn form .form-input {
  width: 610px;
}
.contact-main .contact-cmn form .check-flex {
  display: flex;
  flex-wrap: wrap;
  width: 610px;
  justify-content: space-between;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn form .check-flex {
    width: 100%;
  }
}
.contact-main .contact-cmn form .check-flex label {
  width: 25%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.contact-main .contact-cmn form .check-flex label .check-form {
  width: 18px;
  height: 18px;
}
.contact-main .contact-cmn form .check-flex label.check-full {
  width: 100%;
}
.contact-main .contact-cmn form .form-text-detail {
  border: 1px solid #b3b3b3;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn form .form-text-detail {
    width: 100%;
    font-size: 12px;
    line-height: 20px;
    padding: 9px;
  }
}
.contact-main .contact-cmn form .pp-title {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 10px;
}
.contact-main .contact-cmn form .box-privacy-policy {
  height: 240px;
  border: 1px solid #111;
  padding: 40px;
  overflow: scroll;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn form .box-privacy-policy {
    padding: 20px;
    height: 200px;
  }
}
.contact-main .contact-cmn form .box-privacy-policy h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}
.contact-main .contact-cmn form .box-privacy-policy .pp-cover .pp-box {
  margin-bottom: 30px;
}
.contact-main .contact-cmn form .box-privacy-policy .pp-cover .pp-box h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn form .box-privacy-policy .pp-cover .pp-box h4 {
    font-size: 11px;
    line-height: 22px;
  }
}
.contact-main .contact-cmn form .box-privacy-policy .pp-cover .pp-box p {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn form .box-privacy-policy .pp-cover .pp-box p {
    font-size: 11px;
    line-height: 22px;
  }
}
.contact-main .contact-cmn form .box-privacy-policy .pp-cover .pp-box ul.num {
  padding-left: 1.3em;
}
.contact-main .contact-cmn form .box-privacy-policy .pp-cover .pp-box ul.num li {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
  list-style: decimal;
}
.contact-main .contact-cmn form .box-privacy-policy .pp-cover .pp-box .tm {
  margin-top: 30px;
}
.contact-main .contact-cmn form .box-privacy-policy .pp-cover .pp-box a {
  color: #a9a9a9;
  text-decoration: underline;
}
.contact-main .contact-cmn form .pp-agree {
  margin: auto;
  width: 100%;
  padding: 24px;
  border: 1px solid #f0f0f0;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn form .pp-agree {
    padding: 16px;
  }
}
.contact-main .contact-cmn form .pp-agree .check-text {
  font-size: 14px;
  line-height: 200%;
  margin-bottom: 8px;
}
.contact-main .contact-catchcopy-tit {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 3px;
}
.contact-main .contact-catchcopy-txt {
  margin: 0 0 20px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
}
.contact-main .confirm-alert {
  background: #F2DADA;
  color: #CD0000;
  width: 705px;
  margin: 0 auto;
  padding: 8px;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .contact-main .confirm-alert {
    width: 100%;
  }
}
.contact-main .contact-form-txt {
  margin: 0 0 14px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
.contact-main .contact-check {
  background: white;
  width: 1060px;
  margin: auto;
  padding: 50px 0 80px 0;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-check {
    width: 100%;
    padding: 30px 0;
  }
}
.contact-main .check-items {
  width: 705px;
  height: auto;
  margin: 0 auto;
  table-layout: fixed;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .contact-main .check-items {
    width: calc(100% - 52px);
    padding: 20px 0;
  }
}
.contact-main .check-items dl {
  margin-bottom: 15px;
}
.contact-main .check-items dl dt {
  width: 30%;
}
.contact-main .check-items dl dd {
  width: 70%;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .contact-main .check-items dl {
    border-bottom: 1px solid #cac1bf;
  }
  .contact-main .check-items dl dt {
    width: 100%;
  }
  .contact-main .check-items dl dd {
    width: 100%;
  }
}
.contact-main .form-check-name {
  color: #757575;
  font-size: 14px;
  font-weight: 400;
  width: 200px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .contact-main .form-check-name {
    width: 100%;
    margin-bottom: 0px;
  }
}
.contact-main .check-btn .link {
  width: 100px;
  text-align: center;
  margin: 20px auto 0 auto;
}
.contact-main .check-btn .link a {
  font-size: 14px;
  color: #1f9970;
  text-decoration: underline;
}
.contact-main .fin-check {
  background: white;
  width: 1060px;
  margin: auto;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .contact-main .fin-check {
    width: 100%;
    padding: 30px 0;
  }
}
.contact-main .sent-check {
  border: none;
}
.contact-main .sent-contact {
  width: 100%;
  height: 300px;
  background-color: #e4e4e4;
  padding-top: 30px;
}
.contact-main .address-tytle {
  width: 130px;
  height: 25px;
  border: 1px solid #000000;
  background-color: white;
  text-align: center;
  margin: 0 auto;
  padding-top: 3px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 30px;
}
.contact-main .contact-sent-cmn {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.contact-main .sent-to-top {
  display: block;
  margin: 80px 0 0 300px;
  padding-top: 8px;
  color: #cd0000;
  font-weight: 400;
  width: 250px;
  height: 40px;
  border: 1px solid #cd0000;
  background: linear-gradient(#fff, #fff);
  border-radius: 50px;
  text-align: center;
}
.contact-main .login-catchcopy {
  background: white;
  width: 1060px;
  margin: auto;
  padding: 55px 0 80px 0;
}
@media screen and (max-width: 768px) {
  .contact-main .login-catchcopy {
    width: 100%;
    padding: 16px 0 0 0;
  }
}
.contact-main .login-info {
  margin-bottom: 0px;
  padding-bottom: 0;
}
.contact-main .forget {
  background: linear-gradient(#CD0000, #CD0000);
  border-radius: 50px;
  color: #fff;
  display: block;
  font-weight: 400;
  height: 40px;
}
.contact-main .forget-pass {
  margin: 0 0 0 auto;
  font-size: 12px;
  font-weight: 400;
  color: #757575;
  letter-spacing: 1px;
  display: block;
  width: 120px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .contact-main .forget-pass {
    margin: 24px auto 0;
  }
}
.contact-main .login-not {
  margin: 0;
  padding: 40px 0 0 0;
  border-top: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
  .contact-main .login-not {
    padding-top: 32px;
    padding-bottom: 80px;
  }
  .contact-main .login-not .registry-catchcopy-tit {
    font-size: 16px;
    border: none;
    justify-content: center;
  }
  .contact-main .login-not .registry-catchcopy-tit:after {
    display: none;
  }
}
.contact-main .login-not .login-form {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .contact-main .login-not .login-form {
    font-size: 16px;
    line-height: 200%;
    margin-bottom: 8px;
  }
}
.contact-main .login-not .guide-info {
  font-size: 12px;
  font-weight: 400;
  color: #007b50;
  letter-spacing: 2px;
  text-decoration: underline;
}
.contact-main .login-not .guide-info-cover {
  display: block;
  margin: 10px auto 0 auto;
  text-align: center;
}
.contact-main .login-form-txt {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
}
.contact-main .forget-catchcopy {
  background: white;
  width: 1060px;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .contact-main .forget-catchcopy {
    width: 100%;
    padding-bottom: 0px;
  }
}
.contact-main .forget-pass-tit {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.contact-main .forget-pass-txt {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
.contact-main .forget-check {
  display: block;
  margin: 70px auto 0 auto;
  color: #fff;
  font-weight: 400;
  width: 250px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(#b3b3b3, #b3b3b3);
  border-radius: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-main .forget-check {
    margin: 30px auto 0 auto;
  }
}
.contact-main .passfin-catchcopy {
  background: white;
  width: 1060px;
  margin: auto;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .contact-main .passfin-catchcopy {
    width: 100%;
    padding-bottom: 0px;
  }
}
.contact-main .check-items dl:last-child,
.contact-main .check-items .input-label {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .contact-main .check-items {
    width: 100%;
  }
  .contact-main .check-items dl:last-child,
  .contact-main .check-items .input-label {
    margin-bottom: 24px;
  }
}
.contact-main .form-title-name {
  font-weight: 600;
}
.contact-main .input-label {
  background: #f0f0f0;
  border-left: 6px solid #1f9970;
  margin-bottom: 32px;
  padding-left: 10px;
  height: 28px;
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 600;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.1em;
  color: #111111;
}
.contact-main .after-mail {
  font-size: 12px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 32px;
}
.contact-main .supplementary-explanation {
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 300;
  font-size: 11px;
  line-height: 160%;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  color: #757575;
}
.contact-main label:has(input[type=radio]) {
  margin-right: 16px;
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 300;
  font-size: 13px;
  line-height: 200%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .contact-main label:has(input[type=radio]) {
    display: block;
    margin-bottom: 8px;
  }
  .contact-main label:has(input[type=radio]):last-of-type {
    margin-bottom: 0px;
  }
}
.contact-main input[type=radio] {
  display: unset;
  margin-right: 4px;
}
@media screen and (max-width: 768px) {
  .contact-main .delivery_method_radio {
    margin-bottom: 12px;
  }
  .contact-main .delivery_method_radio label:has(input[type=radio]) {
    display: unset;
  }
}
@media screen and (max-width: 768px) {
  .contact-main div:has(dd label input[type=radio]),
  .contact-main dd:has(label input[type=radio]) {
    display: block;
    width: 100%;
  }
  .contact-main div:has(dd > input) {
    width: 100%;
  }
}
.contact-main .form-textarea-materials {
  box-sizing: border-box;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
@media screen and (max-width: 768px) {
  .contact-main .form-textarea-materials {
    font-size: 16px;
    line-height: 25px;
  }
}
.contact-main .form-textarea-materials textarea {
  padding: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-main .form-textarea-materials textarea {
    font-size: 12px;
    height: 120px;
  }
}
.contact-main .form-textarea-materials textarea::-moz-placeholder {
  line-height: 1.6;
}
.contact-main .form-textarea-materials textarea::placeholder {
  line-height: 1.6;
}
.contact-main .btn.sent-check {
  cursor: not-allowed;
}
.contact-main .before-sending-error-description {
  color: #d94141;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 1.4px;
  margin-top: 16px;
}
.contact-main .check-items dl:last-child,
.contact-main .check-items .input-label {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .contact-main .check-items {
    width: 100%;
  }
  .contact-main .check-items dl:last-child {
    margin-bottom: 24px;
  }
  .contact-main .check-items .input-label {
    margin-bottom: 24px;
  }
}
.contact-main .form-title-name {
  font-weight: 600;
}
.contact-main .input-label {
  background: #f0f0f0;
  border-left: 6px solid #1f9970;
  margin-bottom: 32px;
  padding-left: 10px;
  height: 28px;
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 600;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.1em;
  color: #111111;
}
.contact-main .after-mail {
  font-size: 12px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 32px;
}
.contact-main label:has(input[type=radio]) {
  margin-right: 16px;
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 300;
  font-size: 13px;
  line-height: 200%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .contact-main label:has(input[type=radio]) {
    display: block;
    margin-bottom: 8px;
  }
  .contact-main label:has(input[type=radio]):last-of-type {
    margin-bottom: 0px;
  }
}
.contact-main input[type=radio] {
  display: unset;
  margin-right: 4px;
}
@media screen and (max-width: 768px) {
  .contact-main .delivery_method_radio {
    margin-bottom: 12px;
  }
  .contact-main .delivery_method_radio label:has(input[type=radio]) {
    display: unset;
  }
}
@media screen and (max-width: 768px) {
  .contact-main div:has(dd label input[type=radio]),
  .contact-main dd:has(label input[type=radio]) {
    display: block;
    width: 100%;
  }
  .contact-main div:has(dd > input) {
    width: 100%;
  }
}
.contact-main .form-textarea-materials {
  box-sizing: border-box;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
@media screen and (max-width: 768px) {
  .contact-main .form-textarea-materials {
    font-size: 16px;
    line-height: 25px;
  }
}
.contact-main .form-textarea-materials textarea {
  padding: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-main .form-textarea-materials textarea {
    font-size: 12px;
    height: 120px;
  }
}
.contact-main .form-textarea-materials textarea::-moz-placeholder {
  line-height: 1.6;
}
.contact-main .form-textarea-materials textarea::placeholder {
  line-height: 1.6;
}
.contact-main .btn.sent-check {
  cursor: not-allowed;
}
.contact-main .before-sending-error-description {
  color: #d94141;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 1.4px;
  margin-top: 16px;
}
.contact-main .contact-cmn form .check-area {
  margin-bottom: 0;
}
.contact-main .contact-cmn.contact-form {
  width: -moz-fit-content;
  width: fit-content;
}
.contact-main .contact-cmn.contact-form form .check-area {
  margin-bottom: 0;
}
.contact-main .contact-cmn.contact-form form .form-details div {
  width: 610px;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn.contact-form form .form-details div {
    width: 100%;
  }
}
.contact-main .contact-cmn.contact-form form .form-details .form-control {
  height: 0;
  opacity: 0;
}
.contact-main .contact-cmn.contact-form form .form-details .form-request-image-upload-supplement {
  color: #757575;
  font-size: 11px;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn.contact-form form .form-details dd.form-input {
    width: 100%;
  }
}
.contact-main .contact-cmn.contact-form form .form-details .inquiry-file-info {
  size: 14px;
  background-color: #f0f0f0;
  border-radius: 4px;
  display: flex;
  margin: 4px auto;
}
.contact-main .contact-cmn.contact-form form .form-details .inquiry-file-info-item {
  font-size: 12px;
  line-height: 18px;
  margin: 6px 0 8px;
  padding: 0 8px;
  width: calc(100% - 42px);
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn.contact-form form .form-details .inquiry-file-info-item {
    width: 100%;
  }
}
.contact-main .contact-cmn.contact-form form .form-details .inquiry-file-info button {
  color: #1f9970;
  font-size: 12px;
  text-decoration: underline;
  width: 28px;
}
.contact-main .contact-cmn.contact-form form span.hissu.pp-policy-label span {
  background-color: #d94141;
  color: #fff;
  padding: 5px 13px;
  font-size: 11px;
}
.contact-main .contact-cmn.contact-form form span.hissu.pp-policy-label span.nessesary-condition-ok {
  background-color: #e5f6ef;
  color: #007b65;
  padding: 5px 13px;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .contact-main .contact-cmn.contact-form form span.hissu.pp-policy-label {
    display: block;
  }
}
.contact-main .contact-cmn.contact-form form .form-box .hissu span.nessesary-condition-ok {
  background-color: #e5f6ef;
  color: #007b65;
  padding: 5px 13px;
  font-size: 11px;
}

.contact-bottom {
  padding: 40px 0 50px 0;
  width: 1060px;
  margin: 60px auto 80px auto;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .contact-bottom {
    width: calc(100% - 30px);
    background: #e5f6ef;
    padding: 30px 16px;
  }
}

.contact-bottom-cmn {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.contact-bottom-cmn h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}
.contact-bottom-cmn .tell {
  margin-bottom: 30px;
}
.contact-bottom-cmn .tell dl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.contact-bottom-cmn .tell dl dt {
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #1f9970;
  margin-right: 10px;
}
.contact-bottom-cmn .tell dl dd {
  font-size: 24px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #1f9970;
}
.contact-bottom-cmn dl.fax {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.contact-bottom-cmn dl.fax dt {
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.1em;
  text-align: left;
  margin-right: 5px;
}
.contact-bottom-cmn dl.fax dd {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: left;
}
.contact-bottom-cmn .info-address {
  margin-top: 0px;
  font-size: 16px;
  font-weight: 500;
}

.form-box dd.form-input {
  width: 100%;
  flex-wrap: wrap;
}
.form-box dd.hissu {
  width: 70px;
}
.form-box dd.hissu span {
  background-color: #d94141;
  color: #fff;
  padding: 5px 10px;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .form-box dd.hissu {
    padding: 0 !important;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    padding: 0 5px;
    line-height: 11px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .form-text-box4-container {
    width: 100%;
  }
}
.form-text-box4-container button {
  background: #757575;
  border-radius: 3px;
  color: white;
  padding: 3px 24px 5px;
  margin-left: 16px;
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 170%;
}
@media screen and (max-width: 768px) {
  .form-text-box4-container button {
    width: 80px;
    padding: 3px 0px 5px;
  }
}

.input-label-description {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 300;
  color: #111;
  letter-spacing: 0.1em;
  line-height: 200%;
  margin-bottom: 32px;
}

.input-label-description2 {
  background: #e5f6ef;
  padding: 16px;
  font-size: 12px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 48px;
}
.input-label-description2 span {
  color: #d94141;
}

.input-label-description3 {
  background: #fcf4f4;
  padding: 16px;
  font-size: 12px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: left;
  margin-top: 16px;
}
.input-label-description3 span {
  color: #d94141;
  text-decoration: underline;
}

.fin-items {
  width: 705px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid #000000;
}
@media screen and (max-width: 768px) {
  .fin-items {
    width: 95%;
    padding-top: 30px;
  }
}
.fin-items .sent-fin {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .fin-items .sent-fin {
    margin-bottom: 50px;
  }
}
.fin-items .sent-fin h4 {
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fin-items .sent-fin h4 {
    font-size: 14px;
  }
}
.fin-items .sent-fin .sent-cmn {
  margin: auto;
  width: 500px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .fin-items .sent-fin .sent-cmn {
    font-size: 12px;
    margin-bottom: 30px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .fin-items .contact-bottom-cmn {
    background: #e5f6ef;
    padding: 30px 16px;
  }
}

.stop_sample {
  border: 2px solid #cd0000;
  box-sizing: border-box;
  color: #cd0000;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 32px;
  padding: 16px;
}

.btn {
  display: block;
  margin: 70px auto 0 auto;
  color: #fff;
  font-weight: 400;
  width: 250px;
  line-height: 40px;
  background: #b3b3b3;
  border-radius: 50px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
}
.btn.red {
  background: #cd0000;
}
.btn.black {
  background: #000;
}
.btn.white {
  background: #fff;
  color: #1f9970;
  border: 1px solid #1f9970;
}
.btn.white .more {
  margin-bottom: 56px;
}
.btn.text-green {
  background: #fff;
  color: #1f9970;
  border: 1px solid #1f9970;
}
.btn.green {
  background: #1f9970;
  color: #fff;
  border: 1px solid #1f9970;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 280px;
    margin-top: 30px;
  }
}

.two-btn {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .two-btn {
    flex-direction: column;
  }
}

.column-btn {
  width: 250px;
  margin: 0 auto;
}
.column-btn .btn {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .column-btn .btn {
    width: 100%;
  }
}
.column-btn .fix {
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #1f9970;
  text-decoration: underline;
  display: block;
}

.big-btn {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  align-items: center;
  background: #1f9970;
  border-radius: 50px;
  color: #fff;
  display: flex;
  font-size: 20px;
  height: 60px;
  justify-content: center;
  margin: 0 auto;
  width: 455px;
}

@media screen and (max-width: 768px) {
  .big-btn {
    font-size: 16px;
    height: 48px;
    width: 295px;
  }
}
@media screen and (max-width: 768px) {
  .internal main {
    margin-top: 110px;
  }
}

.btn2 {
  display: block;
  color: #fff;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  background: #1f9970;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.btn2::before {
  content: "";
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}

.breadcrumbs {
  display: flex;
  width: 1200px;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin: 10px auto;
    width: 100%;
    padding: 10px 16px;
    overflow: scroll;
    flex-wrap: wrap;
  }
  .breadcrumbs li {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .breadcrumbs li a {
    white-space: nowrap;
  }
}
.breadcrumbs li {
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
}
.breadcrumbs li a {
  font-size: 12px;
  line-height: 18px;
}
.breadcrumbs li:after {
  content: ">";
  margin: 0 5px;
}
.breadcrumbs li:last-of-type:after {
  display: none;
}

/*============================================
          search-variation-result-info						
============================================*/
.search-variation-result-info .pager {
  margin: 0 40px 0 auto;
}
@media screen and (max-width: 768px) {
  .search-variation-result-info .pager {
    margin: 0 auto;
  }
}

.item-area .item-title {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #757575;
  border-bottom: 1px solid #757575;
}
.item-area .item-title p {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.1em;
}
.item-area .item-title .it-right {
  display: flex;
  justify-content: space-between;
}
.item-area .variation-icons {
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .item-area .variation-icons {
    width: 100%;
    margin-right: 0;
  }
}
.item-area .label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 124px;
}
@media screen and (max-width: 768px) {
  .item-area .label {
    width: 100%;
    margin-bottom: 10px;
  }
}
.item-area .label li {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.1em;
  margin-right: 8px;
}
.item-area .label li.label-type1 {
  background: #fff;
  border: 1px solid;
}
.item-area .label li.label-type1.muku {
  border-color: #8b4513;
  color: #8b4513;
}
.item-area .label li.label-type1.hukugo {
  border-color: #757575;
  color: #757575;
}
.item-area .label li.label-type2 {
  background: #757575;
  color: #fff;
}
.item-area .label li.label-type3 {
  color: #fff;
}
.item-area .label li.label-type3.kozai {
  background: #996633;
}
.item-area .label li.label-type3.yukadan {
  background: #cd5c5c;
}
.item-area .label li.label-type3.hunen {
  background: #006699;
}
.item-area .label li.label-type3.jyunhu {
  background: #3491ae;
}
.item-area .label li.label-type3.nannen {
  background: #666699;
}
.item-area .label li.label-type3.taika {
  background: #006666;
}
.item-area .label li.label-type3.bouka {
  background: #666666;
}

.pager {
  display: flex;
  margin: 40px 185px 150px auto;
  justify-content: flex-end;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .pager {
    margin: 20px auto;
    justify-content: center;
  }
}
.pager li {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-color: #fff;
}
.pager li:last-of-type {
  margin-right: 0;
}
.pager li a,
.pager li span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pager li.num {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1em;
  color: #007b50;
}
.pager li.num.active {
  background-color: #007b50;
  color: #fff;
  border-radius: 3px;
}
.pager li.first img {
  width: 12px;
}
.pager li.last img {
  width: 12px;
}
.pager li.prev {
  border: 1px solid #b2b2b2;
  width: 38px;
  border-radius: 3px;
  margin-right: 20px;
}
.pager li.prev img {
  width: 8px;
}
.pager li.next {
  border: 1px solid #b2b2b2;
  width: 38px;
  border-radius: 3px;
  margin-left: 10px;
}
.pager li.next img {
  width: 8px;
}

.unit-price {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .unit-price {
    margin-bottom: 0;
  }
}
.unit-price .yen {
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0.1em;
  color: #cd0000;
  font-size: 12px;
}
.unit-price .yen .s1 {
  font-size: 20px;
}
.unit-price .yen .s2 {
  font-size: 20px;
}
.unit-price .tax {
  font-weight: 500;
  line-height: 13px;
  letter-spacing: 0.1em;
  font-size: 11px;
  padding-top: 3px;
  color: #000;
}

.item-group .item-title {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  display: flex;
  align-items: center;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .item-group .item-title {
    justify-content: flex-end;
    padding: 0 16px;
  }
}
.item-group .item-title p {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.1em;
}
.item-group .item-title .g1 {
  width: 196px;
}
@media screen and (max-width: 768px) {
  .item-group .item-title .g1 {
    display: none;
  }
}
.item-group .item-title .g2 {
  width: 500px;
}
@media screen and (max-width: 768px) {
  .item-group .item-title .g2 {
    display: none;
  }
}
.item-group .item-title .oneboard-g2 {
  padding-left: 25px;
}
.item-group .item-title .result-change {
  display: flex;
  align-items: center;
  width: 204px;
  justify-content: flex-end;
}
.item-group .item-title .result-change .result-text {
  width: 70px;
}
.item-group .item-title .result-change .search-input {
  width: 75px;
}
.item-group .item-title .result-sort {
  display: flex;
  align-items: center;
  margin: 0 0 0 30px;
}
.item-group .item-title .result-sort .result-text_title {
  width: 70px;
}
.item-group .item-title .result-sort .search-input {
  width: 120px;
}
.item-group .type-title {
  background: #e5e5e5;
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #757575;
}
@media screen and (max-width: 768px) {
  .item-group .type-title {
    padding: 10px 16px;
  }
}
.item-group .type-title h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.1em;
  margin-right: 10px;
}
.item-group .type-title .num {
  display: flex;
}
.item-group .type-title .num p {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.1em;
  margin-right: 5px;
}
.item-group .type-title .num p span {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.1em;
}
.item-group .type-title dl {
  display: flex;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .item-group .type-title dl {
    display: none;
  }
}
.item-group .type-title dl dt {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1em;
}
.item-group .type-title dl dt:after {
  content: "：";
}
.item-group .type-title dl dd ul {
  display: flex;
}
.item-group .type-title dl dd ul li {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #007b50;
}
.item-group .type-title dl dd ul li:after {
  content: "・";
  color: #000;
}
.item-group .type-title dl dd ul li:last-of-type:after {
  content: "";
}
.item-group .group-box {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  flex-wrap: wrap;
  border-bottom: 1px solid #757575;
}
.item-group .group-box.hikeisai .left .img:after {
  left: 0;
  top: 0;
  position: absolute;
  background: #1f9970;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  padding: 0 8px 0 7px;
  content: "非掲載商品あり";
}
.item-group .group-box .left {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .item-group .group-box .left {
    width: 100%;
    padding: 16px;
  }
}
.item-group .group-box .left figure {
  width: 100%;
  position: relative;
}
.item-group .group-box .left figure.img {
  margin-bottom: 5px;
}
.item-group .group-box .left figure.img img {
  width: 100%;
}
.item-group .group-box .left figure.acc-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  border: 1px solid #b2b2b2;
  border-radius: 12px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .item-group .group-box .left figure.acc-btn {
    display: none;
  }
}
.item-group .group-box .left figure.acc-btn img {
  transition: ease 0.3s;
}
.item-group .group-box .left figure.acc-btn.action img {
  transform: scale(1, -1);
}
.item-group .group-box .center {
  width: 520px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .item-group .group-box .center {
    width: 100%;
  }
}
.item-group .group-box .center .center-left {
  width: 330px;
}
@media screen and (max-width: 768px) {
  .item-group .group-box .center .center-left {
    width: 100%;
    margin-bottom: 10px;
  }
}
.item-group .group-box .center .center-left .type {
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.1em;
}
.item-group .group-box .center .center-left h4 {
  color: #009762;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  height: 51px;
  display: flex;
  align-items: center;
}
.item-group .group-box .center .center-left h4 .s2 {
  font-size: 18px;
}
.item-group .group-box .center .center-left .group-information .width-thickness {
  width: 60%;
}
.item-group .group-box .center .center-left .group-information .width-thickness dl:first-of-type {
  width: 38%;
}
.item-group .group-box .center .center-left .group-information .width-thickness dl:last-of-type {
  width: 58%;
}
.item-group .group-box .center .center-left .group-information .label-type {
  width: 40%;
}
.item-group .group-box .center .center-right {
  width: 140px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .item-group .group-box .center .center-right {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    border-bottom: 1px solid #b3b3b3;
  }
}
.item-group .group-box .center .center-right-c1 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .item-group .group-box .center .center-right-c1 {
    width: 63%;
  }
}
.item-group .group-box .center .center-right-c2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .item-group .group-box .center .center-right-c2 {
    width: 35%;
  }
}
.item-group .group-box .center .center-right .company {
  font-size: 11px;
  color: #757575;
  display: inline-block;
  text-align: right;
  display: flex;
}
@media screen and (max-width: 768px) {
  .item-group .group-box .center .center-right .company {
    width: 100%;
    text-align: left;
  }
}
.item-group .group-box .center .center-right .company::before {
  flex-shrink: 0;
  content: "";
  width: 9px;
  height: 12px;
  margin: 3px 5px 0 0;
  background: url(../images/icon/pin.png) no-repeat center center/contain;
}
.item-group .group-box .center .center-right .id {
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-align: right;
  margin: auto 0 5px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .item-group .group-box .center .center-right .id {
    width: 100%;
    text-align: left;
  }
}
.item-group .group-box .center .center-right .unit-price {
  margin: 0;
  width: 100%;
}
.item-group .group-box .center .center-right .unit-price p {
  text-align: right;
}
.item-group .group-box .center .center-right .unit-price.login {
  display: flex;
  justify-content: flex-end;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .item-group .group-box .center .center-right .unit-price.login {
    display: block;
  }
}
.item-group .group-box .center .center-right .unit-price.login .s2 {
  font-size: 20px;
}
.item-group .group-box .center .center-right .oroshi {
  background: #757575;
  width: 100%;
  margin: 10px 0 12px 0;
}
.item-group .group-box .center .center-right .oroshi a {
  font-size: 12px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  display: block;
}
.item-group .group-box .right {
  width: 200px;
  border-left: 1px solid #b2b2b2;
}
@media screen and (max-width: 768px) {
  .item-group .group-box .right {
    width: 100%;
    padding: 0 16px;
    border-left: none;
  }
}
.item-group .group-box .right dl {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.item-group .group-box .right dl dt {
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.1em;
  margin-right: 5px;
}
.item-group .group-box .right dl dt:after {
  content: ":";
}
.item-group .group-box .right dl dd ul {
  display: flex;
  justify-content: space-between;
}
.item-group .group-box .right dl dd ul li {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.1em;
  color: #b2b2b2;
}
.item-group .group-box .right dl dd ul li.active {
  color: #000;
}
.item-group .group-box .right .tokyu {
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .item-group .group-box .right .tokyu {
    margin: 10px 0;
  }
}
.item-group .group-box .right .tokyu ul {
  width: 150px;
}
.item-group .group-box .right .toso {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .item-group .group-box .right .toso {
    margin: 10px 0;
  }
}
.item-group .group-box .right .toso ul {
  width: 160px;
}
.item-group .acc-content {
  width: 870px;
  margin: 0 0 0 30px;
  display: flex;
  border-bottom: 1px solid #757575;
}
.item-group .acc-content .variation-area {
  width: 670px;
}
.item-group .acc-content .right-area {
  width: 200px;
  padding-left: 5px;
}
.item-group .acc-content .right-area .my-add-estimate-btn {
  margin-top: 8px;
  padding: 4.7px 0;
}
.item-group .acc-content .right-area .my-add-estimate-btn span {
  padding-left: 22px;
  font-size: 13px;
}
.item-group .acc-content .right-area .contact-btns {
  margin-top: 7px;
}
.item-group .acc-content .right-area .contact-btn-tell,
.item-group .acc-content .right-area .contact-btn-chat {
  width: calc(50% - 2px);
  padding: 0 0 2px 0;
}
.item-group .acc-content .right-area .contact-btn-tell span,
.item-group .acc-content .right-area .contact-btn-chat span {
  font-size: 10px;
  letter-spacing: 0px;
  padding-left: 20px;
}
.item-group .acc-content .right-area .contact-btn-chat {
  margin-left: 4px;
}
.item-group .acc-content .right-area .contact-btn-chat span:before {
  width: 13px;
  height: 14px;
  left: 4px;
}
.item-group .acc-content .right-area .contact-btn-tell {
  margin-left: 4px;
}
.item-group .acc-content .right-area .contact-btn-tell span:before {
  width: 13px;
  height: 14px;
}
.item-group .variation-box {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #757575;
}
.item-group .variation-box:last-of-type {
  border-bottom: none;
}
.item-group .variation-box.hikeisai .left .img:after {
  left: 0;
  top: 0;
  position: absolute;
  background: #1f9970;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  padding: 0 8px 0 7px;
  content: "非掲載";
}
.item-group .variation-box .left {
  width: 150px;
  display: flex;
  justify-content: space-between;
}
.item-group .variation-box .left .img {
  width: 110px;
  position: relative;
}
.item-group .variation-box .left .img img {
  width: 100%;
}
.item-group .variation-box .center {
  width: 520px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
.item-group .variation-box .center .center-left {
  width: 330px;
}
.item-group .variation-box .center .center-left h5 {
  color: #009762;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.item-group .variation-box .center .center-left .information {
  background: #f2f2f2;
  padding: 7px 10px;
  display: flex;
  justify-content: space-between;
  border-radius: 3px;
}
.item-group .variation-box .center .center-left .information dl {
  margin: 0;
}
.item-group .variation-box .center .center-left .information dl:first-of-type {
  width: 29%;
}
.item-group .variation-box .center .center-left .information dl:nth-of-type(2) {
  width: 33%;
}
.item-group .variation-box .center .center-left .information dl:nth-of-type(3) {
  width: 33%;
}
.item-group .variation-box .center .center-left .information dl dt {
  font-size: 10px;
  line-height: 17px;
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: 1px solid #b2b2b2;
}
.item-group .variation-box .center .center-left .information dl dd {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-align: center;
}
.item-group .variation-box .center .center-left .information dl dd span {
  font-size: 10px;
}
.item-group .variation-box .center .center-right {
  width: 140px;
}
.item-group .variation-box .center .center-right .id {
  font-size: 11px;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-align: right;
  margin-bottom: 20px;
}
.item-group .variation-box .center .center-right .unit-price {
  text-align: right;
  margin-bottom: 0;
}
.item-group .variation-link {
  width: 180px;
  border: 1px solid #111111;
  border-radius: 3px;
  margin: 0 0 5px auto;
}
@media screen and (max-width: 768px) {
  .item-group .variation-link {
    width: 100%;
  }
}
.item-group .variation-link a {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
}
.item-group .variation-num {
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-align: right;
}

/*============================================
          variation						
============================================*/
.variation-item {
  padding: 10px 0 10px 0px;
  border-bottom: 1px solid #757575;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  justify-content: space-between;
}
.variation-item.hikeisai .variation-item-left .variation-image:after {
  left: 0;
  top: 0;
  position: absolute;
  background: #1f9970;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  padding: 0 8px 0 7px;
  content: "非掲載";
}
@media screen and (max-width: 768px) {
  .variation-item {
    border-bottom: none;
    flex-wrap: wrap;
    padding: 10px 16px;
    width: 100%;
  }
}
.variation-item-left {
  display: flex;
}
@media screen and (max-width: 768px) {
  .variation-item-left {
    width: 100%;
    margin-bottom: 10px;
  }
}
.variation-item-left .variation-image {
  display: block;
  margin-left: 10px;
  position: relative;
  width: 215px;
}
@media screen and (max-width: 768px) {
  .variation-item-left .variation-image {
    width: calc(100% - 28px);
  }
}
.variation-item-left .variation-image a img {
  width: 100%;
}
.variation-item-left .variation-image .slick-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.variation-item-left .variation-image .slide-arrow {
  bottom: 0;
  cursor: pointer;
  position: absolute;
  width: 30px;
  z-index: 4;
}
.variation-item-left .variation-image .slide-arrow.prev-arrow {
  display: none !important;
}
.variation-item-left .variation-image .slide-arrow.next-arrow {
  right: 0;
}
.variation-item-right {
  width: calc(100% - 253px);
}
@media screen and (max-width: 768px) {
  .variation-item-right {
    width: 100%;
    margin-left: 0;
  }
}
.variation-item-right-top {
  align-items: end;
  border-bottom: 1px solid #b2b2b2;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 8px;
}
.variation-item-right-top-left {
  width: 500px;
}
@media screen and (max-width: 768px) {
  .variation-item-right-top-left {
    width: 100%;
    margin-bottom: 10px;
  }
}
.variation-item-right-top-left .topMiddle {
  align-items: center;
  display: flex;
  margin-top: 3px;
}
@media screen and (max-width: 768px) {
  .variation-item-right-top-left .topMiddle {
    width: 100%;
    flex-wrap: wrap;
  }
}
.variation-item-right-down-list {
  display: flex;
}

/*============================================
          oneboard						
============================================*/
.oneboard-item {
  padding: 10px 0 10px 0px;
  border-bottom: 1px solid #757575;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  justify-content: space-between;
}
.oneboard-item.hikeisai .oneboard-item-left .oneboard-image:after {
  left: 0;
  top: 0;
  position: absolute;
  background: #1f9970;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  padding: 0 8px 0 7px;
  content: "非掲載";
}
@media screen and (max-width: 768px) {
  .oneboard-item {
    border-bottom: none;
    flex-wrap: wrap;
    padding: 10px 16px;
    width: 100%;
  }
}
.oneboard-item-left {
  display: flex;
}
@media screen and (max-width: 768px) {
  .oneboard-item-left {
    width: 100%;
    margin-bottom: 10px;
  }
}
.oneboard-item-left .oneboard-image {
  display: block;
  margin-left: 10px;
  position: relative;
  width: 170px;
}
.oneboard-item-left .oneboard-image img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .oneboard-item-left .oneboard-image {
    width: calc(100% - 28px);
  }
}
.oneboard-item-right {
  width: calc(100% - 220px);
}
@media screen and (max-width: 768px) {
  .oneboard-item-right {
    width: 100%;
    margin-left: 0;
  }
}
.oneboard-item-right-top {
  align-items: end;
  border-bottom: 1px solid #b2b2b2;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 8px;
}
.oneboard-item-right-top-left {
  width: 500px;
}
@media screen and (max-width: 768px) {
  .oneboard-item-right-top-left {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .oneboard-item-right-top-left .width-thickness {
    width: 100%;
  }
}

.item-kind {
  color: #757575;
  font-size: 11px;
  font-weight: 400;
}

.item-name {
  color: #009762;
  display: block;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .item-name {
    margin-bottom: 10px;
  }
}

.item-right-tips {
  line-height: 1em;
  margin-left: auto;
  text-align: right;
  width: 145px;
}
@media screen and (max-width: 768px) {
  .item-right-tips {
    display: flex;
    justify-content: space-between;
    margin-left: 0;
    text-align: left;
    width: 100%;
  }
}
.item-right-tips .company {
  font-size: 11px;
  color: #757575;
  display: flex;
}
@media screen and (max-width: 768px) {
  .item-right-tips .company {
    display: none;
  }
}
.item-right-tips .company::before {
  flex-shrink: 0;
  content: "";
  margin-top: 3px;
  width: 9px;
  height: 12px;
  margin-right: 3px;
  background: url(../images/icon/pin.png) no-repeat center center/contain;
}
.item-right-tips .id {
  font-size: 11px;
  color: #000;
}
.item-right-tips .unit-price {
  margin-top: 10px;
  margin-bottom: 0;
}
.item-right-tips .oroshi {
  background: #757575;
  width: 100%;
  margin: 10px 0 12px 0;
}
.item-right-tips .oroshi a {
  font-size: 12px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  display: block;
}

.width-thickness {
  padding: 5px 10px;
  margin-top: 7px;
  background-color: #f2f2f2;
  border-radius: 3px;
  justify-content: space-between;
  width: 370px;
}
.width-thickness dl {
  margin: 0;
}
.width-thickness dl:first-child {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .width-thickness dl:first-child {
    width: 80px;
  }
}
.width-thickness dl:nth-child(2) {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .width-thickness dl:nth-child(2) {
    width: 80px;
  }
}
.width-thickness dl:nth-child(3) {
  width: 109px;
}
@media screen and (max-width: 768px) {
  .width-thickness dl:nth-child(3) {
    width: 100px;
  }
}

.type-list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .type-list {
    border-bottom: 1px solid #b2b2b2;
    justify-content: space-between;
    margin-bottom: 10px;
  }
}
.type-list dl {
  margin: 5px 27px 5px 0;
  min-width: 70px;
}
@media screen and (max-width: 768px) {
  .type-list dl {
    margin: 5px 0;
  }
  .type-list dl:nth-of-type(4) {
    display: none;
  }
  .type-list dl:nth-of-type(5) {
    display: none;
  }
}
.type-list dl dd .color {
  padding-left: 15px;
  position: relative;
  display: inline-block;
}
.type-list dl dd .color::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.type-list dl dd .white::before {
  background-color: #fff;
  border: 1px solid #757575;
}
.type-list dl dd .red::before {
  background-color: #d72a2a;
}
.type-list dl dd .yellow::before {
  background-color: #ece304;
}
.type-list dl dd .brown::before {
  background-color: #8a3a20;
}
.type-list dl dd .green::before {
  background-color: #3cae14;
}
.type-list dl dd .black::before {
  background-color: #000;
}
.type-list dl dd .blue::before {
  background-color: #0445ec;
}
.type-list dl dd .gray::before {
  background-color: #9e9e9e;
}

.width-thickness,
.type-list {
  display: flex;
}
.width-thickness dl dt,
.type-list dl dt {
  font-size: 10px;
  line-height: 17px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #b2b2b2;
}
.width-thickness dl dd,
.type-list dl dd {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}
.width-thickness dl dd span,
.type-list dl dd span {
  font-size: 10px;
}

.bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 67px;
  background: rgba(17, 17, 17, 0.5);
  z-index: 10;
  transition: ease 0.5s;
}
@media screen and (max-width: 768px) {
  .bar {
    display: none;
  }
}
.bar .bar_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}
.bar .bar_inner .bar_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.1em;
  border-radius: 5px;
  font-weight: 400;
}
.bar .bar_inner .bar_btn img {
  width: 20px;
  margin-right: 5px;
}
.bar .bar_inner .left {
  width: 70%;
  display: flex;
  align-items: center;
  padding-left: 300px;
}
.bar .bar_inner .left .bar_mylist {
  background: #009762;
  color: #fff;
  font-weight: 600;
}
.bar .bar_inner .right {
  width: 28%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bar .bar_inner .right .bar_btn {
  background: #fff;
  width: 163px;
}

.left-icon-area {
  width: 18px;
  /*margin: 0 7px;*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.left-icon-area .mylist-add {
  width: 18px;
  position: relative;
  cursor: pointer;
}
.left-icon-area .mylist-add:hover .mylist-add-text {
  display: block;
}
.left-icon-area .mylist-add.active svg path {
  stroke: #007b50;
  fill: #007b50;
}
.left-icon-area .mylist-add.active .mylist-add-text .add-text {
  display: none;
}
.left-icon-area .mylist-add.active .mylist-add-text .remove-text {
  display: block;
}
.left-icon-area .mylist-add-text {
  position: absolute;
  left: -150px;
  top: 0;
  width: 128px;
  background-color: #636363;
  display: none;
}
.left-icon-area .mylist-add-text p {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}
.left-icon-area .mylist-add-text p:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left: 10px solid #636363;
  z-index: 0;
}
.left-icon-area .mylist-add-text .remove-text {
  display: none;
}

.view-photos {
  width: 18px;
  position: relative;
}
.view-photos:hover .view-photos-text {
  display: block;
}
.view-photos a {
  width: 18px;
  display: block;
}
.view-photos a img {
  display: block;
}
.view-photos-text {
  position: absolute;
  left: -150px;
  top: 0;
  width: 128px;
  background-color: #636363;
  display: none;
}
.view-photos-text p {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}
.view-photos-text p:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left: 10px solid #636363;
  z-index: 0;
}

.my-add-estimate-btn {
  margin-top: 10px;
  text-align: center;
  display: block;
  width: 100%;
  color: #fff;
  background-color: #007b50;
  font-weight: 500;
  padding: 8px 0;
  border-radius: 3px;
}
.my-add-estimate-btn span {
  padding-left: 27px;
  position: relative;
}
.my-add-estimate-btn span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 21px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/estimate-btn.png) no-repeat center center/contain;
}

.contact-btns {
  display: flex;
  margin-top: 10px;
}

.contact-btn-tell,
.contact-btn-chat {
  display: block;
  font-weight: 400;
  width: calc(50% - 6px);
  text-align: center;
  border: 1px solid #c4c4c4;
  border-radius: 3px;
  padding: 6px 0;
}
.contact-btn-tell span,
.contact-btn-chat span {
  position: relative;
  padding-left: 23px;
}
.contact-btn-tell span::before,
.contact-btn-chat span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.contact-btn-tell span::before {
  background-image: url(../images/icon/icon-tell.png);
}

.contact-btn-chat {
  margin-left: 12px;
}
.contact-btn-chat span::before {
  background-image: url(../images/icon/icon-chat.png);
}

.group-information {
  background: #f2f2f2;
  padding: 5px 10px;
  border-radius: 3px;
  display: flex;
}
.group-information .width-thickness {
  padding-right: 10px;
  border-right: 1px solid #b2b2b2;
  display: flex;
  justify-content: space-between;
}
.group-information .width-thickness dl {
  margin: 5px 0;
}
.group-information .width-thickness dl dt {
  font-size: 10px;
  line-height: 17px;
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: 1px solid #b2b2b2;
}
.group-information .width-thickness dl dd {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-align: center;
}
.group-information .width-thickness dl dd span {
  font-size: 10px;
}

.label-type {
  padding-left: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.label-type li {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.1em;
  margin-right: 6px;
}
.label-type li.label-type1 {
  background: #fff;
  border: 1px solid;
}
.label-type li.label-type1.muku {
  border-color: #8b4513;
  color: #8b4513;
}
.label-type li.label-type1.hukugo {
  border-color: #757575;
  color: #757575;
}
.label-type li.label-type2 {
  background: #757575;
  color: #fff;
}
.label-type li.label-type3 {
  color: #fff;
}
.label-type li.label-type3.kozai {
  background: #996633;
}
.label-type li.label-type3.yukadan {
  background: #cd5c5c;
}
.label-type li.label-type3.hunen {
  background: #006699;
}
.label-type li.label-type3.jyunhu {
  background: #3491ae;
}
.label-type li.label-type3.nannen {
  background: #666699;
}
.label-type li.label-type3.taika {
  background: #006666;
}
.label-type li.label-type3.bouka {
  background: #666666;
}

main {
  width: 100%;
  margin-top: 130px;
}
main > div {
  border-top: 1px solid transparent;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 87px;
  }
}

.registry-main {
  display: block;
  background-color: #F0F0F0;
  width: 100%;
  padding: 0 0 160px 0;
}
@media screen and (max-width: 768px) {
  .registry-main {
    background-color: #fff;
    padding: 0;
  }
}
.registry-main .registry-catchcopy {
  padding: 60px 0 100px;
  background: white;
  width: 1060px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-catchcopy {
    width: 100%;
    padding: 20px 0 100px 0;
  }
}
.registry-main .sentok {
  border: none;
  float: none;
  cursor: pointer;
  cursor: hand;
}
.registry-main .sent {
  background: linear-gradient(#CD0000, #CD0000);
  border-radius: 50px;
  color: #fff;
  display: block;
  font-weight: 400;
  height: 40px;
}
.registry-main .hyphen {
  margin-right: -29px;
}
.registry-main .registry-cmn {
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn {
    width: 100%;
  }
}
.registry-main .registry-cmn .registry-catchcopy-tit {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 46px;
}
.registry-main .registry-cmn .registry-merit-box {
  border-bottom: 1px solid;
}
.registry-main .registry-cmn .registry-step {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 60px auto;
  width: 400px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn .registry-step {
    width: 100%;
  }
}
.registry-main .registry-cmn .registry-step .step-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 155px;
}
.registry-main .registry-cmn .registry-step .step-block:before {
  content: "";
  width: 120px;
  height: 2px;
  background: #b2b2b2;
  position: absolute;
  top: 15px;
  right: 40px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn .registry-step .step-block:before {
    width: 110px;
  }
}
.registry-main .registry-cmn .registry-step .step-block .step-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.1em;
  text-align: center;
}
.registry-main .registry-cmn .registry-step .step-block .step-number {
  width: 29px;
  height: 29px;
  border: 1px solid;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  line-height: 29px;
  padding-left: 3px;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 10px;
  background: #fff;
  position: relative;
  z-index: 2;
}
.registry-main .registry-cmn .registry-step .step-block .step-name {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: center;
}
.registry-main .registry-cmn .registry-step .step-block.done .step-number {
  background: #007B65;
  border-color: #007B65;
  color: #fff;
}
.registry-main .registry-cmn .registry-step .step-block.done:before {
  background: #757575;
}
.registry-main .registry-cmn .registry-step .step-block:first-of-type:before {
  display: none;
}
.registry-main .registry-cmn .registry-form-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 60px;
}
.registry-main .registry-cmn form .form-box {
  width: 793px;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn form .form-box {
    width: 100%;
    padding: 0 20px;
  }
}
.registry-main .registry-cmn form .form-box .form-tel {
  width: 350px;
}
.registry-main .registry-cmn form .form-box dl {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn form .form-box dl {
    width: 100%;
    flex-direction: column;
  }
}
.registry-main .registry-cmn form .form-box dl .form-input {
  flex-wrap: wrap;
}
.registry-main .registry-cmn form .form-box dl .form-input .ft3-box {
  width: 20%;
}
.registry-main .registry-cmn form .form-box dl dt {
  width: 199px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn form .form-box dl dt {
    width: 100%;
    justify-content: flex-start;
  }
}
.registry-main .registry-cmn form .form-box dl dt.confirmation {
  font-size: 14px;
  font-weight: 400;
  color: #757575;
}
.registry-main .registry-cmn form .form-box dl dt span.hissu {
  color: #fff;
  background: #D94141;
  font-size: 11px;
  width: 51px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn form .form-box dl dt span.hissu {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn form .form-box dl dt .hissu {
    margin-left: 16px;
  }
}
.registry-main .registry-cmn form .form-box dl dt .hissu .nessesary-condition-ok {
  background-color: #e5f6ef;
  color: #007B65;
  padding: 5px 13px;
  font-size: 11px;
  width: 56px;
  display: inline-block;
  text-align: center;
}
.registry-main .registry-cmn form .form-box dl dt .hissu .nessesary-condition-ng {
  background-color: #d94141;
  color: #ffffff;
  padding: 5px 13px;
  font-size: 11px;
  width: 56px;
  display: inline-block;
  text-align: center;
}
.registry-main .registry-cmn form .form-box dl dd {
  width: 579px;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn form .form-box dl dd {
    width: 100%;
  }
}
.registry-main .registry-cmn form .pp-agree {
  margin: auto;
  width: 100%;
  padding: 24px;
  border: 1px solid #f0f0f0;
}
.registry-main .registry-cmn form .pp-agree a {
  color: #757575;
  font-weight: 600;
  text-decoration: underline;
}
.registry-main .registry-cmn form .pp-agree .check-text {
  font-size: 14px;
  line-height: 200%;
  margin-bottom: 8px;
  margin-left: 8px;
}
.registry-main .registry-cmn form .pp-agree .pp-agree-title {
  display: flex;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn form .pp-agree .pp-agree-title {
    display: block;
  }
}
.registry-main .registry-cmn form .pp-agree .pp-agree-title span.hissu {
  color: #fff;
  background: #D94141;
  font-size: 11px;
  width: 51px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn form .pp-agree .pp-agree-title span.hissu {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn form .pp-agree .pp-agree-title .hissu {
    margin-left: 8px;
  }
}
.registry-main .registry-cmn form .pp-agree .pp-agree-title .hissu .nessesary-condition-ok {
  background-color: #e5f6ef;
  color: #007B65;
  padding: 5px 13px;
  font-size: 11px;
  width: 56px;
  display: inline-block;
  text-align: center;
}
.registry-main .registry-cmn form .pp-agree .pp-agree-title .hissu .nessesary-condition-ng {
  background-color: #d94141;
  color: #ffffff;
  padding: 5px 13px;
  font-size: 11px;
  width: 56px;
  display: inline-block;
  text-align: center;
}
.registry-main .registry-cmn .search-input.input_02 {
  width: 230px;
}
.registry-main .registry-cmn .search-input.input_02 .select-box {
  box-sizing: border-box;
  width: 230px;
  height: 34px;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 400;
}
.registry-main .registry-cmn .mail-note {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: left;
  width: 100%;
  margin-top: 0px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn .mail-note {
    text-align: left;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.registry-main .registry-cmn .registry-form-txt {
  margin: 0 0 45px 0;
  text-align: center;
  font-size: 14px;
  line-height: 28px;
}
.registry-main .registry-cmn .registry-form-txt span {
  font-size: 12px;
  display: block;
}
.registry-main .registry-cmn .registry-caution {
  background: #E4E4E4;
  padding: 23px 41px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn .registry-caution {
    padding: 23px 34px;
  }
}
.registry-main .registry-cmn .registry-caution h4 {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1em;
}
.registry-main .registry-cmn .registry-caution ul {
  padding-left: 1em;
}
.registry-main .registry-cmn .registry-caution ul li {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-indent: -1em;
}
.registry-main .registry-cmn .registry-caution ul li:before {
  content: "＊";
}
.registry-main .registry-cmn .registry-auth,
.registry-main .registry-cmn .registry-confirm,
.registry-main .registry-cmn .registry-complete {
  padding: 50px 0;
  border-top: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn .registry-auth,
  .registry-main .registry-cmn .registry-confirm,
  .registry-main .registry-cmn .registry-complete {
    padding: 0px 20px;
    border-top: none;
    border-bottom: none;
  }
  .registry-main .registry-cmn .registry-auth:before,
  .registry-main .registry-cmn .registry-confirm:before,
  .registry-main .registry-cmn .registry-complete:before {
    width: 80%;
    height: 1px;
    background: #E5E5E5;
    content: "";
    display: block;
    margin: 0 auto 30px auto;
  }
}
.registry-main .registry-cmn .registry-auth ul,
.registry-main .registry-cmn .registry-confirm ul,
.registry-main .registry-cmn .registry-complete ul {
  padding-left: 1em;
}
.registry-main .registry-cmn .registry-auth ul li,
.registry-main .registry-cmn .registry-confirm ul li,
.registry-main .registry-cmn .registry-complete ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-indent: -1em;
}
.registry-main .registry-cmn .registry-auth ul li a,
.registry-main .registry-cmn .registry-confirm ul li a,
.registry-main .registry-cmn .registry-complete ul li a {
  color: #007B65;
  text-decoration: underline;
}
.registry-main .registry-cmn .registry-auth ul li:before,
.registry-main .registry-cmn .registry-confirm ul li:before,
.registry-main .registry-cmn .registry-complete ul li:before {
  content: "＊";
}
.registry-main .registry-cmn .registry-auth .complete-txt1,
.registry-main .registry-cmn .registry-confirm .complete-txt1,
.registry-main .registry-cmn .registry-complete .complete-txt1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 15px;
}
.registry-main .registry-cmn .registry-auth .complete-txt2,
.registry-main .registry-cmn .registry-confirm .complete-txt2,
.registry-main .registry-cmn .registry-complete .complete-txt2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: center;
}
.registry-main .registry-cmn .registry-auth .complete-txt3,
.registry-main .registry-cmn .registry-confirm .complete-txt3,
.registry-main .registry-cmn .registry-complete .complete-txt3 {
  margin-top: 40px;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: left;
}
.registry-main .registry-cmn .pswd dd p.pswd-txt {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.1em;
  text-align: right;
  width: 100%;
}
.registry-main .registry-cmn .detail-category dd .cate-txt1 {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
}
.registry-main .registry-cmn .detail-category dd .cate-txt1 span {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.1em;
}
.registry-main .registry-cmn .detail-category dd .cate-txt2 {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.1em;
}
.registry-main .registry-cmn .detail-category dd .check-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  margin-top: 10px;
}
.registry-main .registry-cmn .detail-category dd .check-flex label {
  width: 25%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn .detail-category dd .check-flex label {
    width: 50%;
  }
}
.registry-main .registry-cmn .detail-category dd .check-flex label .check-form {
  width: 18px;
  height: 18px;
}
.registry-main .registry-cmn .detail-category dd .check-flex label .check-text {
  width: 100px;
  font-size: 14px;
  display: flex;
  align-items: center;
  line-height: normal;
  height: 26px;
}
.registry-main .registry-cmn .detail-category dd .check-flex label.check-full {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .registry-main .registry-cmn .detail-category dd .check-flex label.check-full {
    width: 50%;
  }
}
.registry-main .registry-cmn .detail-category dd .check-flex .form-text-detail {
  border: 1px solid #B3B3B3;
  box-sizing: border-box;
  width: 100%;
  height: 90px;
  padding: 18px;
  font-size: 12px;
  line-height: 10px;
}
.registry-main .registry-cmn .detail-category-confirm td {
  padding-top: 25px;
}
.registry-main .registry-cmn .detail-category-confirm .other-txt {
  margin-top: 10px;
}

.registry-merit {
  margin-bottom: 40px;
}
.registry-merit .registry-catchcopy-tit {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 46px;
}
@media screen and (max-width: 768px) {
  .registry-merit .registry-catchcopy-tit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #B2B2B2;
    border-bottom: 1px solid #B2B2B2;
    padding: 10px;
    font-size: 18px;
    margin-bottom: 20px !important;
  }
  .registry-merit .registry-catchcopy-tit:after {
    border: 0;
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
    content: "";
    height: 12px;
    margin-top: -6px;
    transform: rotate(45deg);
    width: 12px;
  }
  .registry-merit .registry-catchcopy-tit.action {
    border-bottom: none;
  }
}
.registry-merit .registry-merit-box {
  display: flex;
  justify-content: space-between;
  padding: 0 50px 20px 50px;
}
@media screen and (max-width: 768px) {
  .registry-merit .registry-merit-box {
    flex-direction: column;
  }
}
.registry-merit .registry-merit-box dl {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .registry-merit .registry-merit-box dl {
    width: 100%;
  }
}
.registry-merit .registry-merit-box dl:first-of-type .img {
  width: 55px;
}
.registry-merit .registry-merit-box dl:nth-of-type(2) .img {
  width: 71px;
}
.registry-merit .registry-merit-box dl:last-of-type .img {
  width: 67px;
}
.registry-merit .registry-merit-box dl .img {
  width: 100%;
  order: -1;
  margin-bottom: 10px;
}
.registry-merit .registry-merit-box dl .img img {
  width: 100%;
}
.registry-merit .registry-merit-box dl dt {
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.1em;
}
.registry-merit .registry-merit-box dl .txt {
  font-size: 11px;
  line-height: 22px;
  letter-spacing: 0.1em;
  text-align: center;
}
.registry-merit .registry-merit-box dl .txt span {
  color: #007B50;
}

.supplementary-explanation {
  font-size: 12px;
  color: #757575;
}

.pc-only {
  display: inline;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.form-supplemental {
  background: #e5f6ef;
  padding: 32px;
  margin: 32px 0;
}
.form-supplemental .form-supplemental-explanation {
  font-size: 14px;
  font-weight: 400;
}

.password-input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.password-input {
  padding-right: 50px;
  width: 100%;
}

.password-toggle-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.password-toggle-btn img {
  opacity: 0.6;
  transition: opacity 0.2s;
}
.password-toggle-btn:hover img {
  opacity: 1;
}

.pswd .form-text-box1 {
  padding-right: 50px;
}

.form-text-box1[type=password] {
  font-size: 18px;
}
.form-text-box1[type=password]::-moz-placeholder {
  font-size: 12px;
}
.form-text-box1[type=password]::placeholder {
  font-size: 12px;
}

.industry-job-select-btn {
  width: 120px;
  min-width: unset;
  padding: 6px 12px;
  border-radius: 4px;
}

.selected-industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.selected-industry-chip {
  display: inline-flex;
  align-items: center;
  background: #f6f6f6;
  border-radius: 16px;
  padding: 6px 16px;
  font-size: 12px;
  margin-right: 4px;
  color: #333;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.industry-job-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-job-modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  min-width: 320px;
  max-width: 800px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  position: relative;
}
.industry-job-modal-content input[type=checkbox] {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin-right: 6px;
}
.industry-job-modal-content .industry-job-modal-confirm-btn {
  margin: 32px auto 0;
}

.industry-job-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
  height: 32px;
}
.industry-job-modal-header h2 {
  margin: 0;
  flex: 1;
  font-size: 18px;
}
.industry-job-modal-header span {
  font-size: 14px;
  color: #757575;
}

.industry-job-modal-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
}
.industry-job-modal-close-btn:hover {
  background: #f0f0f0;
  color: #333;
}

.modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.industry-job-scroll-container {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 16px;
  padding-right: 8px;
}
.industry-job-scroll-container::-webkit-scrollbar {
  width: 8px;
}
.industry-job-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.industry-job-scroll-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.industry-job-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

.industry-job-category {
  padding: 24px 16px;
}
.industry-job-category:nth-child(odd) {
  background-color: #FAFAFA;
}
.industry-job-category:nth-child(even) {
  background-color: #ffffff;
}
.industry-job-category h3 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: bold;
}

.industry-job-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .industry-job-list {
    flex-direction: column;
    gap: 8px;
  }
}

.industry-job-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  margin-right: 16px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .industry-job-item {
    margin-right: 0;
  }
}

.industry-job-checkbox {
  margin-right: 8px;
  accent-color: #007B65;
}

.industry-job-checkbox-name {
  font-size: 16px;
}

.toast-top-center {
  top: 30px;
  font-size: 14px;
  line-height: 1.15;
}

#toast-container > div {
  opacity: 1 !important;
}

.registry-step {
  margin-bottom: 35px !important;
}

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

.complete-txt2.shorten-line-height {
  line-height: 24px !important;
  font-weight: bold !important;
}

.complete-txt3 {
  margin: 28px auto 0 !important;
}

.registry-complete {
  padding-top: 35px !important;
}

.to-top-link-wrapper {
  text-align: center;
  margin: 80px 0 0 0;
  color: #1f9970;
}
.to-top-link-wrapper a {
  border-bottom: 1px solid #1f9970;
}

@media screen and (max-width: 768px) {
  .registry-complete {
    padding: 0 0 40px 0 !important;
  }
  .to-content {
    margin-top: 20px;
    text-align: center;
    color: #1f9970;
    font-size: 14px;
  }
  .to-content a {
    border-bottom: 1px solid #1f9970;
  }
  .complete-txt3 {
    width: 80%;
  }
}
.news {
  margin-bottom: 100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 16px;
  }
}
.news > h1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 37px;
}
.news .news-cover {
  width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news .news-cover {
    width: 100%;
  }
}
.news .news-cover .news-list li {
  border-bottom: 1px solid;
}
.news .news-cover .news-list li:first-of-type {
  border-top: 1px solid;
}
.news .news-cover .news-list li a {
  padding: 15px 0;
  display: flex;
}
.news .news-cover .news-list li a p.date {
  width: 115px;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.1em;
}
.news .news-cover .news-list li a h4 {
  width: calc(100% - 115px);
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.1em;
}
.news .news-cover .pager {
  display: flex;
  margin: 60px auto 0 auto;
  max-width: 100%;
  justify-content: space-between;
  gap: 8px;
}
.news .news-cover .pager li {
  width: 30px;
  height: 30px;
  margin-right: 0;
}
.news .news-cover .pager li a,
.news .news-cover .pager li span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news .news-cover .pager li.num {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1em;
}
.news .news-cover .pager li.num.disabled {
  padding-top: 4px;
}
.news .news-cover .pager li.num.active {
  background-color: #007B65;
  color: #fff;
}
.news .news-cover .pager li.next {
  margin-left: 0;
}
.news .news-cover .pager li.first img {
  width: 12px;
}
.news .news-cover .pager li.last img {
  width: 12px;
}
.news .news-cover .pager li.prev img {
  width: 6px;
}
.news .news-cover .pager li.next img {
  width: 6px;
}
.news .news-cover article p.date {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.news .news-cover article h1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.news .news-cover article .detail {
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 30px 0;
}
.news .news-cover article .detail p {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
}

.mypage {
  display: block;
  background-color: #F0F0F0;
  width: 100%;
  padding: 0 0 200px 0;
  /* vue-final-modal のための基本的なスタイル例 */
}
@media screen and (max-width: 768px) {
  .mypage {
    background-color: #fff;
    padding: 0 0 50px 0;
  }
}
.mypage .btn.white {
  border-color: #1F9970;
  color: #1F9970;
}
.mypage .mypage-cover {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover {
    width: 100%;
  }
}
.mypage .mypage-cover .mypage-side {
  width: 16%;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-side {
    width: 100%;
    border-top: 1px solid #B2B2B2;
    border-bottom: 1px solid #B2B2B2;
  }
}
.mypage .mypage-cover .mypage-side .name-box {
  background-color: #fff;
  padding: 24px;
  margin-bottom: 40px;
}
.mypage .mypage-cover .mypage-side .name-box figure {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  margin: 0 auto 12px auto;
  overflow: hidden;
}
.mypage .mypage-cover .mypage-side .name-box figure img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-side .name-box figure {
    width: 165px;
    height: 165px;
  }
}
.mypage .mypage-cover .mypage-side .name-box .name {
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 2px;
}
.mypage .mypage-cover .mypage-side .name-box .company {
  font-size: 11px;
  line-height: 19px;
  letter-spacing: 0.1em;
  color: #757575;
  text-align: center;
}
.mypage .mypage-cover .mypage-side .menu {
  border-top: 1px solid;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-side .menu {
    display: flex;
    border-top: none;
  }
}
.mypage .mypage-cover .mypage-side .menu li.menu_direct {
  border-bottom: 1px solid;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-side .menu li.menu_direct {
    width: 100%;
    border-bottom: none;
    position: relative;
  }
  .mypage .mypage-cover .mypage-side .menu li.menu_direct:after {
    position: absolute;
    right: 0;
    height: 30px;
    width: 1px;
    content: "";
    background: #757575;
    top: 10px;
  }
  .mypage .mypage-cover .mypage-side .menu li.menu_direct:last-of-type:after {
    display: none;
  }
}
.mypage .mypage-cover .mypage-side .menu li.menu_direct > a,
.mypage .mypage-cover .mypage-side .menu li.menu_direct > span {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 11px 5px;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-side .menu li.menu_direct > a,
  .mypage .mypage-cover .mypage-side .menu li.menu_direct > span {
    flex-direction: column;
    position: relative;
  }
}
.mypage .mypage-cover .mypage-side .menu li.menu_direct > a figure,
.mypage .mypage-cover .mypage-side .menu li.menu_direct > span figure {
  width: 24px;
  height: 24px;
  margin-right: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-side .menu li.menu_direct > a figure,
  .mypage .mypage-cover .mypage-side .menu li.menu_direct > span figure {
    margin: 0;
  }
}
.mypage .mypage-cover .mypage-side .menu li.menu_direct > a figure img,
.mypage .mypage-cover .mypage-side .menu li.menu_direct > span figure img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.mypage .mypage-cover .mypage-side .menu li.menu_direct > a .txt,
.mypage .mypage-cover .mypage-side .menu li.menu_direct > span .txt {
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-side .menu li.menu_direct > a .txt,
  .mypage .mypage-cover .mypage-side .menu li.menu_direct > span .txt {
    color: #757575;
    font-size: 12px;
    text-align: center;
  }
}
.mypage .mypage-cover .mypage-side .menu li.menu_direct > a .num,
.mypage .mypage-cover .mypage-side .menu li.menu_direct > span .num {
  margin: 0 0 0 auto;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  color: #fff;
  background: #D50000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-side .menu li.menu_direct > a .num,
  .mypage .mypage-cover .mypage-side .menu li.menu_direct > span .num {
    position: absolute;
    top: 5px;
    right: 10px;
  }
}
.mypage .mypage-cover .mypage-side .menu li.menu_direct > a .num:empty,
.mypage .mypage-cover .mypage-side .menu li.menu_direct > span .num:empty {
  display: none;
}
.mypage .mypage-cover .mypage-side .menu li.menu_direct.side-mylist > span .right-icon {
  width: 17px;
  display: flex;
  align-items: center;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 3;
  transition: ease 0.3s;
}
.mypage .mypage-cover .mypage-side .menu li.menu_direct.side-mylist > span .right-icon.action {
  transform: rotate(180deg);
}
.mypage .mypage-cover .mypage-side .menu .acc-content li {
  padding-left: 42px;
  margin-bottom: 10px;
}
.mypage .mypage-cover .mypage-side .menu .acc-content li a {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.1em;
  width: 100%;
  display: block;
}
.mypage .mypage-cover .mypage-side .menu li.active > a .txt {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-side.mypage-top-side {
    border-top: none;
    border-bottom: none;
  }
  .mypage .mypage-cover .mypage-side.mypage-top-side .menu {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 16px;
  }
  .mypage .mypage-cover .mypage-side.mypage-top-side .menu:after {
    content: "";
    width: 30%;
    display: block;
  }
  .mypage .mypage-cover .mypage-side.mypage-top-side .menu li.menu_direct {
    width: 30%;
    border: 1px solid #B2B2B2;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .mypage .mypage-cover .mypage-side.mypage-top-side .menu li.menu_direct:after {
    display: none;
  }
  .mypage .mypage-cover .mypage-side.mypage-top-side .menu li.menu_direct .num {
    left: 30px;
    right: auto;
  }
}
.mypage .mypage-cover .mypage-main {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main {
    width: 100%;
  }
}
.mypage .mypage-cover .mypage-main .box {
  background-color: #fff;
  padding: 30px 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box {
    padding: 30px 16px;
  }
}
.mypage .mypage-cover .mypage-main .box.one-box {
  padding-bottom: 100px;
}
.mypage .mypage-cover .mypage-main .box .link {
  width: 100%;
}
.mypage .mypage-cover .mypage-main .box .link a {
  width: 100%;
  display: block;
  background-color: #000;
  font-size: 12px;
  line-height: 32px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
.mypage .mypage-cover .mypage-main .box .box-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid;
  padding-bottom: 14px;
}
.mypage .mypage-cover .mypage-main .box .box-title h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1em;
}
.mypage .mypage-cover .mypage-main .box .box-title .list_link {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #757575;
}
.mypage .mypage-cover .mypage-main .box.news-box {
  padding-bottom: 80px;
}
.mypage .mypage-cover .mypage-main .box.news-box .news-list li {
  border-bottom: 1px solid;
}
.mypage .mypage-cover .mypage-main .box.news-box .news-list li a {
  padding: 10px 0;
  display: flex;
}
.mypage .mypage-cover .mypage-main .box.news-box .news-list li a p.date {
  width: 80px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.1em;
}
.mypage .mypage-cover .mypage-main .box.news-box .news-list li a h4 {
  width: calc(100% - 80px);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.1em;
}
.mypage .mypage-cover .mypage-main .box.message-box ul {
  margin-top: 20px;
}
.mypage .mypage-cover .mypage-main .box.message-box ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mypage .mypage-cover .mypage-main .box.message-box ul li a figure {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.mypage .mypage-cover .mypage-main .box.message-box ul li a figure img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mypage .mypage-cover .mypage-main .box.message-box ul li a .txt {
  width: calc(100% - 70px);
}
.mypage .mypage-cover .mypage-main .box.message-box ul li a .txt .date-time {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.mypage .mypage-cover .mypage-main .box.message-box ul li a .txt .date-time p {
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0.1em;
  color: #757575;
}
.mypage .mypage-cover .mypage-main .box.message-box ul li a .txt h4 {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.1em;
}
.mypage .mypage-cover .mypage-main .box.mylist-box ul {
  margin-bottom: 30px;
}
.mypage .mypage-cover .mypage-main .box.mylist-box ul li {
  border-bottom: 1px solid;
}
.mypage .mypage-cover .mypage-main .box.mylist-box ul li a {
  padding: 11px 5px;
  width: 100%;
  display: block;
}
.mypage .mypage-cover .mypage-main .box.prof-box .box-title {
  margin-bottom: 20px;
}
.mypage .mypage-cover .mypage-main .box.prof-box p {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.mypage .mypage-cover .mypage-main .box.prof-box p.tell {
  margin-bottom: 20px;
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li {
  border-bottom: 1px solid;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li {
    padding: 0;
  }
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl {
  display: flex;
  align-items: center;
  /*padding:20px 0;*/
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dt {
  width: 20%;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dt {
    width: 100%;
    text-align: left;
    font-size: 16px;
  }
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dd.d1 {
  width: 65%;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dd.d1 {
    width: 100%;
  }
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dd.d1 dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dd.d1 dl {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dd.d1 dl dt {
  width: 25%;
  color: #757575;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dd.d1 dl dt {
    width: 100%;
  }
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dd.d1 dl dd {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dd.d1 dl dd {
    width: 100%;
  }
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dd.d2 {
  width: 15%;
  margin: 0;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dd.d2 {
    width: 100%;
    margin-left: 0;
  }
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dd.d2 a {
  width: 53px;
  height: 28px;
  border-radius: 20px;
  border: 1px solid #1F9970;
  color: #1F9970;
  font-size: 12px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li > dl > dd.d2 a {
    margin: 0 0 0 auto;
  }
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li.basic dd.d1 .image dd {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0 30px;
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li.basic dd.d1 .image dd img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li.basic dd.d1 .image dd {
    margin: 10px auto 0 30px;
  }
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li.basic dd.d1 dl {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li.basic dd.d1 dl dd {
  word-break: keep-all;
  overflow-wrap: break-word;
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li.basic dd.d1 dl.name1 .last-name, .mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li.basic dd.d1 dl.name2 .last-name {
  margin-right: 10px;
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li.basic .industry-job-slash {
  color: #B2B2B2;
  margin: 0 8px;
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li.cate_list dd.d1 ul {
  display: flex;
  flex-wrap: wrap;
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li.cate_list dd.d1 ul li {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
}
.mypage .mypage-cover .mypage-main .box.prof-detail-box .prof-list > li.cate_list dd.d1 ul li:nth-child(n+2) {
  margin-left: 10px;
}
.mypage .mypage-cover .mypage-main .box.basic-edit-box .box-title, .mypage .mypage-cover .mypage-main .box.pass-edit-box .box-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.basic-edit-box .box-title, .mypage .mypage-cover .mypage-main .box.pass-edit-box .box-title {
    margin-bottom: 20px;
  }
}
.mypage .mypage-cover .mypage-main .box.basic-edit-box .form-title-name, .mypage .mypage-cover .mypage-main .box.pass-edit-box .form-title-name {
  padding: 25px 0;
  display: flex;
  align-items: center;
}
.mypage .mypage-cover .mypage-main .box.basic-edit-box .form-title-name .form-title, .mypage .mypage-cover .mypage-main .box.pass-edit-box .form-title-name .form-title {
  font-size: 16px;
  font-weight: 700;
  flex: 2;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.basic-edit-box .form-title-name .form-title, .mypage .mypage-cover .mypage-main .box.pass-edit-box .form-title-name .form-title {
    flex: none;
  }
}
.mypage .mypage-cover .mypage-main .box.basic-edit-box .form-title-name .hissu, .mypage .mypage-cover .mypage-main .box.pass-edit-box .form-title-name .hissu {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.basic-edit-box .form-title-name .hissu, .mypage .mypage-cover .mypage-main .box.pass-edit-box .form-title-name .hissu {
    flex: none;
    margin-left: 16px;
  }
}
.mypage .mypage-cover .mypage-main .box.basic-edit-box .form-title-name .hissu .nessesary-condition-ok, .mypage .mypage-cover .mypage-main .box.pass-edit-box .form-title-name .hissu .nessesary-condition-ok {
  background-color: #e5f6ef;
  color: #007B65;
  padding: 5px 13px;
  font-size: 11px;
  width: 56px;
  display: inline-block;
  text-align: center;
}
.mypage .mypage-cover .mypage-main .box.basic-edit-box .form-title-name .hissu .nessesary-condition-ng, .mypage .mypage-cover .mypage-main .box.pass-edit-box .form-title-name .hissu .nessesary-condition-ng {
  background-color: #d94141;
  color: #ffffff;
  padding: 5px 13px;
  font-size: 11px;
  width: 56px;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.basic-edit-box .form-title-name, .mypage .mypage-cover .mypage-main .box.pass-edit-box .form-title-name {
    padding: 10px 0;
  }
}
.mypage .mypage-cover .mypage-main .box.basic-confirm-box .box-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.basic-confirm-box .box-title {
    margin-bottom: 20px;
  }
}
.mypage .mypage-cover .mypage-main .box.basic-confirm-box .box-title h3 {
  margin-bottom: 10px;
}
.mypage .mypage-cover .mypage-main .box.basic-confirm-box .box-title p {
  width: 100%;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
}
.mypage .mypage-cover .mypage-main .box.basic-confirm-box .form-title-name {
  padding: 15px 0;
  color: #757575;
}
.mypage .mypage-cover .mypage-main .box.basic-confirm-box dd {
  word-break: keep-all;
  overflow-wrap: break-word;
}
.mypage .mypage-cover .mypage-main .box.basic-confirm-box .industry-job-slash {
  color: #B2B2B2;
  margin: 0 8px;
}
.mypage .mypage-cover .mypage-main .box.basic-confirm-box .form-area {
  border-bottom: 1px solid;
  padding-bottom: 50px;
}
.mypage .mypage-cover .mypage-main .box.basic-complete-box .box-title, .mypage .mypage-cover .mypage-main .box.pass-complete-box .box-title {
  margin-bottom: 50px;
}
.mypage .mypage-cover .mypage-main .box.basic-complete-box .form-area p, .mypage .mypage-cover .mypage-main .box.pass-complete-box .form-area p {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: center;
}
.mypage .mypage-cover .mypage-main .box.basic-complete-box .btn, .mypage .mypage-cover .mypage-main .box.pass-complete-box .btn {
  margin: 40px auto 0 auto;
}
.mypage .mypage-cover .mypage-main .box.basic-confirm-box .box-title {
  margin-bottom: 25px;
}
.mypage .mypage-cover .mypage-main .box.basic-confirm-box .box-title h3 {
  margin-bottom: 10px;
}
.mypage .mypage-cover .mypage-main .box.basic-confirm-box .box-title p {
  width: 100%;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
  color: #cd0000;
}
.mypage .mypage-cover .mypage-main .box.basic-confirm-box .form-area {
  border-bottom: 1px solid;
  padding-bottom: 25px;
}
.mypage .mypage-cover .mypage-main .box.cate-edit-box .box-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.cate-edit-box .box-title {
    margin-bottom: 20px;
  }
}
.mypage .mypage-cover .mypage-main .box.cate-edit-box .box-title h3 {
  margin-bottom: 10px;
}
.mypage .mypage-cover .mypage-main .box.cate-edit-box .box-title p {
  width: 100%;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
}
.mypage .mypage-cover .mypage-main .box.cate-edit-box .box-title p.p2 {
  font-size: 12px;
}
.mypage .mypage-cover .mypage-main .box.news-box.one-box .box-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.news-box.one-box .box-title {
    margin-bottom: 20px;
  }
}
.mypage .mypage-cover .mypage-main .box.news-box .box-title h3 {
  margin-bottom: 10px;
}
.mypage .mypage-cover .mypage-main .box.news-box .box-title p.date {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.mypage .mypage-cover .mypage-main .box.message-box.one-box .box-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box.message-box.one-box .box-title {
    margin-bottom: 20px;
  }
}
.mypage .mypage-cover .mypage-main .box.message-box .textarea-box {
  position: relative;
}
.mypage .mypage-cover .mypage-main .box.message-box .textarea-box textarea {
  border-radius: 20px;
  background-color: #E5E5E5;
  line-height: 40px;
  border: none;
  outline: none;
  height: 40px;
  width: 100%;
  padding: 0px 20px;
  resize: none;
}
.mypage .mypage-cover .mypage-main .box.message-box .textarea-box .btn_area {
  position: absolute;
  right: 20px;
  top: 5px;
  width: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mypage .mypage-cover .mypage-main .box .pswd dd {
  padding-top: 15px;
}
.mypage .mypage-cover .mypage-main .box .pswd dd p.pswd-txt {
  font-size: 11px;
  line-height: 22px;
  letter-spacing: 0.1em;
  text-align: left;
  width: 510px;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box .pswd dd p.pswd-txt {
    width: 100%;
  }
}
.mypage .mypage-cover .mypage-main .box .cate-list {
  display: flex;
}
.mypage .mypage-cover .mypage-main .box .cate-list li {
  margin-right: 5px;
}
.mypage .mypage-cover .mypage-main .box .check-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  margin-top: 10px;
}
.mypage .mypage-cover .mypage-main .box .check-flex.w-60 {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box .check-flex.w-60 {
    width: 100%;
  }
}
.mypage .mypage-cover .mypage-main .box .check-flex label {
  width: 25%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box .check-flex label {
    width: 33%;
  }
}
.mypage .mypage-cover .mypage-main .box .check-flex label .check-form {
  width: 18px;
  height: 18px;
}
.mypage .mypage-cover .mypage-main .box .check-flex label .check-text {
  width: 100px;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.mypage .mypage-cover .mypage-main .box .check-flex label.check-full {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box .check-flex label.check-full {
    width: 33%;
  }
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .box .check-flex label.sp-full {
    width: 100%;
  }
}
.mypage .mypage-cover .mypage-main .box .check-flex textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
}
.mypage .mypage-cover .mypage-main .box .detail-category-confirm td {
  padding-top: 25px;
}
.mypage .mypage-cover .mypage-main .mylist-prof {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.mypage .mypage-cover .mypage-main .mylist-prof .mylist-box {
  width: 49%;
}
.mypage .mypage-cover .mypage-main .mylist-prof .prof-box {
  width: 49%;
}
.mypage .mypage-cover .mypage-main .message {
  height: 500px;
  overflow-y: scroll;
  margin-bottom: 50px;
}
.mypage .mypage-cover .mypage-main .message .date {
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #757575;
  margin-bottom: 20px;
}
.mypage .mypage-cover .mypage-main .message .msg {
  width: 560px;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .message .msg {
    width: 280px;
  }
}
.mypage .mypage-cover .mypage-main .message .msg .msg_inner {
  display: flex;
  align-items: flex-end;
}
.mypage .mypage-cover .mypage-main .message .msg .msg_inner figure {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .message .msg .msg_inner figure {
    width: 40px;
    height: 40px;
  }
}
.mypage .mypage-cover .mypage-main .message .msg .msg_inner figure img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mypage .mypage-cover .mypage-main .message .msg .msg_inner p {
  width: 500px;
  padding: 18px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mypage .mypage-cover .mypage-main .message .msg .msg_inner p {
    width: 230px;
  }
}
.mypage .mypage-cover .mypage-main .message .msg.other {
  margin: 0 auto 60px 0;
}
.mypage .mypage-cover .mypage-main .message .msg.other .msg_inner {
  flex-direction: row;
}
.mypage .mypage-cover .mypage-main .message .msg.other .msg_inner figure {
  margin-right: 15px;
}
.mypage .mypage-cover .mypage-main .message .msg.other .msg_inner p {
  background: #E5E5E5;
}
.mypage .mypage-cover .mypage-main .message .msg.other .msg_info {
  justify-content: flex-end;
}
.mypage .mypage-cover .mypage-main .message .msg.self {
  margin: 0 0 60px auto;
}
.mypage .mypage-cover .mypage-main .message .msg.self .msg_inner {
  flex-direction: row-reverse;
}
.mypage .mypage-cover .mypage-main .message .msg.self .msg_inner figure {
  margin-left: 15px;
}
.mypage .mypage-cover .mypage-main .message .msg.self .msg_inner p {
  background: #1F9970;
  color: #fff;
}
.mypage .mypage-cover .mypage-main .message .msg.self .msg_info .time {
  margin-right: 15px;
}
.mypage .mypage-cover .mypage-main .message .msg .msg_info {
  display: flex;
  margin-top: 10px;
}
.mypage .mypage-cover .mypage-main .message .msg .msg_info p {
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0.1em;
  color: #757575;
}
.mypage form .form-box2 {
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .mypage form .form-box2 {
    padding: 0;
  }
}
.mypage form .form-box2 > dl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mypage form .form-box2 > dl {
    flex-direction: column;
    padding: 0;
  }
}
.mypage form .form-box2 > dl dt {
  width: 30%;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .mypage form .form-box2 > dl dt {
    width: 100%;
  }
}
.mypage form .form-box2 > dl dd {
  width: 70%;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .mypage form .form-box2 > dl dd {
    width: 100%;
  }
}
.mypage form .form-box2 > dl dd.form-input {
  display: flex;
  justify-content: space-between;
}
.mypage form .form-box2 > dl dd.form-input .input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mypage form .form-box2 > dl dd.form-input .search-btn {
  background: #757575;
  border-radius: 3px;
  color: white;
  padding: 3px 24px 5px;
  margin-left: 16px;
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 170%;
}
@media screen and (max-width: 768px) {
  .mypage form .form-box2 > dl dd.form-input .search-btn {
    width: 80px;
    padding: 3px 0px 5px;
  }
}
.mypage form .form-box2 > dl dd.form-input .ft2-box {
  width: 48%;
}
.mypage form .form-box2 > dl dd.form-input.address {
  display: block;
}
.mypage form .form-box2 > dl dd.form-input.address .supplementary-explanation {
  margin-top: 8px;
}
.mypage form .form-box2 > dl dd input {
  width: 100%;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .mypage form .form-box2 > dl dd input {
    font-size: 16px;
  }
}
.mypage form .prof-img {
  width: 85px;
  height: 85px;
  cursor: pointer;
}
.mypage form .prof-img figure {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}
.mypage form .prof-img figure img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mypage form .prof-img.img-edit {
  position: relative;
}
.mypage form .prof-img.img-edit:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  background-image: url("../images/icon/camera.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.mypage form .search-input.input_02 {
  width: 230px;
}
.mypage form .search-input.input_02 .select-box {
  box-sizing: border-box;
  width: 230px;
  height: 34px;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 400;
}
.mypage .two-btn {
  width: 540px;
}
@media screen and (max-width: 768px) {
  .mypage .two-btn {
    width: 100%;
    flex-direction: column-reverse;
  }
}
.mypage .two-btn .btn {
  margin: 40px auto 0 auto;
}
.mypage .pager {
  margin: 40px auto 150px auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .mypage .pager {
    margin: 40px auto 40px auto;
  }
}
.mypage article .detail {
  border-bottom: 1px solid;
  padding: 0 60px 50px 60px;
}
@media screen and (max-width: 768px) {
  .mypage article .detail {
    padding: 0 0 20px 0;
  }
}
.mypage article .detail p {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
}
.mypage .modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mypage .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 500px; /* モーダルの最大幅 */
  margin: 1rem;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.25rem;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.mypage .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}
.mypage .modal-header h4 {
  margin: 0;
  font-size: 1.25rem;
}
.mypage .modal-close-button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.mypage .modal-body {
  padding: 1rem 0;
}
.mypage .modal-label {
  display: inline-block;
  padding: 8px 16px;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}
.mypage .modal-input {
  display: none; /* input file を隠す */
}
.mypage .error-message {
  color: red;
  font-size: 0.85em;
  margin-top: 0.5em;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  z-index: 8;
  top: 0;
  width: 100%;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  background: #fff;
  left: 50%;
  padding: 70px 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
}
@media screen and (max-width: 768px) {
  .modal__content {
    width: 90%;
  }
}
.modal__content h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
}

.registration-modal {
  display: none;
  height: 100vh;
  position: fixed;
  z-index: 8;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .registration-modal {
    width: 100%;
  }
}
.registration-modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.registration-modal__content {
  background: #fff;
  left: 50%;
  padding: 38px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
}
@media screen and (max-width: 768px) {
  .registration-modal__content {
    width: 343px;
    padding: 16px;
  }
}
.registration-modal__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 20px;
  border-bottom: solid 1px #757575;
}
@media screen and (max-width: 768px) {
  .registration-modal__title {
    width: 100%;
  }
}
.registration-modal__text {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 12px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .registration-modal__text {
    text-align: left;
  }
}
.registration-modal__sub-text {
  text-align: center;
  font-size: 10px;
  color: #757575;
}
.registration-modal__sub-text:first-of-type {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .registration-modal__sub-text {
    text-align: left;
    text-indent: -1em;
    padding-left: 2em;
  }
}
.registration-modal__btn {
  display: flex;
  justify-content: center;
}

.btn__registration-modal__btn {
  margin: 20px 0 0 0;
}

.btn__registration-modal__btn:first-of-type {
  margin-right: 10px;
}

.btn.green {
  background: #1F9970;
  border: 1px solid #fff;
  color: #fff;
}

.btn.green:disabled {
  background-color: #ccc !important;
  color: #fff !important;
  cursor: not-allowed !important;
  border: none;
  opacity: 0.7;
}

.pc-br {
  display: block;
}

.sp-br {
  display: inline;
}
@media screen and (max-width: 768px) {
  .sp-br {
    display: block;
  }
}

.industry-job-form-main {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .industry-job-form-main {
    width: 100%;
  }
}
.industry-job-form-main .box {
  background-color: #fff;
  padding: 30px 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .industry-job-form-main .box {
    padding: 30px 30px;
  }
}
.industry-job-form-main .box.one-box {
  padding-bottom: 100px;
}
.industry-job-form-main .box.one-box .box-title {
  border-bottom: 1px solid #B2B2B2;
  padding-bottom: 8px;
}
.industry-job-form-main .box.one-box .box-title .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .industry-job-form-main .box.one-box .box-title .sp-only {
    display: block;
  }
}
.industry-job-form-main .box.one-box .box-title h3 {
  font-size: 18px;
}
.industry-job-form-main .box.one-box .box-title p {
  font-size: 16px;
  color: #cd0000;
}
.industry-job-form-main .box.one-box .box-title p span {
  font-size: 14px;
  color: #111111;
}
.industry-job-form-main .box.one-box .form-area dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .industry-job-form-main .box.one-box .form-area dl {
    flex-direction: column;
    padding: 0;
  }
}
.industry-job-form-main .box.one-box .form-area dl dt {
  width: 30%;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .industry-job-form-main .box.one-box .form-area dl dt {
    width: 100%;
  }
}
.industry-job-form-main .box.one-box .form-area dl .form-title-name {
  display: flex;
  align-items: center;
}
.industry-job-form-main .box.one-box .form-area dl .form-title-name .form-title {
  flex: 2;
}
@media screen and (max-width: 768px) {
  .industry-job-form-main .box.one-box .form-area dl .form-title-name .form-title {
    flex: none;
  }
}
.industry-job-form-main .box.one-box .form-area dl .form-title-name .hissu {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .industry-job-form-main .box.one-box .form-area dl .form-title-name .hissu {
    flex: none;
    margin-left: 16px;
  }
}
.industry-job-form-main .box.one-box .form-area dl .form-title-name .hissu .nessesary-condition-ok {
  background-color: #e5f6ef;
  color: #007B65;
  padding: 5px 13px;
  font-size: 11px;
}
.industry-job-form-main .box.one-box .form-area dl .form-title-name .hissu .nessesary-condition-ng {
  background-color: #d94141;
  color: #ffffff;
  padding: 5px 13px;
  font-size: 11px;
}
.industry-job-form-main .box.one-box .form-area dl dd {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .industry-job-form-main .box.one-box .form-area dl dd {
    margin-top: 18px;
    width: 100%;
  }
}
.industry-job-form-main .box.one-box .form-area dl dd.form-input {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .industry-job-form-main .box.one-box .form-area dl dd.form-input {
    width: 100%;
  }
}
.industry-job-form-main .box.one-box .form-area dl dd.form-input .ft2-box {
  width: 48%;
}
.industry-job-form-main .box.one-box .form-area dl dd input {
  width: 100%;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .industry-job-form-main .box.one-box .form-area dl dd input {
    font-size: 16px;
  }
}
.industry-job-form-main .box.one-box .form-area .btn.green:disabled {
  background-color: #ccc !important;
  color: #fff !important;
  cursor: not-allowed !important;
  border: none;
  opacity: 0.7;
}
.industry-job-form-main .box.one-box .form-area .redirect-sentence {
  font-size: 14px;
  color: #B2B2B2;
  margin-top: 8px;
  text-align: center;
}

.guide {
  display: block;
  background-color: #F0F0F0;
  width: 100%;
  padding: 0 0 200px 0;
}
@media screen and (max-width: 768px) {
  .guide {
    padding: 0 0 80px 0;
  }
}
.guide .guide-cover {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .guide .guide-cover {
    flex-wrap: wrap;
    width: 100%;
    padding: 0 20px;
  }
}
.guide .guide-cover .guide-side {
  width: 16%;
}
@media screen and (max-width: 768px) {
  .guide .guide-cover .guide-side {
    display: none;
  }
}
.guide .guide-cover .guide-side .title-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.guide .guide-cover .guide-side .title-area .p1 {
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
  letter-spacing: 0.1em;
  text-align: center;
}
.guide .guide-cover .guide-side .title-area .p2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.1em;
  text-align: center;
}
.guide .guide-cover .guide-side .menu {
  border-top: 1px solid;
  width: 100%;
}
.guide .guide-cover .guide-side .menu li.menu_direct {
  border-bottom: 1px solid;
  width: 100%;
}
.guide .guide-cover .guide-side .menu li.menu_direct > a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 11px 5px;
}
.guide .guide-cover .guide-side .menu li.menu_direct > a .txt {
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.1em;
}
.guide .guide-cover .guide-side .menu li.menu_direct > a .num {
  margin: 0 0 0 auto;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  color: #fff;
  background: #D50000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0em;
}
.guide .guide-cover .guide-side .menu li.menu_direct > a .num:empty {
  display: none;
}
.guide .guide-cover .guide-side .menu li.active > a .txt {
  font-weight: 700;
}
.guide .guide-cover .guide-main {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .guide .guide-cover .guide-main {
    width: 100%;
  }
}
.guide .guide-cover .guide-main .box {
  background-color: #fff;
  padding: 30px 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .guide .guide-cover .guide-main .box {
    padding: 60px 20px;
  }
}
.guide .guide-cover .guide-main .box.one-box {
  padding-bottom: 100px;
}
.guide .guide-cover .guide-main .box .box-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid;
  padding-bottom: 14px;
}
.guide .guide-cover .guide-main .box .box-title h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.1em;
}
.guide .guide-cover .guide-main .box .box-title .list_link {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #757575;
}
.guide .guide-cover .guide-main .box .notice-block {
  margin-top: 30px;
}
.guide .guide-cover .guide-main .box .notice-block h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: left;
}
.guide .guide-cover .guide-main .box .notice-block ul li {
  text-indent: -1.1em;
  padding-left: 1.1em;
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.1em;
}
.guide .guide-cover .guide-main .box .notice-block ul li:before {
  content: "・";
}
.guide .guide-cover .guide-main .box .notice-block p {
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.1em;
}
.guide .guide-cover .guide-main .box .notice-block.tips p {
  margin-bottom: 20px;
}
.guide .guide-cover .guide-main .box .block {
  padding: 40px 0;
  border-bottom: 1px solid #b2b2b2;
}
.guide .guide-cover .guide-main .box .block:last-of-type {
  border-bottom: none;
}
.guide .guide-cover .guide-main .box .block h3 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
}
.guide .guide-cover .guide-main .box .block h3 span {
  background-color: #007B50;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-right: 15px;
  padding-left: 2px;
}
.guide .guide-cover .guide-main .box .block h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 23px;
}
.guide .guide-cover .guide-main .box .block h5 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
}
.guide .guide-cover .guide-main .box .block h5 span {
  background-color: #007B50;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-right: 15px;
  padding-left: 2px;
}
.guide .guide-cover .guide-main .box .block > p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: justified;
  margin-bottom: 40px;
}
.guide .guide-cover .guide-main .box .block > figure {
  width: 100%;
  margin-bottom: 60px !important;
}
.guide .guide-cover .guide-main .box .block > figure img {
  width: 100%;
}
.guide .guide-cover .guide-main .box .block > figure.bf {
  margin-bottom: 30px !important;
}
.guide .guide-cover .guide-main .box .block > figure.thin1 {
  width: 685px;
  margin: 0 auto;
}
.guide .guide-cover .guide-main .box .block > figure.thin2 {
  width: 463px;
  margin: 0 auto;
}
.guide .guide-cover .guide-main .box .block .o2-list {
  background-color: #E5E5E5;
  padding: 30px;
}
.guide .guide-cover .guide-main .box .block .o2-list dl {
  display: flex;
  align-items: center;
  border-bottom: 1px solid;
  padding: 10px 0;
  margin-top: 0;
  margin-bottom: 0;
}
.guide .guide-cover .guide-main .box .block .o2-list dl dt {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: left;
  width: 210px;
}
.guide .guide-cover .guide-main .box .block .o2-list dl dd {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: left;
  width: calc(100% - 210px);
}
.guide .guide-cover .guide-main .box .block .img_txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.guide .guide-cover .guide-main .box .block .img_txt figure {
  width: 463px;
}
.guide .guide-cover .guide-main .box .block .img_txt figure img {
  width: 100%;
}
.guide .guide-cover .guide-main .box .block .img_txt .txt {
  width: 364px;
}
.guide .guide-cover .guide-main .box .block .img_txt .txt p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: justified;
}
.guide .guide-cover .guide-main .box .block .img_txt .txt ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.1em;
}
.guide .guide-cover .guide-main .box .block .img_txt .txt ul li:before {
  content: "・";
}
.guide .guide-cover .guide-main .box .consul-block > dl {
  display: flex;
  align-items: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .guide .guide-cover .guide-main .box .consul-block > dl {
    flex-wrap: wrap;
  }
}
.guide .guide-cover .guide-main .box .consul-block > dl > dt {
  width: 42%;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .guide .guide-cover .guide-main .box .consul-block > dl > dt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.guide .guide-cover .guide-main .box .consul-block > dl > dd {
  width: 58%;
}
@media screen and (max-width: 768px) {
  .guide .guide-cover .guide-main .box .consul-block > dl > dd {
    width: 100%;
  }
}
.guide .guide-cover .guide-main .box .consul-block > dl > dd p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: justified;
}
.guide .guide-cover .guide-main .box .consul-block > dl > dd p a {
  color: #007B50;
  text-decoration: underline;
}
.guide .guide-cover .guide-main .box .consul-block > dl > dd .btn {
  margin: 10px 0 0 0;
  width: 250px;
}
@media screen and (max-width: 768px) {
  .guide .guide-cover .guide-main .box .consul-block > dl > dd .btn {
    margin: 40px auto 0 auto;
  }
}
.guide .guide-cover .guide-main .box .consul-block > dl > dd .tell {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .guide .guide-cover .guide-main .box .consul-block > dl > dd .tell {
    flex-wrap: wrap;
  }
}
.guide .guide-cover .guide-main .box .consul-block > dl > dd .tell dl {
  display: flex;
  margin-right: 10px;
  align-items: baseline;
  margin: 0;
}
.guide .guide-cover .guide-main .box .consul-block > dl > dd .tell dl dt {
  font-size: 14px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0.1em;
  margin-right: 5px;
}
.guide .guide-cover .guide-main .box .consul-block > dl > dd .tell dl dd {
  font-family: "Avenir Next";
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0.1em;
}

.privacy-policy {
  margin-bottom: 300px;
  width: 100%;
}
.privacy-policy h1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 37px;
}
.privacy-policy .pp-cover .pp-box {
  margin-bottom: 30px;
}
.privacy-policy .pp-cover .pp-box h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.1em;
}
.privacy-policy .pp-cover .pp-box p {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
}
.privacy-policy .pp-cover .pp-box ul.num {
  padding-left: 1.3em;
}
.privacy-policy .pp-cover .pp-box ul.num li {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
  list-style: decimal;
}
.privacy-policy .pp-cover .pp-box .tm {
  margin-top: 30px;
}
.privacy-policy .pp-cover .pp-box a {
  color: #a9a9a9;
  text-decoration: underline;
}

.wrapper__privacy-policy {
  width: 100%;
  max-width: 1250px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .wrapper__privacy-policy {
    padding: 0 16px;
  }
}

.chat-box.bar-on .chat-container {
  bottom: 67px;
}
.chat-box .chat-container {
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  display: none;
  position: fixed;
  right: 40px;
  width: 380px;
  z-index: 3;
  display: none;
  bottom: 64px;
}
.chat-box .chat-container.display {
  display: block;
}
.chat-box .chat-container .box-title {
  background-color: #007B50;
  position: relative;
  height: 40px;
}
.chat-box .chat-container .box-title h3 {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.1em;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-box .chat-container .box-title h3:before {
  content: "";
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/icon/icon-chat-w.png);
  margin-right: 5px;
}
.chat-box .chat-container .box-title figure {
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
}
.chat-box .chat-container .message {
  height: 480px;
  overflow-y: scroll;
  padding: 0 25px;
}
.chat-box .chat-container .message .date {
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #757575;
  margin-bottom: 20px;
  margin-top: 20px;
}
.chat-box .chat-container .message .msg {
  width: 100%;
}
.chat-box .chat-container .message .msg .msg_inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.chat-box .chat-container .message .msg .msg_inner figure {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.chat-box .chat-container .message .msg .msg_inner figure img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.chat-box .chat-container .message .msg .msg_inner p {
  width: 250px;
  padding: 18px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1em;
}
.chat-box .chat-container .message .msg.other {
  margin: 0 auto 60px 0;
}
.chat-box .chat-container .message .msg.other .msg_inner {
  flex-direction: row;
}
.chat-box .chat-container .message .msg.other .msg_inner figure {
  margin-right: 15px;
}
.chat-box .chat-container .message .msg.other .msg_inner p {
  background: #E5E5E5;
}
.chat-box .chat-container .message .msg.other .msg_info {
  justify-content: flex-end;
}
.chat-box .chat-container .message .msg.self {
  margin: 0 0 60px auto;
}
.chat-box .chat-container .message .msg.self .msg_inner {
  flex-direction: row-reverse;
}
.chat-box .chat-container .message .msg.self .msg_inner figure {
  margin-left: 15px;
}
.chat-box .chat-container .message .msg.self .msg_inner p {
  background: #CD0000;
  color: #fff;
}
.chat-box .chat-container .message .msg.self .msg_info .time {
  margin-right: 15px;
}
.chat-box .chat-container .message .msg .msg_info {
  display: flex;
  margin-top: 10px;
}
.chat-box .chat-container .message .msg .msg_info p {
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0.1em;
  color: #757575;
}
.chat-box .chat-container .textarea-box {
  position: relative;
  height: 50px;
  border-top: 1px solid #000;
}
.chat-box .chat-container .textarea-box textarea {
  width: 100%;
  border: none;
  padding: 15px 25px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-align: left;
}
.chat-box .chat-container .textarea-box textarea:focus {
  outline: 0;
}
.chat-box .chat-container .textarea-box .btn_area {
  position: absolute;
  right: 10px;
  top: 5px;
}

.tell-box.bar-on .tell-container {
  bottom: 67px;
}
.tell-box .tell-container {
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  display: none;
  position: fixed;
  right: 40px;
  bottom: 64px;
  width: 380px;
  z-index: 3;
  display: none;
}
.tell-box .tell-container.display {
  display: block;
}
.tell-box .tell-container .box-title {
  background-color: #007B50;
  position: relative;
  height: 40px;
}
.tell-box .tell-container .box-title h3 {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.1em;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tell-box .tell-container .box-title h3:before {
  content: "";
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/icon/icon-tell-w.png);
  margin-right: 5px;
}
.tell-box .tell-container .box-title figure {
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
}
.tell-box .tell-container .tell-contents {
  background-color: #fff;
  padding: 30px 0;
}
.tell-box .tell-container .tell-contents .dl1 {
  margin-bottom: 50px;
}
.tell-box .tell-container .tell-contents .dl1 dt {
  font-size: 12px;
  margin-bottom: 5px;
  text-align: center;
}
.tell-box .tell-container .tell-contents .dl1 dd {
  font-size: 18px;
  line-height: 37px;
  background-color: #F2F2F2;
  text-align: center;
}
.tell-box .tell-container .tell-contents .dl2 {
  margin-bottom: 30px;
}
.tell-box .tell-container .tell-contents .dl2 dt {
  font-size: 12px;
  text-align: center;
}
.tell-box .tell-container .tell-contents .dl2 dd {
  font-size: 12px;
  text-align: center;
}
.tell-box .tell-container .tell-contents p {
  font-size: 12px;
  text-align: center;
}

.output {
  padding: 32px 60px 39px 60px;
  width: 1684px;
  height: 1190px;
}
.output header {
  display: flex;
  justify-content: space-between;
  position: static;
}
.output header h1 {
  font-size: 27px;
  font-weight: 700;
  line-height: 43px;
  letter-spacing: 0.1em;
  padding-left: 50px;
}
.output header h1:before {
  content: "■";
}
.output main {
  margin-top: 40px;
}
.output .output_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
.output .output_list.ol1 {
  width: 1464px;
}
.output .output_list.ol2 {
  width: 1498px;
}
.output .output_list .output_box1 {
  width: 399px;
  height: 512px;
  margin-bottom: 31px;
}
.output .output_list .output_box1 .price-hikeisai {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}
.output .output_list .output_box1 .price-hikeisai .price .num {
  font-size: 25px;
}
.output .output_list .output_box1 .price-hikeisai .hikeisai {
  color: #757575;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border: 1px solid #757575;
  width: 113px;
  height: 25px;
}
.output .output_list .output_box2 {
  width: 706px;
  margin-bottom: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.output .output_list .output_box2 .img {
  width: 370px;
}
.output .output_list .output_box2 .img figure {
  width: 100%;
}
.output .output_list .output_box2 .img figure img {
  width: 100%;
  height: 280px;
  -o-object-fit: contain;
     object-fit: contain;
}
.output .output_list .output_box2 .txt {
  width: 296px;
}
.output .output_list .output_box2 .txt .price .num {
  font-size: 23px;
}
.output .output_list .img {
  position: relative;
}
.output .output_list .img .type {
  position: absolute;
  display: flex;
  top: 15px;
  left: 17px;
}
.output .output_list .img .type li {
  width: 78px;
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-right: 9px;
}
.output .output_list .img .type .l1 {
  border: 1px solid;
  background-color: #fff;
}
.output .output_list .img .type .l2 {
  border: 1px solid #B2B2B2;
  background-color: #B2B2B2;
}
.output .output_list .img .size {
  background-color: #757575;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0.1em;
  padding: 0 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.output .output_list .txt {
  margin-top: 11px;
}
.output .output_list .txt .id {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0.1em;
  color: #757575;
  margin-bottom: 4px;
}
.output .output_list .txt h2 {
  font-size: 21px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.1em;
}
.output .output_list .txt .size {
  background-color: #757575;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0.1em;
  padding: 0 20px;
  width: 100%;
  margin: 11px 0;
}
.output .output_list .txt .tag {
  display: flex;
  padding-bottom: 12px;
  border-bottom: 1px solid;
}
.output .output_list .txt .tag li {
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.1em;
  color: #757575;
}
.output .output_list .txt .tag li:before {
  content: "#";
}
.output .output_list .txt .hikeisai-tips {
  color: #757575;
  font-size: 12px;
  letter-spacing: 1px;
}
.output .output_list .txt .price {
  padding-top: 8px;
  display: flex;
  align-items: center;
}
.output .output_list .txt .price .num {
  font-weight: 500;
  line-height: 43px;
  letter-spacing: 0.05em;
  text-align: left;
  margin-right: 5px;
}
.output .output_list .txt .price .tax {
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #757575;
}

.subsidy {
  background-color: #E4EFF8;
}
@media screen and (max-width: 768px) {
  .subsidy .container h1 {
    background: url(../images/subsidy/sp_subsidy-map.webp);
  }
}

.providing {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .providing {
    background-color: #E4EFF8;
    padding: 40px 20px;
  }
}
.providing p {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .providing p {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 1.2000000477px;
    text-align: left;
  }
}
.providing .btn {
  margin: 0 auto;
}

.new-update-at {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.3000000119px;
  text-align: right;
  margin-bottom: 16px;
}

.subsidy-contact__inner {
  align-items: center;
  width: 100%;
  max-width: 1060px;
  border-radius: 10px;
  background: #ffffff;
  font-family: "Hiragino Kaku Gothic Pro";
  text-align: center;
  padding: 30px 0 20px 0;
}
.subsidy-contact__title {
  font-family: "Hiragino Kaku Gothic Pro";
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
}
.subsidy-contact__title span {
  width: 600px;
}
.subsidy-contact__title::before, .subsidy-contact__title::after {
  content: "";
  height: 1px;
  display: block;
  background-color: #007B65;
  width: 80%;
}
.subsidy-contact__title::before {
  margin-right: 25px;
  margin-left: 35px;
}
.subsidy-contact__title::after {
  margin-left: 25px;
  margin-right: 35px;
}
.subsidy-contact__container {
  display: flex;
  justify-content: space-around;
  margin: 15px auto 20px auto;
}
.subsidy-contact__box {
  width: 440px;
}
.subsidy-contact__box-separator {
  border-left: 1px solid #E5E5E5;
  width: 1px;
}
.subsidy-contact__heading {
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}
.subsidy-contact__description {
  margin-top: 10px;
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.1em;
}
.subsidy-contact__btn {
  margin: 10px auto;
  display: block;
  align-items: center;
  padding: 10px 20px;
  gap: 60px;
  width: 267px;
  height: 40px;
  background: #1F9970;
  border-radius: 30px;
  color: #ffffff;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .subsidy-contact__title {
    padding-bottom: 0;
  }
  .subsidy-contact__title span {
    width: -moz-fit-content;
    width: fit-content;
  }
  .subsidy-contact__box {
    width: -moz-fit-content;
    width: fit-content;
    padding: 16px 0;
    margin: 0 20px;
  }
  .subsidy-contact__box-separator {
    border-bottom: 1px solid #E5E5E5;
    width: 90%;
    margin: auto;
  }
  .subsidy-contact__title::before, .subsidy-contact__title::after {
    content: "";
    height: 1px;
    display: block;
    background-color: #007B65;
    width: 39px;
  }
  .subsidy-contact__title::before {
    margin-right: 10px;
    margin-left: 0;
  }
  .subsidy-contact__title::after {
    margin-left: 10px;
    margin-right: 0;
  }
  .subsidy-contact__container {
    display: block;
    margin-top: 0;
    margin-bottom: 0;
  }
  .subsidy-contact__heading {
    font-size: 16px;
  }
  .subsidy-contact__description {
    width: 96%;
    margin: 5px auto 0 auto;
  }
  .subsidy-contact__btn {
    font-size: 14px;
  }
}

.area-filtering__inner {
  display: flex;
  background-color: #ffffff;
  border-radius: 10px;
  margin-top: 20px;
  padding: 20px;
  justify-content: flex-start;
}
.area-filtering__body {
  display: flex;
  font-family: "Hiragino Kaku Gothic Pro";
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}
.area-filtering__title {
  display: block;
  font-weight: 600;
  font-size: 24px;
  padding-left: 30px;
  position: relative;
  line-height: 1;
}
.area-filtering__title::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 28px;
  left: 0px;
  top: 0px;
  background-color: #1F9970;
}
.area-filtering__line {
  width: 100%;
  display: inline-block;
  height: 1px;
  padding-top: 13px;
  border-bottom: 1px solid #007B50;
}
@media screen and (max-width: 768px) {
  .area-filtering__line {
    border-bottom: 0;
  }
}
.area-filtering__btn-body {
  padding-top: 20px;
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .area-filtering__btn-body {
    display: none;
  }
}
.area-filtering__btn {
  display: inline-block;
  font-size: 14px;
  padding: 5px 10px;
  margin-right: 10px;
  margin-top: 10px;
  border: 1px solid #007B65;
  border-radius: 100px;
  color: #007B65;
}
.area-filtering__btn-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .area-filtering__btn-sp {
    display: flex;
    justify-content: center;
    padding: 13px 20px;
    width: 250px;
    background: #1F9970;
    border-radius: 30px;
    line-height: 1;
    color: #ffffff;
    font-weight: 600;
    margin-top: 20px;
    font-size: 14px;
    margin: 20px auto;
  }
}
.area-filtering__img-body {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .area-filtering__img-body {
    display: none;
  }
}
.area-filtering__img {
  max-width: 100px;
  width: 100%;
}
.area-filtering__updated_date {
  font-size: 14px;
  letter-spacing: 0.1em;
  padding-top: 20px;
}
.area-filtering__pulldown {
  display: none;
}
@media screen and (max-width: 768px) {
  .area-filtering__pulldown {
    display: block;
  }
}
.area-filtering form {
  width: 100%;
}
.area-filtering select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  font-size: 14px;
  width: 100%;
  margin-top: 20px;
  padding: 16px 0 16px 20px;
  background: url(../images/subsidy/pulldown_arrow.png) no-repeat;
  background-size: 17px 8px;
  background-position: right 20px center;
}

.subsidy-list__title-body {
  font-family: "Hiragino Kaku Gothic Pro";
  padding: 50px 0 15px 20px;
}
.subsidy-list__title {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  position: relative;
}
.subsidy-list__title::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 50px;
  left: -20px;
  top: 0px;
  background-color: #1F9970;
}
.subsidy-list__lead {
  font-size: 16px;
  line-height: 1;
  padding-top: 10px;
}
.subsidy-list__container {
  display: flex;
  justify-content: space-between;
}

.filtering__body {
  width: 100%;
  border-top: solid 1px #757575;
  padding: 20px 0;
  font-family: "Hiragino Kaku Gothic Pro";
  display: flex;
  align-items: center;
}
.filtering__pin {
  width: 38px;
}
.filtering__title {
  padding-left: 10px;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .filtering__title {
    font-size: 20px;
  }
}

.subsidy-main {
  width: 72%;
  margin-right: 32px;
}
@media screen and (max-width: 768px) {
  .subsidy-main {
    width: 100%;
    margin-right: 0;
  }
}

.subsidy-side {
  border-top: 1px solid #111111;
}
.subsidy-side__title {
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  margin: 11px 0 16px 0;
}
.subsidy-side__box {
  margin: 20px auto;
}
.subsidy-side__img {
  -o-object-fit: contain;
     object-fit: contain;
}

.subsidy__anchor {
  display: none;
}
@media screen and (max-width: 768px) {
  .subsidy__anchor {
    font-family: "Hiragino Kaku Gothic ProN";
    font-weight: 600;
    font-size: 14px;
    display: flex;
    justify-content: center;
    color: #007B65;
    text-decoration: underline;
  }
}

.acd-check {
  display: none;
}

.acd {
  display: none;
}
@media screen and (max-width: 768px) {
  .acd {
    display: inline-block;
  }
}

.acd-label {
  color: #fff;
  display: block;
  border: 1px solid #B3B3B3;
  border-radius: 12px;
  margin-top: 16px;
  padding: 6px 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.acd-check:checked + .acd-label + .acd-content {
  height: auto;
  opacity: 1;
  visibility: visible;
  margin-top: 20px;
}

.acd-content {
  height: 0;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
  width: 100%;
  background-color: #E5F6EF;
  padding: 10px 20px 0px 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.acd-content p {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
}
.acd-content .acd-detail {
  padding-bottom: 12px;
}
.acd-content .link a {
  color: #007B50;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}
.acd-content .link a:before {
  content: "▶︎";
  display: block;
}

.foot-cta__inner {
  display: none;
  font-family: "Hiragino Kaku Gothic ProN";
  background-color: #007B65;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .foot-cta__inner {
    display: block;
  }
}
.foot-cta__lead {
  padding-top: 20px;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  line-height: 1.2;
  position: relative;
  display: inline;
}
.foot-cta__lead::before {
  content: "";
  position: absolute;
  top: 65%;
  display: inline-block;
  width: 32px;
  height: 3px;
  background-color: #ffffff;
  transform: rotate(60deg);
  left: -50px;
}
.foot-cta__lead::after {
  content: "";
  position: absolute;
  top: 65%;
  display: inline-block;
  width: 32px;
  height: 3px;
  background-color: #ffffff;
  transform: rotate(-60deg);
  right: -50px;
}
.foot-cta__btn-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .foot-cta__btn-sp {
    display: flex;
    justify-content: center;
    padding: 13px 20px;
    width: 250px;
    background: #1F9970;
    border-radius: 30px;
    line-height: 1;
    color: #ffffff;
    font-weight: 600;
    margin-top: 20px;
    font-size: 14px;
    margin: 20px auto;
  }
}
.foot-cta__contact {
  margin-top: 20px;
  color: #ffffff;
}
.foot-cta__text {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 24px;
}
.foot-cta dl {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
}
.foot-cta dt {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 26px;
  margin-right: 10px;
}
.foot-cta dd {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 48px;
}
.foot-cta__time {
  font-size: 12px;
}

.download-list-page {
  background: #fff;
  padding-bottom: 100px;
}
.download-list-page .inner {
  width: 1199px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .download-list-page .inner {
    width: 100%;
    padding: 0 20px;
  }
}
.download-list-page .catalog-page-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  display: block;
}
.download-list-page .catalog-page-description {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 28px;
  margin: 0 auto 28px;
  text-align: center;
}
.download-list-page .download-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 40px;
}
.download-list-page .download-list:after {
  width: 373px;
  display: block;
  content: "";
}
.download-list-page .download-list .download-block {
  width: 373px;
  padding: 20px;
  border: 1px solid #B2B2B2;
  border-radius: 5px;
  transition: ease 0.3s;
}
@media screen and (max-width: 768px) {
  .download-list-page .download-list .download-block {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
  }
}
.download-list-page .download-list .download-block figure {
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}
.download-list-page .download-list .download-block figure .popular {
  position: absolute;
  left: -15px;
  top: -15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #D94141;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.download-list-page .download-list .download-block figure .new {
  position: absolute;
  left: -15px;
  top: -15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #CCEFE1;
  color: #007B65;
  font-size: 12px;
  font-weight: 600;
}
.download-list-page .download-list .download-block figure img {
  width: 100%;
  display: block;
}
.download-list-page .download-list .download-block h4 {
  height: 68px;
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .download-list-page .download-list .download-block h4 {
    height: auto;
  }
}
.download-list-page .download-list .download-block .text {
  height: 60px;
  margin-bottom: 10px;
  line-height: 28px;
  font-size: 14px;
  font-weight: 300;
  color: #111111;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 768px) {
  .download-list-page .download-list .download-block .text {
    height: auto;
  }
}
.download-list-page .download-list .download-block .btn {
  margin: 0 auto;
  transition: ease 0.3s;
}
.download-list-page .download-list .download-block:hover {
  opacity: 1;
  box-shadow: 4px 4px 4px #eee;
}
.download-list-page .download-list .download-block:hover .btn {
  opacity: 0.5;
}

.catalog-page {
  background: #E5E5E5;
  padding-bottom: 290px;
}
@media screen and (max-width: 768px) {
  .catalog-page {
    background: #fff;
    padding-bottom: 100px;
  }
}
.catalog-page h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
.catalog-page h1 span {
  font-size: 14px;
  display: block;
}
.catalog-page .catchcopy {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 30.6px;
  letter-spacing: 1.3500000238px;
}
.catalog-page .fin-check {
  background: #fff;
  padding: 60px;
  width: 1199px;
  margin: 0 auto;
}
.catalog-page .fin-check .btn {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .catalog-page .fin-check {
    width: 100%;
    padding: 20px;
  }
}
.catalog-page .cover {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 1199px;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover {
    width: 100%;
  }
}
.catalog-page .cover .content-other {
  background: #fff;
  margin-top: 64px;
  padding-bottom: 24px;
  width: 786px;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .content-other {
    width: calc(100% - 40px);
    margin: 0 auto;
    border: 1px solid #007B65;
  }
}
.catalog-page .cover .content-other h4 {
  text-align: center;
  width: 100%;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #007B65;
  font-weight: 700;
  font-size: 18px;
  line-height: 30.6px;
  letter-spacing: 1.35px;
  color: #007B65;
}
.catalog-page .cover .content-other p {
  margin: 25px 0;
  text-align: center;
}
.catalog-page .cover .content-other p span {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .content-other p {
    width: 100%;
    padding: 0 15px;
  }
}
.catalog-page .cover .content-other figure {
  width: 310px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .content-other figure {
    width: 100%;
    padding: 0 15px;
  }
}
.catalog-page .cover .content-other figure img {
  width: 100%;
  display: block;
}
.catalog-page .cover .content-other .btn {
  margin-top: 24px;
}
.catalog-page .cover .left {
  width: 786px;
  background: #fff;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left {
    width: 100%;
    padding: 0 20px;
  }
}
.catalog-page .cover .left .normal {
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left .normal {
    font-weight: 300;
  }
  .catalog-page .cover .left .normal.sample-normal {
    text-align: justify;
  }
}
.catalog-page .cover .left .title-area {
  padding-bottom: 30px;
  border-bottom: 1px solid #111111;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left .title-area {
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left .title-area .catchcopy {
    font-size: 14px;
  }
}
.catalog-page .cover .left .title-area h1 {
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 600;
  font-size: 24px;
  line-height: 170%;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left .title-area h1 {
    font-size: 20px;
  }
}
.catalog-page .cover .left .title-area span {
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  /* ボックスの高さと同一 */
  display: block;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1em;
}
.catalog-page .cover .left .title-area .normal {
  text-align: left;
  font-weight: 300;
}
.catalog-page .cover .left .content-area {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left .content-area {
    margin: 0 10px;
    border-top: 1px solid #111111;
  }
}
.catalog-page .cover .left .content-area .sample-image {
  margin-bottom: 30px;
  display: block;
}
.catalog-page .cover .left .content-area .sample-image img {
  width: 100%;
  display: block;
}
.catalog-page .cover .left .content-area .sample-tips {
  border-top: 1px solid #B2B2B2;
  padding-top: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left .content-area .sample-tips {
    border-bottom: 1px solid #B2B2B2;
    padding-bottom: 30px;
  }
}
.catalog-page .cover .left .content-area .sample-tips dl {
  display: flex;
  margin-top: 0;
  margin-bottom: 5px;
}
.catalog-page .cover .left .content-area .sample-tips dl dt {
  font-size: 12px;
  line-height: 24px;
  color: #757575;
  flex-shrink: 0;
}
.catalog-page .cover .left .content-area .sample-tips dl dt:after {
  content: "：";
}
.catalog-page .cover .left .content-area .sample-tips dl dd {
  font-size: 12px;
  line-height: 24px;
  color: #757575;
}
.catalog-page .cover .left .content-area .catalog-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left .content-area .catalog-box {
    margin-bottom: 0;
  }
}
.catalog-page .cover .left .content-area .catalog-box figure {
  width: 290px;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left .content-area .catalog-box figure {
    width: 100%;
    margin-bottom: 20px;
  }
}
.catalog-page .cover .left .content-area .catalog-box figure img {
  width: 100%;
}
.catalog-page .cover .left .content-area .catalog-box figure .catalog-caver-image {
  width: 310px;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left .content-area .catalog-box figure .catalog-caver-image {
    width: 100%;
  }
}
.catalog-page .cover .left .content-area .catalog-box .text {
  width: 344px;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left .content-area .catalog-box .text {
    width: 100%;
    padding-bottom: 20px;
  }
}
.catalog-page .cover .left .content-area .catalog-box .text ul {
  list-style: decimal;
  padding-left: 1.4em;
}
.catalog-page .cover .left .content-area .catalog-box .text li {
  line-height: 180%;
}
.catalog-page .cover .left .content-area .target-text {
  width: 80%;
  margin: 30px auto;
  padding-bottom: 12px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left .content-area .target-text {
    width: 100%;
  }
}
.catalog-page .cover .left .content-area .target-text > p {
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 600;
  font-size: 16px;
  line-height: 200%;
  margin: 8px auto;
  letter-spacing: 0.1em;
}
.catalog-page .cover .left .content-area .target-text ul {
  text-align: left;
  width: 80%;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 14px;
  line-height: 200%;
  margin-left: 87px;
  list-style-type: disc;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left .content-area .target-text ul {
    width: 100%;
    margin-left: 0px;
  }
}
.catalog-page .cover .left .content-area .target-text ul li {
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 300;
  font-size: 14px;
  line-height: 200%;
  /* または28px */
  letter-spacing: 0.1em;
  list-style-type: disc;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .left .content-area .target-text ul li {
    margin: 0px 20px 0 16px;
  }
}
.catalog-page .cover .right {
  width: 383px;
  background: #fff;
  padding: 0px;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .right {
    width: 100%;
    margin-top: 0;
  }
}
.catalog-page .cover .right h3 {
  background: #1F9970;
  width: 100%;
  height: 67px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.catalog-page .cover .right h3 span {
  width: 298px;
  line-height: 27px;
  border: 1px solid #fff;
  border-radius: 20px;
  font-size: 16px;
  text-align: center;
  color: #fff;
}
.catalog-page .cover .right .form-box {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .catalog-page .cover .right .form-box {
    width: 100%;
    padding: 20px 20px 0 20px;
  }
}
.catalog-page .cover .right .form-box dl dt {
  margin-bottom: 10px;
  width: auto;
}
.catalog-page .cover .right .form-box dl dd.hissu {
  margin-left: 20px;
}
.catalog-page .cover .right .form-box dl dd.prefectures {
  margin-top: 20px;
}
.catalog-page .cover .right .form-box dl .dropdown-list {
  width: 100%;
}
.catalog-page .cover .right .form-box dl .dropdown-list select {
  width: 100%;
  border-radius: 0;
  border: 1px solid #B3B3B3 !important;
  box-sizing: border-box;
  font-size: 12px;
  height: 34px;
  padding-left: 10px;
}
.catalog-page .cover .right .form-box dl .dropdown-list select .initial {
  color: #B3B3B3;
}
.catalog-page .cover .right .form-box .pp-agree .checkbox01 {
  display: block;
}
.catalog-page .cover .right .form-box .pp-agree .checkbox01 a {
  color: #1F9970;
  text-decoration: underline;
}
.catalog-page .cover .right .form-box .normal {
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
  margin-top: 20px;
}

.sample-confirm .width-thickness dd {
  height: 15px;
}
.sample-confirm .type-list dd {
  height: 15px;
}
@media screen and (max-width: 768px) {
  .sample-confirm .variation-item-right {
    width: 100% !important;
  }
  .sample-confirm .variation-item-right .unit-price {
    display: flex;
  }
}

.case-catalog-invalid-submit-button {
  cursor: not-allowed;
}

.form-material-sample {
  margin-bottom: 30px;
}

.material-sample-invalid-submit-button {
  cursor: not-allowed;
}

.form-request-material {
  margin-bottom: 30px;
}

.material-sample-content-description {
  font-size: 14px;
}

.material-sample-content-description-sub {
  font-size: 14px;
  text-align: center;
}

.useful .wrapper .useful__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}
.useful .wrapper .useful-description {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 28px;
  margin: 0 30px 64px;
  text-align: center;
}
.useful .wrapper h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 41px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .useful .wrapper h2 {
    text-align: center;
  }
}
.useful .wrapper h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .useful .wrapper h3 {
    font-size: 14px;
    line-height: 21px;
  }
}
.useful .wrapper .btn {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .useful .wrapper .btn {
    margin: 0 auto;
  }
}
.useful .wrapper .two-btn {
  width: 580px;
  margin: 20px 0 0 0;
  justify-content: left;
}
.useful .wrapper .two-btn .btn.white:first-of-type {
  margin-right: 24px;
}
.useful .wrapper .two-btn .btn.white {
  width: 290px;
  padding: 0 52px;
}
@media screen and (max-width: 768px) {
  .useful .wrapper .two-btn {
    width: 100%;
    justify-content: center;
  }
  .useful .wrapper .two-btn .btn.white:first-of-type {
    margin-right: auto;
  }
  .useful .wrapper .two-btn .btn.white {
    margin: 0 auto 20px auto;
  }
}
.useful .wrapper .text-link {
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #1f9970;
  text-decoration: underline;
}
.useful .wrapper .normal {
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 20px;
}
.useful .wrapper .useful-bnr-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto 60px auto;
}
@media screen and (max-width: 768px) {
  .useful .wrapper .useful-bnr-list {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto 40px auto;
  }
}
.useful .wrapper .useful-bnr-list figure {
  width: 282px;
  display: block;
}
@media screen and (max-width: 768px) {
  .useful .wrapper .useful-bnr-list figure {
    width: 100%;
    margin-bottom: 20px;
  }
}
.useful .wrapper .useful-bnr-list figure a {
  width: 100%;
  display: block;
}
.useful .wrapper .useful-bnr-list figure a img {
  width: 100%;
}
.useful .wrapper .useful-portal {
  padding: 67px 0;
}
@media screen and (max-width: 768px) {
  .useful .wrapper .useful-portal {
    padding: 48px 0;
  }
}
@media screen and (max-width: 768px) {
  .useful .wrapper .useful-portal .image {
    display: none;
  }
}
.useful .wrapper .up1 {
  background: #E5F6EF;
}
.useful .wrapper .up2 {
  background: #F1E9CC;
}
.useful .wrapper .up3 {
  background: #E4EFF8;
}
.useful .wrapper #useful-subsidy {
  background: #f3faff;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .useful .wrapper #useful-subsidy {
    padding: 48px 0;
  }
}
@media screen and (max-width: 768px) {
  .useful .wrapper #useful-subsidy .container {
    width: 100%;
    padding: 0 16px;
  }
}
.useful .wrapper #useful-subsidy .container .text {
  width: 690px;
}
@media screen and (max-width: 768px) {
  .useful .wrapper #useful-subsidy .container .text {
    width: 100%;
  }
}
.useful .wrapper #useful-subsidy .container .text .kaisetsu .right {
  margin-bottom: 40px;
}
.useful .wrapper #useful-subsidy .container .image img {
  width: 300px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .useful .wrapper #useful-subsidy .container .image {
    display: none;
  }
}
.useful .wrapper .useful-image-text {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .useful .wrapper .useful-image-text {
    width: 100%;
    padding: 0 16px;
  }
}
.useful .wrapper .useful-image-text .image {
  width: 457px;
}
.useful .wrapper .useful-image-text .image img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .useful .wrapper .useful-image-text .image {
    width: 100%;
    order: 2;
  }
}
.useful .wrapper .useful-image-text .text {
  width: 588px;
}
@media screen and (max-width: 768px) {
  .useful .wrapper .useful-image-text .text {
    width: 100%;
  }
  .useful .wrapper .useful-image-text .text h2 span {
    width: 50px;
    display: block;
    margin: 0 auto 8px auto;
  }
  .useful .wrapper .useful-image-text .text h2 span img {
    width: 100%;
  }
}
.useful .wrapper #useful-search {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .useful .wrapper #useful-search {
    padding: 48px 0;
  }
}
.useful .wrapper #useful-fsc {
  padding: 80px 0;
  background: #f5f8f7;
}
@media screen and (max-width: 768px) {
  .useful .wrapper #useful-fsc {
    padding: 48px 0;
  }
}

.service-title-area {
  width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #b2b2b2;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .service-title-area {
    width: calc(100% - 32px);
    padding: 0 0 20px 0;
  }
}
.service-title-area h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 54.4px;
  margin-bottom: 8px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-title-area h1 {
    font-size: 24px;
    line-height: 40px;
    text-align: center;
  }
}
.service-title-area p.normal {
  font-size: 16px;
  text-align: center;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .service-title-area p.normal {
    text-align: left;
  }
}
.service-title-area .wood-notice {
  margin-top: 20px;
  justify-content: center;
}
.service-title-area .wood-notice a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-title-area p.forbusiness {
  width: 283px;
  height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DEFF5A;
  font-size: 18px;
  line-height: 31px;
  letter-spacing: 1.3500000238px;
  margin: 0 auto 10px auto;
}
@media screen and (max-width: 768px) {
  .service-title-area p.forbusiness {
    font-size: 16px;
    width: 255px;
    height: 27px;
  }
}
.service-page-title-area {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #b2b2b2;
  padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .service-page-title-area {
    width: 100%;
    padding: 0 16px;
    border-bottom: none;
  }
}
.service-page-title-area .left {
  width: 580px;
}
@media screen and (max-width: 768px) {
  .service-page-title-area .left {
    width: 100%;
  }
}
.service-page-title-area .left h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 54.4px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .service-page-title-area .left h1 {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 16px;
  }
}
.service-page-title-area .left p.normal {
  font-size: 16px;
  line-height: 32px;
  font-weight: 300;
}
.service-page-title-area .left .two-btn {
  gap: 16px;
  margin-top: 24px;
  justify-content: flex-start;
  position: relative;
  z-index: 3;
}
.service-page-title-area .left .two-btn .btn {
  margin-top: 24px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .service-page-title-area .left .two-btn .btn {
    width: 100%;
  }
}
.service-page-title-area picture {
  width: 540px;
}
.service-page-title-area picture img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .service-page-title-area picture {
    width: 100%;
    margin-bottom: 16px;
  }
}
.service-list {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 64px 0;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .service-list {
    width: 100%;
    padding: 56px 16px 30px 16px;
  }
}
.service-list-mokuji {
  width: 242px;
  position: sticky;
  top: 150px;
}
@media screen and (max-width: 768px) {
  .service-list-mokuji {
    width: 100%;
    position: static;
  }
}
.service-list-mokuji h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .service-list-mokuji h2 {
    display: none;
    position: fixed;
    width: 147px;
    height: 36px;
    border-radius: 20px;
    background: #007B65;
    color: #fff;
    font-size: 14px;
    top: 100px;
    right: 16px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 6;
  }
  .service-list-mokuji h2 .slbhb {
    width: 12px;
    height: 11px;
    position: relative;
  }
  .service-list-mokuji h2 .slbhb span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    display: block;
    content: "";
    position: absolute;
    transition: ease 0.3s;
  }
  .service-list-mokuji h2 .slbhb span:nth-of-type(1) {
    top: 0;
  }
  .service-list-mokuji h2 .slbhb span:nth-of-type(2) {
    top: 5px;
  }
  .service-list-mokuji h2 .slbhb span:nth-of-type(3) {
    bottom: 0;
  }
}
.service-list-mokuji ul li a {
  padding: 8px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.service-list-mokuji ul li a.service_active {
  color: #007B65;
}
.service-list-mokuji ul li a.service_active:before {
  content: "・";
  font-size: 34px;
  line-height: 16px;
  width: 20px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .service-list-mokuji ul {
    position: fixed;
    width: calc(100% - 32px);
    top: 200px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #fff;
    padding: 16px;
    display: none;
    z-index: 6;
  }
  .service-list-mokuji ul li {
    border-bottom: 1px solid #E5E5E5;
  }
  .service-list-mokuji ul li:last-of-type {
    border-bottom: none;
  }
}
.service-list-area {
  width: 894px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service-list-area {
    width: 100%;
  }
}
.service-list-area .service-list-block {
  padding-top: 150px;
  margin-top: -150px;
  padding-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .service-list-area .service-list-block {
    padding-bottom: 20px;
    padding-top: 150px;
    margin-top: -150px;
  }
}
.service-list-area h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .service-list-area h3 {
    font-size: 20px;
    text-align: center;
  }
}
.service-list-area .normal {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 24px;
}
.service-list-area .normal.margin-less {
  margin-bottom: 0;
}
.service-list-area .service-list-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 24px;
}
@media screen and (max-width: 768px) {
  .service-list-area .service-list-group {
    row-gap: 16px;
  }
}
.service-list-area .service-list-group:after {
  width: 282px;
  display: block;
  content: "";
}
.service-list-area .service-list-group .service-link {
  padding: 16px;
  width: 282px;
  border: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .service-list-area .service-list-group .service-link {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
.service-list-area .service-list-group .service-link.other-tab h4:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 24px;
  background-repeat: no-repeat;
  background-image: url(../../../images/service/link.svg);
  background-size: contain;
  background-position: bottom;
  margin-left: 5px;
}
.service-list-area .service-list-group .service-link picture {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .service-list-area .service-list-group .service-link picture {
    margin: 0;
    width: 48%;
  }
}
.service-list-area .service-list-group .service-link picture img {
  width: 100%;
  display: block;
}
.service-list-area .service-list-group .service-link h4 {
  font-size: 16px;
  height: 54px;
  font-weight: 600;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .service-list-area .service-list-group .service-link h4 {
    width: 48%;
    height: auto;
  }
}
.service-list-area .service-list-group .service-link p {
  font-size: 14px;
  line-height: 23.8px;
  letter-spacing: 0.35px;
  color: #111;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .service-list-area .service-list-group .service-link p {
    margin-top: 10px;
  }
}
.service-list-area .post-information-container {
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .service-list-area .post-information-container {
    padding-bottom: 30px;
  }
}
.service-list-area .post-information-container .post-information-block {
  margin-bottom: 20px;
}
.service-list-area .post-information-container .post-information-block:last-of-type {
  margin-bottom: 0;
}
.service-list-area .post-information-container .post-information-block h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 1.2000000477px;
  margin-bottom: 16px;
}
.service-list-area .post-information-container .post-information-block .info-btn {
  width: 250px;
  height: 40px;
  border: 1px solid #1F9970;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1F9970;
  margin-bottom: 16px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .service-list-area .post-information-container .post-information-block .info-btn {
    width: 100%;
  }
}
.service-list-area .post-information-container .post-information-block p {
  font-size: 14px;
}
.service-list-area .post-information-container .post-information-block p a {
  color: #007B65;
  text-decoration: underline;
}
.service-list-area .post-information-container .post-information-block .form-other {
  margin-bottom: 28px;
}
.service-list-area .post-information-container .post-information-block .form-other a {
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  letter-spacing: 1.0499999523px;
  text-align: left;
}
.service-list-area .post-information-container .post-information-block .form-other a img {
  vertical-align: text-bottom;
}
.service-list-area .post-information-container .post-information-block .dl-pdf {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.0499999523px;
  color: #007B65;
  text-decoration: underline;
  margin-bottom: 24px;
}
.service-list-area .post-information-container .post-information-block .dl-pdf:after {
  content: "";
  width: 13px;
  height: 14px;
  display: block;
  background-repeat: no-repeat;
  background: url(../images/icon/icon_download.svg);
}
.service-list-area .post-information-container .post-information-block .tell-area {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .service-list-area .post-information-container .post-information-block .tell-area {
    justify-content: center;
  }
}
.service-list-area .post-information-container .post-information-block .tell-area dt {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.0499999523px;
}
@media screen and (max-width: 768px) {
  .service-list-area .post-information-container .post-information-block .tell-area dt {
    width: 100%;
    text-align: center;
  }
}
.service-list-area .post-information-container .post-information-block .tell-area dd.tell {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.5px;
}
.service-list-area .post-information-container .post-information-block .tell-area dd.time {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.3000000119px;
  color: #757575;
}
.service-page {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 64px 0;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .service-page {
    width: 100%;
    padding: 40px 16px 64px 16px;
  }
}
.service-page-content {
  width: 894px;
}
@media screen and (max-width: 768px) {
  .service-page-content {
    width: 100%;
  }
}
.service-page-content-block {
  padding-top: 150px;
  margin-top: -150px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .service-page-content-block {
    padding-top: 90px;
    margin-top: -90px;
  }
}
.service-page-content-block > div {
  margin-bottom: 20px;
}
.service-page-content-block > div:last-of-type {
  margin-bottom: 0;
}
.service-page-content-block h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}
.service-page-content-block h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .service-page-content-block h3 {
    font-size: 16px;
    line-height: 32px;
  }
}
.service-page-content-block h3:before {
  content: "■";
  color: #1F9970;
  margin-right: 10px;
}
.service-page-content .normal-text p {
  line-height: 2rem;
}
.service-page-content .kajyo-gaki2 .green-back {
  background: #E5F6EF;
  padding: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .service-page-content .kajyo-gaki2 .green-back {
    padding: 24px;
  }
}
.service-page-content .kajyo-gaki2 .gray-back {
  background: #E5E5E5;
  padding: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .service-page-content .kajyo-gaki2 .gray-back {
    padding: 24px;
  }
}
.service-page-content .kajyo-gaki2 h4 {
  font-weight: bold;
  margin-bottom: 8px;
}
.service-page-content .kajyo-gaki2 .border-back {
  border: 1px solid #B2B2B2;
  padding: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .service-page-content .kajyo-gaki2 .border-back {
    padding: 24px;
  }
}
.service-page-content .kajyo-gaki2 .border-back h5 {
  background: linear-gradient(transparent 60%, #CEFE90 60%);
  font-weight: 600;
  display: inline;
}
.service-page-content .kajyo-gaki2 ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-page-content .kajyo-gaki2 ul li {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .service-page-content .kajyo-gaki2 ul li {
    font-size: 14px;
    line-height: 28px;
    gap: 16px;
  }
}
.service-page-content .kajyo-gaki2 ul li span {
  font-weight: 600;
}
.service-page-content .kajyo-gaki2 ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #111;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .service-page-content .kajyo-gaki2 ul li:before {
    margin-top: 12px;
  }
}
.service-page-content .num-list02 .num-block {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-page-content .num-list02 .num-block .left {
  color: #1F9970;
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
  width: 45px;
  border-right: 1px solid #B2B2B2;
}
.service-page-content .num-list02 .num-block .right {
  width: 827px;
}
@media screen and (max-width: 768px) {
  .service-page-content .num-list02 .num-block .right {
    width: calc(100% - 55px);
  }
}
.service-page-content .num-list02 .num-block .right h4 {
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .service-page-content .num-list02 .num-block .right h4 {
    font-size: 16px;
    line-height: 32px;
  }
}
.service-page-content .num-list02 .num-block .right p {
  font-weight: 300;
  line-height: 2rem;
}
@media screen and (max-width: 768px) {
  .service-page-content .num-list02 .num-block .right p {
    font-size: 14px;
    line-height: 28px;
  }
}
.service-page-content .num-list02 .num-block .right p a {
  color: #1F9970;
  text-decoration: underline;
}
.service-page-content .image-text01-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.service-page-content .image-text01-block .image {
  width: 435px;
  display: block;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text01-block .image {
    width: 100%;
    margin-bottom: 20px;
  }
}
.service-page-content .image-text01-block .image img {
  width: 100%;
  display: block;
}
.service-page-content .image-text01-block .text {
  width: 435px;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text01-block .text {
    width: 100%;
  }
}
.service-page-content .image-text01-block .text p {
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text01-block .text p {
    font-size: 14px;
    line-height: 28px;
  }
}
.service-page-content .image-text01-block .text p span {
  background: linear-gradient(transparent 60%, #CEFE90 60%);
}
.service-page-content .image-text01-block .text p span.bold {
  font-weight: bold;
}
.service-page-content .image-text01-block .text a {
  color: #1F9970;
  font-weight: 300;
  text-decoration: underline;
}
.service-page-content .image-text01-block .text .border-back {
  padding: 40px;
  border: 1px solid #B2B2B2;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text01-block .text .border-back {
    padding: 24px;
  }
}
.service-page-content .image-text01-block .text .gray-back {
  padding: 40px;
  background: #F0F0F0;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text01-block .text .gray-back {
    padding: 24px;
  }
}
.service-page-content .image-text01-block .text .gray-back h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.service-page-content .image-text01-block .text ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-page-content .image-text01-block .text ul li {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text01-block .text ul li {
    font-size: 14px;
    line-height: 28px;
    gap: 16px;
  }
}
.service-page-content .image-text01-block .text ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #111;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text01-block .text ul li:before {
    margin-top: 12px;
  }
}
.service-page-content .image-text01 a {
  color: #1F9970;
  text-decoration: underline;
}
.service-page-content .image-text03-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text03-list {
    gap: 24px;
  }
}
.service-page-content .image-text03-list-block {
  width: 427px;
  border: 1px solid #B2B2B2;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text03-list-block {
    width: 100%;
  }
}
.service-page-content .image-text03-list-block picture {
  width: 100%;
  height: 240px;
  display: block;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text03-list-block picture {
    height: 192px;
  }
}
.service-page-content .image-text03-list-block picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-page-content .image-text03-list-block .text {
  padding: 24px;
}
.service-page-content .image-text03-list-block .text h4 {
  height: 68px;
  font-weight: 600;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text03-list-block .text h4 {
    height: auto;
    margin-bottom: 8px;
  }
}
.service-page-content .image-text03-list-block .text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text03-list-block .text p {
    height: auto;
    margin-bottom: 8px;
  }
}
.service-page-content .image-text03-list-block .text a {
  color: #1F9970;
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
  display: flex;
  align-items: center;
}
.service-page-content .image-text03-list-block .text a:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../../images/service/wood_product/arrow-green.svg);
  margin-left: 5px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text03 .btn {
    width: 100%;
  }
}
.service-page-content .image-text04-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text04-list {
    gap: 24px;
  }
}
.service-page-content .image-text04-list-block {
  width: 282px;
  border: 1px solid #B2B2B2;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text04-list-block {
    width: 100%;
  }
}
.service-page-content .image-text04-list-block picture {
  width: 100%;
  height: 158px;
  display: block;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text04-list-block picture {
    height: 192px;
  }
}
.service-page-content .image-text04-list-block picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-page-content .image-text04-list-block .text {
  padding: 24px 20px;
}
.service-page-content .image-text04-list-block .text h4 {
  height: 96px;
  font-weight: 600;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text04-list-block .text h4 {
    height: auto;
    margin-bottom: 8px;
  }
}
.service-page-content .image-text04-list-block .text h4.nigyo {
  height: 72px;
}
.service-page-content .image-text04-list-block .text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text04-list-block .text p {
    height: auto;
    margin-bottom: 8px;
  }
}
.service-page-content .image-text04-list-block .text a {
  color: #1F9970;
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
  display: flex;
  align-items: center;
}
.service-page-content .image-text04-list-block .text a:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../../images/service/wood_product/arrow-green.svg);
  margin-left: 5px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
.service-page-content .image-text04 .btn {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .service-page-content .image-text04 .btn {
    width: 100%;
  }
}
.service-page-content .comment03-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .service-page-content .comment03-list {
    gap: 24px;
  }
}
.service-page-content .comment03-list-block {
  width: 282px;
  border: 5px solid #F0F0F0;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .service-page-content .comment03-list-block {
    width: 100%;
  }
}
.service-page-content .comment03-list-block > p {
  font-size: 14px;
  line-height: 2rem;
  height: 224px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .service-page-content .comment03-list-block > p {
    height: auto;
  }
}
.service-page-content .comment03-list-block .person {
  display: flex;
  justify-content: space-between;
}
.service-page-content .comment03-list-block .person figure {
  width: 40px;
}
.service-page-content .comment03-list-block .person p {
  width: calc(100% - 50px);
}
.service-page-mokuji {
  width: 258px;
  position: sticky;
  top: 150px;
}
@media screen and (max-width: 768px) {
  .service-page-mokuji {
    width: 100%;
    position: static;
    background: #E5E5E5;
    padding: 16px 16px;
    order: -1;
    margin-bottom: 80px;
  }
  .service-page-mokuji.active ul {
    max-height: 500px;
    opacity: 1;
  }
  .service-page-mokuji.active ul li:first-child {
    margin-top: 16px;
  }
  .service-page-mokuji.active ul li {
    height: auto;
    margin-bottom: 16px;
  }
  .service-page-mokuji.active h4:before {
    transform: rotate(90deg);
  }
}
.service-page-mokuji h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .service-page-mokuji h4 {
    display: flex;
    gap: 8px;
    font-size: 16px;
    margin-bottom: 0;
  }
  .service-page-mokuji h4:before {
    content: "▶︎";
    transition: ease 0.3s;
  }
}
.service-page-mokuji ul li {
  margin-bottom: 16px;
}
.service-page-mokuji ul li a {
  color: #757575;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .service-page-mokuji ul {
    max-height: 0;
    opacity: 0;
    margin-left: 24px;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }
  .service-page-mokuji ul li {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease, margin-bottom 0.5s ease;
    margin-bottom: 0;
  }
  .service-page-mokuji ul li a {
    color: #111;
    text-decoration: underline;
  }
}
.service-page-mokuji .btn:first-of-type {
  margin-top: 32px;
}
.service-page-mokuji .btn:nth-of-type(2) {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .service-page-mokuji .btn {
    display: none;
  }
}
.service-story-contact {
  background: #E5F6EF;
  padding: 85px 0;
}
@media screen and (max-width: 768px) {
  .service-story-contact {
    padding: 57px 16px;
  }
}
.service-story-contact-inner {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .service-story-contact-inner {
    width: 100%;
    gap: 20px;
  }
}
.service-story-contact-inner p {
  color: #007B65;
  font-size: 22px;
  line-height: 44px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .service-story-contact-inner p {
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 36px;
  }
}
.service-story-contact-inner .btn {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 2px 2px 2px #ccc;
  border: none;
  font-size: 20px;
  width: 330px;
  height: 56px;
}
@media screen and (max-width: 768px) {
  .service-story-contact-inner .btn {
    width: 100%;
    height: 40px;
    font-weight: 600;
    font-size: 16px;
  }
}
.service-story-contact-inner .btn:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../../images/service/wood_product/arrow-white.svg);
  margin-left: 5px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
.service-story-other {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .service-story-other {
    padding: 40px 16px;
  }
}
.service-story-other p {
  text-align: center;
  margin-bottom: 16px;
}
.service-story-other .btn {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .service-story-other .btn {
    width: 100%;
  }
}
.service-story-other .btn:before {
  content: "";
  transform: rotate(180deg);
  width: 16px;
  height: 16px;
  background: url(../../images/service/wood_product/arrow-green.svg);
  margin-left: 5px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}

.active-service .service-list-mokuji .mokuji-btn .slbhb span:nth-of-type(1) {
  top: 6px;
  transform: rotate(-45deg);
}
.active-service .service-list-mokuji .mokuji-btn .slbhb span:nth-of-type(2) {
  top: 6px;
  transform: rotate(45deg);
}
.active-service .service-list-mokuji .mokuji-btn .slbhb span:nth-of-type(3) {
  display: none;
}
.active-service .service-list-mokuji ul {
  display: block;
}
.active-service .overlay-service {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 5;
}

.lumbermill .breadcrumbs {
  margin-bottom: 24px;
}
.lumbermill .container {
  width: 1080px;
  margin: 0 auto;
  padding-bottom: 66px;
}
@media screen and (max-width: 768px) {
  .lumbermill .container {
    width: 100%;
    padding: 0 20px 20px 20px;
  }
}
.lumbermill h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 68px;
  letter-spacing: 2.4000000954px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .lumbermill h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 41px;
    letter-spacing: 1.7999999523px;
  }
}

.processing-unit .breadcrumbs {
  margin-bottom: 24px;
}
.processing-unit .container {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 66px;
}
@media screen and (max-width: 768px) {
  .processing-unit .container {
    width: 100%;
    padding: 0 16px;
  }
}
.processing-unit h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 54px;
  letter-spacing: 2.4000000954px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .processing-unit h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 41px;
    letter-spacing: 1.7999999523px;
  }
}
.processing-unit .sub-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .processing-unit .sub-info {
    gap: 10px;
    margin-bottom: 40px;
  }
}
.processing-unit .sub-info p {
  color: #757575;
}
@media screen and (max-width: 768px) {
  .processing-unit .sub-info p {
    width: 100%;
  }
}
.processing-unit .sub-info a {
  color: #007b65;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .processing-unit .sub-info a {
    width: 100%;
  }
}
.processing-unit .processing-unit-detail-cover {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .processing-unit .processing-unit-detail-cover {
    margin-bottom: 65px;
  }
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main {
  width: 894px;
}
@media screen and (max-width: 768px) {
  .processing-unit .processing-unit-detail-cover .processing-unit-detail-main {
    width: 100%;
    padding: 0;
  }
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block {
    margin-bottom: 40px;
  }
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px;
  margin: 0;
  border-top: 1px solid #E5E5E5;
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl:first-of-type {
  border-top: none;
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dt {
  width: 180px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dt {
    width: 100%;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 1.2000000477px;
    margin-bottom: 8px;
  }
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd {
  width: 618px;
}
@media screen and (max-width: 768px) {
  .processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd {
    width: 100%;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.0499999523px;
  }
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd pre {
  text-wrap: auto;
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 8px 0;
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd dl dt {
  width: 60px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd dl dt {
    width: 100%;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 1.2000000477px;
    margin-bottom: 8px;
  }
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd dl dd {
  width: calc(100% - 60px);
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd dl dd.tell-link a {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd dl dd.tell-link a {
    pointer-events: auto;
    color: #007B65;
    text-decoration: underline;
  }
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd dl dd.fax-link {
  pointer-events: none;
  text-decoration: none;
  border: none !important;
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd dl dd.fax-link a {
  pointer-events: none;
  text-decoration: none;
  border: none !important;
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd dl dd.web-site a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #007B65;
  text-decoration: underline;
  margin-bottom: 8px;
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd dl dd.web-site a:after {
  content: "";
  background: url(../images/processing-unit/new-tab.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .processing-unit .processing-unit-detail-cover .processing-unit-detail-main .processing-unit-detail-block > dl > dd dl dd {
    width: 100%;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.0499999523px;
    text-decoration: none !important;
  }
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-main h3 {
  background: #F6F6F6;
  padding: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-side {
  width: 259px;
  position: sticky;
  top: 150px;
}
@media screen and (max-width: 768px) {
  .processing-unit .processing-unit-detail-cover .processing-unit-detail-side {
    width: 100%;
    padding: 0;
    position: static;
  }
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-side picture {
  display: block;
  width: 100%;
  margin-bottom: 24px;
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-side picture p {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 1.0499999523px;
  text-align: center;
  margin-bottom: 8px;
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-side picture img {
  width: 100%;
  display: block;
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-side .recommend-content {
  border-top: 1px solid #E5E5E5;
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-side .recommend-content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 1.0499999523px;
  padding: 8px 0;
  margin-bottom: 8px;
}
.processing-unit .processing-unit-detail-cover .processing-unit-detail-side .recommend-content picture {
  margin-bottom: 8px;
}
.processing-unit .commercial {
  padding: 40px 0 64px 0;
  width: 764px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .processing-unit .commercial {
    width: 100%;
    padding: 64px 20px;
  }
}
.processing-unit .commercial h3 {
  margin-bottom: 48px;
}
.processing-unit .commercial h3 img {
  width: 436px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .processing-unit .commercial h3 img {
    width: 100%;
  }
}
.processing-unit .commercial h3 span {
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 1.3500000238px;
  text-align: center;
  display: block;
  margin-bottom: 16px;
  color: #007B65;
}
.processing-unit .commercial .commercial-cover {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.processing-unit .commercial .commercial-cover .commercial-block {
  width: 350px;
}
@media screen and (max-width: 768px) {
  .processing-unit .commercial .commercial-cover .commercial-block {
    width: 100%;
    margin-bottom: 40px;
  }
}
.processing-unit .commercial .commercial-cover .commercial-block figure {
  width: 180px;
  margin: 0 auto 24px auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .processing-unit .commercial .commercial-cover .commercial-block figure {
    width: 150px;
    margin: 0 auto 16px auto;
  }
}
.processing-unit .commercial .commercial-cover .commercial-block figure img {
  width: 100%;
  display: block;
}
.processing-unit .commercial .commercial-cover .commercial-block h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 41px;
  letter-spacing: 1.7999999523px;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .processing-unit .commercial .commercial-cover .commercial-block h4 {
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }
}
.processing-unit .commercial .commercial-cover .commercial-block p {
  margin-bottom: 8px;
}
.processing-unit .commercial .commercial-cover .commercial-block .new-tab {
  color: #007B65;
  text-decoration: underline;
  display: flex;
  gap: 10px;
}
.processing-unit .commercial .commercial-cover .commercial-block .new-tab:after {
  content: "";
  background: url(../images/processing-unit/new-tab.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 24px;
}

.processing-unit-top {
  background: #F1E9CC;
}
@media screen and (max-width: 768px) {
  .processing-unit-top .container h1 {
    background: url(../images/processing-unit/sp_seizaisyo-map.webp);
  }
}

.prefecture .number {
  font-size: 24px;
  font-weight: 500;
  line-height: 41px;
  letter-spacing: 1.7999999523px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .prefecture .number {
    font-size: 18px;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: 1.3500000238px;
  }
}
.prefecture .nothing {
  border-top: 1px solid #E5E5E5;
  padding-top: 40px;
}
.prefecture .nothing strong {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .prefecture .nothing strong {
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 1.2000000477px;
    text-align: center;
  }
}
.prefecture .nothing .btn {
  margin-top: 16px;
}
.prefecture .nothing .processing-unit-trouble {
  width: 1080px;
  padding: 32px;
  background: #E5F6EF;
  margin: 40px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .prefecture .nothing .processing-unit-trouble {
    width: 100%;
    margin: 32px auto 0 auto;
    padding: 24px;
  }
}
.prefecture .nothing .processing-unit-trouble h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .prefecture .nothing .processing-unit-trouble h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: 1.3500000238px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .prefecture .nothing .processing-unit-trouble p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.0499999523px;
  }
}
.prefecture .unit-list {
  border-top: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .prefecture .unit-list {
    border: none;
  }
}
.prefecture .unit-list .lumbermill-block {
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .prefecture .unit-list .lumbermill-block {
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    margin-bottom: 24px;
  }
}
.prefecture .unit-list .lumbermill-block .lumbermill-block-inner {
  display: flex;
  padding: 32px 24px;
  transition: ease 0.3s;
  flex-wrap: wrap;
}
.prefecture .unit-list .lumbermill-block .lumbermill-block-inner:hover {
  opacity: 1;
  background: linear-gradient(0deg, #E5F6EF, #E5F6EF), linear-gradient(0deg, #E5E5E5, #E5E5E5);
}
@media screen and (max-width: 768px) {
  .prefecture .unit-list .lumbermill-block .lumbermill-block-inner {
    padding: 24px;
  }
  .prefecture .unit-list .lumbermill-block .lumbermill-block-inner:hover {
    background: none;
  }
}
.prefecture .unit-list .lumbermill-block .lumbermill-block-inner:after {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../images/processing-unit/green-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: auto 0 auto auto;
}
@media screen and (max-width: 768px) {
  .prefecture .unit-list .lumbermill-block .lumbermill-block-inner:after {
    display: none;
  }
}
.prefecture .unit-list .lumbermill-block .left {
  width: 366px;
}
@media screen and (max-width: 768px) {
  .prefecture .unit-list .lumbermill-block .left {
    width: 100%;
    padding: 0;
    position: static;
    margin-bottom: 16px;
  }
}
.prefecture .unit-list .lumbermill-block .left h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: 1.3500000238px;
  margin-bottom: 8px;
}
.prefecture .unit-list .lumbermill-block .left p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.0499999523px;
  color: #757575;
}
.prefecture .unit-list .lumbermill-block .right {
  width: 624px;
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  .prefecture .unit-list .lumbermill-block .right {
    width: 100%;
    padding: 0;
    position: static;
    margin-bottom: 16px;
  }
}
.prefecture .unit-list .lumbermill-block .right dl {
  display: flex;
  gap: 16px;
  margin: 0 0 10px 0;
}
.prefecture .unit-list .lumbermill-block .right dl dt {
  width: 140px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 1.2000000477px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .prefecture .unit-list .lumbermill-block .right dl dt {
    font-size: 10px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0.25px;
    width: 95px;
  }
}
.prefecture .unit-list .lumbermill-block .right dl dd {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.0499999523px;
}
@media screen and (max-width: 768px) {
  .prefecture .unit-list .lumbermill-block .right dl dd {
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0.25px;
    width: calc(100% - 110px);
  }
}
.prefecture .unit-list .lumbermill-block .unit-btn {
  width: 100%;
  height: 33px;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #1F9970;
  border-radius: 4px;
  gap: 10px;
  font-size: 12px;
  display: none;
}
@media screen and (max-width: 768px) {
  .prefecture .unit-list .lumbermill-block .unit-btn {
    display: flex;
  }
}
.prefecture .unit-list .lumbermill-block .unit-btn:after {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../images/processing-unit/white-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.other-prefecture {
  background: #F6F6F6;
  padding: 64px 0;
}
@media screen and (max-width: 768px) {
  .other-prefecture {
    padding: 40px 0;
    position: relative;
    height: auto;
    max-height: 450px;
    overflow: hidden;
    transition: max-height 1s;
  }
  .other-prefecture::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 15%;
    transition: 1s;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
  }
}
.other-prefecture h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 54px;
  letter-spacing: 2.4000000954px;
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .other-prefecture h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 41px;
    letter-spacing: 1.7999999523px;
    margin-bottom: 24px;
  }
}
.other-prefecture .prefecture-list {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  background: none;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .other-prefecture .prefecture-list {
    width: 100%;
    padding: 0 20px;
  }
}
.other-prefecture .prefecture-list dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 50%;
  gap: 16px;
  margin: 0 0 16px 0;
}
@media screen and (max-width: 768px) {
  .other-prefecture .prefecture-list dl {
    width: 100%;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 32px;
  }
  .other-prefecture .prefecture-list dl:after {
    width: 90px;
    content: "";
  }
}
.other-prefecture .prefecture-list dl dt {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
  margin-right: 32px;
}
@media screen and (max-width: 768px) {
  .other-prefecture .prefecture-list dl dt {
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 1.2000000477px;
    margin-right: auto;
    padding: 5px 0;
    border-bottom: 1px solid #E5E5E5;
    width: 100% !important;
  }
}
.other-prefecture .prefecture-list dl dd a {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 1.2000000477px;
  color: #007B65;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .other-prefecture .prefecture-list dl dd a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 1.2000000477px;
    text-align: center;
    text-decoration: none;
    width: 93px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E5E5E5;
    box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.1019607843);
    border-radius: 6px;
    background: #fff;
  }
}
.other-prefecture .prefecture-list dl:nth-of-type(odd) dt {
  width: 134px;
}
.other-prefecture .prefecture-list dl:nth-of-type(even) dt {
  width: 110px;
}

.more__btn {
  display: none;
}

@media screen and (max-width: 768px) {
  #more-read {
    padding-bottom: 40px;
  }
  .more__btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 270px;
    height: 40px;
    gap: 10px;
    border: 1px solid #1F9970;
    background-color: #fff;
    color: #1F9970;
    cursor: pointer;
  }
  .more__btn:after {
    border: 0;
    border-bottom: solid 1px #1F9970;
    border-right: solid 1px #1F9970;
    content: "";
    height: 8px;
    margin-top: -5px;
    transform: rotate(45deg);
    transition: ease 0.3s;
    width: 8px;
  }
  #more-read.open {
    background: #F6F6F6;
  }
  #more-read.open .other-prefecture:after {
    z-index: -1;
    opacity: 0;
  }
  #more-read.open .more__btn:after {
    margin-top: 3px;
    transform: rotate(225deg);
  }
}
.forestry-by-region-top {
  background: #E5F6EF;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-top .container h1 {
    background: url(../images/regional-forestry/sp_chiikizai-map.webp);
  }
}

.forestry-by-region-prefecture .bread-area {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  width: 1200px;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .bread-area {
    width: 100%;
    padding: 0 16px;
  }
}
.forestry-by-region-prefecture .bread-area .breadcrumbs {
  width: auto;
  margin: 0;
  padding: 0;
}
.forestry-by-region-prefecture .bread-area .prefecture-modal-btn {
  border: 1px solid #007B65;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0.8999999762px;
  text-align: center;
  color: #007B65;
  border-radius: 3px;
  cursor: pointer;
}
.forestry-by-region-prefecture .container {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 66px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .container {
    width: 100%;
    padding: 0 16px;
  }
}
.forestry-by-region-prefecture .container .forestry-list-area {
  position: relative;
}
.forestry-by-region-prefecture .container .forestry-list-area:after {
  content: "";
  width: 100vw;
  height: 3px;
  bottom: -3px;
  left: calc(600px - 50vw);
  background: #007B65;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .container .forestry-list-area:after {
    left: -20px;
  }
}
.forestry-by-region-prefecture .container .forestry-list-area .forestry-list {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .container .forestry-list-area .forestry-list {
    width: 100%;
    gap: 12px;
    overflow: scroll;
  }
  .forestry-by-region-prefecture .container .forestry-list-area .forestry-list li {
    flex-shrink: 0;
  }
}
.forestry-by-region-prefecture .container .forestry-list-area .forestry-list li {
  height: 50px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .container .forestry-list-area .forestry-list li {
    height: 43px;
  }
}
.forestry-by-region-prefecture .container .forestry-list-area .forestry-list li * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
  border-radius: 4px 4px 0 0;
  padding: 0 24px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .container .forestry-list-area .forestry-list li * {
    font-size: 16px;
  }
}
.forestry-by-region-prefecture .container .forestry-list-area .forestry-list li span {
  background: #007B65;
  color: #fff;
}
.forestry-by-region-prefecture .container .forestry-list-area .forestry-list li a {
  background: #F6F6F6;
  color: #757575;
  border: 1px solid #E5E5E5;
  margin-bottom: -1px;
}
.forestry-by-region-prefecture h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 68px;
  letter-spacing: 2.4000000954px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture h1 {
    font-size: 24px;
    line-height: 40px;
  }
}
.forestry-by-region-prefecture .forestry-cover {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  padding-top: 64px;
}
.forestry-by-region-prefecture .forestry-cover .renewal-date {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.3000000119px;
  text-align: right;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover {
    padding-top: 40px;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main {
  width: 894px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main {
    width: 100%;
    padding: 0;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block {
    margin-bottom: 56px;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block h2 {
  background: #F6F6F6;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
  padding: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block h2 img {
  width: 27px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block h2 {
    font-size: 16px;
    line-height: 27px;
    font-weight: 700;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block p.source {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.3000000119px;
  text-align: left;
  color: #757575;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-feature {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-feature .text {
  width: 648px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-feature .text {
    width: 100%;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-feature .text h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-feature .text h3 {
    font-size: 16px;
    line-height: 27px;
    font-weight: 700;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-feature .text p {
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-feature .text p {
    font-size: 14px;
    line-height: 24px;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-feature figure {
  display: block;
  width: 222px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-feature figure {
    width: 200px;
    margin: 0 auto 24px auto;
    order: -1;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-feature figure img {
  width: 100%;
  display: block;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info {
  border: 1px solid #B2B2B2;
  border-radius: 8px;
  padding: 32px 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info {
    padding: 24px;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info h4 {
  width: 23%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.1em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info h4 {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 1.2000000477px;
    text-align: left;
    padding-bottom: 8px;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 16px;
  }
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info h4 br {
    display: none;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text {
  width: 77%;
  padding-left: 40px;
  border-left: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text {
    width: 100%;
    padding: 0;
    border-left: none;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text ul li {
    width: 100%;
    row-gap: 10px;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text ul li figure {
  width: 25px;
  display: block;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text ul li figure {
    width: 100%;
    display: flex;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text ul li figure img {
  width: 25px;
  display: block;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text ul li figure img {
    width: 20px;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text ul li figure span {
  display: none;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text ul li figure span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1.0499999523px;
    text-align: left;
    margin-left: 8px;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text ul li dl {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text ul li dl dt {
  font-size: 16px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 1.2000000477px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text ul li dl dt {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .numerical-info .text ul li dl dd {
    font-size: 14px;
    line-height: 24px;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block {
  margin-bottom: 50px;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 17px;
  border-bottom: 1px solid #E5E5E5;
  margin: 0;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl:last-of-type {
  border-bottom: none;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl > dt {
  width: 180px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl > dt {
    width: 100%;
    margin-bottom: 8px;
    color: #007B65;
  }
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl > dt span {
    color: #111;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl > dd {
  width: 618px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl > dd {
    width: 100%;
    font-size: 16px;
    line-height: 190%;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl > dd p.nothing {
  color: #757575;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl > dd p.source {
  margin-top: 8px;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl > dd ul li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 32px;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl > dd ul li:before {
  content: "・";
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl > dd dl {
  margin: 0 0 16px 0;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl > dd dl dt {
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 1.2000000477px;
  margin-bottom: 8px;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-overview-block > dl > dd a {
  color: #007B65;
  text-decoration: underline;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .providing-information {
  border: 3px solid #1F9970;
  width: 100%;
  padding: 32px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .providing-information {
    padding: 24px;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .providing-information p {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .providing-information p {
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 1.0499999523px;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .providing-information .btn {
  margin: 0 auto;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .species-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .species-list {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .species-list .species-block {
    width: 100%;
    padding: 24px;
    border-bottom: 1px solid #E5E5E5;
  }
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .species-list .species-block:last-of-type {
    border-bottom: none;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .species-list .species-block.conifers {
  width: 206px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .species-list .species-block.conifers {
    width: 100%;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .species-list .species-block.broadleaf_trees {
  width: 206px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .species-list .species-block.broadleaf_trees {
    width: 100%;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .species-list .species-block.brand_lumber {
  width: 418px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .species-list .species-block.brand_lumber {
    width: 100%;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .species-list .species-block h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 1.2000000477px;
  padding-bottom: 5px;
  border-bottom: 1px solid #B2B2B2;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .species-list .species-block h3 {
    border-bottom: none;
    margin-bottom: 8px;
    padding-bottom: 0;
    font-weight: 700;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .regional-alert {
  display: flex;
  align-items: center;
  border: 2px solid #1F9970;
  border-radius: 8px;
  padding: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .regional-alert {
    position: relative;
    padding: 16px;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .regional-alert figure {
  width: 36px;
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .regional-alert figure img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .regional-alert figure {
    position: absolute;
    top: -14px;
    left: 16px;
    width: 30px;
    border-radius: 0;
    z-index: 3;
    background: #fff;
  }
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .regional-alert figure img {
    width: 85%;
    margin: 0 auto;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .regional-alert p {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 1.2000000477px;
  text-align: left;
  width: calc(100% - 60px);
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .regional-alert p span {
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .regional-alert p {
    width: 100%;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-trouble {
  width: 100%;
  padding: 32px;
  background: #E5F6EF;
  margin: 40px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-trouble {
    width: 100%;
    margin: 32px auto 0 auto;
    padding: 24px;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-trouble h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-trouble h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: 1.3500000238px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-trouble p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.0499999523px;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-main .forestry-main-block .forestry-trouble .btn {
  margin-top: 16px;
}
.forestry-by-region-prefecture .forestry-cover .forestry-side {
  width: 258px;
  position: sticky;
  top: 150px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .forestry-cover .forestry-side {
    width: 100%;
    padding: 0;
    margin-bottom: 72px;
    position: static;
  }
}
.forestry-by-region-prefecture .forestry-cover .forestry-side picture {
  display: block;
  width: 100%;
  margin-bottom: 24px;
}
.forestry-by-region-prefecture .forestry-cover .forestry-side picture p {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 1.0499999523px;
  text-align: center;
  margin-bottom: 8px;
}
.forestry-by-region-prefecture .forestry-cover .forestry-side picture img {
  width: 100%;
  display: block;
}
.forestry-by-region-prefecture .forestry-cover .forestry-side .recommend-content .recommend-content-title {
  line-height: 24px;
  padding: 4px 0;
  margin-bottom: 8px;
  text-align: center;
  font-size: 14px;
  background-color: #F6F6F6;
  font-weight: 700;
  letter-spacing: 1.05px;
}
.forestry-by-region-prefecture .forestry-cover .forestry-side .recommend-content picture {
  margin-bottom: 8px;
}
.forestry-by-region-prefecture .forestry-cover .forestry-side .special-bnr {
  width: 100%;
  display: block;
}
.forestry-by-region-prefecture .forestry-cover .forestry-side .special-bnr img {
  width: 100%;
  display: block;
}
.forestry-by-region-prefecture .commercial {
  padding: 40px 0 64px 0;
  width: 764px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .commercial {
    width: 100%;
    padding: 64px 20px;
  }
}
.forestry-by-region-prefecture .commercial h3 {
  margin-bottom: 48px;
}
.forestry-by-region-prefecture .commercial h3 img {
  width: 436px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .commercial h3 img {
    width: 100%;
  }
}
.forestry-by-region-prefecture .commercial h3 span {
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 1.3500000238px;
  text-align: center;
  display: block;
  margin-bottom: 16px;
  color: #007B65;
}
.forestry-by-region-prefecture .commercial .commercial-cover {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.forestry-by-region-prefecture .commercial .commercial-cover .commercial-block {
  width: 350px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .commercial .commercial-cover .commercial-block {
    width: 100%;
    margin-bottom: 40px;
  }
}
.forestry-by-region-prefecture .commercial .commercial-cover .commercial-block figure {
  width: 180px;
  margin: 0 auto 24px auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .commercial .commercial-cover .commercial-block figure {
    width: 150px;
    margin: 0 auto 16px auto;
  }
}
.forestry-by-region-prefecture .commercial .commercial-cover .commercial-block figure img {
  width: 100%;
  display: block;
}
.forestry-by-region-prefecture .commercial .commercial-cover .commercial-block h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 41px;
  letter-spacing: 1.7999999523px;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .forestry-by-region-prefecture .commercial .commercial-cover .commercial-block h4 {
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }
}
.forestry-by-region-prefecture .commercial .commercial-cover .commercial-block p {
  margin-bottom: 8px;
}
.forestry-by-region-prefecture .commercial .commercial-cover .commercial-block .new-tab {
  color: #007B65;
  text-decoration: underline;
  display: flex;
  gap: 10px;
}
.forestry-by-region-prefecture .commercial .commercial-cover .commercial-block .new-tab:after {
  content: "";
  background: url(../images/regional-forestry/new-tab.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 24px;
}

.regional-object.regional-subsidy .object-block .block-top {
  width: 100%;
}
.regional-object.regional-subsidy .object-block .block-top .block-top-full {
  width: 100%;
}
.regional-object .regional-object-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 24px;
}
.regional-object .regional-object-title .list-count {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.regional-object .regional-object-title .list-count .numerator {
  font-size: 24px;
  font-weight: 500;
  line-height: 41px;
  letter-spacing: 1.7999999523px;
}
.regional-object .regional-object-title .list-count .denominator {
  font-size: 16px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 1.2000000477px;
  text-align: left;
  color: #757575;
}
.regional-object .nothing-list p {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .regional-object .nothing-list p {
    font-size: 16px;
  }
}
.regional-object .nothing-list .btn {
  margin: 0 auto;
}
.regional-object .object-block {
  margin-bottom: 32px;
  border-radius: 10px;
  border: 1px solid #E5E5E5;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .regional-object .object-block {
    margin-bottom: 24px;
    border-radius: 5px;
  }
}
.regional-object .object-block .block-top {
  background: #F6F6F6;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-top {
    flex-wrap: wrap;
  }
}
.regional-object .object-block .block-top .block-top-text {
  width: 100%;
}
.regional-object .object-block .block-top .block-top-image {
  width: 170px;
  height: 100px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-top .block-top-image {
    order: -1;
    margin: 0 auto 10px auto;
  }
}
.regional-object .object-block .block-top .block-top-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-top .block-top-image img {
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-top {
    padding: 24px;
  }
}
.regional-object .object-block .block-top h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 41px;
  letter-spacing: 1.7999999523px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.regional-object .object-block .block-top h3 span {
  width: 88px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #757575;
  color: #fff;
  font-size: 18px;
  border-radius: 8px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-top h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: 1.3500000238px;
    flex-direction: column;
    align-items: flex-start;
  }
  .regional-object .object-block .block-top h3 span {
    width: 64px;
    height: 32px;
    font-size: 14px;
    order: -1;
    margin-bottom: 12px;
  }
}
.regional-object .object-block .block-top p.region {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.3500000238px;
  color: #757575;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-top p.region {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.0499999523px;
  }
}
.regional-object .object-block .block-top dl {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.regional-object .object-block .block-top dl dt {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-top dl dt {
    width: 50px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.3000000119px;
  }
}
.regional-object .object-block .block-top dl dd {
  width: calc(100% - 140px);
  flex-shrink: 0;
}
.regional-object .object-block .block-top dl dd a {
  word-break: break-all;
  color: #007B65;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-top dl dd a {
    font-size: 14px;
  }
}
.regional-object .object-block .block-top dl dd a:after {
  content: "";
  background: url(../images/regional-forestry/new-tab.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-left: 4px;
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-top dl dd {
    width: calc(100% - 70px);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.3000000119px;
  }
  .regional-object .object-block .block-top dl dd.period {
    font-size: 14px;
  }
}
.regional-object .object-block .block-bottom {
  padding: 32px 40px;
  transition: height ease 0.3s;
}
.regional-object .object-block .block-bottom.close {
  height: 112px;
}
.regional-object .object-block .block-bottom.open {
  height: auto;
}
.regional-object .object-block .block-bottom .more__btn2 {
  display: none;
}
.regional-object .object-block .block-bottom dl.block-bottom-dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid #E5E5E5;
}
.regional-object .object-block .block-bottom dl.block-bottom-dl:first-of-type {
  padding-top: 0;
}
.regional-object .object-block .block-bottom dl.block-bottom-dl:last-of-type {
  border-bottom: none;
}
.regional-object .object-block .block-bottom dl.block-bottom-dl > dt {
  width: 180px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-bottom dl.block-bottom-dl > dt {
    width: 100%;
    margin-bottom: 10px;
  }
}
.regional-object .object-block .block-bottom dl.block-bottom-dl > dd {
  width: 578px;
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-bottom dl.block-bottom-dl > dd {
    width: 100%;
  }
}
.regional-object .object-block .block-bottom dl.block-bottom-dl > dd a {
  color: #007B65;
  text-decoration: underline;
  word-break: break-all;
}
.regional-object .object-block .block-bottom dl.block-bottom-dl > dd .logo-usage-image {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.regional-object .object-block .block-bottom dl.block-bottom-dl > dd .logo-usage-image li img {
  max-width: 150px;
  max-height: 80px;
}
.regional-object .object-block .block-bottom dl.block-bottom-dl > dd dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 8px 0;
}
.regional-object .object-block .block-bottom dl.block-bottom-dl > dd dl:first-of-type {
  margin: 8px 0;
}
.regional-object .object-block .block-bottom dl.block-bottom-dl > dd dl:last-of-type {
  margin: 0;
}
.regional-object .object-block .block-bottom dl.block-bottom-dl > dd dl dt {
  width: 60px;
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-bottom dl.block-bottom-dl > dd dl dt {
    width: 50px;
  }
}
.regional-object .object-block .block-bottom dl.block-bottom-dl > dd dl dd {
  width: 502px;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-bottom dl.block-bottom-dl > dd dl dd {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .block-bottom {
    padding: 24px;
  }
  .regional-object .object-block .block-bottom.fill .btn {
    display: none;
  }
  .regional-object .object-block .block-bottom.over .explanation {
    position: relative;
    overflow: hidden;
    transition: height 1s;
    height: 246px;
  }
  .regional-object .object-block .block-bottom.over .more__btn2 {
    display: block;
  }
  .regional-object .object-block .block-bottom .explanation {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.0499999523px;
  }
}
.regional-object .object-block .toggle-area {
  transition: ease 0.3s;
  position: relative;
  z-index: 3;
}
.regional-object .object-block .toggle-area .gradient {
  transition: ease 0.3s;
}
.regional-object .object-block .toggle-area-content {
  transition: ease 0.3s;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.regional-object .object-block .toggle-area.open {
  background: #F6F6F6;
}
.regional-object .object-block .toggle-area.open .gradient {
  height: 0;
}
.regional-object .object-block .toggle-area.open .toggle-btn:after {
  transform: rotate(180deg);
}
.regional-object .object-block .toggle-area.close .toggle-area-content {
  background: #fff;
}
.regional-object .object-block .toggle-area.close .gradient {
  height: 28px;
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgb(255, 255, 255));
}
.regional-object .object-block .toggle-area .toggle-btn {
  width: 155px;
  height: 54px;
  border: 2px solid #1F9970;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 1.2000000477px;
  text-align: center;
  gap: 5px;
  color: #007B65;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  transition: ease 0.3s;
}
.regional-object .object-block .toggle-area .toggle-btn:after {
  width: 12px;
  height: 7px;
  content: "";
  transition: ease 0.3s;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/regional-forestry/arrow-green.svg);
}
.regional-object .object-block .toggle-area .toggle-btn:hover {
  background: #1F9970;
  color: #fff;
}
.regional-object .object-block .toggle-area .toggle-btn:hover:after {
  background-image: url(../images/regional-forestry/arrow-white.svg);
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .toggle-area .toggle-btn:hover {
    color: #007B65;
    background: #fff;
  }
  .regional-object .object-block .toggle-area .toggle-btn:hover:after {
    background-image: url(../images/regional-forestry/arrow-green.svg);
  }
}
@media screen and (max-width: 768px) {
  .regional-object .object-block .toggle-area .toggle-btn {
    width: 163px;
    height: 44px;
  }
}

@media screen and (max-width: 768px) {
  #more-read2 {
    padding-bottom: 40px;
  }
  .more__btn2 {
    color: #757575;
    font-size: 14px;
    cursor: pointer;
  }
  #more-read2.open {
    background: #F6F6F6;
  }
}
.area-search .breadcrumbs {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .area-search .breadcrumbs {
    margin-bottom: 10px;
  }
}
.area-search .container {
  width: 929px;
  margin: 0 auto;
  padding-bottom: 66px;
}
@media screen and (max-width: 768px) {
  .area-search .container {
    width: 100%;
    padding: 0;
  }
}
.area-search .container h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 68px;
  letter-spacing: 2.4000000954px;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .area-search .container h1 {
    height: 160px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 20px bottom;
    padding: 0 16px 16px 16px;
    font-size: 24px;
    font-weight: 500;
    line-height: 41px;
    letter-spacing: 1.7999999523px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 0;
  }
}
.area-search .container .map-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.area-search .container .map-list figure {
  width: 250px;
}
.area-search .container .map-list figure img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .area-search .container .map-list figure {
    display: none;
  }
}

.prefecture-modal-contents {
  position: fixed;
  width: 679px;
  height: 464px;
  inset: 0;
  margin: auto;
  z-index: 10;
  display: none;
}
@media screen and (max-width: 768px) {
  .prefecture-modal-contents {
    width: 304px;
    height: 80%;
    margin: 60px auto 20px auto;
    position: absolute;
  }
}
.prefecture-modal-contents .wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .prefecture-modal-contents .wrapper {
    padding: 40px 16px;
    border-radius: 0;
    width: 100%;
    height: 100%;
  }
}
.prefecture-modal-contents .wrapper .prefecture-list {
  padding: 0;
  width: 599px;
}
@media screen and (max-width: 768px) {
  .prefecture-modal-contents .wrapper .prefecture-list {
    width: 100%;
    height: 100%;
    overflow: scroll;
  }
  .prefecture-modal-contents .wrapper .prefecture-list dl:after {
    width: 80px;
    content: "";
  }
  .prefecture-modal-contents .wrapper .prefecture-list dl dt {
    width: 100%;
  }
  .prefecture-modal-contents .wrapper .prefecture-list dl dd a {
    width: 80px;
    height: 40px;
    font-size: 14px;
  }
}
.prefecture-modal-contents .prefecture-modal-batsu {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3019607843);
  position: absolute;
  right: 0;
  top: -50px;
  cursor: pointer;
}
.prefecture-modal-contents .prefecture-modal-batsu img {
  width: 11px;
}

.overlay-prefecture {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.5);
  transition: ease 0.3s;
}

.active-prefecture .prefecture-modal-contents {
  display: block;
}
.active-prefecture .overlay-prefecture {
  opacity: 1;
  pointer-events: auto;
}

.prefecture-list {
  width: 655px;
  padding: 32px;
  border-radius: 10px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .prefecture-list {
    width: 100%;
    padding: 20px;
    border-radius: 0;
  }
}
.prefecture-list dl {
  display: flex;
  gap: 23px;
  flex-wrap: wrap;
  margin: 0 0 16px 0;
}
.prefecture-list dl:last-of-type {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .prefecture-list dl {
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 32px;
  }
  .prefecture-list dl:after {
    width: 90px;
    content: "";
  }
}
.prefecture-list dl dt {
  width: 110px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .prefecture-list dl dt {
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 1.2000000477px;
    width: 100%;
    padding: 5px 0;
    border-bottom: 1px solid #E5E5E5;
  }
}
.prefecture-list dl dd a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  color: #007B65;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .prefecture-list dl dd a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 1.2000000477px;
    text-align: center;
    text-decoration: none;
    width: 93px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E5E5E5;
    box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.1019607843);
    border-radius: 6px;
  }
}

.subsidy-recommend-contents {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .subsidy-recommend-contents {
    margin-bottom: 24px;
  }
}
.subsidy-recommend-contents .recommend-contents-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 768px) {
  .subsidy-recommend-contents .recommend-contents-title {
    margin-bottom: 0;
  }
}
.subsidy-recommend-contents .recommend-contents-boxes {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .subsidy-recommend-contents .recommend-contents-boxes {
    flex-wrap: wrap;
    gap: 32px;
  }
}
.subsidy-recommend-contents .recommend-contents-boxes .recommend-item {
  padding: 40px;
  border: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .subsidy-recommend-contents .recommend-contents-boxes .recommend-item {
    padding: 16px;
    border: none;
  }
}
.subsidy-recommend-contents .recommend-contents-boxes .recommend-item img {
  width: 329px;
}
.subsidy-recommend-contents .recommend-contents-boxes .recommend-item a {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .subsidy-recommend-contents .recommend-contents-boxes .recommend-item a {
    margin-top: 16px;
  }
}
.subsidy-recommend-contents .recommend-contents-boxes .recommend-item p {
  margin-top: 24px;
}
.subsidy-recommend-contents .recommend-contents-boxes .recommend-item:hover .btn.green {
  background: #fff;
  color: #1F9970;
  border: 1px solid #1F9970;
}
@media screen and (max-width: 768px) {
  .subsidy-recommend-contents .recommend-contents-boxes .recommend-item:hover .btn.green {
    background: #1F9970;
    color: #fff;
    border: 1px solid #fff;
  }
}

@media screen and (min-width: 758px) {
  .gtm-footer-tell {
    pointer-events: none;
  }
  .gtm-other-tell {
    pointer-events: none;
  }
  .gtm-form-tell {
    pointer-events: none;
  }
}
.is-product-list header {
  position: static;
}
.is-product-list header .header-bottom .btn {
  margin: 0;
  border-color: #1F9970;
  width: 198px;
  height: 32px;
  line-height: 32px;
  color: #111;
}
.is-product-list main {
  margin-top: 0;
}
.is-product-list main .breadcrumbs p {
  margin-left: 10px;
}
.is-product-list main .breadcrumbs p a {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 1.0499999523px;
  text-align: left;
  color: #444;
  text-decoration: underline;
}

.is-product-detail header .header-bottom .btn {
  margin: 0;
  border-color: #1F9970;
  width: 198px;
  height: 32px;
  line-height: 32px;
  color: #111;
}

.product-article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 56px;
}
.product-article-list article {
  width: 285px;
}
@media screen and (max-width: 768px) {
  .product-article-list article {
    width: 100%;
  }
}
.product-article-list article dl {
  position: relative;
  margin: 0;
}
.product-article-list article dl dt {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #fff;
  z-index: 3;
  opacity: 0;
  transition: ease 0.3s;
  text-decoration: underline;
}
.product-article-list article dl dd.image {
  width: 100%;
  aspect-ratio: 285/160;
  position: relative;
  margin-bottom: 4px;
}
.product-article-list article dl dd.image:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #111111;
  opacity: 0;
  transition: ease 0.3s;
}
.product-article-list article dl dd.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-article-list article dl dd.text {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  letter-spacing: 1.2000000477px;
}
.product-article-list article a:hover {
  opacity: 1;
}
.product-article-list article a:hover dl dt {
  opacity: 1;
}
.product-article-list article a:hover dl dd.image:after {
  opacity: 0.6;
}

.product-list {
  position: relative;
  background: #E5E5E5;
  padding-bottom: 182px;
}
.product-list .breadcrumbs.absolute {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
}
.product-list .breadcrumbs.absolute li {
  color: #fff;
}
.product-list .breadcrumbs.absolute li a {
  color: #fff;
}
.product-list .container {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .product-list .container {
    width: 100%;
    padding: 0 20px 20px 20px;
  }
}
.product-list .product-title-area-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  aspect-ratio: 1200/398;
  z-index: 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .product-list .product-title-area-top {
    aspect-ratio: initial;
    padding-top: 80px;
    height: 550px;
    display: block;
  }
}
.product-list .product-title-area-top .title-text {
  width: 405px;
  position: relative;
  z-index: 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .product-list .product-title-area-top .title-text {
    width: 100%;
  }
}
.product-list .product-title-area-top .title-text h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 54.4px;
  letter-spacing: 2.4000000954px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .product-list .product-title-area-top .title-text h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 40.8px;
    letter-spacing: 1.7999999523px;
  }
}
.product-list .product-title-area-top .title-text p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 30.6px;
  letter-spacing: 1.3500000238px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .product-list .product-title-area-top .title-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    letter-spacing: 1.2000000477px;
    text-align: center;
  }
}
.product-list .product-title-area-top .pickup {
  width: 300px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .product-list .product-title-area-top .pickup {
    width: 280px;
    margin: 0 auto;
  }
}
.product-list .product-title-area-top .pickup a:hover picture img {
  transform: scale(1.05);
}
.product-list .product-title-area-top .pickup p {
  color: #fff;
}
.product-list .product-title-area-top .pickup p.pop {
  text-align: center;
  margin-bottom: 4px;
}
.product-list .product-title-area-top .pickup p.article-title {
  font-size: 14.61px;
  font-weight: 400;
  line-height: 24.83px;
  letter-spacing: 1.0956522226px;
  text-decoration: underline;
}
.product-list .product-title-area-top .pickup picture {
  width: 100%;
  height: 169px;
  display: block;
  margin-bottom: 5px;
  overflow: hidden;
}
.product-list .product-title-area-top .pickup picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: ease 0.3s;
}
.product-list .product-title-area-top .background-image {
  width: 100vw;
  position: absolute;
  left: calc(600px - 50vw);
  height: 398px;
  z-index: 0;
  top: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .product-list .product-title-area-top .background-image {
    left: -20px;
    height: 550px;
  }
}
.product-list .product-title-area-top .background-image:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/product/kv-filter.webp);
}
.product-list .product-title-area-top .background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-filter: blur(8px);
  filter: blur(8px);
  position: relative;
  z-index: 1;
}
.product-list .product-title-area-other {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .product-list .product-title-area-other {
    margin-bottom: 40px;
  }
}
.product-list .product-title-area-other .title-text h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 54.4px;
  letter-spacing: 2.4000000954px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .product-list .product-title-area-other .title-text h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 40.8px;
    letter-spacing: 1.7999999523px;
  }
}
.product-list .product-title-area-other .title-text p a {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 1.0499999523px;
  text-decoration: underline;
  color: #444444;
}
.product-list .category-search {
  position: relative;
  margin-bottom: 24px;
}
.product-list .category-search.is-query {
  margin-top: -50px;
}
@media screen and (max-width: 768px) {
  .product-list .category-search {
    margin-left: -20px;
    padding-left: 20px;
    padding-bottom: 20px;
    width: 100vw;
    overflow: scroll;
  }
}
.product-list .category-search ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .product-list .category-search ul {
    width: 1050px;
    gap: 24px;
    justify-content: flex-start;
  }
}
.product-list .category-search ul li {
  cursor: pointer;
}
.product-list .category-search ul li a:hover {
  opacity: 1;
}
.product-list .category-search ul li a:hover figure {
  background: #FFF4E0;
  box-shadow: 2px 2px 4px rgba(17, 17, 17, 0.0039215686);
}
.product-list .category-search ul li figure {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  transition: ease 0.3s;
}
@media screen and (max-width: 768px) {
  .product-list .category-search ul li figure {
    width: 90px;
    height: 90px;
  }
  .product-list .category-search ul li figure img {
    width: 65px;
    height: 65px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.product-list .category-search ul li h5 {
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  letter-spacing: 1.0499999523px;
  text-align: center;
}
.product-list .select-category {
  background: #FFF4E0 !important;
}
.product-list .detail-text-search {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 97px;
  position: sticky;
  top: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .product-list .detail-text-search {
    height: auto;
    position: static;
  }
}
.product-list .detail-text-search:before {
  content: "";
  width: 100vw;
  height: 97px;
  background: #E5E5E5;
  position: absolute;
  left: calc(600px - 50vw);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .product-list .detail-text-search:before {
    height: auto;
  }
}
.product-list .detail-text-search .text-search {
  margin: 0 24px 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .product-list .detail-text-search .text-search {
    width: 100%;
    margin: 0;
  }
}
.product-list .detail-text-search .text-search form label {
  position: relative;
}
.product-list .detail-text-search .text-search form label:after {
  position: absolute;
  right: 14px;
  top: 4px;
  width: 22px;
  height: 23px;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/product/search.svg);
}
.product-list .detail-text-search .text-search form label input[type=text] {
  width: 282px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  letter-spacing: 1.0499999523px;
  text-align: left;
  padding: 14px;
  border: 1px solid #444444;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .product-list .detail-text-search .text-search form label input[type=text] {
    width: 100%;
    padding: 10px;
  }
}
.product-list .detail-text-search .number {
  padding-top: 15px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .product-list .detail-text-search .number {
    width: 100%;
  }
}
.product-list .detail-text-search .number p {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 768px) {
  .product-list .detail-text-search .number p {
    text-align: right;
  }
}
.product-list .detail-search {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .product-list .detail-search {
    width: 100vw;
    margin-left: -20px;
    margin-bottom: 16px;
    position: sticky;
    top: 0;
    padding: 10px 20px;
    background: #E5E5E5;
    z-index: 10;
  }
}
.product-list .detail-search .checkbox-disabled {
  color: grey;
  opacity: 0.5;
}
.product-list .detail-search ul {
  display: flex;
  gap: 8px;
}
.product-list .detail-search ul li {
  position: relative;
}
.product-list .detail-search ul li p.modal-btn {
  padding: 6px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  letter-spacing: 0.349999994px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: ease 0.3s;
}
@media screen and (max-width: 768px) {
  .product-list .detail-search ul li p.modal-btn {
    padding: 6px 18px;
  }
}
.product-list .detail-search ul li p.modal-btn:hover {
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.product-list .detail-search ul li p.modal-btn:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(45deg);
  transition: ease 0.3s;
}
@media screen and (max-width: 768px) {
  .product-list .detail-search ul li p.modal-btn:after {
    display: none;
  }
}
.product-list .detail-search ul li p.modal-btn.is-active {
  border: 1px solid #444444;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.product-list .detail-search ul li p.modal-btn.is-active:after {
  transform: rotate(-135deg);
}
.product-list .detail-search ul li .modal-area {
  background: #fff;
  position: absolute;
  top: 50px;
  z-index: 5;
  padding: 24px 32px;
  border-radius: 10px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2509803922);
}
.product-list .detail-search ul li .modal-area.modal01 form {
  height: 470px;
  overflow: scroll;
}
@media screen and (max-width: 768px) {
  .product-list .detail-search ul li .modal-area.modal01 form {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .product-list .detail-search ul li .modal-area {
    position: fixed;
    width: calc(100% - 40px);
    left: 20px;
    height: 90%;
    overflow: scroll;
    padding: 12px 16px;
  }
}
.product-list .detail-search ul li .modal-area h3 {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 27.2px;
  letter-spacing: 1.2000000477px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-list .detail-search ul li .modal-area h3 span {
  width: 20px;
  display: block;
  padding-bottom: 3px;
  cursor: pointer;
  transition: ease 0.3s;
  opacity: 1;
}
.product-list .detail-search ul li .modal-area h3 span:hover {
  opacity: 0.5;
}
.product-list .detail-search ul li .modal-area h3 span img {
  vertical-align: middle;
  width: 100%;
}
.product-list .detail-search ul li .modal-area .modal-content {
  position: relative;
}
.product-list .detail-search ul li .modal-area .modal-content:after {
  content: "";
  width: 100%;
  height: calc(100% - 420px);
  z-index: 3;
  position: absolute;
  top: 420px;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #FFF 100%);
}
@media screen and (max-width: 768px) {
  .product-list .detail-search ul li .modal-area .modal-content:after {
    display: none;
  }
}
.product-list .detail-search ul li .modal-area .modal-content label {
  white-space: nowrap;
}
.product-list .detail-search ul li .modal-area .area-modal-content {
  width: 729px;
}
@media screen and (max-width: 768px) {
  .product-list .detail-search ul li .modal-area .area-modal-content {
    width: 100%;
  }
}
.product-list .detail-search ul li .modal-area .area-modal-content .area-category-selection label {
  display: block;
  padding: 5px;
  width: 100%;
  background: #F6F6F6;
  margin-bottom: 20px;
}
.product-list .detail-search ul li .modal-area .area-modal-content dl {
  margin-bottom: 16px;
}
.product-list .detail-search ul li .modal-area .area-modal-content dl dt {
  font-size: 16px;
  font-weight: 700;
  line-height: 27.2px;
  letter-spacing: 1.2000000477px;
  margin-bottom: 8px;
}
.product-list .detail-search ul li .modal-area .area-modal-content dl dd {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .product-list .detail-search ul li .modal-area .area-modal-content dl dd {
    flex-wrap: wrap;
  }
}
.product-list .detail-search ul li .modal-area .area-modal-content dl.prefecture-toggle {
  background: #F6F6F6;
  width: 300px;
}
.product-list .detail-search ul li .modal-area .area-modal-content dl.prefecture-toggle dt {
  margin-bottom: 0;
}
.product-list .detail-search ul li .modal-area .area-modal-content dl.prefecture-toggle.is-expanded {
  width: 100%;
  padding: 12px 16px;
}
.product-list .detail-search ul li .modal-area .area-modal-content dl.prefecture-toggle.is-expanded .toggle-btn {
  background: #F6F6F6;
  border-color: #444;
  width: 100%;
  padding: 0;
}
.product-list .detail-search ul li .modal-area .area-modal-content dl.prefecture-toggle.is-expanded .toggle-btn .toggle-icon::after {
  opacity: 0;
}
.product-list .detail-search ul li .modal-area .area-modal-content dl.prefecture-toggle .toggle-btn {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 27.2px;
  letter-spacing: 1.2000000477px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  width: 100%;
}
.product-list .detail-search ul li .modal-area .area-modal-content dl.prefecture-toggle .toggle-btn:hover {
  background: #F6F6F6;
  border: 1px solid #111111;
}
.product-list .detail-search ul li .modal-area .area-modal-content dl.prefecture-toggle .toggle-btn .toggle-icon {
  width: 16px;
  height: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-list .detail-search ul li .modal-area .area-modal-content dl.prefecture-toggle .toggle-btn .toggle-icon::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: #000;
  transition: ease 0.3s;
}
.product-list .detail-search ul li .modal-area .area-modal-content dl.prefecture-toggle .toggle-btn .toggle-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  background: #000;
  transition: ease 0.3s;
}
.product-list .detail-search ul li .modal-area .area-modal-content dl.prefecture-toggle .product-prefecture-list {
  margin-top: 16px;
  display: block;
  width: 100%;
  padding-bottom: 20px;
}
.product-list .detail-search .modal-overlay {
  content: "";
  position: fixed;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .product-list .detail-search .modal-overlay {
    background: #111;
    opacity: 0.5;
  }
}
.product-list .search-out {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid #B2B2B2;
}
@media screen and (max-width: 768px) {
  .product-list .search-out {
    border-top: none;
  }
}
.product-list .search-out ul {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.product-list .search-out ul li {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20.4px;
  letter-spacing: 0.3000000119px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: ease 0.3s;
  /* 通常アイテムのみにバツマークを表示 */
}
.product-list .search-out ul li:not(.no-delete-icon):before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/common/batsu_black.svg);
}
.product-list .search-out ul li:hover {
  border: 1px solid #444444;
  background: #F6F6F6;
}
.product-list .search-out ul p {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 1.0499999523px;
  color: #444444;
  text-decoration: underline;
  cursor: pointer;
  transition: ease 0.3s;
  margin-left: 20px;
}
.product-list .search-out ul p:hover {
  opacity: 0.5;
}
.product-list .product-list-area {
  padding-bottom: 56px;
  margin-top: 24px;
}
.product-list .product-list-area .product-article-list {
  margin-bottom: 56px;
}
.product-list .product-list-area .item-nothing h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 40.8px;
  letter-spacing: 1.7999999523px;
  text-align: center;
  margin-bottom: 16px;
}
.product-list .product-list-area .item-nothing .text {
  width: 539px;
  margin: 0 auto 40px auto;
}
@media screen and (max-width: 768px) {
  .product-list .product-list-area .item-nothing .text {
    width: 100%;
  }
}
.product-list .product-list-area .item-nothing .text h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  letter-spacing: 1.2000000477px;
  text-align: left;
}
.product-list .product-list-area .item-nothing .text ul li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 14px;
}
.product-list .product-list-area .item-nothing .text ul li:before {
  content: "・";
}
.product-list .product-list-area .item-nothing .btn {
  margin-top: 24px;
}
.product-list .not-found {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  width: 680px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .product-list .not-found {
    width: 100%;
  }
}
.product-list .not-found h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.product-list .not-found .btn {
  margin-top: 20px;
}
.product-list .osusume-area .osusume-area-title {
  display: flex;
  padding-bottom: 10px;
  border-bottom: 1px solid #B2B2B2;
  margin-bottom: 16px;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.product-list .osusume-area .osusume-area-title h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 768px) {
  .product-list .osusume-area .osusume-area-title h3 {
    width: 100%;
  }
}
.product-list .osusume-area .osusume-area-title a {
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  letter-spacing: 0.349999994px;
  color: #007B65;
  text-decoration: underline;
}
.product-list .osusume-area .osusume-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-list .osusume-area .osusume-list article {
  width: 285px;
}
@media screen and (max-width: 768px) {
  .product-list .osusume-area .osusume-list article {
    width: 100%;
  }
}
.product-list .osusume-area .osusume-list article a {
  width: 100%;
}
.product-list .osusume-area .osusume-list article a img {
  width: 100%;
  display: block;
}
.product-list .supplier-name {
  margin: 0 auto;
  padding-bottom: 24px;
  width: 1200px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 768px) {
  .product-list .supplier-name {
    font-size: 24px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product-list .product-count {
  margin: 0 auto 24px;
  padding: 24px 0;
  width: 1200px;
  border-bottom: 1px solid #B2B2B2;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 768px) {
  .product-list .product-count {
    font-size: 20px;
    width: 100%;
  }
}

.product-detail {
  background: #E5E5E5;
  padding-bottom: 82px;
  /* singlePageRightBottomBanner.js 用のCSS */
}
.product-detail .modaal-image {
  cursor: zoom-in;
}
.product-detail .modaal-image .modaal-container {
  width: 90%;
  height: 90%;
  background: transparent;
  box-shadow: none;
}
.product-detail .modaal-gallery-item {
  width: 100%;
  height: 100%;
}
.product-detail .modaal-content {
  width: 100%;
  height: 100%;
}
.product-detail .modaal-gallery-item img {
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.product-detail .modaal-image .modaal-inner-wrapper {
  padding: 0px;
  width: 100%;
  height: 100%;
  display: flex;
}
.product-detail .zoom-in-icon {
  bottom: auto !important;
  top: 300px;
  right: 10px !important;
}
@media screen and (max-width: 768px) {
  .product-detail .zoom-in-icon {
    display: none;
  }
}
.product-detail .zoom-in-icon {
  position: absolute;
  bottom: 40px;
  right: 20px;
  height: 30px;
  width: 30px;
  background-color: #000;
}
.product-detail .modaal-outer-wrapper {
  background: rgba(229, 229, 229, 0.8);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  display: block;
}
.product-detail .modaal-close:focus:after, .product-detail .modaal-close:focus:before, .product-detail .modaal-close:hover:after, .product-detail .modaal-close:hover:before {
  background: #111;
}
.product-detail .breadcrumbs p {
  margin-left: 10px;
}
.product-detail .breadcrumbs p a {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 1.0499999523px;
  text-align: left;
  color: #444;
  text-decoration: underline;
}
.product-detail .container {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .product-detail .container {
    width: 100%;
  }
}
.product-detail .container .other-product {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.product-detail .container .other-product a {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.0499999523px;
  color: #007B65;
  text-decoration: underline;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-detail .container .other-product a:before {
  content: "";
  width: 10px;
  height: 15px;
  background-image: url("../images/product/left-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}
.product-detail .container .product-main-cover {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover {
    margin-bottom: 0px;
  }
}
.product-detail .container .product-main-cover .product-main-image {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-image {
    width: 100%;
  }
}
.product-detail .container .product-main-cover .product-main-image .product-swiper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 16px;
}
.product-detail .container .product-main-cover .product-main-image .product-swiper .swiper-pagination {
  position: absolute;
  right: 15px;
  left: auto;
  top: 15px;
  width: 50px;
  height: 25px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 12px;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-image .product-swiper .swiper-pagination {
    display: flex;
  }
}
.product-detail .container .product-main-cover .product-main-image .product-swiper picture {
  display: block;
  width: 100%;
  aspect-ratio: 447/276;
  margin-bottom: 5px;
}
.product-detail .container .product-main-cover .product-main-image .product-swiper picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail .container .product-main-cover .product-main-image .product-swiper p {
  font-size: 12px;
  line-height: 20.4px;
  letter-spacing: 0.3000000119px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-image .product-swiper p {
    padding: 10px 55px;
    height: 80px;
  }
}
.product-detail .container .product-main-cover .product-main-image .product-swiper .swiper-button-prev, .product-detail .container .product-main-cover .product-main-image .product-swiper .swiper-button-next {
  width: 30px;
  height: 30px;
  background: rgba(17, 17, 17, 0.5);
  z-index: 3;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-image .product-swiper .swiper-button-prev, .product-detail .container .product-main-cover .product-main-image .product-swiper .swiper-button-next {
    position: absolute;
    bottom: 25px;
    left: 10px;
    top: auto;
  }
}
.product-detail .container .product-main-cover .product-main-image .product-swiper .swiper-button-prev:after, .product-detail .container .product-main-cover .product-main-image .product-swiper .swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 11px;
  width: 6px;
  background-image: url(../images/product/top-arrow.svg);
}
.product-detail .container .product-main-cover .product-main-image .product-swiper .swiper-button-next {
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-image .product-swiper .swiper-button-next {
    right: 10px;
    left: auto;
  }
}
.product-detail .container .product-main-cover .product-main-image .thumb-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 19px;
}
.product-detail .container .product-main-cover .product-main-image .thumb-list .thumb-item {
  width: 80px;
  transition: ease 0.3s;
  cursor: pointer;
}
.product-detail .container .product-main-cover .product-main-image .thumb-list .thumb-item picture {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 2px;
  border: 4px solid transparent;
}
.product-detail .container .product-main-cover .product-main-image .thumb-list .thumb-item picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail .container .product-main-cover .product-main-image .thumb-list .thumb-item p {
  text-overflow: ellipsis;
  font-size: 10px;
  overflow: hidden;
  white-space: nowrap;
}
.product-detail .container .product-main-cover .product-main-image .thumb-list .thumb-item.active picture {
  border: 4px solid #DEFF5A;
}
.product-detail .container .product-main-cover .product-main-image .thumb-list .thumb-item:hover {
  opacity: 0.5;
}
.product-detail .container .product-main-cover .product-main-text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-text {
    width: 100%;
  }
}
.product-detail .container .product-main-cover .product-main-text .title-block {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-text .title-block {
    padding: 0 20px;
  }
}
.product-detail .container .product-main-cover .product-main-text .title-block .product-category {
  display: flex;
  gap: 16px;
}
.product-detail .container .product-main-cover .product-main-text .title-block .product-category li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: 1.2000000477px;
  font-size: #111111;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-text .title-block .product-category li a {
    font-size: 14px;
  }
}
.product-detail .container .product-main-cover .product-main-text .title-block .product-catchcopy {
  margin-bottom: 4px;
}
.product-detail .container .product-main-cover .product-main-text .title-block .product-name {
  font-size: 28px;
  font-weight: 500;
  line-height: 47.6px;
  letter-spacing: 2.0999999046px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-text .title-block .product-name {
    font-size: 24px;
    line-height: 40px;
  }
}
.product-detail .container .product-main-cover .product-main-text .title-block .product-supplier {
  margin-bottom: 20px;
}
.product-detail .container .product-main-cover .product-main-text .title-block .btn {
  margin: 0;
  border-color: transparent;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-text .title-block .btn {
    margin: 0 auto;
  }
}
.product-detail .container .product-main-cover .product-main-text .tab-block .tabNav {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid #007B65;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-text .tab-block .tabNav {
    padding: 0 20px;
  }
}
.product-detail .container .product-main-cover .product-main-text .tab-block .tabNav li {
  padding: 8px 16px;
  border-radius: 3px 3px 0px 0px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  letter-spacing: 1.0499999523px;
  border: 1px solid #007B65;
  background: #fff;
  color: #757575;
  border-bottom: none;
  cursor: pointer;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .tabNav li.active {
  color: #fff;
  background: #007B65;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content {
  padding: 18px 0 0 0;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content {
    padding: 18px 20px;
  }
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 40.8px;
  letter-spacing: 1.7999999523px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content h2 {
    font-size: 18px;
    line-height: 30px;
  }
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .direct-text {
  margin-bottom: 18px;
  white-space: pre-line;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .tab-content-block {
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .tab-content-block {
    margin-bottom: 24px;
  }
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .tab-content-block h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 30.6px;
  letter-spacing: 1.3500000238px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .tab-content-block h3 {
    font-size: 16px;
    line-height: 27px;
  }
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .tab-content-block p {
  white-space: pre-line;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .tab-content-block dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 7px 0;
  color: #757575;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .tab-content-block dl {
    margin: 0 0 12px 0;
  }
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .tab-content-block dl dt {
  width: 260px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .tab-content-block dl dt {
    width: 100%;
  }
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .tab-content-block dl dd {
  width: calc(100% - 280px);
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .tab-content-block dl dd {
    width: 100%;
  }
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .tab-content-block dl.active {
  color: #111111;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content p.tips {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.25px;
  color: #757575;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .table-scroll {
  overflow: scroll;
  padding-bottom: 18px;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .table-scroll .scroll-hint-icon {
  padding: 20px 5px 10px 5px;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content table {
  border-collapse: collapse;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content table thead th {
  background: #1F9970;
  color: #fff;
  padding: 8px 16px;
  white-space: nowrap;
  font-weight: 700;
  line-height: 27.2px;
  letter-spacing: 1.2000000477px;
  text-align: center;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content table tbody tr td {
  border-left: 1px solid #E5E5E5;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  line-height: 23.8px;
  letter-spacing: 0.349999994px;
  padding: 8px 16px;
  background: #fff;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content table tbody tr td:last-of-type {
  border-right: 1px solid #E5E5E5;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content table tbody tr:nth-child(odd) td {
  background: #F6F6F6;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .nothing {
  border: 2px solid #B2B2B2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 8px;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .nothing p {
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  letter-spacing: 1.0499999523px;
}
.product-detail .container .product-main-cover .product-main-text .tab-block .product-tab-content .nothing .btn {
  margin: 0;
  background-color: #444;
}
.product-detail .container .product-detail-cover {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-detail-cover {
    margin-bottom: 40px;
  }
}
.product-detail .container .product-detail-cover .product-detail-main {
  width: 800px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-detail-cover .product-detail-main {
    width: 100%;
    padding: 0 20px;
  }
}
.product-detail .container .product-detail-cover .product-detail-main h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 47.6px;
  letter-spacing: 2.0999999046px;
  margin-bottom: 16px;
}
.product-detail .container .product-detail-cover .product-detail-main h2:before {
  content: "■";
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-detail-cover .product-detail-main h2 {
    font-size: 24px;
    line-height: 40px;
  }
}
.product-detail .container .product-detail-cover .product-detail-main .more-detail-cover {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 16px;
}
.product-detail .container .product-detail-cover .product-detail-main .more-detail-cover .more-detail-line {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-detail-cover .product-detail-main .more-detail-cover .more-detail-line {
    width: 100%;
  }
}
.product-detail .container .product-detail-cover .product-detail-main .more-detail-cover .more-detail-line .more-detail-block {
  border-top: 0.5px solid #B2B2B2;
  padding: 16px 0;
}
.product-detail .container .product-detail-cover .product-detail-main .more-detail-cover .more-detail-line .more-detail-block h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.product-detail .container .product-detail-cover .product-detail-main .more-detail-cover .more-detail-line .more-detail-block dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 12px 0;
}
.product-detail .container .product-detail-cover .product-detail-main .more-detail-cover .more-detail-line .more-detail-block > dl > dt {
  font-size: 16px;
  font-weight: 700;
  line-height: 27.2px;
  letter-spacing: 1.2000000477px;
  color: #000;
  width: 45%;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-detail-cover .product-detail-main .more-detail-cover .more-detail-line .more-detail-block > dl > dt {
    width: 100%;
    margin-bottom: 4px;
  }
}
.product-detail .container .product-detail-cover .product-detail-main .more-detail-cover .more-detail-line .more-detail-block > dl > dd {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  letter-spacing: 1.2000000477px;
  text-align: left;
  width: 53%;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-detail-cover .product-detail-main .more-detail-cover .more-detail-line .more-detail-block > dl > dd {
    width: 100%;
  }
}
.product-detail .container .product-detail-cover .product-detail-main .more-detail-cover .more-detail-line .more-detail-block > dl > dd dl {
  flex-direction: row-reverse;
  align-items: center;
  color: #B2B2B2;
}
.product-detail .container .product-detail-cover .product-detail-main .more-detail-cover .more-detail-line .more-detail-block > dl > dd dl.active {
  color: #111;
}
.product-detail .container .product-detail-cover .product-detail-main .more-detail-cover .more-detail-line .more-detail-block > dl > dd dl dt {
  width: 72%;
}
.product-detail .container .product-detail-cover .product-detail-main .more-detail-cover .more-detail-line .more-detail-block > dl > dd dl dd {
  width: 28%;
  font-size: 12px;
  font-weight: 400;
  line-height: 20.4px;
  letter-spacing: 0.3000000119px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block {
  padding: 24px 0;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block.base-more {
  border-top: 1px solid #B2B2B2;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block > h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 40.8px;
  letter-spacing: 1.7999999523px;
  text-align: left;
  margin-bottom: 16px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block > h3:before {
  content: "■";
  margin-right: 4px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .detail-content-block {
  margin-bottom: 16px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .detail-content-block h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .detail-content-block p {
  margin-bottom: 8px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .detail-content-block figure {
  display: block;
  width: 100%;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .detail-content-block figure img {
  width: 100%;
  display: block;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .base-block {
  overflow: hidden;
  transition: ease 0.3s;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .base-block h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .base-block.close {
  height: 145px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .more-block {
  height: 120px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(rgba(229, 229, 229, 0) 0, rgb(229, 229, 229) 50%);
  position: relative;
  margin-top: -60px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .more-block.open {
  background: transparent;
  margin: 0;
  height: 50px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .more-block.open span {
  padding: 0;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .more-block.open img {
  transform: rotate(180deg);
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .more-block button {
  border: 2px solid #B2B2B2;
  border-radius: 8px;
  width: 157px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 1.2000000477px;
  margin: 0 auto;
  gap: 5px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .more-block button span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-detail-block .more-block button span img {
  width: 16px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-story {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product-detail .container .product-detail-cover .product-detail-main .product-story.is-image picture {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-detail-cover .product-detail-main .product-story.is-image picture {
    width: 100%;
  }
}
.product-detail .container .product-detail-cover .product-detail-main .product-story.is-image picture img {
  width: 100%;
  display: block;
}
.product-detail .container .product-detail-cover .product-detail-main .product-story.is-image .text {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-detail-cover .product-detail-main .product-story.is-image .text {
    width: 100%;
    order: -1;
    margin-bottom: 8px;
  }
}
.product-detail .container .product-detail-cover .product-detail-main .product-story .text {
  width: 100%;
}
.product-detail .container .product-detail-cover .product-detail-main .product-story .text h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 30.6px;
  letter-spacing: 0.4499999881px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-detail-cover .product-detail-main .product-story .text h5 {
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0.5px;
  }
}
.product-detail .container .product-detail-cover .product-detail-main .product-story .text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.349999994px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-detail-cover .product-detail-main .product-story .text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    letter-spacing: 1.2000000477px;
  }
}
.product-detail .container .product-detail-cover .product-detail-main .product-faq dl {
  border-top: 0.5px solid #000000;
  background: #fff;
  padding: 20px 16px;
  margin: 0;
}
.product-detail .container .product-detail-cover .product-detail-main .product-faq dl dt {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  letter-spacing: 0.400000006px;
  text-align: left;
  padding-bottom: 7px;
  border-bottom: 1px solid #B2B2B2;
  margin-bottom: 8px;
}
.product-detail .container .product-detail-cover .product-detail-main .product-faq dl dt:before {
  content: "Q.";
}
.product-detail .container .product-detail-cover .product-detail-main .product-caution {
  border: 4px solid #F6F6F6;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-detail-cover .product-detail-main .product-caution {
    padding: 24px;
  }
}
.product-detail .container .product-detail-cover .product-detail-main .product-caution h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.product-detail .container .product-detail-cover .product-detail-side {
  width: 344px;
  position: sticky;
  top: 140px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .product-detail-cover .product-detail-side {
    position: static;
    padding: 0 20px;
    width: 100%;
  }
}
.product-detail .container .product-detail-cover .product-detail-side .product-category {
  display: flex;
  gap: 16px;
}
.product-detail .container .product-detail-cover .product-detail-side .product-category li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 1.0499999523px;
  font-size: #111111;
  text-decoration: underline;
}
.product-detail .container .product-detail-cover .product-detail-side .product-catchcopy {
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  letter-spacing: 1.0499999523px;
  margin-bottom: 4px;
}
.product-detail .container .product-detail-cover .product-detail-side .product-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 40.8px;
  letter-spacing: 1.7999999523px;
  margin-bottom: 20px;
  display: block;
}
.product-detail .container .product-detail-cover .product-detail-side .btn.white {
  width: 300px;
  height: 36px;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 20px auto;
  border-color: #111111;
}
.product-detail .container .product-detail-cover .product-detail-side .nothing {
  border: 2px solid #B2B2B2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 8px;
}
.product-detail .container .product-detail-cover .product-detail-side .nothing p {
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  letter-spacing: 1.0499999523px;
}
.product-detail .container .product-detail-cover .product-detail-side .nothing .btn {
  margin: 0;
  background-color: #444;
  color: #fff;
}
.product-detail .container .other-category {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .other-category {
    padding: 0 20px;
    width: 100%;
    margin-bottom: 40px;
  }
}
.product-detail .container .other-category:last-of-type {
  margin-bottom: 0;
}
.product-detail .container .other-category .other-category-title {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .other-category .other-category-title {
    gap: 0;
    align-items: flex-start;
  }
}
.product-detail .container .other-category .other-category-title a {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 1.0499999523px;
  text-align: left;
  color: #444;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .product-detail .container .other-category .other-category-title a {
    width: 100%;
  }
}
.product-detail .container .other-category .other-category-title h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.7999999523px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .product-detail .container .other-category .other-category-title h2 {
    width: 100%;
    margin-bottom: 5px;
    line-height: 40px;
  }
}
.product-detail .container .other-category .category-search {
  position: relative;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .product-detail .container .other-category .category-search {
    margin-left: -20px;
    padding-left: 20px;
    padding-bottom: 20px;
    width: 100vw;
    overflow: scroll;
  }
}
.product-detail .container .other-category .category-search ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .product-detail .container .other-category .category-search ul {
    width: 1050px;
    gap: 24px;
  }
}
.product-detail .container .other-category .category-search ul li {
  cursor: pointer;
}
.product-detail .container .other-category .category-search ul li a:hover {
  opacity: 1;
}
.product-detail .container .other-category .category-search ul li a:hover figure {
  background: #FFF4E0;
  box-shadow: 2px 2px 4px rgba(17, 17, 17, 0.0039215686);
}
.product-detail .container .other-category .category-search ul li figure {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  transition: ease 0.3s;
}
@media screen and (max-width: 768px) {
  .product-detail .container .other-category .category-search ul li figure {
    width: 90px;
    height: 90px;
  }
  .product-detail .container .other-category .category-search ul li figure img {
    width: 65px;
    height: 65px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.product-detail .container .other-category .category-search ul li h5 {
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  letter-spacing: 1.0499999523px;
  text-align: center;
}
.product-detail #singlePageRightBottomBannerTargetFront {
  position: fixed;
  bottom: -330px;
  right: 16px;
}
.product-detail #singlePageRightBottomBannerTargetFront .remove-banner {
  background-color: rgba(17, 17, 17, 0.5);
  position: absolute;
  top: -30px;
  right: 0;
  width: 24px;
  height: 24px;
  font-size: 16px;
  margin: auto;
  text-align: center;
  color: white;
  border-radius: 100%;
}
.product-detail .bottom-banner-popup-active {
  bottom: 12px !important;
  transition-property: bottom;
  transition-duration: 1s;
}
.product-detail .bottom-banner-popup-deactive {
  bottom: -330px !important;
  transition-property: bottom;
  transition-duration: 1s;
}

/* ProductList.vue から統合されたスタイル */
/* 複数選択アイテムのスタイル */
.product-list .search-out ul li.no-delete-icon {
  cursor: default !important;
}

.product-list .search-out ul li.no-delete-icon::before {
  display: none !important;
}

.product-list .search-out ul li.no-delete-icon:hover {
  border: 1px solid transparent !important;
  background: #fff !important;
}

.product-list .search-out ul li.no-delete-icon .multi-select-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-list .search-out ul li.no-delete-icon .multi-select-text {
  cursor: default;
}

.product-list .search-out ul li.no-delete-icon button {
  font-size: 12px;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
  color: #007B65;
  padding: 0;
  margin-left: 5px;
}

.product-list .search-out ul li.no-delete-icon .change-btn:hover {
  opacity: 0.7;
}

/* 通常アイテムのスタイル（元のバツ画像を使用） */
.product-list .search-out ul li:not(.no-delete-icon) {
  cursor: pointer;
}
