@charset "UTF-8";
/*********************************************
*
* 共通パーツ、初期設定
*
*********************************************/
/************************
**ブレイクポイント
************************/
/************************
**safari用
************************/
/************************
**全体
************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  /*↑googlefont使用時*/
  font-weight: 500;
  font-feature-settings: "palt";
}

/*pタグline-height 余白消し*/
p {
  line-height: 1.5;
  margin: 0;
  padding: 0;
  display: inline-block;
}
p::before, p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
p::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
p::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}

/*画像サイズを要素のwidthに合わせる*/
img {
  width: 100%;
  height: auto;
}
img.himg {
  width: auto;
  height: 100%;
}

/*PCとSPで表示切替、ブレイクポイントは適宜変更*/
.sp-on {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-on {
    display: none;
  }
}

.pc-on {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-on {
    display: block;
  }
}

/*ボタン化(aタグ、buttonタグを親要素に全体化)*/
.ab-a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.ab-b {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/*リストのデザインを削除*/
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

/*テキストを一塊にし、途中で改行させない*/
.txtb {
  display: inline-block;
}

/************************
**サイズ別br 使わないものはコメントアウト
************************/
.smartbr {
  display: block;
}
@media screen and (min-width: 576px) {
  .smartbr {
    display: none;
  }
}

.smbr {
  display: none;
}
@media screen and (min-width: 576px) {
  .smbr {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .smbr {
    display: none;
  }
}

.mdbr {
  display: none;
}
@media screen and (min-width: 768px) {
  .mdbr {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .mdbr {
    display: none;
  }
}

.lgbr {
  display: none;
}
@media screen and (min-width: 992px) {
  .lgbr {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .lgbr {
    display: none;
  }
}

.xlbr {
  display: none;
}
@media screen and (min-width: 1200px) {
  .xlbr {
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .xlbr {
    display: none;
  }
}

.xxlbr {
  display: none;
}
@media screen and (min-width: 1400px) {
  .xxlbr {
    display: block;
  }
}

.xxxlbr {
  display: none;
}
@media screen and (min-width: 1920px) {
  .xxxlbr {
    display: block;
  }
}

.sm-flbr {
  display: none;
}
@media screen and (min-width: 576px) {
  .sm-flbr {
    display: block;
  }
}

.md-flbr {
  display: none;
}
@media screen and (min-width: 768px) {
  .md-flbr {
    display: block;
  }
}

.lg-flbr {
  display: none;
}
@media screen and (min-width: 992px) {
  .lg-flbr {
    display: block;
  }
}

.xl-flbr {
  display: none;
}
@media screen and (min-width: 1200px) {
  .xl-flbr {
    display: block;
  }
}

.xxl-flbr {
  display: none;
}
@media screen and (min-width: 1400px) {
  .xxl-flbr {
    display: block;
  }
}

.xxxl-flbr {
  display: none;
}
@media screen and (min-width: 1920px) {
  .xxxl-flbr {
    display: block;
  }
}

/************************
**container 使わないものはコメントアウト
************************/
.container {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  .container {
    width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    width: 1320px;
  }
}

body {
  background-image: url(../img/base_11.png);
  background-position: left 0 top 38px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  font-family: "Noto Sans JP", sans-serif;
}

@media (min-width: 768px) {
  body {
    background-position: left 0 top 78px;
  }
}
/*********************************************
*
*header
*
*********************************************/
header {
  background-color: #2c437f;
}
header .brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}
header .brand .left {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .brand .left .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .brand .left .logo img {
  width: 120px;
}
@media screen and (min-width: 768px) {
  header .brand .left .logo img {
    width: 180px;
  }
}

/*********************************************
*
*footer
*
*********************************************/
footer {
  color: #fff;
  background-color: #2c437f;
}
footer p {
  font-size: small;
}
@media screen and (min-width: 576px) {
  footer p {
    font-size: medium;
  }
}
@media (min-width: 360px) {
  footer .smartbr {
    display: none;
  }
}

/*********************************************
*
*main
*
*********************************************/
.title-logo-mobile {
  margin-top: 39px;
}
.title-logo-mobile img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .title-logo-mobile {
    display: none;
  }
}

.title-logo {
  display: none;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .title-logo {
    display: block;
    margin-top: 100px;
  }
}
.title-logo .logo-wrap {
  position: relative;
  width: fit-content;
  height: fit-content;
  margin-inline: auto;
}
.title-logo .logo-wrap .logo-deco {
  position: absolute;
  width: 70%;
  top: -30px;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .title-logo .logo-wrap .logo-deco {
    width: 60%;
  }
}
.title-logo .logo-wrap .logo-deco.deco01 {
  left: -20%;
}
@media screen and (min-width: 992px) {
  .title-logo .logo-wrap .logo-deco.deco01 {
    left: -15%;
  }
}
.title-logo .logo-wrap .logo-deco.deco02 {
  right: -20%;
}
@media screen and (min-width: 992px) {
  .title-logo .logo-wrap .logo-deco.deco02 {
    right: -15%;
  }
}
.title-logo .top-title img {
  width: 95%;
}
@media screen and (min-width: 768px) {
  .title-logo .top-title img {
    width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .title-logo .top-title img {
    width: 960px;
  }
}
.title-logo .sponser img {
  width: 220px;
}
@media screen and (min-width: 768px) {
  .title-logo .sponser img {
    width: 300px;
  }
}
@media screen and (min-width: 992px) {
  .title-logo .sponser img {
    width: 380px;
  }
}

.day-place {
  width: fit-content;
  margin: 0 auto;
  text-shadow: 1px 2px 0 #00a4e7;
}
.day-place .day-place-mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .day-place .day-place-mobile {
    display: none;
  }
}
.day-place .day-place-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .day-place .day-place-pc {
    display: block;
    width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .day-place .day-place-pc {
    width: 960px;
  }
}
.day-place table {
  border-collapse: separate;
  border-spacing: 0px 10px;
}
@media screen and (min-width: 768px) {
  .day-place table {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .day-place table {
    border-spacing: 0px 15px;
  }
}
.day-place th {
  border: solid 1px;
}
@media screen and (min-width: 768px) {
  .day-place th {
    width: 22%;
    font-size: 20px;
  }
  .day-place th span {
    display: inline-block;
    letter-spacing: 1em;
    text-indent: 1em;
  }
}
@media screen and (min-width: 992px) {
  .day-place th {
    width: 25%;
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .day-place td {
    width: 78%;
    font-size: 27px;
    font-weight: bold;
    text-indent: 15px;
  }
}
@media screen and (min-width: 992px) {
  .day-place td {
    width: 75%;
    font-size: 36px;
    text-indent: 25px;
  }
}
@media screen and (min-width: 768px) {
  .day-place .dp-price01 td {
    font-size: 25px;
    line-height: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .day-place .dp-price01 td {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .day-place .dp-price02 td {
    line-height: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .day-place .dp-price02 td span {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .day-place {
    margin: 10px auto 30px;
  }
}
@media screen and (min-width: 992px) {
  .day-place {
    margin: 20px auto 40px;
  }
}

.visual-pic {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .visual-pic {
    width: 720px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 992px) {
  .visual-pic {
    width: 960px;
  }
}
.visual-pic .key-visual-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .visual-pic .key-visual-pc {
    display: block;
    width: 100%;
  }
}

.cheer {
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 768px) {
  .cheer {
    border-radius: 0 0 10px 10px;
  }
}
.cheer .cheer-image {
  width: 75%;
  margin: 0 auto;
  padding: 10px 0 5px;
}
@media screen and (min-width: 576px) {
  .cheer .cheer-image {
    width: 350px;
  }
}
@media screen and (min-width: 768px) {
  .cheer .cheer-image {
    width: 450px;
  }
}
.cheer .cheer-text {
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding: 5px 0 10px;
}
@media screen and (min-width: 576px) {
  .cheer .cheer-text {
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: bold;
  }
}
@media screen and (min-width: 768px) {
  .cheer .cheer-text {
    font-size: 22px;
  }
}
@media (min-width: 350px) {
  .cheer .cheer-text .smartbr {
    display: none;
  }
}

#last-result .lr-wrapper .lr-title {
  width: 100%;
  color: #007fc8;
  text-align: center;
  font-size: 5.625vw;
  font-weight: bold;
  padding: 1em 0;
  box-sizing: border-box;
}
@media screen and (min-width: 576px) {
  #last-result .lr-wrapper .lr-title {
    width: 540px;
    margin: 0 auto;
    padding: 0.5em 0;
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  #last-result .lr-wrapper .lr-title {
    width: 720px;
    padding: 0.75em 0;
    font-size: 34px;
  }
}
@media screen and (min-width: 992px) {
  #last-result .lr-wrapper .lr-title {
    width: 960px;
    font-size: 42px;
  }
}
#last-result .lr-wrapper .lr-block {
  width: 100%;
}
@media screen and (min-width: 576px) {
  #last-result .lr-wrapper .lr-block {
    width: 540px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  #last-result .lr-wrapper .lr-block {
    width: 720px;
  }
}
@media screen and (min-width: 992px) {
  #last-result .lr-wrapper .lr-block {
    width: 960px;
  }
}
#last-result .lr-wrapper .lr-block .block-photo {
  width: 100%;
}
#last-result .lr-wrapper .lr-block .block-photo img {
  width: 100%;
}
#last-result .lr-wrapper .lr-block .block-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2vw 0;
}
@media screen and (min-width: 576px) {
  #last-result .lr-wrapper .lr-block .block-label {
    flex-direction: row;
    padding: 10px 0;
  }
}
@media screen and (min-width: 768px) {
  #last-result .lr-wrapper .lr-block .block-label {
    padding: 15px 0;
  }
}
#last-result .lr-wrapper .lr-block .block-label .label-rank {
  display: flex;
  align-items: center;
}
#last-result .lr-wrapper .lr-block .block-label .label-rank .rank-icon {
  width: 10vw;
  max-width: 50px;
  flex-shrink: 0;
}
#last-result .lr-wrapper .lr-block .block-label .label-rank .rank-icon img {
  width: 100%;
}
@media screen and (min-width: 576px) {
  #last-result .lr-wrapper .lr-block .block-label .label-rank .rank-icon {
    width: 50px;
    max-width: none;
  }
}
@media screen and (min-width: 768px) {
  #last-result .lr-wrapper .lr-block .block-label .label-rank .rank-icon {
    width: 75px;
  }
}
#last-result .lr-wrapper .lr-block .block-label .label-rank .rank-text {
  font-size: 4.5vw;
  margin-left: 2vw;
  font-weight: bold;
  font-family: serif;
  flex-shrink: 0;
}
@media screen and (min-width: 576px) {
  #last-result .lr-wrapper .lr-block .block-label .label-rank .rank-text {
    font-size: 20px;
    margin: 0 20px 0 10px;
  }
}
@media screen and (min-width: 768px) {
  #last-result .lr-wrapper .lr-block .block-label .label-rank .rank-text {
    font-size: 24px;
  }
}
@media screen and (min-width: 992px) {
  #last-result .lr-wrapper .lr-block .block-label .label-rank .rank-text {
    font-size: 28px;
  }
}
#last-result .lr-wrapper .lr-block .block-label .label-school {
  font-size: 4.5vw;
  font-weight: bold;
}
@media screen and (min-width: 576px) {
  #last-result .lr-wrapper .lr-block .block-label .label-school {
    font-size: 24px;
    padding-bottom: 0.25em;
  }
}
@media screen and (min-width: 768px) {
  #last-result .lr-wrapper .lr-block .block-label .label-school {
    font-size: 30px;
  }
}
@media screen and (min-width: 992px) {
  #last-result .lr-wrapper .lr-block .block-label .label-school {
    font-size: 38px;
  }
}
#last-result .lr-wrapper .lr-block .block-label .label-keyword {
  font-size: 3.5vw;
  font-family: serif;
  font-weight: bold;
}
#last-result .lr-wrapper .lr-block .block-label .label-keyword span {
  font-size: 0.85rem;
}
@media screen and (min-width: 576px) {
  #last-result .lr-wrapper .lr-block .block-label .label-keyword {
    font-size: 18px;
    margin-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  #last-result .lr-wrapper .lr-block .block-label .label-keyword {
    font-size: 24px;
  }
}
@media screen and (min-width: 992px) {
  #last-result .lr-wrapper .lr-block .block-label .label-keyword {
    font-size: 30px;
  }
}
@media screen and (min-width: 576px) {
  #last-result .lr-wrapper .lr-block.champion .block-label .label-rank .rank-text {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  #last-result .lr-wrapper .lr-block.champion .block-label .label-rank .rank-text {
    font-size: 28px;
  }
}
@media screen and (min-width: 992px) {
  #last-result .lr-wrapper .lr-block.champion .block-label .label-rank .rank-text {
    font-size: 32px;
  }
}
#last-result .lr-wrapper .lr-block.other {
  font-size: 4.6875vw;
  margin-top: 2vw;
  padding: 0.5em 0;
  border-top: 3px solid #007fc8;
}
@media screen and (min-width: 576px) {
  #last-result .lr-wrapper .lr-block.other {
    font-size: 24px;
    margin-top: 5px;
    padding: 5px 0;
  }
}
@media screen and (min-width: 768px) {
  #last-result .lr-wrapper .lr-block.other {
    font-size: 30px;
  }
}
@media screen and (min-width: 992px) {
  #last-result .lr-wrapper .lr-block.other {
    font-size: 35px;
  }
}
#last-result .lr-wrapper .lr-block.other .lr-rank {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  width: 90%;
  margin-inline: auto;
}
#last-result .lr-wrapper .lr-block.other .lr-rank .rank-item {
  display: flex;
  align-items: center;
  vertical-align: middle;
}
#last-result .lr-wrapper .lr-block.other .lr-rank .rank-item .rank-num,
#last-result .lr-wrapper .lr-block.other .lr-rank .rank-item .rank-name {
  width: 20%;
  flex-shrink: 0;
  font-family: serif;
}
#last-result .lr-wrapper .lr-block.other .lr-rank .rank-item .rank-num {
  color: #00a4e7;
  margin-right: 1em;
  text-align: end;
}
#last-result .lr-wrapper .lr-block.other .lr-rank .rank-item .rank-shcool {
  flex: 1 0 0;
  padding-bottom: 0.25em;
}
#last-result .lr-wrapper .lr-block.special {
  font-size: 4.6875vw;
  margin: 2vw 0 5vw;
  padding: 0.5em 0;
  border-top: 3px solid #00a4e7;
  border-bottom: 3px solid #00a4e7;
}
@media screen and (min-width: 576px) {
  #last-result .lr-wrapper .lr-block.special {
    font-size: 15px;
    margin: 5px auto 30px;
    padding: 10px 0 1em;
  }
}
@media screen and (min-width: 768px) {
  #last-result .lr-wrapper .lr-block.special {
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  #last-result .lr-wrapper .lr-block.special {
    font-size: 24px;
  }
}
#last-result .lr-wrapper .lr-block.special .lr-label {
  font-size: 1.5em;
  margin-bottom: 0.5em;
  text-align: center;
  color: #515457;
  font-family: serif;
}
#last-result .lr-wrapper .lr-block.special .lr-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1em;
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 576px) {
  #last-result .lr-wrapper .lr-block.special .lr-box {
    width: 100%;
    flex-direction: row;
  }
}
#last-result .lr-wrapper .lr-block.special .lr-box .box-item {
  width: 80%;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 576px) {
  #last-result .lr-wrapper .lr-block.special .lr-box .box-item {
    width: calc(50% - 1em);
  }
}
#last-result .lr-wrapper .lr-block.special .lr-box .box-item .item-award,
#last-result .lr-wrapper .lr-block.special .lr-box .box-item .item-name {
  font-family: serif;
}
#last-result .lr-wrapper .lr-block.special .lr-box .box-item .item-award {
  color: #007fc8;
}
#last-result .lr-wrapper .lr-block.special .lr-box .box-item .item-school {
  font-size: 1.2em;
  font-weight: 600;
}
@media screen and (min-width: 576px) {
  #last-result .lr-wrapper .lr-block.special .lr-box .box-item .item-school {
    font-size: 1.1em;
  }
}
#info .container {
  background-color: #2c437f;
  background-image: url(../img/sheet_4.png);
  background-size: 101% auto;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 0.5vw 0 120px;
}
@media screen and (min-width: 576px) {
  #info .container {
    padding: 10px 0 200px;
  }
}
@media screen and (min-width: 768px) {
  #info .container {
    padding: 15px 0 250px;
  }
}
@media screen and (min-width: 992px) {
  #info .container {
    max-width: 960px;
    padding: 25px 0 320px;
  }
}
#info .cheer p {
  font-size: 18px;
  font-weight: bold;
}
#info .sheet-image {
  width: calc(100% - 1vw);
  margin: 0 auto;
}
#info .sheet-image img {
  width: 100%;
}
@media screen and (min-width: 576px) {
  #info .sheet-image {
    width: calc(100% - 20px);
  }
}
@media screen and (min-width: 768px) {
  #info .sheet-image {
    width: calc(100% - 30px);
  }
}
@media screen and (min-width: 992px) {
  #info .sheet-image {
    width: calc(100% - 50px);
  }
}
#info .kakumei-sheet .moji-1 img {
  width: 95%;
}
#info .info-text h3 {
  font-size: 15px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 200%;
}
#info .info-text h3 span {
  font-size: 20px;
}
@media screen and (min-width: 576px) {
  #info .info-text h3 {
    font-size: 22px;
  }
  #info .info-text h3 span {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  #info .info-text h3 {
    font-size: 28px;
  }
  #info .info-text h3 span {
    font-size: 32px;
  }
}
@media screen and (min-width: 992px) {
  #info .info-text h3 {
    font-size: 32px;
  }
  #info .info-text h3 span {
    font-size: 38px;
  }
}
#info .info-text h4 {
  color: #ffff00;
  font-size: 15px;
  font-weight: bold;
  line-height: 200%;
}
@media screen and (min-width: 576px) {
  #info .info-text h4 {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  #info .info-text h4 {
    font-size: 28px;
  }
}
@media screen and (min-width: 992px) {
  #info .info-text h4 {
    font-size: 32px;
  }
}
#info .info-text p {
  font-size: 12px;
  font-weight: bold;
  line-height: 200%;
}
#info .info-text p span {
  font-size: 15px;
}
@media screen and (min-width: 576px) {
  #info .info-text p {
    font-size: 15px;
  }
  #info .info-text p span {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  #info .info-text p {
    font-size: 18px;
  }
  #info .info-text p span {
    font-size: 24px;
  }
}
@media screen and (min-width: 992px) {
  #info .info-text p {
    font-size: 20px;
  }
  #info .info-text p span {
    font-size: 25px;
  }
}
@media screen and (min-width: 576px) {
  #info .info-text p .smartbr {
    display: none;
  }
}
#info .ks-award {
  width: 80%;
  min-width: 255px;
  margin: 2vw auto 0;
}
#info .ks-award img {
  width: 100%;
}
@media screen and (min-width: 576px) {
  #info .ks-award {
    width: 300px;
    margin: 20px auto 0;
  }
}
@media screen and (min-width: 768px) {
  #info .ks-award {
    width: 380px;
    margin: 25px auto 0;
  }
}
@media screen and (min-width: 992px) {
  #info .ks-award {
    width: 450px;
  }
}

#sdgs .sdgs-sports {
  border-top: 3px solid #2c437f;
  border-bottom: 3px solid #2c437f;
}
#sdgs .sdgs-sports h3 {
  color: #2c437f;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (min-width: 576px) {
  #sdgs .sdgs-sports h3 {
    font-size: 1.75rem;
  }
}
#sdgs .sdgs-sports h4 {
  font-weight: bold;
  font-size: 14px;
}
@media screen and (min-width: 576px) {
  #sdgs .sdgs-sports h4 {
    font-size: 1.5rem;
  }
}
#sdgs .sdgs-sports p {
  font-size: small;
  text-align: justify;
}
@media screen and (min-width: 576px) {
  #sdgs .sdgs-sports p {
    font-size: medium;
  }
}
#sdgs .sdgs-sports .sdgs-title img {
  width: 75%;
}
@media screen and (min-width: 576px) {
  #sdgs .sdgs-sports .sdgs-title img {
    width: 350px;
  }
}
#sdgs .sdgs-sports .sdgs-section img {
  width: 100%;
}
@media screen and (min-width: 992px) {
  #sdgs .container {
    width: 960px;
  }
}

#rakukoshi img {
  width: 100%;
}
@media screen and (min-width: 576px) {
  #rakukoshi img {
    width: 540px;
  }
}
@media screen and (min-width: 768px) {
  #rakukoshi img {
    width: 720px;
  }
}
@media screen and (min-width: 992px) {
  #rakukoshi img {
    width: 960px;
  }
}
#rakukoshi a:hover img {
  opacity: 0.5;
}

#monoless img {
  width: initial;
  height: initial;
}
#monoless .title-box {
  border-bottom: 2px solid #B3C5D5;
}
#monoless .monoless-service p {
  font-size: 11px;
  color: #555;
}
@media screen and (min-width: 576px) {
  #monoless .monoless-service p {
    font-size: 15px;
  }
}
#monoless .monoless-service a {
  text-decoration: none;
}
#monoless .monoless-service a:hover img {
  opacity: 0.5;
}
#monoless .monoless-service img {
  max-width: 100%;
}
#monoless .monoless-service h3 {
  font-size: 18px;
  color: #00b5f2;
}
#monoless .monoless-service h3:hover {
  text-decoration: underline;
}
@media (min-width: 350px) {
  #monoless .monoless-service .smartbr {
    display: none;
  }
}
#monoless .monoless-rakukoshi .monoless-rakukoshi-mobile {
  display: block;
}
@media screen and (min-width: 992px) {
  #monoless .monoless-rakukoshi .monoless-rakukoshi-mobile {
    display: none;
  }
}
#monoless .monoless-rakukoshi .monoless-rakukoshi-pc {
  display: none;
}
@media screen and (min-width: 992px) {
  #monoless .monoless-rakukoshi .monoless-rakukoshi-pc {
    display: block;
  }
}
#monoless .monoless-rakukoshi img {
  width: 100%;
}
@media screen and (min-width: 992px) {
  #monoless .container {
    width: 960px;
  }
}/*# sourceMappingURL=style.css.map */