@charset "UTF-8";
/*
Theme Name: taco-KIMAMACINEMA
Author: studioNANTOCA
Description: 5こめのテーマ
Version: 1.0
*/


/*--------------------------------
RESET-----------------------------
----------------------------------*/
html{
	box-sizing: border-box;
}
*,
::before,
::after{
	box-sizing: inherit;
}
body,p,figure {
	margin: 0;
}

a {
	color: inherit;
	transition: all .3s;
}
img{
	max-width: 100%;
	height: auto;
}
figure {
    max-width: 100%;
}

label,
input[type="reset"]{
	cursor: pointer;
	user-select: none;
}
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
	max-width: 100%;
}

/*--------------------------------
FONT------------------------------
----------------------------------*/
body {
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
}

:root {
	--l3: 1.25rem;/* 20px */
	--ll: 1.125rem;/* 18px */
	--l: 1rem;/* 16px */
	--m: 0.875rem;/* 14px */
	--s: 0.75rem;/* 12px */
	--ss: 0.625rem;/* 10px */
}
@media screen and (min-width:768px) { 
	:root {	
		--l3: 2rem;/* 32px */
		--ll: 1.5rem;/* 24px */
		--l: 1.125rem;/* 18px */
		--m: 1rem;/* 16px */
		--s: 0.875rem;/* 14px */
		--ss: 0.75rem;/* 12px */
	}
}


p{
	font-size: var(--m);
}
.font-bold{
	font-weight: bold;
}

/*--------------------------------
COLOR-----------------------------
----------------------------------*/
:root {
	--kon: #223566;
	--kon2: #EAEDF4;
	--gray: #878C9A;
	--ki: #FED62B;
	--aka: #FB1A1A;
	--kage: rgb(0 0 0 / 20%);
}

/*--------------------------------
そのほか----------------------------
----------------------------------*/



/* スクリーンリーダーを隠す */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}


/* 中央よせ */
.center-center{
	display: flex;
	justify-content: center;
	align-items: center;
}



/* 入力欄 */
textarea {
    width: 100%;
    min-height: 5em;
    padding: 0.5em 1em;
    box-sizing: border-box;
    background-color: #fff;
    border: solid 1px var(--kon);
}
input{
    border: solid 1px var(--kon);
}

input[type='submit'], input[type='button']{
    padding: 0.5em 1em;
    background-color: var(--kon);
    color: #fff;
}
input[type="text"],
input[type="email"]{
    background: #fff;
    padding: 0.4em 1em;
}

input[type='checkbox']{
    border: solid 1px var(--kon);
    width: 0.8em;
    height: 0.8em;
    vertical-align: text-top;
    position: relative;
}
input[type='checkbox']:after {
    content: "";
    position: absolute;
    left: 0.2em;
    top: -0.3em;
    width: 0.5em;
    height: 0.8em;
    border: solid var(--kon);
    border-width: 0 0.125em 0.125em 0;
    transform: rotate(45deg);
    opacity: 0;
}
input[type='checkbox']:checked {
    background-color: var(--ki);
}
input[type='checkbox']:checked:after {
    opacity: 1; /* 透明を解除 */
}

.select-wrap{
	position: relative;
}
select {
    border: solid 1px;
    padding: 0.5em 2em 0.5em 1em;
	cursor: pointer;
	position: relative;
	color: inherit;
	margin-bottom: 1em;
}
.select-wrap::after{
    content: "";
    font-size: 0.5em;
    display: inline-block;
    width: 1em;
    height: 1em;
    margin: 0 0.5em;
    border-width: 1px;
    border-style: solid;
    border-color: currentColor;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    position: absolute;
    right: 1em;
    top: 1.6em;
}


/* google隠す */
.grecaptcha-badge {
	visibility: hidden;
}

/* メディアクエリ */
@media screen and (min-width:768px) { 
	.sponly {
		display: none !important;
	}
}
@media screen and (max-width:767px) { 
	.pconly {
		display: none !important;
	}
}

/*--------------------------------
CSSアイコン-------------------------
----------------------------------*/

/* くの字矢印アイコン
・銭の太さはborder-widthで設定
・サイズはフォントサイズで設定
*/
.arrow {
	display: inline-block;
	width: 1em;
	height: 1em;
	margin: 0 0.5em;
	border-width: 1px;
	border-style: solid;
	border-color: currentColor;
}
.arrow.left {
	border-top:none;
	border-right:none;
	transform: rotate(45deg);
}
.arrow.top {
	border-bottom: none;
	border-right: none;
	transform: rotate(45deg);
	position: relative;
	top: 15%;
}
.arrow.right {
	border-bottom: none;
	border-left: none;
	transform: rotate(45deg);
}
.arrow.bottom {
	border-top:none;
	border-left:none;
	transform: rotate(45deg);
}