@charset "UTF-8";
/* //////////////////////////////////////////////////

　common style for modern browser

　Version: 3.0

////////////////////////////////////////////////// */
/* Base
-------------------------------------------------- */
/*
　各要素のスタイルを初期化し、デフォルトのスタイルを定義
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, details, figure, figcaption, header, footer, main, nav, section, time {
  border: 0;
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
}

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

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
}

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

blockquote, q {
  quotes: none;
}

img {
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
}

a img {
  border: 0;
}

button {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  outline: none;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

img, object, video, iframe {
  max-width: 100%;
}

img {
  height: auto;
}

* {
  box-sizing: border-box;
  background-clip: padding-box;
}

/* Module
-------------------------------------------------- */
/*
　あらゆる再利用できるオブジェクト
*/
/* grid */
.grid::after {
  content: "";
  display: block;
  clear: both;
}
.grid > * {
  float: left;
}
.grid > *.right {
  float: right;
}

.m60 {
  margin-right: -30px;
  margin-left: -30px;
}
.m60 > * {
  padding-right: 30px;
  padding-left: 30px;
}

.m50 {
  margin-right: -25px;
  margin-left: -25px;
}
.m50 > * {
  padding-right: 25px;
  padding-left: 25px;
}

.m40 {
  margin-right: -20px;
  margin-left: -20px;
}
.m40 > * {
  padding-right: 20px;
  padding-left: 20px;
}

.m30 {
  margin-right: -15px;
  margin-left: -15px;
}
.m30 > * {
  padding-right: 15px;
  padding-left: 15px;
}

.m20 {
  margin-right: -10px;
  margin-left: -10px;
}
.m20 > * {
  padding-right: 10px;
  padding-left: 10px;
}

.m10 {
  margin-right: -5px;
  margin-left: -5px;
}
.m10 > * {
  padding-right: 5px;
  padding-left: 5px;
}

/* grid table */
.grid-table {
  display: table;
  width: 100%;
}
.grid-table.fixed {
  table-layout: fixed;
}
.grid-table > * {
  display: table-cell;
  vertical-align: top;
}

/* grid inline-blocl */
.grid-inline {
  letter-spacing: -.4em;
}
.grid-inline > * {
  display: inline-block;
  letter-spacing: normal;
}

/* ///////// RESPONSIVE ///////// */
@media screen and (max-width: 768px) {
  .m60, .m50 {
    margin-right: -15px;
    margin-left: -15px;
  }
  .m60 > *, .m50 > * {
    padding-right: 15px;
    padding-left: 15px;
  }

  .m40, .m30 {
    margin-right: -10px;
    margin-left: -10px;
  }
  .m40 > *, .m30 > * {
    padding-right: 10px;
    padding-left: 10px;
  }

  .m20 {
    margin-right: -5px;
    margin-left: -5px;
  }
  .m20 > * {
    padding-right: 5px;
    padding-left: 5px;
  }
}
/* column */
.col2 {
  width: 50%;
}

.col3 {
  width: 33.3333%;
}

.col4 {
  width: 25%;
}

.col5 {
  width: 20%;
}

.col6 {
  width: 16.6666%;
}

@media screen and (max-width: 560px) {
  .col2, .col3, .col4, .col5, .col6 {
    width: 100%;
  }
}
/* flexbox */
.flex {
  display: flex;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.column {
  flex-direction: column;
}
.flex.center {
  justify-content: center;
}
.flex.fit {
  justify-content: space-between;
}
.flex.middle {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .flex.column-tab {
    flex-direction: column;
  }
}
@media screen and (max-width: 560px) {
  .flex.column-sp {
    flex-direction: column;
  }
}

/* other element */
.ul-disc > li {
  list-style: disc;
  margin-left: 18px;
}

.ol-decimal > li {
  list-style: decimal;
  margin-left: 18px;
}

/* State
-------------------------------------------------- */
.hidden {
  display: none;
}

.hidden-pc {
  display: none;
}

/* ///////// RESPONSIVE ///////// */
@media screen and (max-width: 768px) {
  .hidden-pc {
    display: block;
  }
  .hidden-pc.inline {
    display: inline;
  }

  .hidden-tab {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .hidden-tab {
    display: block;
  }
  .hidden-tab.inline {
    display: inline;
  }

  .hidden-sp {
    display: none;
  }
}
/* Utillity
-------------------------------------------------- */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.clear {
  clear: both;
}

.ofH {
  overflow: hidden;
}

.poR {
  position: relative;
}

.poA {
  position: absolute;
}

/* Centering */
.centering {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/* Float */
.flL {
  float: left;
}

.flR {
  float: right;
}

/* Margin */
.m0 {
  margin: 0 !important;
}

.mt05 {
  margin-top: 5px;
}

.mr05 {
  margin-right: 5px;
}

.mb05 {
  margin-bottom: 5px;
}

.ml05 {
  margin-left: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mr10 {
  margin-right: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.ml10 {
  margin-left: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mr15 {
  margin-right: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.ml15 {
  margin-left: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mr20 {
  margin-right: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.ml20 {
  margin-left: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mr25 {
  margin-right: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.ml25 {
  margin-left: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mr30 {
  margin-right: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.ml30 {
  margin-left: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mr40 {
  margin-right: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ml40 {
  margin-left: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mr50 {
  margin-right: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml50 {
  margin-left: 50px;
}

.pt05 {
  padding-top: 5px;
}

.pr05 {
  padding-right: 5px;
}

.pb05 {
  padding-bottom: 5px;
}

.pl05 {
  padding-left: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pr10 {
  padding-right: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pl10 {
  padding-left: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pr20 {
  padding-right: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pl20 {
  padding-left: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pr30 {
  padding-right: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pl30 {
  padding-left: 30px;
}

/* Text */
.fwB {
  font-weight: bold;
}

.fwN {
  font-weight: normal;
}

.ffG {
  font-family: "游ゴシック","Yu Gothic","游ゴシック体","YuGothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",sans-serif;
}

.ffM {
  font-family: "游明朝","Yu Mincho","游明朝体","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HiraMinProN-W3",serif;
}

.fcW {
  color: #fff;
}

.taR {
  text-align: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.vaM {
  vertical-align: middle;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* Image */
a img, a svg {
  transition: all .3s;
}

a:hover img,
a:hover svg {
  opacity: .7;
}

*[class|="logo"] a:hover img {
  opacity: 1;
}

img.fit {
  width: 100%;
  height: auto;
}

/* ///////// RESPONSIVE ///////// */
@media screen and (max-width: 768px) {
  img.res {
    zoom: .75;
  }
}
@media screen and (max-width: 560px) {
  img.res {
    zoom: .5;
  }
}
@charset "UTF-8";
/* //////////////////////////////////////////////////

　サイト全般のスタイル
　header,footer,modules

////////////////////////////////////////////////// */
/*
  FONT
-------------------------------------------------- */
html {
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 8px;
  }
}

body {
  color: #231815;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
}

p {
  line-height: 2;
}

li, dt, dd, th, td, address {
  line-height: 1.7;
}

a {
  color: #231815;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

i, em {
  font-style: normal;
}

input, textarea, select {
  font-size: 16px;
}

/*
  LAYOUT
-------------------------------------------------- */
body.menuActive {
  overflow: hidden;
}

#wrapper {
  overflow: hidden;
}

.container {
  padding-left: calc(50% - 480px);
  padding-right: calc(50% - 480px);
}
@media screen and (max-width: 1000px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

#contents {
  margin-top: 160px;
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  #contents {
    margin-top: 100px;
  }
}
@media screen and (max-width: 560px) {
  #contents {
    margin-bottom: 100px;
  }
}

/*
  HEADER
-------------------------------------------------- */
#header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .2s;
}
#header.scrolled {
  background: rgba(255, 255, 255, 0.93);
}
#header.menuActive {
  background: #fff;
}
#header .logo img {
  width: 135px;
}
#header .contact {
  position: fixed;
  top: 110px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 220px;
  padding-bottom: 20px;
  background: #5185C5 url("../img/common/ico_mail.png") no-repeat center bottom 20px/26px;
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-size: 2.2rem;
  font-family: "秀英丸ゴシック B", sans-serif;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 960px) {
  #header {
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 10px;
    height: 70px;
    background: rgba(255, 255, 255, 0.93);
  }
  #header .logo {
    flex-grow: 2;
  }
  #header .logo img {
    width: 80px;
  }
  #header .contact {
    position: static;
    width: auto;
    height: auto;
    margin: 0 20px;
    padding: 2px 0;
    padding-left: 26px;
    background: url("../img/common/ico_mail_b.png") no-repeat left center/22px;
    border-radius: 0;
    color: #5185C5;
    font-size: 15px;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
  }
}

/*
  BUTTON MENU
-------------------------------------------------- */
#btnMenu {
  display: none;
}
@media screen and (max-width: 768px) {
  #btnMenu {
    display: block;
    width: 46px;
    height: 46px;
    background-color: #5185C5;
    background-image: url("../img/common/btn_menu.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    border-radius: 6px;
    text-indent: -9999px;
  }
  #btnMenu.active {
    background-image: url("../img/common/btn_close.png");
    background-size: 22px;
  }
}

/*
  MENU
-------------------------------------------------- */
#menu {
  display: flex;
  align-items: center;
}
#menu ul {
  display: flex;
}
#menu ul li {
  white-space: nowrap;
  line-height: 1;
}
#menu ul li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    flex-direction: column;
    background: #fff url("../img/common/bg_footer.png") repeat-x bottom/auto 8px;
    border-bottom: 40px solid #5185C5;
    opacity: 0;
    pointer-events: none;
    transition: all .2s;
  }
  #menu.active {
    opacity: 1;
    pointer-events: inherit;
  }
}
#menu .gnavi {
  margin-left: 50px;
}
#menu .gnavi li {
  margin: 0 10px;
  font-size: 17px;
}
#menu .gnavi li a {
  position: relative;
  padding: 0 1px;
}
#menu .gnavi li a:hover {
  color: #5185C5;
}
#menu .gnavi li a:hover::after {
  content: "";
}
#menu .gnavi li a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 8px;
  background: url("../img/common/bg_nav.png") repeat-x top/16px;
}
@media screen and (max-width: 960px) {
  #menu .gnavi {
    margin-left: 10px;
  }
  #menu .gnavi li {
    margin: 0 6px;
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  #menu .gnavi {
    flex-direction: column;
    margin: 30px 0 0;
  }
  #menu .gnavi li {
    margin: 15px 0;
  }
}
#menu .sns {
  margin-left: 25px;
}
#menu .sns li {
  margin: 0 7px;
}
#menu .sns li:nth-child(2) {
  padding-top: 2px;
}
#menu .sns svg {
  width: 25px;
  vertical-align: middle;
}
#menu .sns path, #menu .sns circle {
  fill: #5185C5;
}
@media screen and (max-width: 960px) {
  #menu .sns {
    margin-left: 10px;
  }
  #menu .sns li {
    margin: 0 5px;
  }
}
@media screen and (max-width: 768px) {
  #menu .sns {
    margin: 20px 0;
  }
  #menu .sns li {
    margin: 0 10px;
  }
  #menu .sns path, #menu .sns circle {
    fill: #5185C5;
  }
}
#menu .bogo-language-switcher {
  margin-left: 15px;
}
#menu .bogo-language-switcher li {
  border: 1px solid #5185C5;
  background: #fff;
  margin-left: 1px;
}
#menu .bogo-language-switcher li > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 25px;
  color: #5185C5;
  font-size: 14px;
}
#menu .bogo-language-switcher li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #5185C5;
}
#menu .bogo-language-switcher li a:hover {
  opacity: .7;
}
#menu .bogo-language-switcher li.current {
  background: #5185C5;
}
#menu .bogo-language-switcher li.current a {
  color: #fff;
}
#menu .bogo-language-switcher li.untranslated {
  border-color: #ccc;
}
#menu .bogo-language-switcher li.untranslated > * {
  color: #ccc;
}
#menu .bogo-language-switcher li.en-US {
  order: 2;
}
#menu .bogo-language-switcher li.zh-CN {
  order: 3;
}
@media screen and (max-width: 960px) {
  #menu .bogo-language-switcher li > * {
    width: 55px;
  }
}
@media screen and (max-width: 768px) {
  #menu .bogo-language-switcher {
    margin: 20px 0;
  }
  #menu .bogo-language-switcher li {
    margin: 0 1px;
  }
  #menu .bogo-language-switcher li > * {
    width: 110px;
    max-width: 100%;
    height: 35px;
  }
}

/*
  FOOTER
-------------------------------------------------- */
#footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #5185C5;
  padding-bottom: 40px;
  color: #fff;
}
#footer::before {
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: url("../img/common/bg_footer.png") repeat-x;
  background-size: auto 8px;
  content: "";
}
@media screen and (max-width: 560px) {
  #footer {
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
  }
}
#footer .pagetop {
  position: relative;
  top: -80px;
  width: 100%;
}
#footer .pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #5185C5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: auto;
}
@media screen and (max-width: 560px) {
  #footer .pagetop {
    top: -70px;
  }
}
#footer .fnavi {
  width: calc(100% - 290px);
  display: flex;
}
#footer .fnavi li {
  margin-bottom: 0.45em;
  line-height: 1.2;
}
#footer .fnavi > li {
  width: 33.333%;
  padding-right: 10px;
}
#footer .fnavi > li.parent ul {
  margin-top: 0.45em;
}
#footer .fnavi > li.parent li::before {
  content: "- ";
}
#footer .fnavi > li a {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #footer .fnavi {
    width: calc(100% - 210px);
  }
}
@media screen and (max-width: 560px) {
  #footer .fnavi {
    width: inherit;
    margin-top: -10px;
    display: block;
    text-align: center;
  }
  #footer .fnavi li {
    display: inline;
    line-height: 2.4;
  }
  #footer .fnavi li.parent::after {
    display: inline-block;
    margin: 0 7px;
    content: "｜";
  }
  #footer .fnavi li.information::before {
    content: "\A";
    white-space: pre-wrap;
  }
  #footer .fnavi li.information::after {
    display: inline-block;
    margin: 0 7px;
    content: "｜";
  }
  #footer .fnavi li.contact {
    margin: 20px 0 15px;
    display: block;
  }
  #footer .fnavi li.contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    width: 210px;
    height: 35px;
    background: #fff url("../img/common/mrk_right_blue.png") no-repeat right 15px center/8px;
    border-radius: 50px;
    border: 2px solid #5185C5;
    color: #5185C5;
    font-family: "秀英丸ゴシック B", sans-serif;
    font-size: 2.1rem;
  }
  #footer .fnavi li.contact a:hover {
    text-decoration: none;
    opacity: .75;
  }
  #footer .fnavi li ul {
    display: inline;
  }
  #footer .fnavi > li {
    width: inherit;
    padding-right: 0;
  }
  #footer .fnavi > li.parent ul {
    display: none;
  }
}
#footer .link {
  width: 280px;
}
#footer .link .btn.white {
  padding-right: 10px;
  font-size: 2.2rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #footer .link {
    width: 210px;
  }
  #footer .link .btn.white {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 560px) {
  #footer .link .btn.white {
    padding-right: 5px;
    height: 35px;
  }
}
#footer .sns {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
#footer .sns li {
  margin: 0 8px;
}
#footer .sns svg {
  width: 25px;
  vertical-align: middle;
}
#footer .sns path, #footer .sns circle {
  fill: #fff;
}
#footer .copyright {
  margin-top: 50px;
  width: 100%;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
@media screen and (max-width: 560px) {
  #footer .copyright {
    margin-top: 35px;
  }
}
@charset "UTF-8";
/* //////////////////////////////////////////////////

　汎用的なパーツや複数ページで利用するスタイル

////////////////////////////////////////////////// */
/*
  汎用的なパーツ
-------------------------------------------------- */
/* inview */
.inview {
  opacity: 0;
  transition: all 1.5s;
}
.inview.toTop {
  transform: translateY(20px);
}
.inview.view {
  opacity: 1;
  transform: none;
}

/* button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.btn:hover {
  text-decoration: none;
  opacity: .75;
}
.btn:hover img {
  opacity: 1;
}
.btn.blue, .btn.white {
  width: 100%;
  height: 50px;
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 10px;
  border-radius: 50px;
  font-size: 2.5rem;
  font-family: "秀英丸ゴシック B", sans-serif;
}
.btn.blue {
  background-color: #5185C5;
  background-image: url("../img/common/mrk_right_white.png");
  color: #fff;
}
.btn.white {
  background-color: #fff;
  background-image: url("../img/common/mrk_right_blue.png");
  border: 2px solid #5185C5;
  color: #5185C5;
}
@media screen and (max-width: 560px) {
  .btn.blue, .btn.white {
    background-position: right 15px center;
    background-size: 8px;
  }
}

/* title */
.h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.3em;
  color: #5185C5;
  font-size: 3.2rem;
  font-family: 'Montserrat', '秀英丸ゴシック B', sans-serif;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.h2::before, .h2::after {
  display: inline-block;
  width: 60px;
  height: 8px;
  background: url("../img/common/mrk_title.png") no-repeat center/100%;
  content: "";
}
.h2::before {
  margin-right: 0.7em;
}
.h2::after {
  margin-left: 0.7em;
}
.h2 .en {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .h2 {
    font-size: 3.5rem;
  }
  .h2::before, .h2::after {
    width: 48px;
    height: 7px;
  }
}

/* zoom */
.zoom {
  display: block;
  overflow: hidden;
}
.zoom:hover img {
  transform: scale(1.1);
  opacity: 1;
}

/* wave */
.wave {
  position: absolute;
  left: 0;
}
.wave._01 {
  top: -40px;
}
.wave._02 {
  bottom: -40px;
  transform: rotate(180deg);
}

/* page navi */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.wp-pagenavi > * {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  width: 15px;
  padding: 2px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  border-bottom: 2px solid transparent;
}
.wp-pagenavi > *.current {
  border-bottom-color: #231815;
}
.wp-pagenavi > *.previouspostslink, .wp-pagenavi > *.nextpostslink {
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px;
}
.wp-pagenavi > *.previouspostslink {
  background-image: url("../img/common/btn_prev.png");
}
.wp-pagenavi > *.nextpostslink {
  background-image: url("../img/common/btn_next.png");
}
.wp-pagenavi > *:hover {
  text-decoration: none;
}
@media screen and (max-width: 560px) {
  .wp-pagenavi {
    margin-top: 20px;
  }
}

/*
  複数のページで共通するコンテンツ
-------------------------------------------------- */
/* case */
.case_lists {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.case_lists li {
  width: calc(33.333% - 30px);
  margin: 0 15px 30px;
  font-size: 1.6rem;
  line-height: 1.5;
}
.case_lists .zoom {
  text-align: center;
}
.case_lists .category {
  display: inline-block;
  margin: 1em 0 .4em;
  padding: 0 5px;
  border: 1px solid #5185C5;
  color: #5185C5;
  font-size: 1.2rem;
  line-height: 1.4;
}
.case_lists .category + .category {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .case_lists {
    margin: 0 -10px;
  }
  .case_lists li {
    width: calc(33.333% - 20px);
    margin: 0 10px 30px;
  }
}
@media screen and (max-width: 560px) {
  .case_lists {
    margin: 0;
    flex-direction: column;
  }
  .case_lists li {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 40px;
  }
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
	/*
    margin-left: auto;
    margin-right: auto;
	*/
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
	outline: none;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}




/* custom */
.slick-dots {
	position: absolute;
	bottom: 15px; left: 0; right: 0;
	text-align: center;
}
.slick-dots li {
	display: inline-block;
  line-height: 1;
}
.slick-dots li button {
	margin: 0 5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff;
	text-indent: -9999px;
}
.slick-dots li.slick-active button {
	background: #4F4D4D;	
}

.slick-arrow {
	position: absolute;
	z-index: 20;
	top: 50%;
	transform: translateY(-50%);
	text-indent: -9999px;
}
.slick-prev {
}
.slick-next {
}

/* ///////// RESPONSIVE ///////// */
@media screen and (max-width: 768px) {
	.slick-dots {
	}

	.slick-arrow {
		width: 40px;
		height: 40px;
	}
	.slick-prev {
		left: -30px;
		background-size: 40px;
	}
	.slick-next {
		right: -30px;
		background-size: 40px;
	}
}



@charset "UTF-8";
/* //////////////////////////////////////////////////

　TOPページのスタイル

////////////////////////////////////////////////// */
.sec {
  padding-top: 70px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .sec {
    margin-bottom: 30px;
  }
}

#header {
  background: none;
}

#contents {
  margin-top: 0;
}

/*
  mainimg
-------------------------------------------------- */
#mainimg {
  position: relative;
  /*
  .slick-current {
    &.slide-01 .copy {
      animation: mask_vertical $duration $delay forwards;
    }
    &.slide-02 .copy,
    &.slide-03 .copy {
      animation: mask_horizontal $duration $delay forwards;
      @media screen and (max-width: $sp){
        animation: mask_vertical $duration $delay forwards;
      }
    }
  }
  */
}
#mainimg [class|="slide"] {
  height: 100vh;
  background-size: cover;
  background-position: center;
  /*
  .copy {
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
  */
}
#mainimg [class|="slide"] p {
  position: relative;
  display: flex;
  align-items: center;
  width: 1000px;
  padding: 0 20px;
  max-width: 100%;
  height: 100%;
  margin: auto;
}
@media screen and (max-width: 560px) {
  #mainimg [class|="slide"] p {
    padding: 90px 0 0 !important;
    align-items: flex-start;
    justify-content: center;
  }
}
#mainimg .slide-01 {
  background-image: url("../img/home/mainimg_01.jpg");
  /*
  .copy {
    -webkit-mask-image: url("../img/home/mask2.png");
    -webkit-mask-position: 0 -600px;
    mask-image: url("../img/home/mask2.png");
    mask-position: 0 -600px;
  }
  */
}
#mainimg .slide-01 p {
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 200px;
}
#mainimg .slide-01 img {
  width: auto;
  height: 380px;
  max-height: 100%;
}
@media screen and (max-width: 560px) {
  #mainimg .slide-01 {
    background-image: url("../img/home/mainimg_01_sp.jpg");
  }
  #mainimg .slide-01 img {
    width: 68px;
    height: auto;
  }
}
#mainimg .slide-02 {
  background-image: url("../img/home/mainimg_02.jpg");
  /*
  .copy {
    -webkit-mask-image: url("../img/home/mask.png");
    -webkit-mask-position: -600px 0;
    mask-image: url("../img/home/mask.png");
    mask-position: -600px 0;
  }
  */
}
#mainimg .slide-02 p {
  padding-bottom: 250px;
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  #mainimg .slide-02 img {
    width: 200px;
  }
}
@media screen and (max-width: 560px) {
  #mainimg .slide-02 {
    background-image: url("../img/home/mainimg_02_sp.jpg");
    /*
    .copy {
      -webkit-mask-image: url("../img/home/mask2.png");
      -webkit-mask-position: 0 -600px;
      mask-image: url("../img/home/mask2.png");
      mask-position: 0 -600px;
    }
    */
  }
  #mainimg .slide-02 img {
    width: 68px;
  }
}
#mainimg .slide-03 {
  background-image: url("../img/home/mainimg_03.jpg");
  /*
  .copy {
    -webkit-mask-image: url("../img/home/mask.png");
    -webkit-mask-position: -600px 0;
    mask-image: url("../img/home/mask.png");
    mask-position: -600px 0;
  }
  */
}
@media screen and (max-width: 768px) {
  #mainimg .slide-03 img {
    width: 200px;
  }
}
@media screen and (max-width: 560px) {
  #mainimg .slide-03 {
    background-image: url("../img/home/mainimg_03_sp.jpg");
    /*
    .copy {
      -webkit-mask-image: url("../img/home/mask2.png");
      -webkit-mask-position: 0 -600px;
      mask-image: url("../img/home/mask2.png");
      mask-position: 0 -600px;
    }
    */
  }
  #mainimg .slide-03 img {
    width: 68px;
  }
}
#mainimg .scroll {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2.5s infinite;
  opacity: 0;
}
@media screen and (max-width: 560px) {
  #mainimg .scroll {
    width: 60px;
  }
}
#mainimg .slick-dots {
  bottom: 90px;
}
#mainimg .slick-dots .slick-active button {
  background: #5185C5;
}
@media screen and (max-width: 560px) {
  #mainimg .slick-dots {
    bottom: 90px;
  }
  #mainimg .slick-dots button {
    width: 7px;
    height: 7px;
  }
}

@keyframes scroll {
  10% {
    bottom: 10px;
    opacity: 0;
  }
  100% {
    bottom: 0px;
    opacity: 1;
  }
}
@keyframes mask_vertical {
  from {
    -webkit-mask-position: 0 -600px;
    mask-position: 0 -600px;
  }
  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}
@keyframes mask_horizontal {
  from {
    -webkit-mask-position: -600px 0;
    mask-position: -600px 0;
  }
  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}
/*
  lead
-------------------------------------------------- */
#lead {
  position: relative;
  background: url("../img/common/stripe.png");
  padding-top: 50px;
  padding-bottom: 70px;
  text-align: center;
}
#lead i {
  display: inline-block;
  margin-bottom: 2.5em;
}
#lead p {
  font-family: "秀英丸ゴシック B", sans-serif;
  line-height: 1.8;
}
#lead .txt1 {
  margin: 1.2em 0 .8em;
  font-size: 3rem;
  line-height: 1.4;
}
#lead .txt2 {
  font-size: 2.3rem;
}
#lead .wave._02 {
  display: none;
}
@media screen and (max-width: 768px) {
  #lead {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 560px) {
  #lead i {
    margin-bottom: 2em;
  }
  #lead .txt1 {
    font-size: 2.6rem;
  }
  #lead .txt2 {
    font-size: 2rem;
  }
}

/*
  事業内容
-------------------------------------------------- */
#service ul {
  margin: 0 -15px;
}
#service ul li {
  position: relative;
  width: calc(33.333% - 30px);
  margin: 0 15px 30px;
  padding-top: calc(33.333% - 30px);
  text-align: center;
  line-height: 1.2;
}
#service ul .box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  border: 5px solid #5185C5;
  border-radius: 20px;
  padding: 15px;
  color: #5185C5;
}
#service ul i {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 4rem;
}
#service ul h3 {
  margin: .3em 0;
  font-size: 3.2rem;
  font-family: "秀英丸ゴシック B", sans-serif;
  font-weight: bold;
}
#service ul figure {
  flex-grow: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #service ul {
    margin: 0;
    flex-direction: column;
    align-items: center;
  }
  #service ul li {
    width: 300px;
    max-width: 100%;
    margin: 0 0 30px;
    padding-top: 300px;
  }
  #service ul .box {
    border-width: 4px;
    padding: 20px;
  }
}

/*
  お知らせ
-------------------------------------------------- */
#information header {
  position: relative;
}
#information h2 {
  padding-top: 5px;
  margin-bottom: 20px;
  color: #5185C5;
  font-size: 3.2rem;
  font-family: "秀英丸ゴシック B", sans-serif;
  text-align: center;
}
#information .goInfo {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 160px;
  height: 35px;
  padding: 0 15px;
  padding-right: 20px;
  background: #5185C5 url("../img/common/mrk_right_white.png") no-repeat right 10px center/8px;
  border-radius: 50px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "秀英丸ゴシック B", sans-serif;
}
#information ul {
  border-top: 1px solid #222;
  margin-bottom: 70px;
}
#information ul li {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #222;
  line-height: 1.6;
}
#information ul li time {
  margin-right: 30px;
  font-size: 2rem;
}
#information ul li .title {
  font-size: 1.8rem;
}
#information .btn.white {
  height: 80px;
}
@media screen and (max-width: 768px) {
  #information .goInfo {
    min-width: 140px;
    height: 30px;
  }
}
@media screen and (max-width: 560px) {
  #information h2 {
    margin-bottom: 15px;
    text-align: left;
  }
  #information ul {
    margin-bottom: 40px;
  }
  #information ul li {
    flex-direction: column;
    padding: 15px 0;
  }
  #information ul li time {
    margin-right: 0;
  }
  #information .btn.white {
    line-height: 1.3;
    text-align: center;
  }
}
