@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,600,900&subset=japanese");
/*****************************************
common
*****************************************/
* {
  box-sizing: border-box;
  font-size: 100%;
  letter-spacing: 0;
  line-height: 1;
}

body {
  font-family: "Hiragino Kaku Gothic", "ヒラギノ角ゴ ProN", Meiryo, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  color: #1a1a1a;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 599px) {
  img {
    -webkit-backface-visibility: hidden;
  }
}

.cf::after {
  content: "";
  display: table;
  clear: both;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

@media (max-width: 599px) {
  #wrapper {
    min-width: auto;
  }
}

.container {
  position: relative;
  margin: auto;
  max-width: 1030px;
}

@media screen and (min-width: 600px) and (max-width: 1000px) {
  .container {
    padding: 0 3%;
  }
}

@media (max-width: 599px) {
  .container {
    width: calc(100% - (43/375*100vw));
  }
}

main {
  padding-top: 90px;
}

@media (max-width: 799px) {
  main {
    padding-top: 53px;
  }
}

@media (max-width: 599px) {
  main {
    padding-top: calc(53 / 375 * 100vw);
  }
}

@media (max-width: 599px) {
  img {
    width: 100%;
  }
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 599px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

/*****************************************
parallax
*****************************************/
.sa {
  position: relative;
  transition: all 1s ease;
}

.sa::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  background: #fff;
  width: 100%;
  height: 100%;
  transform: translate(0, 0);
  transition: all 1s ease;
}

.sa.show {
  transform: none;
}

.sa.show::after {
  transform: translate(100%, 0);
  transition: all 1s ease;
}

.sa--lr {
  transform: translate(-60px, 0);
}

.sa--rl {
  transform: translate(60px, 0);
}

.sa--up {
  transform: translate(0, 60px);
}

.sa--down {
  transform: translate(0, -60px);
}

.sa--scaleUp {
  transform: scale(0.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

/*****************************************
header
*****************************************/
header {
  background: #fff;
  width: 100%;
  z-index: 10;
  position: fixed;
}

.header_container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 90px;
}

@media (max-width: 799px) {
  .header_container {
    height: 53px;
  }
}

@media (max-width: 599px) {
  .header_container {
    height: calc(53 / 375 * 100vw);
  }
}

.header_logo {
  margin: 0 35px;
  padding: 10px 0;
  max-width: 352px;
}

@media (max-width: 799px) {
  .header_logo {
    height: 100%;
  }
}

@media (max-width: 599px) {
  .header_logo {
    margin: 0 13px;
    width: calc(202 / 375 * 100vw);
  }
}

.header_navi_pc {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-end;
  margin-left: auto;
  max-width: 768px;
  width: 100%;
}

@media (max-width: 1280px) {
  .header_navi_pc {
    display: none;
  }
}

.header_navi_pc .header_navi_block a {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  outline: none;
  white-space: nowrap;
}

.header_navi_pc .header_navi_block a:visited {
  color: #000000;
}

.header_navi_pc .header_navi_btn {
  margin: 5px 15px 5px 5px;
  height: 32px;
  flex: none;
}

.link_instagram {
  margin: 0;
  width: 7px;
  height: 7px;
  flex: none;
}

@media (max-width: 1280px) {
  .link_instagram {
    margin-left: auto;
  }
}

@media (max-width: 799px) {
  .link_instagram {
    margin: 0 17px 0 auto;
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 599px) {
  .link_instagram {
    margin: 0 9px 0 auto;
    width: calc(25 / 375 * 100vw);
    height: calc(25 / 375 * 100vw);
  }
}

.header_btn_entry {
  display: flex;
  width: 156px;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #cc0000;
  flex: none;
  opacity: 1;
  transition: all 0.3s;
}

.header_btn_entry:hover {
  opacity: 0.8;
}

@media (max-width: 799px) {
  .header_btn_entry {
    width: 56px;
  }
}

@media (max-width: 599px) {
  .header_btn_entry {
    width: calc(56 / 375 * 100vw);
  }
}

@media (max-width: 799px) {
  .header_btn_entry img {
    width: 41px;
  }
}

@media (max-width: 599px) {
  .header_btn_entry img {
    width: calc(41 / 375 * 100vw);
  }
}

.btn_nav {
  position: relative;
  display: block;
  width: 100px;
  height: 100%;
  background: #666666;
  flex: none;
}

@media (max-width: 799px) {
  .btn_nav {
    width: 51px;
    background: #ededed;
  }
}

@media (max-width: 599px) {
  .btn_nav {
    width: calc(51 / 375 * 100vw);
  }
}

.btn_nav span {
  display: inline-block;
  width: 37px;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  background: #fff;
  transition: 0.3s;
}

@media (max-width: 799px) {
  .btn_nav span {
    background: #000000;
    width: 25px;
  }
}

.btn_nav span:first-of-type {
  top: 30px;
  bottom: auto;
  margin: auto;
  left: 0;
  right: 0;
}

@media (max-width: 799px) {
  .btn_nav span:first-of-type {
    top: 18px;
  }
}

@media (max-width: 599px) {
  .btn_nav span:first-of-type {
    top: calc(18 / 375 * 100vw);
  }
}

.btn_nav span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}

.btn_nav span:last-of-type {
  top: auto;
  bottom: 30px;
}

@media (max-width: 799px) {
  .btn_nav span:last-of-type {
    bottom: 18px;
  }
}

@media (max-width: 599px) {
  .btn_nav span:last-of-type {
    bottom: calc(18 / 375 * 100vw);
  }
}

@media (max-width: 599px) {
  .btn_nav.open span {
    width: calc(28 / 375 * 100vw);
  }
}

.btn_nav.open span:first-of-type {
  top: 43px;
  bottom: auto;
  margin: auto;
  left: 0;
  right: 0;
  transform: rotate(45deg);
}

@media (max-width: 799px) {
  .btn_nav.open span:first-of-type {
    top: 27px;
  }
}

@media (max-width: 599px) {
  .btn_nav.open span:first-of-type {
    top: calc(26 / 375 * 100vw);
  }
}

.btn_nav.open span:nth-of-type(2) {
  display: none;
}

.btn_nav.open span:last-of-type {
  top: auto;
  bottom: 43px;
  transform: rotate(-45deg);
}

@media (max-width: 799px) {
  .btn_nav.open span:last-of-type {
    bottom: 25px;
  }
}

@media (max-width: 599px) {
  .btn_nav.open span:last-of-type {
    bottom: calc(26 / 375 * 100vw);
  }
}

.header_navi {
  position: absolute;
  display: flex;
  flex-flow: column;
  top: 87px;
  right: -566px;
  width: 566px;
  padding: 0px 20px 0px 45px;
  background: rgba(255, 255, 255, 0.9);
  transition: 0.4s ease-out;
  overflow: scroll;
  height: calc(100vh - 87px);
  z-index: 10;
}

@media (max-width: 799px) {
  .header_navi {
    position: fixed;
    right: -100%;
    top: 53px;
    padding: 14px 6%;
    width: 100%;
    height: calc(100% - 53px);
  }
}

@media (max-width: 599px) {
  .header_navi {
    top: calc(53 / 375 * 100vw);
  }
}

.header_navi.open {
  right: 0;
}

.header_navi .header_navi_block > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 33px;
  margin: auto;
  width: 10px;
  height: 13px;
  background: url(/recruit/assets/img/common/icon_arwB.svg) center/100% 100% no-repeat;
}

@media (max-width: 799px) {
  .header_navi .header_navi_block > a::before {
    right: 22px;
    width: 14px;
  }
}

.header_navi .header_navi_block.hasMenu > a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 20px;
  height: 2px;
  background: #000;
}

@media (max-width: 799px) {
  .header_navi .header_navi_block.hasMenu > a::before {
    right: 22px;
    width: 14px;
  }
}

.header_navi .header_navi_block.hasMenu > a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 20px;
  height: 2px;
  background: #000;
  transform: rotate(90deg);
  transition: 0.3s;
}

@media (max-width: 799px) {
  .header_navi .header_navi_block.hasMenu > a::after {
    right: 22px;
    width: 14px;
  }
}

.header_navi .header_navi_block.hasMenu > a.open::after {
  transform: rotate(0);
}

.header_navi .header_navi_block .header_navi_block_list {
  display: none;
  padding-left: 30px;
}

@media (max-width: 799px) {
  .header_navi .header_navi_block .header_navi_block_list {
    padding-left: 15px;
  }
}

.header_navi .header_navi_block .header_navi_block_list li:not(:last-of-type) {
  border-bottom: 1px solid #bababa;
}

@media (max-width: 799px) {
  .header_navi .header_navi_block .header_navi_block_list li > a {
    padding-left: 15px;
  }
}

.header_navi .header_navi_block .header_navi_block_list li > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 13px;
  background: url(/recruit/assets/img/common/icon_arwR.svg) center/100% 100% no-repeat;
}

@media (max-width: 799px) {
  .header_navi .header_navi_block .header_navi_block_list li > a::before {
    left: 0;
    width: 6px;
    height: 10px;
  }
}

.header_navi .header_navi_block:not(:last-of-type) {
  border-bottom: 1px solid #bababa;
}

.header_navi .header_navi_block a {
  position: relative;
  display: flex;
  padding: 17px;
  width: 100%;
  font-size: 17px;
  color: #000;
  outline: none;
  line-height: 2;
}

@media (max-width: 799px) {
  .header_navi .header_navi_block a {
    padding: 11px 13px;
    font-size: 15px;
  }
}

@media (max-width: 599px) {
  .header_navi .header_navi_block a {
    font-size: calc(15/375*100vw);
  }
}

/*****************************************
parts
*****************************************/
.s_content_title {
  position: relative;
}

.s_content_title .container {
  position: static;
  max-width: 1136px;
}

@media (max-width: 799px) {
  .s_content_title .container .title1 {
    height: 270px;
  }
}

@media (max-width: 599px) {
  .s_content_title .container .title1 {
    margin: auto;
    height: auto;
    min-height: 138px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .s_content_title .container h1.title1 {
    display: flex;
    justify-content: center;
    height: 138px;
  }
}

h1.title1 {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 210px;
  background: #fff;
}

@media (max-width: 599px) {
  h1.title1 {
    height: 138px;
  }
}

h1.title1 .en {
  margin-bottom: 11px;
  color: #cc0000;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}

@media (max-width: 599px) {
  h1.title1 .en {
    margin-bottom: 6px;
    font-size: 16px;
  }
}

h1.title1 .jp {
  color: #000;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

@media (max-width: 599px) {
  h1.title1 .jp {
    font-size: calc(22 / 375 * 100vw);
  }
}

h1.title1 .sub {
  position: absolute;
  top: 58px;
  right: 0;
  width: 100%;
  max-width: 543px;
  text-align: left;
  padding-bottom: 8px;
  padding-left: 16px;
  line-height: 1.3;
  border-bottom: 1px solid #000000;
  letter-spacing: 0.3em;
  font-size: 22px;
}

@media (max-width: 599px) {
  h1.title1 .sub {
    padding-right: 8px;
    top: 20px;
    right: 0;
    padding-bottom: 4px;
    font-size: 12px;
    margin-left: auto;
    display: inline-block;
    width: auto;
  }
}

h2.title1 {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  min-height: 210px;
}

@media (max-width: 799px) {
  h2.title1 {
    padding-left: 0;
    justify-content: flex-start;
    order: 0;
  }
}

@media (max-width: 599px) {
  h2.title1 {
    min-height: 138px;
    order: 0;
  }
}

h2.title1 .en {
  margin-bottom: 0;
  color: #000;
  max-width: 630px;
  width: 100%;
  font-size: 34px;
}

@media (max-width: 599px) {
  h2.title1 .en {
    font-size: calc(23/375*100vw);
  }
}

h2.title1 span {
  display: flex;
  align-items: center;
  color: #cc0000;
  font-size: 24px;
  font-weight: bolder;
  line-height: 1.3;
  min-height: 110px;
  padding-left: 23px;
  border-left: 6px solid #cc0000;
}

@media (max-width: 599px) {
  h2.title1 span {
    padding: 15.5px 0;
    padding-left: 18px;
    border-left: 5px solid #cc0000;
    font-size: calc(16 / 375 * 100vw);
    min-height: 60px;
  }
}

h2.title1 .jp {
  color: #000;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

h2.title1 .jp small {
  font-size: 24px;
}

@media (max-width: 599px) {
  h2.title1 .jp small {
    font-size: calc(18/375*100vw);
  }
}

@media (max-width: 599px) {
  h2.title1 .jp {
    flex-flow: column;
    font-size: calc(23 / 375 * 100vw);
    align-items: flex-start;
  }
}

h2.title1 .jp .sml {
  margin-left: 10px;
  font-size: 24px;
}

@media (max-width: 599px) {
  h2.title1 .jp .sml {
    margin-left: calc(10 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}

h2.title2 {
  display: flex;
  flex-flow: row;
  align-items: baseline;
  justify-content: flex-start;
  background: #fff;
  margin-left: 60px;
}

@media (max-width: 599px) {
  h2.title2 {
    padding: 38px 0;
  }
}

h2.title2 .en {
  margin-right: 25px;
  color: #cc0000;
  font-size: 45px;
  font-weight: bolder;
  line-height: 1.3;
}

@media (max-width: 599px) {
  h2.title2 .en {
    margin-bottom: 6px;
    font-size: calc(16 / 375 * 100vw);
  }
}

h2.title2 .jp {
  color: #000;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

@media (max-width: 599px) {
  h2.title2 .jp {
    font-size: calc(24 / 375 * 100vw);
  }
}

h2.title2 .jp .sml {
  margin-left: 10px;
  font-size: 24px;
}

@media (max-width: 599px) {
  h2.title2 .jp .sml {
    margin-left: calc(10 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}

h2.title3 {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 71px 0px;
}

@media (max-width: 599px) {
  h2.title3 {
    padding: 44px 0 20px;
    width: calc(100% - (50/375*100vw));
    margin: auto;
  }
}

h2.title3 .en {
  margin-bottom: 11px;
  color: #cc0000;
  font-size: 24px;
  font-weight: bolder;
  line-height: 1.3;
}

@media (max-width: 599px) {
  h2.title3 .en {
    margin-bottom: 6px;
    font-size: calc(16 / 375 * 100vw);
  }
}

h2.title3 .jp {
  margin-bottom: 10px;
  color: #cc0000;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

@media (max-width: 599px) {
  h2.title3 .jp {
    font-size: calc(23 / 375 * 100vw);
  }
}

h2.title3 .jp .sml {
  margin-left: 10px;
  font-size: 24px;
}

@media (max-width: 599px) {
  h2.title3 .jp .sml {
    margin-left: calc(10 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}

h2.title3 .txt {
  font-size: 20px;
  line-height: 1.3;
}

.main_interview_title {
  position: relative;
}

.main_interview_title .container {
  position: static;
  max-width: 1210px;
}

.main_interview_title .container .title1 {
  height: 210px;
}

.main_interview_title .container .title1 .jp {
  position: relative;
}

.main_interview_title .container .title1 .jp .img {
  position: absolute;
  right: 110px;
  top: 0;
  width: 92px;
  height: 53px;
}

.main_interview_title .container .title1 .jp .tab {
  display: none;
}

@media (max-width: 799px) {
  .main_interview_title .container .title1 {
    height: 270px;
  }
  .main_interview_title .container .title1 .jp .img {
    position: absolute;
    right: 15.9%;
    left: auto;
    top: 0;
    width: calc(46 / 375 * 100vw);
    height: calc(27 / 375 * 100vw);
  }
  .main_interview_title .container .title1 .jp .tab {
    display: block;
  }
}

@media (max-width: 599px) {
  .main_interview_title .container .title1 {
    height: 138px;
    padding-left: 0;
    white-space: nowrap;
  }
}

/*****************************************
toEntry
*****************************************/
.toEntry {
  padding: 40px 0 41px;
  background: #bc271a;
}

.toEntry h3 {
  margin: 0 0 25px;
  text-align: center;
}

.toEntry h3 .sub {
  display: block;
  margin: 8px 0 0;
  text-align: center;
  font-size: 19px;
  font-weight: normal;
  letter-spacing: 5.7px;
  color: #fff;
}

@media (max-width: 599px) {
  .toEntry h3 .sub {
    margin: 16px 0 0;
    letter-spacing: 0.1em;
    font-size: 16px;
  }
}

.toEntry_container {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 858px;
}

.toEntry_link_box {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
}

@media (max-width: 599px) {
  .toEntry_link_box {
    flex-flow: column;
  }
}

.toEntry_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 33px) / 2);
  height: 74px;
  letter-spacing: 0.3em;
  color: #bc271a;
  font-size: 18px;
  background: #fff;
  opacity: 1;
  transition: all 0.3s;
}

.toEntry_link:hover {
  opacity: 0.8;
}

@media (max-width: 599px) {
  .toEntry_link {
    margin: auto;
    width: 90%;
    height: 40px;
    letter-spacing: 0.1em;
    font-size: 16px;
  }
  .toEntry_link:not(:last-of-type) {
    margin-bottom: 14px;
  }
}

/*****************************************
midRecruit
*****************************************/
.midRecruit {
  padding: 50px 0;
}

@media (max-width: 599px) {
  .midRecruit {
    padding: 20px 0;
  }
}

.midRecruit_container {
  max-width: 768px;
}

@media (max-width: 599px) {
  .midRecruit_container {
    width: 100%;
  }
}

.midRecruit_container a {
  display: block;
  transition: all .3s;
}

.midRecruit_container a:hover {
  opacity: 0.8;
}

.midRecruit_contents {
  display: flex;
  flex-flow: row;
  margin: auto;
  max-width: 768px;
  position: relative;
}

@media (max-width: 599px) {
  .midRecruit_contents {
    height: calc(254 / 375 * 100vw);
    background: url(/recruit/assets/img/common/midRecruit_pic_honda_sp.png) center center/cover no-repeat;
  }
}

.midRecruit_contents_txt {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  flex: none;
  min-width: 347px;
  background: #787878;
}

@media (max-width: 599px) {
  .midRecruit_contents_txt {
    min-width: auto;
    width: 100%;
    background: none;
  }
}

.midRecruit_contents_pic {
  position: static;
  left: 0;
  top: 0;
  margin: auto;
  z-index: -1;
  width: 100%;
  height: auto;
}

@media (max-width: 599px) {
  .midRecruit_contents_pic {
    display: none;
  }
}

.midRecruit_contents_title {
  display: flex;
  flex-flow: column;
  text-align: center;
  justify-content: center;
  font-weight: normal;
  margin-bottom: 13px;
}

.midRecruit_contents_title .en {
  margin-bottom: 8px;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.24em;
}

.midRecruit_contents_title .jp {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.16em;
  font-weight: bold;
  line-height: 1.4;
}

@media (max-width: 599px) {
  .midRecruit_contents_title .jp {
    font-size: 16px;
  }
}

.midRecruit_link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  font-weight: 700;
  min-height: 44px;
  color: #fff;
  border: 1px solid #fff;
}

@media (max-width: 599px) {
  .midRecruit_link {
    height: 60px;
    width: 83%;
    font-size: 20px;
  }
}

.midRecruit_link img {
  margin-right: 8px;
  width: 11px;
}

/*****************************************
toRequiret
*****************************************/
.toRequiret {
  display: none;
  padding: 25px 0;
  background: #fff;
  border-bottom: 18px solid #bc271a;
}

@media (max-width: 599px) {
  .toRequiret {
    border-bottom: 22px solid #bc271a;
  }
}

.toRequiret_container {
  max-width: 858px;
  margin: auto;
}

.toRequiret_txt {
  margin: 0 0 10px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.28em;
  line-height: 1.5;
}

@media (max-width: 599px) {
  .toRequiret_txt {
    font-size: calc(16 / 375 * 100vw);
  }
}

.toRequiret_list {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

@media (max-width: 599px) {
  .toRequiret_list {
    flex-flow: column;
    align-items: center;
  }
}

.toRequiret_list li {
  width: calc((100% - 38px) / 3);
  height: 75px;
  font-size: 16px;
  border: 1px solid #231815;
  font-weight: 600;
}

.toRequiret_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.3s;
}

.toRequiret_list li a:hover {
  background: #f0f0f0;
}

@media (max-width: 599px) {
  .toRequiret_list li {
    margin: auto;
    width: 90%;
    height: 40px;
    font-size: 16px;
  }
  .toRequiret_list li:not(:last-of-type) {
    margin-bottom: 14px;
  }
}

/*****************************************
footer_navi
*****************************************/
.footer_navi {
  background: #f0f0f0;
}

@media (max-width: 799px) {
  .footer_navi {
    display: none;
  }
}

.footer_navi_container {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  margin: auto;
  padding: 36px 0;
  max-width: 1366px;
}

@media (max-width: 1000px) {
  .footer_navi_container {
    padding: 36px 2%;
  }
}

.footer_navi_block_header {
  margin: 0 0 9px;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 600;
}

.footer_navi_block_body li a {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #000;
}

.footer_navi_block_body li a::before {
  content: "";
  display: inline-block;
  margin: 0 7px 0 0px;
  width: 6px;
  height: 9px;
  background: url(../img/common/icon_arwR.svg) no-repeat;
}

.footer_navi_block_body li:not(:last-of-type) {
  margin: 0 0 8px;
}

@media (max-width: 1000px) {
  .footer_navi_block {
    padding: 2%;
  }
}

/*****************************************
footer
*****************************************/
footer {
  padding: 38px 0;
  background: #fff;
}

@media (max-width: 599px) {
  footer {
    height: auto;
    padding: 25px 0;
  }
}

.footer_container {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  max-width: 1200px;
  height: 100%;
}

@media (max-width: 599px) {
  .footer_container {
    width: 90%;
  }
}

.footer_logo {
  margin: 0 0 15px;
  width: 99px;
}

.footer_txt1 {
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
}

@media (max-width: 599px) {
  .footer_txt1 {
    margin-bottom: 8px;
    font-size: calc(16 / 375 * 100vw);
  }
}

.footer_txt2 {
  margin-bottom: 7px;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
}

@media (max-width: 599px) {
  .footer_txt2 {
    margin-bottom: 8px;
    font-size: calc(14 / 375 * 100vw);
  }
}

.copyright {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.copyright .copy {
  font-size: 23px;
  vertical-align: middle;
}

@media (max-width: 599px) {
  .copyright {
    text-align: center;
    font-size: 13px;
  }
  .copyright .copy {
    font-size: 20px;
  }
}

/*****************************************
itembox
*****************************************/
.main_top_menu_sec {
  margin-bottom: 80px;
}

.main_top_menu_sec .container {
  max-width: 1240px;
}

.main_top_menu_sec .container .itembox {
  display: flex;
  flex-wrap: wrap;
}

.main_top_menu_sec .container .itembox .item {
  max-width: 370px;
  height: 200px;
  width: 31%;
  margin-right: 3%;
  margin-bottom: 3%;
  position: relative;
}

.main_top_menu_sec .container .itembox .item:nth-child(3n) {
  margin-right: 0;
}

.main_top_menu_sec .container .itembox .item:last-of-type {
  margin-right: 0;
}

.main_top_menu_sec .container .itembox .item a {
  display: block;
  padding: 40px 10px 60px;
  transition: all 0.3s;
}

.main_top_menu_sec .container .itembox .item a .bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main_top_menu_sec .container .itembox .item a .name .jp {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_top_menu_sec .container .itembox .item a .name .en {
  font-size: 14px;
  letter-spacing: 0.24em;
  display: block;
  font-weight: 300;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}

.main_top_menu_sec .container .itembox .item a .btn {
  border: 1px solid #fff;
  display: block;
  text-align: center;
  color: #fff;
  padding: 16px 0;
  margin-left: 30px;
  margin-right: 30px;
  position: relative;
}

.main_top_menu_sec .container .itembox .item a .btn span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  padding-left: 30px;
}

.main_top_menu_sec .container .itembox .item a .btn span::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/service/index/arrow.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: all 0.3s;
}

.main_top_menu_sec .container .itembox .item a:hover {
  opacity: 0.9;
}

.main_top_menu_sec .container .itembox .item a:hover .btn span::before {
  left: 5px;
}

@media screen and (max-width: 1200px) {
  .main_top_menu_sec .container .itembox .item a .name .jp {
    height: 80px;
  }
  .main_top_menu_sec .container .itembox .item a .btn {
    margin-left: 14px;
    margin-right: 14px;
  }
}

@media screen and (max-width: 1024px) {
  .main_top_menu_sec .container .itembox .item a {
    padding: 50px 10px;
  }
  .main_top_menu_sec .container .itembox .item a .btn span {
    font-size: 16px;
  }
  .main_top_menu_sec .container .itembox .item a .jp {
    font-size: 14px;
  }
}

@media (max-width: 799px) {
  .main_top_menu_sec {
    margin-bottom: 60px;
  }
  .main_top_menu_sec .container .itembox .item {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
    max-width: none;
    height: auto;
  }
  .main_top_menu_sec .container .itembox .item:nth-child(3n) {
    margin-right: 2%;
  }
  .main_top_menu_sec .container .itembox .item:nth-child(2n) {
    margin-right: 0;
  }
  .main_top_menu_sec .container .itembox .item a {
    padding: 50px 30px;
  }
}

@media (max-width: 599px) {
  .main_top_menu_sec {
    margin-bottom: 0px;
  }
  .main_top_menu_sec .container {
    padding: 0 0px;
    width: 100%;
  }
  .main_top_menu_sec .container .itembox .item {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 30px;
  }
  .main_top_menu_sec .container .itembox .item:nth-child(3n) {
    margin-right: 0;
  }
  .main_top_menu_sec .container .itembox .item:last-child {
    margin-bottom: 0;
  }
  .main_top_menu_sec .container .itembox .item a {
    padding: 60px 0 70px;
  }
  .main_top_menu_sec .container .itembox .item a .name .jp {
    font-size: calc(18 / 375 * 100vw);
    height: auto;
  }
  .main_top_menu_sec .container .itembox .item a .name .en {
    font-size: 16px;
  }
  .main_top_menu_sec .container .itembox .item a .btn {
    margin: auto;
    width: 83%;
  }
  .main_top_menu_sec .container .itembox .item a .btn span {
    font-size: 20px;
  }
}

/*****************************************
itembox1
*****************************************/
.itemW {
  width: 100%;
  margin-right: 2%;
  margin-bottom: 3%;
  position: relative;
}

@media (max-width: 599px) {
  .itemW {
    margin-bottom: 30px;
  }
}

.itemW a {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  max-width: 407px;
  height: 276px;
  transition: all 0.3s;
}

@media (max-width: 599px) {
  .itemW a {
    max-width: none;
    width: 100%;
  }
}

.itemW a .bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.itemW a .name {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 599px) {
  .itemW a .name {
    font-size: 18px;
  }
}

.itemW a .name span {
  font-size: 14px;
  letter-spacing: 0.24em;
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
}

.itemW a .btn {
  border: 1px solid #fff;
  display: block;
  text-align: center;
  color: #fff;
  padding: 16px;
  padding-right: 0;
  position: relative;
  max-width: 277px;
  width: 100%;
}

@media (max-width: 599px) {
  .itemW a .btn {
    padding: 19px 16px;
  }
}

.itemW a .btn span {
  font-size: 19px;
  font-weight: 600;
  position: relative;
  padding-left: 30px;
}

.itemW a .btn span::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/about/index/about_arrow.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: all 0.3s;
}

.itemW a:hover {
  opacity: 0.8;
}

.itemW a:hover .btn span::before {
  left: 8px;
}

.itembox1 {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1%;
}

.itembox1 .item {
  width: 30.529%;
  margin-right: 3%;
  margin-bottom: 3%;
  position: relative;
}

.itembox1 .item:nth-child(3n) {
  margin-right: 0;
}

.itembox1 .item a {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 200px;
}

@media (max-width: 799px) {
  .itembox1 .item a {
    padding: 25px 13px 30px;
    height: 254px;
  }
}

.itembox1 .item a .bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.itembox1 .item a .name {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 13px;
  position: relative;
}

.itembox1 .item a .name span {
  font-size: 14px;
  letter-spacing: 0.24em;
  display: block;
  font-weight: 300;
  margin-bottom: 8px;
}

.itembox1 .item a .btn {
  border: 1px solid #fff;
  display: block;
  text-align: center;
  color: #fff;
  max-width: 277px;
  width: 100%;
  padding: 16px;
  padding-right: 0;
  position: relative;
}

.itembox1 .item a .btn span {
  font-size: 19px;
  font-weight: 600;
  position: relative;
  padding-left: 30px;
}

@media (max-width: 799px) {
  .itembox1 .item a .btn span {
    padding-left: 15px;
    font-size: 15px;
  }
}

.itembox1 .item a .btn span::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/about/index/about_arrow.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: all 0.3s;
}

@media (max-width: 799px) {
  .itembox1 .item a .btn span::before {
    width: 15px;
    height: 15px;
  }
}

.itembox1 .item a:hover {
  opacity: 0.8;
}

.itembox1 .item a:hover .btn span::before {
  left: 5px;
}

@media screen and (max-width: 1024px) {
  .itembox1 .item a {
    padding: 42.5px 10px;
  }
  .itembox1 .item a .btn span {
    font-size: 16px;
  }
  .itembox1 .item a .name {
    font-size: 14px;
  }
}

@media (max-width: 799px) {
  .itembox1 .item {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .itembox1 .item:nth-child(3n) {
    margin-right: 2%;
  }
  .itembox1 .item:nth-child(2n) {
    margin-right: 0;
  }
  .itembox1 .item a {
    padding: 50px 30px;
  }
}

@media (max-width: 599px) {
  .itembox1 .item {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 30px;
  }
  .itembox1 .item:nth-child(3n) {
    margin-right: 0;
  }
  .itembox1 .item:last-child {
    margin-bottom: 0;
  }
  .itembox1 .item a .name {
    font-size: 18px;
  }
  .itembox1 .item a .name span {
    font-size: 16px;
  }
  .itembox1 .item a .btn span {
    font-size: 20px;
  }
}

/*****************************************
itembox2
*****************************************/
.itembox2 {
  display: flex;
  flex-wrap: wrap;
}

.itembox2 .item {
  width: calc((100% / 3) - 2.2%);
  margin-right: 3%;
  margin-bottom: 3%;
  position: relative;
}

.itembox2 .item:nth-child(3n) {
  margin-right: 0;
}

.itembox2 .item a {
  display: block;
  padding: 45px 26px;
  transition: all 0.3s;
  height: 100%;
}

@media (max-width: 799px) {
  .itembox2 .item a {
    padding: 25px 13px 30px;
  }
}

.itembox2 .item a .bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.itembox2 .item a .name {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.itembox2 .item a .name span {
  font-size: 14px;
  letter-spacing: 0.24em;
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.4;
}

.itembox2 .item a .name span.jp {
  font-weight: bold;
}

.itembox2 .item a .btn {
  border: 1px solid #fff;
  display: block;
  text-align: center;
  color: #fff;
  padding: 16px;
  padding-right: 0;
  position: relative;
}

.itembox2 .item a .btn span {
  font-size: 19px;
  font-weight: 600;
  position: relative;
  padding-left: 30px;
}

@media (max-width: 799px) {
  .itembox2 .item a .btn span {
    padding-left: 15px;
    font-size: 15px;
  }
}

.itembox2 .item a .btn span::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/about/index/about_arrow.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: all 0.3s;
}

@media (max-width: 799px) {
  .itembox2 .item a .btn span::before {
    width: 15px;
    height: 15px;
  }
}

.itembox2 .item a.philosophy {
  background: url(../img/about/index/about_index02.jpg) no-repeat center center/cover;
}

.itembox2 .item a.outline {
  background: url(../img/about/index/about_index03.jpg) no-repeat center center/cover;
}

.itembox2 .item a.info {
  background: url(../img/about/index/about_index04.jpg) no-repeat center center/cover;
}

.itembox2 .item a.appeal {
  background: url(../img/about/index/about_index05.jpg) no-repeat center center/cover;
}

.itembox2 .item a.club {
  background: url(../img/about/index/about_index06.jpg) no-repeat center center/cover;
}

.itembox2 .item a.system {
  background: url(../img/about/index/about_index02.jpg) no-repeat center center/cover;
}

.itembox2 .item a:hover {
  opacity: 0.8;
}

.itembox2 .item a:hover .btn span::before {
  left: 5px;
}

@media screen and (max-width: 1024px) {
  .itembox2 .item a {
    padding: 50px 10px;
  }
  .itembox2 .item a .btn span {
    font-size: 16px;
  }
  .itembox2 .item a .name {
    font-size: 14px;
  }
}

@media (max-width: 799px) {
  .itembox2 .item {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .itembox2 .item:nth-child(3n) {
    margin-right: 2%;
  }
  .itembox2 .item:nth-child(2n) {
    margin-right: 0;
  }
  .itembox2 .item a {
    padding: 50px 30px;
  }
}

@media (max-width: 599px) {
  .itembox2 .item {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 30px;
  }
  .itembox2 .item:nth-child(3n) {
    margin-right: 0;
  }
  .itembox2 .item:last-child {
    margin-bottom: 0;
  }
  .itembox2 .item a {
    padding: 58px 30px 58px;
  }
  .itembox2 .item a .name {
    font-size: 18px;
  }
  .itembox2 .item a .name span {
    font-size: 16px;
  }
  .itembox2 .item a .name span.jp {
    line-height: 1.4;
  }
  .itembox2 .item a .btn span {
    font-size: 20px;
  }
}

/*****************************************
itembox3
*****************************************/
.itembox3 {
  background-color: #f0f0f0;
  padding: 40px 0 30px;
}

.itembox3 .container {
  max-width: 1150px;
  padding: 0 20px;
}

.itembox3 .top_itembox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.itembox3 .top_itembox .left {
  width: 52%;
  display: flex;
  align-items: center;
}

.itembox3 .top_itembox .left .txtbox .ttl {
  font-size: 75px;
  color: #cc0000;
  letter-spacing: -0.04em;
  font-weight: bold;
  margin-bottom: 10px;
}

.itembox3 .top_itembox .left .txtbox .jp {
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.itembox3 .top_itembox .left .txtbox .sub_jp {
  background-color: #000;
}

.itembox3 .top_itembox .left .txtbox .sub_jp span {
  font-size: 29px;
  text-align: center;
  padding: 10px;
  display: block;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-weight: 600;
}

.itembox3 .top_itembox .right {
  width: 45%;
}

@media screen and (max-width: 1024px) {
  .itembox3 .top_itembox .left .txtbox .sub_jp span {
    font-size: 20px;
  }
  .itembox3 .top_itembox .left .txtbox .ttl {
    font-size: 50px;
  }
  .itembox3 .top_itembox .left .txtbox .jp {
    font-size: 20px;
  }
}

@media (max-width: 799px) {
  .itembox3 .top_itembox .left .txtbox .sub_jp span {
    font-size: 16px;
  }
}

@media (max-width: 599px) {
  .itembox3 {
    padding: 20px 0 30px;
    background: linear-gradient(180deg, #fff 0%, #fff 8%, #f0f0f0 8%, #f0f0f0 100%);
  }
  .itembox3 .container {
    padding: 0px;
    width: 100%;
  }
  .itembox3 .top_itembox .left {
    width: 94%;
    padding-left: 30px;
    margin-bottom: 20px;
  }
  .itembox3 .top_itembox .left .txtbox .ttl {
    font-size: calc(42 / 375 * 100vw);
  }
  .itembox3 .top_itembox .left .txtbox .jp {
    font-weight: 600;
    letter-spacing: 0.16em;
    font-size: calc(18 / 375 * 100vw);
    line-height: 1.4;
    margin-bottom: 14px;
  }
  .itembox3 .top_itembox .left .txtbox .sub_jp span {
    font-size: calc(16 / 375 * 100vw);
  }
  .itembox3 .top_itembox .right {
    width: 100%;
  }
}

/*****************************************
titlebox1
*****************************************/
.title_common_layout01 .container {
  max-width: 1280px;
}

.title_common_layout01 .container .titlebox1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fff;
}

.title_common_layout01 .container .titlebox1 .left {
  width: 50%;
  padding-left: 50px;
  padding-right: 20px;
}

.title_common_layout01 .container .titlebox1 .left .ttl {
  letter-spacing: 0.16em;
  font-size: 34px;
  line-height: 1.315;
  min-height: 110px;
  padding-left: 23px;
  border-left: 6px solid #cc0000;
  display: flex;
  align-items: center;
}

@media (max-width: 599px) {
  .title_common_layout01 .container .titlebox1 .left .ttl {
    min-height: 60px;
  }
}

.title_common_layout01 .container .titlebox1 .left .ttl span {
  display: block;
  color: #CC0000;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 2;
}

.title_common_layout01 .container .titlebox1 .left .ttl small {
  font-size: 24px;
  padding-left: 20px;
}

.title_common_layout01 .container .titlebox1 .right {
  width: 50%;
}

.title_common_layout01 .container .titlebox1.flex_dry {
  flex-direction: row-reverse;
}

.title_common_layout01 .container .titlebox1.flex_dry .left {
  padding-left: 100px;
}

.title_common_layout01.bg {
  padding-top: 60px;
  background: linear-gradient(180deg, #f0f0f0 0%, #f0f0f0 60px, #fff 60px, #fff 100%);
}

@media screen and (max-width: 1024px) {
  .title_common_layout01 .container {
    padding: 0;
  }
  .title_common_layout01 .container .titlebox1 .left .ttl span {
    font-size: 18px;
  }
  .title_common_layout01 .container .titlebox1 .left .ttl small {
    font-size: 16px;
  }
  .title_common_layout01 .container .titlebox1 .left .ttl {
    font-size: 28px;
  }
}

@media (max-width: 799px) {
  .title_common_layout01 .container .titlebox1 .left .ttl {
    font-size: 24px;
  }
  .title_common_layout01 .container .titlebox1 .left .ttl .tab {
    display: none;
  }
}

@media (max-width: 599px) {
  .title_common_layout01 {
    padding-top: 20px;
  }
  .title_common_layout01.bg {
    padding-top: 0px;
    background: #fff;
  }
  .title_common_layout01.bg .container .titlebox1 {
    flex-direction: column-reverse;
  }
  .title_common_layout01.bg .container .titlebox1 .left {
    padding-top: 20px;
  }
  .title_common_layout01 .container {
    width: 100%;
  }
  .title_common_layout01 .container .titlebox1 .left {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px;
  }
  .title_common_layout01 .container .titlebox1 .left .ttl {
    font-size: 25px;
  }
  .title_common_layout01 .container .titlebox1 .left .ttl span {
    font-size: 16px;
  }
  .title_common_layout01 .container .titlebox1 .right {
    width: 100%;
  }
  .title_common_layout01 .container .titlebox1.flex_dry .left {
    padding-left: 30px;
  }
}

.schedule_sec {
  padding-top: 50px;
  border-top: 2px solid #ddd;
}

.schedule_sec .container {
  max-width: 1140px;
  padding: 0 20px;
}

.schedule_sec .t_txt {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.14em;
  margin-bottom: 60px;
}

.schedule_sec .flowbox {
  max-width: 920px;
  margin: auto;
}

.schedule_sec .flowbox .list {
  background-color: #CC0000;
  padding: 30px 10px;
  margin-bottom: 40px;
  position: relative;
}

.schedule_sec .flowbox .list::after {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/service/singu/flow_arrow.png) no-repeat;
  background-size: contain;
  width: 44px;
  height: 20px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.schedule_sec .flowbox .list .txt {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-align: center;
}

.schedule_sec .flowbox .list:last-child {
  margin-bottom: 0;
}

.schedule_sec .flowbox .list:last-child::after {
  display: none;
}

@media (max-width: 599px) {
  .schedule_sec {
    padding-top: 30px;
    border-top: none;
  }
  .schedule_sec .container {
    padding: 0px;
  }
  .schedule_sec .t_txt {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .schedule_sec .flowbox {
    max-width: 920px;
    margin: auto;
  }
  .schedule_sec .flowbox .list {
    padding: 12px 10px;
    margin-bottom: 20px;
  }
  .schedule_sec .flowbox .list::after {
    width: 22px;
    height: 10px;
    bottom: -15px;
  }
  .schedule_sec .flowbox .list .txt {
    font-size: 22px;
  }
}

.error_main {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  height: 100vh;
  width: 100%;
}

.error_main a {
  margin: 10px 30px;
  padding: 10px 30px;
  border: 1px solid #cc0000;
}

.common_korona_com_sec {
  padding: 50px 0;
}

.common_korona_com_sec .txt {
  line-height: 1.5;
}

@media (max-width: 599px) {
  .common_korona_com_sec {
    padding: 20px 0;
  }
  .common_korona_com_sec .txt {
    line-height: 1.5;
  }
}
/*# sourceMappingURL=common.css.map */

.link_mynavi {
  flex-direction: column;
}

@media (max-width: 599px) {
  .link_mynavi {
    flex-direction: inherit !important;
  }
  
}


.new_entry {
  text-align: center !important;
}