@charset "UTF-8";
/*-------------------------
- base
- color
- common
- fadein
- header
- footer
- mv_sec
- intro_sec
- about_sec
- pickup_sec
- modal
-------------------------*/
/*=======================================
　base
=======================================*/
body {
  overflow-x: hidden;
  background-color: #f1f1f1;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #231815;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.zen-kaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

main .inner {
  max-width: 1080px;
  width: 92%;
  margin: 0 auto;
}
main sup {
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  main sup {
    font-size: 8px;
  }
}
main .bg_on {
  background: #e1e8ef;
}
main #about_sec {
  position: relative;
  z-index: 1;
}

.anchor {
  display: block;
  padding-top: 160px;
  margin-top: -120px;
}
@media screen and (max-width: 768px) {
  .anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}

.pc {display:block!important;}
.sp {display:none!important;}

/*---- FOR SP ----*/
@media only screen and (max-width: 768px){
  .pc {display:none !important;}
  .sp {display:block !important;}
  #mv_sec_sp {
    overflow: visible;
    position: relative;
    visibility: visible !important;
    height: 80vh; /* ビューポートの高さに依存 */
  }
}

/*=======================================
　color
=======================================*/
:root {
  --main_navy: #1d386e;
  --main_green: #286b2d;
  --sub_green: #8dc21f;
  --sub_icegreen: #00a28f;
}

/*=======================================
　common
=======================================*/
/* notes */
.notes {
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .notes {
    font-size: 8px;
  }
}

/*=======================================
　fadein
=======================================*/
/*下から*/
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity 2s ease, transform 2s ease;
}
.fadeIn_up.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

/*その場で出現*/
.fadeIn {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}

/*=======================================
　header
=======================================*/
#header {
  padding: 15px 30px 15px;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 10;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #header {
    height: 18vw;
    padding: 15px 15px 15px;
    z-index: 100;
    background-color: #b5ff00;
  }
}
#header h1 {
  max-width: 217.55px;
  width: 16.416%;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #header h1 {
    width: 113.5087px;
    max-width: inherit;
    margin-bottom: 7.5px;
  }
}
@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    height: auto;
    position: relative;
  }
}

/*=======================================
　footer
=======================================*/
footer .container {
  max-width: 1016px;
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0 60px;
  z-index: 1;
  position: relative;
}

footer .recruit {
  background-color: #fff;
  padding: 3% 1% 1%;
}

/*=======================================
　main
=======================================*/

main {
  position: relative;
}

.section_wrap {
  background-color: #f1f1f1;
  position: relative;
  padding-bottom: 10px; /* sub_wrapとの間隔を確保 */
}


/*=======================================
#mv_sec_pc, #mv_sec_sp
=======================================*/
#mv_sec_pc {
  width: 100%;
  height: 760px;
  overflow: hidden;
  position: relative;
}

#mv_sec_sp {
  width: 100%;
  height: 74vh;
  overflow: hidden;
  position: relative;
  display: none;
}

.hero {
  width: 100%;
  height: 100%;
}

.slide-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.top-slide, .bottom-slide {
  position: absolute;
  width: 100%;
  height: 50%;
  overflow: hidden;
}

.top-slide {
  top: 0;
  background-color: #b5ff00;
}

.bottom-slide {
  bottom: 0;
  background-color: #987aec;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: left 1.5s ease, right 1.5s ease;
}

.top-slide .slide-image {
  left: 100%;
}

.bottom-slide .slide-image {
  right: 100%;
}

.top-slide .slide-image.active {
  left: 0;
}

.bottom-slide .slide-image.active {
  right: 0;
}

.overlay-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 940px;
  height: auto;
}


@media screen and (max-width: 768px) {
  #mv_sec_pc {
    display: none;
  }

  #mv_sec_sp {
    display: block !important;
    height: 74vh;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .top-slide, .bottom-slide {
    height: 50%; /* 74vhの半分 */
    width: 100%;
    overflow: hidden;
  }

  .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: right 1.5s ease; /* 右端揃えのためrightを使用 */
  }


  .overlay-image {
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    max-width: 55%;
    height: auto;
    z-index: 10;
  }
}


/*=======================================
#badge_sec
=======================================*/

#badge_sec {
  width: 100%;
  max-width: 100%;
  margin: 100px auto 0;
  padding: 0;
  position: relative;
}
#badge_sec div {
  position: absolute;
  top: 00%;
  left: 60%;
  width: 280px;
  max-width: 100%;
  margin: -300px 0 0 0;
  padding: 0;
  z-index: 5;
}

#badge_sec .mv_badge img {
  animation: rotation 20s linear infinite;
/* transform: rotate(○○deg); */
}
/* アニメーション */
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#badge_sec .mv_badge2 img {
  margin: 4px 0 0 4px;
  animation: rotation 20s linear infinite;
/* transform: rotate(○○deg); */
}
/* アニメーション */
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#badge_sec .mv_badge_txt {
  width: 240px;
  padding: 80px 0 0 60px;
  max-width: 100%;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  
 #badge_sec div {
  position:unset;
  width: 280px;
  max-width: 100%;
  margin: -150px auto 150px;
  padding: 0;
  z-index: 5;
}

#badge_sec .mv_badge {
  position: absolute;
  top: 84%;
  left: 15%;
  width: 70%;
  max-width: 100%;
  margin: -140px 0 0 0;
  padding: 0;
  z-index: 5;
}
#badge_sec .mv_badge2 {
  position: absolute;
  top: 84%;
  left: 15%;
  width: 70%;
  max-width: 100%;
  margin: -140px 0 0 0;
  padding: 0;
  z-index: 5;
}

#badge_sec .mv_badge_txt {
  position: absolute;
  top: 2%;
  left: 29%;
  width: 48%;
  max-width: 100%;
  margin: -60px 0 0 0;
  padding: 0;
  z-index: 10;
}
}


/*=======================================
#concept_sec
=======================================*/

#concept_sec {
  width: 100%;
  max-width: 100%;
  margin: 100px auto 0;
  padding: 0;
}
#concept_sec div {
  width: 1024px;
  max-width: 100%;
  max-height: 780px;
  margin: 20px auto 40px;
  padding: 0;
}

@media screen and (max-width: 768px) {
  #concept_sec {
  width: 100%;
  max-width: 100%;
  margin: 36vh auto 40px;
  padding: 0;
}
  #concept_sec div {
  width: 96%;
  max-width: 100%;
  max-height: 100%;
  margin: 20px auto 40px;
  padding: 0 0 0 4vw;
}
}

/*=======================================
#concept-animation
=======================================*/
#concept-animation {
  width: 100%;
  max-width: 1020px;
  height: 850px; /* PC 時の固定高さ */
  margin: 40px auto;
  position: relative;
  background-color: #f0f0f0;
  overflow: visible;
  z-index: 10;
}

#concept-animation .line-container {
  position: relative;
  width: 100%;
  max-width: 1008px;
  height: 100%; /* 親コンテナの高さに合わせる */
  filter: none;
  transition: filter 0.5s ease;
  overflow: visible;
}

#concept-animation .line-container.active {
  filter: drop-shadow(16px 16px 0 #987aec);
}

#concept-animation .line {
  background-color: #000;
  position: absolute;
  opacity: 0;
  transition: opacity 0.1s ease;
}

#concept-animation .line.active {
  opacity: 1;
  transition: width 1s ease, height 1s ease, opacity 0.1s ease;
}

#concept-animation .line1 { width: 8px; height: 0; top: 0; left: 0; }
#concept-animation .line2 { width: 0; height: 8px; bottom: 0; left: 0; }
#concept-animation .line3 { width: 8px; height: 0; bottom: 0; right: 0; }
#concept-animation .line4 { width: 0; height: 8px; top: 0; right: 0; }


#concept-animation .background {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background-color: #fff;
  filter: drop-shadow(0 0 0 transparent);
  transition: opacity 0.5s ease, filter 0.5s ease;
  opacity: 0;
  will-change: opacity, filter;
  backface-visibility: hidden;
  transform: translateZ(0);
}

#concept-animation .background.active {
  opacity: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

#concept-animation .concept-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20px); /* 初期位置を20px下に */
  max-width: 60%;
  max-height: 80%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease; /* transformを追加 */
  display: none;
  z-index: 6;
  padding: 20px 0;
}

#concept-animation .concept-image.active {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0); /* フェードイン時に上に移動 */
  display: block;
}
#concept-animation .concept-image.pc { display: block; }
#concept-animation .concept-image.sp { display: none; }

@media screen and (max-width: 768px) {
  #concept-animation {
    width: 88vw;
    height: 700px; /* 固定高さ */
    margin: 36vh auto 40px;
    box-sizing: border-box;
  }

  #concept-animation .line-container { width: 100%; height: 100%; box-sizing: border-box; /* 幅が親要素に一致 */ }

   #concept-animation .line1, #concept-animation .line3 {
    width: 6px;
  }

  #concept-animation .line2, #concept-animation .line4 {
    height: 6px;
  }

  #concept-animation .background {
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    filter: drop-shadow(0 0 0 transparent);
    transition: opacity 0.5s ease, filter 0.5s ease;
    will-change: opacity, filter;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  #concept-animation .background.active {
    opacity: 1;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  }

  #concept-animation .concept-image {
    max-width: 98%;
    max-height: 98%;
    padding: 20px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px); /* 初期位置を20px下に */
    transition: opacity 0.5s ease, transform 0.5s ease; /* transformを追加 */
  }

  #concept-animation .concept-image.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0); /* フェードイン時に上に移動 */
  }

  #concept-animation .concept-image.pc { display: none; }
  #concept-animation .concept-image.sp { display: block; }
}



/*=======================================
#lupe
=======================================*/

#lupe {
    margin: 240px auto 0;
    height: 40vh;
    display: block;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

#lupe2 {
    margin: 240px auto 0;
    height: 40vh;
    display: block;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.lupecontainer {
    position: relative;
    width: 100%;
    height: 100%;
}

.lupe-image {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 720px; /* 必要に応じて調整 */
    height: auto;
    z-index: 10; /* 上部レイヤーに */
}

.tan-image {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px; /* 必要に応じて調整 */
    height: auto;
    z-index: 10; /* 上部レイヤーに */
}

@media screen and (max-width: 768px) {
  #lupe {
    margin: 10px auto 60px;
    height: 65vh;
    padding-top: 0%;
    display: block;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    overflow-x: hidden;
}
  #lupe2 {
    margin: 60px auto 20px;
    height: 50vh;
    padding-top: 10%;
    display: block;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    overflow-x: hidden;
}

  .lupecontainer {
    position: relative;
    width: 100%;
    height: 70%;
}

.lupe-image {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%; /* 必要に応じて調整 */
    height: auto;
    z-index: 10; /* 上部レイヤーに */
    overflow: hidden;
  
}


  .tan-image {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%; /* 必要に応じて調整 */
    height: auto;
    z-index: 10; /* 上部レイヤーに */
}
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 1);
}
.scroll-infinity__item img {
  width: auto;
}


@media only screen and (max-width: 768px) {
  .scroll-infinity {
    position: absolute;
    bottom:0;
  margin-top: -50px;
  overflow: hidden;
}
	.scroll-infinity__item {
  width: 250vw;
  height: 120px;
  overflow: hidden;
}
.scroll-infinity__item>img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

}

/*=======================================
#brain_sec 
=======================================*/
#brain_sec {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 0;
}

#brain_sec h3 {
  width: 580px;
  max-width: 100%;
  margin: 40px auto;
  padding: 0 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #brain_sec h3 {
    width: 580px;
    max-width: 100%;
    margin: 60px auto 0;
    padding: 0 40px 0;
    text-align: center;
  }
}

#brain_sec .ac {
  display: block;
  justify-content: center;
  align-items: center;
  max-width: 1366px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f0f0f0;
}

.accordion {
  position: relative;
  width: 100%;
  max-width: 1366px;
  margin: 20px auto 60px;
  overflow: hidden; /* コンテンツがはみ出さないように */
}

.accordion-header {
  position: relative;
  cursor: pointer;
}

.accordion-image {
  width: 100%;
  height: auto;
  display: block;
}

.accordion-image.pc {
  display: block;
}

.accordion-image.sp {
  display: none;
}

.accordion-content {
  display: none;
  padding: 20px;
  transition: all 0.3s ease; /* スムーズな開閉アニメーション */
}

.accordion-content.active {
  display: block;
}

/* exclamation.png のスタイル */
.exclamation-image {
  position: absolute;
  bottom: 420px; /* アコーディオン画像の下辺から200px上 */
  left: 60%;
  transform: translateX(-50%); /* 水平中央揃え */
  width: 90px; /* PCでの横幅 */
  height: auto;
  z-index: 10; /* アコーディオン画像の上に表示 */
  animation: blink 1.5s infinite; /* 点滅アニメーション */
}

/* 点滅アニメーション */
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .accordion-image.pc {
    display: none;
  }

  .accordion-image.sp {
    display: block;
  }

  .accordion {
    max-width: 100%; /* スマホでは全幅使用 */
  }

  .exclamation-image {
    width: 50px; /* スマホでの横幅 */
    bottom: 9.5%; /* アコーディオン画像の下辺から200px上 */
    left: 76%;
  }
}

/*=======================================
#economics_sec
=======================================*/

#economics_sec {
  width: 100%;
  max-width: 100%;
  margin: 100px auto 0;
  padding: 0;
}
#economics_sec div {
  width: 1024px;
  max-width: 100%;
  max-height: 780px;
  margin: 20px auto 40px;
  padding: 0;
}

@media screen and (max-width: 768px) {
  #economics_sec {
  width: 100%;
  max-width: 100%;
  margin: 40px auto 0;
  padding: 0;
}
  #economics_sec div {
  width: 96%;
  max-width: 100%;
  max-height: 100%;
  margin: 20px auto 40px;
  padding: 0 0 0 4vw;
}
}


/*=======================================
#economics-animation
=======================================*/

#economics-animation {
  width: 100%;
  max-width: 1020px;
  height: 750px; /* PC 時の固定高さ */
  margin: 40px auto;
  position: relative;
  background-color: #f0f0f0;
  overflow: visible;
  z-index: 10;
}

#economics-animation .line-container {
  position: relative;
  width: 100%;
  max-width: 1008px;
  height: 100%; /* 親コンテナの高さに合わせる */
  filter: none;
  transition: filter 0.5s ease;
  overflow: visible;
}

#economics-animation .line-container.active {
  filter: drop-shadow(16px 16px 0 #987aec);
}

#economics-animation .line {
  background-color: #000;
  position: absolute;
  opacity: 0;
  transition: opacity 0.1s ease;
}

#economics-animation .line.active {
  opacity: 1;
  transition: width 1s ease, height 1s ease, opacity 0.1s ease;
}

#economics-animation .line1 { width: 8px; height: 0; top: 0; left: 0; }
#economics-animation .line2 { width: 0; height: 8px; bottom: 0; left: 0; }
#economics-animation .line3 { width: 8px; height: 0; bottom: 0; right: 0; }
#economics-animation .line4 { width: 0; height: 8px; top: 0; right: 0; }

#economics-animation .background {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background-color: #fff;
  filter: drop-shadow(0 0 0 transparent);
  transition: opacity 0.5s ease, filter 0.5s ease;
  opacity: 0;
  will-change: opacity, filter;
  backface-visibility: hidden;
  transform: translateZ(0);
}

#economics-animation .background.active {
  opacity: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

#economics-animation .economics-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20px); /* 初期位置を20px下に */
  max-width: 64%;
  max-height: 90%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease; /* transformを追加 */
  display: none;
  z-index: 6;
  padding: 20px 0;
}

#economics-animation .economics-image.active {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0); /* フェードイン時に上に移動 */
  display: block;
}
#economics-animation .economics-image.pc { display: block; }
#economics-animation .economics-image.sp { display: none; }

@media screen and (max-width: 768px) {
  #economics-animation {
    width: 88vw;
    height: 880px; /* 固定高さ */
    margin: 30px auto;
    box-sizing: border-box;
  }

  #economics-animation .line-container { width: 100%; height: 100%; box-sizing: border-box; /* 幅が親要素に一致 */}

  #economics-animation .line1, #economics-animation .line3 {
    width: 6px;
  }

  #economics-animation .line2, #economics-animation .line4 {
    height: 6px;
  }
  
  #economics-animation .background {
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
  }

  #economics-animation .background.active {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}


  #economics-animation .economics-image {
    max-width: 98%;
    max-height: 98%;
    padding: 20px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px); /* 初期位置を20px下に */
    transition: opacity 0.5s ease, transform 0.5s ease; /* transformを追加 */
  }

  #economics-animation .economics-image.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0); /* フェードイン時に上に移動 */
  }
  #economics-animation .economics-image.pc { display: none; }
  #economics-animation .economics-image.sp { display: block; }
}

/*=======================================
.sub_wrap
=======================================*/

.sub_wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  background-color: #43b89e;
  position: relative;
  z-index: 1; /* section_wrapと分離 */
}

.sub_wrap .banner {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 20px 0;
}

.sub_wrap .banner ul {
  width: 740px;
  max-width: 100%;
  margin: auto;
  padding: 20px 20px 0;
}
.sub_wrap .banner ul li {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 20px 0;
}

.sub_wrap .access {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 40px 0;
}
.sub_wrap .access .bg_area {
  width: 90%;
  margin-left: 10%;
  padding: 60px 10px;
  background-color: #fff;
  border-top-left-radius: 100px;
}
@media screen and (max-width: 768px) {
  .sub_wrap .access .bg_area {
  width: 100%;
  margin-left:0;
  padding: 60px 10px;
  background-color: #fff;
  border-top-left-radius: 0;
}
}

.sub_wrap .access .title {
  width: 100%;
  max-width: 100%;
  margin: 0 0 0 -100px;
  padding: 20px 0;
  text-align: center;
}
.sub_wrap .access .title img {
  width: 200px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .sub_wrap .access .title {
  width: 100%;
  max-width: 100%;
  margin: 0 0 0 0;
  padding: 20px 0;
  text-align: center;
}
}

.sub_wrap .access .campusroot {
  width: 100%;
  max-width: 100%;
  margin: 0 0 0 -50px;
  padding: 60px 0;
  text-align: center;
}
.sub_wrap .access .campusroot img {
  width: 690px;
  max-width: 100%;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub_wrap .access .campusroot {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}
}

.sub_wrap .access p {
  width: 100%;
  max-width: 100%;
  margin: 0 0 0 -50px;
  padding: 10px 0;
  text-align: center;
  font-size: 1.16rem;
}
@media screen and (max-width: 768px) {
  .sub_wrap .access p {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 10px 0;
  text-align: center;
  font-size: 1.16rem;
}
}

.sub_wrap .access .map {
  width: 100%;
  max-width: 100%;
  margin: 0 0 0 -50px;
  padding: 10px 0;
  text-align: center;
}
.sub_wrap .access .map img {
  width: 1100px;
  max-width: 100%;
  padding-left: 100px;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub_wrap .access .map {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 10px 20px;
  text-align: center;
}
.sub_wrap .access .map img {
  width: 1100px;
  max-width: 100%;
  padding-left: 0;
}
}


.sub_wrap .link_area {
  width: 1866px;
  max-width: 100%;
  margin: auto;
  padding: 20px 0;
}
.sub_wrap .link_area .link {
  width: 260px;
  max-width: 100%;
  margin: auto;
  padding: 20px 0 0;
  text-align: center;
} 
.sub_wrap .link_area .foottxt {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 0 20px 0 0;
  text-align: right;
}
.sub_wrap .link_area .foottxt img {
  width: 360px;
}


.sub_wrap .link_area .copyright {
  width: 260px;
  max-width: 100%;
  margin: -10px auto 0;
  padding: 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sub_wrap .link_area {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 0 0;
}
.sub_wrap .link_area .link {
  width: 60%;
  max-width: 100%;
  margin: auto;
  padding: 20px 0 0;
  text-align: center;
}
  .sub_wrap .link_area .foottxt {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 0 10px;
  text-align: center;
}
.sub_wrap .link_area .foottxt img {
  width: 90%;
}
.sub_wrap .link_area .copyright {
  width: 60%;
  max-width: 100%;
  margin: 10px auto 0;
  padding: 0;
  text-align: center;
}
}