/*サイト全体の基準となるCSSを記述*/

html {
  font-size: 16px;
}
 
body {
 width: 100%;
 height: auto;
 font-family: "Zen Old Mincho", serif;
 line-height: 1.4;
 margin: 0;
 padding: 0;
 color: #fff;
 background: #263348 url(../images/bg_pat.png?20250901) center center / 180px repeat;
 overflow-x: hidden;
 overflow-wrap: break-word;
 box-sizing: border-box;
}

.wrapper {
 overflow: hidden;
}

h1 {
 color: #fff;
}

h2 {
 font-size: min(8vw,3rem);
 font-weight: normal;
 color: #a5895d;
}

h3 {
 font-size: min(6vw,1.4rem);
 color: #a5895d;
}

h4, h5, h6 {
 color: #fff;
}
 
img {
 max-width: 100%;
 height: auto;
}

small {
 font-size: 0.6rem;
}

dt {
 margin: 15px 0;
 font-size: 1rem;
}

hr {
 border-top: 0.5px solid #a5895d;
 margin: 0.5rem 0 1rem;
}

iframe.wp-embedded-content {
 width: 100%;
 margin: 50px 0 30px;
 box-sizing: border-box;
}

table {
 font-size: 0.8rem;
 margin: 1rem auto;
 width: 100%;
}

th {
 padding: 0.5rem 0;
 vertical-align: middle;
}

td {
 padding: 0.5rem 0;
 vertical-align: middle;
}

.heading {
 text-align: center;
 font-size: 2rem;
 line-height: 1;
 font-weight: bold;
 margin: 2rem 0;
 letter-spacing: normal;
 color: #998a60;
}

p {
 margin: 1rem 0 1.5rem;
}

a {
    color: #d27373;
}

.nl {
	display: inline-block;
}

.linkbtn {
 color: #fff;
 font-size: initial;
 width: 90%;
 max-width: 350px;
 box-sizing: border-box;
 font-weight: bold;
 text-align: center;
 letter-spacing: .05rem;
 border-radius: 30px;
 background: #998a60;
 padding: 15px 30px;
 border: none;
 margin: 1rem auto;
 position: relative;
 overflow: hidden;
}

.linkbtn::before {
 content: '';
 position: absolute;
 top: 0;
 left: -75%;
 width: 50%;
 height: 100%;
 background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
 transform: skewX(-25deg);
}

.archivelink:hover::before {
 animation: shine 0.7s;
}

@keyframes shine {
 100% {
 left: 125%;
}}

/* IE, Edge 対応 */
 -ms-overflow-style: none;
 /* Firefox 対応 */
 scrollbar-width: none;
}

/* Chrome, Safari 対応 */
.menu_content_inner::-webkit-scrollbar {
 display:none;
}

.menu_content::-webkit-scrollbar {
 display:none;
}

/* ヘッダー */

header {
    width: 100%;
    position: absolute;
    padding: 0.5rem 0;
}

.header_container {
    width: 100%;
    max-width: 1024px;
    position: relative;
    margin: 0 auto;
}

.site_title_wrap {
 width: 50%;
 max-width: 225px;
 padding: 0.3rem 0 0 0.3rem;
}

.sns_wrap {
 position: absolute;
 font-size: 2.2rem;
 line-height: 0;
 top: 0;
 right: 80px;
 display: flex;
 height: 65px;
 width: 65px;
 justify-content: center;
 align-items: center;
 z-index: 100;
}

.sns {
 margin: 0 0.25rem;
 padding: 0 0.25rem;
}

/* ドロワーメニュー */

.menu_content_inner {
 width: 100%;
 min-height: 100vh;
 padding: 10%;
 box-sizing: border-box;
}

.menu_content_inner img {
 width: 100%;
 margin-bottom: 1rem;
}

.menu_btn {
 position: fixed;
 top: 0.35rem;
 right: 8px;
 display: flex;
 height: 55px;
 width: 55px;
 justify-content: center;
 align-items: center;
 z-index: 100;
}

.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
 content: '';
 display: block;
 height: 2px;
 width: 25px;
 border-radius: 3px;
 background-color: #bac0cb;
 position: absolute;
 transition: all 0.5s;
}

.menu_btn span:before {
 bottom: 8px;
}

.menu_btn span:after {
 top: 8px;
}

.btn_menu {
 font-size: 0.6rem;
 color: #bac0cb;
 position: absolute;
 bottom: 0;
 
}

#menu_btn_check:checked ~ .menu_btn span {
 background-color: rgba(255, 255, 255, 0);
}

#menu_btn_check:checked ~ .menu_btn span::before {
 bottom: 0;
 transition: all 0.5s;
 transform: rotate(45deg);
}

#menu_btn_check:checked ~ .menu_btn span::after {
 top: 0;
 transition: all 0.5s;
 transform: rotate(-45deg);
}

#menu_btn_check {
 display: none;
}

.menu_content ul li {
 list-style: none;
}

.menu_content ul li a {
 display: block;
 width: 100%;
 font-size: 1rem;
 font-weight: bold;
 box-sizing: border-box;
 color: #998a60;
 text-decoration: none;
 padding: 15px 0 15px 0;
 position: relative;
}

.menu_content {
 width: 80%;
 max-width: 530px;
 height: 100vh;
 position: fixed;
 overflow-y: scroll;
 top: 0;
 left: -100%;
 z-index: 1000;
 background: rgb(0,0,255,0.5) url(../images/bg_pat.png?20250901) center center / 200px repeat;
 opacity: 0;
 transition: all 0.8s;
}

#menu_btn_check:checked ~ .menu_content {
 left: 0;
 background: rgb(0, 0, 0, 0.9) url(../images/bg_pat.png?20250901) center center / 200px repeat;
 opacity: 1;
}

.drawer {
 overflow-wrap: break-word;
 margin-bottom: 30px;
}

.drawer img {
 width: 100%;
 padding: 0;
}

/* ファーストビュー */

.firstview {
 width: 100%;
 height: 100vh;
 top: 0;
 z-index: -5;
 overflow: hidden;
 position: relative;
}

.firstview:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 3px 3px;
    z-index: -2;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
}

.firstview_message {
    color: #a5895d;
    filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.7));
    width: 100%;
    font-size: min(5vw, 1.4rem);
    line-height: 1.2;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 1;
}

.video_wrapper {
 width: 100%;
 height: 100%;
 position: fixed;
 overflow: hidden;
 z-index: -3;
 transform:translate3d(0,0,0);
}

#header-video {
 width: 100%;
 height: 100%;
 object-fit: cover;
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%,-50%);
 transform: translate(-50%,-50%);
}

/* セクション総合 */

section {
    font-size: 0;
	border-bottom: 1.5px solid #a5895d;
    overflow: hidden;
}

.h2_sub {
    font-size: min(3vw, 0.9rem);
    color: #a5895d;
    line-height: 1;
}

.arc {
    width: 100%;
    height: auto;
    background: url(../images/arc/arc.png?20250901) center top / cover no-repeat;
    position: relative;
}

.arc:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 3px 3px;
    z-index: -2;
    pointer-events: none;
}

.arc:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(17, 27, 44, 10.05);
    background: linear-gradient(0deg, rgba(17, 27, 44, 1) 15%, rgba(17, 27, 44, 0) 70%);
    left: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
}

.arc_container {
    font-size: min(4.5vw, 1.4rem);
    color: #a5895d;
    width: 80%;
    max-width: 720px;
    margin: 0 auto;
    padding: min(280px, 70%) 0 5%;
    position: relative;
    z-index: 1;
}

.section_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.section_lr {
    width: 50%;
    height: auto;
    padding: 8% 5%;
    background: rgba(17,27,44,0.85) url(../images/bg_pat.png?20250901) center center / 180px repeat;
}

.sec_contents_l {
    max-width: 430px;
	margin: 0 0 0 auto;
}

.sec_contents_r {
    max-width: 430px;
	margin: 0 auto 0 0;
}

@media screen and (max-width:480px) {
	.mobile {
		width: 25% !important;
	}
	
	.section_lr {
		width: 75%;
	}
}

.menu_price {
	max-width: 380px;
    font-size: min(4.3vw, 1.4rem);
    color: #dbdfe7;
}

.menu_price td {
    text-align: right;
}

.item {
    font-size: min(4.3vw, 1.4rem);
    margin: 0.5rem 0;
    color: #dbdfe7;
}

.price {
    font-size: min(4vw, 1.4rem);
}

.menu {
    font-size: min(3.2vw, 1rem);
    color: #bac0cb;
}

.photo {
    background: #263348 url(../images/bg_pat.png?20250901) center center / 180px repeat;
}

/* 求人 */

.greeting1 {
    margin: 0 auto;
    display: table;
}

.greeting2 {
    font-size: min(4vw, 1.2rem);
    color: #bac0cb;
    text-align: left;
    margin: 0 auto;
    display: table;
}

.arc_container h2 {
    text-align: center;
}

.recruit_container {
    background: rgba(17, 27, 44, 0.85) url(../images/bg_pat.png?20250901) center center / 180px repeat;
    padding: 5%;
    text-align: center;
}

table.recruit {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.recruit th {
    border: 1px solid #a5895d;
    color: #a5895d;
    text-align: center;
    padding: 0.5rem;
}

.recruit td {
    border: 1px solid #a5895d;
    color: #bac0cb;
    padding: 0.5rem;
    text-align: left;
}

table.recruit img {
    max-width: 200px;
    padding: 0.5rem;
}

.form_container {
    background: rgba(17, 27, 44, 0.85) url(../images/bg_pat.png?20250901) center center / 180px repeat;
    padding: 5%;
    text-align: center;
}

table.recruit_form {
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
}

.recruit_form th {
    border-bottom: 1px solid #a5895d;
    font-size: min(8vw, 1.2rem);
    color: #a5895d;
    padding: 2rem 0;
}

.recruit_form td {
    border-bottom: 1px solid #a5895d;
    padding: 0.5rem;
}

@media screen and (max-width:540px) {
	.recruit_form th {
        display: block;
        border-bottom: none;
        padding: 1rem 0 0;
    }
	
	.recruit_form td {
        display: block;
        padding: 0.5rem 0 1rem;
    }
}

input {
	width: 100%;
    height: 2.5rem;
    padding: 0.5rem;
    box-sizing: border-box;
}

select {
    height: 3rem;
    padding: 0.5rem;
}

textarea {
    padding: 0.5rem;
	width: 100%;
    box-sizing: border-box;
}

button {
    width: 100%;
    max-width: 420px;
    border: 3px solid #a5895d;
    color: #a5895d;
    background: none;
    font-size: min(7vw, 2rem);
    padding: 0.5rem;
    margin-top: 3rem;
    font-family: "Zen Old Mincho", serif;
    border-radius: 30px;
}

#result {
    font-size: min(4vw, 1.4rem);
    font-weight: bold;
    color: #a5895d;
    display: table;
    line-height: 1.2;
    margin: 1.5rem auto 0;
    padding: 1rem;
    text-align: center;
}

#result p {
    padding: 0.5rem 0;
    margin: 0;
}

.g-recaptcha {
	display: flex;
	justify-content: center;
	margin: 1em 0;
}

/* FAQ */

.faq_container {
    background: rgba(17, 27, 44, 0.85) url(../images/bg_pat.png?20250901) center center / 180px repeat;
    padding: 5%;
    text-align: center;
}

.faq {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    text-align: left;
}

.faq-toggle {
  display: none;
}

.faq-question {
    display: block;
    cursor: pointer;
    padding: 1rem 3rem 1rem min(20vw, 7rem);
    font-size: min(4vw, 1.6rem);
    color: #a5895d;
    border: 1.5px solid #a5895d;
    border-radius: 50px;
    position: relative;
}

.faq-question:after {
    position: absolute;
    content: "";
    background: url(../images/recruit/question.png) center center / contain no-repeat;
    width: min(13vw,5rem);
    height: auto;
    aspect-ratio: 1 / 1;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.faq-question:before {
    position: absolute;
    content: "▼";
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 3rem 0 min(20vw, 7rem);
    margin: 1rem 0;
    font-size: min(4vw, 1.6rem);
    color: #3f2f15;
    background: #e3d6be;
    border-radius: 50px;
    position: relative;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer:after {
    position: absolute;
    content: "";
    background: url(../images/recruit/answer.png) center center / contain no-repeat;
    width: min(13vw,5rem);
    height: auto;
    aspect-ratio: 1 / 1;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.faq-toggle:checked + .faq-question + .faq-answer {
  max-height: 500px;
  padding: 1rem 3rem 1rem min(20vw,7rem);
}

/* フッター */

footer {
 background: #111b2c url(../images/bg_pat.png?20250901) center center / 300px repeat;
 color: #a5895d;
 padding: 2rem 0 90px;
}

.footer_column {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

@media screen and (max-width:540px) {
	.footer_column {
		max-width: 95%;
		display: block;
		text-align: center;
	}
}

.footer_column_container {
    width: 95%;
    max-width: 530px;
    font-size: min(3.8vw, 0.9rem);
}

.footer_column_container img {
    width: 300px;
}

.copyright {
 font-size: 0.8rem;
 text-align: center;
 color: #a5895d;
}

.copyright p {
 margin: 0;
}

#footer_floating {
 width: 100%;
 height: 70px;
 position: fixed;
 bottom: 0;
 left: 0;
 background: #111b2c url(../images/bg_pat.png?20250901) center center / 300px repeat;
 text-align: center;
 box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.5);
 z-index: 100;
}

#footer_floating a {
 text-decoration: none;
 color: inherit;
}

.footer_floating {
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%,-50%);
 transform: translate(-50%,-50%);
 position: relative;
 display: flex;
 align-items: center;
}

.footer_icon {
 width: 90%;
 display: inline-block;
 font-size: 1.2rem;
 line-height: 1.3;
 position: relative;
 font-weight: bold;
 color: #a5895d;
}

.footer_icon:first-child:after {
 display:none;
}

.footer_icon:after {
 background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
 content: "";
 width: 1px;
 height: 65%;
 position: absolute;
 top: 20%;
 left: 0;
 margin-left: -3%;
 z-index: 1;
}

.footer_icon_disc {
 font-size: 0.75rem;
}

.campaign {
 position: absolute;
 max-width: 380px;
 bottom: 0;
}

@media screen and (max-width:540px) {
	.campaign {
		max-width: 100%;
	}
}

@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.anime-fuwafuwa {
  animation: 3s fuwafuwa infinite;
}

.is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}

/* テキストフォーム拡大対策 */

@media screen and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
  input, textarea {
    font-size: 16px;
  }
}