@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
/* Reset
------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
address,
em,
strong,
th {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: left;
}

hr,
/* legend {
  display: none;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

img,
fieldset {
  border: 0;
  -webkit-backface-visibility: hidden;
}

li {
  list-style-type: none;
}

img {
  vertical-align: top;
}

/*IE6*/
* html img {
  vertical-align: bottom;
}
/*IE7*/
*:first-child + html img {
  vertical-align: bottom;
}

a {
  outline: none;
}

/* Fonts
------------------------------------------------------------*/
body {
  font-size: 75%; /* IE */
  font-family: 'Noto Sans JP', sans-serif;
  /*
  font-family: "qMmpS Pro W3","Hiragino Kaku Gothic Pro","CI","Meiryo",verdana,Osaka,"lr oSVbN","MS PGothic",Sans-Serif;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;*/

  -webkit-text-size-adjust: 100%;
}
html>/**/body {
  font-size: 12px; /* Except IE */
}

body .roboto {
  font-family: 'Roboto', sans-serif;
}

/* clearfix
------------------------------------------------------------*/
.cf:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: ' ';
  clear: both;
  height: 0;
}

* html .cf {
  zoom: 1;
} /* IE6 */
*:first-child + html .cf {
  zoom: 1;
} /* IE7 */

.ani_none,
.ani_none > *,
.ani_none:before,
.ani_none:after {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
}

/*------------ 初期設定 ------------*/
p {
  color: #000000;
  line-height: 1.7;
}

/*------------ 全体 ------------*/
html,
body {
  width: 100%;
  overflow-x: hidden;
}

body,
p {
  color: #141414;
}

a {
  color: #141414;
  text-decoration: none;
}

._hover {
  opacity: 1;
  transition: all 0.4s;
}

._hover:hover {
  opacity: 0.7;
}

/*------------ HEADER ------------*/

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

header.top {
  position: absolute;
}

header.top.active {
  position: fixed;
}

header .inner {
  height: 80px;
  transition: all 0.4s;
}

header .inner.active {
  background: rgba(255, 255, 255, 0.8);
}

header h1,
header .header_logo {
  position: absolute;
  left: 40px;
  top: 25px;
}

header nav ul {
  position: absolute;
  right: 40px;
  top: 31px;
  display: flex;
}

header nav ul li {
  margin-right: 42px;
  font-size: 14px;
  position: relative;
}

header nav ul li:last-child {
  margin-right: 0;
}

header nav ul li:before {
  content: '';
  display: block;
  background: url(../../blog/images/common/navi.svg) no-repeat left top;
  background-size: 100% auto;
  width: 12px;
  height: 29px;
  position: absolute;
  right: -27px;
  top: -3px;
}

header nav ul li a {
  display: block;
  position: relative;
}

header nav ul li a.active {
  color: #0f37ff;
}

header nav ul li a.active:after {
  content: '';
  display: block;
  background: #0f37ff;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
}

header nav ul li:last-child:before {
  display: none;
}

.sp {
  display: none;
}

.common_btn {
  display: block;
  border-radius: 4px;
  background: #1d448e;
  position: relative;
  color: #ffffff;
}

.common_btn.y {
  background: #cfb746;
  color: #141414;
}

.common_btn > span {
  position: absolute;
  width: 100%;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  display: block;
  text-align: center;
  z-index: 2;
  margin-top: -4px;
  transition: all 0.4s;
}

.common_btn > span.fuki:before {
  content: '';
  display: block;
  background: url(../../blog/images/common/btn_kv_fuki.png) no-repeat left top;
  background-size: 100% auto;
  width: 99px;
  height: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -42px;
}

.sub_cv .common_btn > span.fuki:before {
  background: url(../../blog/images/common/btn_kv_fuki2.png) no-repeat left top;
  background-size: 100% auto;
}

.common_btn > span > span {
  font-size: 12px;
}

.common_btn:before {
  content: '';
  display: block;
  background: #0f37ff;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -4px;
  border-radius: 4px;
  transition: all 0.4s;
}

.common_btn.y:before {
  background: #f9dc4b;
}

.common_btn:hover:before {
  top: 0;
}

.common_btn:after {
  content: '';
  display: block;
  background: url(../../blog/images/common/icon_arrow_white.svg) no-repeat left top;
  background-size: 100% auto;
  width: 6px;
  height: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -4px;
  transition: all 0.4s;
}

.common_btn.y:after {
  background: url(../../blog/images/common/icon_arrow_black.svg) no-repeat left top;
  background-size: 100% auto;
}

.common_btn:hover span,
.common_btn:hover:after {
  margin-top: 0;
}

.common_inner {
  width: 1000px;
  margin: 0 auto;
}

.common_inner2 {
  width: 1120px;
  margin: 0 auto;
}

.common_inner3 {
  width: 1090px;
  margin: 0 auto;
}

.common_h3 {
  font-size: 30px;
  color: rgb(20, 20, 20);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.common_h3.lh_min {
  line-height: 1.2;
}

.common_h3_2 {
  text-align: left;
}

.common_h3 span,
.common_h2 {
  display: block;
  font-size: 12px;
  color: #78afff;
  font-weight: 400;
  margin-bottom: 23px;
  position: relative;
}
.common_h2 {
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.common_h3_2 span,
.common_h2_2 {
  margin-bottom: 15px;
}

.common_h2_2 {
  text-align: left;
}

.common_h3 span:before,
.common_h3 span:after,
.common_h2:before,
.common_h2:after {
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  position: absolute;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  top: 9px;
  /* margin-left: -81px; */
  background: #78afff;
  left: -66px;
}

.common_h3_2 span:after,
.common_h2_2:after {
  display: none;
}

.common_h3 span:after,
.common_h2:after {
  margin-left: 0;
  /* margin-right: -81px; */
  left: auto;
  /* right: 50%; */
  /* transform: translateX(50%); */
  right: -66px;
}

.common_h3_2 span:before,
.common_h2_2:before {
  transform: none;
  left: 86px;
  margin-left: 0;
}
.common_h2_2:before {
  left: 180px;
}

.common_btn2 {
  display: block;
  margin: 50px auto 0;
  width: 220px;
  height: 41px;
  box-sizing: border-box;
  border: solid 2px #0f37ff;
  border-bottom: solid 3px #0f37ff;
  font-size: 14px;
  color: #0f37ff;
  text-align: center;
  border-radius: 4px;
  padding-top: 8px;
  position: relative;
}

.common_btn2.min {
  margin: 20px 0 0;
}

.common_btn2:before {
  content: '';
  display: block;
  background: url(../../blog/images/common/icon_right_blue2.svg) no-repeat left top;
  background-size: 100% auto;
  width: 6px;
  height: 10px;
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 1px;
}

.common_txt {
  margin-top: 15px;
  font-size: 14px;
  color: rgb(20, 20, 20);
  line-height: 2;
}

.common_txt.center {
  text-align: center;
}

.pnkz ul {
  display: flex;
  position: relative;
}

.pnkz ul li {
  height: 40px;
  background: #393c46;
}

.pnkz ul li a {
  display: inline-block;
  height: 100%;
  position: relative;
  background: #393c46;
  padding: 10px 45px 0 26px;
  font-size: 13px;
  color: #fff;
  box-sizing: border-box;
}

.pnkz ul li a.home {
  width: 132px;
  background: url(../../blog/images/common/icon_home.svg) no-repeat 55px center #393c46;
  background-size: 17px auto;
}

.pnkz ul li a:after {
  content: '';
  display: block;
  background: url(../../blog/images/common/pnkz01.png) no-repeat left top;
  background-size: 100% auto;
  width: 12px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
}

.pnkz ul li:last-child {
  height: 40px;
  box-sizing: border-box;
  padding: 10px 30px 0 20px;
  font-size: 13px;
  position: relative;
  background: #e9ebf1;
}

.pnkz ul li:last-child:after,
.pnkz ul li:last-child:before {
  content: '';
  display: block;
  background: url(../../blog/images/common/pnkz02.png) no-repeat left top;
  background-size: 100% auto;
  width: 12px;
  height: 40px;
  position: absolute;
  left: -12px;
  top: 0;
}

.pnkz ul li:last-child:before {
  background: url(../../blog/images/common/pnkz03.png) no-repeat left top;
  background-size: 100% auto;
  width: 10px;
  left: auto;
  right: -10px;
}

.sub_cv {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #9dc5ff;
  height: 115px;
  z-index: 10;
}

.sub_cv .inner {
  max-width: 1290px;
  margin: 0 auto;
  position: relative;
}

.sub_cv .inner .logo {
  width: 170px;
  position: absolute;
  top: 33px;
  left: 0;
  margin-left: 1.24%;
}

.sub_cv .inner .logo p {
  margin-top: 7px;
  font-size: 12px;
}

.sub_cv .inner .input_area {
  margin-left: 210px;
  padding-top: 33px;
  display: flex;
}

.sub_cv .inner .input_area li {
  font-size: 13px;
  margin-right: 1.831%;
}

.sub_cv .inner .input_area li input[type='text'],
.sub_cv .inner .input_area li input[type='tel'],
.sub_cv .inner .input_area li input[type='email'] {
  width: 100%;
  border-width: 1px;
  border-color: rgb(221, 221, 221);
  border-style: solid;
  border-radius: 4px;
  background-color: rgb(255, 255, 255);
  height: 28px;
  padding: 0 10px;
  margin-top: 3px;
  box-sizing: border-box;
}

.sub_cv .inner .input_area li:nth-child(1),
.sub_cv .inner .input_area li:nth-child(2),
.sub_cv .inner .input_area li:nth-child(3) {
  width: 14.65%;
}
.sub_cv .inner .input_area li:nth-child(4) {
  width: 20.14%;
}

.sub_cv .inner .btn {
  width: 22.57%;
  position: absolute;
  left: calc(71.42% + 75px);
  top: 42px;
}

.sub_cv .inner .btn a {
  width: 225px;
  height: 41px;
}

.sub_cv .inner .btn p {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.2;
}

.sub_cv .inner .btn p a {
  color: #0f37ff;
  text-decoration: underline;
}

.sub_cv .inner .btn p a:hover {
  text-decoration: none;
}

.sub_cv .inner .close {
  position: absolute;
  right: 0;
  top: 10px;
}

.follow_cv {
  position: fixed;
  right: 20px;
  bottom: 75px;
  width: 330px;
  background: #9dc5ff;
  height: 200px;
  border: 5px solid #f5f6fa;
  border-radius: 10px;
  display: none;
}

.follow_btn {
  display: block;
  margin: 9px auto 0;
  width: 250px;
  height: 30px;
  background: #f9dc4b;
  box-sizing: border-box;
  border-bottom: solid 3px #cfb746;
  font-size: 16px;
  font-weight: bold;
  color: #141414;
  text-align: center;
  border-radius: 10px;
  position: relative;
}

.follow_close {
  position: fixed;
  right: 15px;
  bottom: 270px;
  display: none;
}

header .sc_btn {
  display: none;
}

header .sc_btn ul {
  position: absolute;
  width: 320px;
  right: 40px;
  top: 20px;
  display: flex;
  justify-content: space-between;
}

header .sc_btn ul li {
  width: 155px;
  margin: 0;
}

header .sc_btn ul li a {
  height: 42px;
}

.page_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  display: none;
}

.page_top.top {
  bottom: 120px;
}

@media screen and (max-width: 768px) {
  img {
    width: 100%;
    height: auto;
  }
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  body,
  html {
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
  }

  #btn_menu {
    position: absolute;
    top: 6.6vw;
    right: 6.6vw;
    width: 8vw;
    height: 5.6vw;
    display: block;
    cursor: pointer;
    z-index: 11;
  }

  #btn_menu.active {
    position: fixed;
  }

  #btn_menu span {
    display: block;
    background: #141414;
    width: 100%;
    height: 0.4vw;
    position: absolute;
    right: 0%;
    transition: all 0.4s;
  }

  #btn_menu.active span {
    background: #fff;
  }

  #btn_menu span:first-child {
    top: 0;
  }
  #btn_menu span:nth-child(2) {
    width: 6vw;
    top: 50%;
    transform: translateY(-50%);
  }
  #btn_menu span:last-child {
    width: 4vw;
    bottom: 0;
  }
  #btn_menu.active span:first-child {
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
  }

  #btn_menu.active span:nth-child(2) {
    opacity: 0;
  }
  #btn_menu.active span:last-child {
    width: 100%;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

  header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
  }

  header .inner {
    height: 19.6vw;
  }

  header h1,
  header .header_logo {
    position: absolute;
    left: 5.3vw;
    top: 6.6vw;
    width: 29.3vw;
  }

  header nav > ul {
    width: 66.6vw;
    position: fixed;
    right: 0px;
    top: 0;
    display: block;
    padding: 24.6vw 0 0;
    box-sizing: border-box;
    height: 100vh;
    z-index: 2;
    background: #9dc5ff;
    transition: all 0.4s;
    right: -66.6vw;
  }

  header nav > ul.active {
    right: 0;
  }

  header nav ul li {
    text-align: center;
    margin-right: 0;
    font-size: 4.26vw;
    text-align: center;
    font-weight: 700;
    margin: 0 0 7.3vw;
  }

  header nav ul li:last-child {
    margin-right: 0;
  }

  header nav ul li:before {
    content: '';
    display: none;
  }

  header nav ul li a {
    display: block;
    position: relative;
  }

  header nav ul li a.active {
    color: #0f37ff;
  }

  header nav ul li a.active:after {
    content: '';
    display: none;
  }

  header nav ul li:last-child:before {
    display: none;
  }

  header nav ul li > ul.sp {
    display: flex;
    justify-content: center;
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    padding-top: 13.3vw;
  }

  header nav ul li > ul.sp li {
    width: 8vw;
    margin-right: 5.3vw;
  }

  header nav ul li > ul.sp li:last-child {
    /*width:9.06vw;*/
    margin-right: 0;
  }

  header .sp_header_btn {
    position: absolute;
    width: 30.6vw;
    top: 2.93vw;
    left: 50.13vw;
    display: flex;
    justify-content: space-between;
  }

  header .inner.active .sp_header_btn {
    left: auto;
    right: 5vw;
  }

  header.top .sp_header_btn_ov {
    display: none;
  }

  header .sp_header_btn li {
    width: 13.2vw;
  }

  header .sp_header_btn li:last-child {
    width: 15.06vw;
  }

  .common_btn {
    border-radius: 1.06vw;
  }

  .common_btn > span {
    font-size: 3.73vw;
    margin-top: -0.53vw;
    font-weight: normal;
  }

  .common_btn > span.fuki:before {
    width: 30vw;
    height: 12vw;
    top: -12vw;
  }

  .common_btn > span > span {
    font-size: 3.2vw;
  }

  .common_btn:before {
    top: -0.53vw;
    border-radius: 1.06vw;
  }

  .common_btn:after {
    width: 1.6vw;
    height: 2.6vw;
    right: 5.3vw;
    margin-top: -0;
  }

  .common_inner {
    width: 100%;
    margin: 0 auto;
  }

  .common_inner2 {
    width: 100%;
    margin: 0 auto;
  }
  
  .common_inner3 {
    width: 90%;
    margin: 0 auto;
  }

  .common_h3 {
    /*font-size: 5.3vw;*/
    font-size: 6.6vw;
    color: rgb(20, 20, 20);
  }

  .common_h3_2 {
    text-align: left;
  }
  .common_h3 span,
  .common_h2 {
    display: block;
    font-size: 3.2vw;
    margin-bottom: 4vw;
  }
  .common_h3_2 span,
  .common_h2_2 {
    margin-bottom: 4vw;
  }

  .common_h3 span:before,
  .common_h3 span:after,
  .common_h2:before,
  .common_h2:after {
    width: 10.6vw;
    height: 0.26vw;
    top: 2.3vw;
    /* margin-left: -16.6vw; */
    left: -14.87vw;
  }

  .common_h3_2 span:after,
  .common_h2_2:after {
    display: none;
  }

  .common_h3 span:after,
  .common_h2:after {
    /* margin-left: 0; */
    /* margin-right: -16.6vw; */
    left: auto;
    right: -15vw;
  }

  .common_h3_2 span:before,
  .common_h2_2:before {
    transform: none;
    left: 22.6vw;
    margin-left: 0;
  }
  .common_h2_2:before {
    left: 48.6vw;
  }

  .common_btn2 {
    display: block;
    margin: 10.3vw auto 0;
    width: 78.6vw;
    height: 10.6vw;
    border: solid 0.53vw #0f37ff;
    border-bottom: solid 0.8vw #0f37ff;
    font-size: 3.73vw;
    border-radius: 1.6vw;
    padding-top: 1.8vw;
  }

  .common_btn2.min {
    margin: 20px 0 0;
  }

  .common_btn2:before {
    width: 1.6vw;
    height: 2.6vw;
    position: absolute;
    right: 5.3vw;
    margin-top: 0.3vw;
  }

  .common_txt {
    margin-top: 5.3vw;
    font-size: 3.73vw;
    line-height: 1.5;
  }

  .pnkz ul {
    display: flex;
    position: relative;
    height: 8vw;
    overflow: hidden;
  }

  .pnkz ul li {
    height: 8vw;
  }

  .pnkz ul li a {
    display: block;
    height: 100%;
    position: relative;
    background: #393c46;
    padding: 2vw 5.3vw 0 4vw;
    font-size: 2.8vw;
    color: #fff;
    box-sizing: border-box;
    position: relative;
  }

  .pnkz ul li a.home {
    width: 14vw;
    background: url(../../blog/images/common/icon_home.svg) no-repeat 5.3vw center
      #393c46;
    background-size: 3.46vw auto;
  }

  .pnkz ul li a:after {
    content: '';
    display: block;
    background: url(../../blog/images/common/pnkz01.png) no-repeat left top;
    background-size: auto 100%;
    width: 4vw;
    height: 8vw;
    position: absolute;
    right: -1vw;
    top: 0;
  }

  .pnkz ul li:nth-last-child(2) a:after {
    display: none;
  }

  .pnkz ul li:last-child {
    height: 8vw;
    box-sizing: border-box;
    padding: 2vw 4.3vw 0 4vw;
    font-size: 2.8vw;
    position: relative;
    background: #e9ebf1;
    left: -1vw;
  }

  .pnkz ul li:last-child:after,
  .pnkz ul li:last-child:before {
    content: '';
    display: block;
    background: url(../../blog/images/common/pnkz02.png) no-repeat left top;
    background-size: auto 100%;
    width: 4vw;
    height: 8vw;
    position: absolute;
    left: -2.2vw;
    top: 0;
  }

  .pnkz ul li:last-child:before {
    background: url(../../blog/images/common/pnkz03.png) no-repeat left top;
    background-size: auto 100%;
    width: 4vw;
    height: 8vw;
    left: auto;
    right: -3vw;
  }

  .sub_cv {
    height: 16.6vw;
    z-index: 10;
  }

  .sub_cv .inner {
    max-width: 100%;
  }

  .sub_cv .inner .logo {
    display: none;
  }

  .sub_cv .inner .input_area {
    display: none;
  }

  .sub_cv .inner .btn {
    width: 78.6vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2.6vw;
  }

  .sub_cv .inner .btn a {
    width: 100%;
    height: 11.46vw;
  }

  .sub_cv .inner .btn p {
    display: none;
  }
  .sub_cv .inner .close {
    display: none;
    position: absolute;
    right: 0;
    top: 10px;
  }

  .page_top {
    width: 8vw;
    right: 3vw;
    bottom: 15vw;
  }

  .page_top.top {
    bottom: 18vw;
  }
}

/*------------ NAVI ------------*/

/*------------ TOP ------------*/

/*------------ FOOTER ------------*/

footer {
  background: #23252b;
  padding: 35px 0 10px;
}

footer .inner {
  width: 1170px;
  margin: 0 auto;
  position: relative;
}

footer .inner .logo {
  position: absolute;
  left: 68px;
  top: 20px;
}

footer .inner .logo.rev {
  position: relative;
  margin-bottom: 40px;
}

footer .inner .logo ul {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

footer .inner .logo ul li {
  margin-right: 20px;
}

footer .inner .logo ul li:last-child {
  margin-right: 0;
}

footer .inner .navi {
  margin-left: 360px;
  display: flex;
}

footer .inner .navi ul:nth-child(1),
footer .inner .navi ul:nth-child(2) {
  margin-right: 120px;
}

footer .inner .navi ul li {
  margin-bottom: 25px;
}

footer .inner .navi ul li:last-child {
  margin-bottom: 0;
}

footer .inner .navi ul li a {
  font-size: 14px;
  color: #ffffff;
  display: inline-block;
  position: relative;
}

footer .inner .navi ul li a.blank:before {
  content: '';
  display: block;
  background: url(../../blog/images/common/icon_blank.svg) no-repeat left top;
  background-size: 100% auto;
  width: 12px;
  height: 12px;
  position: absolute;
  right: -17px;
  top: 5px;
}

footer small {
  display: block;
  text-align: right;
  margin-top: 10px;
  font-size: 10px;
  color: #fff;
}

.mt0 {
  margin-top: 0 !important;
}

@media screen and (min-width: 768px) {
  footer.thanks {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  body.thanks {
    /*min-height:600px;*/
  }
}

@media screen and (max-width: 768px) {
  footer {
    padding: 10vw 0 5.3vw;
  }

  footer .inner {
    width: 78.6vw;
    position: relative;
  }

  footer .inner .logo {
    position: absolute;
    left: 0;
    top: 94.3vw;
    width: 100%;
  }

  footer .inner .logo.rev {
    position: relative;
    top: auto;
    margin-bottom: 5.3vw;
  }

  footer .inner .logo img {
    width: 35.73vw;
    display: block;
    margin: 0 auto;
  }

  footer .inner .logo ul {
    margin: 7.3vw auto 0;
    width: 36.53vw;
  }

  footer .inner .logo ul li {
    width: 8vw;
    margin-right: 5.3vw;
  }

  footer .inner .logo ul li img {
    width: 100%;
    height: auto;
  }

  footer .inner .logo ul li:last-child {
    /*width:9.06vw;*/
  }

  footer .inner .navi {
    margin-left: 0px;
    display: flex;
    justify-content: space-between;
  }

  footer .inner .navi ul:nth-child(1),
  footer .inner .navi ul:nth-child(2) {
    margin-right: 0px;
  }

  footer .inner .navi ul li {
    margin-bottom: 7.3vw;
  }

  footer .inner .navi ul li:last-child {
    margin-bottom: 0;
  }

  footer .inner .navi ul li a {
    font-size: 3.46vw;
  }

  footer .inner .navi ul li a.blank:before {
    width: 2.53vw;
    height: 2.53vw;
    right: -4.8vw;
    top: 1.5vw;
  }

  footer small {
    text-align: center;
    margin-top: 57.3vw;
    font-size: 2.6vw;
  }
  footer.thanks {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .pnkz ul.news li:nth-child(2) {
    width: 35vw;
  }

  .pnkz ul.news li:nth-child(4) {
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }

  .pnkz.news_detail {
    width: 100%;
    overflow-x: scroll;
  }

  .pnkz.news_detail ul.news {
    width: 165vw;
  }

  .pnkz.news_detail ul.news li {
    vertical-align: top;
  }

  .pnkz.news_detail ul.news li:nth-child(1) {
    width: 15vw;
  }

  .pnkz.news_detail ul.news li:nth-child(2) {
    width: 23vw;
  }

  .pnkz.news_detail ul.news li:nth-child(3) {
    width: 36vw;
    display: block;
  }

  .pnkz.news_detail ul.news li:nth-child(4) {
    width: 91vw;
    justify-content: flex-start;
  }
}

/*-------- text_right --------*/
.t_right {
  text-align: right;
}

/*-------- text_left --------*/
.t_left {
  text-align: left;
}

/*-------- center --------*/
.t_center {
  text-align: center;
}

/*-------- left --------*/
.left {
  float: left;
}

/*-------- right --------*/
.right {
  float: right;
}

/*-------- ClearBoth --------*/
.cb {
  clear: both;
}

/*-------- COLOR --------*/

.red {
  color: #ff0000;
}

.orange {
  color: #ff6600;
}

.blue {
  color: #0097b2;
}

/*-------- FONT --------*/

.bold {
  font-weight: 700;
}

.f10 {
  font-size: 10px;
}

.f14 {
  font-size: 14px;
}

/*-------- WIDTH --------*/

.w149 {
  width: 149px;
}

.w180 {
  width: 180px;
}

.w287 {
  width: 287px;
}

.w380 {
  width: 380px;
}

.w304 {
  width: 304px;
}

/*-------- HEIGHT --------*/

.h350 {
  height: 350px;
}

.h375 {
  height: 375px;
}

.h500 {
  height: 420px;
}

.h600 {
  height: 470px;
}

/*-------- MARGIN --------*/

.ml3 {
  margin: 0 0 0 3px;
}

.ml10 {
  margin: 0 0 0 10px;
}

.ml30 {
  margin: 0 0 0 30px;
}

.ml40 {
  margin: 0 0 0 40px;
}

.ml60 {
  margin: 0 0 0 60px;
}

.ml70 {
  margin: 0 0 0 70px;
}

.mb10 {
  margin: 0 0 10px 0;
}

.mb15 {
  margin: 0 0 15px 0;
}

.mt3 {
  margin: 3px 0 0 0;
}

.mt10 {
  margin: 10px 0 0 0;
}

.mt20 {
  margin: 20px 0 0 0;
}

.mt30 {
  margin: 30px 0 0 0;
}

/*-------- PADDING --------*/

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt60 {
  padding-top: 60px;
}

.pl10 {
  padding-left: 10px;
}

.pl12 {
  padding-left: 12px;
}

.pl15 {
  padding-left: 15px;
}

.pl20 {
  padding-left: 20px;
}

.pl30 {
  padding-left: 30px;
}

.pl40 {
  padding-left: 40px;
}

.pl50 {
  padding-left: 50px;
}

.pl60 {
  padding-left: 60px;
}

.pl70 {
  padding-left: 70px;
}

.pl80 {
  padding-left: 80px;
}

.pl100 {
  padding-left: 100px;
}

.pr100 {
  padding-right: 100px;
}

.pb20 {
  padding-bottom: 20px;
}

/*-------- COMMON --------*/

.pic {
  padding: 2px;
  display: block;
  border: 1px solid #cccccc;
}

.hidden {
  overflow: hidden;
}

.abs {
  position: absolute;
}

.ondes {
  color: #999999;
}

.op0 {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}

.op0.active {
  opacity: 1;
  transform: translateX(0px);
}

/* 202108 */

.sub_cv .inner .logo {
  width: 250px;
  position: absolute;
  top: 33px;
  left: 0;
  margin-left: 1.24%;
}

.sub_cv .inner .input_area {
  margin-left: 270px;
  padding-top: 33px;
}

.sub_cv .inner .btn {
  width: 22.57%;
  position: absolute;
  left: calc(71.42% + 75px);
  top: 42px;
}

.sub_cv .inner .input_area li:nth-child(1),
.sub_cv .inner .input_area li:nth-child(2),
.sub_cv .inner .input_area li:nth-child(3) {
  width: 14.65%;
}
.sub_cv .inner .input_area li:nth-child(4) {
  width: 18.14%;
}

.sub_cv .inner .logo p {
  margin-top: 7px;
  font-size: 16px;
}

.sub_cv {
  display: none;
}

@media screen and (max-width: 768px) {
  .sub_cv {
    height: 16.6vw;
    z-index: 10;
  }

  .sub_cv .inner {
    max-width: 100%;
  }

  .sub_cv .inner .btn {
    width: 78.6vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2.6vw;
  }
}

/* /202108 */

.common_secttl {
  font-size: 30px;
  color: rgb(20, 20, 20);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.common_secttl.lh_min {
  line-height: 1.2;
}

.common_secttl_2 {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .common_secttl {
    /*font-size: 5.3vw;*/
    font-size: 6.6vw;
    color: rgb(20, 20, 20);
  }

  .common_secttl_2 {
    text-align: left;
  }
}

.banner_wrapper {
  position: relative;
  display: block;
  width: 100%;
}

.banner_wrapper img {
  width: 100%;
  height: auto;
}

.banner_wrapper {
  position: relative;
  display: block;
  width: 100%;
}

.absolute_btn_wrapper {
  position: absolute;
  top: 57%;
  left: 32.3%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 625px;
  z-index: 2;
}

.absolute_btn_wrapper .banner_custom_btn {
  background: #072C79 !important;
  color: #ffffff !important;
  font-size: 23px !important;
  padding: 19px 0;
}

.absolute_btn_wrapper .banner_custom_btn::before {
  background: #043CAD !important;
}

@media screen and (max-width: 768px) {
  .absolute_btn_wrapper {
    top: 75%;
    left: 50%;
    max-width: 90%;
  }

  .absolute_btn_wrapper .banner_custom_btn {
    font-size: 18px !important; 
    padding: 14px 0; 
  }
}