@charset "UTF-8";

/* reset
---------------------------------------- */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
  background: transparent;
  box-sizing: border-box;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

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

a:focus,
a:focus-visible {
  outline: none;
}

img {
  vertical-align: bottom;
}

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

input,
select {
  vertical-align: middle;
}

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

/* font
---------------------------------------- */

html {
  font-size: 625%;
}

body {
  font-size: 0.15em;
  line-height: 1.5;
  color: #111;
  font-family: "Shippori Mincho B1", serif;
}

body * {
  box-sizing: border-box;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #111;
  transition-duration: 0.4s;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body.is-fixed {
  position: fixed;
  width: 100%;
}

/* common header & navigation*/

.header {
  background: #f9fcf9;
  z-index: 100;
}

.header .logo {
  width: 120px;
}

.navbtn {
  position: fixed;
  top: 0;
  right: 0;
  width: 65px;
  height: 65px;
  background: #1d1d1d;
  z-index: 110;
}

.navbtn span {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  width: 52%;
  height: 2px;
  background-color: #faf6f7;
}

.navbtn span:nth-of-type(1) {
  -webkit-animation: navTopClose 0.75s forwards;
  animation: navTopClose 0.75s forwards;
}

.navbtn span:nth-of-type(2) {
  transform: translate(-50%, -1px);
  transition: opacity 0.45s;
}

.navbtn span:nth-of-type(3) {
  -webkit-animation: navBottomClose 0.75s forwards;
  animation: navBottomClose 0.75s forwards;
}

.navbtn.is-open span:nth-of-type(1) {
  -webkit-animation: navTopOpen 0.75s forwards;
  animation: navTopOpen 0.75s forwards;
}

.navbtn.is-open span:nth-of-type(2) {
  opacity: 0;
}

.navbtn.is-open span:nth-of-type(3) {
  -webkit-animation: navBottomOpen 0.75s forwards;
  animation: navBottomOpen 0.75s forwards;
}

@-webkit-keyframes navTopClose {
  0% {
    transform: translate(-50%, 0) rotate(45deg);
  }

  50% {
    transform: translate(-50%, 0) rotate(0);
  }

  100% {
    transform: translate(-50%, -9px) rotate(0);
  }
}

@keyframes navTopClose {
  0% {
    transform: translate(-50%, 0) rotate(45deg);
  }

  50% {
    transform: translate(-50%, 0) rotate(0);
  }

  100% {
    transform: translate(-50%, -9px) rotate(0);
  }
}

@-webkit-keyframes navBottomClose {
  0% {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  50% {
    transform: translate(-50%, 0) rotate(0);
  }

  100% {
    transform: translate(-50%, 8px) rotate(0);
  }
}

@keyframes navBottomClose {
  0% {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  50% {
    transform: translate(-50%, 0) rotate(0);
  }

  100% {
    transform: translate(-50%, 8px) rotate(0);
  }
}

@-webkit-keyframes navTopOpen {
  0% {
    transform: translate(-50%, -9px) rotate(0);
  }

  50% {
    transform: translate(-50%, 0) rotate(0);
  }

  100% {
    transform: translate(-50%, 0) rotate(45deg);
  }
}

@keyframes navTopOpen {
  0% {
    transform: translate(-50%, -9px) rotate(0);
  }

  50% {
    transform: translate(-50%, 0) rotate(0);
  }

  100% {
    transform: translate(-50%, 0) rotate(45deg);
  }
}

@-webkit-keyframes navBottomOpen {
  0% {
    transform: translate(-50%, 8px) rotate(0);
  }

  50% {
    transform: translate(-50%, 0) rotate(0);
  }

  100% {
    transform: translate(-50%, 0) rotate(-45deg);
  }
}

@keyframes navBottomOpen {
  0% {
    transform: translate(-50%, 8px) rotate(0);
  }

  50% {
    transform: translate(-50%, 0) rotate(0);
  }

  100% {
    transform: translate(-50%, 0) rotate(-45deg);
  }
}

.fixed-nav {
  display: none;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* common footer
---------------------------------------- */

.footer .footer-btns {
  display: flex;
}

.footer .footer-btns .btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 170px;
}

.footer .footer-btns .btn::before {
  display: block;
  width: 36px;
  height: 30px;
  content: "";
}

.footer .footer-btns .btn.-contact {
  background: #000;
  color: #fff;
}

.footer .footer-btns .btn.-contact::before {
  background: url("http://shiotatoudo.com/wp-content/themes/shiotatoudo/assets//img/ic_contact.png") center/32px auto no-repeat;
}

.footer .footer-btns .btn.-access {
  background: #fff;
  color: #111;
}

.footer .footer-btns .btn.-access::before {
  background: url("http://shiotatoudo.com/wp-content/themes/shiotatoudo/assets//img/ic_access.png") center/24px auto no-repeat;
}

.footer .footer-btns .btn .en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.32rem;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.footer .footer-btns .btn .jp {
  font-size: 0.15rem;
  letter-spacing: 0.1em;
}

.footer .footer-btns .btn:hover {
  opacity: 1;
}

.footer .footer-btns .btn:hover .en {
  letter-spacing: 0.18em;
}

.footer .footer-nav {
  background: url("http://shiotatoudo.com/wp-content/themes/shiotatoudo/assets//img/img_footer.jpg") center no-repeat;
  background-size: cover;
  padding: 60px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .footer-nav .nav-list {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 50px;
}

.footer .footer-nav .nav-list li {
  margin: 0 14px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.footer .footer-nav .nav-list li a {
  letter-spacing: 0.26em;
  font-size: 0.16rem;
  color: #fff;
}

.footer .footer-nav .adress {
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  font-size: 0.13rem;
}

.footer .copyright {
  padding: 20px 0;
  background: #000;
  color: #fff;
  font-size: 0.11rem;
  text-align: center;
  line-height: 1.8;
}

/* common layout
---------------------------------------- */

.l-content {
  width: 100%;
  padding: 0 5.5%;
  margin: auto;
}

/* commonーparts
---------------------------------------- */

.ttl-lv1-wrap,
.ttl-lv2-wrap {
  background: #fff;
  text-align: center;
  padding: 40px 0 24px;
}

.ttl-lv1,
.ttl-lv2 {
  font-size: 0.2rem;
  letter-spacing: 0.2em;
}

.ttl-sec-v {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: inline-block;
  font-size: 0.2rem;
  letter-spacing: 0.2em;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.19);
  padding: 20px 12px;
}

.ttl-sec-v.-small {
  font-size: 0.18rem;
}

.link-more {
  position: relative;
  display: block;
  width: 120px;
  font-size: 0.2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
}

.link-more::after {
  position: absolute;
  width: 140px;
  height: 16px;
  bottom: 0;
  right: -30px;
  background: url("http://shiotatoudo.com/wp-content/themes/shiotatoudo/assets//img/ic_viewmore.png") center/100% auto no-repeat;
  transition: all 0.3s ease-out;
  content: "";
}

.link-more:hover {
  opacity: 1;
}

.link-more:hover::after {
  transform: translateX(10px);
}

.pagination {
  margin: 180px auto 20px;
}

.pagination ul {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.pagination ul .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  margin: 0 10px;
  color: #333;
}

.pagination ul .page-numbers.current {
  font-weight: bold;
}

.pagination ul a.page-numbers:hover {
  opacity: 0.7;
}

/* toppage
---------------------------------------- */

.toppage .header,
.acb .header {
  background: #fff;
}

.toppage .mainvisual {
  position: relative;
  margin-top: 65px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.toppage .mainvisual .logo {
  position: absolute;
}

.toppage .mainvisual .scroll_down {
  position: absolute;
  bottom: 50px;
  right: 50px;
  color: #fff;
  height: 200px;
  z-index: 1;
}

.toppage .mainvisual .scroll_down p {
  font-size: 0.18rem;
  letter-spacing: 0.1em;
  text-align: end;
  transform: rotate(90deg);
}

.toppage .mainvisual .scroll_down .arrow {
  position: relative;
  width: 1px;
  height: 100px;
  margin: 50px auto 0;
  background-color: #fff;
  overflow: hidden;
}

.toppage .mainvisual .scroll_down .arrow::before {
  position: absolute;
  width: 1px;
  height: 100px;
  margin: 50px auto 0;
  background-color: #ccc;
  top: -150px;
  left: 0;
  -webkit-animation: scrollArrow 2.5s ease 0s infinite normal;
  animation: scrollArrow 2.5s ease 0s infinite normal;
  content: "";
}

@-webkit-keyframes scrollArrow {
  0% {
    transform: translate3d(0, 0, 0);
  }

  60% {
    transform: translate3d(0, 100px, 0);
  }

  100% {
    transform: translate3d(0, 100px, 0);
  }
}

@keyframes scrollArrow {
  0% {
    transform: translate3d(0, 0, 0);
  }

  60% {
    transform: translate3d(0, 100px, 0);
  }

  100% {
    transform: translate3d(0, 100px, 0);
  }
}

.toppage .sec-topics {
  color: #111;
  padding-top: 10px;
  padding-bottom: 10px;
}

.toppage .sec-topics .ttl {
  font-size: 0.13rem;
  margin-bottom: 8px;
}

.toppage .sec-topics .post-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.toppage .sec-topics .post-ttl .date {
  font-size: 0.13rem;
  margin-right: 16px;
}

.toppage .sec-topics .post-ttl .category {
  padding: 0 10px;
  border: 1px solid;
  font-size: 0.12rem;
  line-height: 1.8;
  margin-right: 16px;
}

.toppage .sec-topics .post-ttl .ttl-text {
  position: relative;
  font-size: 0.13rem;
}

.toppage .sec-topics .post-ttl .ttl-text::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #111;
  transition: width 0.3s ease;
  content: "";
}

.toppage .sec-topics .post-ttl:hover .ttl-text {
  opacity: 1;
}

.toppage .sec-topics .post-ttl:hover .ttl-text::after {
  width: 100%;
}

.toppage .sec-top-toudo {
  position: relative;
}

.toppage .sec-top-toudo .ttl-sec-v {
  position: absolute;
  top: -34px;
  left: 30px;
}

.toppage .sec-top-toudo .toudo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.16rem;
  line-height: 1.8;
  padding: 40px 0;
  z-index: 1;
}

.toppage .sec-top-toudo .toudo-content .txt + .txt {
  margin-top: 2em;
}

.toppage .sec-top-toudo .toudo-content .txt-wrap {
  display: inline-block;
}

.toppage .sec-top-toudo .toudo-content .link-more {
  margin-top: 30px;
}

.toppage .sec-top-product {
  position: relative;
}

.toppage .sec-top-product .ttl-sec-v {
  position: absolute;
  top: 54px;
  left: 30px;
  z-index: 1;
}

.toppage .sec-top-product .product-inr {
  display: flex;
}

.toppage .sec-top-product .ttl-product {
  font-family: "Bona Nova", serif;
  font-size: 0.18rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #333;
}

.toppage .sec-top-product .ttl-product .lead,
.toppage .sec-top-product .ttl-product .main {
  display: block;
}

.toppage .sec-top-product .ttl-product .lead {
  margin-bottom: 10px;
  font-size: 0.17rem;
  letter-spacing: 0.02em;
  vertical-align: baseline;
  font-weight: normal;
}

.toppage .sec-top-product .ttl-product .lead .num {
  font-size: 110%;
  margin-bottom: -1px;
}

.toppage .sec-top-product .ttl-product .main {
  margin-bottom: 10px;
  font-size: 0.26rem;
  font-weight: normal;
  line-height: 1;
}

.toppage .sec-top-product .ttl-product .main .num {
  display: inline-block;
  margin-bottom: 0.2em;
}

.toppage .sec-top-product .txt-product {
  padding-top: 20px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.toppage .sec-top-product .link-wrap .link-more {
  margin: 0 auto;
}

.sec-greeting {
  padding: 60px 0 40px;
  background: url("http://shiotatoudo.com/wp-content/themes/shiotatoudo/assets//img/top/img_greeting.jpg") center no-repeat;
  background-size: cover;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  width: 100%;
  min-height: 480px;
}

.sec-greeting .num {
  text-orientation: upright;
  text-combine-upright: all;
  -webkit-text-combine: horizontal;
  margin-bottom: 4px;
}

.sec-greeting .greeting-inr {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  justify-content: center;
}

.sec-greeting .ttl {
  font-size: 0.18rem;
  letter-spacing: 0.2em;
  margin-left: 8px;
}

.sec-greeting .greeting-txt p {
  font-size: 0.14rem;
  letter-spacing: 0.14em;
  line-height: 1.8;
}

.sec-greeting .greeting-txt p + p {
  margin-right: 10px;
}

.sec-greeting .name {
  text-align: right;
  width: 18px;
  margin-right: 0px;
}

.sec-company {
  height: 500px;
  background: url("http://shiotatoudo.com/wp-content/themes/shiotatoudo/assets//img/top/img_company.jpg") center no-repeat;
  background-size: cover;
  padding-top: 45px;
  text-align: center;
}

.sec-company .ttl-sec-v {
  opacity: 0.8;
}

.sec-company .link-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 60px;
}

.sec-company .link-list li {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: left;
  margin: 0 24px;
  font-size: 0.19rem;
  letter-spacing: 0.24em;
}

.sec-company .link-list li a {
  color: #fff;
}

.sec-company .link-list li a::before {
  display: inline-block;
  width: 1px;
  height: 60px;
  background: #fff;
  margin: 0 auto 30px;
  content: "";
}

/* 会社案内 */

.company .sec-info .info-table-wrap {
  display: flex;
}

.company .sec-info .info-table {
  letter-spacing: 0.12em;
}

.company .sec-info .info-table th {
  vertical-align: top;
  padding: 0.5em 0;
  text-align: left;
}

.company .sec-info .info-table td {
  vertical-align: top;
  padding: 0.5em 0;
}

.company .sec-info .info-img {
  max-width: 400px;
  margin: 0 auto 50px;
}

.company .map-wrap iframe {
  width: 100%;
  height: 450px;
  filter: grayscale(100%);
}

.company .sec-history .history-inr {
  display: flex;
}

.company .sec-history .txt-area {
  line-height: 1.8;
}

.company .sec-history .txt-area p + P {
  margin-top: 10px;
}

.company .sec-history .img-area img {
  margin-bottom: 20px;
}

/* お知らせ */

.sec-news .news-inr {
  display: flex;
}

.sec-news .post .post-ttl {
  position: relative;
  cursor: pointer;
}

.sec-news .post .post-ttl .ttl-head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.sec-news .post .post-ttl .ttl-head .date {
  width: 80px;
  font-size: 0.13rem;
}

.sec-news .post .post-ttl .ttl-head .category {
  padding: 0 10px;
  border: 1px solid;
  font-size: 0.12rem;
  line-height: 1.8;
}

.sec-news .post .post-ttl .ttl-main {
  font-size: 0.16rem;
  margin: 1em 0 2em;
  line-height: 1.6;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #111;
}

.sec-news .post .post-ttl .icon {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #111;
}

.sec-news .post .post-ttl .icon::before,
.sec-news .post .post-ttl .icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-top: 1px solid #fff;
  transform: translateX(-50%);
  content: "";
}

.sec-news .post .post-ttl .icon::after {
  top: 10px;
  left: 0;
  transform: rotate(90deg);
}

.sec-news .post .post-ttl.is-active .icon::after {
  display: none;
}

.sec-news .post .post-content {
  display: none;
  padding-bottom: 30px;
}

.sec-news .post .post-content p {
  margin-bottom: 0.6em;
}

.sec-news .post .post-content .img-wrap {
  display: flex;
  margin-top: 20px;
}

.sec-news .side-menu .ttl {
  font-size: 0.2rem;
  margin-bottom: 1em;
  border-bottom: 1px solid #111;
  padding-bottom: 1em;
  font-weight: bold;
}

.sec-news .side-menu .list {
  margin-bottom: 45px;
}

.sec-news .side-menu .list li {
  margin-bottom: 0.8em;
}

/* 陶土づくり */

.sec-toudo .toudo-inr {
  padding-top: 34px;
  padding-bottom: 30px;
}

.sec-toudo .ttl-toudo {
  vertical-align: bottom;
  text-align: center;
  font-size: 0.18rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.sec-toudo .ttl-toudo .small {
  font-size: 0.1rem;
}

.sec-toudo .txt {
  max-width: 400px;
  margin: 20px auto 0;
}

/* img effect */

.img-effect {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.img-effect .effect_bg {
  opacity: 0;
}

.img-effect::before {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to right, #111 0%, #111 100%);
  z-index: 2;
  transform: translate(-101%, 0);
  content: "";
}

.img-effect.is-active::before {
  -webkit-animation: imgEffect 0.8s 0.1s cubic-bezier(0, 1.07, 1, 1) both;
  animation: imgEffect 0.8s 0.1s cubic-bezier(0, 1.07, 1, 1) both;
}

.img-effect.is-active .effect_bg {
  -webkit-animation: fadeIn 0.1s 0.5s linear both;
  animation: fadeIn 0.1s 0.5s linear both;
}

/* scroll fadein */

.js-fadeup.is-active {
  -webkit-animation: fadeUp 0.5s 0.3s ease-out both;
  animation: fadeUp 0.5s 0.3s ease-out both;
}

.js-fadein.is-active {
  -webkit-animation: fadeIn 0.5s 0.3s ease-out both;
  animation: fadeIn 0.5s 0.3s ease-out both;
}

@-webkit-keyframes imgEffect {
  0% {
    transform: translate(-101%, 0);
  }

  50% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(101%, 0);
  }
}

@keyframes imgEffect {
  0% {
    transform: translate(-101%, 0);
  }

  50% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(101%, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* お問合せ */

.sec-contact .form-wrap {
  margin-bottom: 40px;
}

.sec-contact .form-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.sec-contact .form-item label {
  margin-bottom: 8px;
}

.sec-contact .form-item label .kome {
  color: #B70000;
  font-size: 0.12rem;
  margin-left: 0.5em;
}

.sec-contact .form-item input,
.sec-contact .form-item textarea {
  width: 100%;
  padding: 12px;
  font-size: 0.16rem;
  background: #fff;
  border: 1px solid #ccc;
}

.sec-contact .form-item input::-moz-placeholder,
.sec-contact .form-item textarea::-moz-placeholder {
  counter-reset: #eee;
}

.sec-contact .form-item input:-ms-input-placeholder,
.sec-contact .form-item textarea:-ms-input-placeholder {
  counter-reset: #eee;
}

.sec-contact .form-item input::placeholder,
.sec-contact .form-item textarea::placeholder {
  counter-reset: #eee;
}

.sec-contact .form-privacy {
  border: 1px solid #CECECE;
  padding: 20px 20px 10px;
  margin-bottom: 25px;
}

.sec-contact .privacy-inr {
  padding-right: 20px;
  height: 145px;
  overflow: scroll;
  overflow-x: hidden;
}

.sec-contact .privacy-inr .ttl-privacy {
  font-size: 0.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.sec-contact .privacy-inr .lead {
  margin-bottom: 30px;
}

.sec-contact .privacy-inr dl dt {
  font-size: 0.18rem;
  border-bottom: 1px solid #666;
  padding-bottom: 15px;
  margin-bottom: 14px;
}

.sec-contact .privacy-inr dl dd {
  font-size: 0.14rem;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 30px;
  word-break: break-all;
}

.sec-contact .form-check {
  text-align: center;
  margin-bottom: 40px;
}

.sec-contact .form-btn {
  text-align: center;
}

.sec-contact .form-btn input {
  padding: 16px 60px;
  color: #fff;
  background: #111;
  font-size: 0.16rem;
  text-align: center;
}

.sec-contact .form-warning {
  display: none;
}

.sec-contact .form-warning,
.sec-contact .wpcf7-not-valid-tip {
  color: #B70000;
  font-size: 0.12rem;
  margin-top: 6px;
}

.sec-contact .wpcf7-response-output {
  border: none !important;
  text-align: center;
}

.sec-contact form.invalid .wpcf7-response-output,
.sec-contact form.unaccepted .wpcf7-response-output,
.sec-contact form.payment-required .wpcf7-response-output {
  color: #B70000;
}

.sec-contact .wpcf7-spinner {
  display: none;
}

/* prpduct */

.sec-product.l-content {
  max-width: 960px;
}

.sec-product .lead-wrap {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.sec-product .lead-wrap .lead {
  max-width: 500px;
  font-size: 0.13rem;
  line-height: 1.6;
}

.sec-product .ttl-product {
  position: relative;
  margin-top: 50px;
  margin-bottom: 60px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.22rem;
  font-weight: normal;
  text-align: center;
}

.sec-product .ttl-product:after {
  position: absolute;
  display: block;
  background: #111;
  height: 30px;
  width: 1px;
  bottom: -40px;
  left: 50%;
  content: "";
}

.sec-product .product-detail.-original {
  margin-bottom: 60px;
}

.sec-product .product-detail.-original .top-area {
  margin-bottom: 20px;
}

.sec-product .product-detail .top-area,
.sec-product .product-detail .foot-area {
  display: flex;
}

.sec-product .product-detail .txt-area {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  font-size: 0.13rem;
}

.sec-product .product-detail .txt-area p + p {
  margin-top: 1em;
}

.sec-product .product-detail .img-caption {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.11rem;
  margin-top: 4px;
}

.sec-product .product-name {
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #333;
}

.sec-product .product-name .sub {
  font-family: "Bona Nova", serif;
  font-size: 0.17rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  font-weight: normal;
}

.sec-product .product-name .sub .num {
  font-size: 110%;
  margin-bottom: -1px;
}

.sec-product .product-name .main {
  vertical-align: bottom;
  font-weight: normal;
  line-height: 1;
}

.sec-product .product-name .main.-en {
  font-family: "Bona Nova", serif;
  font-size: 0.34rem;
}

.sec-product .product-name .main.-en .num {
  display: inline-block;
  margin-bottom: 0.2em;
}

.sec-product .product-name .main.-jp {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.28rem;
}

.sec-product .product-name .main.-jp .small {
  font-size: 0.11rem;
  display: inline-block;
  margin-left: 6px;
}

.sec-product .product-name .main.-jp .middle {
  font-size: 0.16rem;
  display: inline-block;
}

/* acb */

.mainvisual-acb {
  position: relative;
  background: url("http://shiotatoudo.com/wp-content/themes/shiotatoudo/assets//img/acb/img_acb_01.jpg") center no-repeat;
  background-size: cover;
}

.mainvisual-acb .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.sec-acb {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.sec-acb .acb-head {
  padding: 60px 0;
  text-align: center;
}

.sec-acb .acb-head .ttl {
  margin-bottom: 32px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}

.sec-acb .acb-head .lead {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1;
}

.sec-acb .acb-head .lead .small {
  font-size: 14px;
}

.sec-acb .acb-head .main {
  font-size: 12px;
  line-height: 1.8;
}

.sec-acb .acb-member {
  text-align: center;
}

.sec-acb .acb-member .ttl {
  display: inline-block;
  margin-bottom: 30px;
  padding: 0 0.5em;
  font-size: 20px;
  font-weight: normal;
  border: 1px solid #333;
}

.sec-acb .list-member {
  max-width: 810px;
  margin: 0 auto 60px;
}

.sec-acb .list-member > li .img-area {
  width: 100%;
}

.sec-acb .list-member > li .txt-area {
  text-align: left;
}

.sec-acb .list-member > li .txt-area .name {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1;
}

.sec-acb .list-member > li .txt-area .name .em {
  font-weight: bold;
}

.sec-acb .list-member > li .txt-area .detail {
  font-size: 12px;
  line-height: 1.5;
}

.sec-acb-action {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.sec-acb-action .acb-action-inr {
  background: url("http://shiotatoudo.com/wp-content/themes/shiotatoudo/assets//img/acb/img_acb_02.jpg") center no-repeat;
  background-size: cover;
  padding: 60px 0 60px;
  text-align: center;
}

.sec-acb-action .ttl-action {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: bold;
}

.sec-acb-action .logo {
  margin: 0 auto 40px;
  width: 120px;
}

.sec-acb-action .txt-wrap {
  font-size: 12px;
  line-height: 2.2;
}

.sec-acb-foot {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.sec-acb-foot .link-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec-acb-foot .link-area .txt {
  font-size: 16px;
  font-weight: bold;
}

.sec-acb-foot .link-area .dl {
  font-size: 20px;
  padding: 0 0.6em;
  border: 1px solid #333;
}

/* utility
---------------------------------------- */

.u-clx::after {
  clear: both;
  display: block;
  content: "";
}

.u-li-disc {
  list-style-type: disc;
}

.sp-show {
  display: block;
}

.sp-hide {
  display: none;
}

.sm-show {
  display: block;
}

.sm-hide {
  display: none;
}

span.sp-show {
  display: inline-block;
}

span.sp-show {
  display: none;
}

span.sm-show {
  display: inline-block;
}

span.sm-hide {
  display: none;
}

.u-en {
  font-family: "Cormorant Garamond", serif;
}

.u-num {
  font-family: "Bona Nova", serif;
}

.u-num .num {
  display: inline-block;
  margin-bottom: 0.3em;
  font-size: 90%;
}

.u-sans {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.u-tac {
  text-align: center;
}

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

.u-bold {
  font-weight: bold;
}

.u-lth {
  text-decoration: line-through;
}

.f16 {
  font-size: 0.16rem;
}

.f18 {
  font-size: 0.18rem;
}

.f20 {
  font-size: 0.2rem;
}

.f22 {
  font-size: 0.22rem;
}

.f24 {
  font-size: 0.24rem;
}

.ls02 {
  letter-spacing: 0.2em;
}

.ls03 {
  letter-spacing: 0.3em;
}

.ls04 {
  letter-spacing: 0.4em;
}

.ls05 {
  letter-spacing: 0.5em;
}

.ls06 {
  letter-spacing: 0.6em;
}

.ls07 {
  letter-spacing: 0.7em;
}

.ls08 {
  letter-spacing: 0.8em;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  a {
    cursor: pointer;
  }

  a:hover {
    opacity: 0.7;
  }

  .l-content {
    max-width: 1160px;
    padding: 0 3.5%;
  }

  .l-content.-s {
    max-width: 1080px;
  }

  .l-content.-l {
    max-width: 100%;
  }

  .ttl-lv1-wrap {
    padding: 70px 0 40px;
  }

  .ttl-lv2-wrap {
    padding: 90px 0 60px;
  }

  .ttl-lv1,
  .ttl-lv2 {
    font-size: 0.24rem;
  }

  .ttl-sec-v {
    width: 60px;
    font-size: 0.24rem;
  }

  .ttl-sec-v.-small {
    padding: 26px 12px;
    font-size: 0.22rem;
  }

  .link-more {
    width: 220px;
    font-size: 0.26rem;
  }

  .link-more::after {
    right: 0;
    bottom: -2px;
    width: 183px;
  }

  .toppage .mainvisual .scroll_down {
    right: 30px;
  }

  .toppage .sec-top-toudo .toudo-inr {
    background: url("http://shiotatoudo.com/wp-content/themes/shiotatoudo/assets//img/top/img_toudo.jpg") center no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .toppage .sec-top-toudo .toudo-content {
    width: 460px;
    padding: 60px 0 40px;
    font-size: 0.18rem;
  }

  .toppage .sec-top-toudo .toudo-content .link-more {
    margin-top: 50px;
  }

  .toppage .sec-top-product {
    padding: 120px 0;
  }

  .toppage .sec-top-product .product-inr > * {
    width: 50%;
  }

  .toppage .sec-top-product .product-inr:nth-of-type(odd) {
    flex-direction: row-reverse;
  }

  .toppage .sec-top-product .txt-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .toppage .sec-top-product .ttl-product {
    padding: 0 30px;
  }

  .toppage .sec-top-product .ttl-product .main {
    font-size: 0.36rem;
  }

  .toppage .sec-top-product .txt-product {
    padding: 30px 30px 0;
  }

  .toppage .sec-top-product .link-wrap {
    width: 50%;
  }

  .sec-greeting {
    padding: 100px 0;
  }

  .sec-greeting .ttl {
    font-size: 0.2rem;
    margin-left: 50px;
  }

  .sec-greeting .greeting-txt p {
    font-size: 0.17rem;
    line-height: 2.4;
  }

  .sec-greeting .greeting-txt p + p {
    margin-right: 20px;
  }

  .sec-greeting .name {
    width: 23px;
    margin-right: 50px;
  }

  .sec-company {
    height: 730px;
  }

  .company .sec-info .info-table-wrap {
    margin: 0 auto 70px;
    align-items: flex-start;
    justify-content: center;
  }

  .company .sec-info .info-table {
    font-size: 0.15rem;
    width: 42%;
    margin: 0 4%;
  }

  .company .sec-info .info-table th {
    width: 40%;
  }

  .company .sec-info .info-table td {
    width: 60%;
  }

  .company .sec-history .history-inr {
    margin: 0 6%;
    font-size: 0.15rem;
  }

  .company .sec-history .txt-area {
    width: 44%;
    margin-right: 8%;
  }

  .company .sec-history .img-area {
    width: 48%;
  }

  .sec-news .news-inr {
    margin: 0 auto 50px;
    align-items: flex-start;
    justify-content: center;
  }

  .sec-news .news-inr .news-main {
    width: calc(100% - 220px);
    padding-right: 40px;
  }

  .sec-news .news-inr .news-side {
    width: 220px;
  }

  .sec-news .post .post-ttl .ttl-main {
    font-size: 0.2rem;
  }

  .sec-news .post .post-ttl .icon {
    bottom: -25px;
    width: 50px;
    height: 50px;
  }

  .sec-news .post .post-ttl .icon::before,
  .sec-news .post .post-ttl .icon::after {
    width: 24px;
    height: 24px;
  }

  .sec-news .post .post-ttl .icon::after {
    top: 12px;
  }

  .sec-news .post .post-content {
    padding-bottom: 80px;
  }

  .sec-news .post .post-content .img-wrap > img {
    width: 46%;
    margin: 0 2%;
  }

  .sec-toudo .toudo-inr {
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .sec-toudo .ttl-toudo {
    font-size: 0.2rem;
  }

  .sec-product .lead-wrap .lead {
    font-size: 0.15rem;
  }

  .sec-product .ttl-product {
    margin-top: 100px;
    margin-bottom: 100px;
    font-size: 0.24rem;
  }

  .sec-product .product-detail.-original {
    margin-bottom: 100px;
    padding-bottom: 70px;
    border-bottom: 1px solid #333;
  }

  .sec-product .product-detail.-original .top-area {
    margin-bottom: 40px;
  }

  .sec-product .product-detail.-standard {
    margin-bottom: 80px;
  }

  .sec-product .product-detail.-standard .top-area {
    margin-bottom: 40px;
  }

  .sec-product .product-detail .top-area,
  .sec-product .product-detail .foot-area {
    justify-content: space-between;
  }

  .sec-product .product-detail .top-area > *,
  .sec-product .product-detail .foot-area > * {
    width: 47%;
  }

  .sec-product .product-detail .txt-area {
    line-height: 1.8;
    font-size: 0.15rem;
  }

  .sec-product .product-detail .txt-area.-note {
    padding-top: 80px;
  }

  .sec-product .product-detail .txt-area.-border {
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
  }

  .sec-product .product-detail .img-caption {
    font-size: 0.12rem;
    margin-top: 10px;
  }

  .sec-product .product-name .main.-jp {
    font-size: 0.36rem;
  }

  .sec-product .product-name .main.-jp .small {
    font-size: 0.12rem;
    margin-left: 8px;
  }

  .sec-product .product-name .main.-jp .middle {
    font-size: 0.18rem;
    display: inline-block;
  }

  .mainvisual-acb {
    height: 400px;
  }

  .mainvisual-acb .logo {
    width: 420px;
    bottom: 90px;
  }

  .sec-acb .acb-head {
    padding: 100px 0;
  }

  .sec-acb .acb-head .ttl {
    margin-bottom: 50px;
    font-size: 60px;
  }

  .sec-acb .acb-head .lead {
    margin-bottom: 32px;
    font-size: 30px;
  }

  .sec-acb .acb-head .lead .small {
    font-size: 20px;
  }

  .sec-acb .acb-head .main {
    font-size: 20px;
  }

  .sec-acb .acb-member .ttl {
    margin-bottom: 60px;
    margin-right: 30px;
    font-size: 30px;
  }

  .sec-acb .list-member {
    margin: 0 auto 100px;
  }

  .sec-acb .list-member > li .txt-area .name {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .sec-acb .list-member > li .txt-area .detail {
    font-size: 18px;
  }

  .sec-acb .list-member > li {
    display: flex;
    align-items: center;
  }

  .sec-acb .list-member > li + li {
    margin-top: 80px;
  }

  .sec-acb .list-member > li .img-area {
    width: 280px;
    margin-right: 32px;
  }

  .sec-acb .list-member > li .txt-area {
    width: calc(100% - 312px);
  }

  .sec-acb-action .acb-action-inr {
    padding: 80px 0 120px;
  }

  .sec-acb-action .ttl-action {
    margin-bottom: 80px;
    font-size: 25px;
  }

  .sec-acb-action .logo {
    width: 178px;
    margin-bottom: 80px;
  }

  .sec-acb-action .txt-wrap {
    font-size: 18px;
  }

  .sec-acb-foot .link-area {
    padding: 60px 0 120px;
  }

  .sec-acb-foot .link-area .txt {
    margin-right: 30px;
    font-size: 24px;
  }

  .sec-acb-foot .link-area .dl {
    font-size: 28px;
  }

  .sp-show {
    display: none;
  }

  .sp-hide {
    display: block;
  }

  span.sp-show {
    display: none;
  }

  span.sp-show {
    display: inline-block;
  }
}

@media screen and (min-width: 980px) {
  .header {
    height: 240px;
    background: #f9fcf9;
    display: flex;
    justify-content: space-between;
    padding: 30px 40px 0;
  }

  .header .logo {
    width: 200px;
  }

  .navbtn {
    display: none;
  }

  .nav .nav-list {
    display: flex;
    justify-content: flex-end;
  }

  .nav .nav-list li {
    margin: 0 14px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  .nav .nav-list li a {
    position: relative;
    letter-spacing: 0.24em;
    font-size: 0.16rem;
    color: #111;
  }

  .nav .nav-list li a::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
    background-color: #1d1d1d;
    transition: all 0.3s ease;
    content: "";
  }

  .nav .nav-list li a:hover {
    opacity: 1;
  }

  .nav .nav-list li a:hover::after {
    height: 100%;
  }

  .fixed-nav {
    display: none;
  }

  .fixed-nav.is-open {
    display: block;
    position: fixed;
    -webkit-animation: fadeIn both 0.4s;
    animation: fadeIn both 0.4s;
    z-index: 110;
    top: 0;
    width: 100%;
    height: 70px;
  }

  .fixed-nav .fixed-nav-inr {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 20px;
    background: #fff;
    opacity: 0.9;
  }

  .fixed-nav .fixed-nav-inr .logo {
    width: 100px;
    margin-right: 32px;
  }

  .fixed-nav .fixed-nav-inr .nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .fixed-nav .fixed-nav-inr .nav-list li {
    margin-right: 15px;
  }

  .fixed-nav .fixed-nav-inr .nav-list li a {
    position: relative;
    letter-spacing: 0.1em;
    font-size: 0.13rem;
    line-height: 40px;
    color: #111;
  }

  .fixed-nav .fixed-nav-inr .nav-list li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #1d1d1d;
    transition: all 0.3s ease;
    content: "";
  }

  .fixed-nav .fixed-nav-inr .nav-list li a:hover {
    opacity: 1;
  }

  .fixed-nav .fixed-nav-inr .nav-list li a:hover::after {
    width: 100%;
  }

  .footer .footer-btns .btn {
    width: 50%;
    height: 340px;
  }

  .footer .footer-nav {
    padding: 90px 0 40px;
  }

  .footer .footer-nav .logo {
    width: 280px;
    margin-bottom: 60px;
  }

  .footer .footer-nav .nav-list {
    margin-bottom: 60px;
  }

  .footer .footer-nav .nav-list li {
    margin: 0 20px;
  }

  .footer .footer-nav .adress {
    font-size: 0.14rem;
  }

  .footer .copyright {
    padding: 42px 0;
    font-size: 0.12rem;
  }

  .l-content-wrap {
    padding-bottom: 80px;
  }

  .toppage .header,
  .acb .header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
  }

  .toppage .nav .nav-list li a,
  .acb .nav .nav-list li a {
    color: #fff;
  }

  .toppage .nav .nav-list li a::after,
  .toppage .nav .nav-list li a:hover::after,
  .acb .nav .nav-list li a::after,
  .acb .nav .nav-list li a:hover::after {
    background-color: #fff;
  }

  .toppage .mainvisual {
    height: calc(100vh - 88px);
    margin-top: 0;
  }

  .toppage .mainvisual .logo {
    width: 38%;
    max-width: 420px;
    bottom: 120px;
    left: 160px;
  }

  .toppage .mainvisual .scroll_down {
    right: 50px;
  }

  .toppage .sec-top-toudo .ttl-sec-v {
    left: calc(50% - 440px);
    transform: translate(-50%);
  }

  .toppage body.toudo .l-content-wrap {
    margin-bottom: 120px;
  }

  .toppage .sec-top-product .ttl-sec-v {
    left: calc(50% - 440px);
  }

  .toppage .sec-top-product .ttl-product {
    padding: 0 50px;
  }

  .toppage .sec-top-product .ttl-product .lead {
    margin-bottom: 34px;
  }

  .toppage .sec-top-product .txt-product {
    padding: 40px 50px 0;
  }

  .sec-news .news-inr .news-main {
    padding-right: 70px;
  }

  .sec-toudo .ttl-toudo {
    font-size: 0.24rem;
  }

  .mainvisual-acb {
    height: 730px;
  }

  .sm-show {
    display: none;
  }

  .sm-hide {
    display: block;
  }

  span.sm-show {
    display: none;
  }

  span.sm-hide {
    display: inline-block;
  }
}

@media screen and (max-width: 979px) {
  .header {
    height: 65px;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
  }

  .nav {
    position: fixed;
    width: 70%;
    min-width: 260px;
    height: 100vh;
    margin-top: 65px;
    top: 0;
    right: -100%;
    padding: 60px 20px 0;
    background: #1d1d1d;
    z-index: 100;
    transition: all ease-in-out 0.6s;
  }

  .nav.is-open {
    right: 0;
  }

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

  .nav .nav-list li {
    margin-bottom: 18px;
  }

  .nav .nav-list li a {
    display: inline-block;
    font-size: 0.14rem;
    color: #fff;
  }

  .footer .footer-btns {
    flex-direction: column;
  }

  .footer .footer-nav .logo {
    width: 80vw;
    max-width: 240px;
    margin-bottom: 40px;
  }

  .l-content-wrap {
    padding-top: 65px;
    padding-bottom: 60px;
  }

  .toppage .mainvisual {
    height: calc(100vh - 90px);
    margin-top: 0;
  }

  .toppage .mainvisual .logo {
    width: 66vw;
    max-width: 400px;
    bottom: 90px;
    left: 24px;
  }
}

@media screen and (max-width: 767px) {
  .pagination {
    margin: 120px auto 0;
    padding-bottom: 40px;
  }

  .toppage .mainvisual .scroll_down {
    right: 10px;
  }

  .toppage .sec-topics .post-ttl {
    align-items: flex-start;
  }

  .toppage .sec-top-toudo .toudo-inr {
    padding-top: 50%;
    background: url("http://shiotatoudo.com/wp-content/themes/shiotatoudo/assets//img/top/img_toudo.jpg") top center/100% auto no-repeat;
  }

  .toppage .sec-top-product {
    padding: 0 0 60px;
  }

  .toppage .sec-top-product .product-inr {
    flex-direction: column;
  }

  .toppage .sec-top-product .txt-area {
    padding: 30px 20px;
  }

  .company .sec-info .info-table-wrap {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .company .sec-info .info-table {
    font-size: 0.14rem;
    width: 100%;
  }

  .company .sec-info .info-table th {
    width: 36%;
  }

  .company .sec-info .info-table td {
    width: 64%;
  }

  .company .sec-history .history-inr {
    flex-direction: column;
    font-size: 0.14rem;
  }

  .company .sec-history .txt-area {
    margin-bottom: 30px;
  }

  .sec-news .news-inr {
    flex-direction: column;
  }

  .sec-news .news-inr .news-main {
    margin-bottom: 70px;
  }

  .sec-news .post .post-content .img-wrap {
    flex-direction: column;
  }

  .sec-news .post .post-content .img-wrap > img + img {
    margin-top: 20px;
  }

  .sec-product .product-detail .top-area,
  .sec-product .product-detail .foot-area {
    flex-direction: column;
  }

  .sec-product .product-detail .txt-area,
  .sec-product .product-detail .img-area {
    margin-bottom: 30px;
  }

  .mainvisual-acb {
    height: 40vh;
  }

  .mainvisual-acb .logo {
    width: 265px;
    bottom: 60px;
  }

  .sec-acb .list-member > li + li {
    margin-top: 40px;
  }

  .sec-acb .list-member > li .img-area {
    margin-bottom: 20px;
  }

  .sec-acb-foot .link-area {
    padding: 30px 0 50px;
    flex-direction: column;
  }

  .sec-acb-foot .link-area .txt {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 360px) {
  .sec-greeting .greeting-txt p + p {
    margin-right: 8px;
  }

  .sec-greeting .name {
    margin-right: -12px;
  }
}