@charset "UTF-8";

@keyframes opening_bg {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes opening_logo {
  0% {
    width: 300px;
  }
  100% {
    width: 140%;
  }
}

img {
  width: 100%;
}

.top main {
  margin-top: 0;
  padding-bottom: 0;
}

/* tit_box */
.tit_box h3 {
  font-weight: 100;
  font-size: 26px;
  line-height: 1.1;
  font-family: "baskerville-urw", serif;
  letter-spacing: .05em;
}

.tit_box .catch {
  font-family: dnp-shuei-mincho-pr6, YuMincho, "游明朝", serif;
}

.tit_box .txt {
  margin-top: 10px;
}

.tit_box h3 {
  /* for pc */
}

@media screen and (min-width: 761px) {
  .tit_box h3 {
    margin-bottom: 20px;
    font-size: 70px;
  }
}

.tit_box .catch {
  /* for pc */
}

@media screen and (min-width: 761px) {
  .tit_box .catch {
    margin-bottom: 60px;
    font-size: 20px;
  }
}

.tit_box .txt {
  margin-top: 7px;
}

.container {
  box-sizing: border-box;
}

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

animation設定

---------------------------------------------------------- */
@keyframes RightToLeft {
  0% {
    transform: translate(50px, 50px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes LeftToRight {
  0% {
    transform: translate(-50px, 50px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.inview_side,
.inview_up {
  opacity: 0;
}

.inview_side.display,
.inview_up.display {
  opacity: 1;
}

.section_message h2.display {
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-name: RightToLeft;
}

.section_message h3.display {
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-name: RightToLeft;
}

.section_message .txt.display {
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-name: RightToLeft;
}

.section_message .name.display {
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-name: RightToLeft;
}

.section_message .btn.display {
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-name: RightToLeft;
}

.section_reason h2.display {
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-name: LeftToRight;
}

.section_number .txt_box.display {
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-name: LeftToRight;
}

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

visual_wrapper

---------------------------------------------------------- */
.visual_wrapper {
  position: relative;
}

@media screen and (min-width: 761px) {
  .visual_wrapper .topvisual {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 760px) {
  .visual_wrapper .topvisual {
    display: block;
    width: 100%;
    height: 0;
    max-height: auto;
    padding-bottom: 152%;
    overflow: hidden;
  }
}

.visual_wrapper .topvisual .slider {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 0;
  text-align: center;
}

.visual_wrapper .topvisual .slider li {
  z-index: 999 !important;
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(../img/top/main01.jpg) no-repeat top center;
  background-size: cover;
}

.visual_wrapper .topvisual .slider li[data-slick-index*="0"] {
  background-image: url(../img/top/main01.jpg);
}

.visual_wrapper .topvisual .slider li[data-slick-index*="1"] {
  background-image: url(../img/top/main02.jpg);
}

.visual_wrapper .topvisual .slider li[data-slick-index*="2"] {
  background-image: url(../img/top/main03.jpg);
}

@media screen and (max-width: 760px) {
  .visual_wrapper .topvisual .slider li {
    z-index: auto !important;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 156%;
    background: url(../img/top/main01_sp.jpg) no-repeat top center;
    background-size: 100% auto;
  }
  .visual_wrapper .topvisual .slider li[data-slick-index*="0"] {
    background-image: url(../img/top/main01_sp.jpg);
  }
  .visual_wrapper .topvisual .slider li[data-slick-index*="1"] {
    background-image: url(../img/top/main02_sp.jpg);
  }
  .visual_wrapper .topvisual .slider li[data-slick-index*="2"] {
    background-image: url(../img/top/main03_sp.jpg);
  }
  .visual_wrapper .topvisual .slider li[data-slick-index*="3"] {
    background-image: url(../img/top/main04_sp.jpg);
  }
}

.visual_wrapper .topvisual .txt_main {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
  transform: translate(-50%, -50%);
  color: #002256;
}

@media screen and (max-width: 760px) {
  .visual_wrapper .topvisual .txt_main {
    /* for sp Device Only */
    top: 29%;
    width: 100%;
    padding: 0 2vw 0 4vw;
  }
}

.visual_wrapper .topvisual .txt_main h2 {
  font-size: 60px;
  line-height: 1.4;
  letter-spacing: -.02em;
}

@media screen and (max-width: 760px) {
  .visual_wrapper .topvisual .txt_main h2 {
    font-weight: 400;
    /* for sp Device Only */
    font-size: 7.3vw;
    letter-spacing: -.02em;
  }
}

.visual_wrapper .topvisual .txt_main .catch {
  position: relative;
  margin-top: 15px;
  font-size: 29px;
  font-family: dnp-shuei-mincho-pr6, YuMincho, "游明朝", serif;
}

@media screen and (max-width: 760px) {
  .visual_wrapper .topvisual .txt_main .catch {
    margin-top: 3vw;
    /* for sp Device Only */
    font-size: 5.4vw;
  }
}

.visual_wrapper .topvisual .txt_main .txt {
  margin-top: 22px;
}

@media screen and (max-width: 760px) {
  .visual_wrapper .topvisual .txt_main .txt {
    /* for sp Device Only */
    margin-top: 3vw;
    line-height: 1.6;
    letter-spacing: -.06em;
  }
}

/* pickup_area*/
.visual_wrapper .pickup_area {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 95%;
  max-width: 1280px;
  transform: translateX(-50%);
  transition: opacity 0.3s;
}

@media screen and (max-width: 760px) {
  .visual_wrapper .pickup_area {
    bottom: 0;
    /* for sp Device Only */
    width: 100%;
  }
}

.visual_wrapper .pickup_area:hover {
  opacity: .8;
}

.visual_wrapper .pickup_area:hover .more {
  background: none;
  color: #141414;
  transition: opacity 0.3s;
}

.visual_wrapper .pickup_area dl {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

@media screen and (max-width: 760px) {
  .visual_wrapper .pickup_area dl {
    /* for sp Device Only */
    font-size: 3.7vw;
  }
}

.visual_wrapper .pickup_area dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  border-radius: 10px 0 0 10px;
  background: rgba(20, 20, 20, 0.9);
  color: #fff;
  line-height: 1;
}

@media screen and (max-width: 760px) {
  .visual_wrapper .pickup_area dl dt {
    width: 22vw;
    /* for sp Device Only */
    border-radius: 0;
    line-height: 1.4;
    text-align: center;
  }
}

.visual_wrapper .pickup_area dl dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 100px);
  padding: 10px 0 12px;
  border-radius: 0 10px 10px 0;
  background: rgba(203, 196, 168, 0.9);
}

@media screen and (max-width: 760px) {
  .visual_wrapper .pickup_area dl dd {
    /* for sp Device Only */
    width: 100%;
    height: 17vw;
    border-radius: 0;
  }
}

.visual_wrapper .pickup_area dl dd a {
  display: block;
  width: 100%;
  padding: 2px 16px;
}

.visual_wrapper .pickup_area dl dd .inner {
  display: flex;
  justify-content: space-between;
}

.visual_wrapper .pickup_area dl dd .pickup_text {
  width: 100%;
}

@media screen and (max-width: 760px) {
  .visual_wrapper .pickup_area dl dd .pickup_text {
    /* for sp Device Only */
    display: none;
  }
}

@media screen and (max-width: 760px) {
  .visual_wrapper .pickup_area dl dd .pickup_text:first-child {
    /* for sp Device Only */
    display: block;
  }
}

.visual_wrapper .pickup_area dl dd p.unit {
  max-width: 1052px;
  height: 23px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 760px) {
  .visual_wrapper .pickup_area dl dd p.unit {
    display: flex;
    align-items: center;
    /* for sp Device Only */
    height: 10vw;
    text-overflow: inherit;
    white-space: inherit;
  }
}

@media screen and (max-width: 760px) {
  .visual_wrapper .pickup_area dl dd p.unit {
    /* for sp Device Only */
  }
  .visual_wrapper .pickup_area dl dd p.unit span {
    display: block;
    height: auto;
    line-height: 1.3;
  }
}

.visual_wrapper .pickup_area dl dd p.unit .tit {
  display: block;
  max-height: 50px;
  padding-left: 10px;
  font-family: a-otf-gothic-bbb-pr6n, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

@media screen and (max-width: 760px) {
  .visual_wrapper .pickup_area dl dd p.unit .tit {
    max-height: 10vw;
    /* for sp Device Only */
    margin-top: 4px;
    padding: 0;
  }
}

.visual_wrapper .pickup_area dl dd .more {
  position: relative;
  padding-right: 33px;
}

.visual_wrapper .pickup_area dl dd .more::after {
  z-index: 1000;
  position: absolute;
  top: 5px;
  right: 18px;
  width: 7px;
  height: 15px;
  transform: skew(136deg) rotate(290deg);
  border-right: 1px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}

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

section_message

---------------------------------------------------------- */
@media screen and (min-width: 761px) {
  /* for pc */
  .section_message {
    display: block;
    position: relative;
    padding: 105px 30px 125px;
    background: url(../img/top/bg_message.png) 0 0 no-repeat;
    background-size: cover;
  }
  .section_message::before {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    background: #e5e1d3;
    content: '';
  }
}

@media (min-width: 741px) and (max-width: 1160px) {
  /* for iPad Device */
  .section_message {
    padding: 40px 30px 45px;
  }
  .section_message .txt_area {
    padding-left: 43vw;
  }
}

@media screen and (max-width: 760px) {
  /* for sp Device Only */
  .section_message {
    padding-top: 10vw;
  }
  .section_message::before {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    background: #e5e1d3;
    content: '';
  }
}

.section_message .txt_area {
  padding-left: 40vw;
}

@media screen and (max-width: 760px) {
  .section_message .txt_area {
    /* for sp Device Only */
    padding: 0 5vw;
  }
}

.section_message .txt_area h2 {
  font-size: 90px;
  font-family: "baskerville-urw", serif;
}

@media screen and (max-width: 760px) {
  .section_message .txt_area h2 {
    font-weight: 400;
    /* for sp Device Only */
    font-size: 12.4vw;
  }
}

.section_message .txt_area h3 {
  margin-top: 30px;
  font-size: 26px;
  line-height: 1.6;
}

@media (min-width: 1161px) and (max-width: 1380px) {
  .section_message .txt_area h3 {
    /* for iPad Device */
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 760px) {
  .section_message .txt_area h3 {
    /* for sp Device Only */
    margin-top: 5vw;
    font-weight: 400;
    font-size: 4.3vw;
  }
}

.section_message .txt_area .txt {
  margin-top: 20px;
}

@media screen and (max-width: 760px) {
  .section_message .txt_area .txt {
    /* for sp Device Only */
    margin-top: 2.5vw;
    line-height: 1.5;
  }
}

.section_message .txt_area .name {
  margin-top: 31px;
  font-size: 27px;
  font-family: dnp-shuei-mincho-pr6, YuMincho, "游明朝", serif;
}

@media screen and (max-width: 760px) {
  .section_message .txt_area .name {
    /* for sp Device Only */
    margin-top: 4vw;
    font-size: 6vw;
  }
}

.section_message .txt_area .name span {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

@media screen and (max-width: 760px) {
  .section_message .txt_area .name span {
    /* for sp Device Only */
    margin-bottom: 3px;
    font-size: 3.4vw;
  }
}

.section_message .txt_area .btn {
  margin-top: 24px;
  margin-left: 0;
  padding-left: 15px;
}

@media screen and (max-width: 760px) {
  .section_message .txt_area .btn {
    width: 49vw;
    height: 11.5vw;
    margin: 5vw auto 8vw;
    padding-left: 20px;
    /* for sp Device Only */
    font-size: 3.8vw;
    line-height: 11.5vw;
  }
}

.section_message .txt_area .btn:hover {
  color: #fff;
}

.section_message .txt_area .btn a {
  text-align: left;
}

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

section_reason

---------------------------------------------------------- */
.section_reason {
  display: block;
  position: relative;
  padding: 70px 0 100px;
  background: #e5e1d3 url(../img/top/bg_reason.jpg) 0 0 no-repeat;
  background-size: cover;
}

@media screen and (max-width: 760px) {
  .section_reason {
    /* for sp Device Only */
    padding: 16vw 0 19vw;
    background: #e5e1d3 url(../img/top/bg_reason_sp.jpg) 0 0 no-repeat;
    background-size: cover;
  }
}

.section_reason::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: rgba(0, 34, 86, 0.8);
  content: '';
}

.section_reason h2 {
  z-index: 10;
  position: relative;
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
  color: #fff;
  font-size: 90px;
}

@media screen and (max-width: 760px) {
  .section_reason h2 {
    font-weight: 400;
    /* for sp Device Only */
    font-size: 12.4vw;
    text-align: center;
  }
}

.section_reason span.catch {
  padding-left: 25px;
  font-size: 27px;
}

@media screen and (max-width: 760px) {
  .section_reason span.catch {
    /* for sp Device Only */
    display: block;
    margin-top: 4vw;
    padding: 0;
    font-size: 5.7vw;
  }
}

.section_reason .inner {
  position: relative;
  width: 95%;
  max-width: 1280px;
  margin: 33px auto 0;
}

@media screen and (max-width: 760px) {
  .section_reason .inner {
    width: 100%;
    /* for sp Device Only */
    max-width: inherit;
    margin: 4vw auto 0;
  }
}

@media screen and (max-width: 760px) {
  .section_reason_wrap {
    /* for sp Device Only */
    width: 100%;
    margin: 0 auto;
    padding: 22vw 5vw 0;
  }
}

.section_reason_wrap .contents .unit {
  width: 95% !important;
  max-width: 1057px;
  min-height: 457px;
  padding: 60px 0;
  background-color: #fff;
}

@media screen and (max-width: 760px) {
  .section_reason_wrap .contents .unit {
    box-sizing: border-box;
    /* for sp Device Only */
    width: 100% !important;
    min-height: 87vw;
    margin: 0 auto !important;
    padding: 0;
    border-width: 16px;
  }
}

.section_reason_wrap .contents .unit .ph {
  z-index: 1000;
  position: absolute;
  top: 50%;
  left: 0;
  width: 163px;
  transform: translateY(-50%);
}

@media screen and (max-width: 760px) {
  .section_reason_wrap .contents .unit .ph {
    /* for sp Device Only */
    position: inherit;
    top: inherit;
    left: inherit;
    width: 100%;
    margin: 0;
    padding: 0;
    transform: inherit;
  }
}

.section_reason_wrap .contents .unit .txtbox {
  padding-left: 21%;
}

@media screen and (max-width: 760px) {
  .section_reason_wrap .contents .unit .txtbox {
    padding: 24vw 5vw 8vw;
    /* for sp Device Only */
    text-align: left;
  }
}

.section_reason_wrap .contents .unit .txtbox h3 {
  color: #cbc4a8;
  font-size: 44px;
  line-height: 1;
  font-family: "baskerville-urw", serif;
}

@media screen and (max-width: 760px) {
  .section_reason_wrap .contents .unit .txtbox h3 {
    /* for sp Device Only */
    font-weight: 400;
    font-size: 6.3vw;
  }
}

.section_reason_wrap .contents .unit .txtbox .tit {
  margin-top: 15px;
  font-size: 41px;
  line-height: 1.4;
}

@media screen and (max-width: 760px) {
  .section_reason_wrap .contents .unit .txtbox .tit {
    /* for sp Device Only */
    margin-top: 3vw;
    font-size: 5.1vw;
    line-height: 1.4;
  }
}

.section_reason_wrap .contents .unit .txtbox .txt {
  margin-top: 14px;
  line-height: 1.6;
}

.section_reason .bx-pager {
  z-index: 2000;
  position: absolute;
  top: 50%;
  right: 0;
  width: 426px;
  transform: translateY(-50%);
  text-align: left;
}

@media screen and (max-width: 760px) {
  .section_reason .bx-pager {
    /* for sp Device Only */
    position: absolute;
    top: 0;
    right: inherit;
    left: 50%;
    width: 92%;
    transform: translateX(-50%);
    text-align: left;
  }
}

.section_reason .btn_reason {
  display: block;
  padding: 21px 10px 20px 26px;
  border-top: 2px solid #d9c88b;
  border-right: 2px solid #d9c88b;
  border-left: 2px solid #d9c88b;
  background: #fff;
  font-size: 25px;
  font-family: dnp-shuei-mincho-pr6, YuMincho, "游明朝", serif;
}

@media all and (-ms-high-contrast: none) {
  .section_reason .btn_reason {
    /* for IE Only */
    padding: 25px 10px 20px 26px;
  }
}

@media screen and (max-width: 760px) {
  .section_reason .btn_reason {
    box-sizing: border-box;
    /* for sp Device Only */
    display: inline-block;
    width: 21.5vw;
    padding: 5px 5px 3px;
    border: 1px solid #d9c88b;
    font-size: 16px;
    text-align: center;
    vertical-align: top;
  }
}

.section_reason .btn_reason:last-child {
  border-bottom: 2px solid #d9c88b;
}

.section_reason .btn_reason:hover {
  opacity: 1;
}

.section_reason .btn_reason span {
  padding-right: 15px;
  font-size: 27px;
  vertical-align: middle;
}

@media screen and (max-width: 760px) {
  .section_reason .btn_reason span {
    /* for sp Device Only */
    padding-right: 0;
    font-weight: 400;
    font-size: 6.5vw;
    letter-spacing: 1px;
  }
}

.section_reason .btn_reason small {
  display: inline-block;
  vertical-align: middle;
}

.section_reason .btn_reason.active {
  position: relative;
  border-top: none;
  border-right: 2px solid #d9c88b;
  border-left: 2px solid #d9c88b;
  background: #d9c88b;
}

@media screen and (max-width: 760px) {
  .section_reason .btn_reason.active {
    /* for sp Device Only */
    border: 1px solid #d9c88b;
  }
}

.section_reason .btn_reason.active::before {
  display: block;
  z-index: 1000;
  position: absolute;
  top: 50%;
  left: -82px;
  width: 0;
  height: 0;
  margin-top: -42px;
  border: 43px solid transparent;
  border-right: 37px solid #d9c88b;
  content: "";
  transition-duration: 200ms;
}

@media screen and (max-width: 760px) {
  .section_reason .btn_reason.active::before {
    /* for sp Device Only */
    top: inherit;
    bottom: -55px;
    left: 50%;
    margin-top: 0;
    transform: translateX(-50%);
    border: 40px solid transparent;
    border-top: 14px solid #d9c88b;
    content: "";
  }
}

.section_reason .btn_area {
  z-index: 10;
  position: relative;
  margin-top: 55px;
}

@media screen and (max-width: 760px) {
  .section_reason .btn_area {
    /* for sp Device Only */
    margin-top: 7vw;
  }
}

.section_reason .btn_area .btn {
  width: 300px;
  height: 43px;
  border: 1px solid #fff;
}

@media screen and (max-width: 760px) {
  .section_reason .btn_area .btn {
    /* for sp Device Only */
    width: 74vw;
    height: 14vw;
    line-height: 14vw;
  }
}

.section_reason .btn_area .btn a {
  padding-left: 23px;
  color: #fff;
  font-family: a-otf-gothic-bbb-pr6n, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  text-align: left;
}

@media screen and (max-width: 760px) {
  .section_reason .btn_area .btn a {
    /* for sp Device Only */
    font-size: 3.6vw;
  }
}

.section_reason .btn_area .btn::after {
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
}

.section_reason .btn_area .btn::before {
  background: #fff;
}

.section_reason .btn_area .btn:hover a {
  color: #141414;
}

.section_reason .btn_area .btn:hover::after {
  border-right: 2px solid #141414;
  border-bottom: 1px solid #141414;
}

.section_reason .btn_area .btn:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}

.section_reason .btn_area .btn a:hover {
  opacity: 1;
}

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

section_interview

---------------------------------------------------------- */
.section_interview {
  width: 100%;
}

.section_interview .member_block {
  display: flex;
}

@media screen and (max-width: 760px) {
  .section_interview .member_block {
    /* for sp Device Only */
    flex-wrap: wrap;
  }
}

.section_interview .member_block .unit {
  position: relative;
}

@media screen and (max-width: 760px) {
  .section_interview .member_block .unit {
    /* for sp Device Only */
    width: 50%;
    height: 85vw;
    overflow: hidden;
  }
}

.section_interview .member_block .unit .ph.hover {
  display: none;
}

.section_interview .member_block .unit a:hover .ph.nomal {
  display: none;
}

.section_interview .member_block .unit a:hover .ph.hover {
  display: block;
}

.section_interview .member_block .unit a:hover, .section_interview .member_block .unit a:hover img {
  opacity: 1;
}

.section_interview .member_block .unit .txt_area {
  z-index: 1000;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 37px 5px 14px 25px;
  background: rgba(20, 20, 20, 0.8);
  color: #fff;
}

@media screen and (max-width: 760px) {
  .section_interview .member_block .unit .txt_area {
    /* for sp Device Only */
    padding: 5.5vw 2.5vw 3vw;
  }
}

.section_interview .member_block .unit .txt_area .tit {
  font-size: 23px;
  font-size: 1.57vw;
  line-height: 1.4;
  letter-spacing: -.02em;
}

@media screen and (max-width: 760px) {
  .section_interview .member_block .unit .txt_area .tit {
    /* for sp Device Only */
    font-size: 3.4vw;
    letter-spacing: -.06em;
  }
}

.section_interview .member_block .unit .txt_area .name {
  margin-top: 20px;
  font-size: 28px;
  font-size: 1.91vw;
  font-family: "baskerville-urw", serif;
}

@media screen and (max-width: 760px) {
  .section_interview .member_block .unit .txt_area .name {
    /* for sp Device Only */
    margin-top: 2.5vw;
    font-size: 3.8vw;
  }
}

.section_interview .member_block .unit .txt_area .name span {
  display: block;
  font-size: 14px;
  font-family: a-otf-gothic-bbb-pr6n, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

@media screen and (max-width: 760px) {
  .section_interview .member_block .unit .txt_area .name span {
    /* for sp Device Only */
    font-size: 2vw;
  }
}

.section_interview .member_block .unit:first-child .txt_area {
  padding-top: 17px;
}

@media screen and (max-width: 760px) {
  .section_interview .member_block .unit:first-child .txt_area {
    /* for sp Device Only */
    padding-top: 2.5vw;
  }
}

.section_interview .member_block .unit:first-child .txt_area .name {
  margin-top: 8px;
}

@media screen and (max-width: 760px) {
  .section_interview .member_block .unit:first-child .txt_area .name {
    /* for sp Device Only */
    margin-top: 1vw;
  }
}

.section_interview .index_block {
  z-index: 10;
  position: relative;
  padding: 58px 70px 80px;
  text-align: center;
}

@media screen and (max-width: 760px) {
  .section_interview .index_block {
    /* for sp Device Only */
    padding: 7.5vw 5vw 13vw;
  }
}

.section_interview .index_block:before {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: #f7f7ed;
  content: '';
}

.section_interview .index_block h2 {
  font-size: 78px;
}

@media screen and (max-width: 760px) {
  .section_interview .index_block h2 {
    font-weight: 400;
    /* for sp Device Only */
    font-size: 12.5vw;
  }
}

.section_interview .index_block h2 span.catch {
  display: block;
  margin-top: 21px;
  font-size: 27px;
  font-family: dnp-shuei-mincho-pr6, YuMincho, "游明朝", serif;
}

@media screen and (max-width: 760px) {
  .section_interview .index_block h2 span.catch {
    /* for sp Device Only */
    margin-top: 5vw;
    font-size: 4.3vw;
  }
}

.section_interview .index_block .txt {
  margin-top: 18px;
}

@media screen and (max-width: 760px) {
  .section_interview .index_block .txt {
    /* for sp Device Only */
    margin-top: 4vw;
    line-height: 1.6;
  }
}

.section_interview .index_block .btn {
  width: 255px;
  height: 47px;
  margin-top: 31px;
  line-height: 47px;
}

@media screen and (max-width: 760px) {
  .section_interview .index_block .btn {
    /* for sp Device Only */
    width: 49vw;
    height: 11.5vw;
    margin-top: 8vw;
    line-height: 11.5vw;
  }
}

.section_interview .index_block .btn a {
  padding-left: 20px;
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 760px) {
  .section_interview .index_block .btn a {
    /* for sp Device Only */
    font-size: 3.8vw;
  }
}

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

section_number

---------------------------------------------------------- */
.section_number {
  padding: 60px 0 67px;
}

@media screen and (max-width: 760px) {
  .section_number {
    /* for sp Device Only */
    padding: 11vw 5vw 15vw;
  }
}

.section_number:before {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #d6dbe4;
  content: '';
  content: '';
}

.section_number .number_block {
  display: flex;
  justify-content: space-between;
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 760px) {
  .section_number .number_block {
    /* for sp Device Only */
    display: block;
    width: 100%;
  }
}

.section_number .txt_box {
  width: 305px;
  height: 230px;
  margin-top: 45px;
}

@media screen and (max-width: 760px) {
  .section_number .txt_box {
    /* for sp Device Only */
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 0;
    padding: 0 0;
  }
}

.section_number .txt_box h2 {
  font-size: 80px;
}

@media screen and (max-width: 760px) {
  .section_number .txt_box h2 {
    font-weight: 400;
    /* for sp Device Only */
    font-size: 12.4vw;
    text-align: center;
  }
}

.section_number .txt_box .txt {
  margin-top: 20px;
}

@media screen and (max-width: 760px) {
  .section_number .txt_box .txt {
    margin-top: 3.5vw;
    margin-bottom: 8%;
    line-height: 1.6;
    /* for sp Device Only */
    text-align: center;
  }
}

.section_number .txt_box .btn {
  width: 255px;
  height: 47px;
  margin-top: 32px;
  margin-left: 0;
  line-height: 47px;
}

.section_number .txt_box .btn a {
  padding-left: 20px;
  font-size: 16px;
  text-align: left;
}

.section_number .ph {
  display: inline-block;
  width: 71%;
  height: 320px;
  background: url(../img/top/img_number.png) no-repeat right top;
  background-size: 930px auto;
  vertical-align: top;
}

@media screen and (max-width: 760px) {
  .section_number .ph {
    /* for sp Device Only */
    display: inline-block;
    width: 100%;
    height: 0;
    margin-bottom: 0;
    padding-bottom: 98vw;
    background: url(../img/top/img_number_sp.png) no-repeat left 0;
    background-size: 100% auto;
  }
}

.section_number .ph .num {
  margin-top: 25px;
  padding-top: 0;
  color: #002256;
  font-style: italic !important;
  font-weight: 400;
  font-size: 194px;
  line-height: 0.8;
  font-family: Didot, "baskerville-urw", serif;
  letter-spacing: -.03em;
}

@media screen and (max-width: 760px) {
  .section_number .ph .num {
    /* for sp Device Only */
    margin-top: 2vw;
    margin-left: 12vw;
    padding-top: 0;
    color: #002256;
    font-style: italic !important;
    font-weight: 400;
    font-size: 26vw;
    line-height: 0.8;
    letter-spacing: -1px;
  }
}

.section_number .ph .num em {
  font-style: italic;
}

@media screen and (max-width: 760px) {
  .section_number .btn.sp {
    width: 49vw;
    height: 11.5vw;
    margin-top: 8vw;
    /* for sp Device Only */
    margin-right: auto;
    margin-left: auto;
    line-height: 11.5vw;
  }
}

@media screen and (max-width: 760px) {
  .section_number .btn.sp a {
    /* for sp Device Only */
    width: 100%;
    padding-left: 5vw;
    font-size: 3.8vw;
    text-align: left;
  }
}

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

section_news

---------------------------------------------------------- */
.section_news {
  z-index: 10;
  position: relative;
  padding: 67px 0 90px;
  background: #e5e1d3;
}

@media screen and (max-width: 760px) {
  .section_news {
    /* for sp Device Only */
    padding: 10vw 8.5vw 14vw;
  }
}

.section_news:before {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: #e5e1d3;
  content: '';
}

.section_news .inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section_news h2 {
  font-size: 80px;
  text-align: center;
}

@media screen and (max-width: 760px) {
  .section_news h2 {
    font-weight: 400;
    /* for sp Device Only */
    font-size: 12.4vw;
  }
}

.section_news .news_list {
  margin-top: 25px;
}

@media screen and (max-width: 760px) {
  .section_news .news_list {
    /* for sp Device Only */
    margin-top: 3.5vw;
  }
}

.section_news .news_list ul.list {
  display: flex;
  justify-content: space-around;
}

.section_news .news_list ul.list li.box {
  width: 30.7%;
}

.section_news .news_list ul.list li.box .ph.ph_sys {
  padding: 30%;
}

@media screen and (max-width: 760px) {
  .section_news .news_list ul.list li.box .ph.ph_sys {
    /* for sp Device Only */
    padding: 29%;
  }
}

.section_news .news_list ul.list ul.icons {
  height: 24px;
  margin-top: 22px;
  font-size: 12px;
}

@media screen and (max-width: 760px) {
  .section_news .news_list ul.list ul.icons {
    /* for sp Device Only */
    height: 5vw;
    margin-top: 3.7vw;
    font-size: 2vw;
  }
}

.section_news .news_list ul.list ul.icons li {
  min-width: 85px;
}

@media screen and (max-width: 760px) {
  .section_news .news_list ul.list ul.icons li {
    /* for sp Device Only */
    min-width: 16vw;
    padding: 2px 8px 4px;
  }
}

.section_news .news_list ul.list .tit {
  margin-top: 10px;
  overflow: hidden;
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 760px) {
  .section_news .news_list ul.list .tit {
    /* for sp Device Only */
    margin-top: 2vw;
    font-size: 4.4vw;
  }
}

.section_news .news_list ul.list .txt {
  max-height: 87px;
  margin-top: 14px;
  padding-top: 14px;
  overflow: hidden;
  border-top: solid 1px #141414;
  line-height: 1.6;
}

@media screen and (max-width: 760px) {
  .section_news .news_list ul.list .txt {
    /* for sp Device Only */
    max-height: 20vw;
    margin-top: 3vw;
    padding-top: 3vw;
  }
}

.section_news .news_list ul.list .new {
  margin-top: 25px;
}

@media screen and (max-width: 760px) {
  .section_news .news_list ul.list .new {
    /* for sp Device Only */
    margin-top: 7.2vw;
    margin-left: .5vw;
  }
}

.section_news .news_list ul.list .new:after {
  bottom: 2px;
  left: 0;
  font-weight: 400;
  font-size: 16px;
}

.section_news .btn {
  width: 255px;
  height: 47px;
  margin-top: 40px;
  line-height: 47px;
}

@media screen and (max-width: 760px) {
  .section_news .btn {
    /* for sp Device Only */
    width: 49vw;
    height: 11.5vw;
    margin-top: 8vw;
    margin-right: auto;
    margin-left: auto;
    line-height: 11.5vw;
  }
}

.section_news .btn a {
  padding-left: 20px;
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 760px) {
  .section_news .btn a {
    /* for sp Device Only */
    width: 100%;
    padding-left: 5vw;
    font-size: 3.8vw;
    text-align: left;
  }
}

@media screen and (max-width: 761px) {
  .section_news .slick-slider button.slick-next.slick-arrow {
    position: absolute;
    top: 24VW;
    right: -5vw;
    width: 3.5vw;
    height: 3.5vw;
    transform: rotate(45deg);
    border: none;
    background: none;
    content: "";
    color: transparent;
  }
  .section_news .slick-slider button.slick-next.slick-arrow::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 13px;
    height: 13px;
    margin-top: -4px;
    border: 0px;
    border-top: 2px solid #141414;
    border-right: 2px solid #141414;
    content: '';
  }
  .section_news .slick-slider button.slick-prev.slick-arrow {
    position: absolute;
    top: 25vw;
    left: -4.5vw;
    width: 3.5vw;
    height: 3.5vw;
    transform: rotate(45deg);
    border: none;
    background: none;
    content: "";
    color: transparent;
  }
  .section_news .slick-slider button.slick-prev.slick-arrow::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 13px;
    height: 13px;
    margin-top: -4px;
    border: 0px;
    border-bottom: 2px solid #141414;
    border-left: 2px solid #141414;
    content: '';
  }
}

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

section_other

---------------------------------------------------------- */
.section_other {
  padding: 90px 0 82px;
  background: #f7f7ed;
}

@media screen and (max-width: 760px) {
  .section_other {
    /* for sp Device Only */
    padding: 10vw 5vw 4vw;
  }
}

.section_other .inner {
  display: flex;
  justify-content: space-between;
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 760px) {
  .section_other .inner {
    flex-wrap: wrap;
    /* for sp Device Only */
    width: 100%;
  }
}

.section_other .inner .box {
  width: 23.5%;
}

@media screen and (max-width: 760px) {
  .section_other .inner .box {
    /* for sp Device Only */
    width: 48%;
    margin-bottom: 4.5vw;
  }
}

.section_other .inner .box .txt_area .txt {
  margin-top: 15px;
  font-size: 21px;
  line-height: 1.5;
  font-family: dnp-shuei-mincho-pr6, YuMincho, "游明朝", serif;
  text-align: center;
}

@media screen and (max-width: 760px) {
  .section_other .inner .box .txt_area .txt {
    margin-top: 2.6vw;
    /* for sp Device Only */
    font-size: 3.9vw;
  }
}

.section_other .inner .box .txt_area .txt small {
  display: block;
  font-size: 15px;
}

@media (min-width: 741px) and (max-width: 1160px) {
  .section_other .inner .box .txt_area .txt small {
    /* for iPad Device */
    font-size: 1.2vw;
  }
}

@media screen and (max-width: 760px) {
  .section_other .inner .box .txt_area .txt small {
    /* for sp Device Only */
    font-size: 2vw;
  }
}
/*# sourceMappingURL=top.css.map */
