/* -----------------------

- root

------------------------*/
:root {
    --base: #FFFFFF;
    --main: #333333;
    --red: #b20b0b;
	--green:#cfc65b;
    --gray:#f7f6f6;
	--darkgray:#7d7d7d;
}


/* -----------------------

- reset

------------------------*/
*,*::before,*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-size: 16px;
	color: var(--main);
	font-family: 'Inter', 'Yu Gothic', sans-serif;
	font-weight: 500;
}
h1,h2,h3,h4,h5 {
	line-height: 1.5;
	margin: 0;
}
p {
	line-height: 1.7;
	margin: 0;
}
a {
	display: block;
}
li {
	list-style: none;
}
a,
a:link,
a:visited,
a:active {
	outline: 0px none;
	text-decoration: none;
}
* img {
	display: block;
	height: auto;
	max-width: 100%;
	text-align: center;
	margin: 0 auto;
}

@media only screen and (max-width: 599px) {
	.sp_only {
		display: block;
	}
	.sp_tablet_only {
		display: block;
	}
	.tablet_only {
		display: none;
	}
	.pc_only {
		display: none;
	}
	.pc_tablet_only {
		display:none !important;
	}
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
	.sp_only {
		display: none !important;
	}
	.sp_tablet_only {
		display: block;
	}
	.tablet_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
	.pc_tablet_only {
		display:block;
	}
}
@media only screen and (min-width: 1025px) {
	.sp_only {
		display: none !important;
	}
	.sp_tablet_only {
		display: none;
	}
	.tablet_only {
		display: none;
	}
	.pc_only {
		display: block;
	}
	.pc_tablet_only {
		display:block;
	}
}



/* -----------------------

- common

----------------------- */
.contents {
	width: 100%;
	margin: 0 auto;
}
.contents_inner {
}

[data-ruby] {
    position: relative;
}
[data-ruby]::before {
    content: attr(data-ruby);
    position: absolute;
    top: -1em;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 0.5em;
}


/* ------------------------------------

- header

------------------------------------ */
header {
	max-width: 1120px;
	margin: 0 auto;
	padding: 24px 0;
}
header .idcLogo {
	display: block;
	width: 50%;
	max-width: 200px;
	margin: 0 auto;
}


/* ------------------------------------

- inner_sec / common

------------------------------------ */
.inner_sec {
	margin: 0 auto;
}


/*===============
 btn_cta
============== */
.btn_cta_wrap {
    gap: 18px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}
.btn_cta_wrap > p {
    text-align: center;
}
@media (max-width: 599px) {
	.btn_cta_wrap > p {
		font-size: 14px;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.btn_cta_wrap > p {
		font-size: 16px;
	}
}
@media (min-width: 1025px) {
	.btn_cta_wrap > p {
		font-size: 18px;
	}
}

.btn_cta {
    width: 100%;
}
.btn_cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    padding: 1rem 2rem;
    overflow: hidden;
    border: none;
    border-radius: 5px;
    background-color: #b20b0b;
    color: var(--base);
    font-weight: 600;
}
.btn_cta a::before {
    display: block;
    position: absolute;
    top: -50%;
    left: -30%;
    transform: rotate(30deg);
    width: 70px;
    height: 100px;
    content: '';
    background-image: linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 0)));
    animation: animation-button 3s infinite linear;
}
@keyframes animation-button {
    17% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
.btn_cta a::after {
	content: "\f105";
	font-family: FontAwesome;
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	color: var(--base);
}
.btn_cta a:hover {
    background-color: #940909;
}
@media (max-width: 599px) {
	.btn_cta {
		padding:0 32px;
	}
	.btn_cta a {
		font-size: 16px;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.btn_cta a {
		font-size: 16px;
	}
}
@media (min-width: 1025px) {
	.btn_cta a {
		font-size: 20px;
	}
}

/* ------------------------------------

- main_text_area

------------------------------------ */
.main_text_area {
    margin: 0 auto;
    background: var(--gray);
    text-align: center;
}
.main_text_wrap h1 {
	font-weight: bold;
}
@media (max-width: 599px) {
	.main_text_wrap {
	    padding: 50px 0 20px;
	}
	.main_text_wrap h1 {
	    font-size: 22px;
	    margin: 0 auto 26px;
	}
	.main_text_wrap p {
	    font-size: 16px;
	    line-height: 1.9;
		margin: 30px auto 0;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
 	.main_text_wrap {
	    padding: 60px 40px 20px;
	}
	.main_text_wrap h1 {
	    font-size: 30px;
	    margin: 0 auto 20px;
	}
	.main_text_wrap p {
	    font-size: 18px;
	    line-height: 1.9;
	    margin: 30px auto 0;
	}
}
@media (min-width: 1025px) {
	.main_text_wrap {
	    padding: 80px 40px 30px;
	}
	.main_text_wrap h1 {
	    font-size: 32px;
	    padding: 0 20px;
	}
	.main_text_wrap p {
	    font-size: 18px;
	    line-height: 1.9;
	    margin: 30px auto;
	}
	.main_text_wrap p:last-child {
	    margin: 30px auto 0;
	}
}


/*===============
 icon_scroll
============== */
.icon_scroll {
	display: inline-block;
	position: relative;
}
.icon_scroll::before {
	content: "";
	position: absolute;
	border: solid #000;
	border-width: 0 0 2px 2px;
	transform: translateX(-50%) rotate(-45deg);
	animation: scroll 3.5s infinite;
}
@media (max-width: 599px) {
	.icon_scroll span {
		font-size:14px;
	}
	.icon_scroll::before {
		top: 82%;
		left: 50%;
		width: 12px;
		height: 12px;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.icon_scroll span {
		font-size:14px;
	}
	.icon_scroll::before {
		top: 82%;
		left: 50%;
		width: 16px;
		height: 16px;
	}
}
@media (min-width: 1025px) {
	.icon_scroll::before {
		top: 70%;
		left: 50%;
		width: 20px;
		height: 20px;
	}
}
@keyframes scroll {
	0% {
		opacity: 0;
		transform: translateX(-50%) rotate(-45deg) translate(0, 0);
	}
	40% {
		opacity: 1;
	}
	80% {
		opacity: 0;
		transform: translateX(-50%) rotate(-45deg) translate(-30px, 30px);
	}
	100% {
		opacity: 0;
	}
}


/* ------------------------------------

- main_visual_wrap

------------------------------------ */
.main_visual_wrap {
	background: var(--red);
}
@media (max-width: 599px) {
	.main_visual_wrap {
		margin-top: 62px;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.main_visual_wrap {
		margin-top: 70px;
	}
}
@media (min-width: 1025px) {
	.main_visual_wrap {
		margin-top: 80px;
	}
}


/* ------------------------------------

- reason_area

------------------------------------ */
@media (max-width: 599px) {
	.reason_area {
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.reason_area {
	    padding: 40px 30px 40px;
	}
}
@media (min-width: 1025px) {
	.reason_area {
	    padding: 10vh 0 0;
	}
}
/* 
 reason_actually_wrap
---------------------------------- */
.reason_actually_col {
    display: flex;
}
.reason_actually_text h2 {
    font-weight: bold;
}
.reason_actually_text_col > div {
	position: relative;
	color: var(--base);
	text-align: center;
	line-height: 1.4;
	background: #cfc65b;
	border-radius: 10px;
}
.reason_actually_text_col > div::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	transform: translateX(-50%);
}
.reason_actually_text_col ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
}
.reason_actually_text_col ul li {
	list-style-type: disc;
}
@media (max-width: 599px) {
	.reason_actually_wrap {
	    padding: 40px 30px;
	}
	.reason_actually_col {
	    flex-direction: column;
	    justify-content: center;
	    align-items: center;
	    gap: 20px;
	    margin-bottom: 19px;
	}
	.reason_actually_text {
		width:100%;
	}
	.reason_actually_text h2 {
	    font-size: 22px;
	    margin-bottom: 26px;
	}
	.reason_actually_text p {
	    font-size: 16px;
	    margin-bottom: 8px;
	}
	.reason_actually_text_col {
	}
	.reason_actually_text_col > div {
        font-size: 15px;
        padding: 10px 20px;		
        margin-bottom: 26px;
    }
	.reason_actually_text_col > div::after {
		top: 38px;
		left: 50%;
		border-top: 16px solid var(--green);
		border-right: 10px solid transparent;
		border-left: 10px solid transparent;
	}
	.reason_actually_text_col ul {
	    gap: 8px;
	    padding-left: 22px;
	}
	.reason_actually_text_col ul > li {
		font-size: 15px;
	}
	.reason_actually_image {
		width:100%;
	}
	.reason_actually_wrap p {
		font-size: 15px;
		font-weight: bold;
        border-bottom: 1px dashed var(--darkgray);
        display: inline;
        padding-bottom: 5px;
        line-height: 2.2;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.reason_actually_wrap {
	    margin-bottom: 50px;
	}
	.reason_actually_col {
	    flex-direction: row;
	    flex-wrap: nowrap;
	    justify-content: space-between;
	    align-items: center;
	    gap: 40px;
	    margin-bottom: 26px;
	}
	.reason_actually_text {
		width: 66%;
	}
	.reason_actually_text h2 {
	    font-size: 23px;
	    margin-bottom: 10px;
	}
	.reason_actually_text_col > div {
        font-size: 16px;
        padding: 10px 24px;
        margin-bottom: 26px;
        width: 80%;
    }
	.reason_actually_text_col > div::after {
		top: 38px;
		left: 50%;
		border-top: 16px solid var(--green);
		border-right: 10px solid transparent;
		border-left: 10px solid transparent;
	}
	.reason_actually_text_col ul {
	    gap: 12px;
	    padding-left: 36px;
	    margin-bottom: 6px;
	}
	.reason_actually_text_col > ul li {
		font-size:16px;
	}
	.reason_actually_image {
		width: 33%;
	}
	.reason_actually_wrap p {
		font-size: 16px;
		font-weight: bold;
        border-bottom: 1px dashed var(--darkgray);
        display: inline;
        padding-bottom: 5px;
        line-height: 2.2;
	}
}
@media (min-width: 1025px) {
	.reason_actually_wrap {
		max-width: 1200px;
		margin:0 auto;
	}
	.reason_actually_col {
	    flex-direction: row-reverse;
	    flex-wrap: nowrap;
	    justify-content: center;
	    align-items: center;
	    gap: 70px;
	    margin-bottom: 60px;
	}
	.reason_actually_text {
		width: 70%;
		position: relative;
	}
	.reason_actually_text h2 {
	    font-size: 32px;
	    margin-bottom: 50px;
	    line-height: 1.4;
	}
	.reason_actually_text p {
		font-size: 18px;
		font-weight:bold;
        border-bottom: 1px dashed var(--darkgray);
        display: inline;
        padding-bottom: 5px;
        line-height: 2.2;
	}
    .reason_actually_text_col {
        display:flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        gap: 60px;
        margin-bottom: 50px;
    }
    .reason_actually_text_col > div {
        font-size: 17px;
        padding: 17px 24px;
    }
	.reason_actually_text_col > div::after {
		top: 28px;
		right: -12%;
		border-left: 20px solid var(--green);
		border-top: 14px solid transparent;
		border-bottom: 14px solid transparent;
	}
	.reason_actually_text_col > ul {
	    gap: 14px;
	}
	.reason_actually_text_col > ul li {
		font-size:18px;
	}
	.reason_actually_image {
		width: 30%;
	}
}

/* 
 reason_advisor_wrap
---------------------------------- */
.reason_advisor_wrap {
	background: var(--gray);
	position: relative;
}
.reason_advisor_wrap::before {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	transform:translateX(-50%);
	top:0;
	left:50%;
}
.reason_advisor_inner h2 {
	font-weight: bold;
	text-align: center;
}
.reason_advisor_inner ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
}
.reason_advisor_inner ul > li {
	list-style-type: disc;
}
.reason_advisor_inner p {
	line-height:1.5;
	background: var(--base);
}
.reason_advisor_inner p.note {
	font-weight: normal;
	background:none;
}
@media (max-width: 599px) {
	.reason_advisor_wrap {
		padding: 60px 7vw 40px;
		max-width: 100%;
	}
	.reason_advisor_wrap::before {
		border-top: 26px solid var(--base);
		border-left: 30px solid transparent;
		border-right: 30px solid transparent;
	}
	.reason_advisor_inner h2 {
		font-size: 22px;
		margin-bottom: 30px;
		text-align: center;
		padding-left: 3px;
	}
	.reason_advisor_inner ul {
	    gap: 16px;
	    padding-left: 20px;
	    margin-bottom: 24px;
	}
	.reason_advisor_inner ul > li {
		line-height: 1.4;
		font-size: 14px;
		padding-left: 0;
	}
	.reason_advisor_inner p {
		font-size: 15px;
        padding: 20px;
        line-height: 1.8;
	}
	.reason_advisor_inner p.note {
	    font-size: 12px;
	    padding: 9px 10px;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.reason_advisor_wrap {
		padding: 50px 5vw 40px;
	}
	.reason_advisor_wrap::before {
		border-top: 26px solid var(--base);
		border-left: 30px solid transparent;
		border-right: 30px solid transparent;
	}
	.reason_advisor_inner h2 {
		font-size: 23px;
		margin-bottom: 28px;
	}
	.reason_advisor_inner ul {
	    gap: 18px;
	    padding-left: 20px;
	    margin-bottom:34px;
	}
	.reason_advisor_inner ul > li {
		line-height: 1.4;
	    font-size: 16px;
	}
	.reason_advisor_inner p {
		font-size: 16px;
		padding: 20px;
	}
	.reason_advisor_inner p.note {
		font-size:14px;
	    padding: 9px 10px;
	}
}
@media (min-width: 1025px) {
	.reason_advisor_wrap {
		padding: 110px 40px 80px;
	}
	.reason_advisor_wrap::before {
		border-top: 66px solid var(--base);
		border-left: 90px solid transparent;
		border-right: 90px solid transparent;
	}
    .reason_advisor_inner {
        max-width: 1120px;
        margin: 0 auto;
    }
	.reason_advisor_inner h2 {
		font-size: 32px;
		border-bottom: 1px solid var(--main);
		width: 80%;
		padding-bottom: 10px;
		margin: 0 auto 40px;
	}
    .reason_advisor_col {
        text-align: center;
    }
    .reason_advisor_col_inner {
        display: inline-block;
        text-align:left;
    }
	.reason_advisor_col_inner ul {
	    gap: 18px;
	    padding-left: 20px;
	    margin-bottom: 50px;
	}
	.reason_advisor_col_inner ul > li {
		font-size: 18px;
		line-height: 1.4;
	}
	.reason_advisor_inner p {
		font-size: 19px;
		font-weight: bold;
		text-align:center;
		padding: 30px 20px;
	}
	.reason_advisor_inner p.note {
	    font-size: 16px;
	    padding: 8px 0 0;
	    margin-top:12px;
	}
}



/* ------------------------------------

- products_area

------------------------------------ */
@media (max-width: 599px) {
	.products_area {
	    /* padding: 40px 30px 0; */
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.products_area {
	    padding: 10px 30px 40px;
	}
}
@media (min-width: 1025px) {
	.products_area {
	    padding: 10vh 40px 0;
	    max-width: 1200px;
	}
}
/* 
 products_wrap
---------------------------------- */
.products_wrap {
	margin-bottom: 10vh;
}
.products_wrap h2 {
    text-align: center;
	font-weight:bold;
    color:white;
    letter-spacing: 1px;
    background-color:#b20b0f;
}
.products_wrap > h3 {
	font-weight: bold;
}
.products_wrap > h3 span {
    
}
.products_wrap p {
    
}
.products_area_col {
    display: flex;
}
.products_area_item {
	flex: 0 1 calc((100% - 1 * 70px) / 2);
}
.products_area_item h3 {
	font-weight: bold;
}
.products_area_item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.products_area_item:last-of-type img {
	width:70%;
}
.products_area_item p {
	
}
@media (max-width: 599px) {
	.products_wrap {
		margin-bottom: 6vh;
		padding: 40px 30px 0;
	}
	.products_wrap h2 {
		font-size: 22px;
		padding:5px 0;
		margin-bottom: 16px;
	}
	.products_wrap > h3 {
		font-size: 16px;
        text-align: center;
		margin-bottom: 24px;
        letter-spacing: -0.6px;
	}
    .products_wrap > h3 span {
        font-size: 21px;
        display: inline-block;
        margin-top: 7px;
    }
	.products_wrap > p {
	    font-size: 14px;
        border-bottom: 1px dashed var(--darkgray);
        display: inline;
        padding-bottom: 7px;
        line-height: 2.4;
	}
	.products_area_col {
		flex-direction: column;
		flex-wrap: wrap;
		gap: 30px;
		margin-top: 32px;
	}
	.products_area_item {
		flex: 0 1 calc((100% - 1 * 70px) / 2);
	}
	.products_area_item h3 {
	    font-size: 18px;
	    margin-bottom: 6px;
	    padding-left: 24px;
	    background: url(/ad/hiroshima_guide/images/deco_heading.png) no-repeat top 6px left 3px / 12px;
	
	}
	.products_area_item img {
	    margin-bottom: 8px;
	}
	.products_area_item:last-of-type img {
		width:70%;
	}
	.products_area_item > p {
		font-size: 14px;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.products_wrap {
		margin-bottom: 6vh;
	}
	.products_wrap h2 {
		font-size: 22px;
		padding:7px 0;
	    margin-bottom: 20px;
	}
	.products_wrap > h3 {
		font-size: 18px;
		margin-bottom: 25px;
		text-align:center;
	}
	.products_wrap > h3 span {
        font-size: 24px;
        display: inline-block;
        margin-top: 3px;
	}
	.products_wrap > p {
	    
	}
	.products_area_col {
	    flex-direction: row;
	    flex-wrap: wrap;
	    gap: 40px;
	}
	.products_area_item {
		flex: 0 1 calc((100% - 1 * 40px) / 2);
	}
	.products_area_item h3 {
	    font-size: 16px;
	    margin-bottom: 10px;
	    padding-left: 26px;
	    background: url(/ad/hiroshima_guide/images/deco_heading.png) no-repeat top 3px left 3px / 14px;
	}
	.products_area_item img {
	    margin-bottom: 10px;
	}
	.products_area_item:last-of-type img {
		width:68%;
	}
	.products_area_item > p {
		font-size:14px;
	}
}
@media (min-width: 1025px) {
	.products_wrap {
		margin-bottom: 10vh;
	}
	.products_wrap h2 {
		font-size: 32px;
		padding:5px 0;
		margin-bottom: 20px;
	}
	.products_wrap > h3 {
		font-size: 22px;
		margin-bottom: 55px;
		text-align: center;
	}
	.products_wrap > h3 span {
        font-size: 28px;
        display: inline-block;
        margin-top: 3px;
	}
	.products_wrap > p {
	    
	}
	.products_area_col {
	    flex-direction: row;
	    flex-wrap: wrap;
	    gap: 70px;
	}
	.products_area_item {
		flex: 0 1 calc((100% - 1 * 70px) / 2);
	}
	.products_area_item h3 {
	    font-size: 24px;
	    margin-bottom: 10px;
	    padding-left: 30px;
	    background: url(/ad/hiroshima_guide/images/deco_heading.png) no-repeat top 6px left 3px / 18px;
	}
	.products_area_item img {
	    margin-bottom: 10px;
	}
	.products_area_item:last-of-type img {
		width: 69%;
	}
	.products_area_item > p {
		
	}
}


/* 
 customer_wrap
---------------------------------- */
.customer_wrap {
    background: var(--gray);
    background-image: url(/ad/hiroshima_guide/images/tvboard_main01.webp);
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;
}
.customer_wrap h2 {
    text-align: center;
    font-weight: bold;
}
.customer_col_wrap {
    display: flex;
}
.customer_col {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.customer_col:nth-child(even) {
	flex-direction: row-reverse;
}
.customer_col .icon {
    display: flex;
    flex-direction: column;
}
.customer_col .icon > p {
	font-weight:bold;
}
@media (max-width: 599px) {
	.customer_wrap {
		background-size:cover;
		background-position-x: 438px;
		background-position-y: -16px;
		padding: 30px 30px 60px;
	}
	.customer_wrap h2 {
	    font-size: 22px;
	    margin-bottom: 20px;
	    color: var(--green);
	    text-shadow: 3px 2px 2px var(--base);
	}
	.customer_col_wrap {
	    flex-direction: column;
	    gap: 18px;
	}
	.customer_col:nth-child(even) {
		flex-direction: row-reverse;
	}
	.customer_col .icon {
	    width: 28%;
	    gap: 3px;
	}
	.customer_col .icon > div {
		text-align: center;
		fill: #414141;
	}
	.customer_col .icon > div svg {
		width: 70%;
	}
	.customer_col .icon > p {
		font-size: 12px;
		text-align:center;
		line-height:1.3;
		color: #5a5a5a;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.customer_wrap {
	    padding: 30px 20px;
	    background-size: cover;
	    background-position-x: 727px;
	    background-position-y: top;
	}
	.customer_wrap h2 {
	    font-size: 23px;
	    margin-bottom: 16px;
		color: var(--green);
	}
	.customer_col_wrap {
	    flex-direction: column;
	    gap: 22px;
	}
	.customer_col:nth-child(even) {
		flex-direction: row-reverse;
	}
	.customer_col .icon {
	    width: 26%;
	    gap: 1px;
	    align-items: center;
	}
	.customer_col .icon > div {
		text-align: center;
		fill: #414141;
	}
	.customer_col .icon > div svg {
		width: 30%;
	}
	.customer_col .icon > p {
		font-size: 14px;
		color: #5a5a5a;
	}
}
@media (min-width: 1025px) {
	.customer_wrap {
	    margin-bottom: 20px;
	    padding: 40px;
	}
	.customer_wrap h2 {
	    font-size: 32px;
	    margin-bottom: 20px;
	    color: var(--green);
	}
	.customer_col_wrap {
	    flex-direction: column;
	    gap: 30px;
	}
	.customer_col:nth-child(even) {
		flex-direction: row-reverse;
	}
	.customer_col .icon {
	    width: 22%;
	    gap: 2px;
	    align-items: center;
	}
	.customer_col .icon > div {
		text-align: center;
		fill: #414141;
	}
	.customer_col .icon > div svg {
		width: 27%;
	}
	.customer_col .icon > p {
		font-size: 14px;
		color: #5a5a5a;
	}
}

/* =============
 balloon
============= */
.balloon1,
.balloon2 {
    position: relative;
    font-weight: bold;
    color: var(--base);
    background-color: var(--green);
    border-radius: 10px;
}
.balloon1 .icon,
.balloon2 .icon {
    position: absolute;
}
.balloon1::before,
.balloon2::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
}
.balloon1::before {
	border-right: 16px solid var(--green);
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}
.balloon2::before {
	border-left: 16px solid var(--green);
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}
@media (max-width: 599px) {
	.balloon1,
	.balloon2 {
		width: 68%;
		font-size: 14px;
		line-height: 1.5;
		letter-spacing: 0.2px;
		padding: 21px 14px 20px;
		font-weight: normal;
		text-indent: -7px;
	}
	.balloon1 .icon,
	.balloon2 .icon {
	    position: absolute;
	    left: -110px;
	    top: 0;
	}
	.balloon1::before {
		left: -12px;
		top: 24px;
	}
	.balloon2::before {
		right: -12px;
		top: 24px;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.balloon1,
	.balloon2 {
		width: 72%;
		font-size: 16px;
		line-height: 1.6;
		letter-spacing: 0.2px;
		padding: 20px 26px 16px 28px;
	}
	.balloon1 .icon,
	.balloon2 .icon {
	    position: absolute;
	    left: -110px;
	    top: 0;
	}
	.balloon1::before {
		left: -14px;
		top: 24px;
	}
	.balloon2::before {
		right: -14px;
		top: 24px;
	}  
}
@media (min-width: 1025px) {
	.balloon1,
	.balloon2 {
		width: 77%;
		font-size: 20px;
		line-height: 1.6;
		padding: 24px 34px 20px 36px;
		text-indent: -12px;
	}
	.balloon1 .icon,
	.balloon2 .icon {
	    position: absolute;
	    left: -110px;
	    top: 0;
	}
	.balloon1::before {
		left: -16px;
		top: 24px;
	}
	.balloon2::before {
		right: -16px;
		top: 24px;
	}
}


/* ------------------------------------

- reservation_area

------------------------------------ */
@media (max-width: 599px) {
	.reservation_area {
		margin: -20px auto 5vh;
		max-width: 100%;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.reservation_area {
		margin: 0 auto;
		max-width: 100%;
	}  
}
@media (min-width: 1025px) {
	.reservation_area {
		margin: 10vh auto 0;
		max-width: 100%;
	}
}


/* 
 reliable_wrap
---------------------------------- */
.reliable_wrap {
    max-width: 100%;
    text-align: center;
    color: white;
    background: var(--red);
    padding: 0;
    margin: 0 auto;
}
.reliable_wrap_inner {
	margin: 0 auto;
}
.reliable_wrap h2 {
    font-weight: bold;
}
@media (max-width: 599px) {
	.reliable_wrap_inner {
		padding: 5vh 30px;
	}
	.reliable_wrap h2 {
	    font-size: 26px;
	    margin-bottom: 10px;
	}
	.reliable_wrap p:first-of-type {
		font-size: 15px;
		margin-bottom: 20px;
	}
	.reliable_wrap h4 {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.reliable_wrap p:last-of-type {
		text-align: left;
		font-size: 14px;
		text-indent: -8px;
		padding: 0 10px;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.reliable_wrap_inner {
		padding: 30px;
		max-width: 1024px;
	}
	.reliable_wrap h2 {
	    font-size: 30px;
	    margin-bottom: 10px;
	}
	.reliable_wrap p:first-of-type {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.reliable_wrap h4 {
		font-size: 24px;
		margin-bottom: 10px;
	}
	.reliable_wrap p:last-of-type {
		font-size: 18px;
	}  
}
@media (min-width: 1025px) {
	.reliable_wrap_inner {
		padding: 5vh 40px;
		max-width: 1200px;
	}
	.reliable_wrap h2 {
	    font-size: 34px;
	    margin-bottom: 10px;
	}
	.reliable_wrap p:first-of-type {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.reliable_wrap h4 {
		font-size: 24px;
		margin-bottom: 10px;
	}
	.reliable_wrap p:last-of-type {
		font-size: 19px;
	}
}

/* 
 reservation_wrap
---------------------------------- */
.reservation_wrap {
	margin: 0 auto;
}
.reservation_wrap h2 {
    text-align: center;
    font-weight: bold;
}
.reservation_col {
    display: flex;
}
.reservation_text p:last-of-type a {
	display: inline;
	color: var(--main);
}
@media (max-width: 599px) {
	.reservation_wrap {
		padding: 5vh 30px 0;
	}
	.reservation_wrap h2 {
	    font-size: 21px;
	    margin-bottom: 20px;
	}
	.reservation_col {
	    flex-direction: column;
	    flex-wrap: wrap;
	    align-items: center;
	    gap: 30px;
	    margin-bottom: 46px;
	}
	.reservation_image {
		width:100%;
	}
	.reservation_text {
	    width:100%;
        text-align:center;
	}
	.reservation_text ul {
	    text-align: left;
	    display: inline-block;
	    margin-bottom: 10px;
	}
	.reservation_text ul li {
		font-size: 18px;
		font-weight: 600;
		margin-bottom: 13px;
	}
	.reservation_text .note {
		font-size: 12.8px;
		text-align: left;
		line-height: 1.4;
		text-indent: -16px;
		padding-left: 20px;
		margin-bottom: 16px;
		display: inline-block;
	}
	.reservation_text p {
	    font-size: 14px;
	    text-align: center;
	    line-height: 1.4;
	    background: var(--gray);
	    padding: 12px 10px 10px;
	    margin:0 auto;
	}
	.reservation_text p > span {
		font-size: 14px;
		vertical-align: text-bottom;
		margin-left: -10px;
	}
	.reservation_text p > a {
		font-size: 22px;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.reservation_wrap {
		padding: 40px 30px;
	}
	.reservation_wrap h2 {
	    font-size: 23px;
	    margin-bottom: 20px;
	}
	.reservation_col {
	    flex-direction: row;
	    flex-wrap: nowrap;
	    justify-content: space-between;
	    align-items: center;
	    gap: 30px;
	}
	.reservation_image {
		width: 51%;
	}
	.reservation_text {
	    width: 45%;
	}
	.reservation_text ul {
	    display: flex;
	    flex-direction: column;
	    gap: 10px;
	    margin-bottom: 14px;
	}
	.reservation_text ul li {
		font-size: 16px;
		font-weight: 600;
	}
	.reservation_text .note {
	    font-size: 13px;
	    line-height: 1.4;
	    text-indent: -18px;
	    padding-left: 20px;
	    margin-bottom: 14px;
	}
	.reservation_text p {
	    font-size: 13px;
	    line-height: 1.4;
	}
	.reservation_text p > span {
		font-size: 14px;
		vertical-align: text-bottom;
	}
	.reservation_text p > a {
		font-size: 16px;
	}
}
@media (min-width: 1025px) {
	.reservation_wrap {
		padding: 10vh 40px 0;
		max-width: 1200px;
	}
	.reservation_wrap h2 {
	    font-size: 34px;
	    margin-bottom: 30px;
	}
	.reservation_col {
	    flex-direction: row;
	    flex-wrap: nowrap;
	    justify-content: center;
	    align-items: center;
	    gap: 70px;
	    margin-bottom: 90px;
	}
	.reservation_image {
		width:60%;
	}
	.reservation_text {
		width:40%;
	}
	.reservation_text ul {
	    display: flex;
	    flex-direction: column;
	    gap: 16px;
	    margin-bottom: 26px;
	}
	.reservation_text ul li {
		font-size: 22px;
		font-weight: 600;
	}
	.reservation_text .note {
	    font-size: 14px;
	    line-height: 1.4;
	    text-indent: -18px;
	    padding-left: 20px;
	    margin-bottom: 22px;
	}
	.reservation_text p {
	    font-size: 16px;
	    line-height: 1.4;
	}
	.reservation_text p > span {
		font-size: 18px;
		vertical-align: text-bottom;
	}
	.reservation_text p > a {
		font-size: 28px;
	}
}


/* 
 address_wrap
---------------------------------- */
.address_wrap {
	max-width: 100%;
	background: var(--gray);
}
.address_wrap_inner {
    margin: 0 auto;
}
.address_wrap h2 {
    text-align: center;
    font-weight: bold;
}
.address_col {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.shop_info {
    display: flex;
    flex-direction: column;
}
.shop_info li {
	line-height:1.4;
}
.shop_info li:last-child a {
	display:inline;
	color:var(--main);
}
.address_map iframe {
	max-width:100%;
}
.shop_info li {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
}
.shop_info .label {
	position: relative;
	flex-shrink: 0;
}
.shop_info .label::after {
	content: ":";
	position: absolute;
}
.shop_info .value {
	flex: 1;
}
@media (max-width: 599px) {
	.address_wrap {
		padding:0;
	}
	.address_wrap_inner {
	    padding: 5vh 30px 7vh;
	}
	.address_wrap h2 {
	    font-size: 22px;
	    margin-bottom: 20px;
	}
	.address_col {
	    display: flex;
	    flex-direction: column;
	    flex-wrap: nowrap;
	    justify-content: space-between;
	    align-items: center;
	    gap: 18px;
	    margin-bottom: 20px;
	}
	.address_text {
		width: 100%;
	}
	.address_text > p {
		display:none;
	}
	.shop_info {
	    display: flex;
	    flex-direction: column;
	    gap: 12px;
	}
	.shop_info li .label {
		width: 22%;
		font-size: 16px;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
	}
	.shop_info .label::after {
		font-size: 16px;
		left: 109%;
		bottom: 6%;
	}
	.shop_info li .value {
		font-size: 16px;
		padding-left: 20px;
		line-height: 1.4;
	}
	.shop_info li:first-child .value {
		font-size: 18px;
	}
	.shop_info li:first-child .value {
		margin-top: -2px;
	}
	.shop_info li:last-child .value {
		margin-top: -3px;
	}
	.shop_info li .value .note {
		font-size: 12px;
	}
	.shop_info li:last-child a {
		font-size: 20px;
		display:inline;
		color:var(--main);
	}
	.address_map {
		width: 100%;
	}
	.address_map iframe {
		max-width:100%;
		width:100%;
		height:30vh;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	.address_wrap {
		padding:0;
	}
	.address_wrap_inner {
	    padding: 40px 70px;
	}
	.address_wrap h2 {
	    font-size: 23px;
	    margin-bottom: 30px;
	}
	.address_col {
	    display: flex;
	    flex-direction: column;
	    flex-wrap: nowrap;
	    justify-content: space-between;
	    align-items: center;
	    gap: 18px;
	    margin-bottom: 20px;
	}
	.address_text {
		width: 100%;
	}
	.address_text > p {
		display:none;
	}
	.shop_info {
	    display: flex;
	    flex-direction: column;
	    gap: 19px;
	}
	.shop_info li .label {
		width: 12%;
		font-size: 16px;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
	}
	.shop_info .label::after {
		left: 110%;
		bottom: 8%;
		font-size: 16px;
	}
	.shop_info li .value {
		font-size: 16px;
		padding-left: 20px;
	}
	.shop_info li .value .note {
		font-size: 14px;
	}
	.shop_info li:last-child a {
		display:inline;
		color:var(--main);
	}
	.address_map {
		width: 100%;
	}
	.address_map iframe {
		max-width:100%;
		width:100%;
		height:30vh;
	}
}
@media (min-width: 1025px) {
	.address_wrap_inner {
	    padding: 7vh 40px 8vh;
	    max-width: 1180px;
	}
	.address_wrap h2 {
	    font-size: 34px;
	    margin-bottom: 40px;
	}
	.address_col {
	    display: flex;
	    flex-direction: row;
	    flex-wrap: nowrap;
	    justify-content: space-between;
	    align-items: flex-end;
	    gap: 50px;
	    margin-bottom: 60px;
	}
	.address_text {
		width: 70%;
	}
	.address_text > p {
		font-size: 34px;
		margin-bottom: 16px;
	}
	.shop_info {
	    display: flex;
	    flex-direction: column;
	    gap: 16px;
	}
	.shop_info li .label {
		width: 14%;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		font-size: 19px;
		gap: 4px;
	}
	.shop_info .label::after {
		left: 110%;
		bottom: 6%;
		font-size: 20px;
	}
	.shop_info li .value {
		padding-left: 22px;
		font-size: 19px;
	}
	.shop_info li .value .note {
		font-size: 13px;
	}
	.shop_info li:last-child a {
		display:inline;
		color:var(--main);
	}
	.address_map {
		width: 30%;
	}
	.address_map iframe {
		max-width:100%;
		width:100%;
		height:30vh;
	}
}



/* ------------------------------------

- footer

------------------------------------ */
footer {
	padding: 32px 16px;
}

footer .idcLogo {
	width: 40%;
	max-width: 250px;
	margin: 0 auto;
}
footer small {
	display: block;
	text-align: center;
	margin: 16px 0 0;
	font-size: 12px;
}
@media screen and (max-width: 599px) {
    footer {
        padding: 32px 16px;
    }
    footer .idcLogo {
        width: 40%;
        max-width: 250px;
        margin: 0 auto;
    }
    footer small {
        display: block;
        text-align: center;
        margin: 16px 0 0;
        font-size: 12px;
    }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
    footer {
	    padding: 32px 16px;
    }
    footer .idcLogo {
        width: 40%;
        max-width: 250px;
        margin: 0 auto;
    }
    footer small {
        display: block;
        text-align: center;
        margin: 16px 0 0;
        font-size: 12px;
    }
	footer {
		padding: 72px 16px;
	}
	footer small {
		margin: 24px 0 0;
	}
}
@media screen and (min-width: 1025px) {
    footer {
	    padding: 32px 16px;
    }
    footer .idcLogo {
        width: 40%;
        max-width: 250px;
        margin: 0 auto;
    }
    footer small {
        display: block;
        text-align: center;
        margin: 16px 0 0;
        font-size: 12px;
    }
	footer {
		padding: 72px 16px;
	}
	footer small {
		margin: 24px 0 0;
	}
}