<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*
  File Name   : site-hiroshima-uij.css
  Description : GO!ひろしまトップページ用CSS_2024
*/


/* PC Layout ******************************************************************************************* */

/* Common
============================================================ */


/* Home
============================================================ */
/*add 20200803*/
body {
	min-width: 1100px;
	margin: 0;
	font-family: 'Noto Sans JP';
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
	position: absolute;
	width: 50px;
    height: 44px;
    cursor: pointer;
    right: 20px;
    top: 20px;
    z-index: 300;
}

.hamburger::after {
	position: absolute;
	left: 0;
	bottom: -25px;
	content: 'MENU';
	display: block;
	width: 100%;
	color: #3E3A39;
	font-size: 17px;
    font-weight: 900;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	transition: all .4s;
}

.hamburger__line {
  position: absolute;
  width: 50px;
  height: 6px;
  right: 0;
  background-color: #FF817B;
  transition: all 0.5s;
}

.hamburger__line--1 {
	top: 0;
}

.hamburger__line--2 {
	top: 20px;
}

.hamburger__line--3 {
	bottom: 0;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
	transform: translateY(18px) rotate(-45deg);
	top: -2px;
}

.open .hamburger__line--2 {
	opacity: 0;
}

.open .hamburger__line--3 {
	transform: translateY(-20px) rotate(45deg);
	top: 35px;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
	position: fixed;
	right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
	top: 0;
	width: 40%; /* 出てくるスライドメニューの幅 */
	height: 100vh;
	background-color: #fff;
	transition: all 0.5s;
	z-index: 200;
	overflow-y: auto; /* メニューが多くなったらスクロールできるように */
	padding: 6rem 4rem;
}

.sp-nav li {
	color: #FF817B;
    border-bottom: 1px solid #FF817B;
    font-size: 20px;
    font-weight: 800;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.sp-nav ul li::after{
	content: "→";
    font-size: 22px;
    color: #3A3E39;
    position: absolute;
    right: 70px;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
	right: 0;
}

@media screen and (max-width: 480px) {
	.sp-nav {
		position: fixed;
		right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
		top: 0;
		width: 40%; /* 出てくるスライドメニューの幅 */
		height: 100vh;
		background-color: #fff;
		transition: all 0.5s;
		z-index: 200;
		overflow-y: auto; /* メニューが多くなったらスクロールできるように */
		padding: 6rem 4rem;
	}

	.sp-nav li {
		font-size: 16px;
		padding-bottom: 10px;
		margin-bottom: 30px;
	}

	.sp-nav ul li::after{
		right: 40px;
		font-size: 18px;
		content: "";
	}

}
	
/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 5;
	background-color: #000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	cursor: pointer;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
	opacity: 0.3;
	visibility: visible;
}
/*ハンバーガーメニュー内 アコーディオン*/
.accordion {
	margin: 3em auto 2em;
}
.toggle {
	display: none;
}
.option {
	position: relative;
	margin-bottom: 1em;
}
.title_acc,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.title_acc {
	font-size: 20px;
    padding-bottom: 10px;
	display: block;
	font-weight: bold;
	color: #FF817B;
}
.title_acc::after,
.title_acc::before {
	content: "";
	position: absolute;
	right: 1em;
	top: 0.2em;
	width: 2px;
	height: 0.75em;
	background-color: #3A3E39;
	transition: all 0.3s;
}
.title_acc::after {
	transform: rotate(90deg);
}
@media screen and (max-width: 480px) {
	.title_acc,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.title_acc {
	color: #FF817B;
	font-size: 16px;
    padding-bottom: 10px;
	display: block;
	font-weight: bold;
}
	.content p {
		padding: 1em 0 0;
		font-size: 16px;
		line-height: 1.2;
}
}
.content {
	max-height: 0;
	overflow: hidden;
}
.content p {
	margin: 0;
    padding: 17px 20px 0;
    font-size: 16px;
    line-height: 1.5;
}
.toggle:checked + .title_acc + .content {
max-height: 500px;
transition: all 1.5s;
}
.toggle:checked + .title_acc::before {
transform: rotate(90deg) !important;
}
/*ハンバーガーメニュー内 アコーディオン終わり*/
.BodyLayer{
  position: relative; /* 必須！ */
}

.header-box {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  background: #fff;
  z-index: 1500;
}

.header-01-logo {
	bottom: 0;
    position: absolute;
	width: 350px;
	margin-left: 30px;
}

.header-01-logo img {
	width: 100%;
}

.hnav_btn {
    display: flex;
    justify-content: right;
    right: 100px;
    position: absolute;
    top: 30px;
}

.hnav-item {
    font-size: 15px;
    font-weight: 600;
    color: #3E3A39;
    background: #FCFC9D;
    border: 2px solid;
    padding: 7px;
	box-shadow: 2.5px 2.5px #FF817B;
	transition: .3s;
}

.hnav-item:nth-child(2) {
    margin-left: 25px;
}

.hnav-item:hover{
	transform: translate3d(0, 5px, 0);
    box-shadow: none;
    background: #FFEBE8;
}

.hnav-item img {
    width: 24px;
	vertical-align: text-top;
	margin-right: 5px;
}

.font-btn_inner {
	display: flex;
    position: absolute;
    top: 33px;
    right: 600px;
}

.font-text {
	font-size: 15px;
	font-weight: 700;
	margin-right: 17px;
	padding-top: 10px;
}

.font-btn {
    background-color: #FFEBE8;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 600;
}

.font-btn_inner p:nth-child(3){
	margin-left: 10px;
}

.kv {
	position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.kv-text{
	width: 50%;
    line-height: 1.8;
    font-weight: 600;
    color: #3E3A39;
    position: absolute;
    right: 6%;
    bottom: 10%;
	font-size: 1.3rem;
	border: none;
    letter-spacing: inherit;
    padding: inherit;
}

.info_box {
    width: 1100px;
    margin: 0 auto;
	border-bottom: 5px solid #FF817B;
	padding-bottom: 1rem;
}

.info-content {
	width: 80%;
    margin: 0 auto;
}

.info-content li {
	border-bottom: 1px solid #707070;
    margin: 1rem 0 25px;
    font-size: 1.2rem;
    padding-bottom: 15px;
    text-align: left;
    display: flex;
    align-items: center;
}
.info-content li .date {
	color: #fff;
    background: #707070;
    border-radius: 5px;
    padding: 5px 15px;
    margin: 0 20px;
    font-size: 16px;
    white-space: nowrap;
}

.info-content li .info_text {
	width: 80%;
    display: block;
}

.contents-box {
	width: 1100px;
    margin: 100px auto;
}

.title {
	font-size: 2.3rem;
    font-weight: 900;
    border-bottom: 3px solid!important;
    width: 70%;
    text-align: center;
    margin: 0 auto 3rem;
    padding-bottom: 10px;
    letter-spacing: 0.1rem;
    background: none;
    border: none;
}

.title_m {
	font-size: 2.3rem;
    font-weight: 900;
    border-bottom: 3px solid!important;
    width: 50%;
    text-align: center;
    margin: 0 auto 3rem;
    padding-bottom: 10px;
    letter-spacing: 0.1rem;
    background: none;
    border: none;
}

.title_s {
	font-size: 2.3rem;
    font-weight: 900;
    border-bottom: 3px solid!important;
    width: 25%;
    text-align: center;
    margin: 0 auto 3rem;
    padding-bottom: 10px;
    letter-spacing: 0.1rem;
    background: none;
    border: none;
}

.title_l {
	font-size: 2.3rem;
    font-weight: 900;
    border-bottom: 3px solid!important;
    width: 90%;
    text-align: center;
    margin: 0 auto 3rem;
    padding-bottom: 10px;
    letter-spacing: 0.1rem;
    background: none;
    border: none;
}

.title::after,
.title_m::after,
.title_s::after,
.title_l::after{
	border: none;
}

.btn_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.btn2_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.btn {
	font-size: 1.6rem;
    letter-spacing: 4px;
    font-weight: 600;
    border: 2px solid #FF817B;
    padding: 1rem 3.5rem 1rem 2rem;
    display: table;
    margin: 30px auto;
    position: relative;
    background-color: #fff;
	box-shadow: 2.5px 2.5px #ff817b;
	width: 1100px;
	transition: .3s;
	text-align: left;
}

.btn span::before{
	background-image: url("../../../../soshiki_file/go-hiroshima/index/triangle.png");
	content: "";
    background-position: center;
	background-size: contain;
	display: block;
	position: absolute;
	width: 1em;
	height: 1em;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 20px;
	background-repeat: no-repeat;
}

.btn:hover{
	transform: translate3d(0, 5px, 0);
    box-shadow: none;
    background: #FFEBE8;
}

.contents-btnbox {
	margin: 5rem auto;
}

.btn_inner {
	color: #3E3A39;
}

.btn1_inner {
	color: #3E3A39;
	margin-left: -35px;
}

.btn2_inner {
	color: #3E3A39;
	width: 30%;
    margin: 0 auto;
}

.btn_inner a {
	font-size: 1.2rem;
	letter-spacing: 2px;
    font-weight: 600;
    border: 2px solid #FF817B;
    padding: 15px 50px 15px 20px;;
    display: table;
    margin: 50px auto 25px;
    position: relative;
    background-color: #fff;
	box-shadow: 2.5px 2.5px #ff817b;
	transition: .3s;
	white-space: nowrap;
}

.btn1_inner a {
	font-size: 1.2rem;
	letter-spacing: 2px;
    font-weight: 600;
    border: 2px solid #FF817B;
    padding: 15px 40px 15px 25px;
    display: table;
    margin: -50px auto 25px;
    position: relative;
    background-color: #fff;
	box-shadow: 2.5px 2.5px #ff817b;
	transition: .3s;
}

.btn2_inner a {
	font-size: 1.4rem;
	letter-spacing: 2px;
    font-weight: 600;
    border: 2px solid #FF817B;
    padding: 15px 50px 15px 20px;
    display: table;
    margin: -30px auto 30px;
    position: relative;
    background-color: #fff;
	box-shadow: 2.5px 2.5px #ff817b;
	transition: .3s;
}

.btn_pd {
    padding: 24px 50px 24px 25px!important;
}

.btn_inner img,
.btn1_inner img{
	width: 300px;
	height: 300px;
}

.btn2_inner img{
	width: 100%;
}

.btn_inner a::before{
	background-image: url("../../../../soshiki_file/go-hiroshima/index/triangle.png");
	content: "";
    background-position: center;
	background-size: contain;
	display: block;
	position: absolute;
	width: 1em;
	height: 1em;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 20px;
	background-repeat: no-repeat;
}
.btn_inner a:hover{
	transform: translate3d(0, 5px, 0);
    box-shadow: none;
    background: #FFEBE8;
}

.btn1_inner a::before{
	background-image: url("../../../../soshiki_file/go-hiroshima/index/triangle.png");
	content: "";
    background-position: center;
	background-size: contain;
	display: block;
	position: absolute;
	width: 1em;
	height: 1em;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 20px;
	background-repeat: no-repeat;
}
.btn1_inner a:hover{
	transform: translate3d(0, 5px, 0);
    box-shadow: none;
    background: #FFEBE8;
}

.btn2_inner a::before{
	background-image: url("../../../../soshiki_file/go-hiroshima/index/triangle.png");
	content: "";
    background-position: center;
	background-size: contain;
	display: block;
	position: absolute;
	width: 1em;
	height: 1em;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 20px;
	background-repeat: no-repeat;
}
.btn2_inner a:hover{
	transform: translate3d(0, 5px, 0);
    box-shadow: none;
    background: #FFEBE8;
}

.merit-box {
	background-color: #FFEBE8;
	padding: 100px 0;
	width: 100vw;
    margin: 0 calc(50% - 50vw);
}

.merit-box p {
	font-size: 1.4rem;
    font-weight: 600;
    color: #3E3A39;
    line-height: 1.6;
    text-align: center;
    padding-bottom: 3rem;
}

.evenly {
	justify-content: space-between;
	width: 1100px;
    margin: 0 auto;
}

.banner-contents {
	width: 1100px;
    margin: 100px auto;
	text-align: center;
}

.banner-contents img {
	width: 600px;
}

.movie-contents {
	width: 1100px;
    margin: 100px auto;
}

.movie_box {
	justify-content: space-between;
    display: flex;
}

.cv-btn-fixed {
    right: 0;
	cursor: pointer;
	z-index: 999;
}

.cv-btn-fixed img {
	width: 300px;
}

.banner-box {
	border-top: 5px solid #FFB5AD;
	border-bottom: 5px solid #FFB5AD;
    padding: 5rem 0;
    width: 1100px;
    margin: 0 auto;
}

.box_b {
    display: flex;
    justify-content: space-between;
}

.box img {
    width: 250px;
}

.logo-box {
    padding: 5rem 0;
    width: 1100px;
    margin: 0 auto;
}

.box_center {
	width: 165px;
    margin: 0 auto;
}

.pagetop {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    font-weight: 400;
    border: 1px solid #707070;
    padding: 0.5rem 1rem 0.5rem 3rem;
    display: table;
    margin: 60px auto;
    position: relative;
    border-radius: 26px;
	color: #707070;
	width: fit-content;
}

.pagetop a::before{
	content: "▲";
	display: block;
	position: absolute;
	width: 1em;
	height: 1em;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto 20px;
	font-size: 11px;
	color: #707070;
}

.footer {
	background-color: #FF9A95;
	padding: 70px 0;
    display: flex;
	position: relative;
}

.footer_inner {
    width: 1100px;
    margin: 0 auto;
}

.footer_left {
	float: left;
}

.f_text {
    font-size: 17px;
    color: #3E3A39;
    line-height: 1.8;
    margin: 14px 0;
    letter-spacing: 1px;
}

.f_text span {
    text-decoration:underline;
}

.footer-right {
	float: right;
}

.footer-logo {
    width: 320px;
}

.footer-nav {
    display: flex;
    justify-content: flex-end;
}

.footer-nav-item {
    font-size: 17px;
    font-weight: 600;
    color: #3E3A39;
	margin-left: 25px;
	margin-bottom: 15px; 
}

.footer-nav-item img {
    width: 24px;
	margin-right: 7px;
}

.nav_btn {
    display: flex;
    justify-content: flex-end;
}

.nav-item {
    font-size: 17px;
    font-weight: 600;
    color: #3E3A39;
    background: #fff;
    border: 2px solid;
    padding: 7px;
	box-shadow: 2.5px 2.5px #FF817B;
	transition: .3s;
}

.nav-item:nth-child(2) {
    margin-left: 20px;
}

.nav-item:hover{
	transform: translate3d(0, 5px, 0);
    box-shadow: none;
    background: #FFEBE8;
}

.mglf-25{
	 margin-left: 25px; 
}

.nav-item img {
    width: 24px;
	vertical-align: text-top;
	margin-right: 7px;
}

.sns_flex{
	display: flex;
}

.sns_flex a{
    margin-right: 20px;
    padding: 15px 0;
	width: 100px;
}

.sns_flex a:nth-child(3) {
	margin-right: 0;
}

.sns_flex span img {
    width: 70px;
    vertical-align: bottom;
}

.copyright {
    clear: both;
	font-size: 15px;
}

/* tablet Layout ******************************************************************************************* */
@media screen and (min-width: 768px) and (max-width: 1250px) {
	.header-box {
		height: 134px;
	}
	
	.header-01-logo {
		bottom: inherit;
		width: 460px;
		top: 30px;
	}
	
	.hamburger {
		right: 24px;
		top: 35px;
	}

	.hnav_btn {
		top: 72px;
	}

	.hnav-item {
        font-size: 15px;
	}
	
	.font-btn_inner {
		top: 20px;
		right: 100px;
	}
	
	.font-text {
		font-size: 15px;
	}
	
	.font-btn {
		font-size: 15px;
	}
	.kv {
		padding-top: 134px;
	}
	.kv-text {
		right: 4%;
		bottom: 2%;
		font-size: 1.1rem;
	}
	.info_box {
		padding-top: 40px;
		width: 90%;
	}
	.info-content li {
		font-size: 1.1rem;
	}
	
	.btn_box {
		width: 90%;
		margin: 0 auto;
	}
	
	.contents-box {
		width: 100%;
	}
	
	.evenly {
		width: 90%;
	}
	.btn_inner{
		margin: 0 auto;
	}
	
	
	.btn_inner,
	.btn1_inner{
		width: 27%;
	}
	
	.btn2_inner {
		width: 30%;
		margin: 0 auto;
	}
	
	.btn2_inner img {
		width: 100%;
		height: fit-content;
	}
	
	.contents-btnbox {
		width: 80%
	}
	
	.btn_inner img,
	.btn1_inner img,
	.btn2_inner img{
		width: 100%;
	}
	
	.btn,
	.banner-contents,
	.logo-box{
		width: 100%
	}
	
	.movie-contents,
	.banner-box{
		width: 90%;
	}
	
	.movie_box iframe {
		width: 300px;
		height: 180px;
	}
	
	.box_b a li{
		width: 75%;
		margin: 0 auto;
	}
	
	.footer_inner {
		width: 90%;
	}
	
	.f_text {
		font-size: 15px;
	}
}

/* SP Layout ******************************************************************************************* */

/* Index
============================================================ */
@media screen and (max-width: 767px) {
}

@media screen and (max-width: 480px) {
	body{
		min-width: 100%;
	}
	.hamburger {
		position: absolute;
		right: 20px;
		top: 20px;
		width: 41px;
		height: 30px;
		cursor: pointer;
		z-index: 999;
	}
	
	.hamburger::after {
		width: inherit;
		top: 43px;
		font-size: 14px;
	}
	
	.hamburger__line {
		background-color: #3E3A39;
		width: 40px;
	}
	
	.hamburger__line--2 {
		top: 15px;
	}
	
	.hamburger__line--3 {
		top: 30px;
	}
	
	.sp-nav {
		position: fixed;
		right: -100%;
		top: 0;
		width: 97%;
		height: 100vh;
		transition: all 0.5s;
		z-index: 200;
		overflow-y: auto;
		padding: 180px 35px 70px;
	}
	
	.header-box {
		height: 0;
		z-index: 99;
	}

	.hnav_btn {
		display: flex;
		justify-content: right;
		right: 100px;
		position: absolute;
		top: 90px;
	}

	.hnav-item {
		font-size: 14px!important;
		color: #3E3A39!important;
		border-bottom: 2px solid #3E3A39!important;
		margin-bottom: 20px!important;
		margin-left: 30px!important;
		width: 100%;
	}
	
	.hnav-item:nth-child(1) {
		width: fit-content;
	}
	
	.hnav-item:nth-child(2) {
		width: 106%;
	}
	
	.hnav-item::after {
		opacity: 0;
	}

	.hnav-item:hover{
		transform: translate3d(0, 5px, 0);
		box-shadow: none;
		background: #FFEBE8;
	}

	.hnav-item img {
		width: 18px;
		vertical-align: sub;
	}
	
	.font-btn_inner {
		right: auto;
	}

	.font-text {
		padding-top: 10px;
	}

	.kv {
		padding-top: 0;
	}

	.kv-text{
		width: 80%;
		position: relative;
		right: 0;
		bottom: 0;
		font-size: 1.1rem;
		margin: 0 auto;
		font-weight: 500;
	}

	.info_box {
		width: 80%;
		border-bottom: 3px solid #FF817B;
		padding-bottom: 2rem;
	}
	
	.info-content {
		width: 100%;
	}

	.info-content li {
		border-bottom: 1px solid #C4C4C4;
		margin: 1rem 0 20px;
		font-size: 1rem;
		padding-bottom: 10px;
		line-height: 30px;
		display: block;
	}
	
	.info-content li .date {
		margin: 0;
	}

	.info-content li .info_text {
		width: 100%;
	}
	
	.contents-box {
		width: 80%;
		margin: 50px auto;
		position: relative;
	}

	.title {
		width: 100%;
		letter-spacing: 2px;
		position: relative;
		font-size: 2rem;
		padding: 0 0 10px;
	}
	
	.title_m {
		width: 80%;
		letter-spacing: 2px;
		line-height: 40px;
		font-size: 2rem;
		padding: 0 0 10px;
	}

	.title_s {
		width: 45%;
		margin: 50px auto 30px;
		padding: 0 0 10px;
		font-size: 2rem;
	}

	.title_l {
		line-height: 43px;
		width: 100%;
		font-size: 1.8rem;
		margin: 0;
		padding: 0 0 10px;
		white-space: nowrap;
	}
	
	.title_l span {
		font-size: 2.3rem;
	}

	.btn_box {
		display: inline-block;
		clear: both;
	}
	
	.btn1_box {
		display: inline-block;
		clear: both;
	}
	
	.evenly {
		width: 70%;
		margin: 0 auto;
	}
	
	.btn_pd {
		padding: 15px 40px 15px 20px!important;
	}

	.btn {
		width: 90%;
		font-size: 1.4rem;
	}
	
	.left {
		margin-top: -40px;
		margin-left: -20px!important;
	}
	
	.right {
		float: right;
		margin-top: -20px;
		margin-right: -20px;
	}
	
	.btn_inner {
		width: 75%;
		margin: 0 auto;
	}
	
	.btn1_inner {
		margin-left: 0;
		width: 75%;
	}
	
	.btn2_inner {
		width: 100%;
		margin-left: 0;
	}

	.btn_inner span {
	    font-size: 1.1rem;
		margin: -35px auto 40px;
	}
	
	.btn1_inner span {
		font-size: 1.1rem;
		padding: 0.7rem 3.5rem 0.7rem 2rem;
	}
	
	.btn2_inner span {
	    font-size: 1.1rem;
		margin: -35px auto 40px;
	}

	.btn_inner img {
		width: 100%;
		height: auto;
	}
	
	.btn1_inner img {
		width: 100%;
		height: auto;
	}
	
	.btn2_inner img {
		width: 100%;
		height: auto;
	}

	.merit-box {
		padding: 50px 0;
	}

	.merit-box p {
		font-size: 15px;
		font-weight: 500;
		line-height: 1.8;
		text-align: left;
		padding-bottom: 2rem;
		width: 80%;
		margin: 0 auto;
	}

	.banner-contents {
		width: 80%;
		margin: 100px auto;
	}

	.banner-contents img {
		width: 100%;
		margin-top: 30px;
	}

	.movie-contents {
		width: 80%;
		margin: 50px auto;
	}

	.movie_box {
		display: block;
	}
	
	.movie_box iframe {
		width: 100%;
		margin-top: 2rem;
	}

	.cv-btn-fixed {
		right: 0;
		bottom: 0;
		cursor: pointer;
		z-index: 97;
	}

	.cv-btn-fixed img {
	    width: 80%;
	}

	.banner-box {
		padding: 3rem 0 1rem;
		width: 80%;
	}

	.box_b {
		display: block;
	}
	
	.box_b li {
		margin-bottom: 2rem;
	}

	.logo-box {
		padding: 5rem 0 9rem;
		width: 80%;
		margin: 0 auto;
	}

	.pagetop {
		border: none;
		padding: 0;
		margin: 30px auto 0;
		position: fixed;
		right: 0;
		bottom: 0;
		cursor: pointer;
		transition: .3s;
		z-index: 98;
		width: 16.5%;
	}

	.pagetop a::before{
		content: "";
	}

	.footer {
		padding: 5rem 0;
	}

	.footer_inner {
		width: 80%;
		margin: 0 auto;
	}

	.footer_left {
		float: inherit;
	}

	.f_text {
		font-size: 14px;
		margin: 1.5rem 0;
		line-height: 24px;
	}

	.footer-right {
		float: inherit;
	}

	.footer-logo {
		width: 100%;
	}

	.footer-nav {
		display: flex;
		justify-content: flex-end;
	}
	
	.footer-nav-item {
		font-size: 15px;
	}

	.footer-nav-item img {
		width: 24px;
	}

	.nav_btn {
		display: block;
		width: fit-content;
		margin-bottom: 25px;
	}

	.nav-item {
		font-size: 14px;
		padding: 7px 15px;
	}
	
	.nav-item:nth-child(2) {
		margin-left: 0;
	}

	.mglf-25{
		margin-left: 0; 
		width: 100%;
	}
	
	.s-150 {
		width: 150px;
		margin-bottom: 10px;
	}

	.nav-item img {
		width: 18px;
		vertical-align: sub;
		margin-right: 6px;
	}
	
	.sns_flex {
		justify-content: center;
	}
	
	.copyright {
		text-align: center;
		line-height: 22px;
	}
}

@media screen and (max-width: 425px) {
	
}

@media screen and (max-width: 375px) {
	
}

@media screen and (max-width: 325px) {
	
}
	
/*** hypertext ***/

a:link {
  text-decoration: none;
}

a:hover,
a:active {
  text-decoration: none;
}

a img {
  border: none;
}

a:hover,
a:hover img,
input:hover {
  filter: alpha(opacity=70);
  -moz-opacity: .7;
  opacity: .7;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

figure {
  margin: 0;
}


/*** pc-only / sp-only ***/

@media screen and (min-width: 750px) {
	.sp-only {
		display: none !important;
	}
	.pc-only {
		display: block !important;
	}
}

@media screen and (max-width: 749px) {
	.pc-only {
		display: none !important;
	}
	.sp-only {
		display: block !important;
	}
}


/* Common
----------------------------------------------------------- */
.inner1400 {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0;
}
.inner1000 {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 20px;
}
.inner900 {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 940px;
  padding: 0 20px;
}

.flex {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
}
img{
	width: 100%;
	height: auto;
}
/* 隠す */
.hide {
	display: block;
	width: 0px;
	height: 0px;
	margin: 0px;
	padding: 0px;
	clip: rect(0,0,0,0);
	overflow: hidden;
}
hr.hide {
	border: none;
}

/* スライドショー
----------------------------------------------------------- */
#top_slide_area {
	width: 100%;
	min-height: 495px;
	margin: 0 auto;
	position: relative;
}
#top_slide_list div.slide_box,
#top_slide_list div.slide_box.is-active-next {
	transform: scale(0.8);
	width: 100%;
	max-width: 880px;
	margin: 0 -20px;
	transition: .8s;
}

#top_slide_list div.slide_box:only-of-type {
	margin: 0 auto;
}
#top_slide_list div.slide_box a {
	display: block;
	text-decoration: none;
	width: 100%;
	height: 100%;
}
#top_slide_list div.slide_box p {
	margin: 20px 0 0;
	padding: 0;
	height: auto;
	font-size: 1.3rem;
}
#top_slide_list div.slide_box p.hide {
	padding: 0;
	display: none;
}
#top_slide_list div.slide_box p:not(.no-img):first-of-type {
	margin: 0;
	padding: 0;
	aspect-ratio: 16 / 9
}
#top_slide_list div.slide_box p img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
}

#top_slide_list div.slide_box.slick-center,
#top_slide_list div.slide_box.slick-center.is-active-next {
	transform: scale(1);
	transition: .8s;
}
#top_slide_list div.slide_box p.no-img {
	opacity: 0;
}
#top_slide_list div.slide_box.slick-center p.no-img {
	opacity: 1;
}

#mp_control_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	margin: 20px auto;
	padding: 0;
	max-width: 880px;
}
@media screen and (max-width: 880px) {
	#top_slide_area {
		width: calc(100vw - 60px);
		min-height: auto;
		left: 50%;
		margin: 0;
		transform: translateX(-50%);
	}
	#top_slide_list div.slide_box,
	#top_slide_list div.slide_box.is-active-next {
		transform: none;
		max-width: calc(100vw - 60px);
		margin: 0;
		padding: 0 1px;
		transition: none;
	}
	#top_slide_list div.slide_box.slick-center {
		transform: none;
	}
	#top_slide_list div.slide_box p {
		max-width: 100%;
	}
	#top_slide_list div.slide_box p.no-img {
		opacity: 1;
	}
	#mp_control_box {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		position: static;
		margin-top: 15px;
		max-width: calc(100% - 60px);
	}
}
@media screen and (max-width: 480px) {
	#top_slide_area {
		margin-top: 1.5rem;
		width: calc(100vw - 60px);
	}
	#top_slide_list div.slide_box p {
		font-size: 1.2rem;
	}
}

#mp_control_box button[id^="mp_control_"] {
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px 0 0;
	padding: 0;
	min-width: 30px;
	min-height: 30px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 0;
	border: none;
	color: #3e3a39;
	background-color: #ffebe8;
	background-repeat: no-repeat;
	text-align: left;
	text-indent: -9999em;
	overflow: hidden;
}
#mp_control_box button[id^="mp_control_"]:last-child {
	margin-right: 0;
}
#mp_control_box button#mp_control_prev {
	background-image: url("../../../../soshiki_file/go-hiroshima/index/btn_prev.png");
	background-position: center center;
}
#mp_control_box button#mp_control_next {
	background-image: url("../../../../soshiki_file/go-hiroshima/index/btn_next.png");
	background-position: center center;
}
#mp_control_box button#mp_control_pause {
	display: none;
	background-image: url("../../../../soshiki_file/go-hiroshima/index/btn_stop.png");
	background-position: left 12px center;
	width: calc(3rem + 30px);
	min-width: auto;
	text-indent: 0;
	padding-left: 30px;
}
#mp_control_box button#mp_control_play {
	background-image: url("../../../../soshiki_file/go-hiroshima/index/btn_play.png");
	background-position: left 10px center;
	width: calc(3rem + 30px);
	min-width: auto;
	text-indent: 0;
	padding-left: 30px;
}

/* スライドナビゲーションボタン */
#slide_dots {
	display: inline-block;
	margin-right: 10px;	
}
ul.slick-dots {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.slick-dots li {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	padding: 0;
}
ul.slick-dots li button {
	display: block;
	margin: 10px;
	padding: 0;
	width: 15px;
	height: 15px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 0;
	text-indent: -9999em;
	text-align: left;
	overflow: hidden;
	border: 2px solid #ff817b;
	background: #fff;
	color: #333;
}
ul.slick-dots li.slick-active button {
	background: #707070;
	border-color: #707070;
	color: #fff;
}</pre></body></html>