@charset "utf-8";
/* CSS Document */
:root {
  /* セーフエリアの値を取得 */
  --safe-area-inset-top: env(safe-area-inset-top);
  --safe-area-inset-right: env(safe-area-inset-right);
  --safe-area-inset-bottom: env(safe-area-inset-bottom);
  --safe-area-inset-left: env(safe-area-inset-left);

  /* モバイルブラウザのUIの高さ（一般的な値） */
  --browser-navbar-height: 44px;
}
*, *:before, *:after {
box-sizing: border-box;
}
body {
font-family: ヒラギノ角ゴシック,Segoe UI, Meiryo, Hiragino Sans, San Francisco, Yu Gothic UI, "MS PGothic", sans-serif;
font-size: 87.5%;
line-height: 1.5;
background-color: #fff;
color: #000000;
overflow-x: hidden;
width: 100svw;
}
a{
text-decoration: none;
color: #00003C;
}
li {
list-style-type: none;
}
p {
margin: 0;
}
.space {
padding: 0 10px;
}
h3:before {
content: '';
display: inline-block;
width: 18px;
height: 18px;
margin-right: 5px;
background-image: url("../image/grass_3.png");
background-size: cover;
background-position: left top;
background-repeat: no-repeat;
}
h5 {
font-size: 16px;
margin: 10px;
letter-spacing: -0.2em;
}
h5:before {
content: '';
display: inline-block;
width: 16px;
height: 16px;
margin-right: 5px;
background-image: url("../image/grass_3.png");
background-size: cover;
background-position: left top;
background-repeat: no-repeat;
}
/* フォームレイアウト */
form {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

.form-group {
  margin-bottom: 1rem;
  padding: 5px 0;
  width: 100%;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.form-group p , .contact p {
font-size: 1rem;
}
input[type="text"],input[type="tel"], input[type="email"], select {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
}
 input[type="postal-code"] {
 padding: 5px;
 height: 30px;
 font-size: 1rem;
 }
textarea {
  padding: 10px;
  width: 100%;
  height: 80px;
  font-size: 1rem;
  overflow-y: scroll;
}

/* テーブルレイアウト */
table {
width: 100%;
padding: 10px 10px 30px;
margin: 10px auto 30px;
font-size: 87.5%;
}
table th, table td {
padding: 10px;
border: 1px solid #9597FF;
}
table tbody th,
table thead th:first-child {
width: 50px;
}
table tbody td,
table thead th:nth-child(2) {
width: 210px;
}
table thead {
background-color: #00003C;
color: #ffffff;
}
caption {
margin: 20px;
}
figure {
margin: 0 auto;
text-align: center;
}
/* ================
  レイアウト
 ================ */
.section{
width:100%;
padding-bottom: 30px;
clear: both;
}
.image_right {
margin: 0 0 10px 10px;
float: right;
}
.image_left {
display: block;
margin: 0 auto 20px;
text-align: center;
}
.bottom {
padding-bottom: 60px;
}
.bottom1 {
padding-bottom: 40px;
}
/* 電話問い合わせ用を開くボタン */
#ok {
position: absolute;
top: 10px;
right: 80px;
width:30px;
height: 42px;
cursor: pointer;
display: block;
z-index: 900;
}

#ok::before {
content: '';
display: inline-block;
width: 30px;
height: 42px;
background-image: url("../image/mobile_white.png");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}
/* 上に戻るボタン */
a.gototop {
background-color: #0B10FF;
bottom: 2%;
color: #fff;
display: none;
font-size: 32px;
height: 48px;
line-height: 60.8px;
position: fixed;
right: 2%;
text-align: center;
text-decoration: none;
justify-content: flex-end;
width: 48px;
z-index: 900;
}
.coment {
margin-bottom: 20px;
text-align: center;
}
.space {
padding: 0 10px;
}
.map iframe {
margin: 0 auto;
text-align: center;
display: block;
padding-bottom: 30px;
width: 250px;
}
/* ================
  共通ヘッダー 
 ================ */
 /* ヘッダーのロゴ部分 */
.header__title {
width: 100px;
}
.header__title img {
display: block;
width: 80px;
height: auto;
position: relative;
z-index: 100;
}
 /* ハンバーガーメニュー */
.hamburger {
display: block;
height: 60px;
position: relative;
z-index: 100;
width: 60px;
border: none;
background-color: transparent;
cursor: pointer;
margin-right: 10px;
}
.hamburger.-active .hamburger__line {
background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
top: 0;
transform: rotate(45deg);
}
.hamburger.-active .hamburger__line::after {
top: 0;
transform: rotate(-45deg);
}
.hamburger.-active .hamburger__text::before {
content: '閉じる';
}
.hamburger__line {
display: block;
height: 2px;
position: absolute;
top: 23px;
left: 50%;
transform: translateX(-50%);
width: 24px;
background-color: #ffffff;
transition: 0.4s;
}
.hamburger__line:before,
.hamburger__line:after {
content: "";
display: block;
height: 100%;
position: absolute;
width: 100%;
background-color: #ffffff;
transition: inherit;
}
.hamburger__line:before {
top: -6px;
}
.hamburger__line:after {
top: 6px;
}
.hamburger__text {
position: absolute;
bottom: 8px;
left: 50%;
transform: translateX(-50%);
width: 100%;
}
.hamburger__text::before {
content: "メニュー";
text-align: center;
color: #ffffff;
font-size: 10px;
font-weight: 900;
}
/* ヘッダー */
.globalHeader {
position: fixed;
z-index: 100;
width: 100svw;
top: 0;
left: 0;
right: 0;
transform: translateY(0px);
/* セーフエリアを考慮したパディング */
padding-top: var(--safe-area-inset-top);
/* 高さを調整 */
height: calc(60px + var(--safe-area-inset-top));
}
/* ヘッダー（ナビエリア） */
.header__nav-area {
position: fixed;
top: 0;
right: -100%;
z-index: 90;/* 他の要素より前面に表示 */
width: 300px;
height: 100svh;/* 画面の高さに合わせる */
overflow-y: scroll; /* 縦スクロールを有効化 */
visibility: hidden;
padding-top: 60px;
background-color: #00003C;
transition: 0.4s;
}
.header__nav-area.-active {
right: 0;
visibility: visible;/* hiddenで透明に */
}
.global-navigation {
padding: 0px 30px 40px;
}
.global-navigation__list > li {
margin-top: 20px;
padding-bottom: 20px;
border-bottom: 2px solid #e7e9ee;
}
.global-navigation__list > li + li {
margin-top: 20px;
}
#none.global-navigation__link {
display: none;
}
.global-navigation__link {
display: flex;
align-items: center;
width: 150px;
justify-content: space-between;
color: #ffffff;
font-weight: 900;
transition: color 0.4s;
font-size: 1.1rem;
}
.global-navigation__link.-accordion {
position: relative;
background: none;
border: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 100%;
padding: 0;
}
.global-navigation__link.-accordion::after {
content: '';
display: block;
height: 18px;
position: absolute;
top: 20px;
right: 7px;
width: 4px;
background-color: #ffffff;
transform: translateY(-50%);
transition: transform 0.4s;
cursor: pointer;/* マウスカーソルを押すマークに変える */
}
.global-navigation__link.-accordion::before {
content: '';
display: block;
height: 4px;
position: absolute;
top: 20px;
right: 0;
width: 18px;
background-color: #ffffff;
transform: translateY(-50%);
cursor: pointer;/* マウスカーソルを押すマークに変える */
}
.global-navigation__link.-active::after {
transform: translateY(-50%) rotate(-90deg);
cursor: pointer;/* マウスカーソルを押すマークに変える */
}
.accordion {
height: 0;
overflow: hidden;
visibility: hidden;
transition: 0.4s;
}
.accordion.-active {
height: auto;
padding-top: 30px;
visibility: visible;
}
.accordion__list li {
font-size: 1rem;
}
.accordion__list li + li {
margin-top: 21px;
}
a.accordion__link {
color: #ffffff;
width: 200px;
margin: 20px;
height: 50px;
}
.nav-r a { /* 応募・依頼ボタン */
display: flex;
width: 160px;
height: 70px;
padding: 5px;
border: 1px solid #ffffff;
cursor: pointer;
}
.nav-r > a {
position: relative;
text-align: center;
margin: auto;

}
.btn__link > a {
background-color: #ffffff;
color: #00015F;
font-size: 16px;
}

.nav-r span {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.right .nav__items > li {
margin-top: 20px;
}
.right .nav__items > li + li {
margin-top: 20px;
}
.globalHeader .logo a{
display: inline-block;
width:120px;
height:24px;
}
/* # # # # # # # # # # # # #
【JS:01】 ヘッダーを固定する（上部に固定し、高さを縮める） 
# # # # # # # # # # # # # */

.globalHeader.fixed{
position: fixed;
top: 0;
left:0;
right:0;
border-bottom: 1px groove rgba( 0, 0, 0, .1);
animation: slideDown 0.8s ease;
background-color: #00003C;
color: #ffffff;
}
@keyframes slideDown{
0% { transform: translateY(-100px);}
100% { transform: translateY(0px); }
}
.globalHeader.fixed .logo a{
width:120px;
height:30px;
-webkit-background-size: 120px 30px;
     -o-background-size: 120px 30px;
        background-size: 120px 30px;
}

.header__inner {
width: 100%;
padding: 0; /*左右の余白確保*/
display: flex; /*ロゴとハンバーガーメニューを横に並べる*/
align-items: center;
justify-content: space-between;
height: inherit; /*親要素の高さを継承*/
position: relative;
}
.header__inner p {
color: #ffffff;
}
.section h1 {
	margin: 20px 0 30px 0;
	padding: 35px 20px 35px 65px;
	background-image: url(../image/bg_h1_head_star.png), url(../image/bg_h1_bottom_star.png);
	background-repeat: no-repeat, no-repeat;
	background-position: left top, left bottom;
	font-size: 25px;
}
.border-top h2 {
/* 文字の10%分詰める */
letter-spacing: -0.1em;
}
h1 img {/* アクターズユニオンのロゴ */
padding-left: 20px;
}
.logo p {
text-align: center;
}
.news a p {
display: flex;
align-items: center;
padding: 30px 0 20px 30px;
width: 280px;
text-decoration: underline #000393 2px;

}
.news a p::before {
content: url("../image/grass3.png");
display: inline-block;
} 
.section h2 {
	margin: 0 20px 30px;
	padding: 18px 0 18px 24px;
	background-image: url(../image/fraim1.png), url(../image/bg_h2_bottom.png);
	background-repeat: no-repeat, no-repeat;
	background-position: left top, left bottom;
	font-size: 20px;
}
ul {
margin: 0 10px;/*左右の余白確保*/
}
#micset {
margin: 0 20px;/*左右の余白確保*/
}
.section h4 {
font-weight: bold;
display: flex;
align-items: center;
margin-bottom: 5px;
}
.section h4:before {
content: '';
display: inline-block;
width: 12px;
height: 12px;
margin-right: 5px;
background-image: url("../image/grass_3.png");
background-size: contain;
background-position: left top;
background-repeat: no-repeat;

}
.news ul li{
margin: 10px 0;
list-style-image: url("../image/grass_3.png");
list-style-position: inside;
text-align: left;
width: 100%;
}
.news ul li:first-child {
list-style-image: url("../image/grass_8.png");
}

/* tel popup ここから */
.popup_wrap {/*モーダル本体の指定 + モーダル外側の背景の指定*/
visibility: hidden;
position:fixed;
left:0;
top:0;
width: 100%;
height: 100vh;
text-align: center;
background: rgba(0,0,0,0.6);
padding: 40px 10px;
overflow: hidden;
opacity: 0;
transition: .3s;
box-sizing: border-box;
z-index: 1000;
}
.popup_wrap:before{/*モーダル本体の擬似要素の指定*/
content: "";
display: inline-block;
vertical-align: middle;
height: 100vh;
}
.popup_wrap.active {
opacity: 1;
visibility: visible;
}

.popup_overlay {/*モーダル枠の指定*/
position: relative;
display: inline-block;
vertical-align: middle;
width: 280px;
}
/*モーダルを閉じるボタンの指定*/
.close_btn {
position: absolute;
display: flex;
top: -30px;
right: 0;
width: 30px;
height: 30px;
cursor: pointer;
}
.popup_content {/*モーダル内のコンテンツの指定*/

background: rgba(255,255,255,1.00);
box-shadow: 0 0 5px rgba(0, 0, 0, .7);
padding: 50px 0px 45px;
text-align: center;
}
.popup_content div p:nth-child(1) {
color: #000000;
font-size: 16px;
line-height: 1.2;
font-weight: 500;
}
.popup_content div p:nth-child(2) {
margin-top: 45px;
padding: 30px 0 50px;
height: 40px;
color: #000000;
text-align: center;
font-size: 20px;
font-weight: 700;
border-top: 1px solid #00003C;
border-bottom: 1px solid #00003C;
white-space: nowrap;
}
.popup_content div p:nth-child(2):before {
content: '';
display: inline-block;
width: 18px;
height: 32px;
background-image: url("../image/mobile.png");
background-size: contain;
background-position: left top;
background-repeat: no-repeat;
vertical-align: middle;
right: 0;
top: 0;
}
.popup_content div p:nth-child(2) a {
padding-left: 5px;
}
a.disable {
padding: 8px;
cursor: pointer;
}
.popup_content div p:nth-child(2):after {
content: "(代)";
position: relative;
left: 2px;
bottom: 1px;
font-size: 14px;
margin-right: 5px;
}
.popup_content div p:nth-child(3) {
margin-top: 35px;
color: #00003C;
font-size: 13px;
font-weight: 700;
line-height: 1.7em;
}
/* tel popup ここまで */
/* indexイメージ↓ */
.angel {
width: 100svw;
height: 100svh;
position: relative;
z-index: -1;
}
.angel video {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
 bottom: 0;
 right: 0;
pointer-events: none;/* 値を none に設定すると、要素がポインターイベントのターゲットではないことを示すのに加え、ポインターイベントが要素を「通過」して、代わりに要素の「下」をターゲットにすることを指示します。 */
}
.fade-in {
display: none;
position: absolute;
z-index: 1;
color: rgba(0,0,0,1.00);
}
.angel .fade-in {
font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
font-weight: bold;
top: 40%;
width: 98%;
text-align: center;
font-size: 38px;
}
#micset li p {
margin-bottom: 20px;
}
#micset img {
width: 150px;
height: 150px;
object-fit: cover;
}
address img {
width: 200px;
height: auto;
object-fit: contain;
}
/* indexイメージ↑ */
/*****************
 narrator male female
*****************/
.say {
position: absolute;
top:70px;
left: 50%;
transform: translate(-50%, -50%);
font-size: 40px;
font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
font-weight: bolder;
}

.voice {
display: block;
height: 30%;
position: relative;
}

.voice > img {
width: 100%;
height: 30vh;
object-fit: cover;
}

.wrapper {
padding: 20px 10px 40px;
}
.wrapper ul {
display: block;
width: 100%;
margin: 0;
text-align: center;
}
.wrapper ul li {
display: inline-block;
width: 161px;
margin: 0 5px 40px 0;
vertical-align: top;
}
/*.wrapper ul li:last-child {
margin: 0;
}*/
.wrapper ul li a p {
margin: 0;
font-family: YuMincho, "Yu Mincho", "ＭＳ 明朝", "游明朝";
font-size: 20px;
font-weight: bolder;
text-align: center;
}
.wrapper ul li audio {
width: 160px;
height: 30px;
}

/*****************
  モーダルウインドウ
*****************/
.modal__close {
overflow: hidden;
position: absolute;
display: flex;
top: 0;
right: 0;
width: 30px;
height: 0;
padding-top: 30px;
background-image: url("../image/X.png");
cursor: pointer;
z-index: auto;
border: none;
}
.modal__content h3 {
display: block;
}
.modal__content img {

}
.modal__content audio {
display: block;
margin: 0 auto;
width: 200px;
}
.modal__content {
        margin-top: 6svh;
        width: 92.53%;
        padding-top: 3.97rem;
        padding-bottom: 5.7rem;
        height: 90svh;
    }
.modal-head .modal-head--en {
        clear: both;
        font-size: 3.1rem;
        font-weight: 500;
        letter-spacing: 0.075em;
        line-height: 4rem;
    }
.modal-head .modal-head--jp {
        margin-top: 0;
        font-size: 1.4rem;
        letter-spacing: 0.07em;
        line-height: 2rem;
    }
.modal-content .modal-table {
        width: 91%;
        margin-top: 1.85rem;
    }
.modal-content .modal-table {
    border-top: 1px solid #000;
    margin: 0 auto;
    padding-top: 3.75rem;
}
.modal__content .modal-table th {
        min-width: unset;
        width: auto;
        display: block;
        padding-top: 2rem !important;
        padding-bottom: 0rem;
        line-height: 2rem;
		text-align: left;
		font-size: 16px;
    }
.modal__content .modal-table td {
        width: auto;
        display: block;
        padding-top: 0.4rem !important;
        padding-bottom: 0;
        font-weight: 400;
		font-size: 16px;
    }
table.modal-table td ,
table.modal-table th {
border-color: #ffffff;
}
.rappu {
  height: 100%;
}
.rappu.is-modalopen {
  position: fixed;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s opacity ease, 0s visibility 0.3s linear;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal.is-open {
  transition: 0.3s opacity ease, 0s visibility 0s linear;
  opacity: 1;
  visibility: visible;
}
.modal__content {
  position: relative;
  z-index: 1000;
  padding: 20px;
  background-color: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  flex: 0 1 1000px;
  width: 100%;
  max-width: 1000px;
  height: 90%;
  display: block;

}
.modal__bg {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
#act_list .modal__close {
overflow: hidden;
position: absolute;
display: flex;
top: 0;
right: 0;
width: 30px;
height: 0;
padding-top: 30px;
background-image: url("../image/X.png");
background-color: #ffffff;
cursor: pointer;
z-index: auto;
border: none;
list-style: none;
}

.modal-workWrap {
    margin-top: 3.5rem;
    margin-right: auto;
    margin-left: auto;
    width: 77.16%;
    border-top: 1px solid #000;
}
/*****************
  academy
*****************/
.mainImage_academy img {
height: 100vh;
object-fit: cover;
width: 100%;
position: relative;
z-index: -1;
}
.in-img {
font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
position: absolute;
inset: 0;
text-align: center;
top: 80px;
font-size: 24px;
font-weight: bolder;
color: #ffffff;
letter-spacing: -0.1em;
}
.mainImage_academy .fade-in {
font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
font-weight: 300;
top: 25%;
width: 50%;
inset: 120px 0 0 0;
padding-left: 10px;
text-align: left;
align-content: center;
font-size: 16px;
color: #ffffff;
position: absolute;
}
.academy table tbody th,
.academy table thead th:first-child {
width: 100px;
}
/*****************
  company
*****************/
.image2 {
  width: 100%;
  height: 80vh;
  background-image: url("../image/jisya.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

#say img{
width: 100px;
height: 150px;
object-fit: contain;
}
#say p {
margin-bottom: 20px;
}
#border1 {
border: 1px dashed #9597FF;
width: 90%;
margin: 0 auto;
}
#etc ul li {
list-style-type: square;
list-style-position: inside;
}
#etc p {
margin: 30px 20px;
text-align: center;
}
.etc {
padding-bottom: 40px;
}
/* 応募ページ */
.image1 {
  width: 100%;
  height: 80vh;
  background-image: url("../image/e1.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.image1 .fade-in {
font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
font-weight: bolder;
inset: 0;
width: 98%;
margin: auto;
height: 30px;
line-height: 30px;
text-align: center;
align-items: center;
font-size: 24px;
}
.image1 .fade-in p {
display: inline-block;
margin: 0 auto;
}
#input {
border-collapse: collapse;
table-layout: fixed;
}
.label label {
display: inline-block;
margin: 0 20px;
width: 100px;
text-align: center;
}
/* 依頼ページ */
.image3 {
  width: 100%;
  height: 30vh;
  background-image: url("../image/voice.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.promise ul li{
margin: 10px auto;
list-style-image: url("../image/grass_3.png");
list-style-position: inside;
text-align: left;
width: 280px;
}
#contact .say {
font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
position: absolute;
white-space: nowrap;
text-align: center;
align-content: center;
top: 90px;
font-size: 20px;
font-weight: bolder;
color: #ffffff;
}
/***************
  フォーム sp
****************/

input[type="submit"],input[type="reset"] {
	margin: 3px;
	padding: 8px;
	font-size: 14px;
	width: 130px;
	background-color: #00003C;
	border: 1px solid #00003C;
	color: #ffffff;
	cursor: pointer;
}
input[type="submit"]:hover ,input[type="reset"]:hover {
background-color: #000393;
color: #FFFFFF;
}
form span.required {
	color: #ff3300;
	font-size: 12px;
}
.label, .recruit {
display: flex;
justify-content: space-around;
}
p.class {
font-size: 14px;
}
/* ^^^^^^^^^^^^^^^
    検索機能
--------------- */
.search-form {
  display: flex; /* 横並びにする */
  align-items: center; /* 縦方向の中央揃え */
  width: 250px; /* 検索ボックスの幅 */
  border: 1px solid #ccc; /* 枠線 */
  border-radius: 5px; /* 角丸 */
  margin: 30px;
}

.search-input {
  flex-grow: 1; /*  残りの幅を全て使用 */
  padding: 10px; /*  内側の余白 */
  border: none; /*  枠線をなくす */
  outline: none; /*  フォーカス時の枠線をなくす */
}

.search-button {
  padding: 10px 15px; /*  内側の余白 */
  background-color: #000393; /*  背景色 */
  color: white; /*  文字色 */
  border: none; /*  枠線をなくす */
  cursor: pointer; /*  カーソルをポインターに */
  border-radius: 0 5px 5px 0; /*  右側の角丸 */
}

.search-button:hover {
  background-color: #2125FF; /*  ホバー時の背景色 */
}
/* footerContent */

.address {
padding: 30px 0 10px;
background-color: #00003C;
color: rgba(255,255,255,1.00)
}
.address p {
padding: 0 20px;
margin-bottom: 10px;
}
.address p span {
font-weight: bold;
display: block;
text-align: right;
}
footer p:last-child {
	margin: 0;
}
footer small {
	background: #000000;
	color: #fff;
	display: block;
	font-size: 11px;
	padding: 10px 0;
	text-align: center;
	text-decoration: none;
}
