@charset "UTF-8";
.row {
  display: flex;
  justify-content: space-between;
}

@-webkit-keyframes headerimg {
  from {
    -webkit-transform: scale(1.2);
    opacity: 0;
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1;
            transform: scale(1);
  }
}

@keyframes headerimg {
  from {
    -webkit-transform: scale(1.2);
    opacity: 0;
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1;
            transform: scale(1);
  }
}

@-webkit-keyframes header-img-first {
  from {
    -webkit-transform: scale(1.2);
    opacity: 1;
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1;
            transform: scale(1);
  }
}

@keyframes header-img-first {
  from {
    -webkit-transform: scale(1.2);
    opacity: 1;
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1;
            transform: scale(1);
  }
}

@-webkit-keyframes header-img-second {
  from {
    -webkit-transform: scale(1.2);
    opacity: 1;
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1;
            transform: scale(1);
  }
}

@keyframes header-img-second {
  from {
    -webkit-transform: scale(1.2);
    opacity: 1;
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1;
            transform: scale(1);
  }
}

@-webkit-keyframes header-img-third {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    opacity: 1;
            transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
            transform: translateZ(0);
  }
}

@keyframes header-img-third {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    opacity: 1;
            transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
            transform: translateZ(0);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: #efefef;
  color: #333;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding-top: 62px;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

p {
  margin: 0 0 1em 0;
  padding: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 1em;
}

pre code {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 1em;
}

ul,
ol {
  margin: 0;
  padding: 0 0 0 20px;
}

table {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
  table-layout: fixed;
  width: 100%;
}

th,
td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.4em 0.6em;
  text-align: left;
  vertical-align: top;
}

th {
  background: #444;
  color: #fff;
}

blockquote {
  margin: 0 1em;
}

form {
  margin: 0;
  padding: 0;
}

input,
textarea {
  -webkit-appearance: none;
  background-image: none;
  border: 1px solid #aaa;
  border-radius: 0;
  font-family: inherit;
  font-size: 1em;
  padding: 0.6em 0.8em;
  width: 100%;
}

input[type="submit"]:hover, input[type="submit"]:focus {
  cursor: pointer;
  outline: none;
}

input[type="submit"] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input[type="radio"] {
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  display: inline-block;
  height: 15px;
  margin: 0 8px 0 0;
  vertical-align: middle;
  width: 15px;
}

input[type="radio"]:focus, input[type="radio"]:checked {
  background: #121d3b;
  border: 1px solid #fff;
  box-shadow: 0 0 0 1px #121d3b;
  outline: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 2.4em 0.4em 0.8em;
  width: 100%;
}

select::-ms-expand {
  display: none;
}

select:focus {
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: none;
  outline: none;
}

.inner {
  margin: 0 auto;
  max-width: 100%;
  padding: 2.4em 1.2em;
}

.inner h2 {
  font-size: 1.6em;
  margin-bottom: 1.6em;
  text-align: center;
}

.inner h2 span {
  display: block;
  font-size: 0.7em;
}

body.home {
  padding: 0;
}

#header,
#content,
#footer {
  width: 100%;
}

#secondary {
  padding: 0 12px;
}

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

.text-left {
  text-align: left;
}

.left {
  float: left;
  height: auto;
  margin: 0 8px 8px 0;
  max-width: 45%;
}

.clear {
  overflow: hidden;
}

.sp-show {
  display: none;
}

.tab-show {
  display: none;
}

/* btn component */
.btn {
  -webkit-appearance: none;
  background-color: #1a2f5e;
  background-image: none;
  border: none;
  border-radius: 0;
  box-shadow: 0.0625em 0.0625em 0.1875em 0 #666;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  margin: 0 0 1em;
  padding: 0.6em 2em;
  position: relative;
  text-decoration: none;
}

.btn::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.btn:hover, .btn:focus {
  outline: none;
}

.btn::after {
  -webkit-transform: translateY(-50%);
  bottom: auto;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  left: auto;
  position: absolute;
  right: .4em;
  top: 50%;
          transform: translateY(-50%);
}

.c-card {
  background: #fff;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
  display: inline-block;
  height: auto;
  margin: 0 0 1.6em;
  max-width: 100%;
  position: relative;
  text-align: left;
  text-decoration: none;
}

.c-card .c-card-img {
  height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 0 56.25% 0;
  text-align: center;
  width: 100%;
}

.c-card .c-card-img img {
  height: auto;
  margin: 0;
  max-width: 100%;
  vertical-align: top;
}

.c-card .c-card-body {
  padding: 0.8em;
}

.c-card .c-card-body time {
  color: gray;
  font-size: 0.875em;
}

.c-card .c-card-body .c-card-title {
  color: #333;
  font-size: 1.2em;
  margin: 0.4em 0;
}

.c-card .c-card-body p {
  color: gray;
  font-size: 0.95em;
  margin: 0;
}

.c-card .c-card-cate {
  background: #1a2f5e;
  color: #fff;
  font-size: 0.875em;
  line-height: 1;
  padding: 0.4em 0.8em;
  position: absolute;
  right: 0;
  top: 0;
}

.floating {
  bottom: 8px;
  display: none;
  height: 50px;
  line-height: 50px;
  position: fixed;
  right: 8px;
  text-align: center;
  width: 50px;
}

.floating a {
  background: #5e491a;
  color: #fff;
  display: block;
  opacity: 0.6;
  text-decoration: none;
}

.floating a:hover {
  opacity: 1;
}

.check {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
}

.check li {
  padding: 2px 0;
}

.check li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 8px;
}

#about {
  background: #fff;
}

.about-type {
  background: #f5f5f5;
  margin-bottom: 3em;
  overflow: hidden;
}

.about-type:last-child {
  margin-bottom: 0;
}

.about-type h3 {
  margin: 0 0 1em 0;
  text-align: center;
}

.about-type h3 span {
  display: block;
  font-size: 0.875em;
}

.about-type .about-type-body {
  padding: 1.2em 2em;
  width: calc(100% - 300px);
}

.about-type .about-type-img {
  height: auto;
  overflow: hidden;
  width: 300px;
}

.about-type .about-type-img img {
  transition: all 1s ease 0s;
}

.about-type .about-type-img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#access {
  background: #fdfcf8;
}

#access .inner-head {
  padding-bottom: 0;
}

#access dl dt {
  background: #1a2f5e;
  color: #fff;
  display: inline-block;
  padding: .4em .8em;
  text-align: center;
  vertical-align: middle;
  width: 90px;
}

#access dl dd {
  display: inline-block;
  margin: 0;
  padding: .4em .8em;
  vertical-align: middle;
}

.access-bg {
  margin: 0 0 1em;
  padding: 0;
}

.access-bg span {
  display: block;
  padding: 4px 0;
  text-align: center;
}

.access-img {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
}

.access-img li {
  width: 50%;
}

.access-img li p {
  padding: 0 1em;
}

.access-img li span {
  display: block;
  padding: 4px 0;
  text-align: center;
}

.access-map {
  padding-top: 45.3%;
  position: relative;
  width: 100%;
  /* = height(500px) ÷ width(1104px) × 100 */
}

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

#blog {
  background: #fff;
}

#blog .row {
  margin-bottom: 1.6em;
}

#blog .btn {
  transition: all 0.5s ease 0s;
}

#blog .btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog-card {
  background: #fff;
  box-shadow: 0 0 3px 0 #666;
  color: #333;
  padding: 0.8em;
  text-decoration: none;
  transition: all 0.5s ease 0s;
  width: 24%;
}

.blog-card h3 {
  margin: 0 0 1em;
}

.blog-card img {
  margin-bottom: 1em;
}

.blog-card .blog-card-meta {
  color: #666;
  font-size: 0.85em;
  margin-bottom: 0.8em;
  text-align: right;
}

.blog-card time::before {
  content: "\f073";
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  margin-right: 8px;
}

.blog-card:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#contact {
  background: #1a2f5e url(../img/contact.jpg) no-repeat center center;
}

#contact p {
  padding: 0 3em;
  text-align: center;
}

#contact input[type=text],
#contact input[type=email],
#contact textarea {
  margin-top: 1em;
}

#contact .btn {
  background: #fff;
  color: #333;
  margin: 0;
  padding-bottom: 1em;
  padding-top: 1em;
}

#contact .btn-contact {
  display: block;
  margin: 1em auto;
  position: relative;
  transition: all 0.5s ease 0s;
  width: 40%;
}

#contact .btn-contact::after {
  -webkit-transform: translateY(-50%);
  bottom: auto;
  color: #333;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  left: auto;
  position: absolute;
  right: .4em;
  top: 50%;
          transform: translateY(-50%);
}

#contact .btn-contact:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.content-form {
  margin-bottom: 1em;
  padding: 0 3em;
}

.contact-area {
  width: 50%;
}

#footer-menu {
  background: #ededed;
}

#footer-menu .inner {
  padding-bottom: 80px;
  padding-top: 80px;
}

#footer-menu nav {
  text-align: center;
}

#footer-menu nav ul {
  display: inline-block;
  list-style: none;
  overflow: hidden;
  padding: 0;
  vertical-align: bottom;
}

#footer-menu nav ul li {
  float: left;
  padding: 0.2em 0.8em;
}

#footer-menu nav ul li > a {
  color: #333;
  font-size: 0.95em;
  text-decoration: none;
}

#footer-menu nav ul li > a:hover {
  text-decoration: underline;
}

#footer {
  background: #444;
  color: #fff;
  padding: 1.2em 0.4em;
  z-index: 10;
}

#footer .inner {
  padding-bottom: 0;
  padding-top: 0;
}

.copy {
  text-align: center;
}

#header-img {
  font-family: Sans-Serif-Bold, HelveticaNeue-Bold, "Helvetica Neue Bold", HelveticaBold, Helvetica-Bold, "Helvetica Bold", HelveticaNeue, "Helvetica Neue", Helvetica, "ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Osaka, "MS UI Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  overflow: hidden;
  position: relative;
}

#header-img img {
  -webkit-animation: headerimg 3s ease 0s 1 normal forwards;
          animation: headerimg 3s ease 0s 1 normal forwards;
  opacity: 0;
}

.header-img-contents {
  -webkit-transform: translateX(-50%);
  color: #fff;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E,メイリオ, Meiryo, serif;
  left: 50%;
  position: absolute;
  top: 120px;
          transform: translateX(-50%);
  z-index: 15;
}

.header-img-contents .header-img-contents-en {
  font-size: 1.4em;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
}

.header-img-contents .header-img-contents-title {
  font-size: 3em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5em;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
}

.header-img-contents .header-img-contents-title span {
  font-size: 0.5em;
}

.header-img-contents p {
  color: #3e3e3e;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 2;
  text-shadow: 0 0 3px #fff;
}

.header-img-first {
  -webkit-animation: fadeInLeft 1.5s ease 2s 1 normal forwards;
          animation: fadeInLeft 1.5s ease 2s 1 normal forwards;
  opacity: 0;
}

.header-img-second {
  -webkit-animation: header-img-second 1.5s ease 3.5s 1 normal forwards;
          animation: header-img-second 1.5s ease 3.5s 1 normal forwards;
  opacity: 0;
}

.header-img-third {
  -webkit-animation: header-img-third 1.5s ease 5s 1 normal forwards;
          animation: header-img-third 1.5s ease 5s 1 normal forwards;
  opacity: 0;
}

#header {
  background: #444;
  box-shadow: 0 0 8px 0 #666;
  font-weight: bold;
  height: 62px;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
}

#header .inner {
  height: 100%;
  padding: 0;
}

.site-logo {
  margin-right: auto;
}

.site-logo a {
  color: #fff;
  display: block;
  font-size: 20px;
  height: 100%;
  line-height: 1.4;
  padding: .4em .8em;
  text-decoration: none;
}

.site-logo span {
  display: block;
  font-size: .65em;
}

.drawer-hamburger {
  color: #ffffff;
  font-size: 1.2em;
}

.global-nav ul {
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-nav ul::after {
  clear: both;
  content: "";
  display: block;
}

.global-nav ul li {
  box-sizing: border-box;
  float: left;
  height: 100%;
  width: 122px;
}

.global-nav ul li a {
  color: #fff;
  display: block;
  font-size: 14px;
  height: 100%;
  padding: .8em .8em .4em;
  text-align: center;
  text-decoration: none;
}

.global-nav ul li a:hover {
  background: #123258;
}

.global-nav ul li.global-nav-em a {
  background: #5e491a;
}

.global-nav ul li.global-nav-em a:hover {
  background: #442f00;
}

.global-nav ul li span {
  display: block;
  font-size: .75em;
}

.home #header.header-top {
  background: transparent;
  box-shadow: none;
}

.home #header.header-top .site-logo a,
.home #header.header-top .global-nav ul li a {
  color: #fff;
}

.global-nav-sp {
  background: #444;
  border-style: 0 0 3px 0 #000;
  color: #fff;
}

.global-nav-sp a {
  color: #ffffff;
}

.global-nav-sp a:hover {
  color: #ffffff;
}

.global-nav-sp a span {
  display: block;
  font-size: .75em;
}

.drawer-open .drawer-hamburger {
  display: none;
}

#lead {
  background: #fff;
  text-align: center;
}

#lead .inner {
  padding-bottom: 80px;
  padding-top: 80px;
}

#lead .lead-ja {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 0.5em;
}

#lead .lead-ja.lead-ja-sp {
  font-size: 0.85em;
  font-weight: normal;
}

#lead .lead-en {
  font-style: oblique;
}

#lead .youtube {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

#lead .youtube .inner {
  padding-top: 56.25%;
  position: relative;
  height: 0;
  overflow: hidden;
}

#lead .youtube .inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#news .inner {
  padding: 0;
}

.news-box {
  box-shadow: 0 0 3px 0 #666;
  position: relative;
  z-index: 15;
}

.news-box .news-title {
  background: #1a2f5e;
  color: #fff;
  font-weight: bold;
  padding: .4em .8em;
  text-align: center;
}

.news-box ul {
  background: #fff;
  list-style: none;
  margin: 0;
  padding: .4em 0;
}

.news-box ul li a {
  color: #333;
  display: block;
  margin: 0;
  padding: .4em .8em;
  text-align: left;
  text-decoration: none;
}

.news-box ul li a time {
  color: #ccc;
  font-size: 0.85em;
}

#page h1 {
  font-size: 1.6em;
}

#page h2 {
  color: #1a2f5e;
  font-size: 1.4em;
  margin: 1.6em 0 1em;
  text-align: left;
}

#page h2::before {
  content: '■';
  margin-right: 8px;
}

#page input[type=text],
#page input[type=email],
#page textarea {
  margin-top: 1em;
}

#page .btn-contact {
  display: block;
  margin: 1em auto;
  position: relative;
  transition: all 0.5s ease 0s;
  width: 40%;
}

#price {
  background: #fff;
}

#price .price-table {
  padding: 0 4em;
}

#price table {
  box-shadow: 0 0 3px 0 #666;
  margin: 0 0 1em;
}

#price h3 {
  border-left: 5px solid #1a2f5e;
  font-size: 1.2em;
  margin: 2em 0 1em;
  padding: .4em .8em;
}

#price ul {
  margin-bottom: 1em;
}

#price .price-head {
  font-size: 1.05em;
  font-weight: bold;
  margin: 2em 0 1em;
}

#price p {
  text-align: center;
}

#price-sub {
  background: #E6F1F5 url(../img/price.jpg) no-repeat top center/auto 100%;
}

#price-sub h3 {
  border-left: 5px solid #1a2f5e;
  font-size: 1.2em;
  margin: 2em 0 1em;
  padding: .4em .8em;
}

#price-sub ul {
  margin-bottom: 1em;
}

#price-sub .price-head {
  font-size: 1.05em;
  font-weight: bold;
  margin: 2em 0 1em;
}

#profile {
  background: #fdfcf8;
}

.profile-img {
  height: auto;
  padding: 0 8px;
  text-align: center;
  width: 300px;
}

.profile-img img {
  margin-bottom: 4px;
}

.profile-body {
  padding: 0 8px;
  width: calc(100% - 300px);
}

.profile-name {
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
}

.profile-lead {
  margin-bottom: 1em;
}

.profile-card {
  background: #fff;
  margin-bottom: 1em;
  padding: .8em;
}

.profile-card h3 {
  margin: 0 0 1em;
}

.line-lead {
  margin-bottom: 1em;
}

.line-inline {
  display: inline-block;
  vertical-align: top;
}

.line-inline p {
  padding: 0.8em;
}

.line-inline .line-inline-bold {
  font-weight: bold;
}

.insta-lead {
  margin-bottom: 1em;
}

.insta-inline {
  display: inline-block;
  vertical-align: top;
}

.insta-inline p {
  padding: 0.8em;
}

.insta-inline .insta-inline-bold {
  font-weight: bold;
}

.fb-lead {
  margin-bottom: 1em;
}

.fb-inline {
  display: inline-block;
  vertical-align: top;
}

.fb-inline p {
  padding: 0.8em;
}

.fb-inline .fb-inline-bold {
  font-weight: bold;
}

.profile-split{
  display: flex;
  justify-content: center;
  vertical-align: middle;
}

.profile-split div.item{
    width: calc(50% - 10px);
    margin: 5px;
}

.profile-split div.item img{
  width: 150px;
}

#spirit {
  background: #000 url(../img/spirit.jpg) no-repeat bottom center;
  color: #fff;
}

#spirit .inner h2 span {
  color: #fff;
}

#spirit h3 {
  border-left: 5px solid #1a2f5e;
  font-size: 1.2em;
  margin: 2em 0 1em;
  padding: .4em .8em;
}

#spirit ul {
  margin-bottom: 1em;
}

#voice {
  background: #fff;
}

.voice-card {
  background: rgba(239, 239, 239, 0.5);
  margin-bottom: 3em;
  overflow: hidden;
}

.voice-card:last-child {
  margin-bottom: 0;
}

.voice-card .voice-img {
  height: auto;
  margin: 0;
  max-width: 45%;
  text-align: center;
  width: 172px;
}

.voice-card .voice-img img {
  margin: 0;
}

.voice-card p {
  padding: 1.2em 2em;
  width: calc(100% - 172px);
}

.voice-card p > :last-child {
  margin-bottom: 0;
}

.voice-card.voice-card-r .voice-img {
  float: right;
}

.voice-card.voice-card-r p {
  margin: 0 28px 0 0;
}

.voice-card.voice-card-r p::before, .voice-card.voice-card-r p::after {
  left: 100%;
}

.voice-card.voice-card-r p::before {
  border: 12.82px solid transparent;
  margin-top: -12.82px;
  z-index: 1;
}

.voice-card.voice-card-r p::after {
  border: 10px solid transparent;
  border-left: 10px solid #efefef;
  margin-top: -10px;
  z-index: 2;
}

#what {
  background: #222126 url(../img/what.jpg) no-repeat center left 38px;
}

.what-content {
  color: #fff;
}

.what-content .what-em {
  font-size: 2em;
  font-weight: bold;
}

.what-content .what-em.what-em-sp {
  font-size: 1.2em;
  margin-bottom: 3em;
}

.what-content .check {
  margin: 3em 0;
}

.what-content .check li {
  font-weight: bold;
}

@media screen and (min-width: 1104px) {
  .inner {
    width: 1104px;
  }
  #primary {
    margin-right: 2em;
    width: 768px;
  }
  #secondary {
    padding: 0;
    width: 336px;
  }
}

@media screen and (max-width: 767px) {
  .inner h2 {
    font-size: 1.4em;
  }
  .sp-show {
    display: block;
  }
  .sp-hidden {
    display: none;
  }
  .tab-hidden {
    display: none;
  }
  .about-type .row {
    display: block;
  }
  .about-type h3 span {
    font-size: 0.825em;
  }
  .about-type .about-type-body {
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
  }
  .about-type .about-type-img {
    margin: 0 auto 1em;
    width: 165px;
  }
  .access-img li {
    font-size: 0.9em;
  }
  #contact p {
    padding-left: 0;
    padding-right: 0;
  }
  #contact .btn-contact {
    width: 100%;
  }
  .content-form {
    padding-left: 0;
    padding-right: 0;
  }
  #footer-menu .inner {
    padding-bottom: 2em;
    padding-top: 2em;
  }
  .copy {
    font-size: 0.875em;
  }
  #header-img {
    background: #ffffff;
  }
  .header-img-contents {
    -webkit-transform: translateX(0);
    left: 12px;
    padding: 0;
    top: 62px;
            transform: translateX(0);
  }
  .header-img-contents .header-img-contents-en {
    font-size: 0.7em;
  }
  .header-img-contents .header-img-contents-title {
    font-size: 1.5em;
    line-height: 1.1;
    margin-bottom: 0.5em;
  }
  .header-img-contents p {
    display: none;
    font-size: 0.785em;
  }
  #header {
    overflow: visible;
  }
  #lead .inner {
    padding-bottom: 2em;
    padding-top: 2em;
  }
  #lead .lead-ja {
    font-size: 1em;
  }
  #lead .lead-en {
    font-size: 0.875em;
  }
  #page .btn-contact {
    width: 100%;
  }
  #page .table-stone tr {
    display: flex;
    flex-wrap: wrap;
  }
  #page .table-stone td {
    display: block;
    width: 50%;
  }
  #price .price-table {
    padding-left: 0;
    padding-right: 0;
  }
  .profile-img {
    margin: 0 auto 1em;
    max-width: 100%;
  }
  .profile-body {
    width: 100%;
  }
  .profile-name {
    font-size: 1.1em;
    text-align: center;
  }
  .profile-lead {
    display: block;
  }
  .line-inline {
    display: block;
    font-size: 0.8em;
    text-align: center;
  }
  .line-inline img {
    display: block;
    margin: 0 auto;
  }
  .insta-inline {
    display: block;
    font-size: 0.8em;
    text-align: center;
  }
  .insta-inline img {
    display: block;
    margin: 0 auto;
  }
  .fb-inline {
    display: block;
    font-size: 0.8em;
    text-align: center;
  }
  .fb-inline img {
    display: block;
    margin: 0 auto;
  }
  .voice-card .row {
    display: block;
  }
  .voice-card .voice-img {
    margin: 0 auto 1em;
  }
  .voice-card p {
    padding: 0 1em;
    width: 100%;
  }
  #what {
    background-position: center center;
  }
  .what-content .what-em {
    font-size: 1.4em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1103px) {
  .tab-show {
    display: block;
  }
  .tab-hidden {
    display: none;
  }
  .header-img-contents {
    -webkit-transform: translateX(0);
    left: 12px;
            transform: translateX(0);
  }
  .header-img-contents .header-img-contents-en {
    font-size: 1em;
  }
  .header-img-contents .header-img-contents-title {
    font-size: 1.8em;
    margin-bottom: 1em;
  }
  .header-img-contents p {
    font-size: 1em;
  }
  #header {
    overflow: visible;
  }
}
