@charset "UTF-8";
/*-----------------------
reset
-----------------------*/
@import url("https://use.typekit.net/mky1hvo.css");
html, body, div, span, applet, object, iframe, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  vertical-align: middle;
  font-weight: 200;
}

q::before, q::after, blockquote::before, blockquote::after {
  content: "";
  content: none;
}

a {
  display: inline-block;
}

a img {
  border: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

ul {
  list-style: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

a {
  color: #000;
  text-decoration: none;
}
a:link {
  color: #000;
}
a:active {
  color: #000;
}
a:visited {
  color: #000;
}
a:hover {
  cursor: pointer;
}

p {
  margin: 0;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

*:focus {
  outline: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*color*/
/*mediaquery*/
/*mixin*/
/* Font系 */
.red {
  color: #ff2200;
}

.gray {
  color: #5c5c5c;
}

/*-----------------------
common
-----------------------*/
.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

.tab {
  display: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tab {
    display: block;
  }
}
@media (max-width: 767px) {
  .tab {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: block;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.clearfix {
  overflow: hidden;
}

.fL {
  float: left;
}

.fR {
  float: right;
}

.flex {
  display: flex;
}

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

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.font20 {
  font-size: 2rem;
}

@media (max-width: 767px) {
  .font20 {
    font-size: 3.5vw;
  }
}
.mT20 {
  margin-top: 2rem;
}

.mT40 {
  margin-top: 4rem;
}

.mT60 {
  margin-top: 6rem;
}

.mT80 {
  margin-top: 8rem;
}

.mB20 {
  margin-bottom: 2rem;
}

.mB40 {
  margin-bottom: 4rem;
}

.mB60 {
  margin-bottom: 6rem;
}

.mB80 {
  margin-bottom: 8rem;
}

@media (max-width: 767px) {
  .mT20 {
    margin-top: 1rem;
  }

  .mT40 {
    margin-top: 2rem;
  }

  .mT60 {
    margin-top: 3rem;
  }

  .mT80 {
    margin-top: 4rem;
  }

  .mB20 {
    margin-bottom: 1rem;
  }

  .mB40 {
    margin-bottom: 2rem;
  }

  .mB60 {
    margin-bottom: 3rem;
  }

  .mB80 {
    margin-bottom: 4rem;
  }
}
.before-none,
.li-before-none li:before,
.after-none,
.li-after-none li:after {
  content: none !important;
}

.figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .figure:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
  }
}
.figure img {
  height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  vertical-align: bottom;
  display: block;
}

.font-s {
  font-size: 80%;
}
@media (max-width: 767px) {
  .font-s {
    font-size: 1.2rem;
  }
}

/*-----------------------
icon
-----------------------*/
.icon-phone:before {
  content: "\e902";
}

.icon-map-pin:before {
  content: "\e901";
}

.icon-mail:before {
  content: "\e900";
}

/*==================================================
 * Tags
 *================================================*/
/*block*/
/**
 * img
 */
img {
  height: auto;
  max-width: 100%;
}

/**
 * a
 */
a {
  transition: .3s;
}

/**
 * blockquote
 */
blockquote {
  font-size: 100%;
}

/**
 * media
 */
embed,
iframe,
object {
  max-width: 100%;
}

/**
 * list
 */
/*==================================================
 * WordPress Classes
 *================================================*/
/**
 * .wp-caption
 */
/*
.wp-caption {
	border: none;
	text-align: left;
	background-color: transparent;
	padding: 0;
	margin: 0 0 ($line-height-computed / 2);
	border-radius: 0;
	max-width: 100%;

	&-text {
		color: $gray;
		margin-top: 5px;
		font-size: $font-size-small;
		line-height: 1.4;
	}
}
*/
/**
 * alignment
 */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/**
 * .bypostauthor
 */
/**
 * Galleries
 */
.gallery-item {
  display: inline-block;
  padding: 1.79104477%;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33333%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66667%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28571%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11111%;
}
.gallery-icon img {
  margin: 0 auto;
}
.gallery-caption {
  display: block;
}
.gallery-columns-6 .gallery-caption, .gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption {
  display: none;
}

/**
 * Screen reader text
 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/*-----------------------
reset
-----------------------*/
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?heivvd');
  src:  url('../fonts/icomoon.eot?heivvd#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?heivvd') format('truetype'),
    url('../fonts/icomoon.woff?heivvd') format('woff'),
    url('../fonts/icomoon.svg?heivvd#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/*
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?ilev8y");
  src: url("../fonts/icomoon.eot?ilev8y#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?ilev8y") format("truetype"), url("../fonts/icomoon.woff?ilev8y") format("woff"), url("../fonts/icomoon.svg?ilev8y#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
  */
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-info:before {
  content: "\ea0c";
}

html {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 14px;
  background: #f1f1f1;
  position: relative;
}

#container .container_inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#container .error {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#container .error h1 {
  text-align: center;
  font-size: 24px;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}
#container .error h1 span {
  color: #264d7a;
  display: inline-block;
  padding-right: .1em;
}
#container .error h1::before {
  content: '\ea0c';
  font-family: 'icomoon'; 
/*
  content: '\e9e1';
  font-family: 'icomoon';
*/
  display: inline-block;
  font-size: 35px;
  color: #264d7a;
  margin-right: 10px;
}
#container .error p {
  text-align: center;
  line-height: 1.8;
  color: #666;
}
#container .error p a {
  text-decoration: underline;
  color: #264d7a;
}
#container .error p a:hover {
  text-decoration: none;
}
#container .error img {
  margin: 60px 0 20px;
}

@media (max-width: 767px) {
  #container {
    overflow: hidden;
  }
  #container .container_inner {
    width: 96%;
    max-width: 100%;
  }
  #container .container_inner .error {
    width: 95%;
  }
  #container .container_inner .error p {
    line-height: 2;
  }
  #container .container_inner .error img {
    margin-top: 40px;
  }
}