@charset "utf-8";

/* ----------------------------------------------------
    common 
---------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
input {
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	padding: 0;
}
html {
	-webkit-text-size-adjust: 100%;
	font-size:62.5%;
}
html.open, body.open {
    overflow: auto;
    height: 100%;
}
body.open {
    overflow: hidden;
}
body {
	font-size:1.6em;
	color: #363636;
    line-height: 1.8;
	font-family: 'Noto Sans JP', 'Noto Sans', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
a {
    color: #333;
    text-decoration: none;
}
img {
    max-width: 100%;
	border: 0;
	vertical-align: bottom;
    image-rendering: -webkit-optimize-contrast;
}
ul li {
	list-style-type: none;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.conts-inner {
    max-width: 1060px;
    margin: 50px auto;
    padding: 0 30px;
}
.astarisk {
    padding-left: 15px;
    position: relative;
}
.astarisk::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}
.small {
    font-size: 1.0rem;
}
.fw-n {
    font-weight: normal !important;
}
.c-pink {
    color: #F01A96;
}
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}
.for-sp {
    display: none;
}

@media only screen and (max-width: 767px) {
    .conts-inner {
        width: 100%;
        margin: 0 auto;
        padding: 40px 20px;
    }
    .for-pc {
        display: none;
    }
    .for-sp {
        display: block;
    }
}


/* ----------------------------------------------------
    header
---------------------------------------------------- */
header {
    z-index: 9999;
}

/* pc-header */
.pc-header {
    width: 100%;
    height: 80px;
    padding: 28px 0;
    background: url(../img/bg_header.png) center center no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
}
.pc-header-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 30px;
}
.pc-header-nav-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.pc-header-nav-list-logo {
    width: 60px;
}
.pc-header-nav-list-conts a {
    font-size: 1.25rem;
    color: #ffffff;
}

@media only screen and (max-width: 767px) {
    .pc-header {
        display: none;
    }
}

/* sp-header */
.sp-header {
    width: 100%;
    display: none;
    position: fixed;
}
.sp-bread {
    width: 40px;
    height: 40px;
    background: url(../img/sp_bread.svg) center center no-repeat;
    background-size: contain;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 9999;
    transition: all 300ms 0s ease;
}
.sp-bread.active {
    right: 20px;
    left: auto;
    background: none;
}
.sp-bread::before,
.sp-bread::after {
    transition: all 300ms 0s ease;
}
.sp-bread.active::before,
.sp-bread.active::after {
    content: "";
    width: 40px;
    height: 2px;
    border-radius: 1px;
    background: #fff;
    position: absolute;
    top: 20px;
    right: 0;
    transition: all 300ms 0s ease;
}
.sp-bread.active::before {
    transform: rotate(45deg);
}
.sp-bread.active::after {
    transform: rotate(-45deg);
}
.sp-header-inner {
    width: 100%;
    height: 100vh;
    background: transparent linear-gradient(180deg, #DD2280 0%, #DF5047 50%, #281D81 79%, #000000 100%) 0% 0% no-repeat padding-box;
    z-index: 8888;
    position: absolute;
    top: 0;
    left: -100%;
    transition: .3s;
}
.sp-header-inner.active {
    left: 0;
}
.sp-header-nav {
    padding: 20px;
}
.sp-header-nav-list li.nav-logo {
    width: 100px;
    margin-bottom: 30px;
}
.sp-header-nav-list li + li {
    margin-top: 15px;
}
.sp-header-nav-list li a {
    font-size: 2.0rem;
    line-height: 1;
    font-weight: 600;
    color: #ffffff;
}
.sp-header-icon-list {
    margin-top: 30px;
}
.sp-header-icon-list li {
    width: 30px;
}
.sp-header-icon-list li + li {
    margin-top: 15px;
}
@media only screen and (max-width: 767px) {
    .sp-header {
        display: block;
    }
}

/* ----------------------------------------------------
    top-main
---------------------------------------------------- */
.top-main {
    width: 100%;
    height: 100vh;
    background: url(../img/top/img_main_bg.png) center center no-repeat;
    background-size: cover;
}
.top-main-title {
    max-width: 1060px;
    height: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
}
.top-main-title-h {
    max-width: 550px;
    margin: auto 0 20px;
    color: #002F5F;
}
.top-main-title-sub-e {
    font-size: 2.6rem;
    color: #F01A96;
}
.top-main-title-sub-j {
    font-size: 1.7rem;
    color: #002F5F;
}
.top-main-title-logo {
    margin-top: auto;
}
.top-main-title-logo-img {
    margin: 0 auto;
    max-width: 120px;
}
.top-main-title-logo-arrow {
    width: 0;
    height: 0;
    margin: 15px auto 20px;
    border: 10px solid transparent;
    border-top: 13px solid #F01A96;
}

@media only screen and (max-width: 767px) {
    .top-main {
        width: 100%;
        height: 100vh;
        background: url(../img/top/img_main_bg.png) right 30% center no-repeat;
        background-size: cover;
    }
    .top-main-title {
        width: 100%;
        padding: 0 20px;
    }
    .top-main-title-h {
        max-width: 300px;
    }
}

@media only screen and (max-width: 480px) {
    .top-main-title-h {
        max-width: 180px;
    }
    .top-main-title-sub-e {
        font-size: 1.8rem;
    }
    .top-main-title-sub-j {
        font-size: 1.2rem;
    }
}

/* ----------------------------------------------------
    top-menu
---------------------------------------------------- */
.top-menu-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.top-menu-list-conts {
    height: 180px;
    margin-bottom: 20px;
}
.top-menu-list-conts.w20 {
    width: 19%;
}
.top-menu-list-conts.w30 {
    width: 29%;
}
.top-menu-list-conts.w40 {
    width: 38.5%;
}
.top-menu-list-conts.w50 {
    width: 49%;
}
.top-menu-list-conts.w70 {
    width: 69%;
}
.top-menu-list-conts.menu-profile {
    background: url(../img/top/img_menu_profile.png) center center no-repeat;
    background-size: cover;
}
.top-menu-list-conts.menu-biography {
    background: url(../img/top/img_menu_biography.png) center center no-repeat;
    background-size: cover;
}
.top-menu-list-conts.menu-photo {
    background: url(../img/top/img_menu_photo.png) center center no-repeat;
    background-size: cover;
}
.top-menu-list-conts.menu-asso {
    background: url(../img/top/img_menu_asso.png) center center no-repeat;
    background-size: cover;
}
.top-menu-list-conts.menu-sj {
    background: url(../img/top/img_menu_sj.png) center center no-repeat;
    background-size: cover;
}
.top-menu-list-conts.menu-salon {
    background: url(../img/top/img_menu_salon.png) center center no-repeat;
    background-size: cover;
}
.top-menu-list-conts.menu-nico {
    background: url(../img/top/img_menu_nico.png) center center no-repeat;
    background-size: cover;
}
.top-menu-list-conts.menu-espo {
    background: url(../img/top/img_menu_espo.png) center center no-repeat;
    background-size: cover;
}
.top-menu-list-conts a {
    width: 100%;
    height: 100%;
    font-size: 2.0rem;
    font-weight: bold;
    color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: end;
    justify-content: flex-end;
}
.top-menu-list-conts a .top-menu-list-conts-h {
    margin-bottom: 10px;
    padding: 5px 10px;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(255,255,255,0));
}

@media only screen and (max-width: 767px) {
    .top-menu-list-conts {
        height: 0;
        margin-bottom: 15px;
    }
    .top-menu-list-conts.w20,
    .top-menu-list-conts.w30,
    .top-menu-list-conts.w40,
    .top-menu-list-conts.w50,
    .top-menu-list-conts.w70 {
        width: 100%;
        height: 100%;
    }
    .top-menu-list-conts a {
        padding-top: 25%;
        font-size: 1.5rem;
    }
}

/* ----------------------------------------------------
    foot area
---------------------------------------------------- */
.foot-conts-h {
    margin-bottom: 20px;
    font-size: 2.0rem;
    font-weight: 700;
    color: #707070;
}

@media only screen and (max-width: 767px) {
    .foot-conts-h {
        font-size: 1.5rem;
    }
}

/* foot-partners */
.foot-partners-block {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
}
.foot-partners-list {
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
.foot-partners-list + .foot-partners-list {
  margin-top: 20px;
}

.foot-partners-list li {
  height: 90px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  /* margin-bottom: 20px; */
}

/* PARTNERS */
.line1.foot-partners-list li:nth-child(1) {
    padding: 13px 0;
    padding-right: 30px;
  }
  .line1.foot-partners-list li:nth-child(2) {
    padding: 0 0;
    height: 95px;
    padding-right: 30px;
  }
  .line1.foot-partners-list li:nth-child(3) {
    padding: 13px 0;
    padding-right: 30px;
  }
  .line1.foot-partners-list li:nth-child(4) {
    padding: 5px 0;
  }
  
  .line2.foot-partners-list li{
    padding: 20px 0;
  }
  .line2.foot-partners-list li:nth-child(1) {
    padding: 26px 0;
    padding-right: 35px;
  }
  .line2.foot-partners-list li:nth-child(2) {
    padding-right: 35px;
  }
  .line2.foot-partners-list li:nth-child(3) {
    padding-right: 35px;
  }
  .line2.foot-partners-list li:nth-child(4) {
    padding-right: 35px;
  }
  
  .line3.foot-partners-list li{
    padding: 27px 0;
  }
  /* .line3.foot-partners-list li:nth-child(1) {
    padding-right: 20px;
  } */
  .line3.foot-partners-list li:nth-child(1) {
    padding-right: 35px;
  }
  .line3.foot-partners-list li:nth-child(2) {
    padding: 28px 0;
    padding-right: 35px;
  }
  .line3.foot-partners-list li:nth-child(3) {
    padding: 33px 0;
    padding-right: 35px;
  }
  .line3.foot-partners-list li:nth-child(4) {
    padding: 33px 0;
    padding-right: 35px;
  }
  .line3.foot-partners-list li:nth-child(5) {
    padding: 34px 0;
  }
  .line3.foot-partners-list li:nth-child(6) {
    padding: 35px 0;
  }
  .line3b.foot-partners-list li{
    padding: 22px 0;
  }
  .line3b.foot-partners-list li:nth-child(1) {
    padding-right: 80px;
  }
  .line3b.foot-partners-list li:nth-child(2) {
    padding: 23px 0;
    padding-right: 35px;
  }
  
  .line4.foot-partners-list li{
    padding: 30px 0;
  }
  .line4.foot-partners-list li:nth-child(1) {
    padding-right: 38px;
  }
  .line4.foot-partners-list li:nth-child(2) {
    padding: 33px 0;
    padding-right: 24px;
  }
  .line4.foot-partners-list li:nth-child(3) {
    padding: 34px 0;
    padding-right: 38px;
  }
  .line4.foot-partners-list li:nth-child(4) {
    padding: 30px 0;
    padding-right: 38px;
  }
  .line4.foot-partners-list li:nth-child(5) {
    padding: 30px 0;
    padding-right: 38px;
  }
  .line4.foot-partners-list li:nth-child(6) {
    padding: 30px 0px;
    padding-right: 30px;
  }
  .line4.foot-partners-list li:nth-child(7) {
    padding: 33px 0px;
    padding-right: 30px;
  }
  .line4.foot-partners-list li:nth-child(8) {
    padding: 33px 0px;
  }
  
  .line5.foot-partners-list li{
    padding: 27px 0;
  }
  .line5.foot-partners-list li:nth-child(1) {
    padding-right: 35px;
  }
  .line5.foot-partners-list li:nth-child(2) {
    padding: 30px 0;
    padding-right: 35px;
  }
  .line5.foot-partners-list li:nth-child(3) {
    padding: 30px 0;
  }
  
  .line6.foot-partners-list li{
    padding: 30px 0;
  }
  .line6.foot-partners-list li:nth-child(1) {
    padding: 34px 0;
    padding-right: 38px;
  }
  .line6.foot-partners-list li:nth-child(2) {
    padding: 32px 0;
    padding-right: 38px;
  }
  .line6.foot-partners-list li:nth-child(3) {
    padding: 25px 0;
    padding-right: 38px;
  }
  .line6.foot-partners-list li:nth-child(4) {
    padding-right: 38px;
  }
  .line6.foot-partners-list li:nth-child(5) {
    padding-right: 38px;
  }
  .line6.foot-partners-list li:nth-child(6) {
    padding: 20px 0;
    padding-right: 38px;
  }
  .line6.foot-partners-list li:nth-child(7) {
    padding: 20px 0;
  }

.foot-partners-list li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.foot-partners-list li img {
  max-height: 100%;
}

@media only screen and (max-width: 1024px) {
  .conts-inner {
    width: 100%;
    margin: 0 auto;
    padding: 40px 10px;
  }
  .top-main-title-h {
    max-width: 460px;
    margin: auto 0px 0px;
  }
  .top-main {
    width: 100%;
    height: 35vh;
  }
  .foot-partners-list li {
    height: 60px;
    margin-bottom: 0px;
  }

  /* PARTNERS */
  .line1.foot-partners-list li:nth-child(1) {
    padding: 13px 0;
    padding-right: 30px;
  }
  .line1.foot-partners-list li:nth-child(2) {
    height: 63px;
    padding-right: 30px;
  }
  .line1.foot-partners-list li:nth-child(3) {
    padding: 13px 0;
    padding-right: 30px;
  }
  .line1.foot-partners-list li:nth-child(4) {
    padding: 5px 0;
  }

  .line2.foot-partners-list li:nth-child(1) {
    padding: 19px 0;
    padding-right: 35px;
  }
  .line2.foot-partners-list li:nth-child(2) {
    padding: 17px 0;
    padding-right: 35px;
  }
  .line2.foot-partners-list li:nth-child(3) {
    padding: 15px 0;
    padding-right: 35px;
  }
  .line2.foot-partners-list li:nth-child(4) {
    padding: 15px 0;
    padding-right: 35px;
  }
  .line2.foot-partners-list li:nth-child(5) {
    padding: 15px 0;
  }

  /* .line3.foot-partners-list li:nth-child(1) {
    padding: 18px 0;
    padding-right: 18px;
  } */
  .line3.foot-partners-list li:nth-child(1) {
    padding: 19px 0;
    padding-right: 18px;
  }
  .line3.foot-partners-list li:nth-child(2) {
    padding: 19px 0;
    padding-right: 18px;
  }
  .line3.foot-partners-list li:nth-child(3) {
    padding: 21px 0;
    padding-right: 18px;
  }
  .line3.foot-partners-list li:nth-child(4) {
    padding: 21px 0;
    padding-right: 18px;
  }
  .line3.foot-partners-list li:nth-child(5) {
    padding: 21px 0;
  }
  .line3.foot-partners-list li:nth-child(6) {
    padding: 22px 0;
  }

  .line3b.foot-partners-list li:nth-child(1) {
    padding: 14px 0;
    padding-right: 80px;
  }
  .line3b.foot-partners-list li:nth-child(2) {
    padding: 12px 0;
  }

  .line4.foot-partners-list li:nth-child(1) {
    padding: 19px 0;
    padding-right: 25px;
  }
  .line4.foot-partners-list li:nth-child(2) {
    padding: 19px 0;
    padding-right: 25px;
  }
  .line4.foot-partners-list li:nth-child(3) {
    padding: 21px 0;
    padding-right: 25px;
  }
  .line4.foot-partners-list li:nth-child(4) {
    padding: 18px 0;
    padding-right: 25px;
  }
  .line4.foot-partners-list li:nth-child(5) {
    padding: 18px 0;
    padding-right: 25px;
  }
  .line4.foot-partners-list li:nth-child(6) {
    padding: 19px 0;
    padding-right: 25px;
  }
  .line4.foot-partners-list li:nth-child(7) {
    padding: 19px 0;
    padding-right: 25px;
  }
  .line4.foot-partners-list li:nth-child(8) {
    padding: 19px 0;
  }

  .line5.foot-partners-list li:nth-child(1) {
    padding: 19px 0;
    padding-right: 35px;
  }
  .line5.foot-partners-list li:nth-child(2) {
    padding: 19px 0;
    padding-right: 35px;
  }
  .line5.foot-partners-list li:nth-child(3) {
    padding: 19px 0;
  }

  .line6.foot-partners-list li:nth-child(1) {
    padding: 20px 0;
    padding-right: 38px;
  }
  .line6.foot-partners-list li:nth-child(2) {
    padding: 20px 0;
    padding-right: 38px;
  }
  .line6.foot-partners-list li:nth-child(3) {
    padding: 17px 0;
    padding-right: 38px;
  }
  .line6.foot-partners-list li:nth-child(4) {
    padding: 18px 0;
    padding-right: 38px;
  }
  .line6.foot-partners-list li:nth-child(5) {
    padding: 18px 0;
    padding-right: 38px;
  }
  .line6.foot-partners-list li:nth-child(6) {
    padding: 10px 0;
    padding-right: 38px;
  }
  .line6.foot-partners-list li:nth-child(7) {
    padding: 10px 0;
  }
}

.pc {
  display: flex;
}
.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .foot-partners-list + .foot-partners-list {
      margin-top: 0px;
  }
  .foot-partners-list li {
      height: 50px;
      margin-bottom: 0px;
    }
}

@media only screen and (max-width: 480px) {
  .pc {
    display: none;
  }
  .sp {
    display: flex;
  }
  /* PARTNERS */
  .foot-partners-list li {
    height: 40px;
    margin-bottom: 0px;
  }

  .line1.foot-partners-list li:nth-child(1) {
    padding: 8px 0;
    padding-right: 8px;
  }
  .line1.foot-partners-list li:nth-child(2) {
    padding: 0px 0;
    height: 42px;
    padding-right: 8px;
  }
  .line1.foot-partners-list li:nth-child(3) {
    padding: 10px 0;
    padding-right: 8px;
  }
  .line1.foot-partners-list li:nth-child(4) {
    padding: 3px 0;
  }

  .line2.foot-partners-list li:nth-child(1) {
    padding: 13px 0;
    padding-right: 10px;
  }
  .line2.foot-partners-list li:nth-child(2) {
    padding: 10px 0;
    padding-right: 10px;
  }
  .line2.foot-partners-list li:nth-child(3) {
    padding: 10px 0;
    padding-right: 10px;
  }
  .line2.foot-partners-list li:nth-child(4) {
    padding: 10px 0;
    padding-right: 10px;
  }
  .line2.foot-partners-list li:nth-child(5) {
    padding: 10px 0;
  }

  .line3a.foot-partners-list li:nth-child(1) {
    padding: 12px 0;
    padding-right: 18px;
  }
  .line3a.foot-partners-list li:nth-child(2) {
    padding: 12px 0;
    padding-right: 18px;
  }
  .line3a.foot-partners-list li:nth-child(3) {
    padding: 15px 0;
    padding-right: 18px;
  }
  .line3a.foot-partners-list li:nth-child(4) {
    padding: 15px 0;
    padding-right: 18px;
  }
  .line3b.foot-partners-list li:nth-child(1) {
    padding: 14px 0;
    padding-right: 18px;
  }
  .line3b.foot-partners-list li:nth-child(2) {
    padding: 8px 0;
    padding-right: 18px;
  }
  .line3b.foot-partners-list li:nth-child(3) {
    padding: 8px 0;
  }

  .line4.foot-partners-list li:nth-child(1) {
    padding: 14px 0;
    padding-right: 8px;
  }
  .line4.foot-partners-list li:nth-child(2) {
    padding: 15px 0;
    padding-right: 8px;
  }
  .line4.foot-partners-list li:nth-child(3) {
    padding: 15px 0;
    padding-right: 8px;
  }
  .line4.foot-partners-list li:nth-child(4) {
    padding: 13px 0;
    padding-right: 8px;
  }
  .line4.foot-partners-list li:nth-child(5) {
    padding: 13px 0;
    padding-right: 8px;
  }
  .line4.foot-partners-list li:nth-child(6) {
    padding: 13px 0;
    padding-right: 8px;
  }
  .line4.foot-partners-list li:nth-child(7) {
    padding: 14px 0;
    padding-right: 8px;
  }
  .line4.foot-partners-list li:nth-child(8) {
    padding: 14px 0;
  }

  .line5.foot-partners-list li:nth-child(1) {
    padding: 13px 0;
    padding-right: 15px;
  }
  .line5.foot-partners-list li:nth-child(2) {
    padding: 13px 0;
    padding-right: 15px;
  }
  .line5.foot-partners-list li:nth-child(3) {
    padding: 13px 0;
  }

  .line6.foot-partners-list li:nth-child(1) {
    padding: 15px 0;
    padding-right: 15px;
  }
  .line6.foot-partners-list li:nth-child(2) {
    padding: 14px 0;
    padding-right: 15px;
  }
  .line6.foot-partners-list li:nth-child(3) {
    padding: 12px 0;
    padding-right: 15px;
  }
  .line6.foot-partners-list li:nth-child(4) {
    padding: 13px 0;
    padding-right: 15px;
  }
  .line6.foot-partners-list li:nth-child(5) {
    padding: 14px 0;
    padding-right: 15px;
  }
  .line6.foot-partners-list li:nth-child(6) {
    padding: 6px 0;
    padding-right: 15px;
  }
  .line6.foot-partners-list li:nth-child(7) {
    padding: 6px 0;
  }
}
/***********************************************/









/* foot-banner */
.foot-banner-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.foot-banner-list li {
    width: 49%;
}

@media only screen and (max-width: 767px) {
    .foot-banner-list li {
        width: 100%;
    }
    .foot-banner-list li:nth-child(1) {
        order: 2;
        margin-top: 15px;
    }
    .foot-banner-list li:nth-child(2) {
        order: 1;
    }
}


/* foot-icon */
.foot-icon {
    width: 100%;
    height: 100px;
    background: transparent linear-gradient(90deg, #DD2280 0%, #DF5047 50%, #281D81 79%, #000000 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}
.foot-icon-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}
.foot-icon-list li {
    width: 40px;
}
.foot-icon-list li + li {
    margin-left: 60px;
}

@media only screen and (max-width: 767px) {
    .foot-icon-list li + li {
        margin-left: 15px;
    }
}

@media only screen and (max-width: 480px) {
    .foot-icon-list li {
        width: 30px;
    }
}


/* ----------------------------------------------------
    共通footer
---------------------------------------------------- */
footer {
    width: 100%;
    height: 80px;
    background: #000000;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.footer-inner {
    max-width: 950px;
    margin: 0 auto;
    display: -webkit-box;
    display: flex;
}
.footer-inner-list + .footer-inner-list {
    margin-left: 40px;
}
.footer-inner-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}
.footer-inner-list li {
    font-size: 1.1rem;
    color: #fff;
}
.footer-inner-list li + li {
    margin-left: 25px;
}
.footer-inner-list li a {
    color: #fff;
}
.footer-inner-list-logo {
    width: 80px;
}

@media only screen and (max-width: 767px) {
    footer {
        height: 100px;
    }
    .footer-inner {
        padding: 0 10px;
        flex-wrap: wrap;
    }
    .footer-inner-list {
        width: 100%;
        flex-wrap: wrap;
    }
    .footer-inner-list + .footer-inner-list {
        margin-left: 0;
    }
    .footer-inner-list:first-child {
        margin-top: 10px;
        order: 2;
    }
    .footer-inner-list li {
        font-size: 0.7rem;
    }
    .footer-inner-list li + li {
        margin-left: 15px;
    }
}


/* ----------------------------------------------------
    メインコンテンツ共通
---------------------------------------------------- */
.m-conts {
    margin-top: 150px;
}
.m-conts-h {
    height: 80px;
    padding-bottom: 10px;
    font-size: 2.6rem;
    font-weight: 600;
    color: #002F5F;
    background: url(../img/logo_juichi_c.svg) right center no-repeat;
    background-size: 120px auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}
.m-conts-h::after {
    content: "";
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, #DD2280 0%, #DF5047 50%, #281D81 79%, #000000 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

.m-conts-block {
    padding: 40px 0;
    position: relative;
}
.m-conts-block::after {
    content: "";
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, #DD2280 0%, #DF5047 50%, #281D81 79%, #000000 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}
.m-conts-block-noborder{
    padding-bottom: 0;
}
.m-conts-block-noborder::after {
    content: "";
    width: 100%;
    height: 3px;
    background-image: initial;
    position: absolute;
    bottom: 0;
    left: 0;
}

@media only screen and (max-width: 767px) {
    .m-conts {
        margin-top: 0;
    }
    .m-conts-h {
        padding: 30px 0 10px;
        font-size: 2.0rem;
        background-size: 60px auto;
        background-position: right bottom 13px;
    }
}


/* ----------------------------------------------------
    PROFILE
---------------------------------------------------- */
.m-prof-main-img {
    width: 49%;
    float: left;
}
.m-prof-main-txt {
    width: 47%;
    color: #002F5F;
    float: right;
}
.m-prof-main-txt-h {
    font-size: 3.0rem;
    letter-spacing: 0.9rem;
}
.m-prof-main-txt-p {
    font-size: 2.0rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
}
.m-prof-main-txt-data {
    margin-top: 15px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.m-prof-main-txt-data dt {
    width: 20%;
    margin-bottom: 5px;
}
.m-prof-main-txt-data dd {
    width: 75%;
    margin-bottom: 5px;
}
.m-prof-main-txt-list {
    margin-top: 15px;
    font-size: 1.4rem;
}
.m-prof-main-txt-list li + li {
    margin-top: 8px;
}
.m-prof-pic {
    margin-top: 30px;
}
.m-prof-pic-img {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.m-prof-pic-img li {
    width: 49%;
}
.m-prof-pic-img li:nth-child(n+3) {
    margin-top: 2%;
}
.m-prof-txt {
    margin-top: 40px;
}
.m-prof-txt p {
    font-size: 1.4rem;
    line-height: 1.8;
}

@media only screen and (max-width: 767px) {
    .m-prof-main-txt-h {
        font-size: 2.0rem;
    }
    .m-prof-main-txt-p {
        font-size: 1.2rem;
    }
    .m-prof-main-txt-data {
        font-size: 1.0rem;
    }
    .m-prof-main-txt-data dt {
        width: 30%;
    }
    .m-prof-main-txt-data dd {
        width: 65%;
    }
    .m-prof-main-txt.txt-list {
        width: 100%;
        clear: both;
    }
    .m-prof-main-txt-list {
        margin-top: 10px;
        font-size: 1.0rem;
    }
    .m-prof-txt {
        margin-top: 20px;
    }
    .m-prof-txt p {
        font-size: 1.2rem;
        line-height: 1.5;
    }
}


/* ----------------------------------------------------
    PROFILE 資料ダウンロード
---------------------------------------------------- */
.m-dl-main-title {
    text-align: center;
    font-size: 2.0rem;
    color: #0458AD;
}
.m-dl-main-btn {
    width: 120px;
    margin: 15px auto 0;
}
.m-dl-main-ex {
    margin-top: 30px;
}
.m-dl-main-ex a {
    font-weight: 600;
    color: #F01A96;
}

@media only screen and (max-width: 767px) {
    .m-dl-main-title {
        font-size: 1.8rem;
    }
}


/* ----------------------------------------------------
    BIOGRAPHY
---------------------------------------------------- */
.m-bio-main {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.m-bio-main-img {
    width: 49%;
}
.m-bio-main-title {
    width: 47%;
    color: #000000;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.m-bio-main-title-cp {
    width: 80%;
    margin: 0 auto;
}
.m-bio-main-title-list {
    width: 80%;
    margin: auto auto 0;
    font-size: 12px;
}
.m-bio-main-title-list li {
    height: 45px;
    padding: 0 30px;
    background-color: #CE9B47;
    border-radius: 45px;
    text-align: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}
.m-bio-main-title-list li::before {
    content: "";
    width: 26px;
    height: 35px;
    background: url(../img/biography/img_title_bg_left.png) left center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}
.m-bio-main-title-list li::after {
    content: "";
    width: 26px;
    height: 35px;
    background: url(../img/biography/img_title_bg_right.png) left center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.m-bio-main-title-list li + li {
    margin-top: 20px;
}
.m-bio-txt {
    margin-top: 50px;
    font-size: 1.4rem;
}
.m-bio-conts {
    margin-top: 30px;
}
.m-bio-conts-tab-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.m-bio-conts-tab-list .dummy {
    border: none;
    display: none;
}
@media only screen and (max-width: 767px) {
    .m-bio-conts-tab-list .dummy {
        width: 32%;
        display: block;
    }
}

.m-bio-conts-tab-list .tab {
    width: 15%;
    height: 40px;
    padding: 5px 10px;
    color: #0458AD;
    text-align: center;
    background: #ffffff;
    border: 1px solid #0458AD;
    border-radius: 20px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
}
.m-bio-conts-tab-list .tab.is-active {
    color: #ffffff;
    background: #0458AD;
    transition: .2s;
}
.m-bio-conts-block {
    padding: 0 40px;
    margin-top: 40px;
    background: #F5FAFA;
    display: none;
}
.m-bio-conts-block.is-show {
    display: block;
}
.m-bio-conts-block-inner {
    padding: 40px 0 45px;
}
.m-bio-conts-block-inner + .m-bio-conts-block-inner {
    border-top: 3px solid #0458AD;
}
.m-bio-conts-block-h {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0458AD;
}
.m-bio-conts-block-list {
    margin-top: 20px;
}
.m-bio-conts-block-list li {
    padding-left: 20px;
    font-size: 1.4rem;
    position: relative;
}
.m-bio-conts-block-list li::before {
    content: "-";
    position: absolute;
    top: 0;
    left: 5px;
}
.m-bio-conts-block-list li + li {
    margin-top: 10px;
}
.m-bio-conts-block-pic {
    margin-top: 30px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.m-bio-conts-block-pic li {
    width: 49%;
    overflow: hidden;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}
.m-bio-conts-block-pic li::before {
    content: "";
    display: block;
    padding-top: 66.5%;
}
.m-bio-conts-block-pic li.img-v {
    background: #222222;
}
.m-bio-conts-block-pic li:nth-child(n+3) {
    margin-top: 15px;
}
.m-bio-conts-block-pic li img {
    width: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.m-bio-conts-block-pic li.img-v img {
    width: auto;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .m-bio-main-title-cp {
        width: 100%;
    }
    .m-bio-main-title-list {
        width: 100%;
        margin-top: 10px;
        font-size: 1.0rem;
    }
    .m-bio-main-title-list li {
        padding: 0 20px;
    }
    .m-bio-main-title-list li::before {
        width: 16px;
        height: 25px;
        left: 6px;
    }
    .m-bio-main-title-list li::after {
        width: 16px;
        height: 25px;
        right: 6px;
    }
    .m-bio-main-title-list li + li {
        margin-top: 10px;
    }
    .m-bio-txt {
        margin-top: 30px;
        font-size: 1.2rem;
    }
    .m-bio-conts-tab-list .tab {
        width: 32%;
    }
    .m-bio-conts-tab-list .tab.before {
        /* width: 66%; */
        width: 100%;
    }
    .m-bio-conts-tab-list .tab:nth-child(n+4) {
        margin-top: 10px;
    }
    .m-bio-conts-block {
        padding: 0 20px;
        margin-top: 30px;
    }
    .m-bio-conts-block-inner {
        padding: 20px 0 25px;
    }
    .m-bio-conts-block-h {
        font-size: 1.4rem;
    }
    .m-bio-conts-block-list {
        margin-top: 10px;
    }
    .m-bio-conts-block-list li {
        font-size: 1.2rem;
    }
    .m-bio-conts-block-list li + li {
        margin-top: 5px;
    }
    .m-bio-conts-block-pic {
        margin-top: 20px;
    }
    .m-bio-conts-block-pic li {
        width: 100%;
    }
    .m-bio-conts-block-pic li + li {
        margin-top: 10px;
    }
}


/* ----------------------------------------------------
    ASSO MOTOR SPORTS
---------------------------------------------------- */
.m-asso-main-img {
    max-width: 300px;
    margin: 30px auto 60px;
}
.m-asso-main-txt-p {
    font-size: 1.4rem;
}
.m-asso-pic {
    margin-top: 30px;
}
.m-asso-pic-img {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.m-asso-pic-img li {
    width: 49%;
}
.m-asso-pic-img li:nth-child(n+3) {
    /* margin-top: 2%; */
}
.m-asso-gr86 {
    margin-top: 40px;
}
.m-asso-gr86-logo {
    max-width: 450px;
    margin: 0 auto;
}
.m-asso-gr86-txt {
    margin-top: 15px;
}
.m-asso-gr86-txt a {
    color: #F01A96;
}
.m-car-info {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.m-car-info2 {
    padding-top: 20px;
    border-top: 1px solid #ccc;
    margin-top: 40px;
}

.m-car-info-list {
    width: 80%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    font-weight: 500;
    color: #002F5F;
}
.m-car-info-logo {
    width: 15%;
}
.m-car-info-list dt {
    width: 15%;
}
.m-car-info-list dd {
    width: 85%;
}
.m-car-info-img {
    margin-top: 30px;
}
.m-car-goods-img {
    margin-top: 0px;
    width:45%;
    margin:0 10px;
    display: inline-flex;
    vertical-align: middle;
}
.m-car-goods-img img{
}

@media only screen and (max-width: 767px) {
    .m-asso-main-txt-p {
        font-size: 1.2rem;
    }
    .m-asso-gr86-txt {
        font-size: 1.2rem;
    }
    .m-car-info-list {
        width: 100%;
        margin-top: 20px;
        font-size: 1.0rem;
        order: 2;
    }
    .m-car-info-list dt {
        width: 20%;
    }
    .m-car-info-list dd {
        width: 75%;
    }
    .m-car-info-logo {
        width: 160px;
        margin: 0 auto;
        order: 1;
    }
}

@media only screen and (max-width: 480px) {
    .m-car-info-logo {
        width: 120px;
    }
    .m-car-goods-img {
        width: 100%;
        margin: 0;
    }
}

/* ----------------------------------------------------
    ほな行こCAR！
---------------------------------------------------- */
.m-honacar-block {
    position: relative;
    padding: 0;
}
.m-honacar-main-img {
    max-width: 1000px;
    margin: 10px auto 10px;
}
.m-honacar-main-txt-p {
    font-size: 1.4rem;
}
.m-honacar-pic {
    margin-top: 30px;
}
.m-honacar-pic-img {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.m-honacar-pic-img li {
    width: 49%;
}
.m-honacar-pic-img li:nth-child(n+3) {
    margin-top: 2%;
}
.m-honacar-block-detail {
    position: relative;
    padding: 0 0 1px 0;
}
.m-honacar-block-title {
    margin-top: 60px;
}
.m-honacar-bt-txt {
    margin-top: 15px;
}
.m-honacar-bt-txt a {
    color: #F01A96;
}
.m-honacar-bt-pic {
    margin-top: 5px;
}
.m-honacar-bt-pic-img {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.m-honacar-event-sponsor {
    margin: 30px 0;
}
.m-honacar-event-sponsor-list {
    margin: 0 auto;
    display: -webkit-box;
    display: flex;
}
.m-honacar-event-sponsor-list li {
    margin-right: 35px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}
.m-honacar-event-sponsor-list li:first-child{
    margin: auto 35px auto 0;
    min-width: max-content;
}
.m-honacar-block-detail::after {
    content: "";
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, #DD2280 0%, #DF5047 50%, #281D81 79%, #000000 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}
.m-honacar-sns {
    margin-top: 50px;
    text-align: center;
}
p.m-honacar-sns-txt-p {
    font-size: 1.8rem;
}
.m-honacar-sns-list {
    margin: 0 auto;
    display: -webkit-box;
    display: flex;
    margin-top: 20px;
}
.m-honacar-sns-list li {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin: 0 auto;
}
.m-honacar-event-partners {
    margin-top: 100px;
}
.m-honacar-event-partners-h {
    padding-bottom: 3px;
    font-size: 2.0rem;
    font-weight: 600;
    color: #9b3437;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}
.m-honacar-event-partners-h::after {
    content: "";
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, #9b3437 0%, #9b3437 50%, #9b3437 79%, #9b3437 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}
.m-honacar-event-partners-list {
    margin: 0 auto;
    display: -webkit-box;
    display: flex;
    margin-top: 20px;
}
.m-honacar-event-partners-list li {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin: 0 auto;
}

.m-conts-block.m-event-block {
    display: inline-block;
}
.m-event-info {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 65%;
    float: left;
}
.m-event-info-list {
    width: 100%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    font-weight: 500;
    color: #002F5F;
    font-size: 1.3em;
}
.m-event-info-list dt {
    width: 30%;
}
.m-event-info-list dd {
    width: 70%;
}
.m-event-info-imgR {
    margin-top: -100px;
    width: 35%;
    float: right;
    padding: 0 10px;
}
.m-event-info-imgL {
    margin-top: 70px;
    width: 50%;
    float: left;
}
h2.m-event-main-title {
    font-size: 1.3em;
    border-bottom: 3px solid #c32a60;
    margin: 0 0 15px 0;
    padding: 0 5px;
}
h3.m-event-topic-title {
    margin: 20px 0 0 0;
    display: inline-flex;
    width: 100%;
    font-size: 1.1em;
    font-weight: bold;
    color: #111;
}
h4.m-event-topic-header {
    display: inline-flex;
    width: 100%;
    border-bottom: 1px #0000ff solid;
    padding: 0 10px;
    margin-top: 20px;
    font-weight: bolder;
    color: #111;
}
h5.m-event-sub-title {
    border-left: 8px #888 solid;
    padding: 0px 0px 2px 4px;
    margin-bottom: 10px;
    line-height: 1em;
    font-size: 1.1em;
    color: #111;
}
p.m-event-topic-detail {
    padding: 10px 10px 0 10px;
}
p.m-event-topic-detail-small {
    padding: 10px 10px 10px 10px;
    font-size: 0.8em;
}
.m-event-info-imgR2 {
    margin-top: 0px;
    width: 35%;
    float: right;
    padding: 0 0 0 20px;
}
.m-honacar-block .m-asso-pic-img li {
    width: 33%;
}
.m-event-info-imgR2 .m-asso-pic-img li {
    width: 100%;
    margin-bottom: 10px;
}
.m-ikocar-youtube iframe {
    max-height: 563px;
}
@media only screen and (max-width: 767px) {
    .m-honacar-main-txt-p {
        font-size: 1.2rem;
    }
    .m-event-info-imgR2 {
        margin-top: -880px;
    }
    .m-ikocar-youtube iframe {
        max-height: 398px;
    }
}
@media only screen and (max-width: 980px) {
    .m-ikocar-youtube iframe {
        max-height: 425px;
    }
}

@media only screen and (max-width: 480px) {
    .m-event-info-imgR2 {
        margin-top: initial;
        width: initial;
        float: left;
        padding: initial;
        display: flex;
    }
    .m-honacar-block .m-asso-pic-img li {
        width: 100%;
        margin-bottom: 10px;
    }
    .m-honacar-event-sponsor-list {
        display: inline-table;
    }
    .m-honacar-event-sponsor-list li {
        margin: 5px 5%;
        display: inline-block;
        width: 40%;
    }
    .m-honacar-event-sponsor-list li:first-child{
        width: 100%;
        text-align: center;
        margin: 0;
    }
    li.m-honacar-event-sponsor-li-single {
        width: 90%;
        margin: 0px 5%;
        text-align: center;
    }
    .m-honacar-sns {
        margin-top: 50px;
        text-align: center;
    }
    p.m-honacar-sns-txt-p {
        font-size: 1.5rem;
    }
    .m-honacar-sns-list {
        margin: 0 auto;
        display: -webkit-box;
        display: inline-table;
    }
    .m-honacar-sns-list li {
        margin: 30px 0;
    }
    .m-honacar-event-partners-list {
        display: inline-table;
    }
    .m-honacar-event-partners-list li {
        margin: 5px 5%;
        display: inline-block;
        width: 40%;
    }
    .m-honacar-event-partners {
        margin-top: 50px;
    }

    .m-event-info {
        width: 100%;
    }
    .m-event-info-list {
        font-size: 1.2rem;
    }
    .m-event-info-imgR {
        margin-top: 20px;
        width: 100%;
    }
    .m-event-info-imgL {
        margin-top: 20px;
        width: 100%;
    }
    .m-ikocar-youtube iframe {
        max-height: 200px;
    }
}

/* ----------------------------------------------------
    PRIVACY POLICY
---------------------------------------------------- */
.m-conts-block.m-privacy-block::after {
    content: none;
}
.m-privacy-main p {
    margin-bottom: 30px;
    font-size: 1.6rem;
}
.m-privacy-main h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
    .m-privacy-main p {
        margin-bottom: 25px;
        font-size: 1.2rem;
    }
    .m-privacy-main h3 {
        margin-bottom: 15px;
        font-size: 1.6rem;
    }
}

/* ----------------------------------------------------
    CONTACT
---------------------------------------------------- */
.m-conts-block.m-contact-info::after {
    content: none;
}
.m-conts-info-list {
    font-size: 1.2rem;
}
.m-conts-info-list li {
    padding-left: 15px;
    position: relative;
}
.m-conts-info-list li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 3px;
}
.m-conts-info-list li + li {
    margin-top: 10px;
}
.m-contact-main form {
    max-width: 500px;
    margin: 0 auto;
}
.m-contact-main label {
    width: 100%;
    font-size: 1.4rem;
}
.m-contact-main label span {
    margin-left: 5px;
    color: #db1748;
}
.m-contact-main input[type="text"] {
    width: 100%;
    min-height: 40px;
    margin: 5px 0 20px;
    padding: 10px;
    font-size: 1.4rem;
    color: #363636;
    border: 1px solid #ccc;
}
.m-contact-main textarea {
    width: 100%;
    min-height: 150px;
    margin: 5px 0 20px;
    padding: 10px;
    font-size: 1.4rem;
    color: #363636;
    border: 1px solid #ccc;
}
.m-contact-btn {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
}
.m-contact-btn button {
    width: 140px;
    height: 40px;
    margin: 20px auto 0;
    border: none;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    background: #0458AD;
}

@media only screen and (max-width: 767px) {
    .m-contact-main label {
        font-size: 1.2rem;
    }
}

/* ----------------------------------------------------
    PHOTO
---------------------------------------------------- */
.m-photo .m-conts-h span.fw-n {
    margin-left: 10px;
}
.m-photo-block-h {
    margin-bottom: 30px;
    color: #0458AD;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
}
.m-photo-block-h span + span {
    margin-left: 10px;
}
.m-photo-block-h span img {
    width: 25px;
}
.m-photo-main-img {
    width: 49%;
    float: left;
}
.m-photo-main-img img + img {
    margin-top: 20px;
}
.m-photo-main-txt {
    width: 47%;
    color: #002F5F;
    float: right;
}
.m-photo-main-txt-h {
    font-size: 3.0rem;
    letter-spacing: 0.9rem;
}
.m-photo-main-txt-p {
    font-size: 2.0rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
}
.m-photo-main-txt-data {
    margin-top: 15px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}
.m-photo-main-txt-data li + li {
    margin-top: 5px;
}

.m-photo-txt {
    width: 47%;
    margin-top: 20px;
    font-size: 1.4rem;
    line-height: 1.8;
    float: right;
}
.m-photo-comment {
    width: 100%;
    margin-top: 30px;
    font-size: 1.4rem;
    line-height: 1.8;
    color: #002F5F;
}
.m-photolist-box + .m-photolist-box {
    margin-top: 30px;
}
.m-photolist-title {
    max-width: 600px;
    margin: 0 auto 15px;
    padding: 10px 5px;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #0458AD;
    text-align: center;
    border: 4px solid #0458AD;
}
.m-photolist-img {
    max-width: 800px;
    margin: 0 auto 20px;
}
.m-photolist-next {
    color: #002F5F;
    text-align: right;
}
.m-photolist-next span {
    padding-right: 30px;
    position: relative;
}
.m-photolist-next span::before {
    content: "";
    width: 15px;
    height: 8px;
    background-color: #002F5F;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}
.m-photolist-next span::after {
    content: "";
    border: 9px solid transparent;
    border-left: 10px solid #002F5F;
    position: absolute;
    top: 50%;
    right: -9px;
    transform: translateY(-50%);
}
.m-photolist-more {
    margin: 30px 0 0;
    color: #F01A96;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
}
.m-photolist-more span.more-icon {
    width: 30px;
    margin-left: 5px;
}

@media only screen and (max-width: 767px) {
    .m-photo-main-txt-h {
        font-size: 2.0rem;
    }
    .m-photo-main-txt-p {
        font-size: 1.2rem;
    }
    .m-photo-main-txt-data {
        font-size: 1.0rem;
    }
    .m-photo-txt {
        width: 100%;
        margin-top: 20px;
        font-size: 1.2rem;
        line-height: 1.5;
        float: none;
    }
    .m-photo-comment {
        margin-top: 20px;
        font-size: 1.2rem;
        line-height: 1.5;
    }
}

.sp {
    display: none;
}
@media only screen and (max-width: 480px){
    .pc {
        display: none;
    }
    .sp {
        display: flex;
    }
}
