@charset "utf-8";
/*
Theme Name: 
Description: 
Author: Mediacloud
*/

/*###### リセットCSS ######*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1.5;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
*, *::before, *::after {
  box-sizing: border-box;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  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;
}


/*###### 固定CSS ######*/
html, body{
	height: 100%;
	background-color: #fff;
	color: #42210B;
	font-size: 17px;
	font-family: 'Noto Sans JP', sans-serif,"游ゴシック体", "Yu Gothic";
    line-height: 1.7;
    margin:0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}
img {
    height: auto;
    vertical-align: bottom;
    max-width: 100%;
}
a {
    color: #42210B;
    text-decoration: none;
}
a:hover {
    cursor: pointer;
    transition: .3s;
}
button {
    font-family:  'Noto Sans JP', sans-serif;
}
button:hover {
    cursor: pointer;
}
section {
     width: 100%;
     position: relative;
}
ul {
    list-style: none;
}
.inner {
    position: relative;
    margin: 0 auto;
    padding: 90px 0;
    max-width: 1200px;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.for-sp {
    display: none;
}
address {
    font-style: unset;
}


/*######アニメーション ######*/
.fadeinA {
    opacity : 0;
    transform : translate(0, 20px);
    transition : all 1000ms;
    }
.fadeinB {
    opacity : 0;
    transform : translate(0, -50px);
    transition : all 1000ms;
    }
.fadeinC {
    opacity : 0;
    transform : translate(-50px, 0);
    transition : all 1000ms;
    }
.fadeinD {
    opacity : 0;
    transform : translate(50px, 0);
    transition : all 1000ms;
    }
.fadeinA.show,.fadeinB.show,.fadeinC.show,.fadeinD.show {
    opacity : 1;
    transform : translate(0, 0);
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-moz-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-o-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


/*###### 改行 ######*/
br.mb_10 {
    display: block;
    content: '';
    margin-bottom: 10px;
}
br.mb_20 {
    display: block;
    content: '';
    margin-bottom: 20px;
}


/*###### Column ######*/
.Column2 {
  flex: 0 0 50%;
  padding: 0 15px;
  max-width: 50%;
  position: relative;
  padding-bottom: 30px;
}
.Column3 {
  flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
  padding: 0 15px;
  position: relative;
  padding-bottom: 30px;
}







/*###### ヘッダー ######*/
header {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1000;
}
/*###### PC用ナビ ######*/
#G-nav {
    height: 70px;
    background: rgba(255,255,255, .7);
    padding:0 40px;
}
#G-nav .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0;
}
#G-nav img {
    max-width: 225px;
    width: 100%;
}
#G-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding-left: 0;
}
#G-nav ul li {
    position: relative;
}
#G-nav ul li a {
    display: block;
    color: #42210B;
    font-size: 17px;
    font-weight: 500;
    padding: 20px 25px;
}
/* メディアクエリ */
@media screen and (max-width:768px) {
#G-nav {
    display: none;
}
}


/*###### SP用ナビ ######*/
/* ナビバー部分 */
.SP-nav__wrapper {
    height: 60px;
    width: 100vw;
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 900;
    position: fixed;
    background: #fff;
}
@media screen and (min-width: 769px){
.SP-nav__wrapper {
    display: none;
}}
/* ハンバーガー部分 */
.js-hamburger {
    position: fixed;
    z-index: 1100;
    top: 5px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}
.js-hamburger span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #42210b;;
    width: 50%;
}
.js-hamburger span:nth-of-type(1) {
    top: 15px;
}
.js-hamburger span:nth-of-type(2) {
    top: 23px;
}
.js-hamburger span:nth-of-type(3) {
    top: 31px;
}
.js-hamburger.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}
.js-hamburger.active span:nth-of-type(2) {
    opacity: 0;
}
.js-hamburger.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}
/* メニュー表示部分 */
#SP-nav.panelactive {
    visibility: visible;
    opacity: 1;
    right: 0;
}
#SP-nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: -100vw;
    width: 40vw;
    height: 100vh;
    padding: 50px 15px;
    background: #ff9f47;
    box-shadow: none;
    visibility: hidden;
    opacity: 0;
    transition: all .7s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sp-menu-wrapper {
    padding: 30px 0;
    border-radius: 5px;
    text-align: center;
}
#SP-nav li {
    margin: 0 0 20px;
    text-align: center;
}
#SP-nav li:last-child {
    margin: 0 0 40px;
}
#SP-nav li a {
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 20px 10px;
    display: block;
    color: #fff;
    font-weight: 500;
}

/*###### 共通 ######*/
h2 {
    font-size: 35px;
    position: relative;
    text-align: center;
    margin: 0 auto 65px;
    width: fit-content;
}
h2:after {
    position: absolute;
    content: "";
    display: block;
    width: 40%;
    height: 5px;
    background-color: #F15A24;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.h2-eng {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}
.h2-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 250px;
    padding: 20px 0;
    position: relative;
}
.h2-wrapper h2 {
    margin-bottom: 0;
}
.h2-wrapper:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.6);
    z-index: 1;
}
.h2-box {
    z-index: 10;
}
h3 {
    font-size: 20px;
    font-weight: 500;
}
button {
    display: block;
    background: #afd758;
    color: #fff;
    font-size: 20px;
    margin: 0 auto;
    padding: 10px 20px;
    border: none;
    border-radius: 2px;
    max-width: 190px;
    width: 100%;
}

/*###### ファーストビュー ######*/
#MAINIMG {
    position: relative;
    max-height: 850px;
}
#MAINIMG::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.1);
    z-index: 1;
}
.slide-wrapper {
    max-height: 780px;
    height: 100%;
}
.mainimg-text {
    position: absolute;
    width: 100%;
    margin-top: 70px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10;
}
.mainimg-text h2 {
    font-size: 45px;
    color: #fff;
    text-shadow: 0 0 8px #00000054;
}
.mainimg-text h2:after {
    display: none;
}

/*###### メッセージ ######*/
#MESSAGE h3 {
    font-size: 25px;
    margin-bottom: 40px;
    text-align: center;
}
#MESSAGE p {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

/*###### 募集要項 ######*/
#RECRUIT .h2-wrapper {
    background: url("../img/recruit.png") no-repeat center center;
    background-size: cover;
}
.recruit-box-wrapper {
    justify-content: center;
}
.recruit-box {
    background: #FDF9E8;
    padding: 50px 40px;
    max-width: 520px;
}
.recruit-box-l {
    margin-right: 15px;
}
.recruit-box-r {
    margin-left: 15px;
}
.recruit-box h3,.recruit-box p,.recruit-box ul {
    padding-left: 20px;
}
.recruit-box h3 {
    position: relative;
    margin-bottom: 10px;
}
.recruit-box p,.recruit-box li:last-child {
    margin-bottom: 25px;
}
.recruit-box h3:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 80%;
    background: #F9BA80 ;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: 0;
}
.recruit-box ul {
    padding-left: 40px;
}
.recruit-box ul li {
    list-style-type: disc;
}
.recruit-box button {
    margin-top: 50px;
}

/*###### 会社概要 ######*/
#COMPANY .h2-wrapper {
    background: url("../img/company.png") no-repeat center center;
    background-size: cover;
}
#COMPANY table {
    max-width: 730px;
    width: 100%;
    margin: 0 auto;
}
#COMPANY table th,#COMPANY table td {
    padding: 13px 10px;
}
#COMPANY table th {
    font-size: 19px;
    font-weight: 500;
    width: 30%;
    border-bottom: 2px solid #F9BA80;
    vertical-align: middle;
}
#COMPANY table td {
    width: 70%;
    border-bottom: 2px solid #FFEFBA;
}
#COMPANY table tr:last-child th,#COMPANY table tr:last-child td {
    border: none;
}
#COMPANY table ul {
    margin-bottom: 10px;
}
#COMPANY table ul:last-child {
    margin-bottom: 0;
}
#COMPANY iframe {
    vertical-align: bottom;
}

/*###### ENTRY ######*/
#ENTRY {
    background: #F7F3E4;
}
.entry-intro {
    display: block;
    margin: 0 auto 50px;
    max-width: 400px;
}
.form-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    box-shadow: 0 0 4px #0000001a;
}
.contact-form {
    width: 100%;
}
.contact-form th,.contact-form td {
    padding: 13px 10px;
}
.contact-form th {
    font-size: 20px;
    font-weight: 500;
    vertical-align: middle;
    width: 40%;
}
.contact-form th span {
    background: #FACB9F;
    font-size: 13px;
    font-weight: normal;
    padding: 0 10px;
    margin-left: 10px;
}
.contact-form td {
    width: 60%;
}
.contact-form td input,.contact-form td select,.contact-form td textarea {
    width: 100%;
    border: none;
    padding: 10px;
    background: #F7F5ED;
}
th.agree {
    font-size: 17px;
    font-weight: normal;
}
.agree a {
    border-bottom: 2px solid #FACB9F;
}

/* iSO対策用 */
.contact-form input.birth, .contact-form select {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    padding: 10px;
    background: #F7F5ED;
}
.contact-form select {
    position: relative;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.contact-form .select-wrap {
    position: relative;
    width: 100%;
}
.contact-form .select-wrap:after {
    content: "";
    position: absolute;
    left: unset;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
    -webkit-transform: translateY(-50%) rotate(-135deg);
    -ms-transform: translateY(-50%) rotate(-135deg);
    width: 10px;
    height: 10px;
    border-top: 2px solid #a1a1a1;
    border-left: 2px solid #a1a1a1;
    font-size: 20px;
    pointer-events: none;
}
.contact-form input[type=checkbox] {
    border-radius : 1px;
}

/*###### PRIVACY ######*/
#PRIVACY {
    background: #F7F3E4;
}
#PRIVACY .inner {
    padding-top: 0;
}
#PRIVACY p {
    display: block;
    margin: 0 auto;
    max-width: 800px;
    font-size: 15px;
}

/*###### フッター ######*/
footer {
    text-align: center;
}
footer .inner {
    padding: 50px 0 30px;
}
footer img {
    width: 210px;
    margin-bottom: 20px;
}
footer p {
    margin-bottom: 20px;
}
address {
    font-size: 13px;
}
