@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  background-position: center center;
  box-sizing: border-box;
  outline: none;
}

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
  font-size: 62.5%;
}

@media screen and (max-width: 1340px) {
  html {
    font-size: 56.25%;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 68.75%;
  }
}
body {
  position: relative;
  font-family: "YakuHanMP_Noto", "Noto Serif JP", serif;
  font-weight: 500;
  color: #222;
  font-size: 1.8rem;
  line-height: 1.75;
  margin: auto;
  text-align: left;
  letter-spacing: 0.04em;
  background: #fff;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

li {
  list-style: none;
}

/*基本パーツ*/
p {
  text-align: justify;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-weight: 500;
}

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

*::-moz-selection {
  background: #e92627;
  color: #fff;
}

*::selection {
  background: #e92627;
  color: #fff;
}

h1,
h2,
h3,
h4 {
  line-height: 1.5;
  font-size: 100%;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

.num,
.en {
  font-family: "EB Garamond", serif;
}

table {
  border-collapse: collapse;
}

.sp_only,
.sp_only_line {
  display: none;
}

.pc_only {
  display: block;
}

/*平体*/
/*
.f_wide {
	transform: scaleY(90%);
}
*/
.people_title .cate_title,
.page_title .title,
.home_index .st,
.kv_area .copy,
.home .people_title .cate_title {
  transform: scaleY(90%);
}

/*縦書き*/
.font_vert {
  font-feature-settings: normal;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-family: "Noto Serif JP", serif;
}

/*リンク*/
a {
  text-decoration: none;
  color: #222;
  transition: 0.2s ease-in-out;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #e92627;
}
a.child:hover {
  color: inherit;
}
a img {
  transition: 0.6s ease-in-out;
}
p a {
  text-decoration: underline;
}

a .img img {
  transition: 0.6s ease-in-out;
}
a:hover .img img {
  filter: brightness(70%);
}

.link_arrow {
  position: relative;
  padding-left: 60px;
}

a:hover .link_arrow {
  color: #e92627;
}

.link_arrow:hover {
  color: #e92627;
}
.link_arrow .arrow {
  width: 40px;
  height: 1px;
  display: block;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0.8em;
}
.link_arrow .arrow:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #e92627;
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  transition: 0.4s ease-in-out;
}

a:hover .link_arrow .arrow:before,
.link_arrow:hover .arrow:before {
  animation: arrow 1.2s linear infinite;
}

@keyframes arrow {
  0% {
    width: 100%;
    left: auto;
    right: 0;
  }
  25% {
    width: 0;
    left: auto;
    right: 0;
  }
  26% {
    width: 0;
    left: 0;
    right: auto;
  }
  50% {
    width: 100%;
    left: 0;
    right: auto;
  }
  51% {
    width: 100%;
    right: 0;
    left: auto;
  }
  100% {
    width: 100%;
    right: 0;
    left: auto;
  }
}
.btn_circle,
.btn {
  display: inline-block;
  border: 1px solid #222;
  border-radius: 200px;
  padding: 0.3em 1.5em 0.35em 1.5em;
  position: relative;
  overflow: hidden;
}

.btn_circle {
  width: 150px;
  height: 150px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  border: 1px solid #222;
  border-radius: 50%;
  padding: 0;
}
.btn_circle:hover {
  padding-left: 2em;
  padding-right: 2em;
  background: #e92627;
  border-color: #e92627;
  color: #fff !important;
}

.btn:hover {
  padding-left: 2em;
  padding-right: 2em;
  background: #e92627;
  border-color: #e92627;
  color: #fff !important;
}

.btn_circle:hover {
  padding-left: 0;
  padding-right: 0;
  transform: scale(110%);
  font-size: 1.44rem;
}

.btn_area {
  text-align: right;
  margin-top: 60px;
}

/*
.btn_circle:hover,
.btn:hover {
	border-color: #e92627;
	color: #fff;
}

.btn_circle:before,
.btn:before {
	z-index: -1;
	content: '';
	width: 110%;
	height: 110%;
	display: block;
	position: absolute;
	left: 0;
	top: -100%;
	background: #e92627;
	border-radius: 200px;
	transform: scaleX(10%) scaleY(20%);
	transform-origin: center top;
	opacity: 0;
 	transition: 0.4s ease-in-out; 
}

.btn_circle:hover:before,
.btn:hover:before {
	animation: btn 0.6s linear forwards;
}


@keyframes btn {
	0% {transform: scaleX(10%) scaleY(20%); opacity: 0; top: -100%;}
	25% {transform: scaleX(50%) scaleY(60%); opacity: 1; top: -50%;}
	50% {transform: scaleX(100%) scaleY(100%); opacity: 1; top: 0%;}
	100% {transform: scaleX(100%) scaleY(100%); opacity: 1; top: 0%;}
}
*/
/*文字揃え*/
.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}

.align_center {
  text-align: center;
}

/*文字サイズ*/
.fs_xs {
  font-size: 1rem;
}

.fs_sss {
  font-size: 1.2rem;
}

.fs_ss {
  font-size: 1.4rem;
}

.fs_s {
  font-size: 1.6rem;
}

.fs_m {
  font-size: 1.8rem;
}

.fs_mm {
  font-size: 2rem;
}

.fs_mmm {
  font-size: 2.4rem;
}

.fs_l {
  font-size: 2.8rem;
}

.fs_ll {
  font-size: 3.6rem;
}

.fs_lll {
  font-size: 4.4rem;
}

.fs_xl {
  font-size: 6rem;
}

.fs_xxl {
  font-size: 6.8rem;
}

/*文字詰め*/
.kern005 {
  letter-spacing: 0.05em;
}

.kern01 {
  letter-spacing: 0.1em;
}

.kern02 {
  letter-spacing: 0.2em;
}

.kern03 {
  letter-spacing: 0.3em;
}

.kern04 {
  letter-spacing: 0.4em;
}

.kern05 {
  letter-spacing: 0.5em;
}

.kern-005 {
  letter-spacing: -0.05em;
}

.kern-00 {
  letter-spacing: 0;
}

.kern-005 {
  letter-spacing: -0.05em;
}

.kern-01 {
  letter-spacing: -0.1em;
}

.kern-02 {
  letter-spacing: -0.2em;
}

.kern-03 {
  letter-spacing: -0.3em;
}

.kern-04 {
  letter-spacing: -0.4em;
}

.kern-05 {
  letter-spacing: -0.5em;
}

/*Google map*/
.gmap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.gmap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*お知らせ*/
.home .list_info {
  width: 58.4%;
}
.home .list_info li {
  margin: 0 0 20px 0;
}

.list_info li {
  display: flex;
  margin: 0 0 60px 0;
}
.list_info li:last-child {
  margin-bottom: 0;
}
.list_info .date,
.list_info .title {
  display: block;
}
.list_info .date {
  width: 130px;
  font-size: 1.4rem;
  line-height: 2;
}
.list_info .title {
  flex: 1;
  font-size: 1.8rem;
}

/*--------------------------------------

	header

--------------------------------------*/
header {
  padding: 40px 45px;
  font-size: 1.8rem;
  display: flex;
  line-height: 1;
  position: relative;
  z-index: 21;
}
header .logo {
  flex: 1;
}
header .logo a {
  display: block;
  width: 142px;
  padding: 8px 0 0 0;
}
header #menu {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
header #menu:before {
  content: "";
  display: inline-block;
  width: 1px;
}
header .navi ul {
  display: flex;
}
header .navi ul li {
  margin: 0 0 0 2.5em;
}
header .navi ul li:first-child {
  margin: 0;
}
header .navi ul li a {
  display: block;
  position: relative;
  padding-top: 6px;
  padding-bottom: 12px;
  overflow: hidden;
}
header .navi ul li a:after, header .navi ul li a:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #222;
  position: absolute;
  bottom: 8px;
  transition: 0.6s ease-in-out;
}
header .navi ul li a:after {
  left: 0;
  background: #222;
}
header .navi ul li a:before {
  left: -180%;
  background: #e92627;
}
header .navi ul li a:hover:after {
  left: 180%;
}
header .navi ul li a:hover:before {
  left: 0;
}
header .navi_contact ul li a {
  display: inline-block;
  padding: 23px 30px;
  color: #fff;
  background: #e92627;
  border: 1px solid #e92627;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: 0.6s ease-in-out;
}
header .navi_contact ul li a:hover {
  background: #fff;
  color: #e92627;
}
header .navi_contact ul li a span {
  display: inline-block;
  padding: 0 0 0 30px;
  position: relative;
}
header .navi_contact ul li a span:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 14px;
  background: url(images/common/icon_mail.svg) center center;
  background-size: cover;
  filter: brightness(1000);
  position: absolute;
  left: 0;
  top: 2px;
  transition: 0.2s ease-in-out;
}
header .navi_contact ul li a:hover span:before {
  transform: scale(1.2);
  filter: brightness(1);
}
header .navi ul li .local_area {
  position: absolute;
  top: 105px;
  left: 0;
  padding: 0 9.7%;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease-in-out;
}
header .navi ul li:hover .local_area {
  opacity: 1;
  pointer-events: auto;
  top: 94px;
  transition: 0.4s ease-in-out;
}
header .navi ul li .local {
  background: #fff;
  border-radius: 30px;
  box-shadow: 10px 10px 15px 15px rgba(0, 0, 0, 0.05);
  padding: 60px 60px 10px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
header .navi ul li .local:after {
  content: "";
  display: block;
  width: 30.76%;
  height: 1px;
}
header .navi ul li .local a {
  display: block;
  width: 30.76%;
  margin-bottom: 30px;
}
header .navi ul li .local a:after, header .navi ul li .local a:before {
  content: none;
}
header .navi ul li .local a img {
  display: block;
}
header .navi ul li .local a:hover img {
  filter: brightness(70%);
}
header .navi ul li .local a .text {
  display: block;
  padding: 15px 10px 0 10px;
  font-size: 1.6rem;
}

@media screen and (max-width: 920px) {
  header {
    font-size: 1.7rem;
  }
  header .navi ul li {
    margin: 0 0 0 1.75em;
  }
}
/*
header .navi_contact ul li a:before {
	content: '';
	position: absolute;
	left: -120%;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(1.4);
	display: block;
	background: #ff530f;
	transition: 0.3s ease-in-out;
	filter: blur(20px);
}

header .navi_contact ul li a:hover:before {
	left: 0;
}
*/
/*--------------------------------------

	footer

--------------------------------------*/
footer {
  position: relative;
  border-top: 1px solid #e2ebec;
}

.home footer {
  border-top: none;
}

footer .sitemap {
  display: flex;
  padding: 125px 9.7% 110px 9.7%;
}
footer .sitemap ul {
  padding: 0 0 0 30px;
  border-left: 1px solid #e92627;
  font-size: 1.7rem;
}
footer .sitemap ul li {
  margin: 0 0 10px 0;
}
footer .bottom {
  padding: 0 6.9% 6.9% 6.9%;
}
footer .bottom .flex {
  align-content: flex-end;
  align-items: flex-end;
  flex-direction: row-reverse;
}
footer .bottom .mark {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-content: flex-end;
  align-items: flex-end;
}
footer .bottom .mark .bn {
  width: 17.9%;
  max-width: 100px;
  margin-left: 0;
  padding-bottom: 5px;
}
footer .bottom .mark ul {
  max-width: 457px;
  width: 81.3%;
  display: flex;
  align-content: flex-end;
  align-items: flex-end;
  flex-direction: row-reverse;
}
footer .bottom .mark ul li {
  margin: 0 25px 0 0;
}
footer .bottom .mark ul li.fsc {
  width: 10.7%;
}
footer .bottom .mark ul li.jcqa {
  width: 12.9%;
}
footer .bottom .mark ul li.pmark {
  width: 13.5%;
}
footer .bottom .mark ul li.jc {
  width: 18.8%;
}
footer .bottom .mark ul li.nhk {
  width: 16.6%;
}
footer .bottom .mark ul li.gp {
  width: 76px;
  width: 16.6%;
}
footer .bottom .other {
  min-width: 295px;
  padding-right: 15px;
}
footer .bottom .other .logo {
  display: inline-block;
  width: 222px;
  margin: 0 0 20px 0;
}
footer .bottom .other .link {
  margin: 0 0 10px 0;
}
footer .bottom .other .link a {
  display: inline-block;
  margin-right: 15px;
}

.pagetop {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 20px 0 0 0;
  font-size: 1.3rem;
  background: url(images/common/arrow_top.svg) no-repeat;
  background-position: center top 6px;
  background-size: 8px auto;
  z-index: 30;
  transition: 0.4s ease-in-out;
}
.pagetop:hover {
  background-position: center top 0;
}

/*--------------------------------------

	Flex

--------------------------------------*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
}

.flex_end {
  align-content: flex-end;
  align-items: flex-end;
  align-self: flex-end;
}

.flex_center {
  align-content: center;
  align-items: center;
  align-self: center;
}

.flex_stretch {
  align-content: stretch;
  align-items: stretch;
  align-self: stretch;
}

.img_list .child {
  margin-bottom: 60px;
}
.img_list li .img {
  margin: 0 0 10px 0;
}
.img_list li .text {
  padding: 10px;
}

.img_list_3::after {
  content: "";
  display: block;
  width: 29.6%;
}

.img_list_4::before {
  content: "";
  display: block;
  width: 20.8%;
  order: 1;
}
.img_list_4::after {
  content: "";
  display: block;
  width: 20.8%;
}

/*--------------------------------------

	Wide / layout

--------------------------------------*/
.section {
  padding-top: 140px;
  padding-bottom: 140px;
}

.component {
  margin-bottom: 120px;
}
.component:last-child {
  margin-bottom: 0;
}

.wide_max {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.wide_standard {
  width: 100%;
  padding-left: 9.7%;
  padding-right: 9.7%;
  margin: 0 auto;
}

.wide_1_1 {
  width: 100%;
}

.wide_1_5 {
  width: 14.7%;
}

.wide_1_4 {
  width: 20.8%;
}

.wide_1_4_w {
  width: 26.3%;
}

.wide_3_4 {
  width: 73.6%;
}

.wide_3_4_w {
  width: 79.1%;
}

.wide_1_3 {
  width: 29.6%;
}

.wide_1_3_w {
  width: 35.5%;
}

.wide_2_3 {
  width: 64.5%;
}

.wide_2_3_w {
  width: 70.4%;
}

.wide_1_2 {
  width: 46.6%;
}

.wide_1_2_w {
  width: 53.6%;
}

/*--------------------------------------

	kv

--------------------------------------*/
.kv_area {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 145px 0 0 0;
  margin-top: -140px;
  min-height: 640px;
  overflow: hidden;
}
.kv_area .copy {
  position: absolute;
  left: 70.13%;
  width: 3.2em;
  bottom: 6.8vh;
  margin-left: -0.7em;
  z-index: 20;
  height: 6.7em;
  font-size: 6.8rem;
}
.kv_area .copy h2 {
  line-height: 1.25;
}
.kv_area .copy h2 .sub {
  font-size: 1.6rem;
  display: block;
  position: relative;
}
.kv_area .copy h2 .sub:before {
  content: "";
  width: 1px;
  height: 0;
  background: #e92627;
  display: block;
  position: absolute;
  left: 0.6em;
  top: -80px;
  transition: 0.6s ease-in-out;
}
.kv_area .copy h2 .main {
  display: block;
  margin-right: 45px;
  position: absolute;
  right: 0;
  top: 0;
}
.kv_area .copy.show h2 .sub:before {
  height: 50px;
}
.kv_area .copy .line {
  display: block;
  transform: translateX(-1.2em);
  opacity: 0;
  display: block;
  transition: 0.9s ease-in-out;
}
.kv_area .copy .line01 {
  position: relative;
  display: block;
  overflow: hidden;
  transition: 0.7s ease-in-out;
}
.kv_area .copy .main .line02,
.kv_area .copy .main .line03 {
  position: relative;
  display: block;
  overflow: hidden;
  transition: 0.7s ease-in-out;
}
.kv_area .copy .line01.show .line {
  transform: translateX(0);
  opacity: 1;
  transition: 1.1s ease-in-out;
}
.kv_area .copy .main.show .line02 .line,
.kv_area .copy .main.show .line03 .line {
  transform: translateX(0);
  opacity: 1;
  transition: 1.1s ease-in-out;
}
.kv_area.kv_pow .copy .line {
  transform: translateY(1.2em);
  transition: 1s ease-in-out;
  /* 	letter-spacing: 0.3em; */
}
.kv_area.kv_pow .copy .line01 {
  overflow: visible;
}
.kv_area.kv_pow .copy .main .line02,
.kv_area.kv_pow .copy .main .line03 {
  overflow: visible;
}
.kv_area.kv_pow .copy .line01.show .line {
  transform: translateY(0);
  transition: 1s ease-in-out;
  /* 	letter-spacing: 0.1em; */
}
.kv_area.kv_pow .copy .main.show .line02 .line,
.kv_area.kv_pow .copy .main.show .line03 .line {
  transform: translateY(0);
  transition: 1s ease-in-out;
  /* 	letter-spacing: 0.1em; */
}

@media screen and (max-height: 720px) {
  .kv_area .copy {
    bottom: 5.12vh;
    font-size: 6.4rem;
  }
  .kv_area .copy h2 .sub:before {
    top: -60px;
  }
}
/*test*/
/*
.kv_area.kv_pow .copy {
	height:7.2em;
}
*/
/*test*/
.kv_in {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.kv {
  width: 70.13%;
  height: 100%;
  position: absolute;
  z-index: 10;
  opacity: 1;
  transition: 1.1s ease-in-out;
}
.kv .text {
  position: absolute;
  left: 0;
  bottom: 60px;
  color: #1c446e;
  color: #fff;
  padding: 0 0 0 4vw;
  overflow: hidden;
  width: 0;
  transition: 1.5s ease-in-out;
}
.kv .text:before {
  content: "";
  display: block;
  width: 4px;
  height: 0;
  background: #e92627;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.2s ease-in-out;
}
.kv .text h3 {
  /* 	opacity: 0.7; */
  text-shadow: 1px 1px 7px rgba(0, 0, 0, 0.25);
  /* 	text-shadow: 1px 1px 2px rgba(0,0,0,0.40); */
  -webkit-font-smoothing: subpixel-antialiased;
}
.kv .text .main {
  width: 100vw;
  line-height: 1;
  display: block;
  font-size: 2.4rem;
  margin: 0 0 15px 0;
}
.kv .text .sub {
  width: 100vw;
  display: block;
}
.kv.text_show .text {
  width: 100%;
}
.kv.text_show .text:before {
  height: 100%;
}
.kv.show {
  opacity: 1;
}
.kv .ph_area {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.kv .ph_out {
  transition: 1s cubic-bezier(0.61, 1, 0.88, 1);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.kv .ph {
  position: absolute;
  left: 0;
  transform: translateX(3.5%) scale(1.07);
  /*fade in の時の状態*/
  top: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center center;
  background-size: cover;
  transition: 7s cubic-bezier(0.61, 1, 0.88, 1);
}
.kv .ph:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #222;
  opacity: 0.02;
}
.kv.show .ph {
  transform: translateX(1%) scale(1.07);
  /*fade out の時の状態*/
}
.kv.show.current .ph {
  transform: translateX(-3.5%) scale(1.07);
  /*fade out の時の状態*/
}
.kv.current {
  width: 70.13%;
}
.kv.before, .kv.after {
  width: 20%;
}

/*
.kv .ph:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	filter: blur(100px);
	transition: 0.8s ease-in-out;
	opacity: 0.1;
}

.kv.text_show .ph:after {
	opacity: 1.5;
	left: 100%;
}
*/
.kv01 {
  left: 0;
  margin-left: 0;
}

.kv.current {
  left: 0;
  margin-left: 0;
}
.kv.after {
  left: -100%;
}

.kv02 {
  left: 70.13%;
  margin-left: 18.75vw;
}

.kv.before {
  left: 70.13%;
  margin-left: 18.75vw;
}
.kv.after.pre {
  left: 140.26%;
  margin-left: 18.75vw;
}
.kv.off {
  transition: none;
}

/*
.kv.before a {
	pointer-events: none;
}
*/
.kv_area .sw01 {
  display: block;
  position: absolute;
  left: 70.13%;
  bottom: 0;
  margin-left: 18.75vw;
  width: 20%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 20;
  background: rgba(255, 255, 255, 0);
  transition: 0.4s ease-in-out;
}
.kv_area .sw01.show {
  opacity: 1;
}
.kv_area .sw01:active {
  background: rgba(255, 255, 255, 0.8);
}
.kv_area .sw01:after {
  content: "";
  display: block;
  width: 1.388vw;
  max-width: 20px;
  height: 40px;
  position: absolute;
  left: -18.75vw;
  margin-left: 26.97vw;
  bottom: 2.08vw;
  background: url(images/common/key_arrow.svg) no-repeat center bottom;
  background-size: contain;
  /* 	border: 1px solid #333; */
  transition: 0.4s ease-in-out;
}
.kv_area .sw01:hover:after {
  animation: key_arrow 2s linear forwards;
}
.kv_area .sw01:active:after {
  animation: key_arrow_a 1s linear forwards;
  transform: scale(1);
}

/*
.kv_area .sw01:hover {
	background: rgba(0,0,0,0.2);
}
*/
@keyframes key_arrow {
  0% {
    left: -18.75vw;
  }
  10% {
    left: -18vw;
  }
  20% {
    left: -18.75vw;
  }
  30% {
    left: -18vw;
  }
  40% {
    left: -18.75vw;
  }
  100% {
    left: -18.75vw;
  }
}
@keyframes key_arrow_a {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.3);
  }
  40% {
    transform: scale(1);
  }
}
@media screen and (max-width: 1200px) {
  .kv02 {
    left: 70.13%;
    margin-left: 22vw;
  }
  .kv.before {
    left: 70.13%;
    margin-left: 22vw;
  }
  .kv.after.pre {
    left: 140.26%;
    margin-left: 22vw;
  }
  .kv_area .sw01 {
    left: 70.13%;
    margin-left: 22vw;
    width: 20%;
  }
  .kv_area .sw01:after {
    left: -22vw;
    margin-left: 26.97vw;
  }
  @keyframes key_arrow {
    0% {
      left: -22vw;
    }
    10% {
      left: -20vw;
    }
    20% {
      left: -22vw;
    }
    30% {
      left: -20vw;
    }
    40% {
      left: -22vw;
    }
    100% {
      left: -22vw;
    }
  }
}
/*----------------------------------------------------

	loading

----------------------------------------------------*/
.loading {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 200;
  pointer-events: none;
  overflow: hidden;
}
.loading.hide {
  display: none;
}
.loading div.cover01 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 60;
  /* 	background: #f9f9f9; */
  transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.loading div.cover01.hide {
  top: -100%;
}

.load_anime {
  position: absolute;
  left: 50%;
  margin-left: -43%;
  top: 150px;
  transition: 0.6s cubic-bezier(0.36, 0, 0.66, -0.56);
  transform: translateY(50px);
}

.home .load_anime {
  left: 50%;
  top: 50%;
  margin-left: -15px;
  margin-top: -15px;
}

.load_anime.hide {
  margin-top: -45px;
  opacity: 0;
}

.loading img {
  width: 30px;
  opacity: 0.3;
  animation: loadspin 0.8s linear infinite;
}

@keyframes loadspin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*loading key visual show*/
.kv_area .kv:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100;
  transition: 1.7s cubic-bezier(0.65, 0, 0.35, 1);
}
.kv_area.show .kv:before {
  width: 0;
}

/*--------------------------------------

	Home

--------------------------------------*/
.home_index {
  display: flex;
  justify-content: space-between;
}
.home_index .title {
  width: 31.25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
.home_index .title h2 {
  text-align: right;
  line-height: 1.3;
  order: 1;
}
.home_index .title .line {
  display: block;
  width: 1px;
  flex: 1;
  order: 2;
  margin: 80px 0;
  overflow: hidden;
  position: relative;
}
.home_index .title .line:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #e92627;
  transition: 2s ease-in-out;
  position: absolute;
  left: 0;
  top: -100%;
}
.home_index .title .line.show:before {
  top: 0;
}
.home_index .btn_circle {
  order: 3;
  margin-bottom: 80px;
}
.home_index .content {
  width: 68.75%;
}
.home_index .content li {
  position: relative;
}
.home_index .content li a {
  display: block;
  position: relative;
  padding: 180px 70px 70px 70px;
  color: #fff;
  overflow: hidden;
}
.home_index .content li:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: solid #fff;
  border-width: 1px 0 0 1px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100;
}
.home_index .content li:nth-child(odd) a .text .sst,
.home_index .content li:nth-child(odd) a .text p {
  text-align: right;
}
.home_index .content li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  transition: 0.6s ease-in-out;
  filter: brightness(95%);
  backface-visibility: hidden;
}
.home_index .content li a:hover:before {
  transform: scale(105%);
  filter: brightness(85%);
}
.home_index .content li a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 0.8s ease-in-out;
}
.home_index .content li.s_print a:before {
  background-image: url(../img/demo/4_1.jpg);
}
.home_index .content li.s_sp a:before {
  background-image: url(../img/demo/4_1.jpg);
}
.home_index .content li.s_design a:before {
  background-image: url(../img/demo/4_1.jpg);
}
.home_index .content li.s_media a:before {
  background-image: url(../img/demo/4_1.jpg);
}
.home_index .content li.s_finance a:before {
  background-image: url(../img/demo/4_1.jpg);
}
.home_index .content li a .sst {
  margin: 0 0 15px 0;
  position: relative;
}
.home_index .content li a p {
  position: relative;
}
.home_index .content li.show a:after {
  width: 0;
}

/*--------------------------------------

	scroll

--------------------------------------*/
.fade {
  transition: 0.8s ease-in-out;
  opacity: 0;
}
.fade.show {
  opacity: 1;
}

/*--------------------------------------

	modal

--------------------------------------*/
.modal_open {
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.modal_bg {
  transition: 0.2s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.9);
  pointer-events: none;
  z-index: 1200;
  opacity: 0;
}
.modal_bg.active {
  opacity: 1;
}

.img_list .child .modal_open .ph {
  transition: 0.2s ease-in-out;
  margin: 0 0 0 0;
}

.modal_open div.img {
  margin: 0 0 20px 0;
}

.modal {
  padding: 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1300;
  overflow: auto;
  pointer-events: none;
  opacity: 0;
  transition: 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-content: center;
  display: flex;
  align-content: center;
  align-items: center;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal2.active {
  opacity: 1;
  pointer-events: auto;
}

.modal_close {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(https://isaka.co.jp/wp/wp-content/themes/isaka/images/close.svg) no-repeat;
  background-size: 18px 18px;
  background-position: right 40px top 40px;
}

.modal_next,
.modal_prev {
  background-repeat: no-repeat;
  background-color: #222;
  background-position: center center;
  background-size: 12px 12px;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  left: 50%;
}

.modal_next {
  background-image: url(https://isaka.co.jp/wp/wp-content/themes/isaka/images/arrow_right.svg);
  margin-left: 300px;
}

.modal_prev {
  background-image: url(https://isaka.co.jp/wp/wp-content/themes/isaka/images/arrow_left.svg);
  margin-left: -360px;
}

.wide_1_3:first-child .modal_prev, .wide_1_3:last-child .modal_next {
  display: none;
}

.modal .window {
  width: 600px;
  padding: 60px 60px 60px 60px;
  background: #fff;
  margin: 0 auto;
  z-index: 1300;
  position: static;
  overflow-y: scroll;
}

/*--------------------------------------

	slider

--------------------------------------*/
.slider_area {
  padding: 0 0 180px 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  justify-content: center;
}

.slider_inner {
  position: relative;
  top: 0;
  left: 50%;
  margin-left: -1110px;
  width: 2220px;
}

.bx-wrapper {
  max-width: 100% !important;
}

.list_slider {
  display: block;
}

.slider_area .list_slider li {
  width: 320px !important;
  margin: 0 60px 0 0;
}
.slider_area .list_slider li .img {
  margin: 0 0 30px 0;
}
.slider_area .list_slider li .img img {
  transition: 0.4s ease-in-out;
}
.slider_area .list_slider li a:hover {
  color: #222;
}
.slider_area .list_slider li .text {
  padding: 0 10px;
}
.slider_area .list_slider li .st {
  margin: 0 0 15px 0;
}
.slider_area .list_slider li .sub {
  display: flex;
  justify-content: space-between;
}

/*--------------------------------------

	伊坂の人

--------------------------------------*/
.home .people_title {
  background: #f1f8f9;
}

.people_title {
  position: relative;
}
.people_title .wide_max {
  padding: 80px 18.27% 80px 18.27%;
}

.home .people_title .wide_max {
  padding-top: 14.44%;
  padding-bottom: 14.44%;
}

.people_title a:hover {
  color: #222;
}
.people_title .img {
  position: relative;
  padding: 40px;
  margin: 0 0 20px 0;
}

.people_title_detail .img:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  transition: 1.2s cubic-bezier(0.61, 1, 0.88, 1);
}
.people_title_detail .img.show:after {
  width: 0;
}

.people_title .cate_title {
  position: absolute;
  right: 17.77%;
  top: 0;
  z-index: 20;
}

.home .people_title .cate_title {
  top: 11.44%;
}

.people_title_detail .cate_title span {
  display: inline-block;
  opacity: 0;
  transition: 0.8s ease-in-out;
  transform: translateY(1.2em);
}
.people_title_detail .cate_title span.show {
  opacity: 1;
  transform: translateY(0);
}

.people_title .title .main {
  margin: 0 0 35px 0;
}

.people_title_detail .title .main {
  font-size: 4.8rem;
}

.people_title .title .sub {
  display: flex;
  align-content: flex-end;
  align-items: flex-end;
}
.people_title .title .sub .name {
  margin: 0 15px 0 0;
}

.content_index .name {
  margin-top: 20px;
}
.content_index .sholder {
  margin: 0 0 0 15px;
}

.people_title .title .sub .sholder {
  margin: 0 0 0 15px;
}

.people_title_detail .title .sub .sholder:after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #e92627;
  margin: 0 0 4px 15px;
}

.people_title .btn {
  display: inline-block;
  position: absolute;
  right: 10.77%;
  bottom: 9.44%;
  z-index: 10;
}

/*--------------------------------------

	下層ページ

--------------------------------------*/
.page_title {
  margin: 40px 0 0 0;
}
.page_title .title {
  margin: 0 0 80px 0;
  position: relative;
  /* 	transform: scaleY(90%); */
  opacity: 0;
}
.page_title .title.show {
  opacity: 1;
}
.page_title .title .line {
  display: block;
  overflow: hidden;
}
.page_title .title .line span {
  display: inline-block;
  transition: 0.8s ease-in-out;
  transform: translateY(1.2em);
}

/*デザイン制作文字間*/
.page-id-27 .page_title .title .line span:nth-child(1) {
  margin-right: -0.03em;
}
.page-id-27 .page_title .title .line span:nth-child(2) {
  margin-right: -0.18em;
}
.page-id-27 .page_title .title .line span:nth-child(3) {
  margin-right: -0.25em;
}
.page-id-27 .page_title .title .line span:nth-child(4) {
  margin-right: -0.02em;
}

/*メディア制作文字間*/
.page-id-33 .page_title .title .line span:nth-child(1) {
  margin-right: -0.12em;
}
.page-id-33 .page_title .title .line span:nth-child(2), .page-id-33 .page_title .title .line span:nth-child(3) {
  margin-right: -0.25em;
}
.page-id-33 .page_title .title .line span:nth-child(4) {
  margin-right: -0.02em;
}

/*金融ソリューション文字間*/
.page-id-29 .page_title .title .line span:nth-child(2) {
  margin-right: -0.05em;
}
.page-id-29 .page_title .title .line span:nth-child(3) {
  margin-right: -0.21em;
}
.page-id-29 .page_title .title .line span:nth-child(4) {
  margin-right: -0.26em;
}
.page-id-29 .page_title .title .line span:nth-child(5) {
  margin-right: -0.17em;
}
.page-id-29 .page_title .title .line span:nth-child(6) {
  margin-right: -0.15em;
}
.page-id-29 .page_title .title .line span:nth-child(7), .page-id-29 .page_title .title .line span:nth-child(8) {
  margin-right: -0.23em;
}
.page-id-29 .page_title .title .line span:nth-child(9) {
  margin-right: -0.06em;
}

.page_title .title .line span.show {
  transform: translateY(0);
}
.page_title .title:before {
  content: "";
  display: block;
  width: 5.5vw;
  height: 1px;
  background: #e92627;
  position: absolute;
  left: -12.4%;
  top: 0.8em;
  transform: scaleX(0);
  transform-origin: left center;
  transition: 0.4s ease-in-out;
}
.page_title.show .title:before {
  transform: scaleX(1);
}
.page_title .eyecatch {
  /* 	padding: 0 25.9% 0 5.5%; */
  padding: 0 8.3%;
  position: relative;
}

.page_title_service .eyecatch {
  padding: 0 16%;
}

.page_title .eyecatch:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  transition: 1.2s cubic-bezier(0.61, 1, 0.88, 1);
}
.page_title .eyecatch.show:after {
  width: 0;
}

.pankuzu {
  margin: 0 0 10px 0;
  transition: 0.6s ease-in-out;
  opacity: 0;
}

.page_title.show .pankuzu {
  opacity: 1;
}

.pankuzu li {
  display: inline-block;
}
.pankuzu li:after {
  content: ">";
  color: #c2cfd1;
  display: inline-block;
  margin: 0 10px;
}

.title_standard {
  font-size: 6rem;
  margin-bottom: 100px;
}

.st_standard {
  font-size: 4.4rem;
  margin-bottom: 70px;
}

.bg_blue .st_standard {
  margin-bottom: 90px;
}

@media screen and (max-width: 980px) {
  .page-id-29 .st_standard br {
    display: none;
  }
}
.st_standard:after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  background: #e92627;
  margin: 40px 0 0 0;
}
.st_standard .sub {
  display: block;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

.post_body .st_standard .sub {
  margin-bottom: 25px;
}
.post_body .wp-block-separator {
  border-color: #ccc;
  border-bottom: none;
  border-left: none;
  border-radius: none;
}

.sst_standard {
  font-size: 3.6rem;
  margin-bottom: 35px;
}

.lead {
  transition: 0.6s ease-in-out;
  opacity: 0;
}
.lead.show {
  opacity: 1;
}
.lead .text {
  font-size: 2rem;
}

.bold {
  font-weight: bold;
}

.bg_blue {
  background: #f1f8f9;
}

.border_bottom {
  border-bottom: 0.6px solid #e2ebec;
  padding-bottom: 4.6%;
  margin-bottom: 60px;
}

.sign {
  text-align: right;
  margin: 40px 0 0 0;
}
.sign .text {
  font-size: 1.6rem;
  display: inline-block;
  vertical-align: middle;
}
.sign .img {
  width: 200px;
  margin-left: 30px;
  vertical-align: middle;
  display: inline-block;
}

.table_standard {
  width: 100%;
  margin-bottom: 30px;
}
.table_standard th {
  width: 24%;
  font-weight: normal;
  padding: 5px 0;
  vertical-align: top;
}
.table_standard td {
  padding: 5px 0;
  vertical-align: top;
}
.table_standard .list {
  padding-left: 1.2em;
}
.table_standard .list .line {
  display: block;
  text-indent: -1.2em;
}

@media screen and (max-width: 1350px) {
  #outline .table_standard td br.only_other {
    display: none;
  }
  #outline .table_standard td br.only_other:after {
    content: "";
    display: inline-block;
    margin-right: -1em;
  }
}
.bn li {
  text-align: center;
  padding: 40px 70px;
}
.bn li .sst {
  margin-bottom: 10px;
}
.bn li a:hover {
  color: #222;
}

/*カテゴリインデックス*/
.content_index li {
  margin: 0 0 30px 0;
}

.page-id-16 .bg_blue .content_index li.index_print,
.page-id-25 .bg_blue .content_index li.index_sp,
.page-id-27 .bg_blue .content_index li.index_design,
.page-id-33 .bg_blue .content_index li.index_media,
.page-id-29 .bg_blue .content_index li.index_finance {
  display: none;
}

.content_index li a {
  color: #222;
}
.content_index li .img {
  position: relative;
  overflow: hidden;
}
.content_index li .img:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  transition: 1s cubic-bezier(0.61, 1, 0.88, 1);
}
.content_index li.show .img:after {
  width: 0;
}
.content_index .sst {
  font-size: 3.6rem;
}
.content_index .content {
  padding: 40px 20px;
  transition: 0.8s ease-in-out;
  opacity: 0;
}
.content_index li.show .content {
  opacity: 1;
}
.content_index .sst {
  margin: 0 0 10px 0;
}
.content_index .text {
  font-size: 2rem;
  margin: 0 0 10px 0;
}
.content_index .link {
  text-align: right;
}
.content_index .link_arrow {
  display: inline-block;
}

/*伊坂の人インデックス*/
.people_index .img {
  padding-bottom: 120px;
  position: relative;
}
.people_index li .img:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  transition: 1s cubic-bezier(0.61, 1, 0.88, 1);
}

.bg_blue .content_index li .img:after,
.bg_blue .people_index li .img:after {
  background: #f1f8f9;
}

.people_index li {
  position: relative;
  margin: 0 0 160px 0;
}
.people_index li.show .img:after {
  width: 0;
}

.bg_blue .people_index li:last-child {
  margin-bottom: 0;
}

.people_index .content {
  padding: 20px;
  align-self: flex-end;
  color: #222;
  transition: 0.6s ease-in-out;
  opacity: 0;
}
.people_index li.show .content {
  opacity: 1;
}
.people_index li:nth-child(even) .img {
  order: 2;
}
.people_index li:nth-child(even) .content {
  order: 1;
}
.people_index .content .num {
  position: absolute;
  right: -50px;
  top: -50px;
  font-size: 32rem;
  line-height: 0.5;
  color: #f1f8f9;
  z-index: 10;
}

.bg_blue .people_index .content .num {
  color: #fff;
}

.people_index li:nth-child(even) .content .num {
  right: auto;
  left: -50px;
}
.people_index .content .sst {
  font-size: 3.6rem;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 20;
}
.people_index .content .name .sholder {
  margin: 0 0 0 15px;
}
.people_index .content .link {
  text-align: right;
}
.people_index .content .link .link_arrow {
  display: inline-block;
}

/*説明コンテンツ*/
.layout_a {
  width: 100%;
}
.layout_a .component {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.layout_a .component .content {
  position: relative;
  z-index: 10;
  align-self: flex-end;
}
.layout_a .component .img {
  align-self: flex-start;
  margin-top: -40px;
}
.layout_a .component:nth-child(odd) .img {
  margin-left: -5.4%;
}
.layout_a .component:nth-child(even) .content {
  align-self: flex-start;
}
.layout_a .component:nth-child(even) .img {
  align-self: flex-end;
  margin-right: -5.4%;
}
.layout_a .component .img .bn {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22.39%;
}
.layout_a .component .st {
  position: relative;
}
.layout_a .component .text {
  font-size: 1.8rem;
  margin-bottom: 160px;
}
.layout_a .component .num {
  position: absolute;
  bottom: 28px;
  font-size: 32rem;
  line-height: 0.5;
  color: #f1f8f9;
}
.layout_a .component:nth-child(odd) .num {
  left: -55.08%;
}
.layout_a .component:nth-child(even) .num {
  right: -55.08%;
}

/*
.layout_a .component .text .bn {
	width: 44.85%;
	display: inline-block;
	float: right;
	margin-top: 120px;
	margin-bottom: -160px;
}
*/
@media screen and (max-width: 1180px) {
  .layout_a .component .num {
    font-size: 24rem;
  }
}
/*説明コンテンツ*/
.layout_b {
  width: 100%;
}
.layout_b .component {
  position: relative;
  display: flex;
}
.layout_b .component:last-child {
  margin-bottom: 120px;
}
.layout_b .component:nth-child(odd) {
  justify-content: flex-end;
}
.layout_b .component:nth-child(even) {
  justify-content: flex-start;
}
.layout_b .component .img {
  position: absolute;
  top: 0;
  width: 38.79%;
}
.layout_b .component:nth-child(odd) .img {
  left: -12.06%;
}
.layout_b .component:nth-child(even) .img {
  right: -12.06%;
}

/*制作例*/
.example {
  margin-top: 120px;
}
.example ul {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.example ul li {
  padding-bottom: 40px;
  margin-bottom: 60px;
  position: relative;
}
.example ul li:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.example ul li:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #e2ebec;
  width: 100%;
}
.example ul li:after {
  background: #e92627;
  width: 20px;
}
.example ul li .title {
  margin: 0 0 35px 0;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
.example ul.main li .title {
  font-size: 1.8rem;
}
.example ul.sub li .title {
  font-size: 1.6rem;
}
.example ul li .title .img {
  width: 60px;
}
.example ul li .text {
  font-size: 1.4rem;
}
.example ul.sub {
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
}
.example ul.sub li {
  margin-right: 6.625%;
}
.example ul.sub li:nth-child(5n) {
  margin-right: 0;
}
.example ul.sub li .title {
  margin: 0;
}

/*タブ*/
.tab {
  display: flex;
  align-content: flex-end;
  align-items: flex-end;
  justify-content: flex-start;
  border-bottom: 1px solid #e2ebec;
  margin-bottom: 90px;
}
.tab li {
  text-align: center;
  width: 25%;
  padding-bottom: 20px;
  margin-bottom: -1px;
  cursor: pointer;
}
.tab li.on {
  border-bottom: 2px solid #e92627;
}

.tab_content {
  display: none;
}
.tab_content.show {
  display: block;
}
.tab_content li {
  margin-bottom: 20px;
}
.tab_content .time {
  display: block;
  color: #a2b3b5;
  font-weight: bold;
  line-height: 0.8;
}
.tab_content .sst {
  padding-bottom: 4px;
  /* 	border-bottom: 1px solid #222; */
  display: inline-block;
  margin-bottom: 20px;
}

/*--------------------------------------

	投稿

--------------------------------------*/
.info_body {
  margin-left: auto;
  margin-right: auto;
  margin-top: 120px;
}
.info_body .post_body {
  padding-bottom: 0;
}
.info_body p {
  font-size: 1.8rem;
}
.info_body .btn_area {
  margin-bottom: 120px;
}

.post_body {
  margin: 0 auto;
  padding-bottom: 120px;
}
.post_body h2 {
  font-size: 3.6rem;
  margin: 70px 0 60px 0;
}
.post_body h2:first-child {
  margin-top: 0;
}
.post_body h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.post_body p {
  margin: 0 0 60px 0;
}
.post_body figure {
  padding: 50px;
  margin: 0 0 60px 0;
}

.post_body_other ul {
  padding: 0 2vw;
  margin: 0 0 60px 0;
}
.post_body_other ul li {
  padding-left: 1.5em;
  text-indent: -1.25em;
}
.post_body_other ul li:before {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  background: #222;
  vertical-align: middle;
  margin-right: 0.6em;
  border-radius: 50%;
}

.page-id-191 .post_body_other ul {
  margin-bottom: 0;
  margin-top: -35px;
}
.page-id-191 .post_body_other ul li {
  text-indent: -1.7em;
}
.page-id-191 .post_body_other ul li:before {
  content: none;
}

/*----------------------------------------------------------------------------------

	contact form

----------------------------------------------------------------------------------*/
.contact_body .lead {
  margin-bottom: 80px;
}

.mw_wp_form {
  margin-bottom: 160px;
}
.mw_wp_form mw_wp_form_input p {
  text-align: center;
}

ul.myform {
  margin-bottom: 55px;
}
ul.myform li {
  padding: 0 0 30px 0;
  display: flex;
  justify-content: space-between;
}

.page-template-page-confirm ul.myform li {
  border-bottom: 1px solid #e2ebec;
  margin-bottom: 30px;
}
.page-template-page-confirm ul.myform li:first-child {
  border-top: 1px solid #e2ebec;
  padding-top: 30px;
}

ul.myform li span {
  display: inline-block;
  vertical-align: top;
}
ul.myform li span.title {
  width: 25%;
  padding: 4px 0;
  font-weight: bold;
  vertical-align: middle;
}
ul.myform li span.icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  background: #e92627;
  padding: 3px 3px 4px 3px;
  border-radius: 3px;
  color: #fff;
  line-height: 1;
  margin-left: 5px;
}
ul.myform li span.form {
  width: 70%;
}

.confirm ul.myform li span.title {
  padding: 0;
}

.contact_input {
  background: #eee;
  border: none;
  font-size: 16px;
  padding: 7px;
  width: 70%;
  border-radius: 3px;
}

.form_content {
  width: 100%;
  display: block;
}

.submit_area {
  text-align: center;
}

.submit {
  background: #e92627;
  color: #fff;
  font-size: 16px;
  width: 320px;
  padding: 20px;
  margin: 0 auto;
  border: none;
  cursor: pointer;
  border: 1px solid #e92627;
  transition: 0.2s ease-in-out;
  border-radius: 10px;
  font-weight: 600;
  border-radius: 50px;
}
.submit:hover {
  background: #fff;
  color: #e92627;
}

.contact_message {
  border: 1px solid #222;
  padding: 30px;
  text-align: center;
}

.contact_back {
  background: #222;
  border: 1px solid #222;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  width: 100px;
  padding: 15px 20px;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  margin: 0 40px;
  font-weight: 600;
  border-radius: 50px;
}
.contact_back:hover {
  background: #fff;
  color: #222;
}

.form_privacy {
  text-align: center;
  margin-bottom: 60px;
}

/*------------------------------------------------------------------------------------------------------------------------------------

	スマホここから

------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 840px) {
  html {
    font-size: 62.5%;
    width: 100%;
  }
  body {
    font-size: 1.4rem;
    min-width: 100%;
    height: 100%;
  }
  html {
    min-width: 100%;
    height: 100%;
  }
  p {
    font-size: 1.4rem;
    text-align: left;
  }
  h1,
  h2,
  h3,
  h4 {
    font-size: 1.6rem;
  }
  .sp_only {
    display: block;
  }
  .sp_only_line {
    display: inline-block;
  }
  .pc_only {
    display: none;
  }
  .gmap {
    padding-top: 150%;
  }
  .link_arrow {
    padding-left: 35px;
  }
  .link_arrow .arrow {
    width: 25px;
  }
  .btn_circle,
  .btn {
    font-size: 1.2rem;
    display: inline-block;
    border: 1px solid #222;
    border-radius: 200px;
    padding: 0.3em 1.5em 0.35em 1.5em;
    position: relative;
    overflow: hidden;
  }
  .btn_circle {
    width: 150px;
    height: 150px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    border: 1px solid #222;
    border-radius: 50%;
  }
  .btn_circle:hover {
    padding-left: 2em;
    padding-right: 2em;
    background: #e92627;
    border-color: #e92627;
    color: #fff !important;
  }
  .btn:hover {
    padding-left: 2em;
    padding-right: 2em;
    background: #e92627;
    border-color: #e92627;
    color: #fff !important;
  }
  .btn_circle:hover {
    padding-left: 0;
    padding-right: 0;
    transform: scale(110%);
    font-size: 1.44rem;
  }
  .btn_area {
    text-align: center;
    margin-top: 8vw;
  }
  .btn_area .btn {
    width: 50vw;
    padding: 2.6vw 5.2vw;
  }
  /*お知らせ*/
  .home_info .st {
    margin-bottom: 6vw;
  }
  .home_info .flex.component .st {
    order: 1;
    align-self: center;
  }
  .home_info .flex.component .flex_end {
    order: 2;
    align-self: center;
    margin-top: -20px;
  }
  .home .list_info {
    order: 3;
    width: 100%;
    margin-bottom: 0;
  }
  .list_info {
    margin-bottom: 16vw;
  }
  .list_info li {
    display: block;
    margin: 0 0 4vw 0;
  }
  .list_info li:last-child {
    margin-bottom: 2vw;
  }
  .list_info .date,
  .list_info .title {
    display: block;
  }
  .list_info .date {
    width: auto;
    font-size: 1.2rem;
  }
  .list_info .title {
    font-size: 1.4rem;
    padding-left: 0;
  }
  .list_info .title .arrow {
    display: none;
  }
  /*--------------------------------------

  	Flex

  --------------------------------------*/
  .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
  }
  .flex_end {
    align-content: flex-end;
    align-items: flex-end;
    align-self: flex-end;
  }
  .flex_center {
    align-content: center;
    align-items: center;
    align-self: center;
  }
  .img_list .child {
    margin-bottom: 8vw;
  }
  .img_list li .img {
    margin: 0 0 3vw 0;
  }
  .img_list li .text {
    padding: 3vw;
  }
  /*文字サイズ*/
  .fs_xs {
    font-size: 1rem;
  }
  .fs_sss,
  .fs_ss {
    font-size: 1.2rem;
  }
  .fs_s,
  .fs_m {
    font-size: 1.4rem;
  }
  .fs_mm,
  .fs_mmm {
    font-size: 1.6rem;
  }
  .fs_l {
    font-size: 1.8rem;
  }
  .fs_ll {
    font-size: 2rem;
  }
  .fs_lll {
    font-size: 2.8rem;
  }
  .fs_xl {
    font-size: 3.2rem;
  }
  .fs_xxl {
    font-size: 3.6rem;
  }
  /*--------------------------------------

  	Wide / layout

  --------------------------------------*/
  .section {
    padding-top: 10.6vw;
    padding-bottom: 10.6vw;
  }
  .component {
    margin-bottom: 8vw;
  }
  .component:last-child {
    margin-bottom: 0;
  }
  .wide_standard {
    width: 100%;
    padding-left: 6.6vw;
    padding-right: 6.6vw;
    margin: 0 auto;
  }
  .wide_standard_sp {
    padding: 0;
  }
  .wide_1_4,
  .wide_1_4_w {
    width: 45.5%;
  }
  .wide_3_4,
  .wide_3_4_w {
    width: 100%;
  }
  .wide_1_3,
  .wide_1_3_w {
    width: 45.5%;
  }
  .wide_2_3,
  .wide_2_3_w,
  .wide_1_2,
  .wide_1_2_w {
    width: 100%;
  }
  .wide_100 {
    width: 100%;
    width: 100%;
  }
  /*--------------------------------------

  	kv

  --------------------------------------*/
  .kv_area {
    /*
    	width: 100%;
    	height: 100%;
    	position: relative;
    */
    padding: 72vw 0 0 0;
    margin-top: -21vw;
    /*  	border: 1px solid #333; */
  }
  .kv_area .copy {
    position: absolute;
    left: auto;
    right: 9vw;
    bottom: auto;
    top: 34vw;
  }
  .kv_area .copy h2 {
    line-height: 1.25;
  }
  .kv_area .copy h2 .sub {
    font-size: 1.2rem;
  }
  .kv_area .copy h2 .sub:before {
    top: -13.3vw;
  }
  .kv_area .copy h2 .main {
    font-size: 3.6rem;
    margin-right: 30px;
  }
  .kv_area .copy.show h2 .sub:before {
    height: 8vw;
  }
  .kv_area .copy .line {
    display: block;
  }
  /*

  .kv_in {
  	position: relative;
  	width: 100%;
  	height: 100%;

  	overflow: hidden;
  }
  */
  .kv {
    width: 80%;
  }
  .kv .text {
    bottom: 0;
    padding: 0 0 30px 6.4vw;
  }
  .kv .text:before {
    width: 3px;
    transition: 0.4s ease-in-out;
  }
  .kv .text .main {
    width: 64vw;
    margin: 0 0 12px 0;
    font-size: 2rem;
  }
  .kv .text .sub {
    width: 64vw;
    font-size: 1.4rem;
  }
  .kv.text_show .text {
    width: 100%;
  }
  .kv.text_show .text:before {
    height: 100%;
  }
  .kv.current {
    width: 80%;
  }
  .kv.before, .kv.after {
    width: 20%;
  }
  /*
  .kv .ph:after {
  	content: '';
  	display: block;
  	width: 100%;
  	height: 100%;
  	position: absolute;
  	left: 0;
  	top: 0;
  	background: #fff;
  	filter: blur(100px);
  	transition: 0.8s ease-in-out;
  	opacity: 0.1;
  }

  .kv.text_show .ph:after {
  	opacity: 1.5;
  	left: 100%;
  }
  */
  .kv01 {
    margin-left: 0;
  }
  .kv.current {
    margin-left: 0;
  }
  .kv.after {
    left: -100%;
  }
  .kv02 {
    left: 80%;
    margin-left: 0;
  }
  .kv.before {
    left: 80%;
    margin-left: 0;
  }
  .kv.after.pre {
    left: 140.26%;
    margin-left: 0;
  }
  .kv_area .sw01 {
    left: 80%;
    margin-left: 0;
    width: 20%;
    height: 100%;
  }
  .kv_area .sw01:after {
    width: 15px;
    height: 30px;
    left: 12vw;
    margin-left: 0;
    bottom: 4.5vw;
  }
  .kv_area .sw01:hover:after {
    animation: key_arrow 2s linear forwards;
  }
  /*
  .kv_area .sw01:hover {
  	background: rgba(0,0,0,0.2);
  }
  */
  @keyframes key_arrow {
    0% {
      left: 12vw;
    }
    10% {
      left: 14vw;
    }
    20% {
      left: 12vw;
    }
    30% {
      left: 14vw;
    }
    40% {
      left: 12vw;
    }
    100% {
      left: 12vw;
    }
  }
  /*----------------------------------------------------

  	loading

  ----------------------------------------------------*/
  .loading img {
    width: 30px;
  }
  .load_anime {
    left: 50%;
    margin-left: 35%;
    top: 18vw;
  }
  .home .load_anime {
    left: 50%;
    top: 50%;
    margin-left: -15px;
    margin-top: -15px;
  }
  .loading img {
    width: 20px;
  }
  /*loading key visual show*/
  /*
  .kv_area .kv:before {
  	content: '';
  	display: block;
  	position: absolute;
  	right: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	background: #fff;
  	z-index: 100;
  	transition: 1.7s cubic-bezier(0.65, 0, 0.35, 1);
  }

  .kv_area.show .kv:before {
  	width: 0;
  }
  */
  /*--------------------------------------

  	header

  --------------------------------------*/
  .toggle {
    display: block;
    position: fixed;
    z-index: 300;
    top: 0;
    right: 0;
    width: 22vw;
    height: 22vw;
    transition: 0.3s ease-in-out;
    opacity: 1;
  }
  .toggle.fix {
    opacity: 1;
  }
  .toggle span {
    display: block;
    position: absolute;
    background: #e92627;
    transition: 0.3s ease-in-out;
    width: 8vw;
    height: 1px;
    left: 7vw;
  }
  .toggle span:first-child {
    top: 9.2vw;
  }
  .toggle span:nth-child(2) {
    top: 12vw;
  }
  .toggle.active span:first-child {
    transform: rotate(30deg);
    top: 10vw;
  }
  .toggle.active span:nth-child(2), .toggle.active span:nth-child(3) {
    transform: rotate(-30deg);
    top: 10vw;
  }
  header {
    padding: 6.6vw 6.6vw;
    font-size: 1.4rem;
    z-index: 30;
  }
  header .logo a {
    padding: 0;
    width: 25.3vw;
  }
  header .navi,
  header .navi_sub {
    padding: 0;
    position: relative;
    z-index: 300;
  }
  header #menu:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    transition: 0.6s ease-in-out;
    opacity: 0;
  }
  header.normal #menu:before {
    opacity: 1;
  }
  header #menu {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    transition: 0.6s ease-in-out;
    pointer-events: none;
    padding: 0;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  header.normal #menu {
    opacity: 1;
    pointer-events: auto;
  }
  header .navi,
  header .navi_sub {
    width: 100%;
    position: static;
    text-align: left;
  }
  header .navi,
  header .navi_sub {
    padding: 0 10vw;
  }
  header .navi {
    height: auto;
    margin-bottom: 5vw;
  }
  header .navi ul {
    display: block;
    width: 100%;
    height: 100%;
    margin-bottom: 40px;
  }
  header .navi ul li {
    width: 100%;
    display: block;
    margin: 0 0 30px 0;
    text-align: center;
  }
  header .navi ul li:first-child {
    width: 100%;
    display: block;
    margin: 0 0 30px 0;
    text-align: center;
  }
  header .navi ul li a {
    width: auto;
    display: inline-block;
    padding: 4px 0.75em 10px 0.75em;
    font-size: 2rem;
  }
  header .navi_contact {
    position: relative;
    z-index: 500;
  }
  header .navi_contact ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 0;
  }
  header .navi_contact li {
    display: inline-block;
    width: 100%;
    margin-bottom: 4.5vw;
  }
  header .navi_contact li a {
    padding: 5vw 0;
    font-size: 1.8rem;
  }
  header .navi ul li .local_area {
    position: static;
    padding: 0 0;
    opacity: 1;
    pointer-events: auto;
  }
  header .navi ul li:hover .local_area {
    padding: auto;
    max-width: auto;
  }
  header .navi ul li .local {
    text-align: center;
    display: block;
    box-shadow: none;
    padding: 0;
    /*
    	display: flex;
    	flex-wrap: wrap;
    	justify-content: space-between;
    */
  }
  header .navi ul li .local:after {
    /*
    	content: '';
    	display: block;
    	width: 30.76%;
    	height: 1px;
    */
    content: none;
  }
  header .navi ul li .local a {
    /* 	display: block; */
    width: auto;
    display: inline-block;
    margin-bottom: 0;
    margin-top: 4vw;
    padding: 0 2vw;
    border-right: 1px solid #e2ebec;
    margin-right: 0 !important;
  }
  header .navi ul li .local a:first-child, header .navi ul li .local a:nth-child(4) {
    border-left: 1px solid #e2ebec;
  }
  header .navi ul li .local a img {
    /* 	filter: brightness(70%); */
    display: none;
  }
  header .navi ul li .local a .text {
    display: block;
    padding: 0;
    font-size: 1.2rem;
  }
  /*
  header .navi ul li .local a:after,
  header .navi ul li .local a:before {
  	content: none;
  }

  header .navi ul li .local a img {
  	display: block;
  }
  */
  /*--------------------------------------

  	footer

  --------------------------------------*/
  footer .sitemap {
    display: flex;
    padding: 10.6vw 6.6vw 10.6vw 6.6vw;
  }
  footer .sitemap ul {
    padding: 0 0 0 0;
    border-left: none;
    font-size: 1.2rem;
  }
  footer .sitemap ul:first-child {
    padding: 0 0 0 4vw;
    border-left: 1px solid #e92627;
  }
  footer .sitemap ul li {
    margin: 0 0 6px 0;
  }
  footer .sitemap ul li:last-child {
    margin-bottom: 0;
  }
  footer .bottom {
    padding: 0 6.6vw 6.6vw 6.6vw;
  }
  footer .bottom .flex {
    /* 	flex-direction: column-reverse; */
  }
  footer .bottom .mark {
    border-bottom: 0.6px solid #e2ebec;
    padding: 0 0 0 0;
    justify-content: space-between;
    /* 	display: block; */
    /*
    	margin-left: auto;
    	margin-right: auto;
    */
  }
  footer .bottom .mark .bn {
    margin-left: 0;
    width: 18%;
    padding-bottom: 6.6vw;
    padding-left: 17px;
    /*
    	width: 100%;
    	padding: 8vw;
    	border-top: 0.6px solid #e2ebec;
    */
  }
  footer .bottom .mark ul {
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    flex-direction: row;
    padding: 0 0 6.6vw 0;
    width: 82%;
  }
  footer .bottom .mark ul li {
    margin: 0 4.4vw 0 0;
    align-self: flex-end;
  }
  footer .bottom .mark ul li:last-child {
    margin-right: 0;
  }
  footer .bottom .mark ul li img {
    vertical-align: bottom;
  }
  footer .bottom .other {
    text-align: left;
    width: 100%;
    padding: 10.6vw 0 0 0;
  }
  footer .bottom .other .logo {
    display: inline-block;
    width: 25.3vw;
    margin: 0 0 15px 0;
  }
  footer .bottom .other .link {
    margin: 0 0 6px 0;
  }
  footer .bottom .other .link a {
    display: inline-block;
    margin: 0 15px 0 0;
  }
  footer .bottom .other .copy {
    text-align: left;
  }
  .pagetop {
    position: absolute;
    right: 4vw;
    bottom: 4vw;
    padding: 24px 0 0 0;
    font-size: 1.1rem;
    background: url(images/common/arrow_top.svg) no-repeat;
    background-position: center top 6px;
    background-size: 9px auto;
  }
  .pagetop:hover {
    background-position: center top 0;
  }
  /*--------------------------------------

  	Home

  --------------------------------------*/
  .home_index {
    display: block;
    justify-content: space-between;
    border-top: 0.6px solid #e2ebec;
  }
  .home_index .title {
    width: 100%;
    display: block;
  }
  .home_index .title h2 {
    padding: 10.6vw 6.6vw 9.6vw 6.6vw;
    text-align: left;
    writing-mode: lr-tb;
  }
  .home_index .title .line {
    display: none;
  }
  .home_index .title .line:before {
    display: none;
  }
  .home_index .btn_circle {
    display: none;
    order: 3;
    margin-bottom: 80px;
  }
  .home_index .content {
    width: 100%;
  }
  .home_index .content li a {
    padding: 25% 0;
  }
  .home_index .content li:after {
    border-width: 1px 0 0 0;
  }
  .home_index .content li a .text {
    position: absolute;
    left: 6.6vw;
    bottom: 6.6vw;
  }
  .home_index .content li:nth-child(odd) a .text {
    left: auto;
    right: 6.6vw;
  }
  .home_index .content li a .sst {
    font-size: 1.8rem;
    margin: 0 0 7px 0;
  }
  .home_index .content li a p {
    font-size: 1.2rem;
  }
  .home_index .content li.show a:after {
    width: 0;
  }
  .home_index .link_sp div {
    padding: 6.6vw 6.6vw 10.6vw 6.6vw;
    text-align: right;
  }
  /*--------------------------------------

  	伊坂の人

  --------------------------------------*/
  .people_title .wide_max {
    padding: 3vw 8.8vw 12vw 8.8vw;
  }
  .home .people_title .wide_max {
    padding-top: 8.8vw;
    padding-bottom: 38vw;
  }
  .people_title a:hover {
    color: #222;
  }
  .people_title .img {
    position: relative;
    padding: 6.6vw;
    margin: 0 0 20px 0;
  }
  .people_title .cate_title {
    position: absolute;
    right: 8.8vw;
    top: 0;
  }
  .home .people_title .cate_title {
    top: 8.8vw;
  }
  .people_title .title {
    width: 100%;
  }
  .people_title_detail .title .main {
    font-size: 2.8rem;
    margin: 0 0 6vw 0;
  }
  .people_title_detail .title .main br {
    display: none;
  }
  .people_title .title .sub {
    justify-content: space-between;
    width: 100%;
  }
  .people_title .title .sub .name {
    margin: 0 15px 0 0;
  }
  .content_index .sholder {
    margin: 0.3em 0 0 0;
    display: block;
  }
  .people_title .title .sub .sholder {
    margin: 0.3em 0 0 0;
    display: block;
  }
  .people_title .btn {
    display: inline-block;
    position: absolute;
    right: auto;
    left: 50%;
    text-align: center;
    bottom: 13.3vw;
    margin-left: -25vw;
    z-index: 10;
    width: 50vw;
    padding: 2.6vw 5.2vw;
  }
  .people_title_detail .title .sub .sholder:after {
    width: 40px;
  }
  /*--------------------------------------

  	下層ページ

  --------------------------------------*/
  .page_title {
    margin: 4vw 0 0 0;
  }
  .page_title .content {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 10vw;
  }
  .page_title .title {
    margin: 0 0 3vw 0;
    font-size: 3.6rem;
  }
  .page_title .title:before {
    width: 6vw;
    left: -9.6%;
  }
  .page_title .eyecatch {
    padding: 0 0;
  }
  .pankuzu {
    font-size: 1.2rem;
    margin: 0 0 0 0;
  }
  .title_standard {
    font-size: 3.6rem;
    margin-bottom: 10.6vw;
  }
  .st_standard {
    font-size: 2.8rem;
    margin-bottom: 8vw;
  }
  .st_standard:after {
    width: 60px;
    margin: 8vw 0 0 0;
  }
  .post_body .st_standard .sub {
    margin-bottom: 4vw;
  }
  .bg_blue .st_standard {
    margin-bottom: 12vw;
  }
  .sst_standard {
    font-size: 2.8rem;
    margin-bottom: 6vw;
  }
  .page-template-page-service_detail .st_standard {
    font-size: 2.2rem;
  }
  .page-template-page-service .sst_standard {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
  .page-template-page-service_detail .st_standard:after {
    margin: 6vw 0 0 0;
  }
  .lead {
    position: relative;
    padding-bottom: 12vw;
  }
  .lead .text {
    font-size: 1.6rem;
  }
  .lead:after {
    content: "";
    display: block;
    width: 115.38%;
    height: 0.6px;
    background: #e2ebec;
    position: absolute;
    bottom: 0;
    left: -6.6vw;
  }
  .border_bottom {
    padding-bottom: 3vw;
    margin-bottom: 7vw;
  }
  .sign {
    text-align: right;
    margin: 6.6vw 0 0 0;
  }
  .sign .text {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 2vw;
  }
  .sign .img {
    width: 120px;
    margin-left: 20px;
  }
  .table_standard {
    margin-bottom: 6.6vw;
    font-size: 1.2rem;
  }
  .table_standard th {
    width: 25%;
    padding: 5px 0;
  }
  .table_standard td {
    padding: 5px 0;
  }
  .bn li {
    padding: 8vw 10vw;
    margin-bottom: 6vw;
  }
  .bn li .sst {
    margin-bottom: 2vw;
  }
  /*カテゴリインデックス*/
  .content_index li {
    margin: 0 0 30px 0;
  }
  .content_index li a {
    color: #222;
  }
  .content_index .img {
    padding: 6.6vw 9.6vw 6.6vw 9.6vw;
  }
  .bg_blue .content_index .img {
    padding-top: 0;
  }
  .content_index .sst {
    font-size: 2.2rem;
  }
  .content_index .content {
    padding: 4vw 0;
  }
  .content_index .sst {
    margin: 0 0 10px 0;
  }
  .content_index .text {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
  }
  .content_index .link_arrow {
    font-size: 1.2rem;
  }
  /*伊坂の人インデックス*/
  .people_index .img {
    padding-bottom: 0;
  }
  .bg_blue .people_index .img {
    padding-top: 0;
  }
  .people_index li {
    margin: 0 0 30px 0;
  }
  .people_index li:last-child {
    margin-bottom: 16vw;
  }
  .bg_blue .people_index li:last-child {
    margin-bottom: 0;
  }
  .people_index .content {
    padding: 0;
    position: relative;
  }
  .people_index li .img {
    padding: 6.6vw 9.6vw 6.6vw 9.6vw;
    margin-bottom: 8vw;
  }
  .people_index li:nth-child(even) .img {
    order: 1;
  }
  .people_index li:nth-child(even) .content {
    order: 2;
  }
  .people_index .content .num {
    position: absolute;
    top: -8vw;
    right: 0;
    left: auto;
    font-size: 8rem;
    z-index: 1;
  }
  .people_index li:nth-child(even) .content .num {
    right: 0;
    left: auto;
  }
  .people_index .content .sst {
    font-size: 2.2rem;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 20;
  }
  .people_index .content .name .sholder {
    margin: 0 0 0 10px;
  }
  .people_index .content .link .link_arrow {
    font-size: 1.2rem;
  }
  /*説明コンテンツ*/
  .layout_a .component {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 8vw;
  }
  .layout_a .component .content {
    position: relative;
    align-self: flex-end;
    margin-bottom: 8vw;
  }
  .layout_a .component .img {
    align-self: flex-start;
    margin-top: 0;
  }
  .layout_a .component:nth-child(odd) .img {
    margin-left: 0;
  }
  .layout_a .component:nth-child(even) .content {
    align-self: flex-start;
  }
  .layout_a .component:nth-child(even) .img {
    align-self: flex-end;
    margin-right: 0;
  }
  .layout_a .component .img .bn {
    display: block;
    position: static;
    width: 50%;
    margin: 2vw auto 0 auto;
  }
  .layout_a .component .st {
    position: relative;
  }
  .layout_a .component .st br {
    display: none;
  }
  .layout_a .component .text {
    font-size: 1.6rem;
    margin-bottom: 6vw;
  }
  .layout_a .component .st span {
    position: relative;
    z-index: 5;
  }
  .layout_a .component .st .num {
    position: absolute;
    top: -6vw;
    right: 0;
    bottom: auto;
    font-size: 8rem;
    font-size: 20vw;
    z-index: -1;
  }
  .layout_a .component:nth-child(odd) .num {
    right: 0;
    left: auto;
  }
  .layout_a .component:nth-child(even) .num {
    right: 0;
  }
  /*説明コンテンツ*/
  .layout_b .component {
    display: block;
  }
  .layout_b .component:last-child {
    margin-bottom: 8vw;
  }
  .layout_b .component .content {
    margin-bottom: 12vw;
  }
  .layout_b .component .img {
    position: static;
    width: 100%;
    margin-bottom: 12vw;
  }
  /*制作例*/
  .example {
    margin-top: 12vw;
    padding-top: 12vw;
    position: relative;
  }
  .example:after {
    content: "";
    display: block;
    width: 115.38%;
    height: 0.6px;
    background: #e2ebec;
    position: absolute;
    top: 0;
    left: -6.6vw;
  }
  .example ul.sub {
    /* 	justify-content: space-between; */
    margin-bottom: 8vw;
  }
  .example ul li {
    width: 100%;
    padding-bottom: 8vw;
    margin-bottom: 10vw;
  }
  .example ul.sub li {
    padding-bottom: 4vw;
    margin-bottom: 6vw;
  }
  .example ul li .title {
    margin: 0 0 6vw 0;
  }
  .example ul.main li .title {
    font-size: 1.8rem;
  }
  .example ul.sub li .title .sst {
    font-size: 1.2rem;
  }
  .example ul li .title .img {
    width: 60px;
  }
  .example ul li .text {
    font-size: 1.3rem;
  }
  .example ul.sub li {
    width: auto;
    margin-right: 0;
    display: inline;
    margin: 0;
    padding-bottom: 0;
  }
  .example ul.sub li .title {
    display: inline;
  }
  .example ul.sub li:after, .example ul.sub li:before {
    content: none;
  }
  .example ul.sub li .sst {
    margin: 0;
    display: inline;
  }
  .example ul.sub li .sst:after {
    content: "／";
    display: inline;
    position: static;
    background: none;
  }
  .example ul.sub li .title {
    margin: 0;
    display: inline;
  }
  .example ul.sub li br {
    display: none;
  }
  /*タブ*/
  .tab {
    margin-bottom: 8vw;
  }
  .tab li {
    width: 25%;
    padding-bottom: 10px;
    font-size: 1.1rem;
  }
  .tab li.on {
    border-bottom: 2px solid #e92627;
  }
  .tab_content {
    display: none;
  }
  .tab_content.show {
    display: block;
  }
  .tab_content li {
    margin-bottom: 2vw;
  }
  .tab_content li .wide_1_4 {
    width: 23%;
  }
  .tab_content li .wide_3_4_w {
    width: 77%;
  }
  .tab_content .time {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .tab_content .sst {
    margin-bottom: 2vw;
    padding-bottom: 2px;
  }
  .page-template-page-recruit .tab_content .sst {
    font-size: 1.4rem;
  }
  .page-template-page-recruit .tab_content .time {
    font-size: 1.6rem;
  }
  /*--------------------------------------

  	投稿

  --------------------------------------*/
  .info_body {
    margin-top: 8vw;
  }
  .info_body p {
    font-size: 1.6rem;
  }
  .info_body .btn_area {
    margin-bottom: 12vw;
  }
  .post_body {
    padding-bottom: 8vw;
  }
  .post_body h2 {
    font-size: 2.4rem;
    margin: 12vw 0 8vw 0;
  }
  .post_body h2 br {
    display: none;
  }
  .post_body h2 br:after {
    content: "";
    display: inline-block;
    margin-left: -0.5em;
  }
  .post_body h2:first-child {
    margin-top: 0;
  }
  .post_body h3 {
    font-size: 1.4rem;
    margin-bottom: 6vw;
    line-height: 1.75;
  }
  .post_body p {
    margin: 0 0 10vw 0;
  }
  .post_body figure {
    padding: 6vw;
    margin: 0 0 10vw 0;
  }
  .post_body_other p ul {
    margin: 0 0 10vw 0;
  }
  .page-id-191 .post_body_other ul {
    margin-bottom: 0;
    margin-top: -6vw;
  }
  /*----------------------------------------------------------------------------------

  	contact form

  ----------------------------------------------------------------------------------*/
  .contact_body .lead {
    margin-bottom: 8vw;
  }
  input.contact_input, input.submit {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    max-width: 100%;
  }
  textarea {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    max-width: 100%;
  }
  .contact_lead {
    margin: 20px 0 30px 0;
  }
  ul.myform {
    margin-bottom: 35px;
    background-image: url(https://isaka.co.jp/wp/wp-content/themes/isaka/images/common/dash_s.svg);
    background-repeat: repeat-x;
    background-size: 5px 2px;
    background-position: left top;
  }
  ul.myform li {
    padding: 0 0 20px 0;
    display: block;
  }
  .page-template-page-confirm ul.myform li {
    margin-bottom: 20px;
  }
  .page-template-page-confirm ul.myform li:first-child {
    padding-top: 0;
    border-top: none;
  }
  ul.myform li .title {
    display: block;
  }
  ul.myform li span.icon, ul.myform li span.mwform-radio-field-text {
    display: inline-block;
  }
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0 !important;
  }
  .mwform-checkbox-field input {
    border: 1px solid #222;
  }
  .mwform-radio-field {
    font-size: 1.4rem;
    padding: 0 0 10px 0;
  }
  .mwform-radio-field input {
    border: 1px solid #222;
  }
  .confirm ul.myform li span.title {
    width: 100%;
    padding: 0 0 10px 0;
  }
  ul.myform li span.title {
    width: 100%;
    padding: 0 0 10px 0;
  }
  ul.myform li span.form {
    width: 100%;
  }
  .contact_input {
    font-size: 1.5rem;
    width: 100%;
  }
  .form_content {
    width: 100%;
    display: block;
  }
  .submit_area {
    text-align: center;
  }
  .submit {
    font-size: 1.5rem;
    width: 100%;
    margin: 0 auto 30px auto;
  }
  .contact_back {
    font-size: 1.5rem;
    width: 100%;
    margin: 0 auto 30px auto;
    background: #222;
    width: 60%;
    padding: 10px;
  }
  .form_privacy {
    text-align: center;
    margin-bottom: 12vw;
  }
  .page-template-page-complete .lead:after {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */