@charset "UTF-8";
/*
File Name : common.css
Url : https://www.oreyaku.com/common/css/common.css
Author : Coding Design
Description : サイト共通のcss設定
Version/Corrector :
  1.0 2016/4/20 FUMINORI MORI
*/
/* ============================== */
/* common */
/* ============================== */
@import url("//fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,700,700italic");
@import url("//fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700");
.link-back {
  margin-top: 5px;
  text-align: right;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: bold;
}

.link-back .bullet-back {
  padding-left: 20px;
  background: url(/common/img/icon_arrow_back.png) no-repeat 0 50%;
  background-size: 9px 15px;
}

@media screen and (min-width: 640px) {
  .link-back {
    margin-top: 10px;
    font-size: 1rem;
  }
  .link-back .bullet-back {
    background-size: 10px auto;
  }
}

/*doc
---
title: normal button
name: normal button
category: button
---

通常のボタンです。

*/
.btn > span,
.btn > a,
button, input[type="button"], input[type="reset"], input[type="submit"] {
  appearance: none;
  background: #ffd83c;
  background: linear-gradient(0deg, #ffcd05 0%, #ffe680 100%);
  border: 0;
  border-radius: 18px;
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-family: "Helvetica Neue", Helvetica, Arial, Avenir, "Open Sans", Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
  line-height: 1;
  padding: 10px 8px;
  text-decoration: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.4), 1px 1px 0 rgba(255, 205, 4, 0.75);
}

.btn > span em,
.btn > a em,
button em, input[type="button"] em, input[type="reset"] em, input[type="submit"] em {
  color: #e72a31;
}

.btn > span:visited, .btn > span:hover, .btn > span:focus,
.btn > a:visited,
.btn > a:hover,
.btn > a:focus,
button:visited,
button:hover,
button:focus, input[type="button"]:visited, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:visited, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:visited, input[type="submit"]:hover, input[type="submit"]:focus {
  color: #000;
  text-decoration: none;
}

.btn > span:disabled,
.btn > a:disabled,
button:disabled, input[type="button"]:disabled, input[type="reset"]:disabled, input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

@media screen and (min-width: 640px) {
  .btn > span,
  .btn > a,
  button, input[type="button"], input[type="reset"], input[type="submit"] {
    padding: 10px 20px;
  }
  .btn > span:hover, .btn > span:focus,
  .btn > a:hover,
  .btn > a:focus,
  button:hover,
  button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus {
    background: #ffeb80;
    background: linear-gradient(0deg, #ffe513 0%, #fff2b5 100%);
  }
}

.btn-dent a {
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.75), -1px -1px 0 rgba(255, 205, 4, 0.75);
  box-shadow: inset 1px 1px 1px rgba(102, 102, 102, 0.4), inset -1px -1px 1px rgba(255, 255, 255, 0.5);
  background: #ffd83b;
  background: linear-gradient(0deg, #ffcd02 0%, #ffe680 100%);
}

@media screen and (min-width: 640px) {
  .btn-dent a:hover {
    background: #ffeb7b;
    background: linear-gradient(0deg, #ffe508 0%, #fff2b5 100%);
  }
}

.btn-dent.btn-dentL a {
  box-shadow: -2px -2px 2px #275299, 2px 2px 2px rgba(255, 255, 255, 0.5), inset 2px 2px 2px rgba(57, 107, 175, 0.4), inset -2px -2px 5px rgba(255, 255, 255, 0.5);
}

.btn-dent.btn-dentL.btn-black a {
  box-shadow: -2px -2px 2px #666, 2px 2px 2px rgba(255, 255, 255, 0.5), inset 2px 2px 2px rgba(102, 102, 102, 0.4), inset -2px -2px 5px rgba(255, 255, 255, 0.5);
}

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

.btn-l a {
  display: block;
  border-radius: 58px;
  font-size: 30px;
  line-height: 1.466;
}

@media screen and (min-width: 640px) {
  .btn-l a {
    font-size: 40px;
    line-height: 1.35;
    display: inline-block;
    padding: 13px 60px;
  }
}

.btn-black a {
  color: #fc0 !important;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5), -1px -1px 0 rgba(0, 0, 0, 0.75);
  box-shadow: inset 1px 1px 1px rgba(102, 102, 102, 0.4), inset -1px -1px 1px rgba(255, 255, 255, 0.5);
  background: #232323;
  background: linear-gradient(0deg, #000000 0%, #5f5f5f 100%);
}

@media screen and (min-width: 640px) {
  .btn-black a {
    padding-left: 60px;
    padding-right: 60px;
    color: #fc0;
  }
  .btn-black a:hover {
    background: #eb6e70;
    background: linear-gradient(0deg, #1c1c1c 0%, #333333 100%);
  }
}

.btn-has-icon a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
  width: 15px;
  height: 15px;
  background: url(/common/img/icon_arrow_red_circle.png) no-repeat 0 0;
  background-size: 15px 15px;
}

.btn-has-icon a .btn-inner {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.btn-has-icon.btn-l a:before {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
}

@media screen and (min-width: 640px) {
  .btn-has-icon a {
    border-radius: 20px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 11px;
  }
  .btn-has-icon a:before {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
  }
  .btn-has-icon a .btn-inner {
    vertical-align: -2px;
  }
  .btn-has-icon.btn-l a {
    border-radius: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .btn-has-icon.btn-l a:before {
    vertical-align: -4px;
  }
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: 6px;
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: "Helvetica Neue", Helvetica, Arial, Avenir, "Open Sans", Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

input,
select {
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, Avenir, "Open Sans", Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 0.875rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
  background-color: #fff;
  margin: 0;
  outline: 0;
}

input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea,
select[multiple] {
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #B2B2B2;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Helvetica, Arial, Avenir, "Open Sans", Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: .75rem;
  line-height: 1.666;
  margin-bottom: 12px;
  padding: 10px 10px 10px 0;
  transition: border-color 300ms ease;
  width: 100%;
}

input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover,
select[multiple]:hover {
  border-color: #bcbcbc;
}

input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus,
select[multiple]:focus {
  outline: none;
}

input[type="color"]:disabled, input[type="date"]:disabled, input[type="datetime"]:disabled, input[type="datetime-local"]:disabled, input[type="email"]:disabled, input[type="month"]:disabled, input[type="number"]:disabled, input[type="password"]:disabled, input[type="search"]:disabled, input[type="tel"]:disabled, input[type="text"]:disabled, input[type="time"]:disabled, input[type="url"]:disabled, input[type="week"]:disabled, input:not([type]):disabled, textarea:disabled,
select[multiple]:disabled {
  background-color: #f2f2f2;
  cursor: not-allowed;
}

input[type="color"]:disabled:hover, input[type="date"]:disabled:hover, input[type="datetime"]:disabled:hover, input[type="datetime-local"]:disabled:hover, input[type="email"]:disabled:hover, input[type="month"]:disabled:hover, input[type="number"]:disabled:hover, input[type="password"]:disabled:hover, input[type="search"]:disabled:hover, input[type="tel"]:disabled:hover, input[type="text"]:disabled:hover, input[type="time"]:disabled:hover, input[type="url"]:disabled:hover, input[type="week"]:disabled:hover, input:not([type]):disabled:hover, textarea:disabled:hover,
select[multiple]:disabled:hover {
  border: 1px solid #ebebeb;
}

textarea {
  resize: vertical;
  margin-bottom: 0;
}

[type="search"] {
  appearance: none;
}

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: 6px;
}

[type="file"] {
  margin-bottom: 12px;
  width: 100%;
}

select {
  margin-bottom: 30px;
  max-width: 100%;
  width: auto;
  display: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  font-weight: normal;
}

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

dl {
  margin-bottom: 12px;
}

dl dt {
  font-weight: 600;
  margin-top: 12px;
}

dl dd {
  margin: 0;
}

table {
  border-collapse: collapse;
  margin: 12px 0;
  table-layout: fixed;
  width: 100%;
}

th {
  border-bottom: 1px solid #b0b0b0;
  font-weight: 600;
  padding: 12px 0;
  text-align: left;
}

td {
  border-bottom: 1px solid #ebebeb;
  padding: 12px 0;
}

tr,
td,
th {
  vertical-align: middle;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

body {
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, Avenir, "Open Sans", Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 0.875rem;
  line-height: 1.857;
  margin: 0;
  letter-spacing: 0.06em;
  word-wrap: break-word;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 0.875rem;
  line-height: 1;
  margin: 12px 0 0;
  font-weight: normal;
}

p {
  margin: 12px 0 0;
}

em {
  font-style: normal;
}

a {
  color: #0066ff;
  text-decoration: underline;
  outline: none;
}

a:visited {
  color: #69f;
}

a:active, a:hover {
  color: #e72a31;
}

a img {
  border: none;
}

img,
picture {
  margin: 0;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.disclaimer {
  font-size: 11px;
  line-height: 2;
  color: #e33538;
  margin: 15px 0 0;
}

@media screen and (min-width: 640px) {
  .disclaimer {
    text-align: center;
    font-size: 14px;
    line-height: 1.857;
  }
}

/*doc
---
title: wrapper
name: wrapper
category: basics
---

ページ全体です。

*/
/*doc
---
title: contents
name: contents
category: basics
---

コンテンツ領域です。

*/
/*.contents {
  padding-top: 45px;
}

@media screen and (min-width: 640px) {
  .contents {
    padding-top: 60px;
  }
}*/


/*doc
---
title: sec3Fundamentals
name: sec3Fundamentals
category: basics
---

「オレたちの3ヵ条！」です。

*/
.sec3Fundamentals {
  color: #fff;
  background: url(../img/bg-sec3Fundamentals-01.png) no-repeat 50% 0;
  background-size: contain;
  padding-top: 1.563%;
  margin-top: -9px;
}

.sec3Fundamentals .sec3Fundamentals-inner {
  background: url(../img/bg-sec3Fundamentals-02.png) no-repeat 50% 0 #396baf;
  background-size: contain;
  padding-bottom: 10px;
}

.sec3Fundamentals h2 {
  margin: 0 auto;
  padding-top: 15px;
  width: 270px;
}

.sec3Fundamentals figure {
  margin: 12px 35px 0;
}

.sec3Fundamentals figure img {
  max-width: none;
  width: 100%;
}

.sec3Fundamentals figcaption {
  margin-top: 10px;
  text-align: justify;
  line-height: 1.571428571;
  letter-spacing: 0;
}

.sec3Fundamentals.sec3Fundamentals-lightblue {
  background-image: none;
  padding-top: 0;
  margin-top: 0;
}

.sec3Fundamentals.sec3Fundamentals-lightblue .sec3Fundamentals-inner {
  background-image: url(../img/bg-sec3Fundamentals-lightblue-02.png);
  background-color: #99cce5;
}

.sec3Fundamentals.sec3Fundamentals-lightblue .sec3Fundamentals-inner figcaption {
  color: #333;
}

@media screen and (min-width: 640px) {
  .sec3Fundamentals {
    background: url(../img/bg-sec3Fundamentals-01-pc.png) no-repeat 50% 0;
    background-size: auto;
    padding-top: 253px;
    margin-top: -254px;
  }
  .sec3Fundamentals .sec3Fundamentals-inner {
    background: url(../img/bg-sec3Fundamentals-02-pc.png) no-repeat 50% 0 #396baf;
    background-size: auto;
    padding-bottom: 45px;
  }
  .sec3Fundamentals h2 {
    padding-top: 30px;
    width: 56.25%;
  }
  .sec3Fundamentals .sec3Fundamentals-items {
    margin-left: 7.291%;
    margin-right: 7.291%;
  }
  .sec3Fundamentals figure {
    margin: 25px 0 0;
    float: left;
    width: 30.487%;
    margin-left: 4.268%;
  }
  .sec3Fundamentals figure:first-child {
    margin-left: 0;
  }
  .sec3Fundamentals figcaption {
    margin-top: 15px;
    text-align: justify;
    font-size: 16px;
    line-height: 1.75;
  }
  .sec3Fundamentals.sec3Fundamentals-lightblue .sec3Fundamentals-inner {
    background-image: url(../img/bg-sec3Fundamentals-lightblue-02-pc.png);
    background-size: auto;
    background-repeat: repeat-x;
  }
}

/*doc
---
title: secRegister
name: secRegister
category: basics
---

「求人情報が気になったオレ薬たち！まずは登録！」のセクションです。

*/
.secRegister {
  background: linear-gradient(-135deg, #99cce5 10px, transparent 0) 0 10px, linear-gradient(135deg, #99cce5 10px, #396baf 0) 0 10px;
  background-color: #396baf;
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 20px 20px;
  padding: 20px 15px 15px;
}

.secRegister h2 {
  font-size: 20px;
  line-height: 1.7;
  color: #fff;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.secRegister .btn {
  margin-top: 8px;
}

@media screen and (min-width: 640px) {
  .secRegister {
    padding: 35px 15px 30px;
  }
  .secRegister h2 {
    font-size: 30px;
    line-height: 1.46;
  }
  .secRegister .btn {
    margin-top: 8px;
  }
}

.secRegister-nowave .secRegister {
  background-image: none;
}

/*doc
---
title: secOurContents
name: secOurContents
category: basics
---

「オレたちのコンテンツ」です。

*/
.secOurContents {
  padding: 28px 15px 50px;
  background: repeating-linear-gradient(to right, #e5eff5, #e5eff5 2px, #fff 2px, #fff 4px);
}

.secOurContents h2 {
  width: 77.656%;
  margin: 0 auto;
}

.secOurContents .secOurContents-latest {
  background: url(../img/bg-secOurContents-latest.png) no-repeat 0 0;
  background-size: cover;
  padding: 30px 10px;
}

.secOurContents .secOurContents-archives li {
  float: left;
  width: 48.275%;
  padding-top: 3.448%;
  margin-left: 3.448%;
}

.secOurContents .secOurContents-archives li:nth-child(2n+1) {
  margin-left: 0;
}

@media screen and (min-width: 640px) {
  .secOurContents {
    padding: 28px 15px 50px;
    background: url(../img/bg-secOurContents-pc.png);
  }
  .secOurContents h2 {
    width: 90.3125%;
    margin: 0 auto;
    background: url(../img/h2-secOurContents-pc.png) no-repeat 0 0;
    background-size: cover;
    padding-top: 14.479%;
  }
  .secOurContents h2 img {
    display: none;
  }
  .secOurContents .secOurContents-latest {
    width: 83.333%;
    margin: 0 auto;
    box-sizing: border-box;
    background-image: url(../img/bg-secOurContents-latest-pc.png);
    background-size: cover;
    padding: 30px 90px;
  }
  .secOurContents .secOurContents-latest a {
    display: block;
    position: relative;
  }
  .secOurContents .secOurContents-latest a:after {
    top: 0;
    position: absolute;
    display: block;
    opacity: 0;
    content: '';
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 100%;
  }
  .secOurContents .secOurContents-latest a:hover:after {
    opacity: 1;
  }
  .secOurContents .secOurContents-latest img {
    width: 100%;
  }
  .secOurContents .secOurContents-archives {
    width: 83.333%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .secOurContents .secOurContents-archives li {
    float: left;
    width: 31.25%;
    padding-top: 3.125%;
    margin-left: 3.125%;
  }
  .secOurContents .secOurContents-archives li:nth-child(2n+1) {
    margin-left: 3.125%;
  }
  .secOurContents .secOurContents-archives li:nth-child(3n+1) {
    margin-left: 0;
  }
  .secOurContents .secOurContents-archives li a {
    display: block;
    position: relative;
  }
  .secOurContents .secOurContents-archives li a:after {
    top: 0;
    position: absolute;
    display: block;
    opacity: 0;
    content: '';
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 100%;
  }
  .secOurContents .secOurContents-archives li a:hover:after {
    opacity: 1;
  }
}

/*doc
---
title: navDirectory
name: navDirectory
category: basics
---

パンくずナビです。

*/
.navDirectory {
  display: none;
}

@media screen and (min-width: 640px) {
  .navDirectory {
    background-color: #fff;
    padding: 6px 15px;
    display: block;
    font-size: 0;
    line-height: 1.8;
  }
  .navDirectory li {
    font-size: 10px;
    display: inline;
  }
  .navDirectory li:before {
    content: ">";
    margin: 0 10px;
  }
  .navDirectory li:first-child:before {
    content: none;
  }
}

@media screen and (min-width: 960px) {
  .navDirectory {
    padding-left: 0;
    padding-right: 0;
  }
  .navDirectory ul {
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}
