@charset "UTF-8";
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

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

@media print, screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.mb0 {
  margin-bottom: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

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

/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/********************
* index
*
********************/
/* body */
html {
  background-color: #fbfaf4;
}

@media screen and (max-width: 767px) {
  .body {
    background: url(../image/bg-main.jpg) center 0 no-repeat;
    background-size: contain;
  }
}

@media print, screen and (min-width: 768px) {
  .body {
    background: url(../image/bg-main-pc.jpg) center 0 no-repeat;
    background-color: #fbfaf4;
    background-size: cover;
  }
}

/* main */
@media print, screen and (min-width: 768px) {
  .main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
    width: 620px;
  }
}

/* .card */
.card {
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

.card__lists {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.card__lists li {
  width: 50%;
}

.card__lists .card__list--single {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .card {
    margin-right: auto;
    margin-left: auto;
    width: 90.625vw;
  }
  .card + .card {
    margin-top: 2rem;
  }
  .card__lists--kansai {
    background-color: #77a136;
  }
  .card__lists--kansai li {
    width: 30vw;
  }
  .card__lists--kansai li:nth-child(3n) {
    width: 30.625vw;
  }
}

@media print, screen and (min-width: 768px) {
  .card {
    width: 290px;
    height: 476px;
  }
  .card__lists--kansai {
    background-color: #77a136;
  }
  .card__lists--kansai li {
    width: 96px;
  }
  .card__lists--kansai li:nth-child(3n) {
    width: 98px;
  }
  .ua-safari .card__lists img {
    transition: none;
  }

  /* 個別設定 */
}

/* .card__news */
.card__news_ttl {
  text-align: center;
}

.card__news_ttl--pitapa {
  color: #5e67ac;
}

.card__news_ttl--kansai {
  color: #89b337;
}

.card__news_ttl--asobon {
  color: #ec1d25;
}

.card__news_txt {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .card__news {
    padding: 1rem 0;
  }
  .card__news_ttl {
    font-size: 4.375vw;
  }
  .card__news_txt {
    width: 20rem;
  }
}

@media print, screen and (min-width: 768px) {
  .card__news {
    padding: .95rem 0;
  }
  .card__news_ttl {
    text-align: center;
    font-weight: bold;
  }
  .card__news_txt {
    width: 20rem;
  }
}

/* pitapa__link */
.pitapa__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 9px 15px;
  background-color: #dfe1ee;
}

@media screen and (max-width: 767px) {
  .pitapa__link_txt {
    width: 24.6875vw;
  }
  .pitapa__link_btn {
    width: 55vw;
  }
}

@media print, screen and (min-width: 768px) {
  .pitapa__link_txt {
    width: 79px;
  }
  .pitapa__link_btn {
    width: 176px;
  }
}

/* asobon */
.asobon__topics-list-wrapper {
  background: url(../image/bg-asobon.jpg) 0 0 no-repeat;
  background-size: cover;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .asobon__topics-list-wrapper {
    padding: 2.34375vw 0;
  }
  .topicList {
    margin: 0 auto;
    width: 86.25vw;
  }
  .topicList div {
    padding: 1px;
    background-color: #fff;
  }
  .topicList div + div {
    margin-top: 1px;
  }
  .topicList a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: opacity 0.25s ease;
  }
  .topicList a:hover, .topicList a:active, .topicList a:focus {
    text-decoration: none;
    opacity: .8;
  }
  .topicList a:hover img, .topicList a:active img, .topicList a:focus img {
    opacity: 1;
  }
  .topicList img {
    width: 100%;
    height: auto;
  }
  .topicList p {
    margin-top: 0;
    padding-left: 3rem;
    width: 60.3125vw;
    background: url(../../asobonweb/asset/img/arrow.png) 1.875vw 50% no-repeat;
    background-size: 27px;
    font-size: 4.375vw;
    line-height: 1.4;
    margin: 1rem 0;
  }
  .topicList time {
    display: inline-block;
    margin-bottom: .3em;
    padding: 1px 13px;
    width: 24.0625vw;
    border-radius: 3.125vw;
    background-color: #fadfdf;
    color: #dc2525;
    text-align: center;
    font-size: 3.125vw;
  }
}

@media print, screen and (min-width: 768px) {
  .asobon__topics-list-wrapper {
    padding: 5px 7px;
  }
  .topicList {
    margin: 0 auto;
  }
  .topicList div {
    padding: 1px;
    background-color: #fff;
  }
  .topicList div + div {
    margin-top: 1px;
  }
  .topicList a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: opacity 0.25s ease;
  }
  .topicList a:hover, .topicList a:active, .topicList a:focus {
    text-decoration: none;
    opacity: .8;
  }
  .topicList a:hover img, .topicList a:active img, .topicList a:focus img {
    opacity: 1;
  }
  .topicList img.ofi {
    /*width: 81px;
    height: auto;*/
    width: 274px;
    height: auto;
    object-position: center;
    object-fit: cover;
    font-family: 'object-fit: cover; object-position: center;' /* IE・Edge対応 */
  }
  .topicList p {
    margin-top: 0;
    padding-left: 2.5rem;
    width: 158px;
    background: url(../../asobonweb/asset/img/arrow.png) 7px 50% no-repeat;
    background-size: 20px;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 14px;
    margin-top: 10px;
  }
  .topicList time {
    display: inline-block;
    margin-bottom: .5em;
    padding: 1px 13px;
    width: 80px;
    border-radius: 3.125vw;
    background-color: #fadfdf;
    color: #dc2525;
    text-align: center;
    font-size: 10px;
  }
}

/* kansai */
@media screen and (max-width: 767px) {
  .kansai {
    margin-top: 1.5rem;
  }
}

@media print, screen and (min-width: 768px) {
  .kansai {
    margin-top: .17rem;
    height: auto;
  }
}

/* .sub */
@media screen and (max-width: 767px) {
  .sub {
    margin-top: 2rem;
    padding-bottom: 6rem;
    background-color: #fbfaf4;
  }
}

@media print, screen and (min-width: 768px) {
  .sub {
    padding: 40px 0 96px;
    background: linear-gradient(to bottom, transparent 0, transparent 20px, #fbfaf4 105px, #fbfaf4 100%);
  }
  .sub__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    width: 940px;
  }
}

/* .news */
.news__lists {
  margin-top: .5rem;
}

.news__lists a {
  display: block;
}

.news__lists a:hover {
  text-decoration: none;
}

.news__lists a:hover span {
  display: inline-block;
  text-decoration: underline;
}

.news__lists time {
  color: #999;
}

@media screen and (max-width: 767px) {
  .news {
    margin-right: auto;
    margin-left: auto;
    padding: 2rem 0 .5rem;
    width: 90.625vw;
  }
  .news__ttl {
    margin: 0 auto;
    width: 29.53125vw;
  }
  .news__lists-wrapper {
    overflow-y: scroll;
    margin: .5rem auto 0;
    width: 84.375vw;
    height: 85.9375vw;
  }
  .news__lists {
    width: 81.25vw;
    line-height: 1.4;
  }
  .news__lists li {
    padding: .75rem 0;
  }
  .news__list--pdf span:after {
    display: inline-block;
    margin-bottom: -2px;
    width: 14px;
    height: 16px;
    background-image: url(/common/image/sprite/sprite.png);
    background-position: -42px 0px;
    background-size: 65px 52px;
    content: '';
  }
}

@media print, screen and (min-width: 768px) {
  .news {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px 0 18px;
    width: 100%;
    height: 120px;
  }
  .news__ttl {
    width: 94px;
  }
  .news__lists-wrapper {
    overflow-y: scroll;
    width: 800px;
    height: 110px;
  }
  .news__lists li {
    padding: .25rem 0;
  }
  .news__lists a {
    display: flex;
    flex-wrap: wrap;
  }
  .news__lists time {
    width: 6rem;
  }
  .news__lists span {
    padding-left: 1rem;
    width: 54rem;
  }
  .news__list--pdf span:after {
    display: inline-block;
    margin-bottom: -3px;
    width: 14px;
    height: 16px;
    background-image: url(/common/image/sprite/sprite.png);
    background-position: -42px 0px;
    background-size: 65px 52px;
    content: '';
  }
}

/* .benri */
.benri__ttl {
  margin: 0 auto;
}

.benri__lists li + li {
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .benri {
    margin-top: 2rem;
    margin-right: auto;
    margin-left: auto;
    width: 90.625vw;
  }
  .benri__lists {
    margin-top: 2rem;
  }
  .benri__ttl {
    width: 46.875vw;
  }
}

@media print, screen and (min-width: 768px) {
  .benri {
    width: 290px;
  }
  .benri__lists {
    margin-top: 25px;
  }
  .benri__ttl {
    width: 150px;
  }
}

/* .pickup */
.pickup__ttl {
  margin: 0 auto;
}

.pickup__lists li + li {
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .pickup {
    margin-top: 2rem;
    margin-right: auto;
    margin-left: auto;
    width: 90.625vw;
  }
  .pickup__lists {
    margin-top: 2rem;
  }
  .pickup__ttl {
    width: 30.625vw;
  }
}

@media print, screen and (min-width: 768px) {
  .pickup {
    margin-top: -2px;
    width: 290px;
  }
  .pickup__lists {
    margin-right: -3px;
    margin-left: -3px;
  }
  .pickup__lists li + li {
    margin-top: -.2rem;
  }
  .pickup__ttl {
    width: 98px;
  }
}

/* top_important_info */
.top_important_info{
    width: 940px;
    margin: 0 auto;
    margin-bottom: 20px;
    background-color: #ffffff;
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}
.top_important_info li{
	padding: 1em;
	background: url(/image/important_info_caution.png) 12px 11px no-repeat;
    background-size: 26px 26px;
    padding-left: 3.75em;
}
.top_important_info p{
	margin:0;
}

@media screen and (max-width: 767px)  {
	.top_important_info{
		margin-right: auto;
        margin-left: auto;
        width: 90.625vw;
	}
	.top_important_info li{
		background: url(/image/important_info_caution.png) 18px 21px no-repeat;
    background-size: 26px 26px;
	}
}