@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";
/* //////////////////////////////////////////////////

　事例紹介 ページのスタイル

////////////////////////////////////////////////// */
/* current navi */
.gnavi .nav3 a {
  color: #5185C5;
}
.gnavi .nav3 a::after {
  content: "";
}

/* カテゴリーリスト */
.category_navi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.category_navi li {
  margin: 0 5px 10px;
  line-height: 1.1;
}
.category_navi li ul {
  display: inline-block;
  letter-spacing: -.4em;
  margin-right: -5px;
}
.category_navi li ul li {
  margin: 0 5px;
}
.category_navi a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border: 1px solid #655D5B;
  color: #655D5B;
  font-size: 1.4rem;
  white-space: nowrap;
}
.category_navi a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .category_navi {
    justify-content: flex-start;
  }
}

.archive .category_navi .all a {
  background: #5185C5;
  border-color: #5185C5;
  color: #fff;
}

/* 一覧 */
#case_list h3 {
  margin-bottom: 10px;
  color: #5185C5;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
#case_list li {
  margin-top: 30px;
}
@media screen and (max-width: 560px) {
  #case_list li {
    margin-top: 20px;
  }
}

/* 詳細 */
#case_detail .categories {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
#case_detail .categories > * {
  font-size: 1.6rem;
}
#case_detail .categories > * + *::before {
  display: inline-block;
  margin: 0 10px;
  width: 7px;
  height: 13px;
  background: url("../img/case/btn_next.png") no-repeat center/100%;
  content: "";
}
#case_detail .categories a {
  color: #5185C5;
}
@media screen and (max-width: 768px) {
  #case_detail .categories > * + *::before {
    margin: 0 7px;
    width: 5px;
    height: 9px;
  }
}
#case_detail .images {
  width: 880px;
  max-width: 100%;
  margin: auto;
  padding: 0 60px;
}
#case_detail .images .slide {
  margin-bottom: 40px;
  text-align: center;
}
#case_detail .images .slide .slick-arrow {
  width: 15px;
  height: 29px;
  background-size: 100%;
}
#case_detail .images .slide .slick-prev {
  left: -60px;
  background-image: url("../img/case/btn_prev.png");
}
#case_detail .images .slide .slick-next {
  right: -60px;
  background-image: url("../img/case/btn_next.png");
}
#case_detail .images .slick-dots {
  position: static;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  margin-top: 30px;
}
#case_detail .images .slick-dots li {
  width: calc(25% - 10px);
  height: 135px;
  margin: 10px 5px 0;
  background: #D3D1D0;
  text-align: center;
  opacity: .5;
}
#case_detail .images .slick-dots li.slick-active {
  opacity: 1;
}
#case_detail .images .slick-dots li img {
  object-fit: cover;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}
#case_detail .images .thumb {
  margin: 0 -5px;
}
#case_detail .images .thumb .slick-slide {
  position: relative;
  height: 130px;
  margin: 0 5px;
  background: #D3D1D0;
  text-align: center;
  opacity: .5;
}
#case_detail .images .thumb .slick-slide.slick-current {
  opacity: 1;
}
#case_detail .images .thumb .slick-slide img {
  /*
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  */
  object-fit: cover;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}
@media screen and (max-width: 768px) {
  #case_detail .images {
    padding: 0 10px;
  }
  #case_detail .images .slide {
    margin-bottom: 20px;
  }
  #case_detail .images .slide .slick-arrow {
    width: 8px;
    height: 15px;
  }
  #case_detail .images .slide .slick-prev {
    left: -20px;
  }
  #case_detail .images .slide .slick-next {
    right: -20px;
  }
  #case_detail .images .slick-dots {
    margin: 0 -3px;
    margin-top: 20px;
  }
  #case_detail .images .slick-dots li {
    width: calc(25% - 6px);
    height: 120px;
    margin: 6px 3px 0;
  }
  #case_detail .images .thumb {
    margin: 0 -3px;
  }
  #case_detail .images .thumb .slick-slide {
    margin: 0 3px;
    height: 120px;
  }
}
@media screen and (max-width: 560px) {
  #case_detail .images .slick-dots li {
    height: 85px;
  }
  #case_detail .images .thumb .slick-slide {
    height: 85px;
  }
}
#case_detail .meta {
  margin: 50px 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#case_detail .meta .category {
  border-bottom: 4px solid #5185C5;
  padding-bottom: .3em;
  margin-bottom: .3em;
  color: #5185C5;
  font-size: 3.2rem;
  font-weight: bold;
}
#case_detail .meta .date {
  font-size: 1.6rem;
}
#case_detail .meta .date b {
  padding-right: .7em;
  font-size: 1.2rem;
}
#case_detail .content {
  background: url("../img/common/stripe.png");
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
#case_detail .content table {
  margin-top: 1.5em;
  width: 300px;
}
#case_detail .content th, #case_detail .content td {
  border-bottom: 1px solid #231815;
  padding: 0.5em 0;
  vertical-align: middle;
}
#case_detail .content th {
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
}
#case_detail .content td {
  width: 100%;
  padding-left: 2em;
  font-size: 1.6rem;
}
@media screen and (max-width: 560px) {
  #case_detail .content {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  #case_detail .content table {
    width: 100%;
  }
}
#case_detail .btn.back {
  display: flex;
  width: 165px;
  height: 65px;
  margin: auto;
  background: #5185C5;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-family: "秀英丸ゴシック B", sans-serif;
}
@media screen and (max-width: 560px) {
  #case_detail .btn.back {
    width: 130px;
    height: 50px;
  }
}

/* お問い合わせボタン */
.btn.contact {
  margin-top: 70px;
  height: 80px;
}
@media screen and (max-width: 560px) {
  .btn.contact {
    margin-top: 40px;
  }
}
