@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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, font, 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 {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

body, table, input, textarea, select, option {
  font-family: 'Noto Sans JP', sans-serif;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
  max-width: 100%;
}

a {
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}

a,
a:link {
  color: #000;
  text-decoration: none;
}

a:visited {
  color: #000;
}

a:hover {
  color: #000;
}

a:active {
  color: #000;
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
  min-width: 1200px;
  color: #000;
  font-size: 1.3rem;
  line-height: 1.5;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  background-color: #FFF;
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  body {
    min-width: inherit;
  }
}

#container {
  text-align: left;
  overflow: hidden;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

@media all and (min-width: 897px) {
  .sp {
    display: none !important;
  }
}

@media all and (max-width: 896px) {
  body {
    min-width: inherit;
    font-size: 1.2rem;
  }
  a:hover,
  a:hover img {
    opacity: 1 !important;
  }
  .pc {
    display: none !important;
  }
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#gHeader h1 {
  width: 230px;
}

#gHeader h1 a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: 9999;
}

#gHeader .hBtn {
  width: 300px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#gHeader .hBtn a {
  display: block;
  padding: 19px;
  background: url(img/common/icon04.png) no-repeat left 18px center/6px auto;
  border: 1px solid #000;
}

@media all and (max-width: 896px) {
  #gHeader {
    padding: 15px;
  }
  #gHeader h1 {
    width: 139px;
  }
  #gHeader .hBtn {
    width: 158px;
    font-size: 1.3rem;
  }
  #gHeader .hBtn a {
    padding: 10px 10px 10px 20px;
    background: url(img/common/icon04.png) no-repeat left 6px center/6px auto;
  }
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
  padding-bottom: 35px;
  text-align: center;
  background: #fff;
}

#gFooter .pageTop {
  margin-bottom: 49px;
  text-align: center;
  background: #ECF0F3;
}

#gFooter .pageTop a {
  padding: 17px 0 9px;
  display: block;
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}

#gFooter .pageTop a:hover {
  background: rgba(0, 0, 0, 0.1);
}

#gFooter .pageTop img {
  width: 18px;
}

#gFooter .fLogo {
  margin: 0 auto 46px;
  width: 192px;
}

#gFooter .copyright {
  font-size: 1.2rem;
  font-weight: bold;
}

@media all and (max-width: 896px) {
  #gFooter .fLogo {
    margin-bottom: 30px;
    width: 139px;
  }
  #gFooter .pageTop a:hover {
    background: rgba(0, 0, 0, 0);
  }
  #gFooter .copyright {
    font-size: 1rem;
  }
}

/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* flex */
.flex, .flexA, .flexB, .flexC {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flexA {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flexB {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flexC {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
  width: 300px;
}

.comBtn a {
  padding: 20px;
  height: 60px;
  display: block;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
  background: #0099DD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}

.comBtn a span {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 2;
}

.comBtn a:hover {
  color: #000;
}

.comBtn a::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  content: '';
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}

.comBtn a:hover::after {
  left: 0;
  background: #fff;
}

.comBtn a::before {
  margin-top: -5px;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 11px;
  background: url(img/common/icon01.png) no-repeat top left/6px auto;
  content: '';
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
  z-index: 3;
}

.comBtn a:hover::before {
  background: url(img/common/icon02.png) no-repeat top left/6px auto;
}

@media all and (max-width: 896px) {
  .comBtn {
    width: auto;
  }
  .comBtn a {
    padding: 10px;
    height: 45px;
    color: #fff;
  }
  .comBtn a:hover {
    color: #fff;
  }
  .comBtn a::after {
    display: none;
  }
  .comBtn a::before {
    background: url(img/common/icon01.png) no-repeat top left/6px auto;
  }
  .comBtn a:hover::before {
    background: url(img/common/icon01.png) no-repeat top left/6px auto;
  }
}

/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
  margin: 0 auto;
  width: 1160px;
}

/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.headLine01 {
  margin-bottom: 40px;
  font-size: 4.5rem;
  text-align: center;
}

.headLine01 > span {
  padding: 0 10px 4px;
  position: relative;
}

.headLine01 > span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: url(img/common/bg01.png) no-repeat top left/auto 3px;
  content: '';
}

.headLine01 span span {
  color: #0099DD;
}

.headLine01 small {
  margin-top: 9px;
  font-size: 1.3rem;
  display: block;
}

@media all and (max-width: 896px) {
  .headLine01 {
    margin-bottom: 26px;
    font-size: 3rem;
  }
  .headLine01 > span {
    padding: 0 10px 4px;
  }
  .headLine01 small {
    margin-top: 9px;
    font-size: 1rem;
  }
}

.headLine02 {
  margin-bottom: 20px;
  font-size: 4.4rem;
  font-weight: bold;
  line-height: 1.3636;
}

.headLine02 span {
  color: #0099DD;
}

@media all and (max-width: 896px) {
  .headLine02 {
    margin-bottom: 20px;
    font-size: 3rem;
    line-height: 1.2666;
    text-align: center;
  }
  .headLine02 span {
    color: #0099DD;
  }
}

.headLine03 {
  margin-left: -50px;
  padding: 0 0 20px 50px;
  color: #0099DD;
  font-size: 3.4rem;
  background: url(img/common/bg02.png) no-repeat left bottom/auto 12px;
}

@media all and (max-width: 896px) {
  .headLine03 {
    margin: 0 0 5px -15px;
    padding: 0 0 15px 15px;
    font-size: 2.4rem;
    line-height: 1.36;
  }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .content {
    padding: 0 15px;
    width: auto !important;
  }
}

.fadein_y {
  opacity: 0;
  -ms-transform: translate(0, 40px);
      transform: translate(0, 40px);
  -webkit-transform: translate(0, 40px);
  -o-transition: all 1s;
  transition: all 1s;
  -webkit-transition: all 1s;
}

.fadein_y.scrollin {
  opacity: 1;
  -ms-transform: translate(0, 0);
      transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/*------------------------------------------------------------
	index
------------------------------------------------------------*/
.top #gHeader h1 {
  position: relative;
}

.top #gHeader h1 .whiteBg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: #FFF;
  opacity: 0;
}

.top .mainVisual {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100vh;
  z-index: -1;
}

.top .mainVisual .bg01 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(img/index/mv01.png) no-repeat center top/cover;
  -webkit-transition: all ease 3s;
  -o-transition: all ease 3s;
  transition: all ease 3s;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
      transform: scale(1.3);
  z-index: -1;
}

.top .mainVisual .bg01.show {
  -webkit-transform: none;
  -ms-transform: none;
      transform: none;
}

.top .mainVisual .bg02 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(img/index/mv02.png) no-repeat center top/cover;
  -webkit-transition: all ease 7s;
  -o-transition: all ease 7s;
  transition: all ease 7s;
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
      transform: scale(1.4);
  z-index: -1;
}

.top .mainVisual .bg02.show {
  -webkit-transform: none;
  -ms-transform: none;
      transform: none;
}

.top .mainVisual p {
  position: absolute;
  top: 60%;
  left: 75px;
  font-size: 4.4rem;
  font-weight: bold;
  z-index: -1;
}

.top .mainVisual .rBox {
  width: 37.45vw;
  z-index: -1;
}

.top .mainVisual .whiteBg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #FFF;
  opacity: 0;
}

.top .show {
  background: url(img/index/mv.jpg) no-repeat center top/cover;
}

.top #main {
  margin-top: 100vh;
  padding-top: 113px;
  position: relative;
  z-index: 10;
}

.top #main .blackBox {
  background: #000;
  overflow: hidden;
}

.top #main .sec01 {
  margin-bottom: 121px;
  color: #000;
  overflow: hidden;
}

.top #main .sec01 .bgBox {
  background: url(img/index/bg01.png) no-repeat left top/50vw auto, url(img/index/bg02.png) no-repeat right bottom/50vw auto;
}

.top #main .sec01 .inner {
  margin: 0 auto;
  padding: 74px 0 65px;
  width: 505px;
  font-size: 2rem;
  line-height: 2.5;
  text-align: center;
  font-weight: 400;
  letter-spacing: 2px;
}

.top #main .sec01 .inner p:not(:last-child) {
  margin-bottom: 51px;
}

.top #main .sec01 .inner .photo {
  margin-bottom: 7px;
}

.top #main .sec01 .inner .photo + p {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0;
}

.top #main .sec02 {
  margin-bottom: 445px;
  min-height: 950px;
  position: relative;
  background: url(img/index/bg03.jpg) no-repeat center top/cover;
}

.top #main .sec02 .inner {
  padding: 100px 0 131px 30px;
  margin-left: -310px;
  position: absolute;
  width: 940px;
  left: 50%;
  top: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top #main .sec02 .inner .title {
  margin-bottom: 21px;
  font-size: 9rem;
  line-height: 1.111;
}

.top #main .sec02 .inner .blue {
  color: #0099DD;
}

.top #main .sec02 .inner .lBox {
  margin-right: 30px;
  width: 460px;
}

.top #main .sec02 .inner .rBox {
  width: 420px;
  height: 237px;
}

.top #main .sec02 .inner .rBox iframe {
  width: 420px !important;
  height: 237px !important;
  vertical-align: top;
}

.top #main .sec02 .inner .vBox p {
  margin-bottom: 25px;
  font-size: 1.8rem;
  line-height: 1.7778;
  font-weight: 400;
}

.top #main .sec02 .inner .vBox .text {
  margin-right: -260px;
}

.top #main .sec02 .inner .vBox .comBtn {
  position: relative;
  z-index: 2;
}

.top #main .sec02 .linkList {
  margin-left: -500px;
  position: absolute;
  width: 995px;
  bottom: -400px;
  left: 50%;
  font-weight: 700;
  z-index: 2;
}

.top #main .sec02 .linkList li a .pho {
  position: relative;
}

.top #main .sec02 .linkList li a .pho::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 153, 221, 0.4);
  content: '';
  opacity: 0;
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}

.top #main .sec02 .linkList li a:hover .pho::after {
  opacity: 1;
}

.top #main .sec02 .linkList li a:hover .link {
  color: #fff;
  background: #0099DD url(img/common/icon01.png) no-repeat right 13px center/6px auto;
}

.top #main .sec02 .linkList li .pho {
  padding: 10px 10px 28px;
  width: 472px;
  height: 286px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(img/common/bg03.jpg) no-repeat left top/cover;
}

.top #main .sec02 .linkList li .link {
  padding: 13px;
  text-align: center;
  background: #fff url(img/common/icon02.png) no-repeat right 13px center/6px auto;
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}

.top #main .sec02 .linkList li:nth-child(2) .pho {
  background-image: url(img/common/bg04.jpg);
}

.top #main .sec02::after {
  position: absolute;
  bottom: -445px;
  height: 445px;
  left: 0;
  width: 100%;
  background: #000;
  content: '';
}

.top #main .sec03 {
  padding: 50px 0 53px;
  background: #ECF0F3;
  overflow: hidden;
}

.top #main .sec03 .listList li {
  width: 572px;
  text-align: center;
  font-weight:  ;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}

.top #main .sec03 .listList li a {
  padding: 23px 17px 20px;
  display: block;
  border: 2px solid #fff;
}

.top #main .sec03 .listList li a:hover {
  padding: 23px 17px 20px;
  border: 2px solid #0099DD;
}

.top #main .sec03 .listList li a:hover .ttl {
  color: #0099DD;
}

.top #main .sec03 .listList li a:hover .ttl span {
  color: #000;
}

.top #main .sec03 .listList li .ttl {
  margin-bottom: 30px;
  font-size: 3.6rem;
  line-height: 1.65;
}

.top #main .sec03 .listList li .ttl span {
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
}

.top #main .sec03 .listList li .txt {
  margin-top: -10px;
  font-size: 2.1rem;
  line-height: 1.6;
}

.top #main .sec04 {
  margin-top: -2px;
  padding: 50px 0 100px;
  position: relative;
  background: #fff;
  overflow: hidden;
}

.top #main .sec04 .imglist {
  min-height: 400px;
}

.top #main .sec04 .imglist .content {
  width: 980px;
}

.top #main .sec04 .imglist li {
  margin-bottom: 10px;
  padding: 40px 0;
  background: url(img/index/bg07.jpg) no-repeat center top/cover;
}
.top #main .sec04 .imglist li.hatakeyama {
  background: url(img/index/bg07-hatakeyama@2x.jpg) no-repeat center top/cover;
}
.top #main .sec04 .imglist li.okubo {
  background: url(img/index/bg07-okubo@2x.jpg) no-repeat center top/cover;
}
.top #main .sec04 .imglist li.okubo .content{
position:relative;
}
.top #main .sec04 .imglist li.okubo .credit{
  position: absolute;
  bottom:0;
  right:5px;
}
@media all and (max-width: 1000px) {
  .top #main .sec04 .imglist li.okubo .credit{
    bottom:50px;
  }
}
.top #main .sec04 .imglist li.uehara {
  background: url(img/index/bg07-uehara@2x.jpg) no-repeat center top/cover;
}

.top #main .sec04 .imglist li:last-child {
  margin-bottom: 0;
}

.top #main .sec04 .imglist .ttl {
  margin-bottom: 50px;
  font-size: 3rem;
  font-weight: 400;
}

.top #main .sec04 .imglist .text {
  font-size: 1.4rem;
}

.top #main .sec04 .imglist .name {
  margin-bottom: 4px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.top #main .sec04 .imglist .en {
  margin-bottom: 19px;
  font-size: 1.6rem;
  font-weight: 700;
}

.top #main .sec04 .imglist .en span {
  color: #0099DD;
}

.top #main .sec04 .imglist .comBtn {
  width: 370px;
}

.top #main .sec04 .imglist .comBtn a {
  height: 44px;
}

.top #main .sec04 .nextathlete {
  margin-top: 18px;
  min-height: 400px;
  background: url("img/index/next-athlete-txt.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #ECF0F3;
}

@media all and (max-width: 1000px) {
  .top #main .sec04 .nextathlete {
    background: url("img/index/sp_next-athlete-txt.jpg");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #ECF0F3;
  }
}


@media all and (max-width: 896px) {
  .top .mainVisual {
    padding: 20px 15px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .top .mainVisual .bg01 {
    background-image: url(img/index/sp_mv01.png);
  }
  .top .mainVisual .bg02 {
    background-image: url(img/index/sp_mv02.png);
  }
  .top .mainVisual p {
    margin-top: 115px;
    top: 55%;
    left: 15px;
    font-size: 2.1rem;
  }
  .top .mainVisual .rBox {
    width: 54.5vw;
    max-width: 300px;
  }
  .top .show {
    background-image: url(img/index/sp_mv.jpg);
  }
  .top #main {
    margin-top: 100vh;
    padding-top: 113px;
  }
  .top #main .sec01 {
    margin-bottom: 21px;
  }
  .top #main .sec01 .bgBox {
    background: url(img/index/sp_bg01.png) no-repeat left top/50vw auto, url(img/index/sp_bg02.png) no-repeat right bottom/50vw auto;
  }
  .top #main .sec01 .inner {
    padding: 74px 0 65px;
    width: auto;
    font-size: 1.5rem;
    line-height: 3;
  }
  .top #main .sec01 .inner p:not(:last-child) {
    margin-bottom: 7px;
  }
  .top #main .sec01 .inner .photo {
    margin: 0 auto -5px;
    width: 277px;
  }
  .top #main .sec01 .inner .photo + p {
    font-size: 2rem;
  }
  .top #main .sec02 {
    margin-bottom: 50px;
    min-height: auto;
    position: relative;
    background: #000 url(img/index/sp_bg03.jpg) no-repeat center top/100% auto;
  }
  .top #main .sec02 .inner {
    margin-bottom: 60px;
    padding: 58px 15px 0;
    margin-left: 0;
    width: auto;
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    left: auto;
    top: auto;
    font-size: 1.4rem;
  }
  .top #main .sec02 .inner .inn {
    width: 68%;
  }
  .top #main .sec02 .inner .title {
    margin: 5px 0 10px;
    font-size: 3rem;
    line-height: 1.2;
  }
  .top #main .sec02 .inner .lBox {
    margin-right: 0;
    width: 100%;
  }
  .top #main .sec02 .inner .lBox .comBtn {
    width: auto;
  }
  .top #main .sec02 .inner .vBox p {
    margin-bottom: 14px;
    font-size: 1.3rem;
    line-height: 1.54;
  }
  .top #main .sec02 .inner .vBox .text {
    margin-right: 0 !important;
    margin-bottom: 30px;
  }
  .top #main .sec02 .rBox {
    margin-bottom: 21px;
    width: 100% !important;
    height: 0 !important;
    padding-bottom: 56%;
  }
  .top #main .sec02 .rBox iframe {
    width: 100% !important;
    width: 100% !important;
  }
  .top #main .sec02 .linkList {
    margin: 0 15px;
    position: static;
    width: auto;
    display: block;
  }
  .top #main .sec02 .linkList li {
    margin-bottom: 20px;
  }
  .top #main .sec02 .linkList li a:hover .pho::after {
    display: none;
  }
  .top #main .sec02 .linkList li a:hover .link {
    color: #000;
    background: #fff url(img/common/icon02.png) no-repeat right 13px center/6px auto;
  }
  .top #main .sec02 .linkList li .pho {
    padding: 10px;
    width: auto;
    height: 200px;
    background-image: url(img/common/sp_bg03.jpg);
  }
  .top #main .sec02 .linkList li .link {
    padding: 10px;
    font-size: 1.3rem;
  }
  .top #main .sec02 .linkList li:last-child {
    margin-bottom: 0;
  }
  .top #main .sec02 .linkList li:nth-child(2) .pho {
    background-image: url(img/common/sp_bg04.jpg);
  }
  .top #main .sec02::after {
    position: absolute;
    bottom: -50px;
    height: 50px;
    left: 0;
    width: 100%;
    background: #000;
    content: '';
  }
  .top #main .sec03 {
    padding: 45px 0 53px;
    background: #ECF0F3;
  }
  .top #main .sec03 .content {
    padding: 0 15px;
    width: auto;
  }
  .top #main .sec03 .listList li {
    margin-bottom: 15px;
    width: auto;
  }
  .top #main .sec03 .listList li a:hover {
    padding: 23px 17px 20px;
    border: 2px solid #fff;
  }
  .top #main .sec03 .listList li a:hover .ttl {
    color: #000;
  }
  .top #main .sec03 .listList li a:hover .ttl span {
    color: #000;
  }
  .top #main .sec03 .listList li .ttl {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
  .top #main .sec03 .listList li .ttl span {
    font-size: 1rem;
  }
  .top #main .sec03 .listList li .txt {
    margin-top: -6px;
    font-size: 1.3rem;
  }
  .top #main .sec03 .listList li:last-child {
    margin-bottom: 0;
  }
  .top #main .sec04 {
    margin-top: -2px;
    padding: 50px 0 50px;
    position: relative;
    background: #fff;
  }
  .top #main .sec04 .imglist {
    min-height: 400px;
  }
  .top #main .sec04 .imglist .content {
    width: auto;
  }
  .top #main .sec04 .imglist li {
    margin-bottom: 10px;
    padding: 52px 15px 0;
    background: url(img/index/sp_bg07.jpg) no-repeat center top/cover;
  }
  .top #main .sec04 .imglist li.hatakeyama {
    background: url(img/index/sp_bg07-hatakeyama@2x.jpg) no-repeat center top/cover;
  }
  .top #main .sec04 .imglist li.okubo {
    background: url(img/index/sp_bg07-okubo@2x.jpg) no-repeat center top/cover;
  }
  .top #main .sec04 .imglist li.uehara {
    background: url(img/index/sp_bg07-uehara@2x.jpg) no-repeat center top/cover;
  }

  .top #main .sec04 .imglist li:last-child {
    margin-bottom: 0;
  }
  .top #main .sec04 .imglist .ttl {
    margin-bottom: 62px;
    font-size: 1.6rem;
  }
  .top #main .sec04 .imglist .text {
    margin-bottom: 6px;
    font-size: 1rem;
    line-height: 1.3;
  }
  .top #main .sec04 .imglist .name {
    margin-bottom: 7px;
    font-size: 2.8rem;
    line-height: 1;
  }
  .top #main .sec04 .imglist .en {
    margin-bottom: 27px;
    font-size: 1.2rem;
  }
  .top #main .sec04 .imglist .comBtn {
    margin: 0 -15px;
    width: auto;
  }
  .top #main .sec04 .imglist .comBtn a {
    font-size: 1.5rem;
    height: 44px;
  }
}

@media all and (max-width: 330px) {
  .top #main .sec02 .inner .title {
    font-size: 2.7rem;
  }
}

.method #gHeader {
  padding: 30px;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 999;
}

.method #gHeader .hBtn a {
  color: #0099DD;
  border: 1px solid rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.8) url(img/common/icon05.png) no-repeat left 18px center/6px auto;
}

.method #gHeader .hBtn a:hover {
  border: 1px solid #0099DD;
  background: rgba(0, 0, 0, 0.8) url(img/common/icon05.png) no-repeat left 18px center/6px auto;
}

.method .sec01 {
  min-height: 1050px;
  position: relative;
  overflow: hidden;
  background: url(img/method/bg01.jpg) no-repeat center top/cover;
}

.method .sec01 .inner {
  padding: 110px 0;
  margin-left: -323px;
  position: absolute;
  width: 920px;
  left: 50%;
  top: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.6;
}

.method .sec01 .inner .title {
  margin-bottom: 21px;
  font-size: 11rem;
  line-height: 1.1;
}

.method .sec01 .inner .blue {
  color: #0099DD;
}

.method .sec01 .inner .lBox {
  margin-right: 30px;
  width: 460px;
}

.method .sec01 .inner .rBox {
  width: 420px;
  height: 237px;
}

.method .sec01 .inner .rBox iframe {
  width: 420px !important;
  height: 237px !important;
  vertical-align: top;
}

.method .sec01 .inner .vBox p {
  margin-bottom: 23px;
  font-size: 1.8rem;
  line-height: 1.7778;
  font-weight: 400;
}

.method .sec01 .inner .text {
  margin: 0 -420px 0 0;
}

.method .sec02 {
  min-height: 775px;
  padding: 105px 0;
  overflow: hidden;
  background: url(img/method/bg02.jpg) no-repeat center top/cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.method .sec02 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.method .sec02 .lBox {
  margin-right: 40px;
  width: 610px;
}

.method .sec02 p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
}

.method .sec02 .note {
  margin-top: 5px;
  font-size: 1.4rem;
  font-weight: 400;
}

.method .sec03 {
  margin-bottom: 86px;
  overflow: hidden;
}

.method .sec03 .content {
  width: 1055px;
}

.method .sec03 .photoBox {
  margin-right: 28px;
  width: 580px;
}

.method .sec03 .textBox {
  margin-top: 260px;
  width: calc(100% - 630px);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
}

.method .sec04 {
  overflow: hidden;
}

.method .sec04 .imgBox {
  margin-bottom: 103px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.method .sec04 .photoBox {
  position: absolute;
  top: 0;
  left: 50px;
  width: 359px;
  z-index: 2;
}

.method .sec04 .textBox {
  margin-top: 57px;
  padding: 56px 50px 60px 100px;
  width: 800px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ECF0F3;
}

.method .sec04 .textBox .headLine02 {
  margin-bottom: 27px;
}

.method .sec04 .textBox .name {
  margin-top: 28px;
  line-height: 1.538;
  font-weight: 700;
}

.method .sec04 .textBox .name span {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
}

.method .sec04 .textBox .personalimpression {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: right;
}

@media all and (max-width: 896px) {
  .method #gHeader {
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .method #gHeader .hBtn a {
    border: 1px solid #0099DD;
    background: rgba(0, 0, 0, 0.8) url(img/common/icon05.png) no-repeat left 10px center/6px auto;
  }
  .method #gHeader .hBtn a:hover {
    background: rgba(0, 0, 0, 0.8) url(img/common/icon05.png) no-repeat left 10px center/6px auto;
  }
  .method .headLine02 {
    font-size: 3rem !important;
  }
  .method .sec01 {
    margin-bottom: 0;
    min-height: auto;
    position: static;
    color: #fff;
    overflow: hidden;
    background: #000 url(img/method/sp_bg01.jpg) no-repeat center top/100% auto;
  }
  .method .sec01 .inner {
    margin-bottom: 10px;
    padding: 78px 15px 0;
    margin-left: 0;
    width: auto;
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    left: auto;
    top: auto;
    font-size: 1.4rem;
  }
  .method .sec01 .inner .inn {
    width: 68%;
  }
  .method .sec01 .inner .title {
    margin: 2px 0 18px;
    font-size: 3rem;
    line-height: 1.2;
  }
  .method .sec01 .inner .lBox {
    margin-right: 0;
    width: 100%;
    line-height: 1.77;
    font-size: 1.3rem;
  }
  .method .sec01 .inner .lBox .comBtn {
    width: auto;
  }
  .method .sec01 .inner .rBox {
    width: auto;
    height: auto;
  }
  .method .sec01 .inner .vBox p {
    margin-bottom: 14px;
    font-size: 1.3rem;
    line-height: 1.57;
  }
  .method .sec01 .text03 {
    margin-bottom: 5px !important;
  }
  .method .sec01 .text02 {
    margin: 0 15px 55px;
    font-size: 1.3rem;
    line-height: 1.57;
  }
  .method .sec01 .rBox {
    margin-bottom: 0;
    width: auto;
    height: 0 !important;
    padding-bottom: 56.5%;
  }
  .method .sec01 .rBox iframe {
    width: 100%;
    height: 100%;
  }
  .method .sec02 {
    margin-top: -4px;
    min-height: inherit;
    padding: 102px 0 52px;
    overflow: hidden;
    background: #ECF0F3;
  }
  .method .sec02 .headLine02 {
    margin-bottom: 10px;
  }
  .method .sec02 .content {
    padding: 0;
    display: block;
    width: auto;
  }
  .method .sec02 .photoBox {
    margin-bottom: 15px;
  }
  .method .sec02 .photoBox img {
    width: 100%;
  }
  .method .sec02 .lBox {
    margin-right: 40px;
    width: 100% !important;
  }
  .method .sec02 p {
    margin: 0 15px;
    font-size: 1.3rem;
    line-height: 1.77;
  }
  .method .sec02 .note {
    margin-top: 15px;
    font-size: 1rem;
  }
  .method .sec03 {
    margin-bottom: 0;
    overflow: hidden;
    padding: 55px 0 50px;
  }
  .method .sec03 .content {
    width: auto;
  }
  .method .sec03 .headLine02 {
    margin-bottom: -5px;
  }
  .method .sec03 .imgBox {
    display: block;
  }
  .method .sec03 .photoBox {
    margin: 0 0 30px;
    width: auto;
    text-align: center;
  }
  .method .sec03 .textBox {
    margin-top: 0;
    width: auto;
    font-size: 1.3rem;
    line-height: 1.77;
  }
  .method .sec03 .textBox p {
    margin: 0 15px;
  }
  .method .sec04 {
    padding: 0 0 50px;
    overflow: hidden;
  }
  .method .sec04 .content {
    padding: 0;
    width: auto;
  }
  .method .sec04 .imgBox {
    margin-bottom: 0;
    display: block;
  }
  .method .sec04 .photoBox {
    position: static;
    width: auto !important;
  }
  .method .sec04 .textBox {
    margin-top: 0;
    padding: 55px 15px 50px;
    width: auto !important;
    font-size: 1.3rem;
    line-height: 1.75;
  }
  .method .sec04 .textBox .headLine02 {
    margin-bottom: 33px;
  }
  .method .sec04 .textBox .photo {
    margin-bottom: 19px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .method .sec04 .textBox .photo .pho {
    width: 138px;
  }
  .method .sec04 .textBox .photo .name {
    width: calc(100% - 150px);
    font-size: 1.6rem;
  }
}

@media all and (max-width: 360px) {
  .method .headLine02 {
    font-size: 2.5rem;
  }
}

@media all and (max-width: 340px) {
  .method #main .sec01 .inner .title {
    font-size: 2.7rem;
  }
}

.interview #gHeader {
  padding: 30px;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 999;
}

.interview #gHeader a:hover {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.8) url(img/common/icon04.png) no-repeat left 18px center/6px auto;
}

.interview .sec01 {
  padding: 40px 0 30px;
  min-height: 520px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  background: url(img/interview/mv.jpg) no-repeat center top/cover;
}

.hatakeyama-int .interview .sec01 {
  background: url(img/interview/mv-hatakeyama@2x.jpg) no-repeat center top/cover;
}

.point .interview .sec01 {
  background: url(img/interview/mv-okubo@2x.jpg) no-repeat center top/cover;
}

.uehara-int .interview .sec01 {
  background: url(img/interview/mv-uehara@2x.jpg) no-repeat center top/cover;
}

.okubo-int .interview .sec01 {
  background: url(img/interview/mv-okubo@2x.jpg) no-repeat center top/cover;
}

.interview .sec01 {
  position:relative;
}

.interview .sec01 .content {
  width: 965px;
}

.interview .sec01 .ttl {
  margin-bottom: 80px;
  font-size: 3.6rem;
  line-height: 1.3889;
  font-weight: 700;
}

.interview .sec01 .text {
  margin-bottom: 6px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.interview .sec01 .name {
  margin-bottom: 4px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.interview .sec01 .en {
  margin-bottom: 19px;
  font-size: 1.6rem;
  font-weight: 700;
}

.interview .sec01 .en span {
  color: #0099DD;
}

.interview .sec01 .credit {
  position: absolute;
  right:10px;
  bottom:20px;
}

.interview .bluetxt {
  color: #2d6e8b;
}

.interview .sec02 {
  padding: 40px 0 80px;
  overflow: hidden;
  color: #000000;
}

.interview .sec02 .content {
  width: 955px;
}

.interview .sec02 p {
  margin-bottom: 33px;
  font-size: 1.6rem;
  line-height: 2;
}

.interview .sec02 .mb {
  margin-bottom: 50px;
}

.interview .sec02 .mb01 {
  margin-bottom: 22px;
}

.interview .sec02 .photoBox {
  margin-bottom: 50px;
}

.interview .sec02 .borBox {
  padding: 30px 30px 26px;
  color: #000;
  border: 1px solid #0099DD;
  overflow: hidden;
}

.interview .sec02 .borBox .photo {
  width: 319px;
}

.interview .sec02 .borBox .textBox {
  margin-top: 0;
  width: 550px;
}

.interview .sec02 .borBox .name {
  margin-bottom: 17px;
}

.interview .sec02 .borBox .name span {
  padding-right: 20px;
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
}

.interview .sec03 {
  padding: 48px 0;
  overflow: hidden;
  background: #ECF0F3;
}

.interview .sec03 .listList li {
  width: 572px;
  text-align: center;
  font-weight: 700;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}

.interview .sec03 .listList li a {
  padding: 35px 28px;
  display: block;
  border: 2px solid #fff;
}

.interview .sec03 .listList li a:hover {
  border: 2px solid #0099DD;
}

.interview .sec03 .listList li a:hover .ttl {
  color: #0099DD;
}

.interview .sec03 .listList li a:hover .ttl span {
  color: #000;
}

.interview .sec03 .listList li .ttl {
  margin-bottom: 30px;
  font-size: 3.6rem;
  line-height: 1.65;
}

.interview .sec03 .listList li .ttl span {
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
}

.interview .sec03 .listList li .txt {
  margin-top: -10px;
  font-size: 2.1rem;
  line-height: 1.6;
}

.interview .sec04 {
  padding: 48px 0 100px;
  overflow: hidden;
}

.interview .sec04 .headLine01 {
  margin-bottom: 28px;
}

.interview .sec04 .headLine01 > span {
  padding: 0 45px 13px;
}

.interview .sec04 .textBox {
  margin: 0 auto 35px;
  width: 477px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.interview .sec04 .linkList {
  margin: 0 auto;
  width: 995px;
  font-weight: 700;
}

.interview .sec04 .linkList li {
  -webkit-box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.1);
}

.interview .sec04 .linkList li a:hover .pho {
  position: relative;
}

.interview .sec04 .linkList li a:hover .pho::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 153, 221, 0.4);
  content: '';
}

.interview .sec04 .linkList li a:hover .link {
  background: #0099DD url(img/common/icon02.png) no-repeat right 13px center/6px auto;
}

.interview .sec04 .linkList li .pho {
  padding: 10px 10px 28px;
  width: 472px;
  height: 286px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(img/common/bg03.jpg) no-repeat left top/cover;
}

.interview .sec04 .linkList li .link {
  padding: 12px;
  font-size: 1.4rem;
  text-align: center;
  background: #fff url(img/common/icon02.png) no-repeat right 13px center/6px auto;
}

.interview .sec04 .linkList li:nth-child(2) .pho {
  background-image: url(img/common/bg04.jpg);
}

@media all and (max-width: 896px) {
  .interview #gHeader {
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .interview #gHeader a:hover {
    border: 1px solid #000 !important;
    background: rgba(255, 255, 255, 0) url(img/common/icon04.png) no-repeat left 6px center/6px auto !important;
  }
  .interview .sec01 {
    padding: 40px 0 20px;
    min-height: 426px;
    background: url(img/interview/sp_mv.jpg) no-repeat center center/cover;
  }
  .hatakeyama-int .interview .sec01 {
    padding: 40px 0 20px;
    min-height: 426px;
    background: url(img/interview/sp_mv-hatakeyama@2x.jpg) no-repeat center center/cover;
  }
  .okubo-int .interview .sec01 {
    padding: 40px 0 20px;
    min-height: 426px;
    background: url(img/interview/sp_mv-okubo@2x.jpg) no-repeat center center/cover;
  }
  .uehara-int .interview .sec01 {
    padding: 40px 0 20px;
    min-height: 426px;
    background: url(img/interview/sp_mv-uehara@2x.jpg) no-repeat center center/cover;
  }
  .interview .sec01 .content {
    padding: 0 16px;
    width: 100% !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .interview .sec01 .ttl {
    margin-bottom: 81px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .interview .sec01 .text {
    margin-bottom: 4px;
    font-size: 1rem;
  }
  .interview .sec01 .name {
    margin-bottom: 2px;
    font-size: 2.8rem;
    line-height: 1.2;
  }
  .interview .sec01 .en {
    font-size: 1.3rem;
  }
  .interview .sec02 {
    padding: 40px 0 49px;
  }
  .interview .sec02 .content {
    width: auto;
    padding: 0 15px;
  }
  .interview .sec02 p {
    margin-bottom: 32px;
    font-size: 1.5rem;
    line-height: 2.15;
  }
  .interview .sec02 .mb {
    margin-bottom: 54px;
  }
  .interview .sec02 .mb01 {
    margin-bottom: 32px;
  }
  .interview .sec02 .photoBox {
    margin-bottom: 50px;
  }
  .interview .sec02 .borBox {
    padding: 24px 20px 20px;
    border: 1px solid #0099DD;
  }
  .interview .sec02 .borBox .photo {
    margin-bottom: 15px;
    width: auto !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .interview .sec02 .borBox .photo img {
    width: 46%;
  }
  .interview .sec02 .borBox .photo > span {
    margin: 0 0 0 13px;
    display: inline-block;
    width: 50%;
    font-size: 1.3rem;
  }
  .interview .sec02 .borBox .photo > span span {
    margin-bottom: 3px;
    display: block;
    font-size: 1.8rem;
  }
  .interview .sec02 .borBox .textBox {
    margin-top: 0;
    width: auto !important;
  }
  .interview .sec02 .borBox .textBox p {
    margin-bottom: 0;
    font-size: 1.3rem;
    line-height: 1.71;
  }
  .interview .sec03 {
    padding: 46px 0;
  }
  .interview .sec03 .content {
    padding: 0 15px;
    width: auto;
  }
  .interview .sec03 .listList li {
    margin-bottom: 15px;
    width: auto;
  }
  .interview .sec03 .listList li a:hover {
    border: 2px solid #fff;
  }
  .interview .sec03 .listList li a:hover .ttl {
    color: #000;
  }
  .interview .sec03 .listList li .ttl {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
  .interview .sec03 .listList li .ttl span {
    font-size: 1rem;
  }
  .interview .sec03 .listList li .txt {
    margin-top: -6px;
    font-size: 1.3rem;
  }
  .interview .sec03 .listList li:last-child {
    margin-bottom: 0;
  }
  .interview .sec04 {
    padding: 50px 15px 100px;
  }
  .interview .sec04 .headLine01 {
    margin: 0 40px 28px;
  }
  .interview .sec04 .headLine01 > span {
    display: inline-block;
    padding: 0 0 5px;
    line-height: 1.36;
  }
  .interview .sec04 .textBox {
    margin: 0 auto 35px;
    width: auto;
    font-size: 1.5rem;
    line-height: 1.47;
  }
  .interview .sec04 .linkList {
    margin: 0 auto;
    width: auto;
    display: block;
  }
  .interview .sec04 .linkList li {
    margin-bottom: 30px;
  }
  .interview .sec04 .linkList li a:hover .pho::after {
    display: none;
  }
  .interview .sec04 .linkList li a:hover .link {
    background: #fff url(img/common/icon02.png) no-repeat right 13px center/6px auto;
  }
  .interview .sec04 .linkList li .pho {
    padding: 10px;
    width: auto;
    height: 200px;
    background-image: url(img/common/sp_bg03.jpg);
  }
  .interview .sec04 .linkList li .link {
    padding: 10px;
    font-size: 1.3rem;
  }
  .interview .sec04 .linkList li:last-child {
    margin-bottom: 0;
  }
  .interview .sec04 .linkList li:nth-child(2) .pho {
    background-image: url(img/common/sp_bg04.jpg);
  }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .top #main .sec02 .inner .lBox {
    margin-bottom: 15px;
  }
  .top #main .sec02 .linkList {
    margin: 0 auto;
    width: 100%;
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .top #main .sec02 .linkList li {
    width: 49%;
  }
  .top #main .sec02 .linkList li .pho {
    width: auto;
  }
  .top #main .sec03 .listList li {
    width: 49%;
  }
  .top #main .sec02 .inner {
    margin: 0 auto;
    position: static;
    left: 0;
  }
  .top #main .sec02 .inner .vBox .text {
    margin-right: -100px;
  }
  .method .sec01 {
    min-height: 982px;
  }
  .method .sec01 .inner {
    padding: 110px 15px;
    margin: 0 auto;
    position: static;
    width: auto;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
  }
  .method .sec01 .inner .title {
    margin-bottom: 21px;
    font-size: 6rem;
    line-height: 1.1;
  }
  .method .sec01 .inner .lBox {
    margin-right: 5px;
    width: 450px;
  }
  .method .sec02 .lBox {
    width: 500px;
  }
  .method .sec04 .photoBox {
    width: 30%;
    z-index: 2;
  }
  .method .sec04 .textBox {
    width: 72%;
  }
  .headLine02 {
    font-size: 2.5rem;
  }
  .interview .sec01 {
    background: url(img/interview/mv.jpg) no-repeat center top/cover;
  }
  .hatakeyama-int .interview .sec01 {
    background: url(img/interview/mv-hatakeyama@2x.jpg) no-repeat center top/cover;
  }
  .okubo-int .interview .sec01 {
    background: url(img/interview/mv-okubo@2x.jpg) no-repeat center top/cover;
  }
  .uehara-int .interview .sec01 {
    background: url(img/interview/mv-uehara@2x.jpg) no-repeat center top/cover;
  }
  .interview .sec02 .borBox .photo {
    width: 40%;
  }
  .interview .sec02 .borBox .textBox {
    width: 54%;
  }
  .interview .sec03 .listList li {
    width: 49%;
  }
  .interview .sec03 .listList li {
    margin-bottom: 0;
  }
}
