@charset "UTF-8";
/* ====================================================
　　　　　　　　　　　　　　共通設定 
====================================================*/

body {
    width: 100%;
    height: 100%;
    font-size: 18px;
    line-height: 180%;
    font-family: "Zen Maru Gothic", sans-serif;
    /* background-image: url(../img/block_bg.jpg);
    background-size: cover; */
    background: #fffae5;
    background: linear-gradient(90deg, #fffae5, #fdedd3);
    color: #4a443f;

}


/* 幅いっぱいに広げるとき */
.inner {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    border: 2px solid #6e4800;
    border-radius: 6px;
    margin-bottom: 50px;
    padding: 2% 4%;
    margin-top: 30px;
}

/* 幅を少し狭めているとき */
.inner2 {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    border: 2px solid #6e4800;

    border-radius: 10px;
    margin-bottom: 30px;
}






/* ここは固定 */
img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.bdr {
    display: block;
    width: 150px;
    height: 3px;
    background: #ffbc11;
    margin: 5px auto 20px auto;
}

h2 {
    text-align: center;
    font-size: 30px;
    font-weight: bolder;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h3 {
    margin-left: 10px;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}




/* ====================================================
                swiperの設定
======================================================= */
.swiper-wrapper {
    /* wrapperのサイズを調整 */
    width: 100%;
    height: 300px;
}

.swiper-slide {
    /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
    color: #ffffff;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 300px;
}







/*====================================================
 　　　　　　　　　　　ヘッダーに適応 
 ====================================================*/
header {
    width: 100%;
    margin: 0 auto;
    height: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fffae5;
    padding-right: 180px;
    /* ← ここがポイント：右にcontactボタン分の余白を作る */

}

.navi {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.header-nav {
    font-size: 19px;
    background-image: linear-gradient(#ffaa01, #ffaa01);
    background-repeat: no-repeat;
    background-position: bottom right;
    /* 下線の初期位置 */
    background-size: 0 2px;
    /* 下線のサイズ（横幅、高さ） */
    transition: background-size 0.3s;
}

.header-nav:hover {
    background-position: bottom left;
    /* 下線のホバー時位置 */
    background-size: 100% 2px;
    /* 下線の横幅を100%にする */
}


.nav-overlay__list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.logo {
    width: 31%;
}


.contact-btn a {
    position: fixed;
    top: 14px;
    /* header内のナビの高さに合わせて微調整 */
    right: 20px;
    display: flex;
    background: #ff9500;
    color: #FFF;
    font-size: 20px;
    border-radius: 8px;
    padding: 27px 27px 27px 60px;
    font-weight: bold;
    background-image: url(../img/icon_email.svg);
    background-repeat: no-repeat;
    background-position: 15px 26px;
    background-size: 36px;
    align-items: center;
    text-decoration: none;
}

.contact-btn a:hover {
    background-color: #00a6ff;
    color: #fff;

}

/*====================================================
　　　　　　　　　　　　メインに適応 
 ====================================================*/
h1 {
    font-size: 30px;
    text-align: center;
    font-weight: bold;
}

.recruit-p {
    line-height: 200%;
    margin: 30px;
}


/* ===================================================
                  仕事内容のページ
====================================================== */
.job-title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    background: #fb9e25;
    box-shadow: 0px 0px 0px 5px #fb9e25;
    color: #fff;
    border: dashed 2px white;
    padding: 0.2em 0.5em;
    max-width: 350px;
    margin: 0 auto 30px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 30px;
}

#work {
    position: relative;
}
.bg-illust{
    position: absolute;
    bottom: 0px;
    right: 25%;
    z-index: 3;
    width: 200px;
}
h5{
    text-align: center;
    background: #ff9500;
    color: #fff;
    padding: 10px ;
    margin: 30px auto 5px;
    font-weight: 800;
    font-size: 20px;
    
}




.work-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.work-flex img {
    width: 400px;
}

.work-flex p {
    line-height: 1.8rem;
}

.form-btn {
    display: block;
    width: 300px;
    margin: 30px auto;
    text-align: center;
}

.form-btn a {
    display: inline-block;
    background: #ff9500;
    color: #FFF;
    font-size: 18px;
    border-radius: 8px;
    padding: 18px 48px;
    font-weight: bold;
    text-align: center;
}


/* ===================================================
                  PR
====================================================== */
.pr-flex {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px dashed #989898;
}
.pr-flex:last-child{
    border-bottom: none;
}

.pr-flex img {
    width: 475px;
}


.big {
    font-size: 45px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.item01 p {
    line-height: 1.9rem;
}










/* ====================================================
                よくある質問のページ 
====================================================*/
.question_title {
    text-align: center;
    align-items: center;
    margin-bottom: 30px;

}

.qbox {
    display: flex;
    margin-bottom: 15px;
    width: 100%;
}


.q_contents {
    font-size: clamp(18px, 1.2rem, 22px);
    vertical-align: center;
    padding-left: 20px;
    font-weight: bold;
}


.qbox {
    position: relative;
    margin-top: 20px;
}

/*クエスチョンのマーク */
.q {
    font-size: 20px;
    font-family: Arial, Helvetica, "sans-serif";
    color: #FFF;
    border-radius: 100px;
    background: #f59c14;
    display: inline-block;
    font-weight: bold;
    padding: 8px 0 0 0;
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 1;
    position: absolute;
    top: 0px;
    left: 0px;
}

.qbox p {
    margin-left: 30px;
}

.abox {
    position: relative;
    display: flex;
    margin-bottom: 30px;
    vertical-align: bottom;
}

.abox p {
    margin-left: 35px;
}

.block {
    border-bottom: #a4a0a0 dashed 2px;
    margin-top: px;
}

.block:last-child {
    border: none;
}

/* アンサーのアイコン設定 */
.a {
    font-size: 20px;
    font-family: Arial, Helvetica, "sans-serif";
    color: #FFF;
    border-radius: 100px;
    background: #9dd426;
    display: inline-block;
    font-weight: bold;
    padding: 8px 0 0 0;
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 1;
    position: absolute;
    top: 0px;
    left: 0px;
}



.a_contents {
    padding-left: 20px;
}

/* ====================================================
　　　　　　　　　　募集要項ページ 
====================================================*/
.staff {
    color: #0C9E91;
    padding: 10px;
    border: 2px solid #0C9E91;
    text-align: center;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.boshu_p {
    text-align: center;
    margin-bottom: 10px;
}

/* table設定 */
tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
}

table {
    display: table;
    width: 100%;
}

tr {
    border-bottom: 1px solid #a4a0a0;
}

.ta1 th {
    background-color: #ffedb7;
    width: 25%;
    text-align: center;
    padding: 20px;
}

.ta1 td {
    width: 75%;
    align-items: center;
    padding: 20px;
}

.ta2 th {
    background-color: #45ff07;
    width: 25%;
    text-align: center;
    padding: 20px;
}

.ta2 td {
    width: 75%;
    align-items: center;
    padding: 20px;
}

.official1 {
    color: #26a4d4;
    border-bottom: 1px solid #26a4d4;
    line-height: 2.5rem;
}

.official1:hover {
    color: #016fad;
    border: none
}

.official2 {
    color: #26a4d4;
    border-bottom: 1px solid #26a4d4;
    line-height: 2.5rem;
}

.official2:hover {
    color: #016fad;
    border: none
}



/*====================================================
 　　　　　　　　　応募フォームページ
 ====================================================*/
.apply {
    width: 100%;
}

.apply th {
    font-size: 18px;
    background-color: #eee;
    width: 25%;
    text-align: center;
    padding: 20px;
}

.apply td {
    padding: 10px;
}

.apply_p {
    text-align: center;
    margin-bottom: 20px;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 4px;
    width: 100%;
    outline: none;
    font-size: 1.6rem;
}

/* 送信ボタンを中央寄せするためのもの */
.submit-btn {
    display: flex;
    background-color: #62adea;
    text-align: center;
    justify-content: center;
    border-radius: 20px;
    width: 265px;
    margin: 30px auto;
    line-height: 1;
    position: relative;
    font-size: 20px;
    font-weight: 500;
}

.btn01 {
    width: 100%;
    padding: 20px 10px 18px 10px;
    background: transparent;
    border: none;
    color: #FFF;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    border-radius: 20px;
}

.bold {
    font-weight: 700;
    color: #002256;
    font-size: clamp(20px, 1.8rem, 32px);
    text-align: center;
    margin-bottom: 10px;
}

.error {
    color: #ff0000;
}



/* フォーム送信ボタン */

.submit-btn:hover {
    opacity: 0.8;
}

label {
    font-size: 20px;
    line-height: 2.5rem;
}

#value{
    position: relative;
}
.bg-illust2{
    width: 130px;
    position: absolute;
    bottom: 0%;
    right: 21%;
    z-index: 100;
}

/* ====================================================
            プライバシーポリシーのページ設定
==================================================== */
.privacy {
    width: 90%;
    height: 300px;
    margin: 0 auto;
    overflow-y: scroll;
    border: #595959 0.5px solid;
    padding: 20px;
    margin-bottom: 30px;

}

.privacy h3 {
    margin-bottom: 10px;
    font-size: 16px;

}

.privacy h4 {
    font-weight: bold;
    font-size: 14px;
}

.privacy p {
    margin-bottom: 20px;
}

/* マップ設定 */
.map {
    text-align: center;
}

/* マップ設定 */
/* =====================================================
　　　　YOUTUBEの設定、mapの埋め込みの際したのとセットで
======================================================== */
.responsive-embed {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9比率 */
    height: 0;
    overflow: hidden;
    max-width: 80%;
    margin: 30px auto 2rem;
    /* 上下左右中央寄せ */
    display: block;
    /* 念のため */
    text-align: center;
    /* 親の text-align の影響を防ぐ */
}

/* ===================================================
 　　　　　　　　グーグルマップの設定
====================================================== */

.responsive-embed iframe {
    position: absolute;
    top: 0;
    left: 50%;
    /* 親の中央を基準に配置 */
    transform: translateX(-50%);
    /* 中央に寄せる */
    width: 100%;
    height: 100%;
    border: 0;
}

/* フッターの上の部分の設定 */
.footer_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    padding: 20px 0 100px;
}

.contact_contents:first-child {
    float: left;
    border-right: 3px solid #eee;
}

.contact_contents p {
    line-height: 180%;
}

.time {
    margin-top: 30px;
}


.line {
    width: 200px;
    border-bottom: #62adea solid 3px;
    margin-top: 20px;
}

.small {
    font-size: 16px;
    margin-top: 10px;
}

.contact_contents {
    text-align: center;
    padding: 50px;
}

/* お問い合わせボタン */
.contact_btn {
    color: #FFF;
    background-color: #ff9500;
    text-align: center;
    padding: 21px 10px 18px 10px;
    border-radius: 20px;
    max-width: 265px;
    margin: 20px auto 0;
    /* 親要素内で中央揃え */
    line-height: 1;
    position: relative;
}

.contact_btn:hover {
    opacity: 0.8;
    cursor: pointer;
}

/* ====================================================
                      フッターに適応
==================================================== */
footer {
    padding: 50px 0;
    text-align: center;
    background-color: #ffcb80;
}

footer img {
    max-width: 300px;
    margin: 0 auto;
}

footer p {
    margin: 20px;
    font-weight: 600;
    color: #fff;
}


/* ====================================================
　　　　　　　　　　　confirm.php
======================================================= */
.center {
    display: flex;
    justify-content: center;
    /* 横方向中央 */
    align-items: center;
    /* 縦方向中央（必要に応じて） */
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
    /* 幅が足りないときに折り返し */
    text-align: center;
}

.btn1,
.edit_btn {
    background-color: #016fad;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    width: 220px;
    line-height: 1;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-bottom: 30px;
}

.btn1 {
    background-color: #c0392b;
    /* 送信ボタンだけ色を変える */
}

.check-title {
    font-weight: bolder;
    font-size: clamp(26px, 1.8rem, 34px);
}

.btn1:hover,
.edit_btn:hover {
    opacity: 0.8;
}

/* ======================================================
               thanksページ
========================================================*/
.txt1 {
    display: block;
    width: 100%;
    /* 横幅100%にして */
    text-align: center;
    /* テキスト中央寄せ */
    padding: 50px 0 100px 0;
    color: #333;
}

.entry-title {
    font-size: clamp(26px, 1.8rem, 34px);
    font-weight: bolder;
}

.center01 {
    display: block;
    width: 100%;
    /* 横幅100%にして */
    text-align: center;
    /* テキスト中央寄せ */
    color: #333;
}

.center02 {
    display: block;
    width: 100%;
    /* 横幅100%にして */
    text-align: center;
    /* テキスト中央寄せ */
    color: #333;
}

.entry-title {
    font-weight: bolder;
    font-size: 30px;
    margin-top: 30px;
}


.btn2 {
    color: #FFF;
    background-color: #B0161C;
    text-align: center;
    border-radius: 20px;
    max-width: 250px;
    /* 最大幅を300pxに変更 */
    width: 100%;
    /* 親要素に合わせて伸縮 */
    line-height: 1.5;
    /* 高さを少し余裕持たせる */
    padding: 10px 20px;
    /* ボタン内の余白 */
    display: inline-block;
    box-sizing: border-box;
    /* パディングを含めた幅調整 */
}