/*!
sp css
 ______________________________*/
@media screen and (max-width: 599px) {
  .top_products_search {
    position: absolute;
    padding: 0 20px;
    top: 0;
    left: 0;
  }

  .header_icon {
    display: none;
  }

  .header input {
    display: block;
  }

  .header_search {
    position: absolute;
    top: 0;
    right: 58px;
    z-index: 10000;
    width: 40%;
    height: 50px;
    display: block;
  }

  .products_search form {
    border: none;
    height: 51px;
    padding: 0;
  }

  .top_products_search {
    display: none;
  }

  .products_search #s {
    width: calc(100% - 50px);
    height: 50px;
    border-right: none;
    background-color: #fff;
  }

  .products_search #s::placeholder {
    color: transparent;
  }

  .products_cate {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .products_cate li a {
    display: grid;
    grid-template-columns: 1fr auto;
    /* 左にp、右にimgを配置 */
    background-color: #fff;
    align-items: center;
    box-shadow: 0px 0px 15px -5px #777777;
    background-image: url(../img/common/ico_products.png);
    background-repeat: no-repeat;
    background-size: 5px;
    background-position: left 3px bottom 3px;
    gap: 10px;
    /* お好みで間隔を調整 */
  }

  .products_cate li a p {
    font-size: 1.2rem;
    margin: 0;
    width: 100%;
    /* gridに従い最大限広がる */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* 必要なら1行制限 */
    padding: 0 0 0 15px;
  }

  .products_cate li a img {
    width: 65px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }


  .footer_in ul.menu {
    display: block;
    padding: 24px 30px;

  }

  .footer_in ul.menu li a,
  .footer_in ul.menu li:last-child a {
    font-size: 1.2rem;
    padding: 10px 0;
  }

  .footer_in ul.menu li {
    border-left: none;
    border-right: none;
    border-top: 1px solid #fff;
  }

  .footer_in ul.menu li:last-child {
    border-bottom: 1px solid #fff;
  }

  .footer_btm {
    display: block;
    padding: 0 20px 20px;
  }

  .footer_btm li {
    display: block;
    width: 100%;
    text-align: center;
  }

  .footer_btm img {
    width: 233px !important;
    height: auto;
  }

  .footer_btm iframe {
    display: none;
  }

  .footer_btm li dl {
    display: flex;
    justify-content: center;
  }

  .footer_btm li dl dt,
  .footer_btm li dl dd {
    display: inline-block;
    font-size: 1.2rem;
  }

  .footer_btm li dl dd {
    width: inherit;
    margin: 0;
    padding: 0;
  }

  .copy {
    padding: 10px 0;
  }

  /*
.scroll-table
_____________________________*/

  .scroll-table,
  .tbl_wrap {
    overflow: auto;
    white-space: nowrap;
    /*border: solid 1px #ddd;*/
  }

  /*
header
______________________________*/

  .header_in {
    display: flex;
    justify-content: space-between;
    padding: 0;
    min-height: 50px;
    height: 50px;
  }

  .header_r {
    display: flex;
    justify-content: flex-end;
    min-width: 200px;
    text-align: right;
    min-height: 50px;
    height: 50px;
    width: 100%;
  }

  .header.scrolled h1,
  .header h1 {
    display: block;
    width: 160px;
    padding: 0 0 0 10px;
    text-decoration: none;
    margin-right: auto;
    top: 0;
  }

  .header.scrolled .header_r {
    position: relative;
    top: 0 !important;
  }

  .header,
  .header.scrolled {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 3;
    padding: 0;
    min-height: 50px;
    height: 50px;
  }

  .header .container {
    position: relative;
    margin: 0;
    padding: 0;
  }

  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: auto;
    background-color: #fff;
    position: static;
    z-index: 999;
  }

  .header li a {
    display: block;
    padding: 18px 10px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
  }

  .header li a:hover,
  .header .menu-btn:hover {
    background-color: #f4f4f4;
  }

  /* menu */
  .header .menu {
    position: absolute;
    transition: 0.2s ease-out;
    max-height: 0;
    opacity: 0;
    display: block;
  }

  /* menu icon */
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 26px 20px;
    position: relative;
    user-select: none;
    background: var(--color-primary);
    color: #fff;
  }

  .header .menu-icon .navicon {
    background: #fff;
    display: block;
    height: 2px;
    position: relative;
    transition: background 0.2s ease-out;
    width: 18px;
  }

  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: #fff;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.2s ease-out;
    width: 100%;
  }

  .header .menu-icon .navicon:before {
    top: 5px;
  }

  .header .menu-icon .navicon:after {
    top: -5px;
  }

  /* menu btn */
  .header .menu-btn {
    display: none;
  }

  .header .menu-btn:checked~.menu {
    max-height: inherit;
    opacity: 1;
    top: 50px;
  }

  .header .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
  }

  .header .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
  }

  .header .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
  }

  .header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
  }

  .contents h3 em {
    font-size: 1.7rem;
  }

  .top_products article {
    padding: 0;
  }

  div.mod-list-tab-01-wrapper ul.mod-list-tab-01 li a.is-active,
  div.mod-list-tab-01-wrapper ul.mod-list-tab-01 li a {
    display: block;
    padding: 2px 10px 10px 10px;
    font-size: 1.2rem;
    background-size: 10px 5px;
    background-position: center bottom 5px;
  }

  /*
	header 子メニュー toggle3種 cssのみcheckbox形式
________________________________________________*/
  #toggle1,
  #toggle2,
  #toggle3 {
    display: none;
  }

  .toggle-inner {
    transition: line-height 0.3s, opacity 0.3s, max-height 0.3s;
    opacity: 0;
    line-height: 0;
    max-height: 0;
  }

  .toggle-inner a {
    transition: padding 0.3s, line-height 0.3s;
    opacity: 0;
    line-height: 0;
    padding: 0 20px;
  }

  #toggle1:checked~.toggle-inner,
  #toggle2:checked~.toggle-inner,
  #toggle3:checked~.toggle-inner {
    opacity: 1;
    line-height: 1.6;
    max-height: inherit;
  }

  #toggle1:checked~.toggle-inner a,
  #toggle2:checked~.toggle-inner a,
  #toggle3:checked~.toggle-inner a {
    opacity: 1;
    line-height: 1.6;
    padding: 10px;
  }

  .toggle_label {
    width: 100%;
    display: block;
    cursor: pointer;
    padding: 10px;
  }

  /*
  .toggle_label::after {
    content: "▼";
  }

  #toggle1:checked~.toggle_label::after,
  #toggle2:checked~.toggle_label::after,
  #toggle3:checked~.toggle_label::after {
    content: "▲";
  }
*/
  ul.toggle-inner {
    background-color: rgba(0, 0, 0, 0.08);
    margin: 0;
    padding: 0 0 0 1em;
  }

  /* header fixed adjustment */
  main {
    padding-top: 72px;
  }

  html {
    scroll-padding-top: 70px;
  }

  /*
menu
________________________*/
  ul.menu li {
    width: 100%;
    overflow: scroll;
  }

  ul.menu li a,
  .toggle_label {
    text-align: center;
  }

  ul.menu li a span,
  .toggle_label span {
    display: none;
  }

  ul.menu>li {
    border-left: inherit !important;
    padding: 13px 0;
    height: 69px;
  }

  ul.menu>li {
    padding: 5px 0;
    height: inherit;
  }

  ul.menu>li:last-child {
    height: inherit;
  }

  .header_google {
    width: calc(100% - 40px);
    margin: 40px 20px 20px;
    text-align: center;
    position: inherit;
    top: inherit;
    left: inherit;
    border-left: 1px solid var(--color-primary);
  }

  .header_google input[type="text"] {
    width: 100%;
  }

  /* 前への矢印 */
  .swiper-button-prev {
    left: 10px;
  }

  /* 次への矢印 */
  .swiper-button-next {
    right: 10px;
  }

  .mv .container {
    padding: 0;
  }

  ul.menu li:last-child a {
    padding: 5px 30px 5px 17px;
    background-image: none;
    /*
    background-repeat: no-repeat;
    background-size: 23px 25px;
    background-position: top 3px right;*/
  }

  /*
mv
____________________*/

  .tab_flex {
    display: block;
  }

  .mod-list-tab-01-wrapper {
    width: 100%;
  }

  .top_tab h3 {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
  }

  .contents {
    background-size: 250% 40%;
  }

  .section_pad_lr {
    padding: 0 20px;
  }

  .swiper_cur .swiper-slide h4 {
    font-size: 1.2rem;
  }

  .swiper_cur .swiper-slide p {
    font-size: 1rem;
  }

  .top_tab_contents {
    padding: 0 0 50px;
  }

  .top_company_csr h3,
  .top_formulation h3,
  .top_products h3,
  .top_latest_news>.container h3 {
    font-size: 1.8rem;
    margin: 0 0 20px;
    text-align: center;
  }

  .top_company_csr h3 span,
  .top_formulation h3 span,
  .top_products h3 span,
  .top_latest_news>.container h3 span {
    font-size: 0.9rem;
  }

  .top_latest_news>.container h3 {
    width: 320px;
    margin: 3px 0 0 0;
    text-align: left;
  }

  .top_latest_news>.container>article>a>p {
    width: 20em;
  }

  .top_latest_news {
    padding: 20px 0;
  }

  .top_products_flex li a h4,
  .top_formulation_flex li a h4 {
    font-size: 1.3rem;
  }

  .top_products_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }

  .top_products_flex li {
    width: 43%;
    margin-bottom: 30px;
  }

  .top_formulation_flex {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 2fr;
    margin: 0 20px;
  }

  .top_company_csr_flex {
    display: block;
  }

  .top_company_csr_flex li {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
  }

  .footer_link .container {
    padding: 0 40px;
  }

  .footer_link_flex {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer_link_flex article:nth-child(1),
  .footer_link_flex article:nth-child(3) {
    width: 50%;
  }

  .footer_link_flex article:nth-child(2) {
    width: 40%;
  }

  .footer_sub ul {
    padding: 0;
  }

  .footer_link_ul {
    padding: 0;
  }

  .footer_link_ul>ul {
    padding: 0 0 0 10px;
  }

  .footer_sub a,
  .footer_link_ul a {
    font-size: 1rem;
  }

  .footer_company_flex {
    display: block;
  }

  .footer_company_flex li {
    text-align: center;
  }

  .footer_company {
    padding: 20px 0;
  }

  br.sp {
    display: block;
  }

  .company_about_box_img_box img {
    display: block !important;
  }

  .company_about_box_img_box {
    background-image: none !important;
    position: relative !important;
    height: inherit !important;
  }

  .company_about_box_text_box {
    top: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    background-color: #ffffff99;
  }

  .flex_box_message {
    display: block;
  }

  .flex_box_message_img {
    width: 100%;
    padding: 0 50px;
  }

  .flex_box_message_txt {
    width: 100%;
    padding: 0;
  }

  .flex_box_message_bg {
    background-size: 100%;
    background-position: top 28% center;
  }

  .top_corp_pic ul li:nth-child(1) {
    width: 70px;
    text-align: right;
  }

  .top_corp_pic ul li:nth-child(1) img {
    width: 100%;
  }

  .top_corp_pic ul li:nth-child(2) {
    width: calc(100% - 100px);
  }

  .top_corp_pic h4 {
    font-size: 1.8rem !important;
  }

  .top_corp_pic ul li:nth-child(2) h5 {
    font-size: 1.6rem;
  }

  .top_corp_pic ul li:nth-child(2) h6 {
    font-size: 1.8rem;
  }

  .top_products {
    padding: 20px 0 50px;
  }

  .contents h3 em {
    font-size: 1.7rem;
    margin: 0 0 5px;
  }

  /*
	page_header
_________________*/
  .page_header {
    height: 100px;
    display: flex;
    align-items: center;
  }

  .page_header1 {
    background-size: cover;
    background-position: right -150px top 61px;
  }

  .page_header h2 {
    font-size: 120%;
    margin: 0;
  }

  .main_contents {
    font-size: 80%;
  }

  #breadcrumb {
    padding: 5px 0;
    margin: 10px 0;
    font-size: 80%;
  }

  .main_contents p {
    font-size: 100%;
  }

  .main_contents h3,
  .main_contents h4,
  .main_contents h5 {
    font-size: 100%;
  }

  .main_contents h3 {
    padding: 10px 0;
    margin-bottom: 10px;
  }

  .main_contents h3::before {
    width: 3px;
    height: 22px;
    top: 9px;
    left: 8px;
  }

  .main_contents h4,
  .main_contents h5 {
    padding: 5px;
    margin-bottom: 10px;
  }

  .sub_nav h3 {
    padding: 5px 10px;
    border-bottom: 3px solid #95cef6;
    font-size: 120%;
  }

  .main_contents h3 em {
    font-size: 3rem;
    left: -2px;
    bottom: -4px;
  }

  /*_______________________

.flex_box
________________________*/
  .flex_box {
    display: block;
  }

  .img_box,
  .img250 .img_box,
  .img350 .img_box,
  .text_box {
    width: 100% !important;
  }

  .img_box img,
  .img250 .img_box img,
  .img350 .img_box img {
    width: 100% !important;
  }

  .img_float .img_box {
    float: right;
    width: 40% !important;
    margin-left: 3%;
  }

  .img_float ::after {
    content: "";
    display: block;
    clear: both;
  }

  .hero_img img {
    width: 80%;
    height: auto;
  }

  /*
main
________________*/
  .contents {
    padding-top: 51px;
  }

  .main_wrapper {
    display: block;
  }

  .main_contents {
    width: 100%;
    order: 1;
  }

  .main_wrapper sub {
    width: 100%;
    order: 2;
  }

  .pic_flex,
  .top_oversea_flex {
    display: block;
  }

  .pic_flex .pic_img,
  .top_oversea_flex li {
    width: 100%;
    text-align: center;
    margin-bottom: 50px !important;
  }

  .pic_flex .pic_img img,
  .top_oversea_flex li img {
    width: 80%;
  }

  .pic_flex .pic_txt {
    width: 100%;
  }

  .top_oversea_flex li p {
    text-align: left;
  }

  .top_oversea_flex li p br {
    display: none;
  }

  .movie video.pc {
    display: none;
  }

  .movie video.sp {
    display: block;
  }

  .swiper .swiper-slide p {
    font-size: 2.5rem;
    letter-spacing: 5px;
    padding: 0 25px;
  }

  .header_icon li:nth-child(3),
  .header_icon li:nth-child(4) {
    display: none;
  }


  .products_category ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .products_card {
    display: block;
  }

  .products_card>li:nth-child(2) {
    padding: 10px 10px !important;
  }

  .products_card h3 {
    padding: 10px 0;
  }

  .button,
  [type="button"],
  [type="reset"],
  [type="submit"],
  button {
    font-size: 1.2rem;
  }

  .products_card h5 {
    padding: 5px 10px !important;
    font-size: 1.2rem !important;
  }

  .footer_contact ul {
    display: block;
  }

  .footer_contact ul li:nth-child(1) {
    margin-bottom: 20px;
  }

  .top_pickup,
  .top_event,
  .top_news {
    padding: 40px 0;
  }

  .pickup {
    display: block;
  }

  .pickup li:nth-child(1),
  .pickup li:nth-child(2) {
    width: 100%;
    margin-bottom: 30px;
  }

  .pickup1 li:nth-child(2) img {
    position: absolute;
    top: -30px;
    left: -6px;
    width: 80px;
    height: auto;
  }

  .pickup2 li:nth-child(2) img {
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 80px;
    height: auto;
  }

  .pickup3 li:nth-child(2) img {
    position: absolute;
    top: -30px;
    left: -6px;
    width: 80px;
    height: auto;
  }

  .pickup1 li:nth-child(2),
  .pickup3 li:nth-child(2) {
    padding: 0 20px 0 20px;
  }

  .pickup li:nth-child(2) h3 {
    font-size: 1.8rem;
  }

  .top_event ul {
    display: block;
  }

  .top_event ul li {
    margin-bottom: 20px;
  }

  .top_news_wrap {
    display: block;
  }

  .top_news_wrap li:nth-child(1) {
    margin-bottom: 30px;
  }

  .top_pickup p,
  .top_event p,
  .top_news dt,
  .top_news dd,
  .events_body h3,
  .events_body h4 {
    font-size: 1.2rem;
  }

  ul.company1,
  ul.company2,
  ul.company3 {
    display: block;
  }

  ul.company1 li,
  ul.company2 li,
  ul.company3 li {
    margin-bottom: 30px;
  }

  .company2 iframe {
    width: 100%;
    height: auto;
  }

  .page_details {
    width: 100%;
  }

  ul.about_flex {
    display: block;
    margin: 30px 0 50px;
  }

  ul.about_flex::after {
    display: none;
  }

  ul.about_flex li:nth-child(1),
  ul.about_flex li:nth-child(2) {
    width: 100%;
    padding: 0;
  }

  .about_pict {
    max-width: 100%;
    margin: 0 auto 30px;
  }

  .h4_about {
    margin: 30px 0 5px 0 !important;
    font-size: 2rem !important;
  }

  .h4_about span {
    font-size: 1.6rem !important;
  }

  .h5_about {
    font-size: 1.6rem !important;
  }

  .h5_about br {
    display: none;
  }

  .manu_list ul {
    display: block;
  }

  .manu_list ul li {
    margin-bottom: 30px;
  }

  .contactform label {
    width:inherit;
    display: block;
  }

  .contactform label span:nth-child(2) {
    width: 100%;
  }
.wpcf7-spinner{
  display: block;
}
.contactform .submitbtn_area {
    padding: 30px 0;
}
.header_search.products_search #s{
  border:1px solid #ccc;

}
.header_search.products_search #s::placeholder {
   color: #ccc;
   font-size:1rem;
}

  /*___________________________________*/
}



/*
  印刷用CSSの定義を指定する
________________________________*/

@media print {

  .header,
  .contact-btn {
    display: none;
  }

  .contents {
    padding-top: 0;
  }
}