﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@400&family=Shippori+Mincho:wght@500&display=swap');

/* 変数 */
:root {
 --main-color: #0C8FE2;
 --base-color: #000000;
 --sub-color: #3A6A93;
 --sub-light-color: #86A3BC;
 --accent-color: #FFF800;
 --highlight-color: #FFFAD3;
 --white-color: #ffffff;
 --gray-color: #707070;
 --main10-color: #0C8FE21A;
 /* main-colorの10% */

 --sans-serif-ja: "Noto Sans JP", sans-serif;
 --serif-ja: "Shippori Mincho", serif;
 --san-serif-en: "Roboto", sans-serif;
}

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

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%;
 line-height: 1.6;
 font-family: var(--sans-serif-ja) !important;
 -webkit-font-smoothing: antialiased;
 vertical-align: baseline;
 background: transparent;
}

body {
 /* line-height: 1; */
 font-family: var(--sans-serif-ja) !important;
 font-weight: 500 !important;
 font-style: normal;
 font-feature-settings: "palt";
 letter-spacing: 0.02em;
 color: var(--base-color);
 overflow-x: hidden;
}

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

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

section {
 padding: 80px 0;
 overflow-x: hidden;
}

@media screen and (min-width: 650px) {
 section {
  padding: 120px 0;
 }
}

ul,
li {
 list-style-type: none
}

blockquote,
q {
 quotes: none
}

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

a {
 margin: 0;
 padding: 0;
 font-size: 100%;
 vertical-align: baseline;
 background: transparent;
 text-decoration: none;
 position: relative;
 display: inline-block;
 width: 100%;
 cursor: pointer
}

a:link,
a:active,
a:focus,
a:visited {
 color: var(--base-color);
}

ins {
 background-color: #FAF6CF;
 color: var(--base-color);
 text-decoration: none
}

mark {
 background-color: #FAF6CF;
 color: var(--base-color);
}

sup {
 top: 0;
 padding-right: 2px;
}

del {
 text-decoration: line-through
}

abbr[title],
dfn[title] {
 border-bottom: 1px dotted;
 cursor: help
}

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

hr {
 display: block;
 height: 1px;
 border: 0;
 border-top: 1px solid #cccccc;
 margin: 1em 0;
 padding: 0
}

input,
select {
 vertical-align: middle
}

h1,
h2,
h3,
h4,
h5,
strong {
 font-weight: 100
}

span,
strong {
 display: inline !important
}

span:before,
span:after,
strong:before,
strong:after {
 display: inline !important
}

/* =============================================
 コンポーネント
============================================= */
/* =============================================
 カラー
============================================= */
.base-color {
 color: var(--vase-color);
}

.main-color {
 color: var(--main-color);
}

.main10-color {
 color: var(--main10-color);
}

.sub-color {
 color: var(--sub-color);
}

.sub-light-color {
 color: var(--sub-light-color);
}

.accent-color {
 color: var(--accent-color);
}

.white-color {
 color: var(--white-color);
}

.highlight {
 background-color: var(--highlight-color);
}

.main-bg {
 background-color: var(--main-color);
}

.main10-bg {
 background-color: var(--main10-color);
}

.white-bg {
 background-color: var(--white-color)
}


/* =============================================
 フォント
============================================= */
.serif-ja {
 font-family: var(--serif-ja) !important;
 font-style: normal;
}

.sans-serif-en {
 font-family: var(--san-serif-en);
 font-weight: 400;
 font-style: normal;
 font-kerning: normal;
}

.weight400 {
 font-weight: 400
}

.weight500 {
 font-weight: 500
}

.weight700 {
 font-weight: 700 !important;
}

.weight900 {
 font-weight: 900 !important;
}

.f000 {
 font-size: 45px;
 line-height: 1.5em
}

.f000::before {
 display: block;
 width: 0;
 height: 0;
 margin-top: calc((1 - 1.5) * .5em);
 content: ""
}

.f000::after {
 display: block;
 width: 0;
 height: 0;
 margin-bottom: calc((1 - 1.5) * .5em);
 content: ""
}

.f00 {
 font-size: 30px;
 line-height: 1.3em
}

.f00::before {
 display: block;
 width: 0;
 height: 0;
 margin-top: calc((1 - 1.3) * .5em);
 content: ""
}

.f00::after {
 display: block;
 width: 0;
 height: 0;
 margin-bottom: calc((1 - 1.3) * .5em);
 content: ""
}

@media screen and (min-width: 650px) {
 .f00 {
  font-size: 42px;
  /* font-size: 40px; */
 }
}

.f01 {
 font-size: 36px;
 /* font-size: 35px; */
 line-height: 1.4em
}

.f01::before {
 display: block;
 width: 0;
 height: 0;
 margin-top: calc((1 - 1.4) * .5em);
 content: ""
}

.f01::after {
 display: block;
 width: 0;
 height: 0;
 margin-bottom: calc((1 - 1.4) * .5em);
 content: ""
}

.f02 {
 font-size: 27px;
 line-height: 1.4em
}

.f02::before {
 display: block;
 width: 0;
 height: 0;
 margin-top: calc((1 - 1.4) * .5em);
 content: ""
}

.f02::after {
 display: block;
 width: 0;
 height: 0;
 margin-bottom: calc((1 - 1.4) * .5em);
 content: ""
}

@media screen and (min-width: 650px) {
 .f02 {
  font-size: 32px;
  /* font-size: 30px; */
 }
}

.f03 {
 font-size: 22px;
 line-height: 1.6em
}

.f03::before {
 display: block;
 width: 0;
 height: 0;
 margin-top: calc((1 - 1.6) * .5em);
 content: ""
}

.f03::after {
 display: block;
 width: 0;
 height: 0;
 margin-bottom: calc((1 - 1.6) * .5em);
 content: ""
}

@media screen and (min-width: 650px) {
 .f03 {
  font-size: 28px;
  /* font-size: 27px; */
 }
}

.f04 {
 font-size: 22px;
 line-height: 1.6em
}

.f04::before {
 display: block;
 width: 0;
 height: 0;
 margin-top: calc((1 - 1.6) * .5em);
 content: ""
}

.f04::after {
 display: block;
 width: 0;
 height: 0;
 margin-bottom: calc((1 - 1.6) * .5em);
 content: ""
}

@media screen and (min-width: 650px) {
 .f04 {
  font-size: 24px;
  /* font-size: 25px; */
 }
}

.f05 {
 font-size: 22px;
 line-height: 1.6em
}

.f05::before {
 display: block;
 width: 0;
 height: 0;
 margin-top: calc((1 - 1.6) * .5em);
 content: ""
}

.f05::after {
 display: block;
 width: 0;
 height: 0;
 margin-bottom: calc((1 - 1.6) * .5em);
 content: ""
}

.f06 {
 font-size: 20px;
 line-height: 1.6em
}

.f06::before {
 display: block;
 width: 0;
 height: 0;
 margin-top: calc((1 - 1.6) * .5em);
 content: ""
}

.f06::after {
 display: block;
 width: 0;
 height: 0;
 margin-bottom: calc((1 - 1.6) * .5em);
 content: ""
}

.f07 {
 font-size: 16px;
 line-height: 1.8em
}

.f07::before {
 display: block;
 width: 0;
 height: 0;
 margin-top: calc((1 - 1.8) * .5em);
 content: ""
}

.f07::after {
 display: block;
 width: 0;
 height: 0;
 margin-bottom: calc((1 - 1.8) * .5em);
 content: ""
}

@media screen and (min-width: 650px) {
 .f07 {
  font-size: 18px
 }
}

.f08 {
 font-size: 16px;
 line-height: 1.8em
}

.f08::before {
 display: block;
 width: 0;
 height: 0;
 margin-top: calc((1 - 1.8) * .5em);
 content: ""
}

.f08::after {
 display: block;
 width: 0;
 height: 0;
 margin-bottom: calc((1 - 1.8) * .5em);
 content: ""
}

.f09 {
 font-size: 14px;
 line-height: 1.8em
}

.f09::before {
 display: block;
 width: 0;
 height: 0;
 margin-top: calc((1 - 1.8) * .5em);
 content: ""
}

.f09::after {
 display: block;
 width: 0;
 height: 0;
 margin-bottom: calc((1 - 1.8) * .5em);
 content: ""
}

.f10 {
 font-size: 12px;
 line-height: 1.5em
}

.f10::before {
 display: block;
 width: 0;
 height: 0;
 margin-top: calc((1 - 1.5) * .5em);
 content: ""
}

.f10::after {
 display: block;
 width: 0;
 height: 0;
 margin-bottom: calc((1 - 1.5) * .5em);
 content: ""
}

.f11 {
 font-size: 11px;
 line-height: 1.5em
}

.f11::before {
 display: block;
 width: 0;
 height: 0;
 margin-top: calc((1 - 1.5) * .5em);
 content: ""
}

.f11::after {
 display: block;
 width: 0;
 height: 0;
 margin-bottom: calc((1 - 1.5) * .5em);
 content: ""
}

.ls20 {
 letter-spacing: 0.02em
}

.ls40 {
 letter-spacing: 0.04em
}

.ls60 {
 letter-spacing: 0.06em
}

.ls80 {
 letter-spacing: 0.08em
}

.ls100 {
 letter-spacing: 0.1em
}

.ls120 {
 letter-spacing: 0.12em
}

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

.flex {
 display: flex;
 justify-content: space-between;
 flex-wrap: nowrap;
}

.overlay {
 width: 100%;
 max-width: 1920px;
 margin: 0 auto;
 height: 100%;
 background: rgba(0, 0, 0, 0.6);
 position: fixed;
 z-index: 9999
}

.btn_area {
 width: 300px;
 height: 350px;
 position: absolute;
 top: 35%;
 left: 50%;
 margin-top: -75px;
 margin-left: -150px;
 background-color: var(--white-color);
 z-index: 2
}

@media screen and (min-width: 650px) {
 .btn_area {
  width: 440px;
  height: 300px;
  top: 40%;
  left: 40%
 }
}

@media screen and (min-width: 960px) {
 .btn_area {
  top: 45%;
  left: 45.5vw
 }
}

.btn_area div#modal-logo {
 width: 200px;
 margin: 5% auto 0
}

.btn_area p {
 padding: 5% 10% 5%;
 line-height: 1.5em
}

@media screen and (min-width: 650px) {
 .btn_area p {
  padding: 2% 10% 5%
 }
}

.btn_area #modal-button {
 display: block;
 margin: 0 auto 0;
 padding: 0;
 vertical-align: middle;
 line-height: 1;
 background: #005eae;
 border: 1px solid #005eae;
 border-radius: 3px;
 color: #ffffff;
 font-size: 130%;
 letter-spacing: 0.3em;
 box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.49);
 max-width: 300px;
 width: 50%;
 height: 50px;
 -webkit-box-sizing: content-box;
 -webkit-appearance: button;
 -moz-appearance: button;
 appearance: button;
 border: none;
 box-sizing: border-box
}

.btn_area #modal-button::-webkit-search-decoration {
 display: none
}

.btn_area #modal-button:focus {
 outline-offset: -2px
}

.btn_area #modal-button:hover {
 cursor: pointer;
 background: #4690d0;
 border: 1px solid #4690d0;
 box-shadow: none;
 color: rgba(255, 255, 255, 0.5)
}

.w414 {
 width: 95%;
 max-width: 414px;
 margin: 0 auto
}

@media screen and (min-width: 650px) {
 .w414 {
  max-width: none;
  width: auto;
  margin: auto
 }
}

.w680 {
 width: 95%;
 max-width: 680px;
 margin: 0 auto
}

@media screen and (min-width: 880px) {
 .w680 {
  width: 100%
 }
}

.w820 {
 width: 95%;
 max-width: 820px;
 margin: 0 auto
}

@media screen and (min-width: 880px) {
 .w820 {
  width: 100%
 }
}

.w920 {
 width: 95%;
 max-width: 920px;
 margin: 0 auto
}

.fullwide {
 width: 100%;
 max-width: none;
 margin: 0 auto;
 overflow-x: hidden;
}


/* 表示切り替え */
.sp_img {
 display: block !important
}

@media screen and (min-width: 650px) {
 .sp_img {
  display: none !important
 }
}

.pc_img {
 display: none !important
}

@media screen and (min-width: 650px) {
 .pc_img {
  display: block !important
 }
}

.pc_block {
 display: inline !important
}

@media screen and (min-width: 650px) {
 .pc_block {
  display: block !important
 }
}

.sp_block {
 display: block !important
}

@media screen and (min-width: 650px) {
 .sp_block {
  display: inline-block !important
 }
}

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

@media screen and (min-width: 650px) {
 .br-sp {
  display: none;
 }
}

#wrap {
 font-family: var(--sans-serif-ja);
}

/* =============================================
 th2021のヘッダー・フッターエリア打ち消し
============================================= */
.entry-header {
 display: none;
}

.entry-content {
 margin-top: 0;
}

.post,
.page {
 margin-bottom: 0;
}

/* th2021 共通仕様打ち消し END */


.acd-check {
 display: none
}

.acd-label {
 display: block;
 position: relative;
 cursor: pointer;
 padding-bottom: 0.1em
}

.acd-label:after {
 content: '';
 display: inline-block;
 width: 20px;
 height: 20px;
 background-size: contain;
 background-repeat: no-repeat;
 background-position: center;
 vertical-align: middle;
 box-sizing: border-box;
 position: absolute;
 right: 2%;
 top: 32%
}

@media screen and (min-width: 650px) {
 .acd-label:after {
  right: 5%
 }
}

.acd-label-white {
 display: block;
 position: relative;
 cursor: pointer;
 padding-bottom: 0.1em
}

.acd-label-white:after {
 content: '';
 display: inline-block;
 width: 20px;
 height: 20px;
 background-size: contain;
 background-repeat: no-repeat;
 background-position: center;
 vertical-align: middle;
 box-sizing: border-box;
 position: absolute;
 right: 0;
 top: 50%;
 transform: translateY(-50%);
}

@media screen and (min-width: 650px) {
 .acd-label-white:after {
  right: 5%;
 }
}

.acd-content {
 display: block;
 height: 0;
 opacity: 0;
 transition: .5s;
 visibility: hidden
}

.acd-check:checked+.acd-label+.acd-content,
.acd-check:checked+.acd-label-white+.acd-content {
 height: auto;
 opacity: 1;
 visibility: visible
}

.text-toggle_wrapper {
 position: relative;
 margin-bottom: 30px
}

.text-toggle {
 height: 90px;
 overflow: hidden
}

@media screen and (min-width: 650px) {
 .text-toggle {
  height: 200px;
 }
}

.toggle-show_more1,
.toggle-show_more2,
.toggle-show_more3 {
 position: absolute;
 bottom: 0px;
 left: 0px;
 width: 100%;
 height: 30px;
 padding: 60px 0;
 text-align: center;
 line-height: 30px;
 background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 55%);
 cursor: pointer;
 transition: bottom 0.2s
}

.toggle-active {
 background: none;
 bottom: 0
}


/* =============================================
 header
============================================= */

header {
 text-align: center;
 background-image: url(/wp-content/uploads/2025/03/mv.webp);
 background-position: right 44% top 0;
 background-size: 960px 436px;
 background-repeat: no-repeat;
 height: 420px;
 position: relative;
}

@media screen and (min-width: 650px) and (max-width: 1600px)  {
 header {
  background-position: right 48% bottom 30%;
  background-size: 1600px 726px;
  height: 555px;
 }
}

@media screen and (min-width: 1601px) {
 header {
  background-position: center bottom 30%;
  background-size: cover;
  height: 555px;
 }
}

header .mv_txt {
 position: absolute;
 top: 15%;
 left: 50%;
 transform: translateX(-50%);
}

@media screen and (min-width: 650px) {
 header .mv_txt {
  top: 17%;

 }
}

header .mv {
 position: absolute;
 right: 0;
 bottom: 0;
 text-align: right;
}

@media screen and (min-width: 650px) {
 header .mv {
  left: 50%;
  transform: translateX(-50%);
 }
}

.mv img {
 width: 52%;
 height: auto;
 object-view-box: inset(0px 60px 0px 0px);
}

@media screen and (min-width: 650px) {
 .mv img {
  width: 380px;
  margin-right: auto;
  object-view-box: none;
 }
}

header .logo {
 position: absolute;
 top: 15px;
 left: 6%;
 text-align: left;
}

@media screen and (min-width: 650px) {
 header .logo {
  left: 50%;
  transform: translateX(-50%);
 }
}

header .logo a {
 width: 110px;
 height: auto;
}

@media screen and (min-width: 650px) {
 header .logo a {
  width: 166px;
 }
}

header .logo:hover {
 opacity: .7
}

header .w920 .mv_title {
 width: 94%;
 max-width: 380px;
 height: auto;
 margin: 0 auto 5%;
 filter: drop-shadow(0px 0px 5px #ffffff);
}

@media screen and (min-width: 650px) {
 header .w920 .mv_title {
  width: 58%;
  max-width: 530px;
  height: auto;
  margin: 0 auto 40px 0;
 }
}

header .mv_lead {
 width: 94%;
 height: auto;
 margin: 0 auto 6%;
}

@media screen and (min-width: 650px) {
 header .mv_lead {
  width: 100%;
  margin-bottom: 40px;
 }
}

header .mv_lead img {
 width: 234px;
}

@media screen and (min-width: 650px) {
 header .mv_lead img {
  width: 368px;
 }
}

header .mv_company {
 width: 94%;
 margin: 30px auto 20px;
 text-align: left;
}

@media screen and (min-width: 650px) {
 header .mv_company {
  width: 100%;
  margin: 50px auto 0;
 }
}

header .mv_toyohakko {
 width: 94px;
 height: auto;
 margin-bottom: 10px;
}

@media screen and (min-width: 650px) {
 header .mv_toyohakko {
  width: 140px;
 }
}

header .mv_cosmeOEM {
 width: 150px;
 height: auto;
 filter: drop-shadow(0px 0px 15px rgba(119, 102, 93, 1));
}

@media screen and (min-width: 650px) {
 header .mv_cosmeOEM {
  width: 238px;
 }
}

/* =============================================
 cv_area
============================================= */
section.cv_area {
 padding: 0;
}

.cv_area {
 text-align: center
}

.cv_area .w820 {
 padding: 5% 0;
}

@media screen and (min-width: 650px) {
 .cv_area .w820 {
  padding: 2% 0;
 }
}

.cv_area .w820 ul {
 display: block;
 margin: 0 auto !important;
}

@media screen and (min-width: 650px) {
 .cv_area .w820 ul {
  display: flex;
  justify-content: space-between;
  align-items: center
 }
}

.cv_area .w820 ul li {
 width: 100%;
 margin-bottom: 10px;
}

@media screen and (min-width: 650px) {
 .cv_area .w820 ul li {
  width: 49%;
  max-width: 380px;
 }
}

.cv_area .w820 ul li:first-child {
 box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.49);
 -webkit-transition: box-shadow 0.3s, -webkit-transform 0.3s;
 transition: box-shadow 0.3s, -webkit-transform 0.3s;
 transition: box-shadow 0.3s, transform 0.3s;
 transition: box-shadow 0.3s, transform 0.3s, -webkit-transform 0.3s;
 margin-bottom: 10px;
}

.cv_area .w820 ul li:first-child:hover {
 box-shadow: none;
 -webkit-transform: translateY(3px) translateX(3px);
 transform: translateY(3px) translateX(3px);
 box-shadow: none;
 cursor: pointer;
 color: rgba(255, 255, 255, 0.5)
}

.cv_area .w820 ul li:last-child:hover {
 background: var(--main-color);
 transition: background 0.3s, -webkit-transform 0.3s;
 transition: background 0.3s, transform 0.3s;
 transition: background 0.3s, transform 0.3s, -webkit-transform 0.3s
}

.cv_area .w820 p {
 text-align: left !important;
 letter-spacing: 0.08em;
}

@media screen and (min-width: 650px) {
 .cv_area .w820 p {
  letter-spacing: 0.1em;
  display: inline-block;
 }
}

/* =============================================
 こんなお悩みありませんか
============================================= */
section#cosmeOEM_question {
 width: 100%;
 max-width: 1280px;
 margin: 0 auto;
 background-image: url(/wp-content/uploads/2025/03/question_bg.webp);
 background-position: bottom center;
 background-size: cover;
 background-repeat: no-repeat;
 text-align: center;
 padding: 60px 0 80px
}

@media screen and (min-width: 650px) {
 section#cosmeOEM_question {
  padding: 80px 0 100px
 }
}

#cosmeOEM_question .title {
 text-align: center;
 line-height: 1;
 margin-bottom: 40px;
 font-size: 22px;
}

#cosmeOEM_question .title .dot-text {
 color: var(--base-color);
 margin: 0;
 background-position: top left 0em;
 background-repeat: repeat-x;
 background-size: 1.1em .3em;
 padding-top: 5px;
 line-height: 2;
 font-size: 30px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_question .title {
  line-height: 1.6;
  font-size: 32px;
 }

 #cosmeOEM_question .title .dot-text {
  font-size: 44px;
  padding-top: 10px;
  background-image: -webkit-radial-gradient(0.1em 0.1em at center center, var(--base-color), var(--base-color) 100%, transparent);
  background-image: radial-gradient(0.1em 0.1em at center center, var(--base-color), var(--base-color) 100%, transparent);
 }
}

#cosmeOEM_question ul {
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 gap: 10px;
}

#cosmeOEM_question ul li {
 align-items: center;
 border: solid 1px var(--gray-color);
 background: rgba(255, 255, 255, 0.8);
 font-size: 14px;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-align: center;
 width: 44%;
 max-width: 180px;
 padding: 15px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_question {
  padding: 90px 0 90px
 }

 #cosmeOEM_question ul {
  gap: 30px;
 }

 #cosmeOEM_question ul li {
  width: 24%;
 }
}

#cosmeOEM_question ul li img {
 display: block;
 max-height: 70px;
 margin-bottom: 10px;
}

#cosmeOEM_question ul li strong {
 font-weight: 700;
}

#cosmeOEM_question .question_answer .arrow {
 width: 50px;
 height: auto;
 margin: 30px auto;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_question .question_answer .arrow {
  margin: 60px auto 40px;
 }
}

#cosmeOEM_question .question_answer h2 {
 font-size: 22px;
 background-color: var(--main-color);
 padding: 10px 15px;
 display: inline;
}

#cosmeOEM_question .question_answer h2 .small {
 font-size: 18px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_question .question_answer h2 {
  font-size: 36px;
  padding: 10px 30px;
 }

 #cosmeOEM_question .question_answer h2 .small {
  font-size: 28px;
 }
}

#cosmeOEM_question h2 .dot-text {
 color: var(--base-color);
 margin: 0;
 background-position: top left 0em;
 background-repeat: repeat-x;
 background-size: 1.1em .3em;
 padding-top: 5px;
 line-height: 2;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_question h2 .dot-text {
  padding-top: 10px;
  background-image: -webkit-radial-gradient(0.1em 0.1em at center center, var(--base-color), var(--base-color) 100%, transparent);
  background-image: radial-gradient(0.1em 0.1em at center center, var(--base-color), var(--base-color) 100%, transparent);
 }
}


/* =============================================
 営業スタッフインタビュー
============================================= */
section#cosmeOEM_interview {
 padding: 40px 0 0;
}

@media screen and (min-width: 650px) {
 section#cosmeOEM_interview {
  padding: 70px 0 30px;
 }
}

#cosmeOEM_interview .sub-title {
 text-align: center;
 margin-bottom: 30px !important;
 width: 100%;
 position: relative;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_interview .sub-title {
  margin-bottom: 50px !important;
 }
}

#cosmeOEM_interview .sub-title::before {
 content: "";
 position: absolute;
 background-image: url("/wp-content/uploads/2025/03/interview-subtitle_left.svg");
 background-size: contain;
 background-repeat: no-repeat;
 width: 50px;
 height: 80px;
 bottom: -8px;
 left: calc(50% - 180px);
}

#cosmeOEM_interview .sub-title::after {
 content: "";
 position: absolute;
 background-image: url("/wp-content/uploads/2025/03/interview-subtitle_right.svg");
 background-size: contain;
 background-repeat: no-repeat;
 width: 50px;
 height: 80px;
 bottom: -8px;
 right: calc(50% - 180px);
}

@media screen and (min-width: 650px) and (max-width: 749px) {
 #cosmeOEM_interview .sub-title::before {
  left: 1%;
 }
 #cosmeOEM_interview .sub-title::after {
  right: 1%;
 }
}

@media screen and (min-width: 750px) {
 #cosmeOEM_interview .sub-title::before {
  bottom: -2px;
  left: calc(50% - 350px);
 }
 #cosmeOEM_interview .sub-title::after {
  bottom: -2px;
  right: calc(50% - 350px);
 }
}

#cosmeOEM_interview .sub-title p {
 letter-spacing: 0.1em;
 font-size: 28px;
 position: relative;
}

#cosmeOEM_interview .sub-title .follow-up {
 line-height: 1.2;
 margin-bottom: 20px;
}

#cosmeOEM_interview .sub-title .business {
 line-height: 1.6;
 padding-bottom: 5px;
 display: inline;
 background:linear-gradient(transparent 65%, var(--accent-color) 0%);
}

@media screen and (min-width: 650px) {
 #cosmeOEM_interview .sub-title p {
  font-size: 36px;
 }

 #cosmeOEM_interview .sub-title .follow-up {
  line-height: 1.8;
  padding-bottom: 3px;
  margin-bottom: 0;
 }

 #cosmeOEM_interview .sub-title .business {
  line-height: 1.8;
 }
}

#cosmeOEM_interview .sub-title .follow-up .small {
 font-size: 20px;
}

#cosmeOEM_interview .sub-title .business .small {
 font-size: 20px;
}

@media screen and (min-width: 650px) and (max-width: 749px) {
 #cosmeOEM_interview .sub-title .follow-up .small {
  font-size: 26px;
 }

 #cosmeOEM_interview .sub-title .business .small {
  font-size: 23px;
 }
}

@media screen and (min-width: 750px) {
 #cosmeOEM_interview .sub-title .follow-up .small {
  font-size: 28px;
 }

 #cosmeOEM_interview .sub-title .business .small {
  font-size: 26px;
 }
}

#cosmeOEM_interview .title {
 position: relative;
 background-image: url(/wp-content/uploads/2024/07/interview_title_en.svg);
 background-size: 100%;
 width: 100%;
 height: 134px;
 background-position: center;
 background-repeat: no-repeat;
 padding-top: 70px;
 color: var(--main-color);
 font-size: 28px;
 line-height: 1.4;
 text-align: center;
 margin-bottom: 50px !important;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_interview .title {
  font-size: clamp(2.25rem, 0.816rem + 3.53vw, 2.625rem);
  min-height: 0;
  padding-top: 60px;
 }
}

#cosmeOEM_interview .interview_sec {
 position: relative;
 padding-bottom: 100px;
}

@media screen and (min-width: 650px) and (max-width: 749px) {
 #cosmeOEM_interview .interview_th {
  margin-bottom: 60px !important;
 }
}

.interview_sec .interview_imageBlock {
 position: relative;
 z-index: 1;
 font-size: clamp(18px, 2.6vw, 26px);
 margin-top: 0;
}

@media screen and (min-width: 650px) {
 .interview_sec .interview_imageBlock {
  margin-top: 40px;
 }
}

.interview_th .interview_imageBlock,
.interview_yk .interview_imageBlock {
 width: 100vw;
 text-align: center;
 margin-left: -2.6%;
}

@media screen and (min-width: 650px) {
 .interview_th .interview_imageBlock {
  width: calc(50vw - 40px);
  margin-left: calc(50% - 50vw);
  margin-right: 40px;
  text-align: right;
 }
}

@media screen and (min-width: 650px) {
 .interview_yk .interview_imageBlock {
  width: calc(50vw - 40px);
  margin-right: calc(50% - 50vw);
  margin-left: 40px;
  text-align: left;
 }
}

@media screen and (min-width: 650px) {
 .interview_th .interview_imageBlock .interview_img img {
  height: 480px;
  object-fit: cover;
  object-position: 90% 50%;
 }
}

@media screen and (min-width: 650px) {
 .interview_yk .interview_imageBlock .interview_img img {
  height: 440px;
  object-fit: cover;
  object-position: 50% 0;
 }
}

.interview_th .interview_imageBlock .interview_comment {
 display: inline-block;
 margin-top: -40px;
 padding: 30px;
 background-color: rgba(255, 255, 255, 0.8);
 box-shadow: 5px 5px 0px #00000014;
 transform: skewY(-2deg) rotate(-6deg);
}

@media screen and (min-width: 650px) {
 .interview_th .interview_imageBlock .interview_comment {
  margin-top: -70px;
  margin-right: 20px;
  padding: 40px;
 }
}

.interview_yk .interview_imageBlock .interview_comment {
 display: inline-block;
 margin-top: -40px;
 padding: 30px;
 background-color: rgba(255, 255, 255, 0.8);
 box-shadow: 5px 5px 0px #00000014;
 transform: skewY(-2deg) rotate(-3deg);
}

@media screen and (min-width: 650px) {
 .interview_yk .interview_imageBlock .interview_comment {
  margin-top: -60px;
  margin-left: -30px;
  padding: 40px;
 }
}

.interview_th .interview_imageBlock .interview_comment p {
 text-align: left;
 text-decoration: underline;
 margin-bottom: 20px;
}

.interview_yk .interview_imageBlock .interview_comment p {
 text-align: left;
 text-decoration: underline;
 margin-bottom: 20px;
}

.interview_th .interview_imageBlock .interview_comment img {
 width: 280px;
 height: auto;
 margin-left: 6px;
}

.interview_yk .interview_imageBlock .interview_comment img {
 width: 280px;
 height: auto;
 margin-right: 6px;
}

@media screen and (min-width: 650px) {

 .interview_th .interview_imageBlock .interview_comment img,
 .interview_yk .interview_imageBlock .interview_comment img {
  width: 320px;
 }
}

.interview_th,
.interview_yk {
 display: block;
}

@media screen and (min-width: 650px) {

 .interview_th,
 .interview_yk {
  display: flex;
  justify-content: space-between;
 }
}

.interview_th {
 flex-direction: row-reverse;
}

.interview_th .interview_textBlock,
.interview_yk .interview_textBlock {
 width: 100%;
 font-size: clamp(12px, 1.6vw, 16px);
}

@media screen and (min-width: 650px) {

 .interview_th .interview_textBlock,
 .interview_yk .interview_textBlock {
  width: 50%;
 }
}

.interview_titleBlock {
 background: #FFFBC1;
 margin-bottom: 20px;
}

@media screen and (min-width: 650px) {
 .interview_titleBlock {
  margin-bottom: 40px;
 }
}

.interview_th .interview_titleBlock,
.interview_yk .interview_titleBlock {
 padding: 20px 20px 15px;
 text-align: center;
}

@media screen and (min-width: 650px) {
 .interview_th .interview_titleBlock {
  padding: 40px 20px 40px 90px;
  margin-left: -90px;
  text-align: left;
 }
}

@media screen and (min-width: 650px) {
 .interview_yk .interview_titleBlock {
  padding: 40px 90px 40px 20px;
  margin-right: -90px;
  text-align: left;
 }
}

.interview_title {
 border-bottom: solid 1px var(--base-color);
 padding-bottom: 0.8rem;
 margin-bottom: 0.6rem;
 line-height: 1.4;
}

@media screen and (min-width: 650px) {
 .interview_title {
  padding-bottom: 1.2rem;
  margin-bottom: 1.4rem;
 }
}

.interview_text {
 line-height: 2;
 margin-bottom: 20px;
 font-size: 14px;
}

@media screen and (min-width: 650px) {
 .interview_text {
  margin-bottom: 0;
  font-size: 16px;
  position: absolute;
  z-index: 5;
 }
}

.interview_yk .interview_text {
 margin-left: 0;
}

@media screen and (min-width: 650px) {
 .interview_yk .interview_text {
  margin-left: 20px;
  width: 50%;
 }
}

/* =============================================
 お役立ち資料DL
============================================= */
#cosmeOEM_dl {
 background-color: #FAF6CF;
 background-image: url(/wp-content/uploads/2023/12/download_bg.webp);
 padding: 30px 0 40px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_dl {
  padding: 20px 0 40px;
 }
}

#cosmeOEM_dl-title {
 width: 95%;
 height: 100px;
 margin: 0 auto 20px;
 position: relative;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_dl-title {
  width: 600px;
  height: 126px;
  margin-bottom: 0;
 }
}

.cosmeOEM_dl-title-txt {
 align-items: center;
 width: 100%;
 height: inherit;
 position: absolute;
 z-index: 2;
}

@media screen and (min-width: 650px) {
 .cosmeOEM_dl-title-txt {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -40px;
 }
}

#cosmeOEM_dl-title::after {
 content: '';
 position: absolute;
 background-image: url(/wp-content/uploads/2023/12/downroad_underline.svg);
 background-repeat: no-repeat;
 background-size: cover;
 width: 100%;
 height: 8px;
 z-index: 1;
 left: 50%;
 transform: translateX(-50%);
 bottom: 5%;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_dl-title::after {
  width: 600px;
  bottom: 22px;
 }
}

#cosmeOEM_dl-title h2 {
 font-size: 40px;
 text-align: center;
 letter-spacing: 0.04em;
 margin-top: -10px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_dl-title h2 {
  font-size: 48px;
  letter-spacing: 0.08em;
  margin-bottom: -8px;
 }
}

#cosmeOEM_dl-title h2 .dot-text {
 color: #08A6D5;
 padding-top: .1em;
 margin: 0 5px
}

@media screen and (min-width: 650px) {
 #cosmeOEM_dl-title h2 .dot-text {
  color: #08A6D5;
  margin: 0;
  background-position: top left 0em;
  background-image: -webkit-radial-gradient(0.1em 0.1em center center, #08A6D5, #08A6D5 100%, transparent);
  background-image: radial-gradient(0.1em 0.1em center center, #08A6D5, #08A6D5 100%, transparent);
  background-repeat: repeat-x;
  background-size: 1.03em .3em
 }
}

#cosmeOEM_dl-title h2 img {
 width: 28%;
 max-width: 100px;
 height: auto;
 margin-right: -5%;
 margin-bottom: -20px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_dl-title h2 img {
  width: 28%;
  max-width: 130px;
  height: auto;
  margin-bottom: -5%;
 }
}

#cosmeOEM_dl-title h3 {
 background-color: #fff;
 width: 220px;
 padding: 6px 14px;
 text-align: center;
 margin: 0 auto;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_dl-title h3 {
  width: 30%;
  height: 58px;
  line-height: 1;
  margin: 0;
 }
}

#cosmeOEM_dl-title h3 span {
 padding-right: 8px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_dl-title h3 span {
  padding-right: 0;
 }
}

.cosmeOEM_dl-doc {
 width: 95%;
 margin: 0 auto;
}

@media screen and (min-width: 650px) {
 .cosmeOEM_dl-doc {
  width: 600px;
  margin: 10px auto 0;
 }
}

/* 資料1種 */
.cosmeOEM_dl-doc ul {
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.cosmeOEM_dl-doc_item {
 width: 80%;
 height: auto;
 transition-duration: 0.4s;
}

@media screen and (min-width: 650px) {
 .cosmeOEM_dl-doc_item {
  letter-spacing: 0.04em;
 }
}

/* 資料2種の場合
.cosmeOEM_dl-doc ul {
    display: flex;
    justify-content: space-between;
}

.cosmeOEM_dl-doc_item {
    width: 48%;
    height: auto;
    transition-duration: 0.4s;
}

@media screen and (min-width: 650px) {
    .cosmeOEM_dl-doc_item {
        letter-spacing: 0.04em;
    }
}
*/

.cosmeOEM_dl-doc_item:hover {
 transform: scale(1.05);
}

.cosmeOEM_dl-doc_item img {
 box-shadow: 4px 4px 2px rgba(200, 200, 200, 0.5);
 margin-bottom: 8px;
}

@media screen and (min-width: 650px) {
 .cosmeOEM_dl-doc_item img {
  box-shadow: 10px 10px 8px rgba(200, 200, 200, 0.5);
 }
}

.cosmeOEM_dl-doc_item_caption {
 text-align: center;
}

/* =============================================
 東洋発酵の化粧品OEMをオススメする7つの理由
============================================= */
#cosmeOEM_reason h2 {
 text-align: center;
 margin-bottom: 30px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason h2 {
  margin-bottom: 40px;
 }
}

#cosmeOEM_reason h2 span {
 display: block !important;
 width: 90%;
 max-width: 495px;
 height: auto;
 max-height: 119px;
 margin: 10px auto 0;
}

#cosmeOEM_reason .reasonBlock {
 margin-bottom: 60px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason .reasonBlock {
  margin-bottom: 80px;
 }
}

#cosmeOEM_reason .reasonBlock:last-child {
 margin-bottom: 0;
}

#cosmeOEM_reason .reasonBlock .title {
 position: relative;
 height: 70px;
 letter-spacing: 0.2em;
}

#cosmeOEM_reason .reasonBlock .title h3 {
 font-size: 18px;
 font-weight: 700;
 line-height: 1.8;
 letter-spacing: 0.08em;
 padding-left: 70px;
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason .reasonBlock .title h3 {
  font-size: clamp(1rem, -0.434rem + 3.53vw, 1.375rem);
 }
}

#cosmeOEM_reason .reasonBlock .title h3 strong {
 font-size: 21px;
 font-weight: 900;
 border-bottom: 2px solid var(--main-color);
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason .reasonBlock .title h3 strong {
  font-size: clamp(1.056rem, -0.64rem + 4.26vw, 1.5rem);
 }
}

#cosmeOEM_reason .reasonBlock h3:before {
 content: '';
 display: block;
 position: absolute;
 width: 60px;
 height: 60px;
 background-size: contain;
 background-repeat: no-repeat;
 vertical-align: middle;
 left: 0;
 top: 50%;
 transform: translateY(-50%);
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason .reasonBlock h3:before {
  display: inline-block;
 }
}

#cosmeOEM_reason p {
 margin: 10px auto 25px;
 font-size: 14px;
 line-height: 2;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason p {
  margin: 15px auto 40px;
  font-size: 16px;
 }
}

@media screen and (min-width: 650px) {

 #cosmeOEM_reason .cosmeOEM_reason01 p,
 #cosmeOEM_reason .cosmeOEM_reason02 p,
 #cosmeOEM_reason .cosmeOEM_reason03 p {
  margin-top: 0;
 }
}

.cosmeOEM_reason01 .subTopic {
 padding: 1rem 1rem 0.6rem;
 background-image: url(/wp-content/uploads/2024/07/reason01_subtopic_img.webp);
 background-size: 100%;
 background-repeat: no-repeat;
 background-position: 50px bottom;
 margin-bottom: 20px;
}

@media screen and (min-width: 650px) {
 .cosmeOEM_reason01 .subTopic {
  padding: 2rem 3rem;
  background-size: auto 50%;
  background-position: right bottom;
  margin-bottom: 40px;
 }
}

.cosmeOEM_reason01 .subTopic .title {
 border: 1px solid var(--sub-color);
 background-color: rgba(255, 255, 255, 0.4);
 width: 100%;
 height: 50px !important;
 padding-top: 0;
 padding-bottom: 0;
 margin-bottom: 20px;
 font-size: 18px;
 line-height: 50px;
}

@media screen and (min-width: 650px) {
 .cosmeOEM_reason01 .subTopic .title {
  line-height: 50px;
  margin-bottom: 30px;
 }
}

/* @media screen and (min-width: 650px) {
 #cosmeOEM_reason p {
  font-size: clamp(0.875rem, 0.397rem + 1.18vw, 1rem);
 }
} */

.cosmeOEM_reason01 .subTopic .grid ul {
 /* display: grid;
 grid-template-columns: 200px;
 grid-template-rows: 30px 30px 30px 30px;
 gap: 5px; */
}

@media screen and (min-width: 650px) {
 .cosmeOEM_reason01 .subTopic .grid ul {
  /* display: grid;
  grid-template-columns: 200px 200px;
  grid-template-rows: 30px 30px;
  gap: 20px 30px; */
 }
}

.cosmeOEM_reason01 .subTopic ul li {
 background: url('/wp-content/uploads/2024/11/reason_listicon.svg') no-repeat;
 background-size: 30px 30px;
 background-position: left center;
 padding-left: 40px;
 margin-bottom: 25px;
 line-height: 1.4;
 letter-spacing: 0.06em;
 font-size: 16px;
 letter-spacing: 0.06em;
}

@media screen and (min-width: 650px) {
 .cosmeOEM_reason01 .subTopic ul li {
  font-size: 18px;
 }
}

.cosmeOEM_reason01 .related-info h4 {
 border-bottom: 1px solid var(--main-color);
 display: inline-block;
 padding-bottom: 5px;
 margin-bottom: 15px;
 font-size: 12px;
}

@media screen and (min-width: 650px) {
 .cosmeOEM_reason01 .related-info h4 {
  font-size: 16px;
 }
}

.cosmeOEM_reason01 .related-info ul li {
 background: url('/wp-content/uploads/2024/07/related-info_arrow.svg') no-repeat;
 background-size: 12px 14px;
 background-position: 0 center;
 padding-left: 18px;
 margin-bottom: 12px;
 line-height: 1.4;
 letter-spacing: 0.06em;
}

.cosmeOEM_reason01 .related-info ul li a:hover {
 opacity: 0.6;
}

.cosmeOEM_reason01 .related-info ul li a::after {
 content: '';
 width: 12px;
 height: 12px;
 display: inline-block;
 background: url('/wp-content/uploads/2024/07/related-info_open-link.svg') no-repeat;
 background-size: contain;
 margin-bottom: -1px;
}

#cosmeOEM_reason .cosmeOEM_reason01 h3:before {
 background-image: url(/wp-content/uploads/2024/07/reason01.svg);
}

#cosmeOEM_reason .cv_area {
 margin-top: -20px;
 margin-bottom: 40px;
}

#cosmeOEM_reason .cv_area p {
 margin-bottom: 0;
 font-size: 11px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason .cosmeOEM_reason02 {
  margin-bottom: 60px;
 }
}

#cosmeOEM_reason .cosmeOEM_reason02 h3:before {
 background-image: url(/wp-content/uploads/2024/07/reason02.svg);
}

#cosmeOEM_reason .cosmeOEM_reason02 h4 {
 font-size: 24px;
 margin-bottom: 0.5em;
 text-align: center;
}

#cosmeOEM_reason .cosmeOEM_reason02 .material ul {
 display: block;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason .cosmeOEM_reason02 .material ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
 }
}

#cosmeOEM_reason .cosmeOEM_reason02 .material_item {
 display: flex;
 width: 100%;
 align-items: center;
 padding: 20px;
 margin-bottom: 20px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason .cosmeOEM_reason02 .material_item {
  width: 48%;
  justify-content: space-between;
 }
}

#cosmeOEM_reason .cosmeOEM_reason02 .material ul:last-child {
 margin-bottom: 0;
}

#cosmeOEM_reason .cosmeOEM_reason02 .material_txt p {
 margin: 0;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason .cosmeOEM_reason02 .material_txt p {
  margin: 0;
 }
}

#cosmeOEM_reason .cosmeOEM_reason02 .material_txt .element {
 font-size: 20px;
 line-height: 1.2;
 margin-bottom: 5px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason .cosmeOEM_reason02 .material_txt .element {
  font-size: clamp(1.125rem, 0.647rem + 1.18vw, 1.25rem);
 }
}

#cosmeOEM_reason .cosmeOEM_reason02 .material_txt .name {
 font-size: 18px;
 line-height: 1;
 color: #717171;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason .cosmeOEM_reason02 .material_txt .name {
  font-size: clamp(1rem, 0.522rem + 1.18vw, 1.125rem);
 }
}

#cosmeOEM_reason .cosmeOEM_reason02 .material_txt .name_kana {
 font-size: 11px;
 line-height: 1;
 color: #717171;
}

#cosmeOEM_reason .cosmeOEM_reason02 .material_img {
 width: 40%;
 max-width: 117px;
 height: 94px;
}

#cosmeOEM_reason .cosmeOEM_reason02 .material_img img {
 width: 100%;
 height: 94px;
 object-fit: cover;
}

#cosmeOEM_reason .cosmeOEM_reason03 h3:before {
 background-image: url(/wp-content/uploads/2024/07/reason03.svg);
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason .cosmeOEM_reason03 p {
  width: 100%;
  max-width: 700px;
  padding-left: 10px;
 }
}

#cosmeOEM_reason .cosmeOEM_reason04 h3:before {
 margin-left: 0;
 background-image: url(/wp-content/uploads/2024/07/reason04.svg);
}

#cosmeOEM_reason .cosmeOEM_reason05 h3:before {
 margin-left: 0;
 background-image: url(/wp-content/uploads/2024/07/reason05.svg);
}

#cosmeOEM_reason .cosmeOEM_reason06 h3 {
 margin-left: 0
}

#cosmeOEM_reason .cosmeOEM_reason06 h3:before {
 margin-left: 0;
 background-image: url(/wp-content/uploads/2024/07/reason06.svg);
}

#cosmeOEM_reason .cosmeOEM_reason07 h3:before {
 margin-left: 0;
 background-image: url(/wp-content/uploads/2024/07/reason07.svg);
}

#cosmeOEM_reason .cosmeOEM_reason04 .title,
#cosmeOEM_reason .cosmeOEM_reason05 .title,
#cosmeOEM_reason .cosmeOEM_reason06 .title,
#cosmeOEM_reason .cosmeOEM_reason07 .title {
 margin-left: 0 !important;
}

@media screen and (min-width: 650px) {

 #cosmeOEM_reason .cosmeOEM_reason04 h3:before,
 #cosmeOEM_reason .cosmeOEM_reason05 h3:before,
 #cosmeOEM_reason .cosmeOEM_reason06 h3:before,
 #cosmeOEM_reason .cosmeOEM_reason07 h3:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
 }
}

#cosmeOEM_reason ul.w820>li {
 display: block;
 flex-wrap: wrap;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason ul.w820>li {
  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 240px 240px;
  row-gap: 80px;
  justify-content: space-between;
  align-items: start;
 }
}

/* 04-07 */
#cosmeOEM_reason ul.w820>li .reasonBlock {
 width: 100%;
}

#cosmeOEM_reason ul.w820>li .reasonBlock:nth-child(even) {
 margin-right: 0;
}

#cosmeOEM_reason ul.w820>li .reasonBlock p {
 width: 100%;
 text-align: right;
 margin: 10px auto 0
}

#cosmeOEM_reason ul.w820>li .reasonBlock p span {
 display: inline-block !important;
 max-width: none;
 text-align: left;
 line-height: 2;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_reason ul.w820>li .reasonBlock p span {
  max-width: 320px
 }
}

/* =============================================
 お客様との化粧品づくりを通して生まれた数々のエピソード
============================================= */
#cosmeOEM_stories {
 background-image: url(/wp-content/uploads/2024/07/stories_paper.webp);
 background-size: 100%;
 background-repeat: repeat;
 padding: 60px 0 130px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_stories {
  padding: 100px 0 130px;
 }
}

#cosmeOEM_stories .title {
 width: 100%;
 margin: 15px auto 20px;
 text-align: center;
 line-height: 2;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_stories .title {
  width: 92%;
  margin: 0 auto 15px;
  line-height: 1.4;
 }
}

.stories_title_line {
 position: relative;
 width: 100%;
 height: 50px;
}

@media screen and (min-width: 650px) {
 .stories_title_line {
  height: 70px;
 }
}

.stories_title_symbol {
 width: 50px;
 height: auto;
}

@media screen and (min-width: 650px) {
 .stories_title_symbol {
  width: 70px;
 }
}

.stories_title_top {
 left: 0;
}

.stories_title_top::after {
 content: '';
 position: absolute;
 width: calc(100% - 60px);
 height: 1px;
 background-color: var(--sub-color);
 top: 40%;
 right: 0;
}

@media screen and (min-width: 650px) {
 .stories_title_top::after {
  width: calc(100% - 80px);
 }
}

.stories_title_bottom {
 margin-left: auto;
}

.stories_title_bottom::before {
 content: '';
 position: absolute;
 width: calc(100% - 60px);
 height: 1px;
 background-color: var(--sub-color);
 bottom: 60%;
 left: 0;
}

@media screen and (min-width: 650px) {
 .stories_title_bottom::before {
  width: calc(100% - 80px);
 }
}

#cosmeOEM_stories .episode {
 padding: 40px 0;
 margin-top: 30px !important;
 box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.15);
}

#cosmeOEM_stories h3 {
 position: relative;
 padding-left: 10px;
 font-size: 18px;
 height: 120px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_stories h3 {
  padding-left: 120px;
  font-size: 22px;
  height: 70px;
 }
}

#cosmeOEM_stories h3 span {
 position: absolute;
 z-index: 1;
}

#cosmeOEM_stories h3:before {
 content: '';
 display: block;
 width: 70px;
 height: 60px;
 position: static;
 background-size: contain;
 vertical-align: middle;
 background-repeat: no-repeat;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_stories h3:before {
  display: inline-block;
  height: 70px;
  position: absolute;
  top: 15%;
  left: 35px
 }
}

#cosmeOEM_stories .episode h3:after {
 content: '';
 display: inline-block;
 position: absolute;
 width: 50%;
 background-size: contain;
 background-position: center;
 background-repeat: no-repeat;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_stories .episode h3:after {
  width: 30%;
 }
}

#cosmeOEM_stories #cosmeOEM_stories-e01 h3:before {
 background-image: url(/wp-content/uploads/2024/07/episode01.svg)
}

#cosmeOEM_stories-e01 h3:after {
 max-width: 230px;
 height: 152px;
 top: -40%;
 right: 2%;
 background-image: url(/wp-content/uploads/2024/07/episode01_img.webp);
}

@media screen and (min-width: 650px) {
 #cosmeOEM_stories .episode h3:after {
  top: -20%;
  right: 3%;
 }
}

#cosmeOEM_stories #cosmeOEM_stories-e02 h3:before {
 background-image: url(/wp-content/uploads/2024/07/episode02.svg)
}

#cosmeOEM_stories-e02 h3:after {
 max-width: 234px;
 height: 112px;
 top: -30%;
 right: 2%;
 background-image: url(/wp-content/uploads/2024/07/episode02_img.webp);
}

@media screen and (min-width: 650px) {
 #cosmeOEM_stories-e02 h3:after {
  top: -20%;
  right: 5%;
 }
}

#cosmeOEM_stories #cosmeOEM_stories-e03 h3:before {
 background-image: url(/wp-content/uploads/2024/07/episode03.svg)
}

#cosmeOEM_stories-e03 h3:after {
 max-width: 128px;
 height: 110px;
 top: -32%;
 right: 2%;
 background-image: url(/wp-content/uploads/2024/07/episode03_img.webp);
}

@media screen and (min-width: 650px) {
 #cosmeOEM_stories-e03 h3:after {
  max-width: 168px;
  top: -15%;
  right: 5%;
 }
}

#cosmeOEM_stories .note {
 background-color: #FFF;
 background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #FFF 50%, #FFF 100%), linear-gradient(0deg, #ccc 1px, transparent 1px);
 background-size: 8px 100%, 100% 2.75em;
 line-height: 2.75em;
 margin: 30px auto 0;
 width: 90%;
 color: var(--base-color);
 font-size: 14px;
 text-align: left
}

@media screen and (min-width: 650px) {
 #cosmeOEM_stories .note {
  margin: 45px auto 0;
  font-size: 16px;
  height: 90px;
 }
}

#cosmeOEM_stories .note:before {
 margin: 0
}

#cosmeOEM_stories .note p {
 line-height: 2.75em;
 padding-bottom: 30px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_stories .note p {
  padding-bottom: 40px;
 }
}


/* =============================================
 化粧品OEM実績
============================================= */
#cosmeOEM_archive {
 width: 100%;
 max-width: 1280px;
 margin: 0 auto;
 text-align: center;
 padding: 60px 0 90px;
 background-color: #f0f4ff
}

@media screen and (min-width: 650px) {
 #cosmeOEM_archive {
  padding: 90px 0 120px;
  background-size: contain;
  background: url(/wp-content/uploads/2024/07/archive_bg.webp);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat
 }
}

#cosmeOEM_archive .title {
 margin: 0 auto 30px;
 line-height: 3;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_archive .title {
  margin: 0 auto 15px;
 }
}

#cosmeOEM_archive p {
 margin-bottom: 45px
}

#cosmeOEM_archive .title span {
 display: block;
}

#cosmeOEM_archive h3 {
 margin-bottom: 30px;
 text-align: center;
}

#cosmeOEM_archive .archive_sec {
 background-color: rgba(255, 255, 255, 0.96);
 padding: 30px 20px;
 margin: 0 auto 45px;
 border: 1px solid #d0d0d0
}

@media screen and (min-width: 650px) {
 #cosmeOEM_archive .archive_sec {
  padding: 30px 40px;
  margin: 0 auto 60px;
  border: none
 }
}

#cosmeOEM_archive .archive-item {
 text-align: left;
 width: 100%;
}

#cosmeOEM_archive .archive-item ul {
 text-align: left;
 width: 100%;
 margin: 0 auto !important;
}

#cosmeOEM_archive ul.archive-item_genre {
 display: block
}

@media screen and (min-width: 650px) {
 #cosmeOEM_archive ul.archive-item_genre {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 5%;
 }
}

#cosmeOEM_archive li.archive-item_genre {
 width: 70%;
 margin-right: auto;
 margin-left: auto;
 margin-bottom: 40px
}

#cosmeOEM_archive li.archive-item_genre:last-child {
 margin-bottom: 0;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_archive li.archive-item_genre {
  width: 30%;
  letter-spacing: 0.04em;
  margin-bottom: 0;
 }
}

#cosmeOEM_archive ul.archive-item_genre img {
 margin-bottom: 5px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_archive ul.archive-item_genre img {
  margin-bottom: 10px;
 }
}

#cosmeOEM_archive .archive-form {
 padding-bottom: 40px;
}

#cosmeOEM_archive .archive-form ul {
 display: flex;
 gap: 40px 5%;
 align-items: start;
 flex-wrap: wrap;
 width: 100%;
 margin: 0 auto !important;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_archive .archive-form ul {
  justify-content: space-between;
  gap: 40px 0;
 }
}

.archive-form img {
 width: auto;
 height: 50px;
}

@media screen and (min-width: 650px) {
 .archive-form img {
  height: 64px;
 }
}

.archive-form_name {
 margin-top: 14px;
}

#cosmeOEM_archive .archive-form li {
 width: 30%;
 max-width: 140px;
 background-color: var(--sub-light-color);
 padding: 20px 0 10px;
 text-align: center;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_archive .archive-form li {
  width: 24%;
 }
}

.archive-form_name {
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0.08em;
 color: var(--white-color);
 text-align: center;
 margin-bottom: 0 !important;
}

#cosmeOEM_archive .archive_sec h4 {
 text-align: center;
 letter-spacing: 0.08em;
 margin-bottom: 5px;
 font-size: 20px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_archive .archive_sec h4 {
  font-size: clamp(1rem, 0.044rem + 2.35vw, 1.25rem);
 }
}

#cosmeOEM_archive ul.archive-item_list li {
 margin-bottom: 5px;
 letter-spacing: 0.1em;
 font-size: 14px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_archive ul.archive-item_list li {
  font-size: clamp(0.75rem, 0.272rem + 1.18vw, 0.875rem);
 }
}

#cosmeOEM_archive ul.archive-item_list li:last-child {
 margin-bottom: 0;
}

/* 他にも、幅広くご対応いたします */
#cosmeOEM_archive p.other {
 color: var(--white-color);
 font-size: 20px;
 line-height: 1.4em;
 letter-spacing: 0.08em;
 position: relative;
 background: var(--main-color);
 box-shadow: 0px 0px 0px 5px var(--main-color);
 border: dashed 1px var(--white-color);
 padding: 1em 0.5em 0.7em;
 width: 100%;
 max-width: calc(100% - 10px);
 margin: 0 auto
}

@media screen and (min-width: 650px) {
 #cosmeOEM_archive p.other {
  padding: 0.3em 0;
  font-size: clamp(1.25rem, 0.772rem + 1.18vw, 1.375rem);
  line-height: 2em;
  letter-spacing: 0.1em
 }
}

#cosmeOEM_archive p.other:after {
 position: absolute;
 content: '';
 left: -7px;
 top: -7px;
 border-width: 0 0 15px 15px;
 border-style: solid;
 border-color: #f0f4ff #f0f4ff #97d9ec;
 box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15)
}

@media screen and (min-width: 650px) {
 #cosmeOEM_archive p.other:after {
  border-color: #e8eaf2 #e8eaf2 #97d9ec
 }
}

/* =============================================
 OEMの流れ
============================================= */
#cosmeOEM_step {
 background-color: #EDEDED;
}

#cosmeOEM_step h2 {
 text-align: center;
 margin-bottom: 45px
}

#cosmeOEM_step .stepContent {
 display: block;
 margin: 15px auto;
 padding-right: 0
}

@media screen and (min-width: 650px) {
 #cosmeOEM_step .stepContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 30px;
  margin: 30px auto
 }
}

#cosmeOEM_step .stepContent h3 {
 display: flex;
 align-items: center;
 justify-content: normal;
 max-width: none;
 font-size: 21px;
 margin-right: 3%;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_step .stepContent h3 {
  justify-content: center;
  max-width: 350px;
  font-size: clamp(1.125rem, 0.169rem + 2.35vw, 1.375rem);
 }
}

#cosmeOEM_step .stepContent p {
 max-width: none;
 width: 90%;
 margin: 30px auto 0;
 padding-bottom: 30px
}

@media screen and (min-width: 650px) {
 #cosmeOEM_step .stepContent p {
  width: 54%;
  margin: auto;
  padding-bottom: 0
 }
}

@media screen and (min-width: 650px) {
 #cosmeOEM_step #stepContent07 .stepNumber {
  padding: 60px 0
 }
}

#cosmeOEM_step .stepNumber {
 padding: 10px;
 margin-right: 15px;
 width: 15%;
 text-align: center
}

@media screen and (min-width: 650px) {
 #cosmeOEM_step .stepNumber {
  padding: 25px 0;
  width: 80px
 }
}

#cosmeOEM_step .stepNumber img {
 width: 100%;
 height: 100%
}

@media screen and (min-width: 650px) {
 #cosmeOEM_step .stepNumber img {
  max-width: 46px;
  max-height: 64px
 }
}

#cosmeOEM_step .stepNumber span {
 display: block !important
}

#cosmeOEM_step .stepArrow {
 width: 41px;
 height: 24px;
 margin: 0 auto
}

/* =============================================
 よくある質問
============================================= */
#cosmeOEM_faq h2 {
 text-align: center;
 margin-bottom: 45px
}

#cosmeOEM_faq .w820>div {
 margin-bottom: 0
}

#cosmeOEM_faq .acd-content,
#cosmeOEM_faq .acd-check:checked+.acd-label-white+.acd-content {
 padding: 15px 0 25px;
}

#cosmeOEM_faq .acd-label-white {
 border-bottom: 1px solid var(--main-color);
 position: relative;
 display: flex;
 align-items: center;
}

#cosmeOEM_faq .acd-label-white span {
 display: block !important;
 padding-left: 10px;
 padding-bottom: 0;
 width: calc(100% - 50px);
 line-height: 1.5;
 margin-left: 0;
 max-width: 780px;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_faq .acd-label-white span {
  width: calc(100% - 40px);
  margin-left: auto;
  padding: 15px 80px 10px 0;
 }
}

#cosmeOEM_faq .acd-label-white:before {
 margin-top: 0;
 display: block;
 width: 24px;
 height: 39px;
 background-size: contain;
 vertical-align: middle;
 box-sizing: border-box;
 background-image: url(/wp-content/uploads/2024/07/faq_q.svg);
 background-repeat: no-repeat;
 position: static;
 top: 0
}

@media screen and (min-width: 650px) {
 #cosmeOEM_faq .acd-label-white:before {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
 }
}

#cosmeOEM_faq .acd-label-white:after {
 background-image: url(/wp-content/uploads/2024/07/green_plus.svg)
}

#cosmeOEM_faq .acd-check:checked+.acd-label-white:after {
 background-image: url(/wp-content/uploads/2024/07/green_minus.svg)
}

#cosmeOEM_faq .acd-content {
 position: relative;
 display: flex;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_faq .acd-content {
  display: block;
 }
}

#cosmeOEM_faq .acd-content p {
 display: block !important;
 width: calc(100% - 40px);
 font-size: 16px;
 max-width: 740px;
 margin-left: auto;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_faq .acd-content p {
  display: block !important;
  width: calc(100% - 80px);
  font-size: 16px;
  max-width: 740px;
  margin: 0 auto
 }
}

#cosmeOEM_faq .acd-content p a {
 display: inline;
 color: var(--main-color);
 text-decoration: underline;
}

#cosmeOEM_faq .acd-content:before {
 content: "";
 margin-top: 0;
 display: block;
 width: 24px;
 height: 39px;
 background-size: contain;
 vertical-align: middle;
 box-sizing: border-box;
 background-image: url(/wp-content/uploads/2024/07/faq_a.svg);
 background-repeat: no-repeat;
 position: static;
 top: auto
}

@media screen and (min-width: 650px) {
 #cosmeOEM_faq .acd-content:before {
  display: inline-block;
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
 }
}

/* =============================================
 お問い合わせ
============================================= */
#cosmeOEM_contact h2 {
 text-align: center;
 margin-bottom: 40px;
}

#cosmeOEM_contact h3 span {
 display: block !important;
 padding: 15px 0 5px 40px;
 max-width: 740px;
}

#cosmeOEM_contact h3:before {
 content: "";
 margin-top: 0;
 display: inline-block;
 background-size: contain;
 vertical-align: middle;
 box-sizing: border-box;
 background-repeat: no-repeat;
 position: absolute
}

#cosmeOEM_contact h4:before {
 margin: 0
}

#cosmeOEM_contact small {
 display: inline-block !important
}

#cosmeOEM_contact .cosmeOEM_ways {
 margin: 30px auto 30px
}

@media screen and (min-width: 650px) {
 #cosmeOEM_contact .cosmeOEM_ways {
  margin: 30px auto 45px
 }
}

#cosmeOEM_contact .cosmeOEM_ways h3 {
 border-bottom: 1px solid var(--main-color);
 position: relative
}

#cosmeOEM_contact #cosmeOEM_tel h3:before {
 background-image: url(/wp-content/uploads/2024/07/contact_tel.svg);
 width: 28px;
 height: 40px;
 top: 15%
}

@media screen and (min-width: 650px) {
 #cosmeOEM_contact #cosmeOEM_tel h3:before {
  height: 40px
 }
}

#cosmeOEM_contact #cosmeOEM_tel p {
 margin: 15px auto
}

#cosmeOEM_contact #cosmeOEM_mail h3:before {
 background-image: url(/wp-content/uploads/2024/07/contact_mail.svg);
 width: 29px;
 height: 27px;
 top: 40%
}

@media screen and (min-width: 650px) {
 #cosmeOEM_contact #cosmeOEM_mail h3:before {
  width: 30px
 }
}

#cosmeOEM_contact #cosmeOEM_mail p {
 margin: 30px auto 30px
}

@media screen and (min-width: 650px) {
 #cosmeOEM_contact #cosmeOEM_mail p {
  margin: 30px auto 60px
 }
}

#cosmeOEM_contact #cosmeOEM_mail p>span {
 display: block !important;
 margin-top: 15px
}

#cosmeOEM_contact #cosmeOEM_mail p>span>span {
 padding: 3px 6px;
 background-color: #ac1a00;
 color: var(--white-color);
 margin: 0 5px
}

#cosmeOEM_contact form .sec_form {
 border-bottom: 1px dotted #CECECE;
 display: block;
 padding-bottom: 15px;
 margin: 0 auto 15px !important;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_contact form .sec_form {
  padding-bottom: 30px;
  margin: 0 auto 30px !important;
  display: flex;
  justify-content: space-between;
  align-items: center
 }
}

#cosmeOEM_contact form .sec_form h3,
#cosmeOEM_contact form .sec_form h4 {
 margin: 20px 0;
}

@media screen and (min-width: 650px) {

 #cosmeOEM_contact form .sec_form h3,
 #cosmeOEM_contact form .sec_form h4 {
  width: 40%;
  max-width: 200px;
  margin: 0;
 }
}

#cosmeOEM_contact form .sec_form div:last-child,
#cosmeOEM_contact form .sec_form textarea:last-child {
 width: 100%;
 max-width: 530px
}

#cosmeOEM_contact form .sec_form .sec_form-shortInput label input {
 margin-bottom: 15px
}

#cosmeOEM_contact form #marketPlace .checkbox .wpcf7-form-control-wrap .wpcf7-checkbox {
 display: block !important;
}

@media screen and (min-width: 650px) {
 #cosmeOEM_contact form #marketPlace .checkbox .wpcf7-form-control-wrap .wpcf7-checkbox {
  display: flex !important;
  flex-wrap: wrap;
 }
}

#cosmeOEM_contact form .radio {
 display: flex;
 align-items: center;
 flex-wrap: wrap;
 line-height: 3em
}

#cosmeOEM_contact form .radio label {
 display: flex;
 align-items: center;
 cursor: pointer;
 width: 50%
}

#cosmeOEM_contact form .checkboxInput {
 padding: 12px 8px;
 display: flex;
 align-items: center;
 cursor: pointer
}

#cosmeOEM_contact form textarea {
 width: 100%;
 display: block;
 height: 150px;
 resize: vertical;
 border: 1px solid #4a4a4a;
 border-radius: 2px;
 font-family: inherit;
 font-display: swap;
 padding: 10px
}

#cosmeOEM_contact form textarea:focus,
#cosmeOEM_contact form textarea:active {
 box-shadow: 0 0 1px #de8175;
 border: 1px solid #de8175 !important;
 background: #fffeed;
 outline-offset: -999px
}

#cosmeOEM_contact form input {
 width: 100%
}

@media screen and (min-width: 650px) {
 #cosmeOEM_contact form input {
  width: 300px
 }
}

#cosmeOEM_contact form ::placeholder {
 color: #c0c0c0
}

#cosmeOEM_contact form input[type="text"],
#cosmeOEM_contact form input[type="email"],
#cosmeOEM_contact form input[type="tel"],
#cosmeOEM_contact form input[type="url"] {
 display: inline-block;
 border: 1px solid #4a4a4a;
 border-radius: 2px;
 padding: 5px;
 line-height: 1.5em
}

@media screen and (min-width: 650px) {

 #cosmeOEM_contact form input[type="text"],
 #cosmeOEM_contact form input[type="email"],
 #cosmeOEM_contact form input[type="tel"],
 #cosmeOEM_contact form input[type="url"] {
  line-height: 1.8em
 }
}

#cosmeOEM_contact form input[type="text"]:focus,
#cosmeOEM_contact form input[type="email"]:focus,
#cosmeOEM_contact form input[type="tel"]:focus,
#cosmeOEM_contact form input[type="url"]:focus {
 box-shadow: 0 0 1px #de8175;
 border: 1px solid #de8175 !important;
 background: #fffeed;
 outline-offset: -999px
}

#cosmeOEM_contact form input#country,
#cosmeOEM_contact form input#mobile,
#cosmeOEM_contact form input#fax,
#cosmeOEM_contact form input#URL {
 border: 1px solid #bbbbbb
}

#cosmeOEM_contact form .required:after {
 content: "必須";
 display: inline !important;
 background-color: #ac1a00;
 color: #fff;
 font-family: "Hiragino UD Sans F W3 JIS2004", Helvetica, sans-serif;
 font-size: 14px;
 padding: 3px 6px;
 margin-left: 5px
}

#cosmeOEM_contact form .no-required:after {
 content: "";
 height: 12px
}

#cosmeOEM_contact form #namearea .sec_form-shortInput,
#cosmeOEM_contact form #furigana .sec_form-shortInput {
 display: block
}

@media screen and (min-width: 650px) {

 #cosmeOEM_contact form #namearea .sec_form-shortInput,
 #cosmeOEM_contact form #furigana .sec_form-shortInput {
  display: flex
 }
}

#cosmeOEM_contact form #namearea .sec_form-shortInput label,
#cosmeOEM_contact form #furigana .sec_form-shortInput label {
 width: 100%;
 margin-bottom: 10px;
}

@media screen and (min-width: 650px) {

 #cosmeOEM_contact form #namearea .sec_form-shortInput label,
 #cosmeOEM_contact form #furigana .sec_form-shortInput label {
  width: 50%;
  margin-bottom: 0;
 }
}

#cosmeOEM_contact form #namearea .sec_form-shortInput label input,
#cosmeOEM_contact form #furigana .sec_form-shortInput label input {
 width: 100%
}

#cosmeOEM_contact form #namearea .sec_form-shortInput label:last-child,
#cosmeOEM_contact form #furigana .sec_form-shortInput label:last-child {
 margin-left: 0
}

@media screen and (min-width: 650px) {

 #cosmeOEM_contact form #namearea .sec_form-shortInput label:last-child,
 #cosmeOEM_contact form #furigana .sec_form-shortInput label:last-child {
  margin-left: 15px
 }
}

#cosmeOEM_contact form #caution {
 color: #696969;
 border: 0.5px solid #a2a2a2;
 padding: 5px 10px 10px
}

#cosmeOEM_contact form div#form_submit {
 width: 100%;
 height: 80px;
 margin: 60px auto 0
}

@media screen and (min-width: 650px) {
 #cosmeOEM_contact form div#form_submit {
  width: 380px
 }
}

#cosmeOEM_contact form div#form_submit input[type="submit"],
#cosmeOEM_contact form div#form_submit input[type="button"] {
 border-radius: 0;
 -webkit-appearance: none;
 -webkit-box-sizing: content-box;
 box-sizing: border-box;
 font-family: inherit;
 font-display: swap;
 font-size: 100%;
 border: none;
 width: 100%;
 height: 100%
}

#cosmeOEM_contact form div#form_submit input[type="submit"] {
 padding: 0;
 vertical-align: middle;
 line-height: 1;
 background: #4BA521;
 color: #ffffff;
 box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.49);
 -webkit-transition: box-shadow 0.3s, -webkit-transform 0.3s;
 transition: box-shadow 0.3s, -webkit-transform 0.3s;
 transition: box-shadow 0.3s, transform 0.3s;
 transition: box-shadow 0.3s, transform 0.3s, -webkit-transform 0.3s
}


/* =============================================
 footer
============================================= */
footer {
 padding: 90px 0 15px
}

footer .w820 {
 padding: 0;
}

@media screen and (min-width: 650px) {
 footer .w820 {
  display: block;
  width: 95%;
  max-width: 820px;
 }
}

footer #footer_logo {
 width: 218px;
 height: 43px
}

footer ul li.weight500 {
 margin: 30px 0 5px
}

footer ul li a {
 display: inline
}

footer ul li:last-child a {
 color: #fff !important
}

footer #copyright {
 margin-top: 90px;
 text-align: center
}

#page-top {
 position: fixed;
 bottom: 90px;
 right: 10px;
 font-size: 77%;
 z-index: 5;
}

@media screen and (min-width: 650px) {
 #page-top {
  right: 20px;
 }
}

/* =============================================
 ページトップ
============================================= */
#page-top a {
 background: var(--main-color);
 text-decoration: none;
 color: var(--white-color);
 width: 80px;
 padding: 20px 0;
 text-align: center;
 display: block;
 border-radius: 5px
}

#page-top a:hover {
 text-decoration: none;
 color: var(--main-color);
 background: rgba(73, 154, 114, 0.2)
}

/* =============================================
 CF7カスタマイズ
============================================= */
#txtarea .wpcf7-form-control-wrap,
#experienceToSell .radio .wpcf7-form-control-wrap,
#marketPlace .radio .wpcf7-form-control-wrap {
 position: relative;
 width: 100%;
 max-width: 530px;
}

#experienceToSell .radio .wpcf7-form-control-wrap .wpcf7-radio {
 display: flex !important;
 width: 100%;
}

#experienceToSell .radio .cb2radio .wpcf7-list-item {
 display: inline-block !important;
 margin: 0;
 width: 50%;
}

/* デフォルトのチェックボックススタイルを消す */
#experienceToSell .radio .cb2radio input {
 display: none;
}

/* ラベル文字の左側の余白：チェックボックの枠が入るスペース＋ラベル文字との余白 */
#experienceToSell .radio .cb2radio input+span {
 padding-left: 35px;
 display: inline-block;
 position: relative;
}

/* チェックボックスの枠とチェックマークの共通書式 */
#experienceToSell .radio .cb2radio input+span::after,
#experienceToSell .radio .cb2radio input+span::before {
 content: "";
 display: block;
 position: absolute;
 top: 0;
}

/* チェックボックスの枠 */
#experienceToSell .radio .cb2radio input+span::before {
 border: 1px solid #aaaaaa;
 background-color: #ffffff;
 height: 25px;
 width: 25px;
 border-radius: 50%;
 left: 0;
 top: 50%;
 transform: translateY(-50%);
}

/* チェックマークにチェックが付いていない時 */
#experienceToSell .radio .cb2radio input+span::after {
 border: none;
 background-color: #3273f6;
 border-radius: 50%;
 height: 17px;
 width: 17px;
 left: 4px;
 top: 50%;
 transform: translateY(-50%);
 display: none !important;
}

/* チェックマークにチェックが付いた時 */
#experienceToSell .radio .cb2radio input:checked+span::after {
 display: block !important;
}

#marketPlace .checkbox .wpcf7-form-control-wrap .wpcf7-checkbox span.wpcf7-list-item {
 display: inline-block !important;
 margin-bottom: 10px;
 width: 100%;
}

@media screen and (min-width: 650px) {
 #marketPlace .checkbox .wpcf7-form-control-wrap .wpcf7-checkbox span.wpcf7-list-item {
  display: inline-block !important;
  margin: 0;
  width: 50%;
 }
}

#cosmeOEM_contact form .checkboxInput {
 padding: 12px 8px;
 display: flex !important;
 flex-wrap: wrap;
 align-items: center;
 cursor: pointer
}

#cosmeOEM_contact form .radio label {
 width: 100%
}


span.wpcf7-list-item label input[type="radio"],
span.wpcf7-list-item label input[type="checkbox"] {
 width: 25px !important;
 height: 25px;
 margin: 0;
}

span.wpcf7-list-item-label {
 line-height: 1.4
}

@media screen and (min-width: 650px) {
 span.wpcf7-list-item-label {
  line-height: 3em
 }
}

#cosmeOEM_contact form .kakunin .wpcf7-form-control-wrap .wpcf7-list-item label {
 margin-left: -30px;
}

@media screen and (min-width: 650px) {
 .kakunin span.wpcf7-list-item-label {
  line-height: 1.4em
 }
}

span.wpcf7-list-item-label::before,
span.wpcf7-list-item-label::after {
 content: " ";
 margin-right: 10px;
}

#caution a {
 display: inline
}

.kakunin {
 text-align: center;
 margin: 40px 0;
}

.kakunin span.wpcf7-list-item label input[type="checkbox"] {
 display: inline;
}

form .kakunin .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label .required:after {
 color: #fff;
 background-color: #ac1a00;
 font-family: inherit;
 font-display: swap;
 font-weight: 700;
 font-size: 12px;
 padding: 0 5px;
 margin-left: 5px;
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
}

form .kakunin .wpcf7-form-control-wrap .wpcf7-list-item {
 position: relative;
 display: inline-block !important;
 width: 100%;
 margin: 0;
}


/* submitボタン下のエラーメッセージ非表示 */
.wpcf7-form.invalid .wpcf7-response-output {
 display: none;
}

/* submitボタン下の送信完了メッセージ非表示 */
.wpcf7-form.sent .wpcf7-response-output {
 display: none;
}


/* =============================================
 thanksページ
============================================= */
#thanks_wrap {
 width: 100%;
 margin: 0 auto;
 padding: 15px 0
}

#thanks_wrap .logo {
 width: 100%;
 margin: 0 auto;
 padding-left: 15px
}

@media screen and (min-width: 880px) {
 #thanks_wrap .logo {
  width: 780px;
  padding-left: 0
 }
}

#thanks_wrap .logo:hover {
 opacity: .7
}

#thanks_wrap .logo img {
 width: 200px
}

#thanks_wrap h3 {
 background-color: var(--main-color);
 padding: 30px 0;
 margin: 30px auto
}

#thanks_wrap p {
 width: 95%;
 margin: 0 auto 30px;
 text-align: left
}

@media screen and (min-width: 880px) {
 #thanks_wrap p {
  width: 780px;
  text-align: center
 }
}

#thanks_wrap footer {
 margin-top: 90px
}

@media screen and (min-width: 650px) {
 #thanks_wrap .thanks_p {
  text-align: left
 }
}

#thanks_wrap div#contact_button {
 width: 95%;
 margin: 0 auto 30px;
 text-align: center;
 color: var(--main-color);
 border: 1px solid var(--main-color);
 padding: 20px 0 30px;
 background-color: #fff
}

@media screen and (min-width: 650px) {
 #thanks_wrap div#contact_button {
  width: 500px
 }
}

#thanks_wrap #contact_title {
 margin-bottom: 15px
}

#thanks_wrap #contact_tel a {
 display: inline;
 color: var(--main-color);
}

#thanks_wrap #contact_tel a:link,
#thanks_wrap #contact_tel a:visited,
#thanks_wrap #contact_tel a a:focus,
#thanks_wrap #contact_tel a a:active {
 color: var(--main-color);
}

#thanks_wrap div#back_button {
 width: 95%;
 margin: 0 auto 30px;
 text-align: left
}

@media screen and (min-width: 650px) {
 #thanks_wrap div#back_button {
  width: 780px;
  text-align: center
 }
}

#thanks_wrap div#link_lp {
 margin: 90px auto 30px;
 width: 280px;
 height: 70px;
 background-color: var(--main-color);
 line-height: 3.3em
}

#thanks_wrap div#link_lp a {
 color: var(--white-color);
 text-align: center;
}