@charset "UTF-8";
/*=======================================================
# mixins
=======================================================*/
/*=======================================================
# colors
=======================================================*/
/*=======================================================
# common - 全体に共通するスタイル
=======================================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
body {
  font-size: 16px;
  color: #333;
  font-family: "ヒラギノ明朝 ProN", serif;
  line-height: 1.6875;
}

img {
  width: 100%;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

/* header
---------------------------------------------------------*/
.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.drawer--right .header .drawer-hamburger {
  right: 3px;
}
.header .drawer-hamburger-icon {
  background-color: #4a290f;
}
.drawer-open .header .drawer-hamburger-icon {
  background-color: transparent;
}
.header .drawer-hamburger-icon::before, .header .drawer-hamburger-icon::after {
  background-color: #4a290f;
}

.header-inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-inner {
    height: 60px;
  }
}

.header-nav {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header-nav {
    top: 60px;
    background-color: #4a290f;
    padding: 24px 0;
  }
}

.header-loge {
  width: 120px;
}

@media screen and (min-width: 768px) {
  .header-nav-list {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .header-nav-item + .header-nav-item {
    margin-left: 46px;
  }
}

.header-nav-item-link {
  display: block;
  color: #333;
  height: 70px;
  line-height: 70px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .header-nav-item-link {
    color: #fff;
    font-size: 18px;
    text-align: right;
    padding: 0 15px;
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (min-width: 768px) {
  .header-nav-item-link {
    transition: color 0.4s;
  }
  .header-nav-item-link:hover {
    color: #4a290f;
  }
}

/* footer
---------------------------------------------------------*/
.footer {
  background: #F7F7F7;
  padding: 42px 40px 12px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 36px 0 14px;
  }
}

.footer-logo {
  width: 120px;
  margin: 0 auto;
}

.footer-nav-list {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .footer-nav-list {
    text-align: center;
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .footer-nav-list {
    display: flex;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .footer-nav-item + .footer-nav-item {
    margin-left: 30px;
  }
}

.footer-nav-item-link {
  font-size: 12px;
  color: #333;
  display: block;
  padding: 1em 0;
}
@media screen and (max-width: 767px) {
  .footer-nav-item-link {
    padding: 0.3em 0;
  }
}
@media screen and (min-width: 768px) {
  .footer-nav-item-link {
    transition: opacity 0.4s;
  }
  .footer-nav-item-link:hover {
    opacity: 0.7;
  }
}

.footer-sns-list {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-sns-list {
    margin-top: 14px;
  }
}

.footer-sns-item {
  display: inline-block;
}
.footer-sns-item + .footer-sns-item {
  margin-left: 10px;
}

.footer-sns-item-link {
  color: #4a290f;
  font-size: 24px;
  display: block;
  padding: 0.1em 0.5em;
}
@media screen and (min-width: 768px) {
  .footer-sns-item-link {
    transition: opacity 0.4s;
  }
  .footer-sns-item-link:hover {
    opacity: 0.7;
  }
}

.footer-copyright {
  color: #888;
  font-size: 12px;
  text-align: center;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    margin-top: 5px;
  }
}

/* main
---------------------------------------------------------*/
/* common
---------------------------------------------------------*/
.main {
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 60px;
  }
}

.section {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .section {
    margin-top: 96px;
  }
}

/*util-title
---------------------------------------------------------*/
.util-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .util-title {
    font-size: 30px;
  }
}
.util-title::after {
  content: "";
  display: block;
  height: 1px;
  width: 60px;
  background: #4a290f;
  margin: 16px auto 0;
}

.util-link {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #4a290f;
  border: solid 1px #4a290f;
  background: #fff;
  display: inline-block;
  padding: 10px 54px;
  transition: background-color 0.4s, color 0.4s;
}
.util-link.-active {
  background: #4a290f;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .util-link:not(.-submit):hover {
    background: #4a290f;
    color: #fff;
  }
}

/* top
-------------------------------------------------------*/
.top {
  position: relative;
}

.top-picture {
  padding-top: 55%;
  background: url(../img/fujitatoso-top.png) top right/82.5% no-repeat;
}
@media screen and (min-width: 768px) {
  .top-picture h2 {
    position: relative;
    font-size: 70px;
    content: "";
    top: 30%;
    left: 45%;
    position: absolute;
    color: #4a290f;
    font-weight: 700;
    font-family: "Font Awesome 5 Brands";
  }
  .top-picture h2 span {
    color: #ce8b02;
  }
}
@media screen and (max-width: 767px) {
  .top-picture h2 {
    position: relative;
    font-size: 40px;
    content: "";
    top: 30%;
    left: 20%;
    position: absolute;
    color: #4a290f;
    font-weight: 700;
    font-family: "Font Awesome 5 Brands";
  }
  .top-picture h2 span {
    color: #ce8b02;
  }
}
@media screen and (max-width: 767px) {
  .top-picture {
    padding-top: 100%;
    background: url(../img/fujitatoso-sm-top.png) center center/cover;
  }
}
@media screen and (max-width: 767px) {
  .top-message {
    margin-top: 32px;
  }
}
@media screen and (min-width: 768px) {
  .top-message {
    display: block;
    color: #333;
    background: #fff;
    box-shadow: 3px 3px 15px rgba(96, 96, 96, 0.16);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 82px 44px 90px 40px;
  }
}

.top-message-title {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-message-title {
    font-size: 22px;
  }
}

.top-message-text {
  margin-top: 18px;
}

/* concept
-------------------------------------------------------*/
.concept-inner {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .concept-inner {
    margin-top: 46px;
  }
}
@media screen and (min-width: 768px) {
  .concept-inner {
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .concept-picture {
    flex: 0 0 50%;
  }
}

@media screen and (max-width: 767px) {
  .concept-message {
    margin-top: 35px;
  }
}
@media screen and (min-width: 768px) {
  .concept-message {
    flex: 0 1 50%;
    margin-left: 6.667%;
  }
}

.concept-message-title {
  font-size: 20px;
  font-weight: bold;
}

.concept-message-text {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .concept-message-text {
    margin-top: 20px;
  }
}

.about {
  color: #ffffff;
  position: relative;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .about {
    background: url(../img/fujitatoso-about-sm.png) center center/cover;
    padding: 176px 0 52px;
  }
}
@media screen and (min-width: 768px) {
  .about {
    background: url(../img/fujitatoso-about.png) center center/cover;
  }
}
.about::before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.202);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-inner {
  position: relative;
}

.about-title {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .about-title {
    font-size: 20px;
  }
}

.about-text {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .about-text {
    font-size: 13px;
    margin-top: 22px;
    line-height: 1.7143;
  }
}

/* products
-------------------------------------------------------*/
.products {
  max-width: 940px;
}
@media screen and (max-width: 767px) {
  .products {
    max-width: 940px;
    padding: 0 58px;
  }
}

.products-list {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .products-list {
    margin-top: 48px;
  }
}
@media screen and (min-width: 768px) {
  .products-list {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .products-item {
    flex: 0 0 27.6%;
  }
}
@media screen and (max-width: 767px) {
  .products-item + .products-item {
    margin-top: 40px;
  }
}

.products-item-link {
  font-size: 14px;
  color: #333;
  display: block;
  box-shadow: 3px 3px 15px rgba(96, 96, 96, 0.16);
}
@media screen and (min-width: 768px) {
  .products-item-link:hover .products-item-picture > img {
    transform: scale(1.05);
  }
}

.products-item-picture {
  overflow: hidden;
}
.products-item-picture > img {
  transition: transform 0.4s;
}

.products-item-body {
  margin-top: 22px;
}

.products-item-title {
  display: block;
  text-align: center;
  padding: 10px;
}
.products-item-title span {
  display: block;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.products-item-cost {
  margin-top: 16px;
  color: #989898;
}

.product-footer {
  text-align: center;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .product-footer {
    margin-top: 42px;
  }
}

/* ===============================================
# concept2
=============================================== */
@media screen and (min-width: 768px) {
  .concept2-inner {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .concept2-picture {
    flex: 0 0 50%;
  }
}

@media screen and (max-width: 767px) {
  .concept2-message {
    margin-top: 34px;
  }
}
@media screen and (min-width: 768px) {
  .concept2-message {
    flex: 0 1 50%;
    margin-right: 6.666%;
  }
}

.concept2-message-title {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .concept2-message-title {
    font-size: 19px;
  }
}

.concept2-message-text {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .concept2-message-text {
    font-size: 14px;
    line-height: 1.7143;
  }
}

/* contact
-------------------------------------------------------*/
.contact {
  background: url(../img/fujita_tosou-contact.png) center center/cover;
  margin-top: 225px;
  padding: 72px 40px 85px;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 90px;
    padding: 56px 27px;
  }
}
.contact .util-title {
  color: #4a290f;
}
.contact input[type=text],
.contact input[type=email],
.contact textarea {
  width: 100%;
  border: 0;
  font-size: 16px;
  padding: 0.2em 0.5em;
  border-radius: 2px;
  box-shadow: 5px 6px 15px rgba(96, 96, 96, 0.16);
}
.contact input[type=text],
.contact input[type=email] {
  height: 40px;
}
.contact textarea {
  min-height: 122px;
  resize: vertical;
}

.contact-form {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    margin-top: 26px;
  }
}

.contact-text {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
}

.contact-text-inline {
  font-size: 16px;
  color: #E7728E;
}

.contact-list {
  max-width: 510px;
  margin: 0 auto;
  margin: 18px auto 0;
}

@media screen and (min-width: 768px) {
  .contact-item {
    display: flex;
  }
}
.contact-item + .contact-item {
  margin-top: 32px;
}

.contact-item-title {
  background: rgb(189, 126, 7);
  color: #fff;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding-left: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-item-title {
    display: inline-block;
    font-size: 14px;
    line-height: 32px;
    height: 32px;
    padding: 0 16px;
  }
}
@media screen and (min-width: 768px) {
  .contact-item-title {
    flex: 0 1 100%;
  }
}
@media screen and (min-width: 768px) {
  .contact-item-title::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: -8px;
    border-style: solid;
    border-width: 20px 0 20px 8px;
    border-color: transparent transparent transparent rgb(189, 126, 7);
  }
}

.contact-item-title-inline {
  font-size: 14px;
  color: #f00;
  vertical-align: super;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .contact-item-input {
    margin-top: 3px;
  }
}
@media screen and (min-width: 768px) {
  .contact-item-input {
    flex: 0 0 320px;
    margin-left: 18px;
  }
}

.contact-radio-wrap {
  display: inline-flex;
  border-radius: 1px;
  border: solid 1px #fff;
  box-shadow: 5px 6px 15px rgba(96, 96, 96, 0.16);
}

.contact-radio {
  position: relative;
}

.contact-radio-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-radio-input:checked + .contact-radio-part {
  background-color: #4a290f;
  color: #fff;
  border-radius: 1px;
}
.contact-radio-input:focus + .contact-radio-part {
  outline: -webkit-focus-ring-color auto 1px;
}

.contact-radio-part {
  display: block;
  background: #fff;
  color: #4a290f;
  line-height: 38px;
  height: 38px;
  width: 80px;
  text-align: center;
  transition: background-color 0.4s, color 0.4s;
}

.contact-footer {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contact-footer {
    margin-top: 14px;
  }
}

.contact-privacy {
  position: relative;
  height: 22px;
  width: 22px;
  display: inline-block;
  vertical-align: middle;
}

.contact-privacy-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-privacy-input:checked + .contact-privacy-part {
  width: 10px;
  border-top: 0;
  border-left: 0;
  background-color: transparent;
  transform: rotate(45deg);
  top: -5px;
  left: 5px;
}
.contact-privacy-input:focus + .contact-privacy-part {
  outline: -webkit-focus-ring-color auto 1px;
}
.contact-privacy-input:checked:focus + .contact-privacy-part {
  outline: none;
}

.contact-privacy-part {
  display: inline-block;
  height: 22px;
  width: 22px;
  border: solid 1px #4a290f;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s;
}

.contact-privacy-link {
  color: #f00;
  text-decoration: underline;
}

.contact-footer-submit {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .contact-footer-submit {
    margin-top: 23px;
  }
}

.contact-message {
  text-align: center;
  margin-top: 60px;
  display: none;
  font-weight: 700;
}
.contact-message.-error {
  color: #f10;
}

/* ===============================================
# paint-news
=============================================== */
.paint-news {
  margin: 0 auto 160px;
  width: 660px;
}
@media screen and (max-width: 767px) {
  .paint-news {
    padding: 56px 27px;
    margin: 0 auto 0px;
    width: 350px;
  }
}

.paint-news .warp-img {
  position: relative;
  margin: 0 -90px 80px;
}
.paint-news .warp-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  mix-blend-mode: overlay;
  opacity: 0.3;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .paint-news .warp-img {
    margin: 0 -50px 100px;
  }
}

.paint-news .pain-img {
  display: block;
  width: 100%;
  height: auto;
}
.paint-news .pain-logo {
  display: block;
  width: 25%;
  margin: 50px 37% 50px;
}
@media screen and (max-width: 767px) {
  .paint-news .pain-logo {
    transform: scale(0.8);
    transform-origin: 0;
  }
}

.paint-news .warp-img .pttl {
  margin-bottom: 11px;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .paint-news .warp-img .pttl {
    font-size: 1.4rem;
  }
}

.paint-news .date {
  display: block;
  margin-bottom: 40px;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .paint-news .date {
    font-size: 1.1rem;
  }
}

.paint-news_text {
  display: block;
  margin: 30px 0 10px 0;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .paint-news_text {
    padding-top: 30px;
    font-size: 0.9rem;
  }
}

.privacy-nemu {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .privacy-nemu {
    margin-top: 75px;
  }
}

.privacy-pttl {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .privacy-pttl {
    font-size: 25px;
    margin: 10px 0 10px 0;
  }
}

.privacy-nemu_text {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .privacy-nemu_text {
    font-size: 15px;
  }
}
.privacy-nemu_text span {
  font-size: 27px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .privacy-nemu_text span {
    font-size: 25px;
  }
}