@charset "UTF-8";
/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします  */
/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
/*!
 * jquery-drawer v3.2.0
 * Flexible drawer menu using jQuery, iScroll and CSS.
 * http://git.blivesta.com/drawer
 * License : MIT
 * Author : blivesta <design@blivesta.com> (http://blivesta.com/)
 */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,600;0,900;1,400&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
/*!------------------------------------*\
    Base
\*!------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,600;0,900;1,400&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,600;0,900;1,400&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,600;0,900;1,400&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,600;0,900;1,400&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,600;0,900;1,400&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,600;0,900;1,400&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,600;0,900;1,400&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,600;0,900;1,400&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,600;0,900;1,400&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,600;0,900;1,400&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

.drawer-nav {
  position: fixed;
  z-index: 150;
  top: 0;
  overflow: hidden;
  width: 30rem;
  height: 100%;
  color: #333333;
  background-color: #fff;
  text-align: left;
  padding: 8%;
}

.drawer-nav a {
  text-decoration: none;
  color: #333333;
  font-size: 100%;
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.drawer-open .drawer-overlay {
  display: block;
}

/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -30rem;
  -webkit-transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 30rem;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  position: fixed;
  z-index: 104;
  top: 0;
  display: block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0;
  padding-left: 10px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: #122b3f;
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: #122b3f;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #fff;
}

.drawer-hamburger #menuicon {
  margin: 10px 0;
  font-size: 18px;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: " ";
}

.drawer-hamburger-icon:after {
  top: 10px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/
/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-nav h2 {
  width: 200px;
  margin: 20px 0 15px;
}

.drawer-nav h2 a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  background-image: url("../images/head_logo.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  display: block;
  height: 0;
  width: 100%;
  padding-top: 10%;
}

.drawer-nav ul {
  margin: 0 2%;
}

.drawer-nav ul li {
  font-size: 1.6rem;
  position: relative;
  padding-right: 18px;
}

.drawer-nav ul li span {
  display: block;
  font-size: 1.1rem;
}

.drawer-nav ul li:before {
  position: absolute;
  top: 12px;
  right: 0px;
  color: #595757;
  font: 12px "FontAwesome";
  content: "\f105";
}

.drawer-nav ul li a {
  padding: 7px 0;
  display: block;
}

.drawer-nav .other_site div a {
  display: block;
  color: #fff;
  font-weight: bold;
  padding: 15px;
  margin: 5px 0;
  text-align: center;
}

.drawer-nav .other_site .eye a {
  background-color: #122b3f;
}

.drawer-nav .other_site .dental a {
  background-color: #ffd457;
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします  */
html {
  font-size: 62.5%;
}

@media only screen and (max-width: 960px) {
  html {
    font-size: 56%;
  }
}

body {
  font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  text-align: center;
  color: #333333;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-size: 1.6rem;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

@media only screen and (max-width: 960px) {
  img {
    border: 0;
    max-width: 100%;
    height: auto;
  }
}

a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover {
  opacity: 0.7;
}

a img {
  border: none;
}

i {
  padding: 0 5px;
}

ul {
  letter-spacing: -1em;
}

ul li {
  letter-spacing: 0;
  list-style: none;
}

.pc {
  display: block;
}

@media only screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.tablet {
  display: none;
}

@media only screen and (max-width: 960px) {
  .tablet {
    display: block;
  }
}

@media only screen and (max-width: 480px) {
  .tablet {
    display: none;
  }
}

.sp {
  display: none;
}

@media only screen and (max-width: 960px) {
  .sp {
    display: block;
  }
}

.ssp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .ssp {
    display: block;
  }
}

/*PC改行加える*/
.br-pc {
  display: inherit;
}

@media only screen and (max-width: 960px) {
  .br-pc {
    display: none;
  }
}

/*PC改行無効*/
.br_sp {
  display: none;
}

@media only screen and (max-width: 960px) {
  .br_sp {
    display: block;
  }
}

.br_ssp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .br_ssp {
    display: block;
  }
}

/************************************

wrapper

************************************/
.wrapper {
  max-width: 1060px;
  width: 94%;
  margin: 0 auto;
}

.wrapper::after {
  content: "";
  display: block;
  clear: both;
}

@media only screen and (max-width: 960px) {
  .wrapper {
    width: 86%;
  }
}

/************************************

.list(flexbox)

************************************/
.list {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list::after {
  content: "";
  display: block;
  clear: both;
}

.list article {
  width: auto;
}

/************************************

header

************************************/
header {
  background-color: #fff;
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

@media only screen and (max-width: 960px) {
  header {
    height: 50px;
    position: relative;
  }
}

header .container {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 94%;
  margin: 26px auto;
  max-width: 1280px;
}

@media only screen and (max-width: 960px) {
  header .container {
    margin: 15px auto;
  }
}

header h1 {
  width: 33%;
  max-width: 300px;
}

@media only screen and (max-width: 1140px) {
  header h1 {
    width: 25%;
  }
}

@media only screen and (max-width: 960px) {
  header h1 {
    width: 200px;
  }
}

header h1 a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  background-image: url("../images/head_logo.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  display: block;
  height: 0;
  width: 100%;
  padding-top: 10%;
}

header nav {
  width: 65%;
  margin: 5px 0;
}

@media only screen and (max-width: 1140px) {
  header nav {
    width: 72%;
  }
}

@media only screen and (max-width: 960px) {
  header nav {
    display: none;
  }
}

header nav ul {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

header nav ul li {
  margin: 0 10px;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 1140px) {
  header nav ul li {
    font-size: 1.4rem;
  }
}

/************************************

#top_contact

************************************/
#top_contact #map iframe {
  width: 100%;
  height: 400px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}

#top_contact .list {
  width: 90%;
  max-width: 700px;
  margin: 0  auto;
}

#top_contact article {
  width: 46%;
  margin: 0 2%;
}

@media only screen and (max-width: 480px) {
  #top_contact article {
    width: 96%;
    margin: 0 2% 25px;
  }
  #top_contact article:last-child {
    margin: 0 2%;
  }
}

#top_contact article h3 {
  color: #ffd457;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  display: inline-block;
  padding: 0 10px;
  position: relative;
  margin: 0 0 20px;
}

@media only screen and (max-width: 960px) {
  #top_contact article h3 {
    margin: 0 0 10px;
  }
}

#top_contact article h3::before, #top_contact article h3::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ffd457;
  width: 37px;
  height: 1px;
  content: "";
}

#top_contact article h3::before {
  left: -40px;
}

#top_contact article h3::after {
  right: -40px;
}

#top_contact article .tel {
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

@media only screen and (max-width: 960px) {
  #top_contact article .tel {
    font-size: 2.6rem;
  }
}

#top_contact article .bt a {
  font-size: 1.8rem;
  padding: 10px 80px 10px 60px;
}

@media only screen and (max-width: 960px) {
  #top_contact article .bt a {
    padding: 10px 0;
    display: block;
    max-width: 280px;
    margin: 0 auto;
  }
}

#top_contact article p {
  font-size: 1.4rem;
  margin: 20px 0 0;
}

@media only screen and (max-width: 960px) {
  #top_contact article p {
    margin: 10px 0 0;
  }
}

/************************************

footer

************************************/
footer nav {
  background-color: #f2f2f2;
  padding: 30px 2%;
}

@media only screen and (max-width: 960px) {
  footer nav {
    padding: 2%;
  }
}

footer nav ul {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer nav ul li {
  margin: 0 1%;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 960px) {
  footer nav ul li {
    width: 48%;
    background-color: #fff;
    margin: 1%;
  }
  footer nav ul li:last-child {
    width: 98%;
    background-color: #ffd457;
    font-weight: bold;
  }
  footer nav ul li a {
    display: block;
    padding: 7px 2px;
  }
}

footer #foot_bottom {
  background-color: #122b3f;
  color: #fff;
  padding: 50px 0;
}

@media only screen and (max-width: 960px) {
  footer #foot_bottom {
    padding: 30px 0;
  }
}

footer #foot_bottom a {
  color: #fff;
}

footer #foot_bottom h2 {
  font-size: 1.8rem;
  margin: 0 0 1em;
}

footer #foot_bottom p {
  font-size: 1.5rem;
  line-height: 1.7;
}

footer #foot_bottom .copyright {
  font-size: 1rem;
  letter-spacing: 0.4em;
  margin: 2em;
}

@media only screen and (max-width: 960px) {
  footer #foot_bottom .copyright {
    letter-spacing: 0.2em;
  }
}

/************************************

PageUP

************************************/
#pageup {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 0;
  right: 0;
  z-index: 10;
  font-size: 8px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 960px) {
  #pageup {
    bottom: 0px;
    right: 0px;
    font-size: 4px;
  }
}

#pageup.none {
  display: none;
}

#pageup a {
  width: 50px;
  display: block;
  text-decoration: none;
  line-height: 100%;
  color: #333;
}

#pageup i {
  font-size: 40px;
  line-height: 0.8;
}

@media only screen and (max-width: 960px) {
  #pageup i {
    font-size: 36px;
  }
}

/************************************

main

************************************/
main {
  display: block;
  padding-top: 90px;
}

@media only screen and (max-width: 960px) {
  main {
    padding: 0;
  }
}

main section .white,
main section .gray {
  padding: 80px 0;
}

@media only screen and (max-width: 960px) {
  main section .white,
  main section .gray {
    padding: 40px 0;
  }
}

main section .white {
  background-color: #fff;
}

main section .gray {
  background-color: #f2f2f2;
}

/*移動＋フェードイン表示*/
.list-mv07:not(:target) {
  opacity: 1\9;
  /*IE9対策*/
}

/************************************

.bt

************************************/
.bt a {
  font-size: 1.6rem;
  line-height: 1;
  display: inline-block;
  border: 1px solid #122b3f;
  padding: 10px 60px 10px 40px;
  position: relative;
  background-color: #122b3f;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
}

.bt a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  background-image: url("../images/yaji_w.svg");
  background-position: center;
  background-size: contain;
  width: 16px;
  height: 11px;
  content: "";
}

.bt a:hover {
  opacity: 1;
  background-color: transparent;
  color: #122b3f;
}

.bt a:hover::before {
  background-image: url("../images/yaji_b.svg");
}

.bt.bt_w a {
  border: 1px solid #fff;
  background-color: #fff;
  color: #122b3f !important;
}

.bt.bt_w a::before {
  background-image: url("../images/yaji_b.svg");
}

.bt.bt_w a:hover {
  opacity: 1;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff !important;
}

.bt.bt_w a:hover:before {
  background-image: url("../images/yaji_w.svg");
}

/************************************

.midashi

************************************/
.midashi {
  margin: 0 auto 40px;
}

@media only screen and (max-width: 960px) {
  .midashi {
    margin: 0 auto 30px;
  }
}

.midashi a {
  display: block;
}

.midashi .eng {
  font-size: 3.6rem;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  margin: 0 0;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 960px) {
  .midashi .eng {
    font-size: 2.8rem;
  }
}

.midashi h1 {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  font-weight: normal;
}

.midashi h2 {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  font-weight: normal;
}

/************************************

wp-pagenavi

************************************/
.navi {
  width: 100%;
  clear: both;
}

.navi:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.navi .list_top {
  display: none;
}

.wp-pagenavi {
  text-align: center;
  font-size: 1.4rem;
  padding: 20px 0;
  width: 100%;
}

.navi a {
  padding: 10px;
  text-decoration: none;
}

.wp-pagenavi span {
  padding: 10px;
}

.current {
  font-weight: bold;
  font-size: 1.6rem;
}

@media only screen and (max-width: 960px) {
  .navi {
    position: relative;
    margin: 0;
    width: 100%;
  }
  .wp-pagenavi {
    text-align: center;
    margin: 20px 0;
  }
  .wp-pagenavi a {
    position: absolute;
    font-size: 14px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33%;
    display: inline-block;
  }
  .navi .list_top {
    display: block;
  }
  .navi .list_top a {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 33%;
    font-size: 14px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
  }
  .wp-pagenavi .previouspostslink {
    top: 0;
    left: 0;
  }
  .wp-pagenavi .nextpostslink {
    top: 0;
    right: 0;
  }
  .navi a:before {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0;
    margin: auto;
    font: 14px 'FontAwesome';
  }
  .wp-pagenavi a.previouspostslink:before {
    content: "\f104";
  }
  .wp-pagenavi a.nextpostslink:before {
    content: "\f105";
  }
  .navi .list_top a:before {
    content: "\f106";
  }
  .wp-pagenavi .pages, .wp-pagenavi .extend, .wp-pagenavi .smaller, .wp-pagenavi .larger, .wp-pagenavi .first, .wp-pagenavi .last, .wp-pagenavi .current {
    display: none;
  }
}

/************************************

nav_single

************************************/
.nav_single {
  clear: both;
  text-align: center;
  font-size: 80%;
  padding: 20px 0;
}

.nav_single a {
  padding: 20px;
  text-decoration: none;
}

@media only screen and (max-width: 960px) {
  .nav_single a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 0px;
    width: 30%;
    display: inline-block;
    margin: 1%;
  }
}

/************************************

modalwindow

************************************/
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center;
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s, visibility .3s;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .4s, visibility .4s;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: "";
}

.modal-wrapper .modal-window {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 1100px;
  padding: 30px 30px 30px;
  border-radius: 2px;
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  vertical-align: middle;
}

@media only screen and (max-width: 960px) {
  .modal-wrapper .modal-window {
    width: 94%;
    padding: 10px;
  }
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: -40px;
  right: 0;
  width: 35px;
  color: #fff !important;
  font-size: 35px;
  line-height: 1;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
}

.modal-wrapper .modal-close:hover {
  color: #ddd !important;
}

/************************************

selectstyle

************************************/
.selectstyle {
  position: relative;
  display: inline-block;
  background: #fefefe;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(60%, rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, 0.1)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.1) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.1) 100%);
  border-radius: 3px;
  font-size: 1em;
  overflow: hidden;
  z-index: 0;
  padding-right: 0px;
  vertical-align: middle;
}

/* 下三角の表示 */
.selectstyle:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  right: 15px;
  color: #666;
  font: 16px 'FontAwesome';
  content: "\f107";
  z-index: -1;
}

/* selectタグのスタイル */
.selectstyle select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: .4em 3em;
  color: #000;
  background: transparent;
  border-radius: 3px;
  font-size: 100%;
  outline: none;
}

/* IEの下三角非表示 */
.selectstyle select::-ms-expand {
  display: none;
}

/* Firefoxの点線非表示 */
.selectstyle select::-moz-focus-inner {
  border: 0;
}

/************************************

#sc_mainimage

************************************/
#sc_mainimage {
  width: 100%;
  height: 0;
  padding-top: 23.4%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media only screen and (max-width: 960px) {
  #sc_mainimage {
    padding-top: 30%;
  }
}

@media only screen and (max-width: 480px) {
  #sc_mainimage {
    padding-top: 65%;
  }
}

#sc_mainimage .title {
  position: absolute;
  background-color: rgba(18, 43, 63, 0.54);
  color: #fff;
  width: 400px;
  padding: 30px 0;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
}

@media only screen and (max-width: 960px) {
  #sc_mainimage .title {
    width: 320px;
    padding: 20px 0;
  }
}

@media only screen and (max-width: 480px) {
  #sc_mainimage .title {
    width: 260px;
  }
}

#sc_mainimage .title .eng {
  font-size: 3.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 960px) {
  #sc_mainimage .title .eng {
    font-size: 2.8rem;
  }
}

@media only screen and (max-width: 480px) {
  #sc_mainimage .title .eng {
    font-size: 2.6rem;
    letter-spacing: 0.15em;
  }
}

#sc_mainimage .title h1 {
  font-size: 1.3rem;
  font-weight: normal;
}

/************************************

features_list

************************************/
.features_list article {
  margin: 0 0 50px;
  position: relative;
}

@media only screen and (max-width: 960px) {
  .features_list article {
    margin: 0 0 30px;
  }
}

.features_list article:last-child {
  margin: 0;
}

.features_list article .image {
  width: 75%;
  padding-bottom: 50px;
}

@media only screen and (max-width: 960px) {
  .features_list article .image {
    width: 95%;
    padding-bottom: 20vw;
  }
}

@media only screen and (max-width: 480px) {
  .features_list article .image {
    padding-bottom: 40vw;
  }
}

.features_list article .text {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 46%;
  background-color: #fff;
  padding: 4% 8%;
  text-align: left;
}
.features_list article .text1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 46%;
  background-color: #f2f2f2;
  padding: 4% 8%;
  text-align: left;
}



@media only screen and (max-width: 960px) {
  .features_list article .text,
  .features_list article .text1 {
    width: 90%;
    padding: 5%;
    margin-right: 2%;
  }
}

@media only screen and (max-width: 480px) {
  .features_list article .text,
  .features_list article .text1 {
    min-height: 180px;
  }
}

.features_list article .text .no ,
.features_list article .text1 .no {
  color: #ffd457;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 2.4rem;
}

@media only screen and (max-width: 960px) {
.features_list article .text .no ,
.features_list article .text1 .no {
    font-size: 2.2rem;
  }
}

.features_list article .text .no strong ,
.features_list article .text1 .no strong {
  font-size: 3.6rem;
  margin: 0 15px 0 0;
  font-weight: 300;
}

@media only screen and (max-width: 960px) {
.features_list article .text .no strong ,
.features_list article .text1 .no strong {
    font-size: 3rem;
  }
}

.features_list article .text h3,
.features_list article .text1 h3 {
  font-size: 2.8rem;
  margin: 10px 0 15px;
}

@media only screen and (max-width: 960px) {
.features_list article .text h3,
.features_list article .text1 h3 {
    font-size: 2.2rem;
    margin: 0 0 5px;
  }
}

.features_list article .text p,
.features_list article .text1 p {
  line-height: 2;
}

@media only screen and (max-width: 960px) {
.features_list article .text p,
.features_list article .text1 p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.features_list article:nth-child(even) .image {
  margin-left: 25%;
}

@media only screen and (max-width: 960px) {
  .features_list article:nth-child(even) .image {
    margin-left: 5%;
  }
}

.features_list article:nth-child(even) .text,
.features_list article:nth-child(even) .text1 {
  right: auto;
  left: 0;
}

@media only screen and (max-width: 960px) {
.features_list article:nth-child(even) .text,
.features_list article:nth-child(even) .text1 {
    margin: 0 0 0 2%;
  }
}

/************************************

.raf

************************************/
.raf {
  max-width: 1280px;
}

.raf a:hover {
  opacity: 1;
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
/************************************

#top_header

************************************/
#top_header {
  width: 100vw;
  height: 100vh;
  position: relative;
  /***201022修正START***/
  /***201022修正END***/
}

@media only screen and (max-width: 480px) {
  #top_header {
    height: calc( 66vw + 50px);
  }
}

#top_header #mainimage {
  -webkit-transition: 1s;
  transition: 1s;
}

@media only screen and (max-width: 480px) {
  #top_header #mainimage {
    padding-top: 50px;
  }
}

#top_header #mainimage .waku {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

@media only screen and (max-width: 480px) {
  #top_header #mainimage .waku {
    height: 66vw;
  }
}

#top_header #mainimage figure {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

@media only screen and (max-width: 480px) {
  #top_header #mainimage figure {
    height: 66vw;
  }
}

#top_header #mainimage .waku.slick-active figure {
  -webkit-animation: 6s ease mainimage_anime;
  animation: 6s ease mainimage_anime;
}

@-webkit-keyframes mainimage_anime {
  from {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes mainimage_anime {
  from {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

#top_header .copy {
  position: absolute;
  width: 100%;
  height: 100px;
  top: 45%;
  margin: auto;
  text-align: center;
}

@media only screen and (max-width: 960px) {
  #top_header .copy {
    height: 80px;
    top: 40%;
  }
}

@media only screen and (max-width: 480px) {
  #top_header .copy {
    height: 70px;
    top: 35%;
  }
}

#top_header h2 {
  font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
  font-weight: normal;
  font-size: 4rem;
  line-height: 1.3;
  letter-spacing: 0.15em;
  color: #fff;
  display: inline-block;
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.9);
/*  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px 60px;
*/
}

@media only screen and (max-width: 960px) {
  #top_header h2 {
    padding: 25px;
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 480px) {
  #top_header h2 {
    top: 50%;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
}

#top_header header {
  position: absolute;
  bottom: 0;
  top: auto;
}

#top_header header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  bottom: auto;
}

@media only screen and (max-width: 960px) {
  #top_header header {
    bottom: auto;
    top: 0;
  }
}

/************************************

#top

************************************/
#top {
  padding: 0;
  /************************************

#top_news

************************************/
  /************************************

#top_about

************************************/
  /************************************

#features

************************************/
  /************************************

#top_works

************************************/
  /************************************

#top_concept

************************************/
}

#top #top_news {
  background-color: #122b3f;
  color: #fff;
  padding: 40px 0;
  text-align: left;
}

#top #top_news a {
  color: #fff;
}

#top #top_news .wrapper {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#top #top_news .title {
  width: 15%;
}

@media only screen and (max-width: 960px) {
  #top #top_news .title {
    width: 100%;
    margin: 0 0 30px;
    display: block;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

#top #top_news .title h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}

#top #top_news .title .bt {
  margin: 20px 0 0;
}

@media only screen and (max-width: 960px) {
  #top #top_news .title .bt {
    margin: 0;
  }
  #top #top_news .title .bt a {
    padding: 5px 40px 5px 30px;
  }
}

#top #top_news .list {
  width: 80%;
  margin: 0 0 0 5%;
}

@media only screen and (max-width: 960px) {
  #top #top_news .list {
    width: 100%;
    margin: 0;
  }
}

#top #top_news dl {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 15px;
  /***201030修正START***/
}

#top #top_news dl:last-child {
  margin: 0;
}

@media only screen and (max-width: 960px) {
  #top #top_news dl {
    margin: 0 0 20px;
  }
}

#top #top_news dl dt {
  width: 190px;
/*  width: 250px; */
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /***201030修正END***/
}
@media only screen and (max-width: 960px) {
  #top #top_news dl dt {
    width: 100%;
    margin: 0 0 7px;
  }
}

#top #top_news dl dt .cat {
  width: 100px;
  margin: 0 10px 0 0;
}

#top #top_news dl dt .cat a {
  width: 100%;
  border: 1px solid #fff;
  font-size: 1.3rem;
  line-height: 1.2;
  padding: 5px 0;
  display: block;
  text-align: center;
}

#top #top_news dl dt .cat a:hover {
  background-color: #fff;
  color: #122b3f;
  opacity: 1;
}
#top #top_news dl dt .cat.cat_sekou a {
  border-radius: 2em;
}

#top #top_news dl dt .cat.cat_event a {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: none;
  border-right: none;
}


#top #top_news dl dt .date {
  width: 80px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  padding: 3px 0;
}

#top #top_news dl dd {
  width: calc(100% - 250px);
  margin: 0 0 0 0;
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 960px) {
  #top #top_news dl dd {
    width: 100%;
    margin: 0;
  }
}

#top #top_news dl dd h3 {
  font-size: 1.5rem;
  font-weight: normal;
}

#top #top_news dl dd h3 a:hover {
  opacity: 1;
  text-decoration: underline;
}

#top #top_about {
  position: relative;
  width: 100%;
  height: 42.5vw;
  overflow: hidden;
  color: #fff;
  padding: 5vw 0;
}

@media only screen and (max-width: 960px) {
  #top #top_about {
    height: 50vw;
  }
}

@media only screen and (max-width: 480px) {
  #top #top_about {
    height: 100vw;
    padding: 10vw 0;
  }
}

@media only screen and (max-width: 960px) {
  #top #top_about .midashi {
    margin: 0 auto 15px;
  }
}

#top #top_about .about_back {
  background: #122b3f;
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#top #top_about .about_back .image {
  width: 50%;
}

#top #top_about .about_back .image .image2 {
  width: 100%;
  height: 0;
  padding-top: 85%;
  background-image: url("../images/about5.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 960px) {
  #top #top_about .about_back .image .image2 {
    padding-top: 100%;
  }
}

@media only screen and (max-width: 960px) {
  #top #top_about .about_back .image .image2 {
    padding-top: 200%;
  }
}

#top #top_about .about_back .image.a_right .image2 {
  background-image: url("../images/about2.jpg");
}

#top #top_about .about_back::after {
  position: absolute;
  width: 100%;
  height: 42.5vw;
  background-color: rgba(18, 43, 63, 0.5);
  content: "";
}

@media only screen and (max-width: 960px) {
  #top #top_about .about_back::after {
    height: 50vw;
  }
}

@media only screen and (max-width: 960px) {
  #top #top_about .about_back::after {
    height: 100vw;
  }
}

#top #top_about h3.copy {
  font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
  font-size: 3.8rem;
  letter-spacing: 0.2em;
  margin: 0 0 30px;
  font-weight: normal;
}

@media only screen and (max-width: 960px) {
  #top #top_about h3.copy {
    font-size: 2.3rem;
    margin: 0 0 12px;
    letter-spacing: 0.1em;
  }
}

#top #top_about p {
  font-size: 1.5rem;
  text-align: left;
  max-width: 520px;
  line-height: 2;
  margin: 0 auto 30px;
}

@media only screen and (max-width: 960px) {
  #top #top_about p {
    margin: 0 5% 10px;
  }
}

@media only screen and (max-width: 960px) {
  #top #features .wrapper {
    width: 100%;
  }
}

#top #features .bt {
  margin: 30px 0 0;
}

#top #top_works .bt {
  margin: 30px 0 0;
}

#top #top_concept {
  background-color: #122b3f;
  background-image: url("../images/concept_main.jpg");
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 20vw 0 50px;
}

@media only screen and (max-width: 480px) {
  #top #top_concept {
    background-size: 150%;
  }
}

#top #top_concept .text {
  background-color: #fff;
  width: 90%;
  max-width: 500px;
  margin: 0 auto 50px;
  padding: 4% 6%;
}

@media only screen and (max-width: 960px) {
  #top #top_concept .text {
    margin: 0 auto 30px;
    padding: 8% 6%;
  }
}

#top #top_concept .text .midashi {
  margin: 0 auto 30px;
}

@media only screen and (max-width: 960px) {
  #top #top_concept .text .midashi {
    margin: 0 auto 10px;
  }
}

#top #top_concept .text h3 {
  font-size: 2.5rem;
  display: inline-block;
  margin: 0 0 30px;
  position: relative;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 960px) {
  #top #top_concept .text h3 {
    font-size: 2.2rem;
    margin: 0 0 20px;
  }
}

#top #top_concept .text h3::before {
  position: absolute;
  bottom: -5px;
  left: 0px;
  right: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  background-color: #ffd457;
  content: "";
}

#top #top_concept .text p {
  text-align: left;
  line-height: 2;
  font-size: 1.5rem;
}

#top #top_concept nav {
  max-width: 1060px;
  margin: 0 auto;
}

@media only screen and (max-width: 480px) {
  #top #top_concept nav {
    width: 80%;
  }
}

#top #top_concept nav ul {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#top #top_concept nav ul li {
  width: 16%;
  margin: 0 2%;
}

@media only screen and (max-width: 480px) {
  #top #top_concept nav ul li {
    width: 46%;
    margin: 0 2% 15px;
  }
}

#top #top_concept nav ul li a {
  display: block;
  opacity: 1;
}

#top #top_concept nav ul li a:hover {
  -webkit-transform: scale(1.03, 1.03);
  transform: scale(1.03, 1.03);
}

#top #top_concept nav ul li .image img {
  border-radius: 50%;
}

#top #top_concept nav ul li h4 {
  font-size: 1.5rem;
  color: #fff;
  margin: 15px 0 0;
}

@media only screen and (max-width: 960px) {
  #top #top_concept nav ul li h4 {
    font-size: 1.4rem;
    margin: 5px 0 0;
  }
}

#plan #sc_mainimage {
  background-image: url("../plan/images/mainimage.jpg");
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  #plan #sc_mainimage {
    background-image: url("../plan/images/mainimage@2x.jpg");
  }
}

@media only screen and (max-width: 480px) {
  #plan #sc_mainimage {
    background-image: url("../plan/images/mainimage-sp@2x.jpg");
  }
}

@media only screen and (max-width: 960px) {
  #plan #copy p {
    text-align: left;
  }
}

#plan #features .white {
  padding-top: 0;
}

#plan #features article {
  margin: 60px 0 0;
}

@media only screen and (max-width: 960px) {
  #plan #features article {
    margin: 40px 0 0;
  }
}

#plan #features article .image {
  margin: 0 0 30px;
}

#plan #features article .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
}

#plan #features article .title {
  width: 25%;
  margin: 0 5%;
}

@media only screen and (max-width: 480px) {
  #plan #features article .title {
    width: 90%;
    margin: 0 5% 20px;
  }
}

#plan #features article .title .no {
  font-size: 2.6rem;
  color: #ffd457;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

@media only screen and (max-width: 960px) {
  #plan #features article .title .no {
    font-size: 2.4rem;
  }
}

#plan #features article .title .no strong {
  font-size: 3.6rem;
  font-weight: 300;
  padding-right: 10px;
}

@media only screen and (max-width: 960px) {
  #plan #features article .title .no strong {
    font-size: 3rem;
  }
}

#plan #features article .title h3 {
  font-size: 3.0rem;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 960px) {
  #plan #features article .title h3 {
    font-size: 2.6rem;
  }
}

#plan #features article .text2 {
  width: 60%;
  margin: 0 5% 0 0;
  line-height: 2;
}

@media only screen and (max-width: 480px) {
  #plan #features article .text2 {
    width: 90%;
    margin: 0 5% 0px;
  }
}

#plan #workslide {
  /* Arrows */
}

#plan #workslide .white {
  padding-top: 0;
}

#plan #workslide .slide article p {
  font-size: 1.5rem;
  margin: 10px 5px 0;
}

@media only screen and (max-width: 960px) {
  #plan #workslide .slide article p {
    font-size: 1.3rem;
  }
}

#plan #workslide .slick-prev,
#plan #workslide .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 50px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

#plan #workslide .slick-prev:hover,
#plan #workslide .slick-prev:focus,
#plan #workslide .slick-next:hover,
#plan #workslide .slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

#plan #workslide .slick-prev:hover:before,
#plan #workslide .slick-prev:focus:before,
#plan #workslide .slick-next:hover:before,
#plan #workslide .slick-next:focus:before {
  opacity: 1;
}

#plan #workslide .slick-prev.slick-disabled:before,
#plan #workslide .slick-next.slick-disabled:before {
  opacity: .25;
}

#plan #workslide .slick-prev:before,
#plan #workslide .slick-next:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  color: transparent;
  width: 40px;
  height: 50px;
  background-image: url("../works/images/yaji_l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#plan #workslide .slick-prev {
  left: 25px;
  z-index: 10;
}

@media only screen and (max-width: 960px) {
  #plan #workslide .slick-prev {
    left: 10px;
  }
}

#plan #workslide .slick-prev:before {
  content: '←';
}


#plan #workslide .slick-next {
  right: 25px;
  z-index: 10;
}

@media only screen and (max-width: 960px) {
  #plan #workslide .slick-next {
    right: 10px;
  }
}

#plan #workslide .slick-next:before {
  background-image: url("../works/images/yaji_r.svg");
  content: '→';
}

#plan #flowchart .wrapper {
  max-width: 900px;
}

#plan #flowchart .flow {
  margin: 30px 0 0;
}

#plan #flowchart .flow article {
  margin: 15px 0 0;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
}

#plan #flowchart .flow .no {
  width: 8%;
  margin: 0 5% 0 0;
}

@media only screen and (max-width: 480px) {
  #plan #flowchart .flow .no {
    width: 50px;
    margin: 0;
  }
}

#plan #flowchart .flow .no span {
  background-color: #ffd457;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  text-align: center;
  font-weight: 300;
  display: block;
  line-height: 1;
  padding: 13px 0;
}

@media only screen and (max-width: 960px) {
  #plan #flowchart .flow .no span {
    font-size: 3rem;
    padding: 10px 0;
  }
}

#plan #flowchart .flow .text {
  width: 50%;
  margin: 30px 5% 15px 0;
}

@media only screen and (max-width: 960px) {
  #plan #flowchart .flow .text {
    margin: 20px 5% 15px 0;
  }
}

@media only screen and (max-width: 480px) {
  #plan #flowchart .flow .text {
    width: calc( 100% - 50px);
    margin: 0;
    padding: 5%;
  }
}

#plan #flowchart .flow .text h3 {
  font-size: 1.8rem;
  margin: 0 0 1em;
}

@media only screen and (max-width: 960px) {
  #plan #flowchart .flow .text h3 {
    margin: 0 0 7px;
  }
}

#plan #flowchart .flow .text p {
  line-height: 1.8;
}

#plan #flowchart .flow .image {
  width: 30%;
  margin: 1%;
}

@media only screen and (max-width: 480px) {
  #plan #flowchart .flow .image {
    width: 100%;
    margin: 0;
    padding: 2%;
  }
}




/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
/************************************

#workslide

************************************/
#workslide {
  /* Arrows */
}

#workslide .slide article p {
  font-size: 1.5rem;
  margin: 10px 5px 0;
}

@media only screen and (max-width: 960px) {
  #workslide .slide article p {
    font-size: 1.3rem;
  }
}

#workslide .slick-prev,
#workslide .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 50px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

#workslide .slick-prev:hover,
#workslide .slick-prev:focus,
#workslide .slick-next:hover,
#workslide .slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

#workslide .slick-prev:hover:before,
#workslide .slick-prev:focus:before,
#workslide .slick-next:hover:before,
#workslide .slick-next:focus:before {
  opacity: 1;
}

#workslide .slick-prev.slick-disabled:before,
#workslide .slick-next.slick-disabled:before {
  opacity: .25;
}

#workslide .slick-prev:before,
#workslide .slick-next:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  color: transparent;
  width: 40px;
  height: 50px;
  background-image: url("../works/images/yaji_l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#workslide .slick-prev {
  left: 25px;
  z-index: 10;
}

@media only screen and (max-width: 960px) {
  #workslide .slick-prev {
    left: 10px;
  }
}

#workslide .slick-prev:before {
  content: '←';
}

#workslide .slick-next {
  right: 25px;
  z-index: 10;
}

@media only screen and (max-width: 960px) {
  #workslide .slick-next {
    right: 10px;
  }
}

#workslide .slick-next:before {
  background-image: url("../works/images/yaji_r.svg");
  content: '→';
}


#workslide .slide img {
  width: 360px;
  height: 240px;
  object-fit: cover; /* この一行を追加するだけ！ */
}



/************************************

.works_catlist

************************************/
.works_catlist article {
  width: 29.3%;
  margin: 2%;
  position: relative;
}

@media only screen and (max-width: 480px) {
  .works_catlist article {
    width: 46%;
  }
}

.works_catlist article a {
  display: block;
}

.works_catlist article a:hover {
  opacity: 1;
}

.works_catlist article .image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: .8s;
  transition: .8s;
}

.works_catlist article .image::before {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 0;
  padding-top: 75%;
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  -webkit-transition: .8s;
  transition: .8s;
  z-index: 1;
}

.works_catlist article .image:hover {
  background-size: 110%;
}

.works_catlist article .image:hover::before {
  opacity: 0;
}

.works_catlist article.works1 .image {
  background-image: url("../images/works1.jpg");
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .works_catlist article.works1 .image {
    background-image: url("../images/works1@2x.jpg");
  }
}

.works_catlist article.works2 .image {
  background-image: url("../images/works21.jpg");
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .works_catlist article.works2 .image {
    background-image: url("../images/works21@2x.jpg");
  }
}

.works_catlist article.works3 .image {
  background-image: url("../images/works3.jpg");
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .works_catlist article.works3 .image {
    background-image: url("../images/works3@2x.jpg");
  }
}

.works_catlist article.works4 .image {
  background-image: url("../images/works4.jpg");
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .works_catlist article.works4 .image {
    background-image: url("../images/works4@2x.jpg");
  }
}

.works_catlist article.works5 .image {
  background-image: url("../images/works5.jpg");
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .works_catlist article.works5 .image {
    background-image: url("../images/works5@2x.jpg");
  }
}

.works_catlist article.works6 .image {
  background-image: url("../images/works6.jpg");
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .works_catlist article.works6 .image {
    background-image: url("../images/works6@2x.jpg");
  }
}

.works_catlist article.works7 .image {
  background-image: url("../images/works7.jpg");
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .works_catlist article.works7 .image {
    background-image: url("../images/works7@2x.jpg");
  }
}

.works_catlist article.works8 .image {
  background-image: url("../images/works81.jpg");
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .works_catlist article.works8 .image {
    background-image: url("../images/works81@2x.jpg");
  }
}

.works_catlist article.works9 .image {
  background-image: url("../images/works91.jpg");
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .works_catlist article.works9 .image {
    background-image: url("../images/works91@2x.jpg");
  }
}

.works_catlist article h3 {
  color: #fff;
  position: absolute;
  width: 100%;
  height: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 3;
}

@media only screen and (max-width: 960px) {
  .works_catlist article h3 {
    font-size: 1.6rem;
  }
}

/************************************

#archives

************************************/
#works #archives .cat_title {
  margin: 0 0 50px;
}

@media only screen and (max-width: 960px) {
  #works #archives .cat_title {
    margin: 0 0 30px;
  }
}

#works #archives .cat_title h2 {
  font-size: 2.4rem;
  position: relative;
  padding-bottom: 12px;
}

@media only screen and (max-width: 960px) {
  #works #archives .cat_title h2 {
    font-size: 2.1rem;
  }
}

#works #archives .cat_title h2::before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0;
  width: 100px;
  height: 1px;
  background-color: #000;
  margin: auto;
  content: "";
}

#works #archives .list {
  margin: 0 0 40px;
}

#works #archives .list article {
  width: 29.3%;
  margin: 2%;
}

@media only screen and (max-width: 480px) {
  #works #archives .list article {
    width: 46%;
  }
}

#works #archives .list article a {
  display: block;
}

#works #archives .list article p {
  margin: 10px 0 0;
  font-size: 1.5rem;
}

@media only screen and (max-width: 960px) {
  #works #archives .list article p {
    font-size: 1.3rem;
    margin: 5px 0 0;
  }
}
#works #archives .navi {
  margin: 0 0 40px;
}

#works #archives img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
@media only screen and (max-width: 480px) {
#works #archives img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

}


/************************************

#single

************************************/
#works #single .entry h2 {
  font-size: 2.6rem;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin: 70px 0;
}

@media only screen and (max-width: 960px) {
  #works #single .entry h2 {
    margin: 50px 0;
  }
}

@media only screen and (max-width: 480px) {
  #works #single .entry h2 {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }
}

#works #single .entry .beforeafter {
  max-width: 820px;
  margin: 0 auto 50px;
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#works #single .entry .beforeafter .waku {
  width: 45%;
}

#works #single .entry .beforeafter .waku h3 {
  color: #ffd457;
  font-family: "Roboto", sans-serif;
  font-size: 2.1rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  margin: 0 0 20px;
}

#works #single .entry .beforeafter .yaji {
  width: 5%;
  margin: 0 2.5%;
  position: relative;
}

#works #single .entry .beforeafter .yaji img {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;

  width: 100%;
}

#works #single .entry .text {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: left;
  line-height: 2;
}

#works #single .entry .data {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: left;
  border-top: 1px solid #000;
}

#works #single .entry .data dl {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #000;
  padding: 20px 10px;
}

#works #single .entry .data dl dt {
  width: 25%;
  margin: 0 5% 0 0;
}

#works #single .entry .data dl dd {
  width: 70%;
}

#works #single .entry .photo {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;

  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#works #single .entry .photo .image {
  width: 29.3%;
  margin: 2%;
}

@media only screen and (max-width: 480px) {
  #works #single .entry .photo .image {
    width: 46%;
  }
}

#works #single .entry .photo .image a {
  display: block;
}

#works #single .nav_single {
  margin: 50px 0;
}

@media only screen and (max-width: 960px) {
  #works #single .nav_single {
    margin: 30px 0;
  }
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
/************************************

#letter

************************************/
#letter {
  /************************************

#lead

************************************/
  /************************************

.archives

************************************/
  /************************************

.recent

************************************/
  /************************************

.old

************************************/
}

#letter #lead p {
  line-height: 2;
  margin: 0 0 20px;
}

@media only screen and (max-width: 960px) {
  #letter #lead p {
    text-align: left;
  }
}

#letter .archives {
  margin-top: -90px;
  padding-top: 90px;
}

@media only screen and (max-width: 960px) {
  #letter .archives {
    margin-top: 0;
    padding-top: 0px;
  }
}

#letter .archives h2 {
  font-size: 3rem;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  margin: 0 0 20px;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 960px) {
  #letter .archives h2 {
    font-size: 2.4rem;
  }
}

#letter .archives .list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#letter .archives article a {
  display: block;
}

#letter .archives article img {
  border: 1px solid #ddd;
}

#letter .archives article p {
  font-size: 1.5rem;
  margin: 10px 0 0;
}

#letter .recent .gray {
  padding: 50px 0 30px;
}

@media only screen and (max-width: 960px) {
  #letter .recent .gray {
    padding: 30px 0 15px;
  }
}

#letter .recent .recent_waku {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#letter .recent .recent_waku .newentry {
  width: 39%;
  margin: 0 2% 0 0;
}

@media only screen and (max-width: 480px) {
  #letter .recent .recent_waku .newentry {
    width: 96%;
    margin: 0 2% 20px;
  }
}

#letter .recent .recent_waku .list {
  width: 59%;
}

@media only screen and (max-width: 480px) {
  #letter .recent .recent_waku .list {
    width: 100%;
  }
}

#letter .recent .recent_waku .list article {
  width: 29.3%;
  margin: 0 2% 30px;
}

@media only screen and (max-width: 480px) {
  #letter .recent .recent_waku .list article {
    width: 46%;
    margin: 0 2% 20px;
  }
}

#letter .old .white {
  padding: 50px 0 30px;
}

@media only screen and (max-width: 960px) {
  #letter .old .white {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
  }
}

@media only screen and (max-width: 960px) {
  #letter .old h2 {
    margin: 0;
  }
}

#letter .old input {
  display: none;
}

#letter .old label {
  display: block;
  position: relative;
}

@media only screen and (max-width: 960px) {
  #letter .old label::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0px;
    font-family: 'FontAwesome';
    content: "\f107";
    font-size: 2rem;
  }
}

@media only screen and (max-width: 960px) {
  #letter .old .list {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }
}

#letter .old .list article {
  width: 14.66%;
  margin: 0 1% 0px;
}

@media only screen and (max-width: 480px) {
  #letter .old .list article {
    width: 46%;
    margin: 0 2% 20px;
  }
}

#letter .old .list article p {
  font-size: 1.3rem;
}

@media only screen and (max-width: 960px) {
  #letter .old input:checked ~ .list {
    height: auto;
    opacity: 1;
    padding-top: 20px;
  }
}

@media only screen and (max-width: 960px) {
  #letter .old input:checked ~ label::before {
    content: "\f106";
  }
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
/************************************

#blog

************************************/
#blog {
  /************************************

#lead

************************************/
  /************************************

.archives

************************************/
  /************************************

#top_archives

************************************/
  /************************************

#blog_sub

************************************/
  /************************************

#single

************************************/
  /************************************

#recent

************************************/
}

#blog .wrapper {
  max-width: 1160px;
}

@media only screen and (max-width: 960px) {
  #blog .wrapper {
    width: 94%;
  }
}

#blog #lead .white {
  padding: 80px 0 60px;
}

@media only screen and (max-width: 960px) {
  #blog #lead .white {
    padding: 40px 0 20px;
  }
}

#blog ul.cat_list {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 480px) {
  #blog ul.cat_list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

#blog ul.cat_list li {
  margin: 5px;
}

@media only screen and (max-width: 480px) {
  #blog ul.cat_list li {
    width: 48%;
    margin: 1%;
  }
}

#blog ul.cat_list li a {
  display: block;
  border: 1px solid #333333;
  border-radius: 2em;
  background-color: #fff;
  padding: 10px 30px;
  font-size: 1.4rem;
  line-height: 1;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (max-width: 480px) {
  #blog ul.cat_list li a {
    padding: 10px 0;
    font-size: 1.2rem;
  }
}

#blog ul.cat_list li a:hover {
  opacity: 1;
  background-color: #333333;
  color: #fff;
}

#blog .archives .cat_title {
  margin: 0 0 50px;
}

@media only screen and (max-width: 960px) {
  #blog .archives .cat_title {
    margin: 0 0 30px;
  }
}

#blog .archives .cat_title h2 {
  font-size: 2.4rem;
  position: relative;
  padding-bottom: 12px;
}

#blog .cat_read {
  font-size: 2.4rem;
  position: relative;
  padding-bottom: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 960px) {
#blog .cat_read {
  font-size: 2.0rem;
  position: relative;
  padding-bottom: 20px;
  font-weight: 500;
}

}

@media only screen and (max-width: 960px) {
  #blog .archives .cat_title h2 {
    font-size: 2.1rem;
  }
}

#blog .archives .cat_title h2::before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0;
  width: 100px;
  height: 1px;
  background-color: #000;
  margin: auto;
  content: "";
}

#blog .archives article a {
  display: block;
}

#blog .archives .text {
  text-align: left;
  position: relative;
  padding: 20px 0 0;
}

#blog .archives .text .cat {
  position: absolute;
  top: -15px;
  right: 10px;
  border: 1px solid #333333;
  background: #fff;
  border-radius: 2em;
  padding: 7px 20px;
  font-size: 1.1rem;
  line-height: 1;
}

@media only screen and (max-width: 960px) {
  #blog .archives .text .cat {
    padding: 4px 12px;
    right: 5px;
    top: -10px;
  }
}

#blog .archives img {
  width: 360px;
  height: 240px;
  object-fit: cover;
}


#blog .archives .text h3 {
  font-size: 1.8rem;
}

@media only screen and (max-width: 960px) {
  #blog .archives .text h3 {
    font-size: 1.5rem;
  }
}

#blog .archives .text p {
  font-size: 1.3rem;
  margin: 10px 0;
}

@media only screen and (max-width: 960px) {
  #blog .archives .text p {
    font-size: 1.1rem;
  }
}

#blog .archives .text .date {
  font-size: 1.3rem;
}

#blog #top_archives .white {
  padding: 0 0 80px;
}

@media only screen and (max-width: 960px) {
  #blog #top_archives .white {
    padding: 0 0 40px;
  }
}

#blog #top_archives article {
  width: 29.3%;
  margin: 0 2% 40px;
}

@media only screen and (max-width: 480px) {
  #blog #top_archives article {
    width: 48%;
    margin: 0 1% 30px;
  }
}

#blog #blog_sub .gray {
  padding: 20px 0;
}

@media only screen and (max-width: 960px) {
  #blog #blog_sub .gray {
    padding: 10px 0;
  }
}

#blog #blog_sub article {
  margin: 40px 0;
}

#blog #blog_sub article h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  margin: 0 0 20px;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 960px) {
  #blog #blog_sub article h2 {
    font-size: 2rem;
  }
}

#blog #single .white {
  padding: 0 0 60px;
}

#blog #single .wrapper {
  max-width: 800px;
}

@media only screen and (max-width: 960px) {
  #blog #single .wrapper {
    width: 86%;
  }
}

#blog #single .entry {
  text-align: left;
  margin: 0 0 50px;
}

#blog #single .entry .data {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#blog #single .entry .data .cat a {
  display: inline-block;
  margin: 0 15px 0 0;
  border: 1px solid #333333;
  font-size: 1.3rem;
  line-height: 1;
  padding: 10px 30px;
  border-radius: 2em;
}

@media only screen and (max-width: 960px) {
  #blog #single .entry .data .cat a {
    margin: 0 8px 0 0;
    font-size: 1.2rem;
    padding: 7px 20px;
  }
}

#blog #single .entry .data .cat a:hover {
  opacity: 1;
  background-color: #333333;
  color: #fff;
}

#blog #single .entry .data .date {
  padding: 10px 0;
  font-size: 1.3rem;
}

@media only screen and (max-width: 960px) {
  #blog #single .entry .data .date {
    padding: 7px 0;
    font-size: 1.2rem;
  }
}

#blog #single .entry h1 {
  font-size: 2.4rem;
  padding: 30px 0;
  border-bottom: 1px solid #333333;
  margin: 0 0 40px;
}

@media only screen and (max-width: 960px) {
  #blog #single .entry h1 {
    font-size: 2rem;
  }
}

#blog #single .entry .honbun {
  line-height: 2;
}

#blog #single .entry .honbun img {
  margin: 1em 0;
  max-width:200px !important;
  height: auto;
}


#blog #single .nav_single_blog {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.2rem;
}

#blog #single .nav_single_blog .pn {
  width: 40%;
  position: relative;
}

#blog #single .nav_single_blog .pn::before {
  position: absolute;
  top: 18px;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  z-index: 2;
}

@media only screen and (max-width: 480px) {
  #blog #single .nav_single_blog .pn::before {
    top: 0;
  }
}

#blog #single .nav_single_blog .pn h4 {
  font-size: 1.4rem;
}

@media only screen and (max-width: 480px) {
  #blog #single .nav_single_blog .pn h4 {
    display: none;
  }
}

#blog #single .nav_single_blog .pn.prev {
  text-align: left;
}

#blog #single .nav_single_blog .pn.prev::before {
  left: 0;
  background-image: url("../blog/images/yaji16_l.svg");
}

#blog #single .nav_single_blog .pn.prev p, #blog #single .nav_single_blog .pn.prev h4 {
  padding-left: 30px;
}

#blog #single .nav_single_blog .pn.next {
  text-align: right;
}

#blog #single .nav_single_blog .pn.next::before {
  right: 0;
  background-image: url("../blog/images/yaji16_r.svg");
}

#blog #single .nav_single_blog .pn.next p, #blog #single .nav_single_blog .pn.next h4 {
  padding-right: 30px;
}

#blog #single .nav_single_blog .top {
  width: 18%;
  margin: 0 1%;
  position: relative;
}

#blog #single .nav_single_blog .top::before {
  position: absolute;
  top: 20px;
  left: 0px;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  font-size: 10px;
  line-height: 1;
  content: "●";
}

@media only screen and (max-width: 480px) {
  #blog #single .nav_single_blog .top::before {
    display: none;
  }
}

#blog #recent h2 {
  font-size: 3rem;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  margin: 0 0 30px;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 960px) {
  #blog #recent h2 {
    font-size: 2rem;
  }
}

#blog #recent article {
  width: 23%;
  margin: 0 1% 30px;
}

@media only screen and (max-width: 480px) {
  #blog #recent article {
    width: 48%;
    margin: 0 1% 30px;
  }
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
/************************************

#contact

************************************/
#contact {
  /************************************

#lead

************************************/
  /************************************

#form

************************************/
  /************************************

#thanks

************************************/
}

#contact #lead p {
  line-height: 2;
  margin: 0 auto 20px;
}

@media only screen and (max-width: 960px) {
  #contact #lead p {
    text-align: left;
  }
}

#contact #form .wrapper {
  max-width: 860px;
}

#contact #form table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  font-size: 1.5rem;
  text-align: left;
}

#contact #form table th {
  padding: 15px;
  background-color: #5d65b2;
  color: #fff;
  border-bottom: 2px solid #f2f2f2;
  white-space: nowrap;
}

@media only screen and (max-width: 480px) {
  #contact #form table th {
    padding: 10px 15px;
    display: block;
    width: 100%;
    border-bottom: none;
  }
}

#contact #form table th span {
  display: inline-block;
  margin: 0 5px 0 0;
  font-size: 1.1rem;
  line-height: 1;
  border: 1px solid #fff;
  padding: 2px 5px;
}

#contact #form table th span.hissu {
  background-color: #fff;
  color: #5d65b2;
}

#contact #form table td {
  padding: 15px;
  background-color: #fff;
  border-bottom: 2px solid #f2f2f2;
}

@media only screen and (max-width: 480px) {
  #contact #form table td {
    display: block;
    width: 100%;
  }
}

#contact #form table td label {
  display: inline-block;
  margin: 0 10px 0 0;
}

#contact #form table td label input {
  margin: 0 5px 0 0;
}

#contact #form table td input[type="text"], #contact #form table td input[type="email"], #contact #form table td input[type="number"], #contact #form table td input[type="tel"], #contact #form table td textarea {
  padding: 12px;
  font-size: 1.5rem;
}

#contact #form table td textarea {
  width: 100%;
  height: 200px;
}

#contact #form table td .input_l {
  width: 100%;
}

#contact #form table td .input_s {
  width: 30%;
}

@media only screen and (max-width: 960px) {
  #contact #form table td .input_s {
    width: 60%;
  }
}

#contact #form .privacy {
  margin: 30px 0 0;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 4%;
  width: 100%;
  height: 200px;
  overflow-y: scroll;
  text-align: left;
}

#contact #form .privacy h3 {
  font-size: 1.8rem;
}

#contact #form .privacy article {
  margin: 20px 0 0;
}

#contact #form .privacy article h4 {
  font-size: 1.5rem;
}

#contact #form .privacy article p {
  font-size: 1.4rem;
}

#contact #form .form_bt {
  margin: 50px 0 0;
}

#contact #form .form_bt input[type="submit"] {
  background-color: #122b3f;
  border: none;
  color: #fff;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding: 10px 50px;
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
}

@media only screen and (max-width: 480px) {
  #contact #form .form_bt input[type="submit"] {
    padding: 10px 25px;
    margin: 0 5px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}

#contact #form .form_bt input[type="submit"].back {
  background-color: #999;
}

#contact #thanks .white {
  padding-bottom: 0;
}

#contact #thanks .wrapper {
  max-width: 720px;
}

#contact #thanks h2 {
  font-size: 2.0rem;
  letter-spacing: 0.2em;
  margin: 0 0 30px;
}

#contact #thanks p {
  line-height: 2;
  margin: 0 auto 20px;
  text-align: left;
}

@media only screen and (max-width: 960px) {
  #contact #thanks p {
    text-align: left;
  }
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
#concept {
  /************************************

#sc_mainimage

************************************/
  /************************************

#lead

************************************/
  /************************************

#features

************************************/
  /************************************

#efforts

************************************/
}

#concept #sc_mainimage {
  background-image: url("../concept/images/mainimage.jpg");
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  #concept #sc_mainimage {
    background-image: url("../concept/images/mainimage@2x.jpg");
  }
}

@media only screen and (max-width: 480px) {
  #concept #sc_mainimage {
    background-image: url("../concept/images/mainimage-sp@2x.jpg");
  }
}

#concept #lead .white {
  padding: 50px 0;
}

#concept #lead .wrapper {
  max-width: 820px;
  text-align: left;
  line-height: 2;
}

@media only screen and (max-width: 960px) {
  #concept #features .wrapper {
    width: 100%;
  }
}

#concept #features .feature_top {
  margin: 0 0 40px;
  background-image: url("../concept/images/features01.jpg");
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 36%;
}

#concept #features .feature_top .text {
  background-color: #fff;
  width: 90%;
  max-width: 740px;
  margin: 0 auto;
  padding: 4%;
}

@media only screen and (max-width: 960px) {
  #concept #features .feature_top .text {
    padding: 7%;
  }
}

#concept #features .feature_top h3 {
  font-size: 2.6rem;
  margin: 0px 0 15px;
}

@media only screen and (max-width: 960px) {
  #concept #features .feature_top h3 {
    font-size: 2rem;
    margin: 0 0 10px;
  }
}

#concept #features .feature_top p {
  text-align: left;
  line-height: 2;
}

@media only screen and (max-width: 960px) {
  #concept #features .feature_top p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

#concept #efforts .white {
  padding-bottom: 0;
}

@media only screen and (max-width: 960px) {
  #concept #efforts .wrapper {
    width: 94%;
  }
}

#concept #efforts article {
  width: 29.3%;
  margin: 2%;
  text-align: left;
}

@media only screen and (max-width: 480px) {
  #concept #efforts article {
    width: 46%;
  }
}

#concept #efforts article h3 {
  font-size: 2rem;
  margin: 15px 0 5px;
}

@media only screen and (max-width: 960px) {
  #concept #efforts article h3 {
    font-size: 1.6rem;
  }
}

#concept #efforts article p {
  font-size: 1.5rem;
  line-height: 1.8;
}

@media only screen and (max-width: 960px) {
  #concept #efforts article p {
    font-size: 1.3rem;
  }
}
/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
/************************************

#staff

************************************/
#staff {
  /************************************

#lead

************************************/
  /************************************

#staff_list

************************************/
}

#staff #lead p {
  line-height: 2;
  margin: 0 auto 20px;
}

@media only screen and (max-width: 960px) {
  #staff #lead p {
    text-align: left;
  }
}

#staff #staff_list .white {
  padding-top: 0;
  padding-bottom: 0;
}

#staff #staff_list .wrapper {
  max-width: 860px;
}

#staff #staff_list article {
  margin: 0 auto 60px;
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 480px) {
  #staff #staff_list article {
    display: block;
  }
}

#staff #staff_list article .image {
  width: 25%;
  margin: 0 7% 0 0;
}

@media only screen and (max-width: 480px) {
  #staff #staff_list article .image {
    float: right;
    width: 120px;
    margin: 0 0 20px 10px;
  }
}

#staff #staff_list article .text {
  width: 68%;
  text-align: left;
}

@media only screen and (max-width: 480px) {
  #staff #staff_list article .text {
    width: 100%;
  }
}

#staff #staff_list article h3 {
  font-size: 2.2rem;
  font-weight: normal;
  font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
  margin: 0 0 20px;
  letter-spacing: 0.1em;
}

#staff #staff_list article h3 small {
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  margin-left: 12px;
}

@media only screen and (max-width: 480px) {
  #staff #staff_list article h3 small {
    display: block;
    margin: 0;
  }
}

#staff #staff_list article ul {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 15px;
}

#staff #staff_list article ul li {
  display: inline-block;
  padding: 0 30px 0 0;
  position: relative;
  font-size: 1.3rem;
  line-height: 2;
}

@media only screen and (max-width: 480px) {
  #staff #staff_list article ul li {
    display: block;
    line-height: 1.8;
  }
}

#staff #staff_list article ul li::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  content: "/";
}

@media only screen and (max-width: 480px) {
  #staff #staff_list article ul li::before {
    display: none;
  }
}

#staff #staff_list article ul li:last-child::before {
  content: "";
}

#staff #staff_list article p {
  line-height: 2;
  font-size: 1.5rem;
}
/*# sourceMappingURL=maps/style.css.map */
/*# sourceMappingURL=maps/style.css.map */
/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
#company {
  /************************************

#sc_mainimage

************************************/
  /************************************

#message

************************************/
  /************************************

#philosophy

************************************/
  /************************************

#profile

************************************/
  /************************************

#access

************************************/
  /************************************

#works

************************************/
  /************************************

#character

************************************/
  /************************************

#song

************************************/
}


#company #sc_mainimage {
  background-image: url("../company/images/mainimage.jpg");
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  #company #sc_mainimage {
    background-image: url("../company/images/mainimage@2x.jpg");
  }
}

@media only screen and (max-width: 480px) {
  #company #sc_mainimage {
    background-image: url("../company/images/mainimage-sp@2x.jpg");
  }
}

#company #message .container {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /***201030修正START***/
}

#company #message .container .image {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 26%;
  margin: 0 0 0 9%;
  /***201030修正END***/
}

@media only screen and (max-width: 960px) {
  #company #message .container .image {
    width: 35%;
    margin: 0 0 0 5%;
  }
}

@media only screen and (max-width: 480px) {
  #company #message .container .image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    text-align: center;
    width: 100%;
    margin: 0 auto 30px;
  }
  #company #message .container .image img {
    width: 220px;
  }
}

#company #message .container .image h3 {
  font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
  font-size: 1.8rem;
  font-weight: normal;
  margin: 20px 0;
}

#company #message .container .image .bt a {
  display: block;
  font-size: 1.6rem;
  margin: 0 auto;
}

@media only screen and (max-width: 480px) {
  #company #message .container .image .bt a {
    max-width: 220px;
  }
}

#company #message .container .image .bt2 {
  margin: 15px 0 0;
}

#company #message .container .image .bt2 a {
  display: block;
  width: 100%;
}

#company #message .container .image .bt2 a img {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}



#company #message .container .text {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  text-align: left;
  width: 65%;
}

@media only screen and (max-width: 960px) {
  #company #message .container .text {
    width: 60%;
  }
}

@media only screen and (max-width: 480px) {
  #company #message .container .text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
}

#company #message .container .text p {
  line-height: 2;
  margin: 0 0 1em;
}

#company #philosophy .white {
  padding-top: 0;
}

#company #philosophy .image {
  margin: 0 0 50px;
}

#company #philosophy h3 {
  font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
  font-size: 3rem;
  font-weight: normal;
  display: inline-block;
  position: relative;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 960px) {
  #company #philosophy h3 {
    font-size: 2.4rem;
    letter-spacing: 0.12em;
  }
}

@media only screen and (max-width: 480px) {
  #company #philosophy h3 {
    font-size: 2.1rem;
    letter-spacing: 0.1em;
  }
}

#company #philosophy h3::before, #company #philosophy h3::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 110px;
  height: 1px;
  background-color: #333333;
  content: "";
}

@media only screen and (max-width: 960px) {
  #company #philosophy h3::before, #company #philosophy h3::after {
    width: 60px;
  }
}

@media only screen and (max-width: 480px) {
  #company #philosophy h3::before, #company #philosophy h3::after {
    width: 40px;
  }
}

#company #philosophy h3::before {
  left: -150px;
}

@media only screen and (max-width: 960px) {
  #company #philosophy h3::before {
    left: -80px;
  }
}

@media only screen and (max-width: 960px) {
  #company #philosophy h3::before {
    left: -50px;
  }
}

#company #philosophy h3::after {
  right: -150px;
}

@media only screen and (max-width: 960px) {
  #company #philosophy h3::after {
    right: -80px;
  }
}

@media only screen and (max-width: 960px) {
  #company #philosophy h3::after {
    right: -50px;
  }
}

#company #profile .wrapper {
  max-width: 860px;
}

#company #profile table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  font-size: 1.5rem;
  text-align: left;
}

#company #profile table th {
  padding: 15px;
  background-color: #5d65b2;
  color: #fff;
  border-bottom: 2px solid #f2f2f2;
  white-space: nowrap;
  width: 20%;
}

@media only screen and (max-width: 480px) {
  #company #profile table th {
    padding: 10px 15px;
    display: block;
    width: 100%;
    border-bottom: none;
  }
}

#company #profile table td {
  padding: 15px;
  background-color: #fff;
  border-bottom: 2px solid #f2f2f2;
  width: 80%;
}

@media only screen and (max-width: 480px) {
  #company #profile table td {
    display: block;
    width: 100%;
  }
}

#company #profile table td a {
  text-decoration: underline;
}

#company #access .white {
  padding-bottom: 0;
  margin-bottom: 0;
}

#company #access .map {
  width: 100%;
}

#company #access .map iframe {
  width: 100%;
  height: 300px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}

@media only screen and (max-width: 960px) {
  #company #access .map iframe {
    height: 250px;
  }
}

#company #works .wrapper {
  max-width: 860px;
}

#company #works article h3 {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1;
  padding: 12px 30px;
  margin: 30px 0;
  position: relative;
  letter-spacing: 0.1em;
}

#company #works article h3::before {
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 42px;
  border-top: 1px solid #333333;
  border-left: 1px solid #333333;
  border-bottom: 1px solid #333333;
  content: "";
}

#company #works article h3::after {
  position: absolute;
  top: 0;
  right: -10px;
  width: 10px;
  height: 42px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  content: "";
}

#company #works article .waku {
  background: #fff;
  padding: 4%;
}

#company #works article ul {
  text-align: left;
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}

@media only screen and (max-width: 480px) {
  #company #works article ul {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}

#company #works article ul li {
  font-size: 1.5rem;
  margin: 0 0 6px;
  padding-left: 20px;
  position: relative;
}

@media only screen and (max-width: 960px) {
  #company #works article ul li {
    font-size: 1.3rem;
  }
}

#company #works article ul li::before {
  position: absolute;
  top: 2px;
  left: 0px;
  font-size: 12px;
  color: #5d65b2;
  content: "■";
}

@media only screen and (max-width: 960px) {
  #company #works article ul li::before {
    top: 1px;
    font-size: 10px;
  }
}

#company #character .wrapper {
  max-width: 910px;
}

#company #character .image {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#company #character .image .image2 {
  width: 48%;
  margin: 0 1%;
}

@media only screen and (max-width: 480px) {
  #company #character .image .image2 {
    width: 100%;
    margin: 0 0 20px;
  }
}

#company #song .movie {
  margin: 0 auto 50px;
}

@media only screen and (max-width: 960px) {
  #company #song .movie {
    margin: 0 auto 30px;
  }
}

#company #song .movie iframe {
  width: 640px;
  height: 420px;
}

@media only screen and (max-width: 960px) {
  #company #song .movie iframe {
    max-width: 640px;
    width: 100%;
    height: 320px;
  }
}

@media only screen and (max-width: 480px) {
  #company #song .movie iframe {
    height: 240px;
  }
}

#company #song .fumen img {
  width: auto;
}

@media only screen and (max-width: 960px) {
  #company #song .fumen img {
    margin: 0 0 10px;
  }
}
/*# sourceMappingURL=maps/style.css.map */