html {
  scroll-behavior: smooth;
}
body {
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  color: #0000FF;
  background-color: #0000FF;
}

.sp,
.sp_1000,
.sp_blank {
  display: block;
}

.pc,
.pc_1000 {
  display: none;
}

.section_title {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 6px;
}

.bg {
  background-color: #fdfdfd;
}

.white {
  color: #fff;
}

hr {
  background-color: #0000FF;
  margin: 25px 0;
  border: none;
}

br.pcbr { /* スマホ表示では改行しない */
  display: none;
}

br.spbr { /* スマホ表示のみ改行する */
  display: block;
}

a {
  text-decoration: none;
  color: #0000FF;
}

a:hover {
  text-decoration: underline;
  color: #0000FF;
}

.btn {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding: 17px 0;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background-color: #0000FF;
  border-radius: 33px;
  text-decoration: none;
  border: solid 1px #fff;
}

.btn:hover {
  background-color: white;
  color: #0000FF;
  border: solid 1px #0000FF;
  text-decoration: none;
}

.btn02 {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding: 17px 0;
  font-size: 16px;
  text-align: center;
  color: #0000FF;
  background-color: #FFF;
  border-radius: 33px;
  text-decoration: none;
  border: solid 1px #0000FF;
}

.btn02:hover {
  background-color: #0000FF;
  color: #FFF;
  border: solid 1px #FFF;
  text-decoration: none;
}

.section {
  padding: 50px 20px;
  box-sizing: border-box;
}

input,
textarea {
  font-size: 16px;
}

input {
  appearance: none;
  -webkit-appearance: none;/*Google Chrome/Safari対応*/
  -moz-appearance: none;/*Firefox対応*/
}

.clearfix::after{
  content: "";
  clear: both;
  display: block;
}

@media screen and (min-width: 900px) {
  .btn, .btn02 {
    max-width: 300px;
    margin: 50px auto 0;
    padding: 22px 0;
    font-size: 20px;
  }

  .section {
    width: 100%;
    padding: 80px 0px;
    box-sizing: border-box;
  }

  .section_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .section_inner_mini {
    max-width: 900px;
    padding: 0 40px;
    margin: 0 auto;
  }

  .section_title {
    margin-bottom: 50px;
    font-size: 40px;
    letter-spacing: 6px;
    line-height: 1.4;
  }

  .sp,
  .sp_blank {
    display: none;
  }

  .pc {
    display: block;
  }

  br.pcbr { /* PC表示のみ改行する */
    display: block;
  }

  br.spbr { /* PC表示では改行しない */
    display: none;
  }

}

@media screen and (min-width: 1200px) {

  .section_inner,
  .section_inner_mini {
    padding: 0;
  }
}

@media screen and (min-width: 1000px) {
  .sp_1000 {
    display: none;
  }

  .pc_1000 {
    display: block;
  }
}


/* ヘッダーメニュー */
header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  box-sizing: border-box;
  align-items: center;
  background-color: #0000FF;
  z-index: 5;
}

header img {
  height: 20px;
}

/* spメニュー */
#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.3s;
}

#g-nav.panelactive {
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav ul {
  width: 100%;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  text-decoration: none;
  padding: 15px;
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 0px;
  right: 20px;
  cursor: pointer;
  width: 30px;
  height: 20px;
}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  height: 2px;
  background-color: #fff;
  width: 100%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
  background-color: #0000FF;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
  background-color: #0000FF;
}

@media screen and (min-width: 900px) {

  .header_menu {
    display: flex;
    align-items: center;
  }

  .header_menu a {
    color: #fff;
  }

  .header_menu li {
    margin-right: 30px;
    letter-spacing: 2px;
  }

  .header_menu li:nth-child(4) {
    margin-right: 15px;
  }
  .header_menu li:last-child {
    margin-right: 0px;
  }

  .header_menu a:hover {
    text-decoration: underline;
  }

  .header_menu .header_btn {
    display: block;
    width: 150px;
    padding: 12px 0;
    text-align: center;
    color: #0000FF;
    background-color: #fff;
    border-radius: 30px;
    border: 1px solid #0000FF;
  }

  .header_menu .header_btn:hover {
    color: #fff;
    background-color: #0000FF;
    border: 1px solid #fff;
    text-decoration: none;
  }
}

@media screen and (min-width: 1000px) {
  header {
    height: auto;
    padding: 20px 40px;
  }

  header img {
    height: 30px;
  }

}

@media screen and (min-width: 1200px) {
  .header_menu li {
    margin-right: 40px;
  }

  .header_menu .header_btn {
    width: 180px;
  }
}


/* ファーストビュー */
.main_visual {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.maincopy {
  position: absolute;
  top: 25%;
  left: 20px;
  width: calc(100% - 40px);
}

.subcopy {
  position: absolute;
  bottom: 30%;
  right: 20px;
  font-size: 37px;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  color: #fff;
  text-align: right;
  line-height: 0.7;
  letter-spacing: 1px;
}

.subcopy span {
  font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.7px;
}

/*スクロール　アローアニメーション*/
.scrolldown4 {
  position: absolute;
  left: 38px;
  animation: arrowmove 1.6s ease-in-out infinite;
}

@keyframes arrowmove {
  0% {
    bottom: 1%;
  }

  50% {
    bottom: 3%;
  }

  100% {
    bottom: 1%;
  }
}

.scrolldown4 span {
  position: absolute;
  left: -20px;
  bottom: 21px;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.scrolldown4:before {
  content: "";
  position: absolute;
  bottom: 15px;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #fff;
  transform: skewX(-31deg);
}

.scrolldown4:after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 0;
  width: 1px;
  height: 50px;
  background: #fff
}

@media screen and (min-width: 900px) {
  .main_visual {
    width: 100%;
    height: 100vh;
  }

  .main_visual_inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    height: 100vh;
  }

  .maincopy {
    top: 26%;
    left: 40px;
    width: 800px;
  }

  .subcopy {
    position: absolute;
    bottom: 100px;
    right: 40px;
    font-size: 50px;
    line-height: 0.7;
    letter-spacing: 1px;
  }

  .subcopy span {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
  }

  .scrolldown4 span {
    left: -20px;
    bottom: 90px;
  }

  .scrolldown4:before {
    bottom: 90px;
    right: -6px;
  }

  .scrolldown4:after {
    bottom: 90px;
    right: 0;
  }

  .scrolldown4 {
    left: 55px;
  }
}

@media screen and (min-width: 1200px) {
  .maincopy {
    left: 0;
  }

  .subcopy {
    right: 0;
  }

  .scrolldown4 {
    left: 15px;
  }
}


/* 求人検索 */

.toppage_disc {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #333;
}

.toppage_disc_s {
  font-size: 14px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #333;
}

.job_search {
    position: relative;
    overflow: hidden;
    font-size: 25px;
    font-weight: normal;
    margin-top: 50px;
    margin-bottom: 30px;
}

.jobtype ul.jobtype_box{
    list-style: none;
}

@media screen and (min-width: 900px){
.jobtype ul.jobtype_box li a{
    width: calc(120%/7) !important;
}
}

.jobtype ul.jobtype_box li a{
    width: calc(90%/2);
    height: 50px;
    line-height: 50px;
    font-size: 15px;
	letter-spacing: -1px;
    text-align: center;
    color: #0000FF;
    display: block;
    float: left;
    text-align: center;
    border: 1px solid #0000FF;
    border-radius: 10px;
    margin: 0px 0px 10px 10px;
    cursor: pointer;
    text-decoration: none;
}

.jobtype ul.jobtype_box li a:hover{
    color: #FFFFFF;
    background-color:#0000FF;
}

.search_consul_box {
  display: flex;
  justify-content:end;
  list-style: none;
  margin: 50px auto 0;
}

.search_consul_box_sec {
    width: calc(100%/2);
}

@media screen and (min-width: 900px){
.search_consul_box_sec {
  width: calc(50%/2);
}
}

.search_consul_box_sec p {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 1.2em;
}

.search_consul_box_sec a {
  color: #0000ff;
  font-size: 24px;
  font-weight: 500;
  }

.search_consul_box_sec a:hover {
  color: #0000ff;
  text-decoration: none;
}

.search_consul_box_sec:nth-child(2) a {
  background-color: #ffffff;
  color: #0000ff;
}

.search_consul_box_sec:nth-child(2) a:hover {
  background-color: #0000ff;
  color: #ffffff;
}

.category_select_sec {
  padding: 20px 10px;
  border: 1px solid #0000FF;
  box-sizing: border-box;
}

.category_select_sec p {
  font-size: 16px;
}

.category_select {
  margin-bottom: 15px;
}

.freeword {
  margin-top: 20px;
  margin-bottom: 15px;
}

.category_select_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.category_select_btn input {
  display: none;
}

.check_box:checked+.label {
  color: #fff;
  background-color: #0000FF;
}

.category_select_btn label {
  width: calc((100% - 10px) /2);
  margin-bottom: 10px;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  list-style: none;
  border: 1px solid #0000FF;
  border-radius: 33px;
}

input[type="text"]:focus {
  border: 1px solid #0000FF;
  outline: 0;
}

#form1 {
  width: 100%;
}

#sbox1 {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #0000FF;
  border-radius: 3px;
}

#sbtn1 {
  width: 100%;
  border: none;
  display: block;
  margin-top: 30px;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  background-color: #0000FF;
  border-radius: 33px;
  text-decoration: none;
  border: solid 1px #fff;
}

#sbtn1:hover {
  color: #0000FF;
  background-color: #fff;
  border: solid 1px #0000FF;
}

#sbox2, #feas_1_0 {
  width: 65%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #0000FF;
  border-radius: 3px;
}

#sbtn2 {
  width: 30%;
  margin-left: 10px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  background-color: #0000FF;
  border-radius: 33px;
  text-decoration: none;
  border: solid 1px #fff;
}

#sbtn2:hover {
  color: #0000FF;
  background-color: #fff;
  border: solid 1px #0000FF;
}

.search {
  font-size: 14px;
  border: 1px solid #0000FF;
  color: #999;
  border-radius: 5px;
  box-sizing: border-box;
  background: #fdfdfd;
}

.top_search_btn {
  margin-top: 20px;
}

.section_start_text {
  margin-top: 20px;
  font-size: 12px;
  text-align: left;
  line-height: 1.7;
  color: #333;
}

.career_register_text {
  margin-top: 20px;
  font-size: 12px;
  text-align: center;
  line-height: 1.7;
  color: #333;
}

.section_start_text a,
.career_register_text a {
  text-decoration: underline;
}

@media screen and (min-width: 900px) {
  .toppage_disc {
    font-size: 20px;
  }

  .toppage_disc_s {
    font-size: 15px;
  }

  .search_consul_box {
    width: 80%;
    text-align: right;
  }

  .search_consul_box_sec p {
    font-size: 20px;
  }

  .category_select_sec {
    padding: 30px 50px;
  }

  .category_select_inner,
  .freeword_inner {
    display: flex;
  }

  .freeword_inner {
    margin-top: 25px;
  }

  .category_select {
    width: 125px;
    min-width: 125px;
    margin-top: 13px;
    margin-right: 0px;
  }

  .freeword {
    width: 125px;
    min-width: 125px;
    margin-top: 11px;
    margin-right: 0px;
  }

  .category_select_btn label {
    width: calc((100% - 30px) /3);
    margin-bottom: 15px;
    padding: 12px 0;
    font-size: 16px;
  }

  .category_select_btn:after {
    content: "";
    width: calc((100% - 45px) /4);
    height: 0;
  }

  .category_select_btn:before {
    content: "";
    width: calc((100% - 45px) /4);
    height: 0;
    order: 1;
  }

  #sbtn1 {
    max-width: 300px;
    margin: 30px auto 0;
    padding: 17px 0;
    font-size: 20px;
  }
  #sbox2, #feas_1_0 {
    width: 60%;
  }

  #sbtn2 {
    width: 15%;
    margin-left: 20px;
  }

  .section_start_text,
  .career_register_text {
    margin-top: 25px;
    font-size: 15px;
  }

}

@media screen and (min-width: 1200px) {
  .category_select_btn label {
    width: calc((100% - 45px) /4);
  }

  .category_select {
    width: 125px;
    min-width: none;
    margin-right: 30px;
  }

  .freeword {
    width: 131px;
    min-width: none;
    margin-right: 30px;
  }

  #sbtn1 {
    margin-left: 194px;
  }

}


/* CASTERとは */

/* company_sec */
.company_sec {
  padding: 30px 20px;
  margin-bottom: 50px;
  font-size: 14px;
  text-align: center;
  color: #333;
}

.company_sec a {
  color: #333;
  text-decoration: underline;
}

.company_sec h3 {
  margin-bottom: 10px;
  font-size: 30px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: #0000FF;
}

.company_sec span {
  position: relative;
  padding-right: 15px;
}

.company_sec span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  margin-top: -3px;
}

/* service_disc */
.service_disc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #666;
}

.service_disc_sec {
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc((100% - 15px) / 2);
  margin-bottom: 20px;
  padding: 20px 10px 10px;
  box-sizing: border-box;
  text-align: center;
}

.service_disc_sec2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px 10px 10px;
  box-sizing: border-box;
  text-align: center;
}

.service_disc_sec h3 {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #0000FF;
}

.service_disc_text {
  font-size: 46px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
}

.service_disc_text span {
  margin: 0;
  padding: 0;
  font-size: 12px;
}

.service_disc_sec img {
  max-width: 280px;
  margin: 0 auto;
}

.service_disc_sec .member_img {
  width: 100px;
}

.service_disc_sec ol {
  margin: 0 auto;
  padding-left: 15px;
}

.service_disc_sec li {
  margin-bottom: 15px;
  font-size: 12px;
  text-align: left;
  line-height: 1.4;
  font-weight: 500;
}

.service_disc_sec li:last-child {
  margin-bottom: 0;
}

.service_disc_sec .service_disc_note {
  margin-top: 20px;
  font-size: 10px;
  text-align: right;
  line-height: 1.3;
  transform: scale(0.8);
  transform-origin: right;
}

.service_disc_note2 {
  margin-top: 11px;
}

/* work_style */
.work_style {
  width: 100%;
  max-width: 1100px;
}

.work_style h3 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 25px;
  color: #fff;
  font-weight: 400;
}

.work_style_img_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.work_style_img {
  width: calc((100% - 20px)/2);
  margin-bottom: 30px;
}

.work_style_img img {
  width: 100%;
}

.work_style p {
  margin-top: 20px;
  text-align: center;
  font-size: 10px;
  color: #fff;
}

@media screen and (min-width: 900px) {

  /* company_sec */
  .company_sec h3 {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .company_sec {
    padding: 30px;
  }

  .company_sec p{

    font-size: 24px;
    line-height: 32px;
  }

  .company_sec a {

    font-size: 24px;
  }

  .company_sec_box1 {
    display: block;
  }

	.company_sec_box2 {
    display: flex;
  }

  .company_sec_inner {
    width: 50%;
    text-align: center;
  }

  .company_sec_inner1 {
	  width: 100%;
    border-right: 0;
	  padding-bottom: 30px;
    border-bottom: 1px solid #333;
	}

  .company_sec_inner2{
    width: 100%;
    border-right: 0;
    padding: 30px 0px;
    border-bottom: 1px solid #333;
  }

  .company_sec_inner3,
  .company_sec_inner4 {
    padding-top: 30px;
  }

  .company_sec_inner3 {
    border-right: 1px solid #333;
  }

  .company_sec span {
    padding-right: 20px;
  }

  .company_sec span::after {
    width: 12px;
    height: 12px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    margin-top: -5px;
  }

  /* service_disc */
  .service_disc_sec h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .service_disc_sec {
    width: calc((100% - 80px) / 3);
    height: 400px;
    margin-bottom: 40px;
    padding: 30px 15px 15px;
  }

  .service_disc_sec2 {
    width: calc((100% - 80px) / 3);
    height: 400px;
    margin-bottom: 40px;
    padding: 30px 15px 15px;
  }

  .service_disc_sec li {
    margin-bottom: 25px;
    font-size: 18px;
  }

  .service_disc_sec img {
    width: 100%;
    max-width: 290px;
  }


  /* work_style */
  .work_style h3 {
    text-align: center;
    margin-bottom: 50px;
  }

  .work_style_img {
    width: calc((1100px - 150px)/4);
    margin-bottom: 30px;
  }

  .service_disc_sec .service_disc_note {
    transform: scale(1.0);
  }

  .service_disc_text {
    font-size: 80px;
  }

  .service_disc_text span {
    font-size: 18px;
  }

}

/* 働き方について - 働き方の違い */

.howtowork h3 {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  border-bottom: solid 2px #0000ff;
  font-size: 25px;
  font-weight: normal;
  margin-top: 50px;
  margin-bottom: 30px;
}

.howtowork table {
  width: 100%;
}

.howtowork table th,
.howtowork table td {
  color: #333;
  font-size: 14px;
  padding: 1em 1.5em;
  border-bottom: 1px solid #aaa;
  line-height: 1.6;
  text-align: left;
  white-space: nowrap;
}

.howtowork table thead {
  border-bottom: 10px solid #fff;
}

.howtowork table thead th:not(:first-child) {
  color: #fff;
  background-color: #0000FF;
  border-left: 10px solid #fff;
  text-align: center;
}

.howtowork table tbody th {
  color: #fff;
  background-color: #0000FF;
  border-bottom: 1px solid #fff;
}

.howtowork table tbody td {
  border-left: 10px solid #fff;
}

.howtowork table th:first-child,
.howtowork table td:first-child {
  width: 25%;
}

.howtowork table tbody tr:nth-child(2n+1) {
  background-color: #f1f1f1;
}

.scrollable{
  width: 100%;
  overflow: auto;
}
.scroll-hint-text{
  margin-top:0;
}


/* 働き方について - 働き方のQ&A */

.q_and_a details {
  border: 1px solid #0000FF;
  padding: 1em;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 1em;
  transition: .5s;
}

.q_and_a summary {
  display: block;
  list-style: none;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
}

.q_and_a summary::-webkit-details-marker {
  display: none;
}

details[open] .answer {   /* クリックしたら表示される要素 */
  overflow: auto;
  animation: fadeIn 0.5s ease;  /* アニメーションの指定 */
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.q_and_a .summary_inner{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.q_and_a .summary_inner p {
  padding-left: 2em;
  text-indent: -2em;
}
.q_and_a .summary_inner p::before {
  content: "Q.　";
}

.q_and_a .icon {
  display: block;
  position: relative;
  width: 24px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}

.q_and_a .answer {
  margin-top: 1em;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}

.q_and_a .answer p {
  padding-left: 2em;
  margin-bottom: 1em;
  word-wrap: break-word;
}
.q_and_a .answer p:first-child {
  padding-left: 2em;
  text-indent: -1.8em;
}

.q_and_a .answer p:first-child::before {
  content: "A.　";
}

/* アコーディオンが開いた時のスタイル */
.q_and_a details[open] .icon {
  transform: rotate(180deg);
}

/* アイコンのバーのスタイル */
.q_and_a .icon::before,
.q_and_a .icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  background-color: #7050ff;
}

.q_and_a .icon::before {
  left: 0;
  transform: rotate(45deg);
}

.q_and_a .icon::after {
  right: 0;
  transform: rotate(-45deg);
}

.q_and_a details[open] .icon {
  /* アコーディオンが開いた時のスタイル */
  transform: rotate(180deg);
}


/* お知らせ */

.news_list li {
  display: block;
  padding: 20px 0;
  font-size: 14px;
  border-top: 1px solid #8888ff;
}

.news_list li:last-child {
  border-bottom: 1px solid #8888ff;
}

.news_list li time {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

.news_list li a {
  text-decoration: underline;
  color: #fff;
  line-height: 1.5;
}

/* caster_magazine */
.caster_magazine {
  color: #fff;
  text-align: center;
}

.caster_magazine h2 {
  margin-bottom: 10px;
  color: #0000ff;
  font-size: 30px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.caster_magazine h3 {
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: normal;
}

.caster_magazine h3.sub{
  margin-top:0px;
  text-align: left;
  line-height: 20px;
  color:#0000ff;
}

.caster_magazine img {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #8888ff;
}

@media screen and (min-width: 900px) {
  .news_list li {
    display: flex;
    padding: 30px 0;
    font-size: 15px;
    align-items: center;
  }

  .news_list li time {
    width: 90px;
    margin-right: 30px;
    margin-bottom: 0;
  }

  .caster_magazine h2 {
    font-size: 38px;
  }

  .caster_magazine h3.sub{
  margin-top:10px;
  }

  .magazine_images {
    display: flex;
    justify-content: space-between;
  }

  .caster_magazine img {
    width:294px;
    height:154px;
    margin-bottom: 0px;
    object-fit: cover;
  }

  .caster_magazine img:last-child {
    margin-bottom: 0px;
  }

  .caster_magazine h3.sub{
    width: 294px;
  }
}


/* footer */

footer {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  text-decoration: none;
}

.sns_img {
  margin-right: 10px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer ul {
  font-size: 12px;
  margin-top: 50px;
  margin-bottom: 40px;
}

footer li {
  margin-bottom: 20px;
}

footer li a:hover {
  text-decoration: underline;
}

.copywriter {
  font-size: 10px;
  color: #fff;
}

@media screen and (min-width: 900px) {
  .footer_link {
    display: flex;
    list-style: none;
    justify-content: center
  }

  footer li {
    margin-right: 30px;
  }

}
