@charset "UTF-8";
/*-----------------------------
リセット
---------------------------*/
* {
  padding: 0;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 52.6%;
  }
}

body {
  position: relative;
  width: 100%;
  color: #323237;
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.075em;
  line-height: 1.7;
  text-align: center;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  color: #323237;
  text-decoration: none;
  outline: none;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

ul,
ol {
  list-style-type: none;
}

th {
  font-weight: normal;
}

/*-----------------------------
フォント
---------------------------*/
.bold {
  font-weight: bold;
}

.en_font {
  font-family: 'Poppins', sans-serif;
}

.small_text {
  display: block;
  font-size: 1.2rem;
}

.narrow {
  letter-spacing: normal;
}

.zero {
  display: inline-block;
}

/*-----------------------------
全般
---------------------------*/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.inner {
  max-width: 1000px;
  width: 90%;
  margin: auto;
}

/*-----------------------------
エフェクト
---------------------------*/
.fadein {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.fadein.scrollin {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

@media screen and (max-width: 768px) {
  .fadein.scrollin {
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
  }
}

.fadein.scrollin.delay2s {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

@media screen and (max-width: 768px) {
  .fadein.scrollin.delay2s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

/*-----------------------------
ヘッダー
---------------------------*/
.header {
  position: absolute;
  top: 30px;
  width: 100%;
  padding: 0 40px;
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  .header {
    top: 15px;
    padding: 0 15px;
  }
}

.header .header_logo {
  max-width: 340px;
  margin-right: auto;
}

@media screen and (max-width: 1024px) {
  .header .header_logo {
    max-width: 300px;
  }
}

@media screen and (max-width: 768px) {
  .header .header_logo {
    max-width: 220px;
  }
}

/*-----------------------------
ナビゲーションボタン
---------------------------*/
.nav_list_area {
  position: fixed;
  top: 0;
  right: 40px;
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  .nav_list_area {
    display: none;
    top: auto;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 94%;
  }
}

.nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav_list .nav_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 200px;
  height: 50px;
  margin: 0 3px;
  background-color: #4b4246;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-box-shadow: 0 0 10px rgba(50, 50, 55, 0.2);
          box-shadow: 0 0 10px rgba(50, 50, 55, 0.2);
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  .nav_list .nav_list_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(100% / 3);
    margin: 0;
    height: 70px;
    border-radius: 0;
  }
}

.nav_list .nav_list_item:hover {
  background-color: #56565f;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.nav_list .nav_list_item::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  margin-bottom: -2px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .nav_list .nav_list_item::before {
    width: 100%;
    height: 16px;
    margin-right: 0;
    margin-bottom: 5px;
  }
}

.nav_list .nav_list_item.item01 {
  background-color: #b60007;
}

@media screen and (max-width: 768px) {
  .nav_list .nav_list_item.item01 {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
}

.nav_list .nav_list_item.item01:hover {
  background-color: #d00008;
}

.nav_list .nav_list_item.item01::before {
  background-image: url(../img/navi_icon1.svg);
}

@media screen and (max-width: 768px) {
  .nav_list .nav_list_item.item02 {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
  }
}

.nav_list .nav_list_item.item02::before {
  background-image: url(../img/navi_icon2.svg);
}

@media screen and (max-width: 768px) {
  .nav_list .nav_list_item.item03 {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}

.nav_list .nav_list_item.item03::before {
  background-image: url(../img/navi_icon3.svg);
}

.nav_list .nav_list_item .nav_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

@media screen and (max-width: 768px) {
  .nav_list .nav_list_item .nav_link_text {
    line-height: 1.2;
  }
}

/*-----------------------------
キービジュアル
---------------------------*/
.keyvisual {
  display: block;
  position: relative;
  width: 100%;
  height: 99.9998vh;
  background-image: url(../img/top.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .keyvisual {
    background-position: 30% top;
  }
}

.keyvisual .title_box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 900px;
  width: 80%;
}

@media screen and (max-width: 768px) {
  .keyvisual .title_box {
    top: 47%;
    max-width: 500px;
    width: 88%;
  }
}

.keyvisual .title_box .kv_title {
  position: relative;
}

.keyvisual .title_box .kv_title .kv_year_img {
  position: absolute;
  bottom: -17%;
  right: -9%;
  width: 25%;
}

@media screen and (max-width: 768px) {
  .keyvisual .title_box .kv_title .kv_year_img {
    bottom: -16%;
    right: 0;
    width: 45%;
  }
}

@media screen and (max-width: 768px) {
  _:-ms-lang(x)::-ms-backdrop,
  .keyvisual .title_box .kv_title .kv_year_img {
    bottom: -33%;
  }
}

/*-----------------------------
導入
---------------------------*/
.introduction {
  margin: 70px 0 120px;
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .introduction {
    margin: 40px 0 100px;
    padding: 0 0.5em;
    font-size: 1.7rem;
  }
}

/*-----------------------------
一般選抜のポイント
---------------------------*/
.point_area {
  position: relative;
  padding-bottom: 120px;
  background-color: #fad8cf;
}

.point_area::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background-color: #fad8cf;
  border-radius: 100%;
  z-index: -1;
}

.point_area .title_box {
  padding-top: 20px;
  color: #b60007;
}

.point_area .title_box::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 25px;
  height: 25px;
  background-image: url(../img/point_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.point_area .title_box .point_title {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.25em;
}

@media screen and (max-width: 768px) {
  .point_area .title_box .point_title {
    font-size: 3.4rem;
  }
}

.point_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto auto 60px auto 0;
      grid-template-rows: auto auto auto 60px auto 0;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 120px 4%;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .point_list {
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    max-width: 550px;
  }
}

.point_list .list_item {
  position: relative;
  padding: 90px 50px 70px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px 5px rgba(50, 50, 55, 0.2);
          box-shadow: 0 0 30px 5px rgba(50, 50, 55, 0.2);
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .point_list .list_item {
    grid-row: auto !important;
    padding: 90px 5% 50px;
  }
}

.point_list .list_item:nth-of-type(odd) {
  -ms-grid-column: 1;
  grid-column: 1;
}

@media screen and (max-width: 768px) {
  .point_list .list_item:nth-of-type(odd) {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}

.point_list .list_item:nth-of-type(even) {
  -ms-grid-column: 2;
  grid-column: 2;
}

@media screen and (max-width: 768px) {
  .point_list .list_item:nth-of-type(even) {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}

.point_list .list_item.item03 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}

.point_list .list_item.item04 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
}

.point_list .list_item.item05 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  grid-row: 3/5;
}

.point_list .list_item.item06 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 2;
  grid-row: 4/6;
  padding-bottom: 0;
}

.point_list .list_item.item07 {
  -ms-grid-row: 5;
  -ms-grid-row-span: 2;
  grid-row: 5/7;
  padding-bottom: 0;
}

.point_list .list_item.button_item {
  padding-bottom: 40px;
}

.point_list .list_item .point_num {
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 120px;
}

.point_list .list_item .point_topic {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .point_list .list_item .point_topic {
    font-size: 2.6rem;
  }
}

.point_list .list_item .point_topic::before {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  margin: 20px auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.point_list .list_item .point_topic.topic01::before {
  background-image: url(../img/point01_icon.svg);
}

.point_list .list_item .point_topic.topic02::before {
  background-image: url(../img/point02_icon.svg);
}

.point_list .list_item .point_topic.topic03::before {
  background-image: url(../img/point03_icon.svg);
}

.point_list .list_item .point_topic.topic04::before {
  background-image: url(../img/point04_icon.svg);
}

.point_list .list_item .point_topic.topic05::before {
  width: 70px;
  background-image: url(../img/point05_icon.svg);
}

.point_list .list_item .point_topic.topic06::before {
  width: 70px;
  background-image: url(../img/point06_icon.svg);
}

.point_list .list_item .point_topic.topic07::before {
  background-image: url(../img/point07_icon.svg);
}

.point_list .list_item .point_topic .yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, #ffffb9));
  background: linear-gradient(transparent 80%, #ffffb9 80%);
}

.point_list .list_item .point_topic .small_text {
  display: inline-block;
  font-size: 2rem;
}

.point_list .list_item .point01_table {
  position: relative;
  width: 100%;
  margin-top: 40px;
  background-color: #fad8cf;
  border: 3px solid #fad8cf;
  color: #b60007;
}

.point_list .list_item .point01_table:first-of-type {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .point_list .list_item .point01_table:first-of-type {
    margin-top: 60px;
  }
}

.point_list .list_item .point01_table .caption {
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  padding: 7px 0 14px;
  background-image: url(../img/point01_fukidashi.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #b60007;
  text-align: center;
}

.point_list .list_item .point01_table .table_header {
  padding: 30px 0 15px;
  font-size: 2rem;
  text-align: center;
}

.point_list .list_item .point01_table .table_data {
  position: relative;
  width: calc(100% / 3);
  height: 80px;
  padding: 20px;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .point_list .list_item .point01_table .table_data {
    height: 60px;
    padding: 10px 5px;
  }
}

.point_list .list_item .point01_table .table_data::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  background-color: #fff;
  border-radius: 5px;
  z-index: 10;
}

.point_list .list_item .point01_table .table_data .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
}

.point_list .list_item .point02_list {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .point_list .list_item .point02_list {
    margin-top: 40px;
  }
}

.point_list .list_item .point02_list .item {
  margin-top: 40px;
}

.point_list .list_item .point02_list .item .topic {
  padding: 20px;
  background-color: #fad8cf;
  color: #b60007;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}

.point_list .list_item .point02_list .item .topic .schedule {
  display: inline-block;
  margin: 0 0.25em;
}

.point_list .list_item .point02_list .item .text {
  margin-top: 1em;
}

.point_list .list_item .point04_list {
  margin-top: 1em;
}

.point_list .list_item .point04_list .point04_list_item {
  padding-left: 1.1em;
  text-indent: -1.1em;
}

.point_list .list_item .point04_list .point04_list_item::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.25em;
  background-color: #b60007;
  border-radius: 100%;
  vertical-align: -1px;
}

.point_list .list_item .point04_table {
  width: 100%;
  margin: 30px 0 50px;
  color: #b60007;
  font-size: 1.8rem;
}

.point_list .list_item .point04_table tr {
  border-bottom: 1px solid #b60007;
}

.point_list .list_item .point04_table tr .table_header {
  font-weight: bold;
  text-align: center;
}

.point_list .list_item .point04_table tr .table_header.date {
  padding: 5px 0;
  background-color: #b60007;
  border-top-left-radius: 5px;
  color: #fff;
}

.point_list .list_item .point04_table tr .table_header.date:last-of-type {
  border-left: 1px solid #fff;
  border-top-right-radius: 5px;
  border-top-left-radius: 0;
}

.point_list .list_item .point04_table tr .table_header.date .week {
  font-size: 1.2rem;
}

.point_list .list_item .point04_table tr .table_header.schedule {
  padding: 15px 0;
  background-color: #ebeae6;
  line-height: 1.2;
}

.point_list .list_item .point04_table tr .table_data {
  text-align: center;
  vertical-align: middle;
}

.point_list .list_item .point04_table tr .table_data:last-of-type {
  border-left: 1px solid #b60007;
}

.point_list .list_item .point04_table tr .table_data.nodata::before {
  content: "";
  display: inline-block;
  width: .75em;
  height: 1px;
  margin-bottom: 5px;
  background-color: #b60007;
}

.point_list .list_item .point07_table {
  width: 100%;
  margin: 40px 0 70px;
  color: #b60007;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .point_list .list_item .point07_table {
    padding-bottom: 50px;
  }
}

.point_list .list_item .point07_table tr {
  border-bottom: 1px solid #b60007;
}

.point_list .list_item .point07_table tr .table_header {
  font-weight: bold;
  text-align: center;
}

.point_list .list_item .point07_table tr .table_header.date {
  padding: 5px 0;
  background-color: #b60007;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  color: #fff;
}

.point_list .list_item .point07_table tr .table_header.schedule {
  width: 40%;
  padding: 15px 0;
  background-color: #ebeae6;
  line-height: 1.2;
}

.point_list .list_item .point07_table tr .table_header.schedule .small_text {
  margin-top: 0.5em;
}

.point_list .list_item .point07_table tr .table_data {
  width: 60%;
  padding-left: 1em;
  color: #323237;
  vertical-align: middle;
}

.point_list .list_item .point_text {
  margin-top: 2em;
  color: #b60007;
  font-size: 1.8rem;
  font-weight: bold;
}

.point_list .list_item .point_text {
  margin-top: 3em;
}

.point_list .list_item .point_text.point_bottom_text {
  margin-top: 0;
}

.point_list .list_item .img_box {
  margin-top: 20px;
}

.point_list .list_item .img_box .point_img_title {
  color: #b60007;
  font-size: 1.8rem;
  text-align: center;
}

.point_list .list_item .img_box .point_img {
  margin-top: 20px;
}

.point_list .list_item .point_img {
  margin-top: 30px;
}

.point_list .list_item .note_list {
  margin-top: 10px;
}

.point_list .list_item .note_list .note_item {
  padding-left: 1.1em;
  text-indent: -1.1em;
  font-size: 1.2rem;
}

.point_list .list_item .button {
  position: relative;
  margin: auto;
  margin-top: 50px;
  padding: 20px 0;
  width: 94%;
  background: #5d4749;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.point_list .list_item .button:hover {
  opacity: .9;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.point_list .list_item .button:hover .btn_text {
  letter-spacing: 0.15em;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.point_list .list_item .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url(../img/link_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.point_list .list_item .button .btn_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.point_list .list_item .button .btn_text {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  _:-ms-lang(x)::-ms-backdrop,
  .point_list {
    display: block;
  }
}

_:-ms-lang(x)::-ms-backdrop,
.point_list .list_item {
  margin: 0 4% 120px;
}

/*-----------------------------
よくあるご質問
---------------------------*/
.faq_area .faq_title {
  margin-top: 100px;
  color: #b60007;
  font-weight: bold;
  font-size: 3.4rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 768px) {
  .faq_area .faq_title {
    margin-top: 50px;
  }
}

.faq_area .faq_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .faq_area .faq_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 25px;
  }
}

.faq_area .faq_list .list_item {
  width: 48.5%;
  margin-bottom: 3%;
  border: 3px solid #ebe1cb;
  border-radius: 10px;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .faq_area .faq_list .list_item {
    width: 100%;
    margin-bottom: 15px;
  }
}

.faq_area .faq_list .list_item .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 184px;
  padding: 1em 0;
  background-color: #ebe1cb;
}

@media screen and (max-width: 768px) {
  .faq_area .faq_list .list_item .question {
    min-height: auto;
  }
}

.faq_area .faq_list .list_item .question::before {
  content: "Q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 5%;
  background-color: #5d4749;
  border-radius: 100%;
  color: #fff;
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
}

.faq_area .faq_list .list_item .question::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 30px;
  background-image: url(../img/qa_fukidashi.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.faq_area .faq_list .list_item .question .question_text {
  width: calc(100% - calc(60px + 10%));
  padding: 1em;
  padding-left: 0;
  font-size: 2rem;
}

.faq_area .faq_list .list_item .answer {
  position: relative;
  min-height: 184px;
  padding: 40px 5% 25px;
  padding-left: calc(10% + 60px);
}

@media screen and (max-width: 768px) {
  .faq_area .faq_list .list_item .answer {
    min-height: auto;
    padding: 40px 5%;
    padding-left: calc(10% + 60px);
  }
}

.faq_area .faq_list .list_item .answer::before {
  content: "A";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 40px;
  left: 0;
  width: 60px;
  height: 60px;
  margin: 0 5%;
  background-color: #b60007;
  border-radius: 100%;
  color: #fff;
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
}

.faq_area .faq_text {
  margin: 30px auto 0;
  font-size: 1.8rem;
}

.faq_area .faq_link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .faq_area .faq_link_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
  }
}

.faq_area .faq_link_list .faq_link_list_item {
  position: relative;
  width: 50%;
  padding: 70px 10px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .faq_area .faq_link_list .faq_link_list_item {
    width: 100%;
    padding: 60px 10px;
  }
}

.faq_area .faq_link_list .faq_link_list_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.faq_area .faq_link_list .faq_link_list_item:nth-of-type(1) {
  border-right: 1px solid #fff;
}

.faq_area .faq_link_list .faq_link_list_item:nth-of-type(1)::before {
  background-image: url(../img/banner1.jpg);
}

@media screen and (max-width: 768px) {
  .faq_area .faq_link_list .faq_link_list_item:nth-of-type(1) {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}

.faq_area .faq_link_list .faq_link_list_item:nth-of-type(2)::before {
  background-image: url(../img/banner2.jpg);
}

.faq_area .faq_link_list .faq_link_list_item:hover::before {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all .8s;
  transition: all .8s;
}

@media screen and (max-width: 768px) {
  .faq_area .faq_link_list .faq_link_list_item:hover {
    background-size: 120%;
  }
}

.faq_area .faq_link_list .faq_link_list_item:hover .faq_link_text::after {
  width: 100%;
}

.faq_area .faq_link_list .faq_link_list_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d72b28;
  opacity: .7;
}

.faq_area .faq_link_list .faq_link_list_item .faq_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

.faq_area .faq_link_list .faq_link_list_item .faq_link_text {
  position: relative;
  color: #fff;
  font-size: 2rem;
  letter-spacing: .25em;
  z-index: 10;
}

.faq_area .faq_link_list .faq_link_list_item .faq_link_text::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 48%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 1px;
  margin-top: 5px;
  background-color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.faq_area .num_list .num_list_item {
  padding-left: 1.3em;
  text-indent: -0.7em;
}

.faq_area .num_list .num {
  display: inline-block;
  margin-right: 0.25em;
}

/*-----------------------------
学部・学科
---------------------------*/
.department_area {
  margin-top: 100px;
  padding: 40px 0 50px;
  background-image: url(../img/atomi_univ.jpg);
  background-position: center 70%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .department_area {
    padding-bottom: 30px;
    background-position: 30% 70%;
  }
}

.department_area .department_title {
  color: #b60007;
  font-size: 2.4rem;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 1px;
}

.department_area .department_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 800px;
  width: 90%;
  margin: 40px auto 0;
}

@media screen and (max-width: 768px) {
  .department_area .department_list {
    width: 92%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.department_area .department_list .department_list_item {
  width: 49%;
  min-height: 205px;
  margin-top: 2%;
  padding: 4% 5%;
  background-color: rgba(255, 255, 255, 0.95);
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .department_area .department_list .department_list_item {
    width: 100%;
    min-height: 165px;
  }
}

.department_area .department_list .department_list_item .department_name {
  padding-bottom: 10px;
  color: #b60007;
  border-bottom: 1px solid #b60007;
}

.department_area .course_list {
  margin-top: 15px;
}

.department_area .course_list .course_list_item::before {
  content: "";
  display: inline-block;
  width: 0.25em;
  height: 1px;
  margin-right: 0.5em;
  background-color: #323237;
  vertical-align: middle;
}

/*-----------------------------
ページトップボタン
---------------------------*/
.top_link_btn {
  position: relative;
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  .top_link_btn {
    padding: 20px;
  }
}

.top_link_btn:hover .top_link_text {
  letter-spacing: 0.25em;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.top_link_btn::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #000), to(#000));
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #000 50%, #000 100%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  .top_link_btn::before {
    top: -15px;
    height: 30px;
  }
}

.top_link_btn .top_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top_link_btn .top_link_text {
  font-size: 1.8rem;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/*-----------------------------
フッター
---------------------------*/
.footer {
  padding: 50px 10%;
  background-color: #b42d30;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 50px 5% 110px;
  }
}

.footer .footer_logo_img {
  width: 300px;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .footer .footer_logo_img {
    width: 250px;
    margin-right: 10px;
  }
}

.footer .text_box {
  margin-top: 25px;
}

.footer .text_box .num {
  color: #fff;
}

.footer .text_box .tel .num {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .footer .text_box .tel .num {
    pointer-events: auto;
  }
}

.footer .sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .footer .sns_list {
    margin-top: 40px;
  }
}

.footer .sns_list::before {
  content: "Follow us";
  width: 100%;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .footer .sns_list::before {
    font-size: 1.6rem;
  }
}

.footer .sns_list .list_item {
  margin: 0 10px;
}

.footer .sns_list .list_item .sns_link {
  padding: 10px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.footer .sns_list .list_item .sns_link:hover {
  opacity: .8;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.footer .sns_list .list_item .sns_img {
  width: 25px;
  height: 100%;
}

.footer .sns_list .list_item .sns_img.insta_icon {
  width: 20px;
}

.footer .copyright {
  display: block;
  margin-top: 50px;
  font-size: 1.2rem;
}
/*# sourceMappingURL=style.css.map */