@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}

html {
	font-size: 62.5%;
}

body,
table,
input,
textarea,
select,
option {
	font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, " ＭＳ Ｐゴシック", MS PGothic, "メイリオ", Meiryo, Osaka, sans-serif;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
	display: block;
}

ol,
ul {
	list-style: none;
	box-sizing: border-box;
}

blockquote,
q {
	quotes: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

a,
a:link {
	color: #333;
	text-decoration: none;
}

a:visited {
	color: #333;
}

a:hover {
	color: #333;
}

a:active {
	color: #333;
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1280px;
	color: #333;
	font-size: 1.6rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}

#container {
	text-align: left;
}

#main {
	display: block;
}

a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}

@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}

@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.5rem;
	}

	a:hover,
	a:hover img {
		opacity: 1 !important;
	}

	.pc {
		display: none !important;
	}

	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}

/*------------------------------------------------------------
	gHeader
------------------------------------------------------------*/
#gHeader {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	border-bottom: 1px solid #E3E3E3;
	z-index: 100;
	background-color: #FFF;
}

#gHeader .hBox {
	padding: 30px 47px 26px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

#gHeader .hBox .ttl a {
	display: block;
	width: 100%;
	font-size: 1.9rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1;
}

/* gNavi */
#gNavi {
	position: fixed;
	top: 111px;
	left: 35px;
	z-index: 99;
}

#gNavi .navList a {
	padding: 16px 19px 16px 29px;
	display: block;
	font-weight: bold;
	background: url(img/common/icon01.png) no-repeat left 10px center / 6px;
}

#gNavi .navList .on {
	background-color: #1EA9D2;
}

#gNavi .navList .on a {
	color: #FFF;
	background-image: url("img/common/icon01_over.png");
}

@media all and (min-width: 897px) {
	#gNavi .navList a:hover {
		color: #FFF;
		background-image: url("img/common/icon01_over.png");
		background-color: #1EA9D2;
	}
}

@media all and (max-width: 896px) {


	body.fixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}

	.menu.active {
		display: block;
	}

	.menuBox {
		position: fixed;
		right: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		z-index: 1000;
		background: #1EA9D2;
		overflow: auto;
		display: none;
	}

	.menu {
		position: fixed;
		top: 22px;
		right: 20px;
		height: 65px;
		width: 66px;
		cursor: pointer;
		z-index: 100;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
		background-color: #145AB9;
	}

	.menu span {
		background: #FFF;
		border: none;
		height: 3px;
		width: 24px;
		position: absolute;
		top: 22px;
		left: 21px;
		transition: all .35s ease;
		cursor: pointer;
	}

	.menu span:nth-of-type(2) {
		top: 31px;
	}

	.menu span:nth-of-type(3) {
		top: 40px;
	}

	.menu.active .top {
		transform: translateY(8px) translateX(0) rotate(-45deg);
	}

	.menu.active .middle {
		opacity: 0;
	}

	.menu.active .bottom {
		transform: translateY(-10px) translateX(0) rotate(45deg);
	}

	.menuBox .navBox {
		padding: 18px 20px;
	}

	.menuBox .navBox .ttl a {
		font-size: 1.6rem;
		color: #FFF;
		font-weight: 400;
		letter-spacing: 0.05em;
	}

	.menuBox .navBox .colse {
		position: absolute;
		top: 22px;
		right: 20px;
		height: 65px;
		width: 66px;
		cursor: pointer;
		z-index: 100;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
		background-color: #145AB9;
	}

	#gNavi {
		padding: 27px 0;
		position: inherit;
		min-height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		box-sizing: border-box;
	}

	#gNavi .navList li {
		border-bottom: 1px solid #FFF;
	}

	#gNavi .navList a {
		padding: 14px 19px 16px 21px;
		color: #FFF;
		font-weight: bold;
		background-image: url("img/common/icon01_over.png");
		background-position: 2px;
		letter-spacing: 0;
	}
}

/*------------------------------------------------------------
	gFooter
------------------------------------------------------------*/
#gFooter {
	padding: 30px 0;
	text-align: center;
	background-color: #1EA9D2;
}

#gFooter address {
	color: #FFF;
	font-size: 1.3rem;
	font-weight: normal;
	font-style: normal;
	letter-spacing: 0.07em;
}

@media all and (max-width: 896px) {
	#gFooter address {
		font-size: 1.1rem;
	}
}


/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

/* flex */
.flex,
.flexA,
.flexB,
.flexC {
	display: flex;
	flex-wrap: wrap;
}

.flexA {
	justify-content: space-around;
}

.flexB {
	justify-content: space-between;
}

.flexC {
	justify-content: center;
}

/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	padding-right: 24px;
	max-width: 980px;
}

@media all and (max-width: 896px) {
	.content {
		margin: 0 20px;
		padding-right: 0;
	}
}

/* mainBox */
.mainBox {
	margin: 76px 0 0 260px;
}

@media all and (max-width: 896px) {
	.mainBox {
		margin: 0;
	}
}

/* headLine01 */
.headLine01 {
	margin-bottom: 30px;
	position: relative;
	color: #1EA9D2;
	font-size: 2.6rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.headLine01::after {
	width: 100%;
	height: 3px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #1EA9D2;
	content: '';
	z-index: -1;
}

.headLine01 span {
	padding: 16px 41px 0 0;
	display: inline-block;
	background: url(img/common/icon02.png) no-repeat top right / auto 100%, #FFF;
}

@media all and (max-width: 896px) {}

/* headLine02 */
.headLine02 {
	margin-right: 18px;
	margin-bottom: 18px;
	margin-top: 30px;

	padding: 11px 15px 14px;
	position: relative;
	color: #FFF;
	font-weight: bold;
	letter-spacing: 0.07em;
	background-color: #1EA9D2;
}

.headLine02::before {
	width: 18px;
	height: 100%;
	position: absolute;
	right: -18px;
	top: 0;
	background: url(img/common/bg01.png) no-repeat center left / 100% 100%;
	content: '';
}

@media all and (max-width: 896px) {
	.headLine02 {
		padding: 11px 6px 14px 15px;
	}
}

.btn {
	margin: 0 auto 8px;
	max-width: 321px;
}

.btn.recipi-btn {
	margin: 20px 0 8px;
}



.btn a {
	padding: 29px 50px 29px 10px;
	color: #FFF;
	display: block;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.07em;
	background: url(img/common/icon03.png) no-repeat right 65px center / 26px, #145AB9;
}

.btn01 a {
	background-position: right 49px center;
}

/* .btn.recipi-btn a {
	background: url(img/common/icon03.png) no-repeat right 30px center / 26px, #145AB9;
} */

.btnNotes {
	color: #383838;
	font-size: 1.4rem;
	font-weight: normal;
	text-align: center;
	letter-spacing: 0.07em;
}

.btnNotes.recipi-btnNotes {
	text-align: left;
}

@media all and (min-width: 897px) {
	.btn a:hover {
		opacity: 0.8;
	}
}

@media all and (max-width: 896px) {
	.btn {
		max-width: inherit;
	}

	.btn a {
		padding: 18px 50px 18px 10px;
		background-position: right 26px center;
	}

	/* .btn.recipi-btn a {
		background-position: right 26px center;
	} */
}

/*------------------------------------------------------------
	index
------------------------------------------------------------*/
.mainImg {
	margin-bottom: 74px;
}

.president {
	margin-bottom: 80px;
}

.imgBox {
	display: flex;
	justify-content: space-between;
}

.president .imgBox {
	gap: 50px;
}


.president .imgBox .photoBox {
	margin-top: 8px;
	width: 220px;
}

.president .imgBox .photoBox img {
	margin-bottom: 11px;
	width: 100%;
}

.president .imgBox .photoBox span {
	display: block;
	font-size: 1.4rem;
	line-height: 1.785;
	letter-spacing: 0.07em;
}

.president .imgBox .photoBox .name {
	font-size: 1.8rem;
	font-weight: bold;
}

.president .imgBox .textBox {
	width: calc(100% - 214px);
}

.president .imgBox .textBox p {
	text-indent: 1em;
	line-height: 1.875;
	font-weight: normal;
	letter-spacing: 0.07em;
}

.sign {
	margin-bottom: 80px;
	line-height: 1.875;
}



.sign .headLine01 {
	margin-bottom: 30px;
}

.sign .years {
	margin-bottom: 18px;
	font-weight: bold;
	letter-spacing: 0.07em;
}

.sign .years span {
	color: #1EA9D2;
	font-size: 2.4rem;
	letter-spacing: 0.15em;
}

.sign .textUl {
	margin-bottom: 40px;
}

.sign .textUl li {
	font-weight: normal;
	letter-spacing: 0.07em;
}

.sign .textUl li a {
	display: inline-block;
}

.sign .h2Ttl {
	margin-bottom: 13px;
}


.sign .h2Ttl01 {
	margin-bottom: 27px;
}

.sign .h4Ttl {
	margin-bottom: 18px;
	padding-left: 20px;
	position: relative;
	color: #1EA9D2;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.07em;
}

.sign .h4Ttl::before {
	width: 10px;
	height: 92%;
	position: absolute;
	left: 0;
	top: 4px;
	background-color: #1EA9D2;
	content: '';
}

.sign .textUl02 {
	margin-bottom: 30px;
}

.sign .textUl03 {
	margin-bottom: 27px;
}

.sign .colorNotes {
	letter-spacing: 0.07em;
	font-weight: normal;
}

.sign .colorNotes01 {
	margin-bottom: 31px;
}

.introduction {
	margin-bottom: 90px;
}

.introduction .headLine01 {
	margin-bottom: 30px;
}

.introduction .introBox {
	margin-bottom: 30px;
	padding: 15px 0 35px;
	color: #FFF;
	text-align: center;
	background-color: #1EA9D2;
}

.introduction .introBox p {
	padding: 0 10px;
	letter-spacing: 0.07em;
	font-weight: bold;
}

.introduction .introBox .botTxt {
	margin-top: 15px;
	padding-top: 26px;
	font-size: 2.4rem;
	border-top: 1px solid #FFF;
	font-weight: bold;
}

.introduction .imgBox {
	margin-bottom: 52px;
}

.introduction .imgBox01 {
	margin-bottom: 67px;
}

.introduction .imgBox02 {
	margin-bottom: 80px;
}

.introduction .photoBox {
	width: 204px;
	position: relative;
}

.introduction .photoBox .speaker {
	padding: 13px 20px;
	width: 163px;
	color: #1EA9D2;
	display: block;
	font-size: 1.7rem;
	letter-spacing: 0.07em;
	font-weight: bold;
	position: absolute;
	left: 0;
	top: -86px;
	text-align: center;
	border: 3px solid #1EA9D2;
	box-sizing: border-box;
}

.introduction .photoBox .speaker01 {
	width: 230px;
}

.introduction .photoBox .speaker::before {
	width: 14px;
	height: 16px;
	position: absolute;
	left: 49px;
	bottom: -16px;
	background: url(img/index/bg01.png) no-repeat center top / 100%;
	content: '';
}

.introduction .photoBox .img img {
	width: 100%;
}

.introduction .photoBox .img {
	display: block;
}

.introduction .textBox {
	width: calc(100% - 248px);
}

.introduction .textBox>p {
	line-height: 2.0625;
	font-weight: normal;
	letter-spacing: 0.07em;
}

.introduction .textBox .textTop {
	margin-bottom: 9px;
	padding-bottom: 18px;
	display: flex;
	align-items: center;
	font-weight: bold;
	letter-spacing: 0.07em;
	border-bottom: 1px solid #333;
}

.introduction .textBox .lTxt {
	margin-right: 22px;
	padding-right: 21px;
	font-size: 2.6rem;
	font-weight: bold;
	letter-spacing: 0.07em;
	position: relative;
	white-space: nowrap;
}

.introduction .textBox .lTxt::before {
	width: 1px;
	height: 55px;
	position: absolute;
	top: 9px;
	right: 0;
	background-color: #333;
	content: '';
}

.introduction .textBox .lTxt .en {
	margin-top: 6px;
	font-size: 1.3rem;
	font-weight: normal;
	display: block;
}

.introduction .introBox01 {
	padding: 19px 0 32px;
}

.introduction .introBox01 .botTxt {
	margin-top: 19px;
	padding: 22px 10px 0;
}

.introduction .introBox02 {
	margin-bottom: 130px;
}

.introduction .introBox02 .speaker01::before {
	top: -78px;
}

.introduction .notes {
	font-size: 2.6rem;
	font-weight: bold;
	letter-spacing: 0.07em;
}

.delivery {
	margin-bottom: 57px;
}

.delivery .headLine01 {
	margin-bottom: 30px;
}

.delivery .headLine01 span {
	padding-right: 16px;
}

.delivery .headLine01::after {
	height: 4px;
}

.delivery .headLine02 {
	padding: 8px 15px 10px;
	font-size: 2rem;
}

.delivery .textDl {
	margin: -24px 0 35px;
	display: flex;
	flex-wrap: wrap;
	font-weight: normal;
	letter-spacing: 0.07em;
}

.delivery .textDl>dt,
.delivery .textDl>dd {
	padding: 29px 0 26px;
	background: url("img/index/line.png") repeat-x left bottom / auto 1px;
}

.delivery .textDl>dt {
	width: 189px;
	font-weight: bold;
	letter-spacing: 0.07em;
}

.delivery .textDl>dd {
	width: calc(100% - 189px);
	letter-spacing: 0.07em;
}

.delivery .textDl>dd .h4Ttl {
	margin-bottom: 8px;
	line-height: 1.66;
	font-size: 1.8rem;
	font-weight: bold;
}

.delivery .textDl>dd .h4Ttl01 {
	margin-bottom: 20px;
}

.delivery .textDl>dd .h4Ttl02 {
	margin-bottom: 4px;
}

.delivery .textDl>dd .txt {
	margin-bottom: 7px;
}

.delivery .textDl .list {
	font-weight: normal;
}

.delivery .textDl .list li {
	margin-bottom: 6px;
}

/* .delivery .textDl .list01 {
	margin-bottom: 26px;
} */

.delivery .textDl .list02 {
	margin-bottom: 30px;
	margin-top: 15px;
}

.delivery .textDl .innerDl {
	display: flex;
	flex-wrap: wrap;
}

.delivery .textDl .innerDl dt {
	width: 120px;
}

.delivery .textDl .innerDl .wid {
	width: 105px;
}

.delivery .textDl .innerDl dd {
	width: calc(100% - 120px);
	line-height: 1.875;
}

.delivery .textDl .innerDl dt {
	line-height: 1.85;
}

.delivery .textDl .last {
	background: none;
}

.poster {
	margin-bottom: 80px;
}

.poster .h2Mar {
	margin-bottom: 29px;
}

.poster .img {
	margin-bottom: 58px;
	width: 599px;
}

.poster p {
	font-weight: normal;
	line-height: 1.875;
	letter-spacing: 0.07em;
}

.poster .h2Ttl {
	margin-bottom: 12px;
}

.poster .headLine02+p {
	margin-bottom: 63px;
}

.poster .posterBox {
	margin-bottom: 12px;
	padding: 26px 36px 25px 81px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	background: #F2F2F2;
	box-sizing: border-box;
}

.poster .posterBox01 {
	margin-bottom: 60px;
}

.poster .posterBox .number {
	position: absolute;
	left: 12px;
	top: 9px;
	color: #FFF;
	font-weight: bold;
	letter-spacing: 0.07em;
}

.poster .posterBox::before {
	width: 82px;
	height: 86px;
	position: absolute;
	left: 0;
	top: 0;
	background: url("img/index/bg03.png") no-repeat left top / 100%;
	content: '';
}

.poster .posterBox .posterLeft {
	display: block;
	/* width: calc(100% - 232px); */
	width: 100%;
}

.poster .posterBox .posterLeft .ttl {
	margin-bottom: 4px;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.07em;
}

.poster .posterBox .posterLeft .author {
	font-weight: normal;
	letter-spacing: 0.07em;
}

.poster .posterBox .posterLink {
	margin-top: 5px;
	width: 159px;
	text-align: center;
	background-color: #1EA9D2;
}

.poster .posterBox .posterLink a {
	padding: 16px 10px 16px;
	display: block;
	color: #FFF;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.07em;
}

.poster .posterBox .posterLink a img {
	margin-left: 12px;
	vertical-align: -4px;
	width: 21px;
}

.question {
	margin-bottom: 54px;
}

.venue {
	margin-bottom: 80px;
}

.venue .h3Ttl {
	margin-bottom: 12px;
	color: #1EA9D2;
	font-size: 2.4rem;
	font-weight: bold;
	letter-spacing: 0.07em;
}

.venue .map {
	margin-bottom: 25px;
	width: 100%;
	height: 445px;
	margin-top: 50px;
}

.venue .map iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.venue p {
	font-size: 1.6rem;
	font-weight: normal;
	letter-spacing: 0.07em;
}

/* .venue .add {
	margin-bottom: 22px;
} */

.introduction .textBox .rTxt {
	font-weight: normal;
}

p.kazyou {
	text-indent: -1em;
	padding-left: 1em;
}

p.add_2 {
	margin-top: 20px;
	font-size: 14px;
	padding: 16px 20px;
	background-color: #f5f5f5;
	display: inline-block;
}

.venue .textUl {
	padding-left: 17px;
	letter-spacing: 0.07em;
	font-weight: normal;
	position: relative;
}

.venue .textUl::before {
	width: 1px;
	height: calc(100% - 5px);
	position: absolute;
	left: -3px;
	top: 3px;
	background-color: #1EA9D2;
	content: '';
}

.venue .textUl li {
	margin-bottom: 7px;
}

.support {
	margin-bottom: 80px;
}

.support .headLine01 {
	margin-bottom: 30px;
}

.support .headLine02 {
	margin-bottom: 14px;
}

.support p {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 2.0625;
	letter-spacing: 0.07em;
}

/* .support .headLine02+p {
	margin-bottom: 38px;
} */

.support .textUl {
	font-size: 1.6rem;
	font-weight: normal;
	letter-spacing: 0.07em;
}

.support .textUl li {
	margin-bottom: 9px;
}

.contact {
	margin-bottom: 76px;
}

.contact .headLine01 {
	margin-bottom: 30px;
}

.contact p {
	margin-bottom: 9px;
	font-size: 1.6rem;
	font-weight: normal;
	letter-spacing: 0.07em;
}

.contact p a {
	display: inline-block;
}

.contact .link {
	margin-bottom: 55px;
}

.contact .link a {
	text-decoration: underline;
}

.contact .headLine02 small {
	margin-left: 10px;
	font-size: 1.3rem;
}

.contact .textUl {
	font-weight: normal;
	letter-spacing: 0.07em;
}

.contact .textUl li {
	margin-bottom: 9px;
}

@media all and (min-width: 897px) {
	.contact p .tel a:hover {
		opacity: 0.7;
	}

	.contact .link a:hover {
		text-decoration: none;
	}

	.poster .posterBox .posterLink a:hover {
		opacity: 0.7;
	}

	.sign .textUl li a:hover {
		text-decoration: underline;
	}
}

@media all and (max-width: 896px) {
	.imgBox {
		display: block;
	}

	.mainImg {
		margin-bottom: 61px;
	}

	.mainImg img {
		width: 100vw;
	}

	.president .headLine01 {
		margin-bottom: 64px;
	}

	.president .imgBox .photoBox {
		margin: 0 auto 46px;
	}

	.president .imgBox .textBox {
		width: auto;
	}

	.president .imgBox .textBox p {
		line-height: 2;
	}

	.sign .years span {
		display: block;
		font-size: 2.2rem;
	}


	.introduction {
		margin-bottom: 70px;
	}

	.introduction .introBox .botTxt {
		padding: 26px 6px 0;
		font-size: 1.9rem;
	}

	.introduction .imgBox01 {
		margin: 134px 0 60px;
	}

	.introduction .imgBox02 {
		margin-bottom: 52px;
	}

	.introduction .photoBox {
		margin: 0 auto 56px;
	}

	.introduction .textBox {
		width: auto;
	}

	.introduction .textBox .lTxt {
		margin-right: 10px;
		padding-right: 10px;
		font-size: 2rem;
		box-sizing: border-box;
		max-width: 180px;
		white-space: normal;
	}

	.introduction .textBox .rTxt {
		font-size: 13px;
		flex: 1;
	}

	.introduction .textBox .lTxt::before {
		height: 100%;
		top: 0;
	}

	.delivery .headLine01 span {
		padding-bottom: 3px;
		font-size: 2rem;
	}

	.delivery .textDl {
		display: block;
	}

	.delivery .textDl>dt,
	.delivery .textDl>dd {
		width: auto;
	}

	.delivery .textDl>dt {
		padding-bottom: 0;
		background: none;
	}

	.delivery .textDl>dd {
		padding-top: 16px;
	}

	.delivery .textDl>dd .h4Ttl {
		font-size: 1.7rem;
	}

	.delivery .textDl .list li {
		font-size: 1.35rem;
	}

	.delivery .textDl .innerDl dd {
		font-size: 1.4rem;
	}

	.poster .img {
		width: auto;
	}

	.poster .posterBox {
		padding: 36px 50px 36px 50px;
		display: block;
	}

	.poster .posterBox .posterLeft {
		margin: 0;
		width: auto;
		box-sizing: border-box;
	}

	.poster .posterBox .posterLeft .ttl {
		font-size: 1.6rem;
	}

	.poster .posterBox .posterLink {
		width: auto;
	}

	.poster .posterBox .posterLink a {
		padding: 7px 4px;
		font-size: 1.3rem;
	}

	.poster .posterBox .posterLink a img {
		margin-left: 6px;
		width: 14px;
	}

	.venue .map {
		height: auto;
		aspect-ratio: 980/445;
	}

	.venue .map iframe {
		object-fit: cover;
	}

	.venue .h3Ttl {
		font-size: 1.8rem;
	}

	.venue .textUl {
		padding-left: 10px;
	}
}

@media all and (max-width: 374px) {
	.introduction .textBox .rTxt {
		width: calc(100% - 114px);
	}

	.introduction .introBox .botTxt {
		font-size: 1.6rem;
	}

	.delivery .textDl .innerDl dt {
		width: 100px;
		font-size: 1.3rem;
	}

	.delivery .textDl .innerDl dd {
		width: calc(100% - 106px);
		font-size: 1.3rem;
	}
}




br.sp-on {
	display: none;
}


@media (max-width: 768px) {
	br.sp-on {
		display: block;
	}
}


/* 20230622追加 */

ul.speach-list li {
	text-indent: -2em;
	padding-left: 2em;
}


img.window {
	width: 24px;
}

section.support li a {
	text-decoration: underline;
}


.regional_btn {
	margin: 20px 0 8px;
}

p.add_attention {
	text-indent: -1em;
	padding-left: 1em;
	font-size: 14px;
}

p.add_attention {
	text-indent: -1em;
	padding-left: 1em;
	font-size: 14px;
	margin-top: 10px;
}

@media (max-width: 896px) {
	p.add_attention br {
		display: none;
	}

	p.add_2 br {
		display: none;
	}
}


.movie_flex {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.btn.recipi-btn.movie_btn {
	margin: 15px 0 0 0;
}

.btn.recipi-btn.movie_btn a {
	width: 150px;
	padding-top: 18px;
	padding-bottom: 18px;
	font-size: 16px;
	background: url(img/common/icon03.png) no-repeat right 25px center / 19px, #145AB9;
	padding-right: 23px;
}


.train_ttl {
	color: #1EA9D2;
	font-weight: bold;
	border-bottom: 2px solid #1EA9D2;
	margin: 20px 0 10px;
	padding-bottom: 8px;
}


.fukidashi {
	margin-bottom: 30px;
}

.bunkaiin {
	margin-bottom: 50px;
	font-size: 26px;
	font-weight: bold;
}

.panel_sectionttl {
	color: #1EA9D2;
	font-weight: bold;
	font-size: 24px;
	margin: 30px 0;
	border-bottom: 3px solid #1EA9D2;
	padding-bottom: 10px;
}

.timetable_panelsection {
	color: #1EA9D2;
	margin: 20px 0 10px;
	border-bottom: 2px solid #1EA9D2;
	padding-bottom: 8px;
	font-weight: bold;
}

.photo_copy {
	font-size: 10px;
	text-align: right;
}

.list_btn a {
	background-color: #145AB9;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	padding: 29px 80px 29px 30px;
	margin: 15px 0;
	background-image: url(img/common/icon03.png);
	background-repeat: no-repeat;
	background-position: 120px center;
	background-size: 26px;
}



@media (max-width: 768px) {
	.movie_flex {
		flex-direction: column;
		justify-content: flex-start;
	}

	.delivery .textDl .list02 {
		margin-bottom: 0;
	}

	.movie_flex2 {
		margin-bottom: 30px;
	}

	.panel_sectionttl {
		font-size: 18px;
	}
}

.delivery .headLine01 span.archiveTtl {
	padding-right: 28px;
}





/* ------------------------------

プログラム登壇者

------------------------------- */

.movie_flex {
	display: block;
}

.program_table {
	width: 100%;
}


.program_table table {
	border-collapse: collapse;
	border: 1px solid #c6c6c6;
	margin-top: 15px;
	width: 100%;

}

.program_table table th {
	width: 110px;
	background-color: #e0f6ff;
	padding: 10px 15px;
	border: 1px solid #c6c6c6;
}

.program_table table td {
	padding: 10px 15px;
	border: 1px solid #c6c6c6;
}

a.poster24_link {
	gap: 8px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #1EA9D2;
	height: 56px;
	padding: 0 20px;
	margin-top: 20px;
}

.btn_poster24 {
	margin-top: 20px;
}


@media (max-width: 480px) {
	.program_table table {
		font-size: 14px;
		border: none;
	}

	.program_table table th {
		width: 91px;
	}

	.program_table table th {
		display: block;
		width: auto;
		margin-top: -1px;

	}

	.program_table table td {
		display: block;
		width: auto;
		margin-top: -1px;
	}

	a.poster24_link {
		padding: 0;
		width: 100%;
	}
}