/*
Theme Name:lexa-theme-child
Template:lexa-theme
Theme URI: https://lexa.co.jp
Author: Lexa inc.
Author URI: https://lexa.co.jp
Version: 1.0.0
*/
/**********************
- ROOT
- BASE
- GENERAL
  -- FONT
  -- ALIGN
  -- FLEX
  -- LIST
  -- OTHER
- HEADER
- BREADCRUMB
- CONTAINER
- HEADING
- BUTTON
- FOOTER
- ARCHIVE
- SINGLE
- CONTACT
- FRONT
- PAGE PARTS
- LOADING
- COLOR
- MARGIN
- ANIMATION
- RESPONSIVE
***********************/

/**********************
* ブレイクポイント
* 560px/960px
**********************/


/*********************
ROOT
**********************/
:root {
   --base: #FFF;
   --bg-1: #E8F6F9;
   --bg-2: #FFFBBF;
   --text-main: #222;
   --text-sub: #7E7F83;

   --main-color-1: #00A7E6;
   --main-color-2: #6BCCF0;
   --main-color-3: #BCE3F2;
   --sub-color-1: #FFF000;
   --sub-color-2: #FFFBB3;
   --accent-color-1: #1D65FF;
   --accent-color-2: #CF1531;
   --gradient: linear-gradient(70deg, #5DC5F7, #FA966B);

   --font-jp: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
   --font-en: 'Oswald', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
   --font-material: 'Material Icons Round';
   --light: 300;
   --normal: 400;
   --bold: 700;

   --container: calc(1920px + 6%);
   --container-side: 3%;
   --container-l: 1200px;
   --container-m: 960px;
   --container-s: 660px;
   --container-ss: 480px;

}


/*********************
BASE
*********************/
html {
   font-size: 62.5%;
}

body {
   background-color: var(--base);
   color: var(--text-main);
   font-family: var(--font-jp);
   font-weight: var(--normal);
   font-size: 1.6rem;
   letter-spacing: .05em;
   line-height: 1.7;
}

section {
   position: relative;
   width: 100%;
}

h1,
h2,
h3 {
   font-weight: var(--normal);
}

p {
   margin: 0 0 1em;
}

a {
   color: var(--main-color-1);
   transition: all 0.3s;
}

a:hover {
   opacity: 0.7;
}

img {
   height: auto;
   border: none;
   line-height: 0;
   vertical-align: bottom;
}

ol,
ul {
	padding: 0;
}

ol li {
   margin: 0 0 1em 1.5em;
}

ul li {
	margin: 0 0 1em 1.2em;
}

dl,
dt,
dd {
	margin: 0;
}



@media only screen and (max-width: 560px) {
   body {
      font-size: 1.5rem;
   }

}


/*********************
GENERAL
*********************/

/*FONT*/
.font-en {
   font-family: var(--font-en);
}

.small {
   font-size: .85em;
}

.large {
   font-size: 1.2em;
}

.strong {
   font-weight: var(--bold);
}

.uppercase {
	text-transform: uppercase;
}

.line-heighter,
.line-heighter * {
   line-height: 2.1;
}

.line-heighter p {
   margin: 0 0 2em;
}


/*ALIGN*/
.center {
   text-align: center;
}

.center > * {
   margin-left: auto;
   margin-right: auto;
}

.left {
   text-align: left;
}

.right {
   text-align: right;
}


/*IMAGE*/
.img-circle {
   border-radius: 50%;
}

.img-radius {
   border-radius: 30px;
}

.img-object {
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}

.img-object>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


/*FLEX*/
.flex {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}

.flex-reverse {
   flex-direction: row-reverse;
}

.nowrap {
   flex-wrap: nowrap;
}

.space-around {
   justify-content: space-around;
}

.justify-start {
   justify-content: flex-start;
}

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

.items-center {
   align-items: center;
}

.cell {
   position: relative;
}

.cell img {
   display: block;
   width: 100%;
}

.cell > *:last-child {
   margin-bottom: 0;
}

.cell--1-2 {
   width: 48%;
}

.cell--1-3 {
   width: 30%;
}

.cell--1-4 {
   width: 23%;
}

.cell--2-3 {
   width: 60%;
}

.cell--3-4 {
   width: 73%;
}

/* お問い合わせリンクのスタイル */
.header-nav-link[href*="contact"],
.header-nav-link[href*="お問い合わせ"] {
   background-color: #1D65FF;
   color: #fff !important;
   padding: 8px 16px;
   transition: all 0.3s;
}

.header-nav-link[href*="contact"]:hover,
.header-nav-link[href*="お問い合わせ"]:hover {
   background-color: #1D65FF;
   color: #fff !important;
   opacity: 0.8;
}

@media only screen and (max-width: 960px) {
   .header-nav-link[href*="contact"],
   .header-nav-link[href*="お問い合わせ"] {
      background-color: #1D65FF;
      color: #fff !important;
      padding: 2rem;
   }
}

@media only screen and (max-width: 560px) {
   .flex {
      flex-direction: column;
   }

   .cell--1-2,
   .cell--1-3,
   .cell--1-4,
   .cell--2-3,
   .cell--3-4{
      margin-bottom: 1em;
      width: 100%;
   }

   .order0 {
      order: 0;
   }

   .order1 {
      order: 1;
   }
}


/*LIST*/
.list-none {
   list-style: none;
   padding-left: 0;
   margin: 0;
}

.list-dot li {
	list-style: none;
	padding-left: 1em;
	text-indent: -1em;
	margin: 0 0 1em;
}

.list-dot li::before {
   content: '';
   background-color: var(--main-color-2);
   border-radius: 50%;
   display: inline-block;
   width: 9px;
   height: 9px;
   margin-right: .5em;
}


/*OTHER*/
.relative {
   position: relative;
}

.block {
   display: block;
}

.shadow {
   box-shadow: 0 0 1.8rem -1rem rgb(0 0 0 / 27%);
}

.marker {
	background:linear-gradient(transparent 60%, var(--sub-color-2) 60%);
}

.box {
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
}

.box > *:last-child {
   margin-bottom: 0;
}


@media only screen and (max-width: 960px) {

}

@media only screen and (max-width: 560px) {  

}



/*********************
HEADER
*********************/
.header {
   position: sticky;
   top: 0;
   width: 100%;
   z-index: 100;
   background-color: #fff;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--container);
  padding: 15px var(--container-side);
	margin: 0 auto;
}

.header-title {
	margin: 0;
   max-width: 50px;
}

#drawer-input {
   display: none;
}

.header-nav-item {
   list-style: none;
}

.header-nav-link {
   color: var(--text-main);
   display: block;
   font-family: var(--font-en);
   position: relative;
   text-decoration: none;
}


@media only screen and (min-width: 961px) {
   .header-nav-list {
      display: flex;
      margin: 0;
      padding: 0;
      align-items: center;
   }
	
   .header-nav-item {
		margin: 0 0 0 3.8rem;
   }
	
   .header-nav-item:first-child {
      /* display: none; */
   }
	
   .header-nav-item:nth-child(2) {
      /* margin-left: 0; */
   }
}

@media only screen and (max-width: 960px) {
   .header {
      padding-inline: 5px;
   }
	
   #drawer-content {
		background: #fff;
		opacity: 0;
		visibility: hidden;
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		transition: 0.3s ease-in-out;
		height: 100%;
		width: 100%;
		z-index: -1;
   }
	
   #drawer-open {
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      right: 10px;
      height: 25px;
      width: 25px;
      outline: none;
      z-index: 1000;
      transform: translateY(-50%);
   }
	
   #drawer-open span {
      content: '';
      background-color: #222;
      display: block;
      height: 1px;
      width: 25px;
      position: absolute;
      transition: 0.3s ease-in-out;
      transform-origin: right;
   }
	
   #drawer-open span.top {
      top: 8px;
   }
	
   #drawer-open span.bottom {
      bottom: 8px;
   }
	
   #drawer-input:checked ~ #drawer-open span.top {
      top: 3px;
      transform: rotate(-45deg);
   }
	
   #drawer-input:checked ~ #drawer-open span.bottom {
      bottom: 3px;
      transform: rotate(45deg);
   }
	
   #drawer-input:checked ~ #drawer-content {
		opacity: 1;
		visibility: visible;
		z-index: 999;
   }
	
   .header-nav-list {
      margin: 0;
      padding: 74px 0 0;
   }
	
   .header-nav-item {
      border-bottom: solid 1px var(--accent-color-1);
   }
	
   .header-nav-link {
      width: 100%;
      padding: 2rem;
   }
}





/*********************
BREADCRUMBS
*********************/
#breadcrumb {
	padding: 1.5em 0 2em;
   font-size: 1.4rem;
}

.breadcrumb-list {
	padding: 0;
	max-width: var(--container-l);
	margin: 0 auto;
}

.breadcrumb-item {
	color: var(--text-main);
	line-height: 1;
	list-style: none;
	display: inline-block;
	margin: 0;
}

.breadcrumb-item:not(:last-of-type)::after {
	content: '/';
	padding: 0 0.5em;
}

.breadcrumb-item a {
	color: inherit;
	font-weight: var(--normal);
	text-decoration: none;
}



/*********************
CONTAINER
*********************/
.section-wrap {
   padding-top: 100px;
   padding-bottom: 100px;
   position: relative;
}

.container {
   max-width: var(--container);
   padding-right: var(--container-side);
   padding-left:  var(--container-side);
   position: relative;
   margin: 0 auto;
   width: 100%;
}

.container-l {
   max-width: var(--container-l);
   margin: 0 auto;
}

.container-m {
   max-width: var(--container-m);
   margin: 0 auto;
}

.container-s {
   max-width: var(--container-s);
   margin: 0 auto;
   margin-bottom: 100px;
}

.container-ss {
   max-width: var(--container-ss);
}

.map-wrap {
   position: relative;
}

.map-wrap::before {
   content: "";
   display: block;
   padding-top: 50%;
}

.map-wrap iframe {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
}


@media only screen and (max-width: 560px) {
   .section-wrap {
      padding-top: 50px;
      padding-bottom: 50px;
   }

   .container {
      padding-right: 5%;
      padding-left: 5%;
   }

}

/*********************
HEADING
*********************/
.h1-page {
   font-size: 3rem;
   font-weight: var(--bold);
   margin-bottom: 1em;
}

.h2-top {
   font-size: 3rem;
   font-weight: var(--bold);
   margin-bottom: 1em;
}

.h2-page {
   font-size: 1.4rem;
   font-weight: var(--normal);
   position: relative;
   padding-bottom: 90px;
   text-align: center;
}

.h3-page {
   font-size: 2rem;
   font-weight: var(--bold);
   margin-bottom: 1em;
}

@media only screen and (max-width: 960px) {

}


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



/*********************
BUTTON
*********************/
.btn-wrap {
   margin-top: 1.5em;
   width: 100%;
}

.btn {
   color: var(--text-main);
   display: inline-block;
   font-size: 1em;
   font-weight: normal;
   line-height: 1;
   position: relative;
   transition: all .3s;
   z-index: 1;
}

.btn-main {
   background-color: var(--main-color-1);
   border: 1px solid var(--main-color-1);
   border-radius: 30px;
   color: #fff;
   display: inline-block;
   font-size: 1.7rem;
   font-weight: 900;
   padding: 1em 0;
   text-align: center;
   text-decoration: none;
   transition: all .3s;
   width: 100%;
   letter-spacing: .2em;
}

.btn-sub { 
   color: var(--main-color-1);
   padding-right: 2em;
   position: relative;
   text-decoration: none;
}

.btn-sub::after {
   content: "\e5c8";
   font-family: var(--font-material);
   font-size: 2rem;
   font-weight: 400;
   line-height: 3rem;
   height: 3rem;
   width: 3rem;
   position: absolute;
   top: 50%;
   right: 0;
   transform: translateY(-50%);
   transition: all .3s;
   text-align: center;
}

.btn-cta {

}


@media only screen and (min-width: 961px) {
  .btn-main:hover {
    background-color: #fff;
    color: var(--main-color-1);
  }

  .btn-sub:hover {
    color: var(--main-color-1);
  }

  .btn-sub:hover::after {
    right: -.25em;
  }

  .btn-cta:hover {
    
  }
}

/*********************
FOOTER
*********************/
#footer {
   position: relative;
}

.footer-cta {
	padding: 80px 0 100px;
}

.footer-logo {
	display: block;
	width: 120px;
}

.footer-main {
   padding: 0;
   position: relative;
}

.footer-menu-main {
   padding: 80px 0 50px;
}

.footer-main-list {
	padding: 0;
	margin: 0;
	justify-content: flex-start;
}

.footer-main-item {
	color: var(--text-main);
	font-size: 1.4rem;
	text-transform: uppercase;
	list-style: none;
	margin: 0 3em 0 0;
}

.footer-main-item:last-of-type {
	margin: 0;
}

.footer-main-link {
	color: inherit;
	text-decoration: none;
}

.copyright{
	margin: 0;
}

.copyright a {
	color: var(--text-main);
	font-size: 1rem;
	text-decoration: none;
}


@media only screen and (max-width:960px) {

}

@media only screen and (max-width:560px) {
	.footer-cta {
		padding: 45px 0 60px;
	}
	
	.footer-menu-main {
		padding: 40px 0;
	}

	.footer-main-item:not(:last-of-type) {
		margin: 0 0 2em 0;
	}
}


/*********************
ARCHIVE
*********************/

/*card*/
.archive-card {
	background-color: #FFFFFF;
	border-radius: 5px;
	margin-right: 8%;
	margin-bottom: 2em;
}

.archive-card:nth-of-type(2n) {
	margin-right: 0%;
}

.archive-card a {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
}

.archive-card a:hover {
	box-shadow: 0 3px 8px 0 rgba(0,0,0,.1);
	opacity: 1;
}

.image-archive {
  width: 100%;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}

.image-archive>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s;
}

.archive-card:hover .image-archive>img {
   transform: scale(1.1);
}

.text-archive {
   color: #000000;
   padding: 1em;
   background-color: #FFFFFF;
}

.text-archive .time-archive {
   color: #777777;
   margin-bottom: 1em;
}

/*list*/
.archive-list {
	padding: 0 0.6em 1.8em;
	border-bottom: dotted 1px #D2DAE6;
	margin-bottom: 1.5em;
	transition: all 0.4s;
}

.archive-list:last-of-type {
  margin-bottom: 0;
}

.archive-list a {
	display: block;
  text-decoration: none;
}

.archive-list .time-archive {
	width: 15%;
	color: var(--main-color-1);
}
.archive-list .title-archive {
	width: 80%;
	color: var(--text-main);
	font-weight: var(--normal);
	margin: 0;
}


/*PAGENATION*/

/* リンクの枠 */
.navigation.pagination {
	margin-top: 4em;
}

.pagination .nav-links {

}

/* 数字のリンク */
.pagination .page-numbers {
  color: #333;
	font-family: var(--font-en);
	font-weight: var(--normal);
	display: flex;
	justify-content: center;
	margin: 0;
   align-items: center;
}

.pagination .page-numbers li {
	list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1.2em;
}

.pagination .page-numbers li:first-of-type {
	margin-left: 0;
}

.pagination .page-numbers li:last-of-type {
	margin-right: 0;
}

.pagination .page-numbers a {
	text-decoration: none;
}

/* 前へ、次へボタン */
.pagination .nav-links .prev,
.pagination .nav-links .next {
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.pagination .nav-links .prev {
	background-image: url(../../uploads/arrow-left.svg);
}

.pagination .nav-links .next {
	background-image: url(../../uploads/arrow-right.svg);
}

/* ドット */
.pagination .nav-links .dots {

}

/* 現在のページ */
.pagination .nav-links .current {
	text-decoration: underline;
   color:#007bff;
}


@media only screen and (max-width: 560px) {
   .archive-list:last-child {
      margin-bottom: 1.5em;
   }

   .archive-list .time-archive {
      margin-right: 0;
      margin-bottom: .5em;
   }

   .archive-list .time-archive,
   .archive-list .title-archive {
      width: 100%;
   }
}



/*********************
SINGLE
*********************/
.header-single {
   position: relative;
   padding-top: 120px;
}

.time-single {
   display: inline-block;
   margin-bottom: .5em;
}

.title-single {
   font-size: 2.2rem;
   font-weight: 400;
   margin-bottom: 40px;
}

.main-single-post h2 {
	font-size: 1.8em;
}

.main-single-post h3 {
	font-size: 1.5em;
}

.main-single-post h4 {
	font-size: 1.2em;
}

.main-single-post h2,
.main-single-post h3,
.main-single-post h4 {
	margin: 1em 0;
}

.main-single-post p+h2,
.main-single-post img+h2,
.main-single-post figure+h2,
.main-single-post table+h2 {
	margin-top: 3em;
}

.main-single-post p+h3,
.main-single-post img+h3,
.main-single-post figure+h3,
.main-single-post table+h3 {
	margin-top: 2em;
}

.main-single-post ul,
.main-single-post ol {
	margin: 2em 0;
}

.main-single-post figure,
.main-single-post img {
	display: block;
	max-width: 100%;
	margin: auto;
}

.main-single-post figure {
	margin-bottom: 2em;
}

.main-single-post figcaption {
	font-size: .8em;
	line-height: 1.7;
	margin-top: .5em;
}

.main-single-post table{
	border: solid 1px #DDD;
	border-collapse: collapse;
}

.main-single-post tr{
    border-bottom: solid 1px #DDD;
}

.main-single-post th,
.main-single-post td{
	padding: 1em;
	border-right: solid 1px #DDD;
}


@media only screen and (max-width: 560px) {
   .title-news {
      font-size: 1.9rem;
   }
}




/*********************
CONTACT
*********************/
input[type=email],
input[type=text],
input[type=tel],
input[type=file],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
	color: inherit;
	font-size: 1.6rem;
	display: inline-block;
	width:100%;
}

input[type=email],
input[type=text],
input[type=tel],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
	border: 1px solid #DBDBDB;
	border-radius: 5px;
  background-color: #FFF;
	line-height: 1.7;
	padding: 1rem .9rem;
}

input[type=number] {
   margin-right: .5rem;
   padding: .5rem 1rem;
   width: calc(4em + 2rem);
}

input[type=checkbox],
input[type=radio],
.wpcf7-list-item-label {
   vertical-align: middle;
}

input[type=submit] {
	background-color: var(--accent-color-1);
	border: 1px solid var(--accent-color-1);
	color: #fff;
	display: inline-block;
	font-size: 2rem;
	font-weight: 900;
	/* padding: 1em 0; */
	text-align: center;
	text-decoration: none;
	transition: all .3s;
	width: 500px;
	letter-spacing: .2em;
}

input[type=submit]:hover{
   color: #fff;
}

.number-month,
.number-date {
   margin-left: 1em;
}

.wpcf7-list-item {
	margin: 0 1em 0 0;
}

.wpcf7-list-item:last-child {
   margin: 0;
}

.heading-form-contact {
  font-size: 1em;
  font-weight: var(--bold);
}

.detail-form-contact {
   padding-top: 8px;
   padding-bottom: 30px;
}

.contact-label {
   background-color: var(--main-color-1);
   border-radius: 2px;
   color: #fff;
   display: inline-block;
   font-size: 12px;
   font-weight: 600;
   margin-left: 10px;
   padding: 5px 12px;
   line-height: 1;
   vertical-align: text-bottom;
}

::placeholder {
   color: #ddd;
   font-size: 1.6rem;
   letter-spacing: .15rem;
   line-height: 1.5;
}

.wpcf7-checkbox .wpcf7-list-item {
   display: block;
   margin-bottom: .5em;
}

.wpcf7-acceptance .wpcf7-list-item {
   margin: 0;
}

/*送信完了メッセージ*/
.wpcf7 form.sent .wpcf7-response-output {
   background-color: #fff;
   border-color: #4a84af;
   margin-top: 3em;
   padding: 2em; 
}

/*Google reCAPCHA*/
.reCAPTCHA {
	font-size: 10px;
}


@media only screen and (max-width: 560px) {
  input[type=submit] {
    width: 100%;
  }
  
	.heading-form-contact {
	  font-size: 1.4rem;
	  padding: 10px 0 0;
	}

	.detail-form-contact {
	  padding: 10px 0 30px;
	}

	.contact-label {
	  font-size: 1.1rem;
	}

	::placeholder {
	  font-size: 1em;
	}

	.wpcf7-list-item-label {
	  font-size: 1.3rem;
	}

	.wpcf7-text,
	.wpcf7-textarea {
		font-size: 1.6rem;
	}
}

/*********************
FRONT
*********************/

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


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


/*********************
PAGE PARTS
*********************/


/*privacy*/
.main-privacy h2 {
  font-size: 1.5em;
  margin: 2em 0 .5em;
}

/*********************
LOADING
*********************/
#loading,
#loading_logo {
   display: none;
}

.home #loading {
	background-color: #fff;
	display: block;
	position: fixed;
	left: 0;
	text-align:center;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.home #loading_logo {
   display: block;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate3d(-50%, -50%, 0);
}

#loading_logo img {
   width:210px;
}


/*********************
COLOR
**********************/
.bg-base {
   background-color: var(--base);
}

.bg-main-color-1 {
   background-color: var(--main-color-1);
}

.bg-accent-color-1 {
   background-color: var(--accent-color-1);
}

.color-base {
   color: var(--base);
}

.color-main-1 {
   color: var(--main-color-1);
}

.color-accent-1 {
   color: var(--accent-color-1);
}

/*********************
MARGIN
*********************/
.margin-1 {
   margin-bottom: 180px;
}
.margin-2 {
   margin-bottom: 160px;
}
.margin-3 {
   margin-bottom: 100px;
}
.margin-4 {
   margin-bottom: 60px;
}
.margin-5 {
   margin-bottom: 40px;
}

@media only screen and (max-width: 560px) {
   .margin-1{
      margin-bottom: 150px;
   }
   .margin-2 {
      margin-bottom: 90px;
   }
   .margin-3{
      margin-bottom: 80px;
   }
   .margin-4{
      margin-bottom: 50px;
   }
   .margin-5{
      margin-bottom: 30px;
   }
}


/*********************
ANIMATION
*********************/
.fadein {
   opacity: 0;
   transform: translateY(30px);
   transition-property: transform, opacity;
   transition-duration: 1.5s;
   transition-delay: 0s;
}

.fadein.is-active {
   opacity: 1;
   transform: translateY(0);
}

.delay--2 {
   transition-delay: .3s;
}

.delay--3 {
   transition-delay: .6s;
}

.delay--4 {
   transition-delay: .9s;
}


@media only screen and (min-width: 561px) {

}

/*********************
RESPONSIVE
*********************/
@media only screen and (min-width: 961px) {
   .tb_only { display: none !important; }
   .sp_only { display: none !important; }
   .sp_tb { display: none !important; }
}

@media only screen and (min-width: 561px) and (max-width: 960px) {
   .pc_only { display: none !important; }
   .sp_only { display: none !important; }
   .sp_pc { display: none !important; }
}

@media only screen and (max-width: 560px) {
   .pc_only { display: none !important; }
   .tb_only { display: none !important; }
   .tb_pc { display:none!important; }
}

@media only screen and (max-width: 320px) {
   html { font-size: .58em; }
}