@charset "utf-8";
@import url("https://fonts.googleapis.com/earlyaccess/notosansjp.css");
@import url("https://fonts.googleapis.com/earlyaccess/sawarabimincho.css");
@import url("reset.css");
@import url("bootstrap.css");
@import url("font-awesome.min.css");

/* ==================================================
   basic design
*/

html,
body {
	color: #333;
	font-family: 'Noto Sans JP';
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 0.03em;
	background: #f4eeea;
}
body{
	display: flex;
  flex-flow: column;
  min-height: 100vh;
}
@media (min-width: 960px) {
	html,
	body {
		font-size: 14px;
	}
}

div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote,
abbr, address, code, em, img, small, strong,
b, i, dl, dt, dd, ol, ul, li, form, label,
table, caption, tbody, tfoot, thead, tr, th, td,
article, footer, header, menu, nav, section {
	line-height: 1.6;
}
.footer_wrap{
	margin-top: auto;
}

/* ==================================================
   font
================================================== */

.josefin {font-family: 'Josefin Sans', sans-serif;}

.font_mincho {
	font-family: 'Sawarabi Mincho';
}
.font_bold {
	font-weight: 600 !important;
}
.font_xlarge {
	font-size: 3.0em !important;
}
.font_large {
	font-size: 1.33em !important;
}
.font_ml {
	font-size: 1.13em !important;
}
.font_small {
	font-size: 0.87em !important;
}
.font_xsmall {
	font-size: 0.73em !important;
}


/* ==================================================
   magin
================================================== */

.margin_xlarge {
	margin-top: 8em !important;
}
.margin_large {
	margin-top: 4em !important;
}
.margin_middle {
	margin-top: 2em !important;
}
.margin_small {
	margin-top: 1.0em !important;
}
.margin_xsmall {
	margin-top: 0.5em !important;
}
.margin_auto {
	margin-top: auto!important;
}


/* ==================================================
   padding
================================================== */

.padding_small {
	padding-top: 1.0em !important;
}


/* ==================================================
   color
================================================== */

.white-text {
	color: #fff !important;
}
.black-text {
	color: #000 !important;
}
.gray-text {
	color: #808080 !important;
}
.red-text {
	color: #b63b4d !important;
}
.marker-text {
	background: linear-gradient(transparent 60%, #ffff66 60%);
}


/* ==================================================
   Anchor
================================================== */

a,
a:link,
a:visited,
a:active {
	color:#333;
	text-decoration: none;
}

a,
a > img {
	opacity: 1;
	filter: alpha(opacity=100);

	-webkit-transition: opacity 0.25s ease-in-out 0s;	
	   -moz-transition: opacity 0.25s ease-in-out 0s;
		 -o-transition: opacity 0.25s ease-in-out 0s;
		    transition: opacity 0.25s ease-in-out 0s;	
}

a:hover,
a:hover > img {
	opacity: 0.5;
	filter: alpha(opacity=50);	
}

a:focus, *:focus { outline:none; }

a > img {
	border: none;
	vertical-align: bottom;	
}


/* ==================================================
   Button
================================================== */

.button {
	cursor: pointer;
	position: relative;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	outline: none;
}

.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}

.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}


.button_nomal {
	width: 100%;
	background-color: #333;
	border: 2px solid #333;
	color: #fff !important;
	font-weight: 500;
	line-height: 4em;
}

.button_nomal:hover {
	background-color: #fff;
	border-color: #333;
	color: #333!important;
}

.button_nomal i.direction {
	position: absolute;
	top: 50%;
	right: 1em;
	margin-top: -0.3em;
}

.button_small {
	padding-top: 0.5em !important;
	padding-bottom: 0.5em !important;
}


@media (max-width: 599px) {
	.button_sp span {
		display: none;
	}
	.button_sp i {
		position: absolute;
		top: 50%;
		right: 50%;
		margin-top: -0.5em;
		margin-right: -0.5em;
	}
}

/* ==================================================
   H2 H3 H4
================================================== */

.h_pagetitle_wrap {
	height: 6em;
	background: #fff;
	border-top: 1px solid #8a532b;
	border-bottom: 1px solid #8a532b;
	margin-bottom: 4em;
}

.h_pagetitle {
	font-size: 1.5em;
	padding-top: .25em;
	padding-bottom: .5em;
}

.h_pagetitle span {
	display: block;
	margin-bottom: .2em;
	color: #8a532b;
	font-family: 'Josefin Sans', sans-serif;
	font-size: .87em;
}

.h_standard {
	position: relative;
	padding-top: 0.75em;
	padding-bottom: 0.75em;
	border-top: 1px solid #808080;
	font-size: 1.21em;
	line-height: 1.5em !important;
}

.h_standard::after {
	position: absolute;
	top: -2px;
	left: 0;
	z-index: 2;
	content: '';
	width: 20%;
	height: 3px;
	background-color: #333;
}

.h_border {
	position: relative;
	padding: 1em 0;
	font-weight: 600;
}
.h_border::after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 0;
	border-top: 1px solid #808080;
	border-bottom: 1px solid #fff;
}


/* ==================================================
   ul / ol
================================================== */

ul {
	list-style: none;
}

.ul_basic {
	margin-left: 1em;
}

.ul_basic li {
	margin-top: 0.25em;
	list-style-type: disc;
}

.ul_notice {
	padding-left: 1em;
	padding-bottom: 0.25em;
	color: #b63b4d;
	text-indent: -1em;
}

.ul_notice span {
	color: #333;
}

.ul_notice li {
	margin-top: 0.25em;
}

.ul_notice li::before {
	content: "\f005\00a0";
	font-family: FontAwesome;
}

.ul_inline li {
	display: inline-block;
	margin-left: 0.5em;
	margin-right: 0.5em;
}

.ul_check li {
	position: relative;
	padding: 0.5em 0 0.5em 1.75em;
	border-top: 1px dotted #808080;
}

.ul_check li:last-child {
	border-bottom: 1px dotted #808080;
}

.ul_check li:before {
	font-family: FontAwesome;
	content: "\f00c";
	position: absolute;
	left: 0;
	color: #dc610f;
	font-size: 1.25em;
}

.ol_basic {
	margin-left: 1.5em;
}

.ol_basic li {
	margin-top: 0.5em;
	list-style-type: decimal;
}

.ol_circle {
	counter-reset: number;
	list-style: none;
	margin-left: 2.3em;
}

.ol_circle li {
	line-height: 2;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

.ol_circle li::before {
	counter-increment: number;
	content: counter(number);
	background: #d79393;
	display: inline-block;
	width: 2em;
	height: 2em;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	margin-right: .3em;
	margin-left: -2.3em;
}


/* ==================================================
   Table
================================================== */

.table_basic,
.table_none {
	width: 100%;
}

.table_basic th,
.table_basic td {
	padding: 0.5em;
	border: 1px solid #808080;
}

.table_basic th {
	background: #f5f5f5;
	width: 10em;
}

.table_none th {
	padding: 0.5em;
	white-space: nowrap;
}
.table_none td {
	padding: 0.5em;
}

@media (max-width: 599px) {
	.table_basic,
	.table_none {
		border-bottom: 1px solid #808080;
	}
	.table_basic th,
	.table_basic td,
	.table_none th,
	.table_none td {
		width: 100%;
		display: block;
		padding: 5px 10px;
	}
	.table_basic th,
	.table_none th {
		background: #ccc;
		border: 1px solid #808080;
	}
	.table_basic td,
	.table_none td {
		background: #fff;
		border-left: 1px solid #808080;
		border-right: 1px solid #808080;
		border-top: none;
		border-bottom: none;
	}
}


/* ==================================================
   Other
================================================== */

hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
    display:block;
    height:1px;
    margin: 1em 0;
    border-top:1px dotted #808080;
}

.double_border {
	box-shadow: 0 0 0 1px #fff, 0 0 0 2px #808080;
}

.box_basic,.box_white {
	padding: 15px;
	background: #fff;
	border: 2px solid #8a532b;
}

.box_basic::before,
.box_basic::after {
	display: table;
	content: " ";
	clear: both;
}

.box_white{
  border: none;
}
.box_list {
	padding: 0 15px 15px 15px;
	background: rgba(245,225,225,0.3);
	border-top: solid 1px #d79393;
	border-bottom: solid 1px #fff;
}

.box_list_btm {
	content: "";
	border-bottom: solid 1px #d79393;
}

.box_list h4 {
	padding: 15px 0 5px 0;
	border-top: solid 1px #fff;
}

.box_list h4 a {
	display: block;
}

.box_list h4 a::before {
    content: "\f0a9\00a0";
    font-family: FontAwesome;
}
.box_fit{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.store_link{
  text-align: center;
  border-radius: 8px;
  padding: .6rem;
  display: block;
  width: 100%;
  color: #FFF!important;
  background-color: #8a532b;
}

.cal_wrapper {
	width: 100%;
	margin: 2.0833% auto;
}

.googlecal {
	position: relative;
	padding-bottom: 100%;
	height: 0;
}

.googlecal iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

#map_canvas {
	width: 100%;
	height: 300px;
	border: 1px solid #808080;
}
.text-center{
  text-align: center;
}
.sp_br{
	display: none;
}
.pc_br{
	display: block;
}
@media (max-width: 1281px) {
	.sp_br{
		display: block;
	}
	.pc_br{
		display: none;
	}
}
/* ==================================================
   Header
================================================== */

header {
	width: 100%;
	padding-top: 15px;
}

.hd_info,
.hd_translate {
	font-size: 0.87em;
	text-align: center;
}

@media (min-width: 1281px) {
	header {
		padding-top: 40px;
	}
	.hd_info {
		text-align: left;
	}
	.hd_translate {
		text-align: right;
	}
}


/* ==================================================
   Navigation
*/

nav#menu {
	display: none;
}
/*
@media (min-width: 1281px) {
	nav#menu {
		display: block;
	}
	#menu_nav * {
		box-sizing: border-box;
	}
	#menu_nav li {
		display: inline-block;
	}
	#menu_nav li a {
		display: block;
		color: #333;
		font-weight: 600;
		letter-spacing: 0.2em;
		text-align: center;
		line-height: 2em;
		padding: 0 0.75em;
		-webkit-transition: all .3s;
		transition: all .3s;
		border-left: 1px solid #808080;
	}
	#menu_nav li:last-child a {
		border-right: 1px solid #808080;
	}
}*/


/* ==================================================
   Mobile Navigation
*/

#mobile_nav {
	display: none;
}

.menu_nav {
	background: url(../img/site/menu_mobile.png) 0 0 no-repeat;
	position: absolute;
	width: 22px;
	height: 22px;
	top: 20px;
	right: 15px;
	display: block;
	z-index: 1000;
	
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		 -o-transform: rotate(0deg);
			transform: rotate(0deg);
	
	-webkit-transition: -webkit-transform 250ms ease-out 0s;	
	   -moz-transition: -moz-transform 250ms ease-out 0s;
		 -o-transition: -o-transform 250ms ease-out 0s;
		    transition: transform 250ms ease-out 0s;
}

.menu_nav.open {
	background-position: 0 -22px;
		  
	-webkit-transform: rotate(-180deg);
	   -moz-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		 -o-transform: rotate(-180deg);
			transform: rotate(-180deg);
	
	-webkit-transition: -webkit-transform 250ms ease-out 0s;	
	   -moz-transition: -moz-transform 250ms ease-out 0s;
		 -o-transition: -o-transform 250ms ease-out 0s;
		    transition: transform 250ms ease-out 0s;	
}

#navigation_mobile {
	display: none;
	position: relative;
	width: 100%;
	z-index: 9999;
	text-align: center;
	background: #f4eeea;
	padding: 2.4em 1em 1em;
	/*box-shadow: 0 3px 3px rgba(0,0,0,0.3);*/
}
@media (min-width: 960px) {
	#navigation_mobile {
		padding: 1em 10px;
	}
}
#navigation_mobile p {
	margin-top: 1em;
}

#navigation_mobile ul li a {
	display: block;
	text-align: center;
	line-height: 3em;
}

.mobile_nav_title {
	display: block;
	position: absolute;
	width: 22px;
	height: 8px;
	top: 2px;
	right: 16px;
	color: #8a532b;
	font-size: 7px;
	padding-right: 15px;
}
#mobile_nav {
	display: block;
}
#menu_nav_mobile {
	margin: 0;
}



/* ==================================================
   Contents
================================================== */

#contents {
	padding-top: 1em;
}

.bottom_basic {
	padding-bottom: 2em;
}

@media (min-width: 960px) {
	#contents {
		padding-top: 2em;
	}
	.bottom_basic {
		padding-bottom: 4em;
	}
}

/* ==================================================
   Home
================================================== */

@media (min-width: 960px) {
	.home_sp_slider {
		display: none;
	}
}
.top_logo{
	margin-bottom: 10px;
}
.top_menu{
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
}
.top_menu li{
	width: calc(25% - 16px * 3/4);	
	margin: 0 16px 0 0;
	margin-bottom: 36px;
	box-sizing: border-box;
}
.top_menu li:nth-of-type(4n){
	margin-right: 0;
}
/*.top_menu li:nth-last-of-type(4n){
	margin-left: 0;
}*/
.top_menu p{
	margin-top: 8px;	
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
}
.top_menu img{
	margin: 0 auto;
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 22%;
	/*box-shadow: 1px 1px 30px rgba(0,0,0,0.2);*/
}
.josefin.top_menu li{
	margin-bottom: 20px;
}
@media (max-width: 960px) {
	.top_menu p{
		font-size: 0.8rem;
	}
  .top_menu.hurusato_menu li:first-of-type,
  .top_menu.hurusato_menu li:nth-of-type(5n){
    margin-left: 0;
  }
  .top_menu.hurusato_menu li:nth-last-of-type(4n){
    margin: 0 8px;
  }
}
.menu_text{
    margin-left: 44px
}
@media (max-width: 1281px) {
    .menu_text{
        margin-left: 18px;
    }
}
@media (max-width: 960px) {
    .menu_text{
        margin-left: 0;
    }
}
/* ==================================================
   Accordion
================================================== */

.accordion,
.accordion2 {
    width: 100%;
    background: #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
 }

.accordion .link,
.accordion2 .link2 {
    cursor: pointer;
    display: block;
    padding: 1em 1em 1em 3em;
    color: #303030;
    font-weight: 600;
    border-top: 1px solid #CCC;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion li:first-child .link,
.accordion2 li:first-child .link2 {
    border-top: none;
}

.accordion .link i,
.accordion2 .link2 i {
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 18px;
    color: #595959;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion .link i.fa-chevron-down,
.accordion2 .link2 i.fa-chevron-down{
    right: 12px;
    left: auto;
    font-size: 16px;
}

.accordion li.open .link,
.accordion2 li.open .link2{
    color: #b63b4d;
}

.accordion li.open .link i,
.accordion2 li.open .link2 i{
    color: #b63b4d;
}
.accordion li.open .link i.fa-chevron-down,
.accordion2 li.open .link2 i.fa-chevron-down{
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion li.default .submenu {display: block;}
.accordion2 li.default .submenu {display: block;}

.submenu {
	display: none;
	padding: 0 1em 2em 1em;
}

.submenu li {
	padding-top: 0.25em;
	padding-bottom: 0.5em;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	border-top: 1px dotted #ccc;
}
.submenu .accordion2 li{
	border-top :none;
}
.submenu li:first-child {
	padding-top: 1em;
	border-top: none;
}
.submenu .row li{
	border-top :none;
}
.submenu .row li:first-child{
	padding-top: 0.25em;
}
.submenu:after,
.submenu li:after {
	content: " ";
	display: table;
	clear: both;
}
.accordion .submenu > img {
  max-width: 100%;
  padding-bottom: 16px;
}
.accordion .submenu > img:last-child {
  padding-bottom: 0;
}

#info_map:target{
  display: block;
}

@media (min-width: 960px) {
	.accordion .link,
	.accordion2 .link2{
		padding: 1em 1em 1em 4em;
	}
	.submenu li {
		padding-top: 0.5em;
	}
	.submenu .row li:first-child{
		padding-top: 0.5em;
	}
}


/* ==================================================
   Infomation
================================================== */

.submenu .ul_check li {
	position: relative;
	padding: 0.5em 0 0.5em 1.75em;
	border-top: 1px dotted #808080;
}

.submenu .ul_check li:last-child {
	border-bottom: none;
}

.submenu .ul_check li:before {
	font-family: FontAwesome;
	content: "\f00c";
	position: absolute;
	left: 0;
	color: #595959;
	font-size: 1.25em;
}

/*
.h_info_voice::before {
	content: "\f086\00a0";
	font-family: FontAwesome;
	font-size: 1.14em;
}

.h_info_camera::before {
	content: "\f030\00a0";
	font-family: FontAwesome;
	font-size: 1.14em;
}

.h_info_child::before {
	content: "\f1ae\00a0";
	font-family: FontAwesome;
	font-size: 1.14em;
}
*/
.h_info_bookmark::before {
	content: "\f02e\00a0";
	font-family: FontAwesome;
	font-size: 1.14em;
}

.info_gmap::before {
	content: "\f041\00a0";
	font-family: FontAwesome;
}
.map_open>img{
	cursor: pointer;
	max-width: 50%;
}
.recommend_map{
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	background-color: rgba(0,0,0,0.4);
	text-align: center;
}
.recommend_map>div{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.recommend_map img{
	max-height: 99vh;	
	display: block;
	margin: 0 auto;
}
.recommend_map>div>div{
	position: relative;	
}
.map_close{
	cursor: pointer;
	position: absolute;
	top: 1.6%;
	right: 2.2%;
	font-size: 1.6rem;
}
@media (max-width: 960px) {
	.recommend_map img{
		max-width: 98vw;
	}
}
/* ==================================================
   Contact
================================================== */

label {
	font-weight: 600;
}

label span {
	color: #d94654;
	font-size: 0.83em;
	font-weight: 300;
}

.input-field {
	font-size: 15px;
	line-height: 1.6;
	margin-top: 5px;
	margin-bottom: 20px;
}

input,
textarea {
	color: #333 !important;
	font-size: 14px;
	line-height: 1.6;
	margin-top: 3px;
	padding: 10px;
	background: #fff;
	border-radius: 3px;
	border: 1px solid #808080;
}

/* Chrome, Safari */
::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder{
    color: #999;
}
 
/* Firefox */
::-moz-placeholder,
.form-control::-moz-placeholder{
    color: #999;
}
 
/* Firefox 18以前 */
:-moz-placeholder,
.form-control:-moz-placeholder{
    color: #999;
}
 
/* IE */
:-ms-input-placeholder,
.form-control:-ms-input-placeholder{
    color: #999;
}

.full_width {
	width: 100%;
}

.form_control:focus {
	border: 1px solid #db6110;
}

.checkbox-validate input,
.radio-validate input {
	margin-top: 5px;
	margin-right: 5px;
}

@media (max-width: 600px) {
	.checkbox-validate input {
		margin-top: 15px;
	}
}

.error input, 
.error textarea {
	background: #fcc;
}

p.error {
	color: #ff3661 !important;
	font-size: 12px;
}

#success,
#failure {
	display: none;
	margin-top: 4em
}

#success h3,
#failure h3 {
	font-size: 1.33em;
}


/* ==================================================
   Privacy Policy
*/

.privacy_policy {
    height: 260px;
    margin: 15px auto;
	padding: 15px;
    overflow: scroll;
    overflow-x: hidden;
	background: #fff;
	border-radius: 3px;
	border: 1px solid #808080;
}

.privacy_policy h3 {
	font-size: 1.3em;
	font-weight: 600;
	margin-bottom: 0.5em;
}

.privacy_policy h4 {
	font-weight: 600;
	margin-top: 1em;
}

.privacy_policy h4::before {
	content: "\f111\00a0";
	font-family: FontAwesome;
}

.personal_check label {
	font-weight: 300 !important;
}

@media (max-width: 600px) {
	.privacy_policy {
    	margin: 15px auto;
		padding: 15px;
	}
	.privacy_policy h4 {
		font-size: 14px;
	}
	.privacy_policy p {
		padding-bottom: 15px;
	}
}

/* ==================================================
   Footer
================================================== */

footer {
	position:relative;
	color: #333;
	background: #f4eeea;
	margin-top: 40px;
    border-top: solid 1px #8a532b;
}

footer a {
	color: #333 !important;
}

#credits {
	margin-top: 2em;
	padding: 2em 0;
	font-size: 0.8em;
	text-align: center;
}

#pagetop {
	position: fixed;
	bottom: 15px;
	left: 50%;
	display: none;
	cursor: pointer;
	z-index: 99;
	border-radius: 20px;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	background: #8c542b;
	
	-webkit-transition: background 0.1s linear 0s;	
	   -moz-transition: background 0.1s linear 0s;
		 -o-transition: background 0.1s linear 0s;
		    transition: background 0.1s linear 0s;
}

#pagetop > i {
	color: #fff;
	font-size: 2.5em;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -0.5em;
	margin-left: -0.3em;
	line-height: 1em;
}

@media (min-width: 960px) {
	footer {
		margin-top: 60px;
	}
	#credits {
		text-align: right;
	}
	#pagetop {
		border-radius: 30px;
		width: 60px;
		height: 60px;
		margin-left: -30px;
	}
	#pagetop > i {
		font-size: 3.0em;
	}
}

/* ==================================================
   Video
================================================== */
a.link_basic{
  color: #8a532b;
  text-decoration: underline;
}
.video_basic img,
.video_sp{
  max-width: 100%;
  border-radius: 6px;
  cursor: pointer;
}
.video_basic>div{
  display: none;
}
.play{
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}
.play>div{
  display: block;
  position: relative;
  width: 540px;
  max-width: 90vw;
  height: 90vh;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.play video{
  position: absolute;
  max-width: 100%;
  max-height: 90vh;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.play span{
  position: absolute;
  max-width: 100%;
  top: 0px;
  right: 0px;
  z-index: 0;
  font-size: 2rem;
  color: #FFF;
  cursor: pointer;
  text-align: right;
}
@media (max-width: 960px) {  
  .video_basic:nth-of-type(3),
  .video_basic:last-of-type{
    margin-top: 20px;
  }
  .play span{
    top: 0px;
    right: 16px;
  }
  .play>div{
    max-width: 84vw;
  }
}
@media (max-width: 540px) {
  .play span{
    top: 16px;
    right: 0px;
  }
}

/* ==================================================
   for pet
================================================== */
.link-yakiimo {
  display: flex;
}
.link-yakiimo p {
  margin: 4em 1em;
}
.link-yakiimo a {
  display: block;
  text-align: center;
  background: #b63b4d;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 1em;
  max-width: 80%;
}
.link-yakiimo h4 {
  margin-left: 5px;
}
@media (max-width: 960px) {  
  .link-yakiimo {
  display: block;
  }
  .link-yakiimo p {
  margin: 0 1em;
  }
  .link-yakiimo a {
    max-width: 100%;
    margin-bottom: 2em;
  }
  .link-yakiimo img {
    display: block;
    margin: 0 auto;
  }
  .link-yakiimo h4 {
  margin-top: 1em;
}
}