@charset "utf-8";

/*
Theme Name: 愛知文教大学
*/

:root {
  --inner: 110rem;
  --maincolor: #083E8E;
  --subcolor01: #FFF9B9;
}

/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #000;
  height: 100%;
  font-family: "Noto Sans JP","游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 400;
  position: relative;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
.min {
  font-family: "Noto Serif JP",'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}

.bold,h1,h2,h3,h4,h5,h6 {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media only screen and ( max-width : 375px ) {
  body {
    font-size: 14px;
  }
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: #212121;
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}


/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type=text]:focus {
  outline: none;
}
#main {
overflow: hidden;
}
section {
position: relative;
}
.container {
  max-width: calc(var(--inner) + 3rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.large_container {
  max-width: calc(120rem + 3rem);
}

.pt-0 {
padding-top: 0 !important;
}
.pb-0 {
padding-bottom: 0 !important;
}

@media only screen and ( max-width : 767px ) {
.container {
  max-width: 100%;
}
.br_pc {
  display: none;
}
.sp_none{display:none !important;}
}
@media print, screen and ( min-width : 768px ) {
.br_sp {
  display: none;
}
.sp { display:none !important; }
}


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

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

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

　   TEXT

--------------------------------------------------------------------------------------------- */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}


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

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
}
#header #logo a {
  display: flex;
  align-items: center;
}
#h_btn a,
#h_sp_btn a {
  display: flex;
  align-items: center;
  font-weight: 700;
  border-radius: 1rem;
}
#h_btn a span,
#h_sp_btn a span {
  position: relative;
}
#h_btn a span:before,
#h_sp_btn a span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#h_btn .h_btn01 {
  background: #0065CB
}
#h_btn .h_btn02 {
  background: #009898
}
#h_btn a span:before {
  width: 3.8rem;
  height: 3.8rem;
}
#h_btn .h_btn01 span:before {
  background: url(img/ico-shiryo.png) no-repeat center / contain;
}
#h_btn .h_btn02 span:before {
  background: url(img/ico-net.png) no-repeat center / contain;
}

@media only screen and ( max-width : 767px ) {
  #header,
  #header_inner {
    height: 60px;
  }
  .open #header_inner {
    background: var(--maincolor);
  }
  #header .container {
    padding: 0 15px;
  }
  #logo {
    width: calc(100% - 60px);
  }
  #logo img {
    width: 162px;
  }
  .open #logo img {
    opacity: 0;
  }
  .open #logo {
    background: url(img/logo_white.png) no-repeat left center / 162px;
  }
  #logo span {
    text-align: center;
    margin-left: 20px;
    font-size: 14px;
  }
  .open #logo span {
    color: #fff;
  }
  body.fixed {
    height: 100%; 
    position: fixed;
    width: 100%; 
  }
  .nav-open #header.h_fixed {
    position: fixed !important;
  }
  #menu_btn {
    transition: .3s;
    cursor: pointer;
    position: absolute !important;
    z-index: 9999;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    right: 0;
    top: 0;
  }
  #menu_btn.active {
    background: none;
  }
  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: 0;
    transition: opacity .5s;
  }
  .overlay.open {
    width: 100%;
    height: 100vh;
    opacity: 1;
  }
  #main {
    height: 100%;
    transition: all .5s;
  }
  .menu-trigger {
    vertical-align: middle;
    text-align: center;
    position: relative;
    width: 30px;
    height: 22px;
  }
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--maincolor);
    transition: all .5s;
  }
  #menu_btn.active .menu-trigger span {
    background: #fff;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(3) {
  }
  #menu_btn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(.7rem) rotate(-45deg);
  }
  .menu-trigger span:nth-of-type(2) {
    top: 10px;
    left: auto;
    right: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
  }
  #gNav {
    height: calc(100vh - 60px);
    overflow: auto;
    background-color: var(--maincolor);
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    z-index: 101;
    transition: all .2s;
    width: 100%;
    padding: 4rem 4.5rem !important;
    opacity: 0;
    visibility: hidden;
  }
  #gNav.open {
    /*transform: translateZ(0);*/
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
  }
  #gNav .nav {
    margin-bottom: 3rem;
  }
  #gNav .nav li {
    margin-bottom: 3rem;
    text-align: center;
  }
  #gNav .nav li a {
    position: relative;
    display: inline-block;
    position: relative;
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    border-bottom: .3rem solid rgba(255, 255, 255, 0);
  }
  #gNav .nav li a:hover {
    color: #FFF480;
    opacity: 1;
    border-bottom: .3rem solid #FFF480;
  }
  #h_sp_btn a {
    height: 8rem;
    width: 30rem;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--maincolor);
    padding: 0 4.5rem;
    background: #fff;
  }
  #h_sp_btn a:last-of-type {
    margin-bottom: 0;
  }
  #h_sp_btn a span {
    padding-left: 7.2rem;
    letter-spacing: 0.1em;
  }
  #h_sp_btn a span:before {
    width: 4.8rem;
    height: 4.8rem;
  }
  #h_sp_btn a:hover {
    background: #FFF480;
    opacity: 1;
  }
  #h_sp_btn .h_btn01 span:before {
    background: url(img/ico-shiryo-blue.png) no-repeat center / contain;
  }
  #h_sp_btn .h_btn02 span:before {
    background: url(img/ico-net-blue.png) no-repeat center / contain;
  }
  #h_btn {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
  }
  #h_btn a {
    border-radius: 0;
    flex: 1;
    color: #fff;
    height: 8rem;
    padding: 0 1.5rem;
    font-size: 1.8rem;
    justify-content: center;
  }
  #h_btn a span {
    padding-left: 5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #h_btn .h_btn01:hover {
    background: #FFF480;
    opacity: 1;
    color: #2F6EC6;
  }
  #h_btn .h_btn02:hover {
    background: #FFF480;
    opacity: 1;
    color: #1F86A3;
  }
  #h_btn .h_btn01:hover span:before {
    background: url(img/ico-shiryo-blue.png) no-repeat center / contain;
  }
  #h_btn .h_btn02:hover span:before {
    background: url(img/ico-net-blue.png) no-repeat center / contain;
  }
  #header_inner {
    height: 8.4rem;
    transition: .3s;
  }
  #logo span {
    margin-left: 5rem;
    font-size: 2rem;
  }
  #navbar {
    background: var(--maincolor);
  }
  #gNav li {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6rem;
  }
  #gNav li:after {
    content: "";
    position: absolute;
    background: #fff;
    width: 1px;
    height: 70%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  #gNav li:last-of-type:after {
    display: none;
  }
  #gNav li a {
    color: #fff;
    font-weight: 600;
    border-bottom: .3rem solid rgba(255, 255, 255, 0);
  }
  #gNav li a:hover {
    color: #FFF480;
    opacity: 1;
    border-bottom: .2rem solid #FFF480;
  }
  #h_btn a {
    height: 6.4rem;
    width: 24rem;
    font-size: 1.8rem;
    margin-right: 1rem;
    color: #fff;
    justify-content: center;
  }
  #h_btn a:last-of-type {
    margin-right: 0;
  }
  #h_btn a span {
    padding-left: 6.4rem;
  }
  #h_sp_btn {
    display: none;
  }
}



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

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  background: #333333;
  color: #fff;
}
#footer a {
  color: #fff;
}
.foot-logo a span {
  display: block;
}
.copyright {
  text-align: center;
  font-size: .9rem;
}
.foot-nav li {
  margin-bottom: 1rem;
}
.foot-nav li:last-of-type {
  margin-bottom: 0;
}
.foot-nav li a {
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid #fff;
  height: 4rem;
  border-radius: 4rem;
  padding: 0 2rem;
  font-size: 1.4rem;
}
.foot-nav li a:after {
  content: "";
  width: 1.8rem;
  height: .5rem;
  background: url(img/arrow_white.png) no-repeat center / contain;
  right: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#pagetop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  cursor: pointer;
  transition: opacity 0.3s, visibility 0.3s;
}
#pagetop a {
  display: block;
  width: 4rem;
  height: 4rem;
}
#pagetop img {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and ( max-width : 767px ) {
  #pagetop {
    bottom: 10rem;
    right: 1.5rem;
  }
  #pagetop a {
    width: 3.5rem;
    height: 3.5rem;
  }
}

@media only screen and ( max-width : 767px ) {
  #footer {
    padding: 3rem 0 10rem;
  }
  .foot-logo a img {
    width: 22rem;
    display: block;
    margin: 0 auto;
  }
  .foot-logo a span {
    text-align: center;
    margin: 1.5rem 0 3rem;
  }
  .copyright {
    margin-top: 4rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  .foot-nav li a:hover {
    background: var(--maincolor);
    border: 1px solid var(--maincolor);
    opacity: 1;
  }
  #pagetop:hover {
    opacity: 0.8;
  }
  .foot-content {
    padding: 3rem 0;
  }
  .foot-logo {
    width: 23rem;
    margin-right: 10rem;
  }
  .foot-logo a span {
    font-size: 1.4rem;
    padding-left: 6rem;
    margin-top: 1rem;
  }
  .foot-nav {
    width: calc(100% - 23rem - 10rem);
  }
  .foot-nav ul {
    max-width: 36rem;
  }
  .copyright {
    padding: 1.5rem 0;
  }
}



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

　   TITLE / BUTTON

--------------------------------------------------------------------------------------------- */
.fit {
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}

.btn {
  color: var(--maincolor);
  position: relative;
  display: flex;
  background: #fff;
  border: 1px solid var(--maincolor);
  border-radius: 6rem;
  width: 30rem;
  height: 6rem;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.8rem;
}
.btn:after {
  content: "";
  width: 2.1rem;
  height: .6rem;
  background: url(./img/arrow.png) no-repeat center / 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}


.btn02 {
  color: #fff;
  position: relative;
  display: flex;
  background: var(--maincolor);
  border: 1px solid #fff;
  border-radius: 6rem;
  max-width: 30rem;
  height: 6rem;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.8rem;
}
.btn02:after {
  content: "";
  width: 2.1rem;
  height: .6rem;
  background: url(./img/arrow_white.png) no-repeat center / 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}


.btn03 {
  color: var(--maincolor);
  position: relative;
  display: flex;
  background: #fff;
  border: 1px solid var(--maincolor);
  border-radius: 6rem;
  width: 30rem;
  height: 6rem;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.8rem;
}
.btn03:after {
  content: "";
  width: 2.1rem;
  height: .6rem;
  background: url(./img/arrow.png) no-repeat center / 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}


.back_btn:after {
  transform: translateY(-50%) scaleX(-1);;
  right: auto;
  left: 2rem;
}

.title_heading {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin-bottom: 2rem;
}
.title_heading .title_jp {
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
.title_heading .title_en {
  color: var(--maincolor);
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media only screen and ( max-width : 767px ) {
  .title_heading .title_en {
    font-size: 2.2rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  .title_heading .title_en {
    font-size: 2.4rem;
  }

  .btn:hover {
    background: var(--maincolor);
    color: #fff;
    opacity: 1;
  }
  .btn:hover:after {
    background: url(./img/arrow_white.png) no-repeat center / 100%;
  }
  .btn02:hover {
    background: #FFF480;
    color: var(--maincolor);
    opacity: 1;
  }
  .btn02:hover:after {
    background: url(./img/arrow.png) no-repeat center / 100%;
  }
  .btn03:hover {
    background: #FFF480;
    color: var(--maincolor);
    opacity: 1;
  }
}


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

　   NEWS LIST

--------------------------------------------------------------------------------------------- */
.info_list .info_list_post {
  border-bottom: 1px solid #707070;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.cat {
  color: #fff;
  border-radius: 4rem;
  display: block;
  width: 10rem;
  text-align: center;
  font-size: 1.4rem;
  padding: .2em 1em;
  font-weight: 500;
}
.cat-info {
  background: #1F86A3;
}
.cat-event {
  background: #E2814D;
}
.cat-other {
  background: #D8718A;
}
.info_list .info_list_date {
  width: 8rem;
  color: var(--maincolor);
  font-size: 1.3rem;
  font-weight: 500;
}

.info_list_post_title {
  width: 100%;
  margin-top: .5rem;
  font-weight: 500;
}
.info_list_post_hidden {
  display: none !important;
}
.info_list .info_list_post.info_list_post_hidden {
  display: none !important;
}
.more_btn {
  border: 1px solid var(--maincolor);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6rem;
  color: var(--maincolor);
  font-weight: 600;
  position: relative;
  background: #fff;
  margin: 4rem auto 0;
  font-family: inherit;
  cursor: pointer;
  width: 20rem;
  height: 6rem;
  font-size: 1.6rem;
  transition: all 0.3s;
}
.more_btn:after {
  content: "";
  position: absolute;
  background: url(./img/arrow_down.png) no-repeat center / 100%;
  top: 50%;
  transform: translateY(-50%);
  width: .5rem;
  height: 1.8rem;
  right: 2.5rem;
}

@media only screen and ( max-width : 767px ) {
  .cat {
    font-size: 1.2rem;
    width: 7rem;
  }
  .info_list .info_list_post {
    padding: 1rem 0;
  }
  .more_btn {
    margin-top: 3rem;
    width: 18rem;
    height: 5rem;
    font-size: 1.4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .info_list {
    max-width: 72.4rem;
    margin: 0 auto;
  }
  .more_btn {
    margin-top: 4rem;
  }
  .more_btn:hover {
    background: var(--maincolor);
    color: #fff;
    opacity: 1;
  }
  .more_btn:hover:after {
    background: url(./img/arrow_down_white.png) no-repeat center / 100%;
  }
}


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

　   資料請求

--------------------------------------------------------------------------------------------- */
#request {
  background: #EDF3FF;
}
#request h2 {
  text-align: center;
}
.request_item {
  background: #fff;
  border-radius: 1rem;
}
.request_item h3 {
  color: var(--maincolor);
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
}
.request_item h3 span {
  text-align: center;
  line-height: 1.4;
}
.request_item figure {
  text-align: center;
}
@media only screen and ( max-width : 767px ) {
  #request {
    padding: 4rem 0 6rem;
  }
  #request h2 {
    font-size: 2.2rem;
    margin-bottom: 2.8rem;
  }
  .request_item {
    margin-bottom: 2rem;
    padding: 2rem 3rem 3rem;
  }
  .request_item:last-of-type {
    margin-bottom: 0;
  }
  .request_item h3 {
    margin-bottom: 1rem;
  }
  .request_item figure {
    margin-bottom: 1rem;
  }
  .request_item img {
    width: 24rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #request {
    padding: 6rem 0 10rem;
  }
  #request h2 {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .request_item {
    padding: 3rem 3rem 4rem;
    width: 48.5%;
  }
  .request_item h3 {
    margin-bottom: 2.5rem;
    height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .request_item figure {
    margin-bottom: 3rem;
  }
  .request_item img {
    width: 30rem;
  }
}


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

　   バナースライド

--------------------------------------------------------------------------------------------- */
.bnr_area {
  position: relative;
  background: #FFF480;
}
.bnr_title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.bnr_title span {
  display: inline-block;
  position: relative;
}
.bnr_title span:before {
  content: "";
  position: absolute;
  background: url(img/title_pickup.png) no-repeat center / contain;
  width: 17.5rem;
  height: 4.2rem;
  left: -11rem;
  top: -3.5rem;
  transform: rotate(-10deg);
}
#recommend .bnr_title span:before {
  background: url(img/title_recomend.png) no-repeat center / contain;
  width: 25.2rem;
  height: 3.6rem;
  left: -18rem;
}
.bnr_area .bnr_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bnr_area .bnr_item {
  list-style: none;
}
.bnr_area .bnr_link {
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #707070;
}
.bnr_area .bnr_link img {
  width: 100%;
  height: auto;
  display: block;
  transition: .3s;
}
.bnr_area .bnr_list .slick-list {
  overflow: visible;
}
.bnr_area .bnr_list .slick-slide {
  outline: none;
}
.bnr_area .bnr_list .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 0.8rem;
  justify-content: center;
}
.bnr_area .bnr_list .slick-dots li {
  margin: 0;
  width: 0.8rem;
  height: 0.8rem;
}
.bnr_area .bnr_list .slick-dots button {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
}
.bnr_area .bnr_list .slick-dots button::before {
  width: 0.8rem;
  height: 0.8rem;
  font-size: 0;
  content: "";
  border: 1px solid #707070;
  border-radius: 50%;
  opacity: 1;
  background: #fff;
}
.bnr_area .bnr_list .slick-dots .slick-active button::before {
  background: #707070;
}
.bnr_area .bnr_list .slick-arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: 1px solid #707070;
  background: #fff;
}
.bnr_area .bnr_list .slick-arrow::before {
  color: var(--maincolor);
  opacity: 1;
  font-size: 1.8rem;
}

@media only screen and ( max-width : 767px ) {
  .bnr_area {
    padding:2.5rem 0 6rem;
  }
  #recommend {
    padding: 4rem 0 6rem;
  }
  .bnr_area .bnr_list {
    padding: 0 2rem;
  }
  .bnr_area .bnr_item {
    padding: 0 1rem;
  }
  .bnr_area .bnr_list .slick-dots {
    bottom: -2.4rem;
  }
  .bnr_area .bnr_list .slick-prev {
    left: 1rem;
    transform: translate(-50%, -50%);
  }
  .bnr_area .bnr_list .slick-next {
    right: 1rem;
    transform: translate(50%, -50%);
  }
  #recommend .bnr_title span:before {
    left: -13rem;
    top: -4.5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .bnr_area .bnr_link:hover {
    opacity: 1;
  }
  .bnr_area .bnr_link:hover img {
    transform: scale(1.05);
    opacity: 1;
  }
  .bnr_area {
    padding: 3.5rem 0 6rem;
  }
  .bnr_area .bnr_list {
    position: relative;
  }
  .bnr_area .bnr_item {
    padding: 0 1.4rem;
  }
  .bnr_area .bnr_list .slick-dots {
    bottom: -3.2rem;
  }
  .bnr_area .bnr_list .slick-prev {
    left: 0;
    /* transform: translate(-120%, -50%); */
  }
  .bnr_area .bnr_list .slick-next {
    right: 0;
    /* transform: translate(120%, -50%); */
  }
}



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

　   SNS

--------------------------------------------------------------------------------------------- */
.line_link {
  border-radius: 2rem;
  background: #00B900;
  color: #fff;
  max-width: 50rem;
  margin: 0 auto;
  position: relative;
}
.line_link:before {
  content: "";
  position: absolute;
  background: url(./img/line_balloon.png) no-repeat center / 100%;
  width: 15.4rem;
  height: 8rem;
  left: 2rem;
  top: -3rem;
}
.line_link h2 {
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.8rem;
}

.line_link p {
  text-align: center;
  font-weight: 600;
}
.line_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #00B900;
  font-weight: 600;
  font-size: 1.8rem;
  position: relative;
  max-width: 30rem;
  height: 5rem;
  border-radius: 5rem;
  margin: 0 auto;
}
.line_btn:after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: url(./img/line_ico_window.png) no-repeat center / 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
}
#sns h3 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#sns h3 span {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: .2em;
}
.sns_list li:last-of-type {
  margin-right: 0;
}
.sns_list li img {
  width: 4rem;
}
@media only screen and ( max-width : 767px ) {
  #sns {
    padding: 5.4rem 0 4.6rem;
  }
  .line_link {
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
  }
  .line_link:before {
    left: -1.5rem;
    top: -4rem;
  }
  .line_link .line_btn {
    margin-top: 2.4rem;
  }
  .sns_list li {
    margin-right: 2.5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #sns {
    padding: 8rem 0 5.6rem;
  }
  .line_link {
    padding: 2.6rem 2rem 4rem;
    margin-bottom: 2.8rem;
  }
  .sns_list li {
    margin-right: 2.8rem;
  }
  .line_link .line_btn {
    margin-top: 3rem;
  }
  .line_link .line_btn:hover {
    background: #FFF480;
    opacity: 1;
  }
}


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

　   XXX

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

@media only screen and ( max-width : 767px ) {

}
@media print, screen and ( min-width : 768px ) {

}