/*
Theme Name: bwgh
Author: (あなたの名前)
Description: 琵琶湖グランドホテル・京近江の採用LP用オリジナルテーマです。
Version: 1.0
*/

@charset "utf-8";

/* ① 変数の登録（グローバルに定義） */
:root {
	--main-color: #e34844;
	--sub-color: #f6ca00;
	--text-color: #794b4d;
	--bg-color: #e9f3fa;
}

/* ----------------------------------------------------------------------
 user reset
---------------------------------------------------------------------- */
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;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}
table {
  border-collapse: collapse;
}
ul {
    list-style: none;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
h5 {
	font-weight: 500;;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: border-box;
}

body, html {
    overflow-x: hidden;
}

html {
    font-size: 50%;
	scroll-behavior: smooth;
}
@media (min-width: 1025px) {
	html {
		font-size: 62.5%;
		scroll-behavior: smooth;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}


body {
	margin: 0;
	background-color: #fff;
	font-family: YakuHanJP, "A-OTF UD新ゴ Pro", "Noto Sans JP", sans-serif, "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
	line-height: 1.7;
    font-weight: 400;
    font-size: 1.6rem;
}

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

img{
	-webkit-backface-visibility: hidden;
	vertical-align: bottom;
}

.main-color {
	color: var(--main-color);
}

.sub-color {
	color: var(--sub-color);
}

.text-color {
    color: var(--text-color);
}

.white {
  color: #fff;
}

.bg-color {
    background: var(--bg-color);
}

.bg-white {
    background: #fff;
}

.bg-contact {
  background: #ffefdc;
}

/* ----------------------------------------------------------------------
 layout
---------------------------------------------------------------------- */
.flex {
    display: flex;
}

.fl-reverse {
	flex-direction: row-reverse;
}

.fl-wrap {
    flex-wrap: wrap;
}

.fl-column {
    flex-direction: column;
}

.fl-center {
    justify-content: center;
    align-items: center;
}

.fl-between {
    flex-wrap: wrap;
    justify-content: space-between;
}

.fl-justify {
    justify-content: center;
}

.fl-around {
    justify-content: space-around;
}

.fl-end {
	justify-content: flex-end;
}

.fl-start {
	justify-content: flex-start;
}

.fl-align-center {
    align-items: center;
}

.fl-align-start {
    align-items: flex-start;
}

.fl-align-self-start-only {
	align-self: flex-start;
}

.fl-align-self-end {
	align-self: center;
}
@media (min-width: 768px) {	
	.fl-align-self-end {
		align-self: flex-end;
	}
}

.fl-align-self-start {
	align-self: center;
}
@media (min-width: 768px) {	
	.fl-align-self-start {
		align-self: flex-start;
	}
}

.col-2 {
    width: 100%;
}
@media (min-width:768px) {
	.col-2 {
		width: 50%;
	}
}

.col-xs-2 {
    width: 50%;
}
.col-xs-2-sub {
    width: 48.5%;
}

/* sub-page */
.col-2-sub {
    width: 100%;
}
@media (min-width:1025px) {
	.col-2-sub {
		width: 48.5%;
	}
}

.col-3{
    width: 100%;
}
@media (min-width:768px) {
	.col-3 {
		width: 31%;
	}
}

.col-xs-3 {
    width: 48%;
}
@media (min-width:768px) {
	.col-xs-3 {
		width: 31%;
	}
}

.col-3-sp {
    width: 26%;
}
@media (min-width:768px) {
	.col-3-sp {
		width: 31%;
	}
}

.col-4 {
    width: 48%;
}
@media (min-width:768px) {
	.col-4 {
		width: 24%;
	}
}

/* position */
.p-relative {
	position: relative;
}

/* ==========================================================================
   コンテンツ幅
   ========================================================================== */

/* 大・中・小 すべてに共通の基本スタイル (スマホ・タブレット) */
.contents,
.contents-md,
.contents-sm {
  max-width: 92%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .contents,
  .contents-md,
  .contents-sm {
    width: 94%;
  }
}

/* ----------------------------------------------------
   PC幅 (1025px以上) でそれぞれの最大幅を定義
---------------------------------------------------- */
/* 大 */
@media (min-width: 1025px) {
  .contents {
    width: 82%;
  }
}

/* 中 */
@media (min-width: 1025px) {
  .contents-md {
    width: 100rem;
  }
}

/* 小 */
@media (min-width: 1025px) {
  .contents-sm {
    width: 80rem;
  }
}


/* ----------------------------------------------------------------------
 テキスト
---------------------------------------------------------------------- */

.text-c{
    text-align: center;
}

.text-r{
    text-align: right;
}

.text-lc,.text-l,.text-lr {
    text-align: left;
}

.text-cl{
    text-align: center;
}

@media (min-width:768px) {
	.text-lc {
		text-align: center;
	}
	.text-cl {
		text-align: left;
	}
	.text-lr {
		text-align: right;
	}
}
.no-break {
  white-space: nowrap;
}

/* インデント */
.indent-1 {
    padding-left: .5em;
    text-indent: -.5em;
}

.en {
    font-family: "DIN 2014","Montserrat", sans-serif;
    font-weight: 500;
    letter-spacing: .05em;
}

.fs-100 {
    font-size: 7.5rem;
}
@media (min-width:768px) {
    .fs-100 {
        font-size: 10rem;
    }   
}

.fs-54 {
    font-size: 4rem;
}
@media (min-width:768px) {
    .fs-54 {
        font-size: 5.4rem;
    }   
}

.fs-46 {
    font-size: 3.45rem;
}
@media (min-width:768px) {
    .fs-46 {
        font-size: 4.6rem;
    }   
}

.fs-40 {
    font-size: 3rem;
}
@media (min-width:768px) {
    .fs-40 {
        font-size: 4rem;
    }   
}

.fs-30 {
    font-size: 2.25rem;
}
@media (min-width:768px) {
    .fs-30 {
        font-size: 3rem;
    }   
}


.fs-24 {
    font-size: 1.9rem;
}
@media (min-width:768px) {
    .fs-24 {
        font-size: 2.4rem;
    }   
}

.fs-22 {
    font-size: 2rem;
}
@media (min-width:768px) {
    .fs-22 {
        font-size: 2.2rem;
    }   
}


.fs-20 {
    font-size: 1.7rem;
}
@media (min-width:768px) {
    .fs-20 {
        font-size: 2rem;
    }   
}

.fs-19 {
    font-size: 1.6rem;
}
@media (min-width:768px) {
    .fs-19 {
        font-size: 1.9rem;
    }   
}

.fs-18 {
    font-size: 1.5rem;
}
@media (min-width:768px) {
    .fs-18 {
        font-size: 1.8rem;
    }   
}

.fs-17 {
    font-size: 1.4rem;
}
@media (min-width:768px) {
    .fs-17 {
        font-size: 1.7rem;
    }   
}


.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/* checkbox */
.fas.fa-check-square {
    margin-right: 8px;
    color: var(--main-color);
}


.line-20 {
    line-height: 2;
}

.line-27 {
    line-height: 2.7;
}


/* ----------------------------------------------------------------------
 border
---------------------------------------------------------------------- */
.custom-dashed-line {
    border: none;
    border-top: 2px dashed var(--text-color, #24bad8);
    color: transparent;
    background-color: transparent;
    height: 1px;
    width: 100%;
  }

/* ----------------------------------------------------------------------
 スマホ特例
---------------------------------------------------------------------- */
@media (max-width:400px) {
	.hero-iphone-se {
		margin-bottom: 6rem !important;
	}
}	
@media (max-width:1023px) {
	.sp-column {
		flex-direction: column;
	}
	.sp-center{
		text-align: center;
	}
	.sp-mgn {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
	.sp-mt-1 {
		margin-top: 1rem;
	}
	.sp-mt-2 {
		margin-top: 2rem;
	}
	.sp-mt-3 {
		margin-top: 3rem;
	}
	.sp-mt-5 {
		margin-top: 5rem;
	}
	.sp-mt-8 {
		margin-top: 8rem;
	}
	.sp-mt-10 {
		margin-top: 10rem;
	}
	.and-more {
		width: 48vw;
	}
}

/* ----------------------------------------------------------------------
 タブレット特例
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.tb-mt-3 {
		margin-top: 3rem;
	}

	.tb-mt-8 {
		margin-top: 8rem;
	}
}

/* ----------------------------------------------------------------------
 margin
---------------------------------------------------------------------- */
.mt-1{
    margin-top: 1rem;
}
.mt-2{
    margin-top: 2rem;
}
.mt-3{
    margin-top: 1.5rem;
}
@media (min-width: 768px) {
	.mt-3{
	   	margin-top: 3rem;
	}
}
.mt-5 {
	margin-top: 2.5rem;
}
@media (min-width: 768px) {
	.mt-5{
	   	margin-top: 5rem;
	}
}

.mt-6 {
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.mt-6{
	   	margin-top: 6rem;
	}
}

.mt-7 {
	margin-top: 3.5rem;
}
@media (min-width: 768px) {
	.mt-7{
	   	margin-top: 7rem;
	}
}

.mt-8 {
	margin-top: 4rem;
}
@media (min-width: 768px) {
	.mt-8{
	   	margin-top: 8rem;
	}
}

.mt-10{
    margin-top: 5rem;
}
@media (min-width: 768px) {
	.mt-10{
	   	margin-top: 10rem;
	}
}
.mt-15{
    margin-top: 5rem;
}
@media (min-width: 768px) {
	.mt-15{
	   	margin-top: 15rem;
	}
}
.mt-20{
    margin-top: 5rem;
}
@media (min-width: 768px) {
	.mt-20{
	   	margin-top: 20rem;
	}
}

.mt-25{
    margin-top: 8rem;
}
@media (min-width: 768px) {
	.mt-25{
	   	margin-top: 25rem;
	}
}

.mb-3{
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
	.mb-3{
	   	margin-bottom: 3rem;
	}
}

.mb-5{
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.mb-5{
	   	margin-bottom: 5rem;
	}
}

.mb-10{
    margin-bottom: 5rem;
}
@media (min-width: 768px) {
	.mb-10{
	   	margin-bottom: 10rem;
	}
}

.mb-15{
    margin-bottom: 7.5rem;
}
@media (min-width: 768px) {
	.mb-15{
	   	margin-bottom: 15rem;
	}
}

.mb-20{
    margin-bottom: 10rem;
}
@media (min-width: 768px) {
	.mb-20{
	   	margin-bottom: 20rem;
	}
}

.pd-seciton {
	padding-top: 8rem;
	padding-bottom: 8rem;
}
@media (min-width: 768px) {
	.pd-seciton {
		padding-top: 10rem;
		padding-bottom: 10rem;
	}
}

.pd-1 {
    padding: 1rem;
}

.pd-2 {
    padding: 2rem;
}

.pd-3 {
    padding: 2rem;
}
@media (min-width: 1025px) {
	.pd-3 {
		padding: 3rem;
	}
}

.pd-5 {
    padding: 3rem;
}
@media (min-width: 1025px) {
	.pd-5 {
		padding: 5rem;
	}
}

.pd-8 {
    padding: 5rem;
}
@media (min-width: 1025px) {
	.pd-8 {
		padding: 8rem;
	}
}

.pt-3 {
  padding-top: 3rem;
}
.pt-5 {
  padding-top: 5rem;
}

.pd-tb-3 {
	padding: 3rem 0;
}

.pd-tb-10 {
    padding: 5rem 0;
}
@media (min-width: 768px) {
    .pd-tb-10 {
        padding: 10rem 0;
    }
}

/* ----------------------------------------------------------------------
 表示・非表示
---------------------------------------------------------------------- */

.sp-only-on {
    display: block;
   }
@media (min-width: 768px) {
	.sp-only-on {
        display: none;
    }
}

.tab-on {
    display: none;
}
@media (min-width: 768px) {
	.tab-on {
		display: block;
	}
}

.sp-on {
    display: block;
   }
@media (min-width: 1025px) {
	.sp-on {
        display: none;
    }
}

.pc-on {
    display: none;
}
@media (min-width: 1025px) {
	.pc-on {
		display: block;
	}
}


/* ----------------------------------------------------------------------
 動画埋め込み
---------------------------------------------------------------------- */
.movie-wrap {
    position: relative;
    padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
    margin: 1rem auto 5rem auto;
}

.movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 1025px) {
	.movie-wrap {
		margin: 6rem auto 10rem auto;
		width: 100%;
	}
}

/* ----------------------------------------------------------------------
 GoogleMap埋め込み
---------------------------------------------------------------------- */
.gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
	

/* ----------------------------------------------------------------------
サイト共通
---------------------------------------------------------------------- */
/* ==========================================================================
   ヘッダー
   ========================================================================== */
.apply-header {
  background: #fff;
}
@media (min-width: 768px) {
  .apply-header {
   
  }
}

.apply-header-logo {
  background-color: #fff;
  padding: 15px;
  width: 70%;
  gap: 15px;
  justify-content: center;
}
@media (min-width: 768px) {
  .apply-header-logo {
    flex-grow: 1;
    width: auto;
    padding: 20px 40px;
    gap: 30px;
    /* ★タブレットで中央揃え */
    justify-content: center; 
  }
}
@media (min-width: 1025px) {
  .apply-header-logo {
     /* ★PCで左揃えに戻す */
    justify-content: flex-start;
  }
}


.apply-header-logo img.logo {
	width: 150px;
}
@media (min-width: 768px) {
  .apply-header-logo img.logo {
    width: 300px;
  }
}

.apply-header-logo img.logo-kyooumi {
	width: 80px;
}
@media (min-width: 768px) {
  .apply-header-logo img.logo-kyooumi {
    width: 140px;
  }
}




.apply-header-tel {
  background-color: var(--main-color);
  width: 30%;
  border-bottom-left-radius: 20px;
}
@media (min-width: 768px) {
  .apply-header-tel {
    flex-shrink: 0;
    width: auto;
    width: 100%; 
    height: 150%;
  }
}
@media (min-width: 1025px) {
  .apply-header-tel {
    width: auto;
    height: 12rem;
    margin-bottom: -2rem;
  }
}

.apply-header-tel a {
  display: block;
  padding: 15px;
}
@media (min-width: 768px) {
  .apply-header-tel a {
    padding: 10px 30px;
    display: flex;
    align-items: center;
    height: 100%;
    /* ★タブレットで中央揃え */
    justify-content: center; 
  }
}

.apply-header-tel img {
  margin-left: auto;
  margin-right: auto;
  height: 48px;
  width: auto;
}
@media (min-width: 768px) {
  .apply-header-tel img {
    height: 60px;
  }
}

/* ----------------------------------------------------------------------
ボタン
---------------------------------------------------------------------- */
.btn {
	display: inline-block; /* blockから変更 */
	height: 40px;
	line-height: 34px;
	text-align: center;
	font-weight: 500;
	border-radius: 60px;
	padding: 0 1.5rem; /* paddingを追加 */
	min-width: 260px;
	text-decoration: none;
	font-size: 1.6rem; /* サイズ調整 */
}
@media (min-width: 1025px) {
	.btn {
		height: 60px;
		line-height: 54px;
		width: 435px;
        font-size: 1.8rem;
	}
}
.btn:hover {
	transition: all .2s;
}
.btn-color {
	color: #000;
	background:  var(--yellow);
	border: 3px solid var(--yellow);
}
.btn-color:hover {
	background: #fff;
	color: #000;
}

/* ==========================================================================
   応募セクション
   ========================================================================== */
.section-con {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .section-con {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}


/* ① 応募ボタン */
.apply-button-wrapper {
  text-align: center;
}
@media (min-width: 768px) {
  .apply-button-wrapper {
  }
}

.btn-apply {
  display: inline-block;
  background-color: var(--main-color);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 2.2rem;
  padding: 12px 30px;
  border-radius: 9999px;
  min-width: 280px;
  box-shadow: 0 4px 0 #c23a36;
  transition: transform 0.2s;
}
.btn-apply:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #c23a36;
}
@media (min-width: 768px) {
  .btn-apply {
    font-size: 2.8rem;
    padding: 15px 40px;
    min-width: 460px;
  }
}

/* ② 8つのアイコンボックス */
.icon-grid {
    gap: 15px 0;
}
@media (min-width: 768px) {
  .icon-grid {
    gap: 20px 0; /* PCでの行間の余白 */
  }
}



/* ③ 施設情報カード (既存コードをルールに合わせて修正) */
.card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  border: 4px solid var(--main-color);
  border-radius: 0 25px 0 25px;
  padding: 30px 30px;
  background-color: #fff;
}
@media (min-width: 768px) {
	.info-card {
	  padding: 50px 30px;
	}
}


.info-card h2 {
  color: var(--main-color);
  font-size: 1.8rem; /* フォントサイズをrem単位に調整 */
  margin-top: 0;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .info-card h2 {
    font-size: 2.2rem;
  }
}

.info-card p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--text-color);
}


/* ==========================================================================
   セクション見出し
   ========================================================================== */
.section-title {
  text-align: center;
}

.section-title .title-main {
  color: var(--main-color);
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0;
  position: relative;
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  .section-title .title-main {
    font-size: 3.2rem;
    letter-spacing: 0.1em;
  }
}

.section-title .title-main::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--main-color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.section-title .title-sub {
  color: var(--main-color);
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .section-title .title-sub {
    font-size: 1.8rem;
  }
}

/* テキストが白の場合のスタイル */
.section-title.white .title-main,
.section-title.white .title-sub {
  color: #fff;
}

.section-title.white .title-main::after {
  background-color: #fff;
}

/* ==========================================================================
   ロゴバナー
   ========================================================================== */
.logo-banner {
  background-color: var(--main-color);
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .logo-banner {
    padding: 4rem 0;
  }
}

.logo-banner-img {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}

.logo-banner2 {
  background: url(./images/cta-bg.svg) center center no-repeat,var(--main-color);
  background-size: 180%;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .logo-banner2 {
    background-size: 160%;
    padding: 3rem 0;
  }
}
@media (min-width: 1025px) {
  .logo-banner2 {
    background-size: 150%;
    padding: 4rem 0;
  }
}


/* ==========================================================================
   お客様の声
   ========================================================================== */
.voice-section {
  background-color: var(--sub-color);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .voice-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.voice-item {
  /* スマホでは縦並び */
}
@media (min-width: 768px) {
  .voice-item {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
@media (min-width: 1025px) {
  .voice-item {
    gap: 50px;
  }
}

.voice-image img {
  width: 100%;
  display: block;
}

@media (min-width: 768px) {
  .voice-image {
    flex: 0 0 320px;
    width: 320px;
  }
}
@media (min-width: 1025px) {
  .voice-image {
    flex: 0 0 400px;
    width: 400px;
  }
}

.voice-text {
  background-color: #fff;
  border-radius: 40px;
  padding: 3rem;
}

.voice-text p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* ==========================================================================
   募集要項
   ========================================================================== */
.recruitment-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .recruitment-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.recruitment-intro {
  font-size: 2rem;
  line-height: 1.9;
  color: var(--text-color);
  font-weight: 500;
}
@media (min-width: 768px) {
  .recruitment-intro {
    font-size: 2.4rem;
  }
}

.recruitment-heading {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .recruitment-heading {
    font-size: 3rem;
  }
}

.recruitment-list .item {
  text-align: center;
}

.recruitment-list .label {
  display: block;
  background-color: var(--sub-color);
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 9999px;
}
@media (min-width: 768px) {
  .recruitment-list .label {
    font-size: 1.8rem;
  }
}

.recruitment-list .content {
  font-size: 1.6rem;
  color: var(--text-color);
  line-height: 1.8;
}
@media (min-width: 768px) {
  .recruitment-list .content {
    font-size: 1.8rem;
  }
}



/* ==========================================================================
   お問い合わせフォーム (Contact Form 7 対応)
   ========================================================================== */
.contact-section {
  /* 背景色は親セクションで制御 */
}

.form-group {
  /* 各フォーム項目のグループ */
}

.form-label {
  display: flex;
  align-items: baseline;
  font-weight: 500;
  color: #333;
}

.label-tag {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 10px;
  line-height: 1;
}
.label-tag.red {
  background-color: var(--main-color);
}
.label-tag.dark {
  background-color: #777;
}
.label-text {
  display: inline-block;
}


.form-job-id {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.form-note {
  font-size: 1.2rem;
  color: #e53935;
}


/* テキスト入力欄、セレクトボックスの共通スタイル */
.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap input[type="password"],
.wpcf7-form-control-wrap input[type="tel"],
.wpcf7-form-control-wrap input[type="date"],
.wpcf7-form-control-wrap select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.6rem;
  background-color: #fff;
  color: #333; /* 通常時の文字色 */
}
input::placeholder {
  color: #bbb;
}


/* セレクトボックス特有のスタイル */
.wpcf7-form-control-wrap select {
  appearance: none;
}
.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #888 transparent transparent transparent;
  transform: translateY(-50%);
  pointer-events: none;
}

/* 生年月日セレクトボックスの幅 */
.birthdate-select-group {
  gap: 10px;
  flex-wrap: wrap;
}
.birthdate-select-group .select-wrapper {
  flex-shrink: 0;
}
.birthdate-select-group .select-wrapper.year {
  width: 140px; 
}
.birthdate-select-group .select-wrapper.month,
.birthdate-select-group .select-wrapper.day {
  width: 100px;
}
.birthdate-select-group span {
  align-self: center;
}
.birthdate-select-group span.wpcf7-form-control-wrap {
  display: block;
}
/* 生年月日プレースホルダー用のスタイル */
.wpcf7-form-control-wrap select.placeholder-selected {
  color: #999 !important;
}


/* 性別ラジオボタンのスタイル */
.radio-group {
  display: flex;
}
.radio-group .wpcf7-list-item {
  margin: 0;
}
.radio-group .wpcf7-list-item.first {
  margin-right: 10px;
}
.radio-group input[type="radio"] {
  display: none;
}
.radio-group .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 25px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s;
}
.radio-group input[type="radio"]:checked + span {
  background-color: #009688;
  color: #fff;
  border-color: #009688;
}

/* 送信ボタン */
.form-submit {
  text-align: center;
}
.btn-submit {
  background-color: var(--sub-color);
  color: #fff;
  border: none;
  width: 100%;
  padding: 15px 20px;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
  -webkit-appearance: none;
}
.btn-submit:hover {
  opacity: 0.8;
}


/* Contact Form 7 送信完了メッセージのスタイル */
.wpcf7-mail-sent-ok {
    display: block !important;
    margin: 20px 0 !important;
    padding: 20px !important;
    border: 2px solid #4caf50 !important; /* 緑色の枠線 */
    background-color: #f0fff0 !important; /* 薄い緑色の背景 */
    color: #333 !important; /* 文字色 */
    font-size: 1.1em !important;
    font-weight: bold !important;
    text-align: center;
}

/* 送信後フォームを非表示にする */

form.sent .form-area {
	display: none;
}



/* ==========================================================================
   会社情報
   ========================================================================== */
.company-info-section {
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .company-info-section {
    padding-bottom: 8rem;
  }
}

.info-table {
  color: var(--text-color);
  font-size: 1.8rem;
}

.info-row {
  padding: 15px;
}
@media (min-width: 768px) {
  .info-row {
    display: flex;
    align-items: center;
    padding: 20px 30px;
  }
}

.info-row:nth-child(even) {
  background-color: var(--bg-color);
}

.info-row dt {
  font-weight: bold;
}
@media (min-width: 768px) {
  .info-row dt {
    flex-shrink: 0;
    width: 300px;
  }
}

.info-row dd {
  line-height: 1.6;
}
@media (min-width: 768px) {
  .info-row dd {
    flex-grow: 1;
  }
}

.info-row dd a {
  color: var(--text-color);
  text-decoration: none;
  word-break: break-all;
}
.info-row dd a:hover {
  text-decoration: underline;
}







/* ==========================================================================
 GoogleMap埋め込み
   ========================================================================== */
.gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
@media (min-width: 768px) {
  .gmap {
    padding-bottom: 0;
    height: 60rem;
  }
}


/* ==========================================================================
   フッター
   ========================================================================== */
.site-footer {
  background-color: var(--main-color);
  color: #fff;
  padding: 4rem 0;
}


.contents-footer {
  max-width: 92%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .contents-footer {
    width: 80%;
  }
}
@media (min-width: 1025px) {
  .contents-footer {
    width: 68rem;
  }
}

/* SNSアイコン */
.footer-social {
  padding: 0;
  display: flex;
  gap: 20px;
}
/* PC表示の時だけ、SNSアイコンを右端に絶対配置する */
@media (min-width: 768px) {
  .footer-social {
    position: absolute;
    top: 50%;
    right: 1.5rem; 
    transform: translateY(-50%);
  }
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  font-size: 3.6rem;
  transition: opacity 0.3s;
}
.footer-social a:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .footer-social a {
    font-size: 4rem;
  }
}


.grecaptcha-badge {
    visibility: hidden;
}

