@charset "utf-8";

/* ****************************************************

style.css
-----------------------------------
1: style settings
	1-1: common
	1-2: anc__area
	1-3: section01 → section06に移動
	1-4: section02 → section01に移動
	1-5: section03 → section02に移動
	1-5: section04 → section03に移動
	1-7: section05 → section04に移動
	1-8: section06 → section05に移動
	1-9: cv__area
	1-10: section07
-----------------------------------

***************************************************** */

/*=================================

	1: style settings

================================ */

/* 1-1: common
================================ */

.wrap {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
}

/* 1100px以下の画面幅に対応 */
@media screen and (max-width: 1100px) {
  .wrap {
    padding-inline: 4%;
  }
}

/* 768px以下の画面幅に対応 */
@media screen and (min-width: 581px) and (max-width: 768px) {
  #main .wrap {
    min-height: 400px;
  }
}

/* header */
#header a,
#header {
  color: #fff;
  text-decoration: none;
}
#global-nav ul {
  display: none;
  list-style: none;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
}
#global-nav ul li {
  float: left;
}
#global-nav ul li a {
  padding: 0 30px;
}

/* Fixed */
#header.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  padding-top: 10px;
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
}
#header.fixed .logo {
  font-size: 24px;
  color: #333;
}
#header.fixed #global-nav ul li a {
  color: #333;
  padding: 0 20px;
}

/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 65px;
  height: 65px;
  cursor: pointer;
  z-index: 101;
  border-left: 1px solid #ccc;
}
#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 60%;
  background: #666;
  left: 22%;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 18px;
}
#nav-toggle span:nth-child(2) {
  top: 29px;
}
#nav-toggle span:nth-child(3) {
  top: 40px;
}

#header .wrap,
#footer .wrap {
  padding: 5px 0;
}

#header .logo {
  max-width: 110px;
  padding: 10px;
}

/* 768px以下の画面幅に対応 */
@media screen and (max-width: 768px) {
  #header .logo {
    width: 13.5%;
    max-width: 80px;
    float: left;
    margin-right: 10px;
    margin-left: 0;
    padding: 0;
  }
}

#footer {
  background: #e7e7e7;
  color: #666666;
  font-size: 1.2rem;
  padding: 15px 0;
  clear: both;
  float: none;
}

#footer .footer__list {
  float: left;
}

#footer .footer__list li {
  float: left;
}

#footer .footer__list li:after {
  content: "|";
  color: #666666;
  width: 2px;
  position: relative;
  margin: 0 10px;
}

#footer .footer__list li:last-child:after {
  display: none;
}

#footer address {
  font-size: 1.1rem;
  float: right;
}

/* --- #main --- */

/* PC・TBメインビジュアル */
#main {
  position: relative;
  background: url("../../img/main_pc.webp") no-repeat center center;
  background-size: cover;
}

/* --- #main .wrap --- */

#main .wrap h1 {
  max-width: 650px;
  padding-top: 2rem;
}

#pageTopBtn {
  display: none;
  position: fixed;
  z-index: 9999;
  bottom: 10px;
  right: 10px;
  width: 63px;
  height: 65px;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  transition: 0.5s;
  font-size: 11px;
  line-height: 130%;
  -webkit-transition: opacity 0.1s linear;
  -moz-transition: opacity 0.1s linear;
  -ms-transition: opacity 0.1s linear;
  -o-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
  opacity: 1;
}

#pageTopBtn img {
  width: 100%;
  height: auto;
}

#pageTopBtn:hover {
  opacity: 0.7;
}

/* CVボタン */

.sp__cvbtn {
  display: none;
}

.main__cv--btn.sp-btn {
  display: none;
}

.main__cv--btn.pc-btn,
#main_y .wrap .main__cv--btn {
  display: inline-block;
}

.main__cv--btn {
  position: relative;
  margin-left: 17.5rem;
  padding-top: 50px;
}

/* 768px以下の画面幅に対応 */
@media screen and (max-width: 768px) {
  .main__cv--btn.sp-btn {
    display: block;
    margin: 0 0 0 0;
  }

  .main__cv--btn.pc-btn,
  #main_y .wrap .main__cv--btn {
    display: none;
  }
}

.main__cv--btn:before {
  content: "";
  width: 236px;
  height: 36px;
  background: url("../../img/ic_10.png") no-repeat;
  background-size: contain;
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  margin-left: -118px;
}

.main__cv--btn a {
  padding: 25px 20px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  display: inline-block;
  background: #fe7190;
  border-radius: 12px;
  z-index: 1;
  position: relative;
  -webkit-transition: background 0.1s linear;
  -moz-transition: background 0.1s linear;
  -ms-transition: background 0.1s linear;
  -o-transition: background 0.1s linear;
  transition: background 0.1s linear;
}

.main__cv--btn a:hover {
  text-decoration: none;
  background: #ff89a3;
  -ms-transform: translate(5px, 5px);
  -webkit-transform: translate(5px, 5px);
  transform: translate(5px, 5px);
}

.main__cv--btn .cv__bg {
  width: 100%;
  height: 94px;
  background: #bc4e66;
  display: block;
  border-radius: 12px;
  position: absolute;
  z-index: 0;
  top: 70px;
  left: 20px;
}

.main__cv--btn a span:after {
  content: "";
  width: 22px;
  height: 22px;
  background: url("../../img/ic_03.png") no-repeat;
  background-size: contain;
  position: relative;
  margin-left: 15px;
  display: inline-block;
}

h2 {
  color: #213760;
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

h2.noline__heading {
  border: none;
  padding-bottom: 0;
  margin-bottom: 10px;
  padding-top: 40px;
}

h2 .section__number {
  display: block;
  text-align: center;
}

p + p {
  margin-top: 20px;
}

/* 背景色 */
.bg__grey {
  background-color: #f4f2ec;
}

.bg__blue {
  background-color: #e9f4ff;
}

/* 1-2: anc__area
================================ */

#anc__area {
  padding: 60px 0;
}

#anc__area h2 {
  color: #666666;
  font-size: 2.6rem;
  line-height: 1.3;
  border-bottom: none;
}

#anc__area h2 #emphasis01 {
  font-size: 4rem;
}

#anc__area h2 #emphasis02 {
  color: #ffcf3b;
  font-size: 5rem;
  position: relative;
}

#anc__area h2 #emphasis02:after {
  content: "";
  width: 25px;
  height: 12px;
  background: url("../../img/ic_12.gif") no-repeat;
  background-size: 25px 12px;
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  margin-top: -2px;
  margin-left: -12px;
}

.anc__list {
  margin-top: 15px;
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex; /* 旧仕様が追加された */
  display: -ms-flexbox;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.anc__list li {
  width: 31.6%;
}
.anc__list li:nth-child(n + 4) {
  margin-top: 30px;
}

.anc__list li a {
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 600;
  max-height: 170px;
  padding: 20px 12px;
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex; /* 旧仕様が追加された */
  display: -ms-flexbox;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  border-bottom: 7px solid #e5e5e5;
}

.anc__list li a:hover,
.anc__list li a:active {
  text-decoration: none;
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  border-bottom: 2px solid #e5e5e5;
}

.anc__list--item figure {
  width: 32%;
  max-width: 90px;
}

.anc__list--txt {
  width: 62%;
  display: block;
}

.anc__list li a:after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 65%;
  width: 12px;
  height: 12px;
  border: 3px solid;
  border-color: transparent transparent #aaaaaa #aaaaaa;
  transform: rotate(-45deg);
}

.anc__list li:first-child a:before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 39px;
  height: 32px;
  background: url("../../img/ic_12.png") no-repeat;
  background-size: 39px 32px;
}

.anc__list li:nth-child(2) a:before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 43px;
  height: 31px;
  background: url("../../img/ic_13.png") no-repeat;
  background-size: 43px 31px;
}

.anc__list li:nth-child(3) a:before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 42px;
  height: 31px;
  background: url("../../img/ic_14.png") no-repeat;
  background-size: 42px 31px;
}

.anc__list li:nth-child(4) a:before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 42px;
  height: 31px;
  background: url("../../img/ic_15.png") no-repeat;
  background-size: 42px 31px;
}

.anc__list li:nth-child(5) a:before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 44px;
  height: 33px;
  background: url("../../img/ic_16.png") no-repeat;
  background-size: 44px 33px;
}

.anc__list li:last-child a:before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 43px;
  height: 31px;
  background: url("../../img/ic_17.png") no-repeat;
  background-size: 43px 31px;
}

/* 1-3: section01 → section06に移動
================================ */

.img__wrap {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex; /* 旧仕様が追加された */
  display: -ms-flexbox;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.img__wrap .img__item {
  width: 30.9%;
}

.img__wrap figure figcaption {
  color: #666666;
  font-size: 1.1rem;
  text-align: right;
}

.fancybox__item a {
  position: relative;
  display: block;
}

.fancybox__item a:after {
  content: "";
  width: 22px;
  height: 22px;
  background: url("../../img/ic_11.gif") no-repeat;
  background-size: 22px 22px;
  position: absolute;
  display: block;
  bottom: 5px;
  right: 5px;
  z-index: 10;
}

.fancybox__item a:hover:after {
  opacity: 0.7;
}

/* 1-4: section02 → section01に移動
================================ */

.structure__wrap {
  width: 99%;
}

.structure__wrap section + .structure__wrap section {
  margin-top: 30px;
}

.structure__contents {
  border-radius: 8px 0 0 8px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.structure__contents + .structure__contents {
  margin-top: 30px;
}

.structure__wrap .headding03 {
  padding: 16px;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
}

.structure__wrap .structure__school .headding03 {
  background: url("../../img/bg_01.png") no-repeat center;
  background-size: cover;
}

.structure__wrap .structure__selfb .headding03 {
  background: url("../../img/bg_02.png") no-repeat center;
  background-size: cover;
}

.structure__wrap .structure__hiroba .headding03 {
  background: url("../../img/bg_03.png") no-repeat center;
  background-size: cover;
}

.structure__line {
  position: relative;
}
.structure__wrap .structure__line .headding03 {
  background: url("../../img/bg_04.png") no-repeat center;
  background-size: cover;
}
.structure__wrap .structure__line .headding03::after {
  content: "";
  /* visual1/visual2はテスト用のため共通のimgディレクトリ(recruitment_partner/img)を参照する */
  background: url("../../img/bg_new.svg") no-repeat 100% / contain;
  display: block;
  position: absolute;
  height: 85px;
  width: 85px;
  top: -8px;
  right: 4vw;
}

.structure__wrap .structure__item {
  padding: 30px;
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex; /* 旧仕様が追加された */
  display: -ms-flexbox;
  flex-direction: row;
  justify-content: space-between;
  background-color: #fff;
}

.structure__item .structure__itemInner + * {
  width: 45.4%;
}

.structure__item .structure__itemInner {
  width: 50%;
}

.structure__itemTxt {
  padding-bottom: 2rem;
}

.structure__listWrapper {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #e5e5e5;
}

.structure__listItem {
  line-height: 1.7;
}

.structure__listItem:nth-child(n + 2) {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.structure__listItem:last-child {
  padding-bottom: 2rem;
}

.structure__listTitle {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  padding: 1rem 0;
  border-radius: 10px 10px 0 0;
  background: #fff3cb;
}

.structure__listHeader {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1.5rem;
  border-left: 5px #ffcf3b solid;
  padding-left: 1.5rem;
}

.structure__listHeader {
  margin-top: 2rem;
}

.structure__listItem--text {
  padding-top: 0.5rem;
}

/* 1-5: section03 → section02に移動
================================ */

.imgTxt__wrap {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex; /* 旧仕様が追加された */
  display: -ms-flexbox;
  flex-direction: row;
  justify-content: space-between;
}

.imgTxt__wrap .imgTxt__item--txt {
  width: 48.1%;
}

/* 1-6: section04 → section03に移動
================================ */

p + .col1__img {
  margin-top: 20px;
}

/* 1-7: section05 → section04に移動
================================ */

.imgTxt__wrap > .box__content {
  width: 48.1%;
}

.box__content {
  padding: 20px 30px;
  background: #fff;
}

#section04 .box__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 2px solid #e5e5e4;
}

.box__content .box__content--headding04 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #4c87d5;
  margin-bottom: 5px;
  text-align: center;
}

.box__content .box__content--headding04:before {
  content: "";
  width: 21px;
  height: 10px;
  background: url("../../img/ic_01.png") no-repeat center;
  background-size: 21px 10px;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
}

.box__content .box__content--headding04:after {
  content: "";
  width: 21px;
  height: 10px;
  background: url("../../img/ic_01.png") no-repeat center;
  background-size: 21px 10px;
  position: relative;
  display: inline-block;
  margin-left: 10px;
  transform: rotate(-180deg);
  margin-bottom: 5px;
}

.dot__list li {
  padding-left: 15px;
  position: relative;
}

.dot__list li:before {
  content: "・";
  color: #387cd2;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 4px;
}

.dot__list li + li {
  margin-top: 10px;
}

/* 1-8: section06 → section05に移動
================================ */

#section05 .imgTxt__wrap .imgTxt__item--txt {
  width: 50%;
}

.box__content.no_bg {
  padding: 0;
  background: none;
}

.box__content .list__wrap {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex; /* 旧仕様が追加された */
  display: -ms-flexbox;
  flex-direction: row;
  justify-content: space-between;
}

.logo__list {
  padding: 0 42px;
  float: none;
  clear: both;
}

.logo__list li {
  width: 47.2%;
  float: left;
  margin-right: 5.1%;
}

.logo__list li:nth-child(2n) {
  margin-right: 0;
}

.logo__list li:nth-child(n + 3) {
  margin-top: 20px;
}

/* 1-9: cv__area
================================ */

.cv__area {
  background: #fe7190;
}

.cv__area > .wrap {
  padding: 0;
  position: relative;
}

.cv__btn {
  align-items: center;
  padding: 30px 30px 50px;
  position: relative;
  text-align: center;
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

.cv__btn:before {
  content: "";
  width: 144px;
  height: 167px;
  background: url("../../img/ic_02.png") no-repeat;
  position: relative;
  display: inline-block;
  margin-right: 20px;
}

.cv__btn a {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 740px;
}

.cv__btn .cv__bg {
  width: 100%;
  height: 100%;
  border: 3px solid #fff;
  display: block;
  border-radius: 12px;
  position: absolute;
  z-index: 0;
  top: 20px;
  left: 20px;
}

.cv__btn a .cv__btn__text {
  padding: 36px 30px;
  padding-right: 70px;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 600;
  display: block;
  background: #fe7190;
  border: 3px solid #fff;
  border-radius: 12px;
  z-index: 1;
  position: relative;
  -webkit-transition: background 0.1s linear;
  -moz-transition: background 0.1s linear;
  -ms-transition: background 0.1s linear;
  -o-transition: background 0.1s linear;
  transition: background 0.1s linear;
}

.cv__btn a .cv__btn__text:after {
  content: "";
  width: 32px;
  height: 32px;
  background: url("../../img/ic_btn.png") no-repeat;
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 30px;
  margin-top: -16px;
}

.cv__btn a:hover {
  text-decoration: none;
}

.cv__btn a:hover .cv__btn__text {
  top: 10px;
  left: 10px;
}

/* 1-10: section07
================================ */

.point__wrap {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex; /* 旧仕様が追加された */
  display: -ms-flexbox;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
}

#section07 h2.noline__heading figure img {
  width: 20%;
}

.point__wrap .point__item {
  width: 48.1%;
}

.point__wrap .point__item:nth-child(n + 3) {
  margin-top: 30px;
}

.point__wrap .point__item .point__img figure img {
  z-index: 1;
  max-width: 220px;
  text-align: center;
}

.point__wrap .point__item .point__detail {
  background: #fffdf4;
  padding: 12px;
  margin-top: -10px;
  min-height: 180px;
  display: table;
  z-index: -100;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
}

.point__wrap .point__item .point__detail > p {
  display: table-cell;
  vertical-align: middle;
}

.txt__color01 {
  color: #d85696;
}

.txt__color02 {
  color: #d8c351;
}

.txt__color03 {
  color: #ec9d40;
}

.txt__color04 {
  color: #4e7ec7;
}

.note__list li {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.6;
  text-align: left;
  color: #666666;
}

.note__list li:nth-child(n + 2) {
  margin-top: 5px;
}

.note__list li span {
  display: inline-block;
  margin-right: 10px;
}

/************　以下レスポンシブ設定**************/

/* 1100px */
@media only screen and (max-width: 1100px) {
  #anc__area {
    padding: 60px 4%;
  }

  .anc__list li a {
    padding: 20px 12px 40px 20px;
  }

  .anc__list--item figure {
    width: 25%;
  }

  .anc__list--txt {
    width: 68%;
  }
}

@media only screen and (max-width: 900px) {
  .cv__btn {
    padding: 30px 30px 50px;
  }
  .cv__btn a .cv__btn__text {
    font-size: 2.6rem;
  }

  .cv__btn img {
    width: 80%;
    margin-top: 20px;
  }
}
/* ipad表示 */

@media only screen and (max-width: 768px) {
  .main__cv--btn a,
  h2,
  .anc__list li a,
  .structure__wrap .headding03,
  .box__content .box__content--headding04,
  .point__wrap .point__item .point__detail,
  .cv__btn02 a {
    font-weight: bold;
  }

  #global-nav ul {
    display: block;
  }

  #header {
    border-bottom: none;
    background: #fff;
  }

  #header .wrap {
    min-height: 60px;
    padding: 0;
  }

  #header {
    top: -100px;
    position: relative;
    width: 100%;
    padding: 0;
    line-height: 1;
    z-index: 999;
  }
  #header {
    width: 100%;
    top: 0;
    margin-top: 0;
  }
  /* Fixed reset */
  #header.fixed {
    padding-top: 0;
    position: fixed;
    background: transparent;
    z-index: 999;
  }
  #mobile-head {
    background: #fff;
    width: 100%;
    height: 64px;
    z-index: 999;
    padding: 10px 10px;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
  }

  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -560px;
    background: #fff;
    width: 100%;
    text-align: center;
    padding: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: left;
  }
  #global-nav ul li {
    float: none;
    position: static;
    display: flex;
  }
  #header #global-nav ul li a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border: 3px solid;
    border-color: transparent transparent #213760 #213760;
    transform: rotate(-135deg);
  }
  #header #global-nav ul li a,
  #header.fixed #global-nav ul li a {
    width: 100%;
    display: inline-flex;
    align-items: center;
    color: #333;
    height: 65px;
    padding: 15px 35px 15px 75px;
    border-bottom: 1px solid #ccc;
    position: relative;
    min-height: 60px;
  }
  #header #global-nav ul li:first-child a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background: url("../../img/ic_04.png") no-repeat;
    background-size: 40px 40px;
    display: block;
  }
  #header #global-nav ul li:nth-child(2) a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -20px;
    width: 40px;
    height: 39px;
    background: url("../../img/ic_05.png") no-repeat;
    background-size: 40px 39px;
    display: block;
  }
  #header #global-nav ul li:nth-child(3) a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background: url("../../img/ic_06.png") no-repeat;
    background-size: 40px 40px;
    display: block;
  }
  #header #global-nav ul li:nth-child(4) a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -20px;
    width: 40px;
    height: 41px;
    background: url("../../img/ic_07.png") no-repeat;
    background-size: 40px 41px;
    display: block;
  }
  #header #global-nav ul li:nth-child(5) a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -20px;
    width: 38px;
    height: 41px;
    background: url("../../img/ic_08.png") no-repeat;
    background-size: 38px 41px;
    display: block;
  }
  #header #global-nav ul li:nth-child(6) a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -16px;
    width: 40px;
    height: 33px;
    background: url("../../img/ic_09.png") no-repeat;
    background-size: 40px 33px;
    display: block;
  }
  #nav-toggle {
    display: block;
  }
  /* #nav-toggle 切り替えアニメーション */
  .open #nav-toggle span:nth-child(1) {
    top: 30px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 30px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  /* #global-nav スライドアニメーション */
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    -moz-transform: translateY(556px);
    -webkit-transform: translateY(556px);
    transform: translateY(556px);
    top: -492px;
    opacity: 0.9;
  }

  p + p {
    margin-top: 10px;
  }

  .structure__listlink--img {
    max-height: 300px;
    width: auto;
  }

  #footer {
    font-size: 1.1rem;
    clear: both;
    float: none;
  }

  #footer .wrap {
    padding: 20px 0;
    padding-left: 3%;
    padding-right: 3%;
  }

  #footer .footer__list {
    float: none;
    clear: both;
    display: block;
  }

  #footer .footer__list li:after {
    margin: 0 8px;
  }

  #footer address {
    float: none;
    clear: both;
    display: block;
    text-align: left;
    margin-top: 15px;
  }

  #main .wrap h1 {
    position: absolute;
    bottom: 25%;
    max-width: 62%;
  }

  /* CVボタン */

  .sp__cvbtn {
    display: block;
  }

  .main__cv--btn .cv__bg {
    display: none;
  }

  .main__cv--btn a:hover {
    -ms-transform: translate(0);
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  .main__cv--btn {
    position: relative;
    margin-top: 0;
    padding-top: 0;
  }

  .main__cv--btn:before,
  .main__cv--btn a:before {
    display: none;
  }

  .main__cv--btn a {
    padding: 15px;
    font-size: 1.3rem;
    border-radius: 6px;
    position: relative;
    z-index: auto;
  }

  .main__cv--btn a span {
    position: relative;
    padding-right: 20px;
  }

  .main__cv--btn a span:after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    margin-left: 10px;
  }

  .main__cv--btn a:after {
    display: noe;
  }

  /* CV追従ボタン */
  .cv__btn02 {
    display: none;
  }

  h2 {
    color: #213760;
    font-size: 2.4rem;
    border-bottom: 2px solid #cccccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  /* 1-2: anc__area
	================================ */

  #anc__area {
    padding: 40px 0;
    padding-left: 3%;
    padding-right: 3%;
  }

  #anc__area h2 {
    font-size: 2.4rem;
  }

  #anc__area h2 #emphasis01 {
    font-size: 3rem;
  }

  #anc__area h2 #emphasis02 {
    font-size: 4rem;
  }

  #anc__area h2 #emphasis02:after {
    content: "";
    width: 25px;
    height: 12px;
    background: url("../../img/ic_12.gif") no-repeat;
    background-size: 25px 12px;
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    margin-top: -4px;
    margin-left: -12px;
  }

  .anc__list {
    margin-top: 15px;
  }

  .anc__list li {
    width: 47.2%;
  }
  .anc__list li:nth-child(n + 3),
  .anc__list li:nth-child(n + 4) {
    margin-top: 20px;
  }

  .anc__list li a {
    padding: 12px 20px 30px 20px;
    font-size: 1.6rem;
    text-align: left;
    display: block;
    max-height: none;
  }

  .anc__list li a:after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    height: 10px;
    border: 3px solid;
    border-color: transparent transparent #aaaaaa #aaaaaa;
    transform: rotate(-45deg);
  }

  .anc__list li a:hover {
    -ms-transform: translateY(2px);
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    border-bottom: 2px solid #e5e5e5;
  }

  .anc__list--item figure {
    width: 22%;
    margin: 0 auto;
  }

  .anc__list--txt {
    width: 100%;
    float: none;
    clear: both;
    display: block;
    margin-top: 10px;
  }

  .anc__list li:first-child a:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 33px;
    height: 27px;
    background: url("../../img/ic_12.png") no-repeat;
    background-size: 33px 27px;
  }

  .anc__list li:nth-child(2) a:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 36px;
    height: 27px;
    background: url("../../img/ic_13.png") no-repeat;
    background-size: 36px 27px;
  }

  .anc__list li:nth-child(3) a:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 36px;
    height: 27px;
    background: url("../../img/ic_14.png") no-repeat;
    background-size: 36px 27px;
  }

  .anc__list li:nth-child(4) a:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 27px;
    background: url("../../img/ic_15.png") no-repeat;
    background-size: 35px 27px;
  }

  .anc__list li:nth-child(5) a:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 36px;
    height: 27px;
    background: url("../../img/ic_16.png") no-repeat;
    background-size: 36px 27px;
  }

  .anc__list li:last-child a:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 36px;
    height: 27px;
    background: url("../../img/ic_17.png") no-repeat;
    background-size: 36px 27px;
  }

  /* 1-3: section01
	================================ */

  .img__wrap {
    flex-wrap: wrap;
  }

  .img__wrap .img__item {
    width: 46%;
  }

  .img__wrap .img__item:nth-child(n + 3) {
    margin-top: 15px;
  }

  .img__wrap figure figcaption {
    font-size: 1rem;
  }

  .fancybox__item a:after {
    content: "";
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }

  .fancybox__item a:hover:after {
    opacity: 1;
  }

  /* 1-4: section02
	================================ */

  .structure__wrap {
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.25));
  }

  .structure__contents + .structure__contents {
    margin-top: 25px;
  }

  .structure__wrap .headding03 {
    padding: 12px;
    font-size: 2rem;
    line-height: 1.6;
  }

  .structure__wrap .structure__item {
    flex-wrap: wrap;
    padding: 15px;
  }

  .structure__item .structure__itemInner + a {
    width: 86%;
    display: inline-block;
    margin: 20px auto 0;
    text-align: center;
  }

  .structure__item .structure__itemInner {
    width: 100%;
  }

  /* 1-5: section03
	================================ */

  .imgTxt__wrap {
    flex-wrap: wrap;
  }

  .img__wrap figure figcaption {
    margin-top: 5px;
    font-size: 1.3rem;
  }

  .imgTxt__wrap .imgTxt__item--txt {
    width: 100%;
  }

  .imgTxt__wrap > .imgTxt__item--txt + .imgTxt__item--img {
    margin-top: 20px;
    margin: 0 auto;
  }

  /* 1-7: section05
	================================ */

  .imgTxt__wrap > .box__content {
    width: 100%;
  }

  .box__content {
    padding: 20px;
    margin-top: 20px;
  }

  .box__content .box__content--headding04 {
    font-size: 2rem;
  }

  .box__content .box__content--headding04:before {
    content: "";
    width: 21px;
    height: 10px;
    background: url("../../img/ic_01.png") no-repeat center;
    background-size: 21px 10px;
    position: relative;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 2px;
  }

  .box__content .box__content--headding04:after {
    content: "";
    width: 21px;
    height: 10px;
    background: url("../../img/ic_01.png") no-repeat center;
    background-size: 21px 10px;
    position: relative;
    display: inline-block;
    margin-left: 10px;
    transform: rotate(-180deg);
    margin-bottom: 2px;
  }

  .dot__list li {
    padding-left: 15px;
    font-size: 1.5rem;
  }

  .dot__list li:before {
    content: "・";
    color: #387cd2;
    width: 5px;
    height: 5px;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
  }

  .dot__list li + li {
    margin-top: 6px;
  }

  .logo__list {
    padding: 0 42px;
    float: none;
    clear: both;
  }

  .logo__list li {
    width: 47.2%;
    float: left;
    margin-right: 5.1%;
  }

  .logo__list li figure {
    text-align: center;
  }

  .logo__list li:nth-child(2n) {
    margin-right: 0;
  }

  .logo__list li:nth-child(n + 3) {
    margin-top: 20px;
  }

  /* 1-8: section06 → section05に移動
	================================ */

  #section05 .imgTxt__wrap .imgTxt__item--txt {
    width: 100%;
  }
  /* 1-9: cv__area
	================================ */

  .cv__btn {
    padding: 20px 30px 40px 20px;
    position: relative;
    text-align: center;
    flex-direction: column;
  }

  .cv__btn a {
    max-width: 540px;
  }

  .cv__btn a .cv__btn__text {
    border-width: 2px;
    font-size: 2.4rem;
    padding: 26px 20px;
    padding-right: 60px;
  }

  .cv__btn a .cv__btn__text:after {
    content: "";
    width: 24px;
    height: 24px;
    background-size: contain;
    right: 20px;
    margin-top: -12px;
  }

  .cv__btn .cv__bg {
    border-width: 2px;
    top: 14px;
    left: 14px;
  }

  .cv__btn a:hover .cv__btn__text {
    top: 0;
    left: 0;
  }

  .cv__btn img {
    max-width: 500px;
    width: 100%;
    margin-top: 0;
  }

  .cv__btn:before {
    content: "";
    width: 229px;
    height: 38px;
    background: url("../../img/ic_02_sp.png") no-repeat;
    position: relative;
    background-size: 229px 38px;
    display: inline-block;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  /* 1-10: section07
	================================ */

  #section07 h2.noline__heading figure img {
    width: 30%;
    margin-bottom: 10px;
  }

  .point__wrap .point__item {
    width: 100%;
  }

  .point__wrap .point__item .point__img figure img {
    max-width: 220px;
    width: 50%;
  }

  .point__wrap .point__item .point__detail {
    padding: 30px 20px;
    min-height: 170px;
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .point__wrap .point__item:nth-child(n + 2),
  .point__wrap .point__item:nth-child(n + 3) {
    margin-top: 30px;
  }
}

/************675以下**************/
@media only screen and (max-width: 675px) {
  h2 {
    font-size: 2rem;
    line-height: 1.5;
  }

  h2 .section__number img {
    width: 16%;
    min-width: 50px;
  }

  #pageTopBtn {
    width: 55px;
    height: 57px;
    z-index: 50;
  }

  #section05 .list__wrap {
    flex-wrap: wrap;
  }

  #section05 .list__wrap .dot__list {
    width: 45%;
  }
}

/************675以下**************/
@media only screen and (max-width: 580px) {
  #header .logo {
    margin-right: 10px;
  }

  #main .wrap {
    height: 0;
    position: relative;
    background: url("../../img/mv_sp.webp") no-repeat center top / contain;
    padding-top: 160%;
    padding-bottom: 0;
  }

  #main .wrap h1 {
    display: none;
  }

  .main__cv--btn a {
    font-size: 1rem;
    padding: 16px 10px;
  }

  .main__cv--btn a span:after {
    content: "";
    width: 14px;
    height: 14px;
    margin-left: 6px;
  }

  /* 1-2: anc__area
	================================ */

  .anc__list li a {
    font-size: 1.3rem;
    padding: 12px 10px 30px 10px;
  }

  .anc__list--item figure {
    width: 40%;
  }

  .anc__list li:first-child a:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 23px;
    height: 17px;
    background: url("../../img/ic_12.png") no-repeat;
    background-size: 23px 17px;
  }

  .anc__list li:nth-child(2) a:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 26px;
    height: 17px;
    background: url("../../img/ic_13.png") no-repeat;
    background-size: 26px 17px;
  }

  .anc__list li:nth-child(3) a:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 26px;
    height: 17px;
    background: url("../../img/ic_14.png") no-repeat;
    background-size: 26px 17px;
  }

  .anc__list li:nth-child(4) a:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 25px;
    height: 17px;
    background: url("../../img/ic_15.png") no-repeat;
    background-size: 25px 17px;
  }

  .anc__list li:nth-child(5) a:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 26px;
    height: 17px;
    background: url("../../img/ic_16.png") no-repeat;
    background-size: 26px 17px;
  }

  .anc__list li:last-child a:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 26px;
    height: 17px;
    background: url("../../img/ic_17.png") no-repeat;
    background-size: 26px 17px;
  }

  /* 1-4: section02
	================================ */

  .structure__wrap .headding03 {
    font-size: 1.5rem;
  }

  /* 1-5: section03
	================================ */

  .img__wrap figure figcaption {
    font-size: 1rem;
  }

  /* 1-7: section05
	================================ */

  .box__content .box__content--headding04 {
    font-size: 1.6rem;
  }

  .dot__list li {
    font-size: 1.2rem;
  }

  /* 1-10: section07
	================================ */

  #section07 h2.noline__heading figure img {
    width: 50%;
  }

  .point__wrap .point__item .point__detail {
    font-size: 1.4rem;
  }

  .note__list li {
    font-size: 1.1rem;
  }

  /* cv__area
	================================ */

  .cv__btn a .cv__btn__text {
    font-size: 1.8rem;
    padding: 22px 20px;
    padding-right: 50px;
  }
}

/************375以下**************/
@media only screen and (max-width: 375px) {
  .structure__wrap .structure__line .headding03::after {
    height: 60px;
    width: 60px;
    top: 5px;
    right: 4vw;
  }
  /* cv__area
	================================ */

  .cv__btn a .cv__btn__text {
    border-width: 1px;
    border-radius: 6px;
    font-size: 1.2rem;
    padding: 16px;
    padding-right: 30px;
  }

  .cv__btn a .cv__btn__text:after {
    content: "";
    width: 16px;
    height: 16px;
    right: 14px;
    margin-top: -8px;
  }

  .cv__btn .cv__bg {
    border-width: 1px;
    border-radius: 6px;
    top: 10px;
    left: 10px;
  }
}

/* -----------------------------------------------------
  stickyBtn - 画面追従CTA
  ※ABテスト中 - テスト結果次第で撤去する可能性があります
----------------------------------------------------- */

.sticky-area {
  display: none;
}

/* ----------------------------------------------------
  PC/タブレット（768px以上）
---------------------------------------------------- */
@media screen and (min-width: 768px) {
  body {
    padding-bottom: 96px;
  }

  .sticky-area {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 96px;
    background: #FEC6D2CC;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
  }

  .sticky-area__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    height: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .stickyBtn__catchphrase {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }

  .stickyBtn__icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .stickyBtn__text {
    width: 196px;
    height: 24px;
    flex-shrink: 0;
  }

  .stickyBtn {
    flex-shrink: 0;
  }

  .stickyBtn__btn--pc {
    display: block;
    width: 274px;
    height: 64px;
  }

  .stickyBtn__sp,
  .stickyBtn__btn--sp {
    display: none;
  }
}

/* ----------------------------------------------------
  SP（767px以下）
---------------------------------------------------- */
@media screen and (max-width: 767px) {
  body {
    padding-bottom: 128px;
  }

  .sticky-area {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 128px;
    background: #FFFFFFCC;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
  }

  .sticky-area__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 24px 16px;
    box-sizing: border-box;
  }

  .stickyBtn__catchphrase,
  .stickyBtn__icon,
  .stickyBtn__text,
  .stickyBtn__btn--pc {
    display: none;
  }

  .stickyBtn {
    display: block;
    width: 100%;
    max-width: 343px;
  }

  .stickyBtn__sp {
    display: block;
    width: 100%;
  }

  .stickyBtn__btn--sp {
    display: block;
    width: 100%;
    height: 80px;
    object-fit: contain;
    transition: opacity 0.2s ease;
  }

  .stickyBtn:hover .stickyBtn__btn--sp,
  .stickyBtn:active .stickyBtn__btn--sp {
    opacity: 0.8;
  }
}
