@charset "utf-8";

/*
theme Name:hojyokin
Author:hojyokin
Description:hojyokin
version： 1.0.0
*/
/*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 {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}

mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

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

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

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

/*サイト全体の基準となるCSSを記述*/
html {
  font-size: 16px;
}

body {
  /*フォントの指定*/
  font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Noto Sans Japanese', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  /*行間の指定*/
  line-height: 1.4;
  margin: 0;
  padding: 0;
  /*サイトのデフォルトとなる文字の色を指定*/
  color: #333;
}

/*見出しを全て太字で表示 + 文字色を黒に*/
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

/*ここから編集*/


.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: bold;
    color: var(--text-color);
}

.section-title span {
    display: block;
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

section {
    padding: 80px 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav li {
    margin-left: 20px;
}

.header-cta {
    background: var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
}

/* SP Menu Toggle (Simple implementation) */
.menu-toggle {
    display: none;
}

/* ==========================================================================
   Hero (#top)
   ========================================================================== */
#top {
    padding-top: 140px;
    padding-bottom: 100px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 20px 60px;
    font-size: 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(230, 92, 92, 0.4);
}

/* ==========================================================================
   Manga / Introduction (#manga)
   ========================================================================== */
#manga {
    background-color: #fff;
}

.manga-placeholder {
    background: #eee;
    border: 2px dashed #ccc;
    color: #888;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

/* ==========================================================================
   Appeal / Features (#appeal)
   ========================================================================== */
#appeal {
    background-color: var(--secondary-bg);
}

.appeal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.appeal-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
}

.appeal-icon {
    width: 80px;
    height: 80px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
}

/* ==========================================================================
   Recruit Info (#recruit)
   ========================================================================== */
#recruit {
    background-color: #fff;
}

.recruit-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.recruit-table th,
.recruit-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.recruit-table th {
    width: 30%;
    background: #fafafa;
    font-weight: bold;
}

/* ==========================================================================
   Flow (#flow)
   ========================================================================== */
#flow {
    background-color: var(--secondary-bg);
}

.flow-step {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
    padding-left: 80px;
}

.flow-step::before {
    content: "STEP";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: var(--accent-color);
}

/* ==========================================================================
   Company (#company)
   ========================================================================== */
#company {
    background-color: #fff;
}

/* ==========================================================================
   Contact (#contact)
   ========================================================================== */
#contact {
    background-color: #333;
    color: #fff;
}

#contact .section-title {
    color: #fff;
}

.form-placeholder {
    background: #fff;
    color: #333;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .header-nav {
        display: none; /* Mobile menu implementation needed if required */
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .recruit-table th,
    .recruit-table td {
        display: block;
        width: 100%;
    }

    .recruit-table th {
        background: transparent;
        padding-bottom: 5px;
    }

    .recruit-table td {
        padding-top: 0;
        border-bottom: 1px solid #ddd;
    }
}


.size{
	height:5rem;
}

.text-color{
	color:#f8b497;
	font-style: italic;
	margin:0 !important;
}


@media(min-width:751px){
    .sp{
        display: none !important;
    }
}
@media(max-width:750px){
    .pc{
        display: none !important;
    }
}

.radius{
	border-radius: 0 0 300px 300px;
	opacity:0.7;
}