@import url(https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@500;700);

@charset "UTF-8";

/*----------------------
 * 1. GENERAL
 *   1.1  Grids
 *   1.2  Margin
 *   1.3  Text
 *   1.4  Titles and Subtitles
 *   1.5  Tables
 *   1.6  Breadcrumb
 *   1.7  Buttons
 *   1.8  Lists
 *   1.9  Forms
 *   1.10 Other Elements
 *        1.10.1 plugins
 *        1.10.2 page top
 *        1.10.3 scroll icon
 * 2. HEADER
 * 	  2.1 Main Nav
 *        2.1.1 main-nav (pc-only)
 *        2.1.2 main-nav-xs (sp-only)
 * 3. MAIN VISUAL
 * 4. CONTENT
 *    4.1 Slider
 *    4.2 Block Img Wrap
 *    4.3 Catch
 *    4.4 Player List
 *    4.5 Other
 *    4.6 Cate Main
 *    4.7 Mobilyselect (sponsor list)
 *    4.8 Womens cup
 *    4.9 Media
 * 5. FOOTER
 * 6. INTERACTIONS
 * 7. 210928 TOPレイアウト変更
 */

/*-------------------------------
 * 1.GENERAL
 * ----------------------------*/
html,
body {
  overflow-x: hidden;
}
body {
  font-family: Hiragino Sans, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic ProN,
    "メイリオ", Meiryo, sans-serif;
  /*font-family: "游ゴシック",YuGothic, sans-serif;*/
  margin: 0;
  padding: 0;
  font-size: 15px;
  background: #fff;
  color: #000;
  line-height: 1.8;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}

a {
  color: #1eac4b;
}
a:hover {
  cursor: pointer;
  color: #1eac4b;
}
a:focus {
  outline: none;
  overflow: hidden;
  text-decoration: none;
}

a[href^="tel:"] {
  cursor: default;
  text-decoration: none;
}
a[href^="tel:"]:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    cursor: pointer;
  }
}

hr {
  border-top: 1px solid #1eac4b;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  hr {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

strong {
  font-weight: 600;
}
strong.bold50 {
  font-weight: 500;
}

@media (min-width: 1200px) {
  .container {
    width: 1130px;
  }
}

main {
  width: 100%;
  margin: 0;
  padding: 0;
}
main#lower-page {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  main#lower-page {
    margin-top: 80px;
  }
}

.section-wrap {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .section-wrap {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.flex-start {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.flex-center {
  display: flex;
  flex-flow: row wrap;
  /*justify-content: center;*/
  align-items: center;
  align-content: center;
}

/* 1.1 Grids
 * ------------------------------*/
.row-flex {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.row-flex + .row-flex {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .row-flex {
    flex-wrap: wrap;
  }
  .row-flex .order1 {
    order: 1;
  }
  .row-flex .order2 {
    order: 2;
  }
}

/*** 1.1.1 Base 10 Grids ***/
.col-base10-xs-0 {
  width: 0%;
}

.col-base10-xs-1 {
  width: 10%;
}

.col-base10-xs-2 {
  width: 20%;
}

.col-base10-xs-3 {
  width: 30%;
}

.col-base10-xs-4 {
  width: 40%;
}

.col-base10-xs-5 {
  width: 50%;
}

.col-base10-xs-6 {
  width: 60%;
}

.col-base10-xs-7 {
  width: 70%;
}

.col-base10-xs-8 {
  width: 80%;
}

.col-base10-xs-9 {
  width: 90%;
}

.col-base10-xs-10 {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-0 {
    width: 00%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-0 {
    width: 00%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-0 {
    width: 00%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-1 {
    width: 10%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-1 {
    width: 10%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-1 {
    width: 10%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-2 {
    width: 20%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-2 {
    width: 20%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-2 {
    width: 20%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-3 {
    width: 30%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-3 {
    width: 30%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-3 {
    width: 30%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-4 {
    width: 40%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-4 {
    width: 40%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-4 {
    width: 40%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-5 {
    width: 50%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-5 {
    width: 50%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-5 {
    width: 50%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-6 {
    width: 60%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-6 {
    width: 60%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-6 {
    width: 60%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-7 {
    width: 70%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-7 {
    width: 70%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-7 {
    width: 70%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-8 {
    width: 80%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-8 {
    width: 80%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-8 {
    width: 80%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-9 {
    width: 90%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-9 {
    width: 90%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-9 {
    width: 90%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-10 {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-10 {
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-10 {
    width: 100%;
  }
}

/* 1.2  Margin
 * ------------------------------*/
.mt00 {
  margin-top: 0 !important;
}
.mt05 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mt70 {
  margin-top: 70px !important;
}
.mt80 {
  margin-top: 80px !important;
}

.mb00 {
  margin-bottom: 0 !important;
}
.mb05 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.pt00 {
  padding-top: 0 !important;
}
.pt10 {
  padding-top: 10px !important;
}
.pt20 {
  padding-top: 20px !important;
}

.pb00 {
  padding-bottom: 0 !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}

@media only screen and (max-width: 767px) {
  .mt00-xs {
    margin-top: 0 !important;
  }
  .mt10-xs {
    margin-top: 10px !important;
  }
  .mt20-xs {
    margin-top: 20px !important;
  }
  .mt30-xs {
    margin-top: 30px !important;
  }
  .mt40-xs {
    margin-top: 40px !important;
  }
  .mt50-xs {
    margin-top: 50px !important;
  }
  .mb00-xs {
    margin-bottom: 0 !important;
  }
  .mb10-xs {
    margin-bottom: 10px !important;
  }
  .mb20-xs {
    margin-bottom: 20px !important;
  }
  .mb30-xs {
    margin-bottom: 30px !important;
  }
  .mb40-xs {
    margin-bottom: 40px !important;
  }
  .mb50-xs {
    margin-bottom: 50px !important;
  }
  .mr00-xs {
    margin-right: 0 !important;
  }
  .pt00-xs {
    padding-top: 0 !important;
  }
  .pt10-xs {
    padding-top: 10px !important;
  }
  .pb00-xs {
    padding-bottom: 0 !important;
  }
  .pb10-xs {
    padding-bottom: 10px !important;
  }
}

/* 1.3 Text
 * ------------------------------*/
p {
  line-height: 2;
}
.line-height2 {
  line-height: 2 !important;
}
.line-height235 {
  line-height: 2.35 !important;
}
.line-height3 {
  line-height: 3 !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
@media only screen and (max-width: 767px) {
  p {
    line-height: 1.8;
  }
  .line-height2,
  .line-height235,
  .line-height3 {
    line-height: 1.8 !important;
  }
  .text-left-xs {
    text-align: left !important;
  }
  .text-center-xs {
    text-align: center !important;
  }
  .text-right-xs {
    text-align: right !important;
  }
}

.letter-spacing00 {
  letter-spacing: 0 !important;
}

.txt-min {
  font-family: "游明朝", YuMincho, serif !important;
}
.txt-gothic {
  font-family: Hiragino Sans, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,
    "メイリオ", Meiryo, sans-serif !important;
}

.en {
  font-family: "EB Garamond", serif !important;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.en.bold40 {
  font-weight: 400 !important;
}
.en.bold60 {
  font-weight: 600 !important;
}

.txt-roboto {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.txt-roboto.bold50 {
  font-weight: 500;
}

.txt-red,
.txt-red a,
.txt-red a:hover {
  color: #e50012 !important;
}
.txt-green,
.txt-green a,
.txt-green a:hover {
  color: #1eac4b !important;
}
.txt-black,
.txt-black a,
.txt-black a:hover {
  color: #000 !important;
}

a.txt-underline,
.txt-underline {
  text-decoration: underline !important;
}
a.txt-underline:hover {
  text-decoration: none !important;
}

.f10 {
  font-size: 10px !important;
}
.f11 {
  font-size: 11px !important;
}
.f12 {
  font-size: 12px !important;
}
.f13 {
  font-size: 13px !important;
}
.f14 {
  font-size: 14px !important;
}
.f15 {
  font-size: 15px !important;
}
.f16 {
  font-size: 16px !important;
}
.f17 {
  font-size: 17px !important;
}
.f18 {
  font-size: 18px !important;
}
.f19 {
  font-size: 19px !important;
}
.f20 {
  font-size: 20px !important;
}
.f21 {
  font-size: 21px !important;
}
.f22 {
  font-size: 22px !important;
}
.f23 {
  font-size: 23px !important;
}
.f24 {
  font-size: 24px !important;
}
.f25 {
  font-size: 25px !important;
}
.f34 {
  font-size: 34px !important;
}
@media only screen and (max-width: 1199px) {
  .f34 {
    font-size: 30px !important;
  }
}
@media only screen and (max-width: 991px) {
  .f18,
  .f19 {
    font-size: 16px !important;
  }
  .f20,
  .f21 {
    font-size: 17px !important;
  }
  .f22,
  .f23 {
    font-size: 18px !important;
  }
  .f24,
  .f25 {
    font-size: 20px !important;
  }
  .f34 {
    font-size: 25px !important;
  }
}
@media only screen and (max-width: 767px) {
  .f13,
  .f14 {
    font-size: 12px !important;
  }
  .f15 {
    font-size: 13px !important;
  }
  .f16,
  .f17,
  .f18 {
    font-size: 14px !important;
  }
  .f19,
  .f20,
  .f21 {
    font-size: 15px !important;
  }
  .f22,
  .f23,
  .f24,
  .f25 {
    font-size: 16px !important;
  }
  .f34 {
    font-size: 20px !important;
  }
  .f15-xs {
    font-size: 15px !important;
  }
  .f14-xs {
    font-size: 14px !important;
  }
  .f13-xs {
    font-size: 13px !important;
  }
  .f12-xs {
    font-size: 12px !important;
  }
}
@media only screen and (max-width: 320px) {
  .f34 {
    font-size: 18px !important;
  }
}

/* 1.4 Titles and Subtitles
 * ------------------------------*/
h1,
h2,
h3,
h4 {
  margin: 0;
}

.sub {
  margin: 0 0 10px;
  color: #1eac4b;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
.sub.center {
  text-align: center;
  margin-bottom: 30px;
}
.sub.en {
  font-size: 45px;
}
.subsub {
  margin: 0 0 30px;
  color: #1eac4b;
  font-size: 23px;
  line-height: 1.8;
}
.sub-line {
  display: block;
  margin: 20px 0 40px;
  width: 100px;
  height: 1px;
  border-top: 1px solid #1eac4b;
}
.sub-line.center {
  margin: 40px auto 70px;
}
@media only screen and (max-width: 1199px) {
  .sub {
    font-size: 30px;
  }
  .subsub {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .sub {
    font-size: 25px;
  }
  .subsub {
    margin-bottom: 15px;
  }
  .sub-line {
    margin: 10px 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .sub {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 1.6;
    text-align: center;
  }
  .sub.center {
    margin-bottom: 15px;
  }
  .sub.en {
    font-size: 32px;
  }
  .subsub {
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
    font-weight: 600;
  }
  .sub-line {
    width: 80px;
    margin: 20px auto 10px !important;
  }
  .sub-line.center {
    margin: 20px auto 30px !important;
  }
}
@media only screen and (max-width: 320px) {
  .sub {
    font-size: 18px;
  }
  .subsub {
    font-size: 14px;
  }
}

/* 1.5 Tables
 * ------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
  border: 1px solid #9fa0a0;
}

table th {
  width: 25%;
  padding: 10px;
  vertical-align: middle;
  font-weight: normal;
  background: #e5e4dd;
  border-bottom: 1px solid #9fa0a0;
  border-right: 1px solid #9fa0a0;
}
table td {
  width: 75%;
  padding: 10px;
  border-bottom: 1px solid #9fa0a0;
  border-right: 1px solid #9fa0a0;
}
@media screen and (max-width: 767px) {
  table th {
    padding: 5px;
  }
  table td {
    padding: 5px;
  }
}

/* 1.6 Breadcrumb
 * ------------------------------*/
#breadcrumb {
  margin: 20px 0;
  font-size: 12px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  #breadcrumb {
    display: none;
  }
}

#breadcrumb ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#breadcrumb ul li {
  display: inline-block;
}
#breadcrumb ul li:after {
  padding: 0 4px;
  content: " / ";
}
#breadcrumb ul li:last-of-type:after {
  content: "";
}
#breadcrumb ul li a {
  color: #000;
  text-decoration: underline;
}
#breadcrumb ul li a:hover {
  text-decoration: none;
}

/* 1.7 Buttons
 * ------------------------------*/
.btn {
  display: block;
  width: 180px;
  height: 54px;
  margin: 30px 0 0;
  border-radius: 0;
  font-size: 24px;
  line-height: 50px;
  padding: 0 0 15px 12px;
  box-sizing: border-box;
  border: none;
  font-family: "EB Garamond", serif !important;
  letter-spacing: 0.05em;
  font-weight: 400;
  border-bottom: 1px solid #1eac4b;
  text-align: left;
  position: relative;
  overflow: hidden;
  color: #1eac4b !important;
  background: #fff;
  z-index: 2;
}
.btn.large {
  width: 320px;
}
.btn.l-large {
  width: 370px;
}
.btn.ja {
  font-family: Hiragino Sans, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,
    "メイリオ", Meiryo, sans-serif !important;
  font-size: 18px;
  line-height: 53px;
}
.btn:hover {
  transition: 0.7s;
  color: #fff !important;
}
.btn::before,
.btn::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}
.btn::after {
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
}
.btn:hover::after {
  top: 0;
  left: 0;
  background: #1eac4b;
}
.btn,
.btn::before,
.btn::after {
  box-sizing: border-box;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn:focus {
  outline: none;
  overflow: hidden;
  text-decoration: none;
}
.btn.btn-center {
  margin-left: auto;
  margin-right: auto;
}
.btn span {
  font-size: 15px;
  display: block;
  position: absolute;
  top: 2px;
  right: 10px;
  margin: 0;
}
.btn.ja span {
  top: -2px;
}
@media only screen and (max-width: 991px) {
  .btn {
    font-size: 20px;
    margin-top: 20px;
  }
  .btn.large,
  .btn.l-large {
    width: auto;
  }
  .btn.ja {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .btn {
    width: 130px;
    height: 44px;
    font-size: 18px;
    margin: 20px auto 0;
    font-weight: 500;
    line-height: 40px;
  }
  .btn.large {
    width: 280px;
    line-height: 43px;
  }
  .btn.l-large {
    width: 320px;
    line-height: 43px;
  }
  .btn.ja {
    font-size: 15px;
    font-weight: 600;
  }
  .btn span {
    top: 1px;
  }
}
@media only screen and (max-width: 480px) {
  .btn.large {
    width: 250px;
  }
  .btn.l-large {
    width: 290px;
  }
  .btn.ja {
    font-size: 14px;
  }
}

.btn-green {
  display: block;
  width: auto;
  margin: 70px auto 0;
  padding: 26px 10px 30px;
  font-weight: 500;
  background: #1eac4b;
  color: #fff !important;
  font-size: 28px;
  text-align: center;
  line-height: 1;
  position: relative;
}
.btn-green:hover {
  color: #fff !important;
  text-decoration: none;
  background: #008e2d;
  transition: 0.7s;
}
.btn-green:focus {
  outline: none;
  overflow: hidden;
  text-decoration: none;
}
.btn-green.btn-fb {
  width: 80%;
  background: #4065b4;
  font-size: 22px;
}
.btn-green.btn-fb:hover {
  background: #224796;
}
.btn-green.btn-fb span {
  display: inline-block;
  margin-right: 5px;
  margin-left: 20px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 27px;
}
.btn-green.btn-fb i {
  display: block;
  position: absolute;
  top: 50%;
  left: 23px;
  transform: translateY(-50%);
  border: 1px solid #fff;
  padding: 7px 12px;
  font-size: 24px;
}
.btn-green.btn-fb.small {
  width: 100%;
  margin: 0;
  padding: 17px 10px;
  font-size: 16px;
}
.btn-green.btn-fb.small span {
  font-size: 20px;
  margin-left: 25px;
}
.btn-green.btn-fb.small i {
  font-size: 20px;
  padding: 5px 10px;
  left: 14px;
}
@media only screen and (max-width: 1199px) {
  .btn-green.btn-fb {
    margin-top: 50px;
  }
  .btn-green.btn-fb.small {
    font-size: 15px;
  }
  .btn-green.btn-fb.small span {
    font-size: 18px;
    margin-left: 40px;
  }
  .btn-green.btn-fb.small i {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .btn-green {
    padding: 20px 10px 24px;
    font-size: 24px;
  }
  .btn-green.btn-fb {
    width: auto;
    font-size: 20px;
  }
  .btn-green.btn-fb span {
    font-size: 24px;
  }
  .btn-green.btn-fb i {
    font-size: 20px;
  }
  .btn-green.btn-fb.small {
    width: 70%;
    margin-top: 30px;
  }
  .btn-green.btn-fb.small span {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-green {
    margin: 30px auto 20px !important;
    padding: 15px 5px;
    font-size: 20px;
  }
  .btn-green.btn-fb {
    width: 80%;
    font-size: 16px;
  }
  .btn-green.btn-fb span {
    font-size: 20px;
  }
  .btn-green.btn-fb i {
    font-size: 16px;
    padding: 5px 8px;
    left: 13px;
  }
  .btn-green.btn-fb.small {
    width: 60%;
    margin-top: 20px;
    font-size: 14px;
    padding: 15px 10px;
  }
  .btn-green.btn-fb.small span {
    font-size: 16px;
    margin-left: 25px;
  }
  .btn-green.btn-fb.small i {
    font-size: 14px;
    padding: 5px 8px;
    left: 12px;
  }
}
@media only screen and (max-width: 320px) {
  .btn-green.btn-fb.small {
    width: 70%;
  }
}

/* 1.8 Lists
 * ------------------------------*/
dl.dl-list {
  width: 100%;
  display: table;
  margin: 0;
  padding: 0;
  border-top: 1px solid #9fa0a0;
  border-bottom: 1px solid #9fa0a0;
}
dl.dl-list + dl.dl-list {
  border-top: none;
}
dl.dl-list dt {
  width: 25%;
  display: table-cell;
  padding: 20px 10px;
  background: #eaebe9;
  font-weight: normal;
  line-height: 2;
  vertical-align: middle;
  text-align: center;
  font-size: 16px;
}
dl.dl-list dd {
  width: 75%;
  display: table-cell;
  padding: 20px 30px;
  line-height: 2;
  vertical-align: middle;
  font-size: 17px;
}
@media screen and (max-width: 1199px) {
  dl.dl-list dt {
    padding: 15px 10px;
  }
  dl.dl-list dd {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 991px) {
  dl.dl-list dt,
  dl.dl-list dd {
    padding: 10px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  dl.dl-list dt,
  dl.dl-list dd {
    display: block;
    width: 100% !important;
    padding: 8px 5px;
    font-size: 14px;
    line-height: 1.8 !important;
  }
  dl.dl-list dt {
    padding: 6px 0;
  }
  dl.dl-list.bdnone-xs {
    border-top: none;
  }
}

ul.disc-list {
  list-style: disc;
  margin: 0 0 30px 25px;
}
@media only screen and (max-width: 767px) {
  ul.disc-list {
    margin-bottom: 20px;
  }
}

ol.ol-list {
  padding: 0;
  margin: 0 0 30px 22px;
  line-height: 1.9;
}
@media only screen and (max-width: 767px) {
  ol.ol-list {
    margin-bottom: 20px;
  }
}

/* 1.9 Forms
 * ------------------------------*/
form {
  margin: 20px 0 0;
  padding: 0;
}
form .hissu {
  display: inline-block;
  height: 16px;
  line-height: 16px;
  margin-left: 10px;
  padding: 0 8px;
  background: #c30;
  color: #fff;
  font-size: 10px;
  vertical-align: 10%;
  border-radius: 10px;
}
form input,
form textarea,
form select {
  background: #fff;
  border: none;
  padding: 2px 10px;
  font-size: 14px;
  color: #000;
  border: 1px solid #9e9e9f;
}
form .formTbox {
  width: 80%;
}
form .formTbox-m {
  width: 60%;
}
form .formTbox-s {
  width: 30%;
}
form .formTarea {
  width: 80%;
  height: 100px;
}
form label {
  font-weight: normal;
}
form input::-webkit-input-placeholder {
  color: #ccc;
  font-weight: normal;
}
form input:-ms-input-placeholder {
  color: #ccc;
  font-weight: normal;
}
form input::-moz-placeholder {
  color: #ccc;
  font-weight: normal;
}
input[type="radio"],
input[type="checkbox"] {
  margin-right: 5px;
}
@media screen and (max-width: 991px) {
  form .formTbox-s {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  form input,
  form textarea,
  form select {
    font-size: 12px;
    padding: 5px 10px;
  }
  form .formTbox {
    width: 98%;
  }
  form .formTbox-sp {
    width: 80%;
  }
  form .formTarea {
    width: 98%;
  }
  form .hissu {
    margin-left: 7px;
    vertical-align: 5%;
  }
}
/*Chrome、Safari*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/*Firefox、IE*/
input[type="number"] {
  -moz-appearance: textfield;
}

/*--------- btn-submit / btn-error --------- */
.btn-submit,
.btn-error {
  min-width: 300px;
  margin: 40px auto 20px;
  padding: 10px 15px 12px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.7s;
  text-align: center;
  border-radius: 0;
  border: 1px solid #000;
}
.btn-submit {
  background: #000;
  color: #fff;
}
.btn-error {
  background: #dddddd;
  color: #000;
}
.btn-submit:hover {
  background: #fff;
  color: #000;
}
.btn-error:hover {
  background: #ccc;
}
@media screen and (max-width: 767px) {
  .btn-submit,
  .btn-error {
    min-width: 0;
    width: 100%;
    margin: 20px auto;
    font-size: 15px;
  }
  .btn-error {
    margin-top: 0;
  }
}

/* 1.10 Other Elements
 * ------------------------------*/
/* 1.10.1 plugins ------------*/
.google-maps {
  margin: 20px auto 0;
}
.google-maps iframe {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .google-maps {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
  }
  .google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget span iframe[style] {
  width: 100% !important;
}
.fb_iframe_widget {
  margin: 20px 0;
}

/* 1.10.2 page top ------------*/
#pagetop {
  position: fixed;
  bottom: 60px;
  right: 0;
  width: 45px;
  height: 91px;
  z-index: 10;
  background: url(../image/footer/pagetop2.png) 0 0 no-repeat;
  background-size: contain;
  text-indent: 100% !important;
  white-space: nowrap;
  overflow: hidden;
}
#pagetop:hover {
  cursor: pointer;
  opacity: 0.85;
}
@media only screen and (max-width: 767px) {
  #pagetop {
    width: 30px;
    height: 61px;
  }
}

/* 1.10.3 scroll icon ------------*/
.s-scroll-cont span {
  display: block;
  position: absolute;
  top: 25px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: scrollFade 3s infinite;
  animation: scrollFade 3s infinite;
  opacity: 0;
  box-sizing: border-box;
}
.s-scroll-cont span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.s-scroll-cont span:nth-of-type(2) {
  top: 32px;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
@media only screen and (max-width: 767px) {
  .s-scroll-cont {
    display: none;
  }
}

/* motion */
@-webkit-keyframes scrollFade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrollFade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
  width: 100%;
  height: 70px;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  -webkit-animation: fadeIn 2s linear both;
  animation: fadeIn 2s linear both;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
@media only screen and (max-width: 991px) {
  header {
    height: 50px;
    position: fixed !important;
    background: #fff;
  }
}

/* 2.1 Main Nav
 * ------------------------------*/
.navbar {
  width: 100%;
  height: 70px;
  margin: 0;
}
.navbar-header {
  margin: 0;
  padding: 0;
}
.logo-header {
  display: block;
  position: absolute;
  top: 11px;
  left: 30px;
  margin: 0;
  padding: 0;
  height: auto;
  z-index: 10010 !important;
}
.logo-header img {
  width: 149px;
  height: 35px;
}
.logo-csr {
  display: block;
  position: absolute;
  top: 11px;
  left: 199px;
  margin: 0;
  padding: 0;
  z-index: 10010 !important;
}
.logo-csr img {
  width: 226px;
  height: 35px;
}
.logo-header:hover,
.logo-csr:hover {
  opacity: 0.7;
  transition: 0.5s;
}
@media only screen and (max-width: 1199px) {
  .logo-header {
    left: 12px;
  }
  .logo-header img {
    width: 115px;
    height: 27px;
  }
  .logo-csr {
    left: 140px;
  }
  .logo-csr img {
    width: 174px;
    height: 27px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar {
    height: 50px;
  }
  .logo-header {
    top: 1px;
  }
  .logo-header img {
    width: 94px;
    height: 22px;
  }
  .logo-csr {
    top: 1px;
    left: 117px;
  }
  .logo-csr img {
    width: 142px;
    height: 22px;
  }
}
@media only screen and (max-width: 320px) {
  .logo-header img {
    width: 81px;
    height: 19px;
  }
  .logo-csr {
    left: 103px;
  }
  .logo-csr img {
    width: 123px;
    height: 19px;
  }
}

/* 2.1.1 main-nav (pc-only) ------------*/
#main-nav {
  position: absolute;
  top: 23px;
  right: 0;
  margin: 0;
  z-index: 10010 !important;
}
@media only screen and (max-width: 1199px) {
  #main-nav {
    top: 24px;
  }
}

#main-nav a {
  text-decoration: none;
  color: #000;
}
#main-nav a:hover span {
  -webkit-animation: letter-glow 0.7s 0s ease both;
  animation: letter-glow 0.7s 0s ease both;
}
#main-nav a:hover span:nth-child(1) {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}
#main-nav a:hover span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
#main-nav a:hover span:nth-child(3) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
#main-nav a:hover span:nth-child(4) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
#main-nav a:hover span:nth-child(5) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
#main-nav a:hover span:nth-child(6) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
#main-nav a:hover span:nth-child(7) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
#main-nav a:hover span:nth-child(8) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
#main-nav a:hover span:nth-child(9) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}
#main-nav a:hover span:nth-child(10) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
#main-nav a:hover span:nth-child(11) {
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
}

#main-nav a:hover {
  color: #000;
  background-color: transparent;
}
#main-nav a:focus {
  background-color: transparent;
  overflow: inherit;
}

#main-nav ul.nav {
  width: 100%;
  height: 25px;
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  margin: 0;
  padding: 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 15px;
}
#main-nav ul.nav li a {
  display: block;
  height: 25px;
  padding: 2px 11px;
  box-sizing: border-box;
}
#main-nav ul.nav li a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 1240px) {
  #main-nav ul.nav li a {
    padding: 2px 8px;
  }
}
@media only screen and (max-width: 1199px) {
  #main-nav ul.nav li a {
    padding: 2px 7px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 991px) {
  #main-nav {
    display: none;
  }
}

/* motion (main-nav) */
@-webkit-keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}

@keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}

/* 2.1.2 main-nav-xs (sp-only) ------------*/
#main-nav-xs {
  display: none;
}
@media only screen and (max-width: 991px) {
  #main-nav-xs {
    display: block;
    background: rgba(30, 172, 75, 0.9);
    position: relative;
    /*z-index: 10000 !important;*/
    z-index: 1000 !important;
  }
  .nav-menu {
    position: fixed;
    display: table;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 172, 75, 0.9);
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
  }
  .side-open .nav-menu {
    /*cursor: url(../image/close.svg),auto;*/
    transition: 0.5s;
    visibility: visible;
    opacity: 1;
  }
  .nav-menu ul {
    display: table-cell;
    vertical-align: middle;
  }
  .nav-menu li {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    position: relative;
  }
  .side-open .nav-menu li {
    opacity: 1;
  }
  .side-open .nav-menu li:nth-child(1) {
    -webkit-transition: opacity 1s ease 0.5s;
    transition: opacity 1s ease 0.5s;
  }
  .side-open .nav-menu li:nth-child(2) {
    -webkit-transition: opacity 1s ease 0.6s;
    transition: opacity 1s ease 0.6s;
  }
  .side-open .nav-menu li:nth-child(3) {
    -webkit-transition: opacity 1s ease 0.7s;
    transition: opacity 1s ease 0.7s;
  }
  .side-open .nav-menu li:nth-child(4) {
    -webkit-transition: opacity 1s ease 0.8s;
    transition: opacity 1s ease 0.8s;
  }
  .side-open .nav-menu li:nth-child(5) {
    -webkit-transition: opacity 1s ease 0.9s;
    transition: opacity 1s ease 0.9s;
  }
  .side-open .nav-menu li:nth-child(6) {
    -webkit-transition: opacity 1s ease 1s;
    transition: opacity 1s ease 1s;
  }
  .nav-menu li a {
    display: block;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 600;
  }
  .nav-menu li a:hover {
    text-decoration: none;
    color: #fff;
  }
  /* --------- menu-btn */
  .menu-btn {
    position: fixed;
    width: 45px;
    height: 28px;
    top: 11px;
    right: 12px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    margin: 0;
  }
  .menu-btn span {
    display: block;
    color: #fff;
    font-family: "Source Sans Pro", sans-serif !important;
    font-weight: 400;
    color: #000;
    font-size: 12px;
    letter-spacing: 0.05em;
    top: 0;
    left: 0;
    margin: 0;
    position: absolute;
    box-sizing: border-box;
    overflow: hidden;
    -webkit-animation: slideTextFade 0.8s ease 0s 1 normal;
    animation: slideTextFade 0.8s ease 0s 1 normal;
  }
  .menu-btn span::after {
    display: block;
    width: 45px;
    height: 28px;
    content: "MENU";
    color: #000;
    padding-top: 3px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-animation: slideTextFade 0.8s ease 0s 1 normal;
    animation: slideTextFade 0.8s ease 0s 1 normal;
  }
  .menu-btn.active span::after {
    display: block;
    width: 45px;
    height: 28px;
    content: "CLOSE";
    color: #fff;
    padding-top: 3px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-animation: slideButtonFade 0.8s ease 0s 1 normal;
    animation: slideButtonFade 0.8s ease 0s 1 normal;
  }
}

/*-------------------------------
 * 3. MAIN VISUAL
 * ----------------------------*/
#main-visual {
  width: 100%;
  height: 600px;
  /*height: 100%;
    height: 100vh;*/
  margin: 70px 0 40px;
  padding: 0;
  position: relative;
  z-index: 0;
  opacity: 0.25;
  -webkit-animation: fadeIn 2s linear both;
  animation: fadeIn 2s linear both;
}
#main-visual img {
  width: 100%;
  height: 100%;
}
.main-slider {
  width: 100%;
  height: 600px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.main-slider .slider-track {
  display: flex;
  width: fit-content;
  height: 100%;
  animation: scroll-horizontal 90s linear infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.main-slider .slider-item {
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.main-slider .slider-item img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@keyframes scroll-horizontal {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(var(--end-position, -50%), 0, 0);
    transform: translate3d(var(--end-position, -50%), 0, 0);
  }
}
@media only screen and (min-width: 1300px) {
  #main-visual,
  .main-slider {
    height: 650px;
  }
}
@media only screen and (min-width: 1400px) {
  #main-visual,
  .main-slider {
    height: 700px;
  }
}
@media only screen and (min-width: 1500px) {
  #main-visual,
  .main-slider {
    height: 800px;
  }
}
@media only screen and (min-width: 1800px) {
  #main-visual,
  .main-slider {
    height: 900px;
  }
}
@media only screen and (max-width: 1199px) {
  #main-visual,
  .main-slider {
    height: 480px;
  }
}
@media only screen and (max-width: 991px) {
  #main-visual {
    height: 370px;
    margin: 50px 0 0;
  }
  .main-slider {
    height: 370px;
  }
}
@media only screen and (max-width: 767px) {
  #main-visual,
  .main-slider {
    height: 280px;
  }
}
@media only screen and (max-width: 480px) {
  #main-visual,
  .main-slider {
    height: 180px;
  }
}
@media only screen and (max-width: 380px) {
  #main-visual,
  .main-slider {
    height: 160px;
  }
}
@media only screen and (max-width: 320px) {
  #main-visual,
  .main-slider {
    height: 140px;
  }
}

#main-visual .logo-main {
  width: 450px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (min-width: 1500px) {
  #main-visual .logo-main {
    width: 650px;
  }
}
@media only screen and (max-width: 1199px) {
  #main-visual .logo-main {
    width: 430px;
  }
}
@media only screen and (max-width: 991px) {
  #main-visual .logo-main {
    width: 350px;
  }
}
@media only screen and (max-width: 767px) {
  #main-visual .logo-main {
    width: 280px;
  }
}
@media only screen and (max-width: 480px) {
  #main-visual .logo-main {
    width: 180px;
  }
}
@media only screen and (max-width: 380px) {
  #main-visual .logo-main {
    width: 170px;
  }
}
@media only screen and (max-width: 320px) {
  #main-visual .logo-main {
    width: 160px;
  }
}

#main-visual .txt-credit {
  position: absolute;
  bottom: -40px;
  right: 15px;
  font-size: 11px;
}
@media only screen and (max-width: 767px) {
  #main-visual .txt-credit {
    font-size: 8px;
    bottom: -30px;
  }
}

/*---------- scroll ----------*/
.s-scroll-cont {
  width: 100%;
  height: 20px;
  position: absolute;
  margin: 0;
  bottom: 40px;
  text-align: center;
  -webkit-animation: slideTextFade 2s ease 0s 1 normal;
  animation: slideTextFade 2s ease 0s 1 normal;
}
.s-scroll-cont img {
  width: 77px !important;
  height: 13px !important;
}
@media only screen and (max-width: 767px) {
  .s-scroll-cont {
    display: none;
  }
}

/*-------------------------------
 * 4. CONTENT
 * ----------------------------*/
/* 4.1 Slider
 * ------------------------------*/
/* slick用のスタイルは削除し、CSSアニメーションで実装 */

.slide-arrow.prev-arrow,
.slide-arrow.next-arrow {
  width: 14px;
  height: auto;
  position: absolute;
  top: 40%;
  cursor: pointer;
  z-index: 10010;
}
.slide-arrow.prev-arrow {
  left: 20px;
}
.slide-arrow.next-arrow {
  right: 20px;
}
@media only screen and (max-width: 767px) {
  .slide-arrow.prev-arrow,
  .slide-arrow.next-arrow {
    display: none !important;
  }
}

.slick-prev:before,
.slick-next:before {
  color: #000 !important;
}

.slick-dots {
  bottom: -45px;
}
.slick-dots li button:before {
  font-size: 12px;
}
.slick-dots li.slick-active button:before,
.slick-dots li button:hover:before {
  color: #30b5a9;
}
@media only screen and (max-width: 767px) {
  .slick-dots li button:before {
    font-size: 6px;
  }
}

/* 4.2 Block Img Wrap
 * ------------------------------*/
.block-img-wrap .block-cont {
  width: 100%;
  margin: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.block-img-wrap .block-cont .left,
.block-img-wrap .block-cont .right {
  width: 50%;
  /*height: 100vh;*/
  height: 700px;
  background-size: cover !important;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .block-img-wrap .block-cont .left,
  .block-img-wrap .block-cont .right {
    height: 600px;
  }
}
@media only screen and (max-width: 991px) {
  .block-img-wrap .block-cont .left,
  .block-img-wrap .block-cont .right {
    height: 550px;
  }
}
@media only screen and (max-width: 767px) {
  .block-img-wrap .block-cont {
    justify-content: center;
    margin-bottom: 50px;
  }
  .block-img-wrap .block-cont .left,
  .block-img-wrap .block-cont .right {
    width: 100%;
    height: auto !important;
  }
  .block-img-wrap .block-cont .img-bg {
    height: 600px !important;
    margin-top: 20px;
    margin-bottom: 5px;
  }
  .block-img-wrap .block-cont .order1 {
    order: 1;
  }
  .block-img-wrap .block-cont .order2 {
    order: 2;
  }
}
@media only screen and (max-width: 480px) {
  .block-img-wrap .block-cont .img-bg {
    height: 450px !important;
  }
}
@media only screen and (max-width: 380px) {
  .block-img-wrap .block-cont .img-bg {
    height: 400px !important;
  }
}
@media only screen and (max-width: 320px) {
  .block-img-wrap .block-cont .img-bg {
    height: 350px !important;
  }
}

.block-img-wrap .block-cont .inner {
  width: 540px;
  margin: 0 auto;
  padding: 90px 30px;
  z-index: 10;
  position: relative;
  box-sizing: border-box;
}
.block-img-wrap .block-cont .sub-line {
  margin-top: 30px;
}
@media only screen and (max-width: 1199px) {
  .block-img-wrap .block-cont .inner {
    width: 440px;
    padding: 50px 20px;
  }
}
@media only screen and (max-width: 991px) {
  .block-img-wrap .block-cont .inner {
    width: 350px;
    padding: 30px 20px;
  }
  .block-img-wrap .block-cont .inner .f17 {
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 767px) {
  .block-img-wrap .block-cont .inner {
    width: 100% !important;
    padding: 15px !important;
  }
  .block-img-wrap .block-cont .inner .f17 {
    font-size: 14px !important;
  }
}

.block-img-wrap .block-cont .omiya {
  background: url(../image/img-omiya.jpg?20201126) center center no-repeat;
}
.block-img-wrap .block-cont .tennis01 {
  background: url(../image/img-tennis01.jpg) top center no-repeat;
}
.block-img-wrap .block-cont .tennis02 {
  background: url(../image/img-tennis02.jpg) center center no-repeat;
}
.block-img-wrap .block-cont .tennis03 {
  background: url(../image/img-tennis03.jpg?=200428) center center no-repeat;
}

/*---------- world-program ----------*/
.world-program-wrap.block-img-wrap {
  margin-bottom: 120px;
}
.world-program-wrap.block-img-wrap .block-cont .world-program {
  background: url(../../world-program/image/img.jpg) center center no-repeat;
}
.world-program-wrap.block-img-wrap .block-cont .left,
.world-program-wrap.block-img-wrap .block-cont .right {
  height: 600px;
}
.world-program-wrap.block-img-wrap .block-cont .inner {
  width: 580px;
  padding: 0 30px 20px;
}
.world-program-wrap.block-img-wrap .block-cont .inner .sub {
  margin-bottom: 40px;
  font-size: 33px;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 1199px) {
  .world-program-wrap.block-img-wrap .block-cont .left,
  .world-program-wrap.block-img-wrap .block-cont .right {
    height: 700px;
  }
  .world-program-wrap.block-img-wrap .block-cont .inner {
    width: 460px;
    padding: 0 20px 20px;
  }
  .world-program-wrap.block-img-wrap .block-cont .inner .sub {
    font-size: 27px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 991px) {
  .world-program-wrap.block-img-wrap .block-cont .left,
  .world-program-wrap.block-img-wrap .block-cont .right {
    height: 650px;
  }
  .world-program-wrap.block-img-wrap .block-cont .inner {
    width: 360px;
  }
  .world-program-wrap.block-img-wrap .block-cont .inner .sub {
    margin-bottom: 30px;
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .world-program-wrap.block-img-wrap {
    margin-bottom: 40px;
  }
  .world-program-wrap.block-img-wrap .sub-line {
    margin-bottom: 15px !important;
  }
  .world-program-wrap.block-img-wrap .block-cont .inner .sub {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 320px) {
  .world-program-wrap.block-img-wrap .block-cont .inner .sub {
    font-size: 18px;
  }
}

/* 4.3 Catch
 * ------------------------------*/
#catch-wrap .col-xs-12:nth-of-type(1) {
  width: 49%;
  padding-right: 0;
}
#catch-wrap .col-xs-12:nth-of-type(2) {
  width: 51%;
  padding-left: 0;
  padding-right: 0;
}
#catch-wrap .sub {
  margin: -15px 0 0;
  font-family: "EB Garamond", serif !important;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 68px;
  line-height: 1.15;
}
#catch-wrap .txt {
  font-size: 21px;
  line-height: 2;
}
@media only screen and (max-width: 1199px) {
  #catch-wrap .sub {
    margin-top: 0;
    font-size: 58px;
  }
  #catch-wrap .txt {
    font-size: 19px;
  }
}
@media only screen and (max-width: 991px) {
  #catch-wrap .sub {
    font-size: 46px;
    line-height: 1.4;
  }
  #catch-wrap .txt {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  #catch-wrap {
    margin-top: 35px;
  }
  #catch-wrap .col-xs-12 {
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  #catch-wrap .sub {
    font-size: 34px;
    margin-bottom: 25px;
    line-height: 1.25;
    text-align: center;
  }
  #catch-wrap .txt {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 380px) {
  #catch-wrap .txt {
    font-size: 15px;
  }
}

/*4.4 Player List
 *------------------------------*/
.player-list {
  margin: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.player-list li {
  text-align: center;
  width: 33.333%;
  margin: 0;
  padding-left: 13px;
  padding-right: 13px;
}
.player-list li:nth-child(1),
.player-list li:nth-child(3n + 1) {
  padding-left: 0;
  padding-right: 26px;
}
.player-list li:nth-child(3n) {
  padding-left: 26px;
  padding-right: 0;
}
@media screen and (max-width: 991px) {
  .player-list li {
    padding-left: 8px;
    padding-right: 8px;
  }
  .player-list li:nth-child(1),
  .player-list li:nth-child(3n + 1) {
    padding-right: 16px;
  }
  .player-list li:nth-child(3n) {
    padding-left: 16px;
  }
}
@media screen and (max-width: 767px) {
  .player-list {
    margin-top: 30px;
  }
  .player-list li {
    margin-bottom: 30px;
    width: 50%;
  }
  .player-list li:nth-of-type(odd) {
    padding-left: 0 !important;
    padding-right: 7px !important;
  }
  .player-list li:nth-of-type(even) {
    padding-left: 7px !important;
    padding-right: 0 !important;
  }
}

.player-list .txt {
  margin: 20px 0 15px;
  font-size: 18px;
}
.player-list .txt span {
  display: inline-block;
  /*color: #747374;*/
  font-size: 14px;
  margin-right: 10px;
}
.player-list .btn {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .player-list .txt {
    margin-top: 10px;
    font-size: 14px;
  }
  .player-list .txt span {
    font-size: 11px;
    margin-right: 5px;
  }
}
@media screen and (max-width: 480px) {
  .player-list .btn {
    width: 120px;
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  .player-list .txt {
    font-size: 13px;
  }
  .player-list .txt span {
    font-size: 10px;
  }
}

/*---------- Player page ----------*/
.player-wrap .col-xs-12:nth-of-type(odd) {
  padding-right: 22px;
}
.player-wrap .col-xs-12:nth-of-type(even) {
  padding-left: 22px;
}
.player-wrap .sub-profile {
  margin: 0 0 25px;
  color: #1eac4b;
  font-size: 45px;
  line-height: 1.5;
  font-family: "EB Garamond", serif !important;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .player-wrap .sub-profile {
    margin: -10px 0 15px;
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .player-wrap .col-xs-12 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .player-wrap .sub-profile {
    margin: 35px 0 10px;
    font-size: 32px;
  }
}

.player-wrap.history dl.dl-list dt {
  font-size: 14px;
}
.player-wrap.history dl.dl-list dd {
  font-size: 15px;
  padding: 20px 0 20px 20px;
}
.player-wrap.history dl.dl-list .day {
  /*font-family: 'EB Garamond', serif !important;
    letter-spacing: 0.05em;
    font-weight: 500;*/
  font-size: 14px;
  text-align: center;
  color: #747374;
}
@media screen and (max-width: 1199px) {
  .player-wrap.history dl.dl-list dt {
    font-size: 13px;
  }
  .player-wrap.history dl.dl-list dd {
    padding: 15px 0 15px 15px;
  }
  .player-wrap.history dl.dl-list .day {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .player-wrap.history dl.dl-list dd {
    padding: 10px 0 10px 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .player-wrap.history dl.dl-list dt,
  .player-wrap.history dl.dl-list dd {
    font-size: 13px;
  }
  .player-wrap.history dl.dl-list dd {
    padding: 8px 5px;
  }
  .player-wrap.history dl.dl-list .day {
    padding-top: 6px;
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .player-wrap.history dl.dl-list dt,
  .player-wrap.history dl.dl-list dd,
  .player-wrap.history dl.dl-list .day {
    font-size: 12px;
  }
  .player-wrap.history dl.dl-list dd {
    padding: 8px 0;
  }
}

/*---------- Player page (Lightgallery) ----------*/
.gallery-list {
  margin: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.gallery-list a {
  display: block;
  width: 33.333%;
  margin: 0 0 30px;
  padding-left: 13px;
  padding-right: 13px;
}
.gallery-list a:nth-child(1),
.gallery-list a:nth-child(3n + 1) {
  padding-left: 0;
  padding-right: 26px;
}
.gallery-list a:nth-child(3n) {
  padding-left: 26px;
  padding-right: 0;
}
.gallery-list a:hover {
  opacity: 0.75;
  transition: 0.7s;
}
@media screen and (max-width: 991px) {
  .gallery-list a {
    padding-left: 8px;
    padding-right: 8px;
  }
  .gallery-list a:nth-child(1),
  .gallery-list a:nth-child(3n + 1) {
    padding-right: 16px;
  }
  .gallery-list a:nth-child(3n) {
    padding-left: 16px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-list a {
    width: 50%;
    margin-bottom: 10px;
  }
  .gallery-list a:nth-of-type(odd) {
    padding-left: 0 !important;
    padding-right: 5px !important;
  }
  .gallery-list a:nth-of-type(even) {
    padding-left: 5px !important;
    padding-right: 0 !important;
  }
}

/*4.5 Other
 *------------------------------*/
#other-wrap .row {
  margin-bottom: 80px;
}
#other-wrap .row .col-xs-12:nth-of-type(1) {
  padding-right: 30px;
}
#other-wrap .row .col-xs-12:nth-of-type(2) {
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  #other-wrap .row {
    margin-bottom: 0;
  }
  #other-wrap .row .col-xs-12 {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-bottom: 40px;
  }
  #other-wrap .sub-line {
    margin-bottom: 25px !important;
  }
  #other-wrap .img {
    margin: 5px auto 15px;
  }
  #other-wrap .btn {
    margin-bottom: 20px;
  }
}

/* 4.6 Cate Main
 * ------------------------------*/
#cate-main {
  width: 100%;
  height: 300px;
  position: relative;
  margin: 70px 0 0;
  padding: 0;
  z-index: 0;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  opacity: 0.25;
  -webkit-animation: fadeIn 2s linear both;
  animation: fadeIn 2s linear both;
}
#cate-main.sponsor {
  background-image: url(../../sponsor/image/main.png);
}
@media only screen and (min-width: 1400px) {
  #cate-main {
    height: 350px;
  }
}
@media only screen and (min-width: 1800px) {
  #cate-main {
    height: 450px;
  }
}
@media only screen and (max-width: 1199px) {
  #cate-main {
    height: 250px;
  }
}
@media only screen and (max-width: 991px) {
  #cate-main {
    height: 200px;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #cate-main {
    height: 150px;
  }
}
@media only screen and (max-width: 480px) {
  #cate-main {
    height: 100px;
  }
}
@media only screen and (max-width: 380px) {
  #cate-main {
    height: 80px;
  }
}

#cate-main .cate-ttl {
  width: 100%;
  height: 60px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  text-align: center;
  color: #fff;
  font-size: 37px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
@media only screen and (max-width: 1199px) {
  #cate-main .cate-ttl {
    font-size: 30px;
  }
}
@media only screen and (max-width: 991px) {
  #cate-main .cate-ttl {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  #cate-main .cate-ttl {
    font-size: 20px;
    top: 25px;
  }
}

#cate-main .cate-ttl span:nth-child(1) {
  -webkit-animation: slideTextFade 2s ease 0s 1 normal;
  animation: slideTextFade 2s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(2) {
  -webkit-animation: slideTextFade 2.1s ease 0s 1 normal;
  animation: slideTextFade 2.1s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(3) {
  -webkit-animation: slideTextFade 2.2s ease 0s 1 normal;
  animation: slideTextFade 2.2s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(4) {
  -webkit-animation: slideTextFade 2.3s ease 0s 1 normal;
  animation: slideTextFade 2.3s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(5) {
  -webkit-animation: slideTextFade 2.4s ease 0s 1 normal;
  animation: slideTextFade 2.4s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(6) {
  -webkit-animation: slideTextFade 2.5s ease 0s 1 normal;
  animation: slideTextFade 2.5s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(7) {
  -webkit-animation: slideTextFade 2.6s ease 0s 1 normal;
  animation: slideTextFade 2.6s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(8) {
  -webkit-animation: slideTextFade 2.7s ease 0s 1 normal;
  animation: slideTextFade 2.7s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(9) {
  -webkit-animation: slideTextFade 2.8s ease 0s 1 normal;
  animation: slideTextFade 2.8s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(10) {
  -webkit-animation: slideTextFade 2.9s ease 0s 1 normal;
  animation: slideTextFade 2.9s ease 0s 1 normal;
}

/* 4.7 Mobilyselect (sponsor list)
 * ------------------------------*/
.selecterBtns {
  margin: 0 0 80px;
}
.selecterContent {
  margin: 0;
  min-height: 350px;
}
@media only screen and (max-width: 767px) {
  .selecterBtns {
    margin-bottom: 40px;
  }
}

ul.selecter-menu {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  border: 2px solid #7f7f7f;
  margin: 0 auto;
}
ul.selecter-menu li {
  width: 25%;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 14px;
  border-right: 1px solid #7f7f7f;
}
ul.selecter-menu li:last-of-type {
  border-right: none;
}
ul.selecter-menu li a {
  display: block;
  padding: 8px 5px;
  color: #000;
}
ul.selecter-menu li a {
  background: #fff;
}
ul.selecter-menu li a:hover {
  text-decoration: none;
  transition: 0.7s;
}
ul.selecter-menu li a:hover,
ul.selecter-menu li a.active {
  background: #cdcece;
}
@media only screen and (max-width: 767px) {
  ul.selecter-menu {
    border-width: 1px;
    border-bottom: none;
  }
  ul.selecter-menu li {
    width: 50%;
    font-size: 13px;
    border-bottom: 1px solid #7f7f7f;
  }
  ul.selecter-menu li:nth-of-type(even) {
    border-right: none;
  }
  ul.selecter-menu li a {
    padding: 7px 5px 5px;
  }
}

ul.selecter-list {
  border-top: 2px solid #ccc;
}
ul.selecter-list li {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding: 30px 0;
  border-bottom: 2px solid #ccc;
  line-height: 1.8;
}
ul.selecter-list li a {
  display: block;
  color: #000;
}
ul.selecter-list li .icon {
  width: 20%;
  line-height: 1;
}
ul.selecter-list li .icon span {
  display: block;
  width: auto;
  height: 38px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  box-sizing: border-box;
  padding-top: 12px;
}
ul.selecter-list li.omiya .icon span {
  background: #eb6100;
}
ul.selecter-list li.tennis .icon span {
  background: #81cde4;
}
ul.selecter-list li.golf .icon span {
  background: #9ac23d;
}
ul.selecter-list li .day {
  width: 20%;
  font-family: "EB Garamond", serif !important;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  line-height: 1.7;
  color: #747374;
}
ul.selecter-list li .txt {
  width: 60%;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  ul.selecter-list {
    border-width: 1px;
  }
  ul.selecter-list li {
    padding: 15px 0 12px !important;
    border-width: 1px;
    flex-flow: row wrap;
  }
  ul.selecter-list li .icon {
    width: 130px;
  }
  ul.selecter-list li .icon span {
    height: 30px;
    padding-top: 9px;
  }
  ul.selecter-list li .day {
    width: auto;
    padding-left: 20px;
    font-size: 15px;
  }
  ul.selecter-list li .txt {
    width: 100%;
    display: block !important;
    line-height: 1.8;
    margin-top: 10px;
  }
}

/* 4.8 Womens cup
 * ------------------------------*/
#womens-cup-wrap .col-xs-12:nth-of-type(2) {
  padding-left: 70px;
}
@media only screen and (min-width: 1300px) {
  #womens-cup-wrap .col-xs-12:nth-of-type(2) {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  #womens-cup-wrap .col-xs-12:nth-of-type(2) {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 991px) {
  #womens-cup-wrap .col-xs-12:nth-of-type(2) {
    padding-left: 40px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #womens-cup-wrap {
    margin-bottom: 70px;
  }
  #womens-cup-wrap .col-xs-12:nth-of-type(2) {
    padding-left: 15px;
    padding-right: 15px;
  }
  #womens-cup-wrap .sub-line {
    margin-bottom: 25px !important;
  }
}

/* 4.9 Media
 * ------------------------------*/
ul.media-list {
  border-top: 2px solid #ccc;
}
ul.media-list li {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding: 15px 0;
  border-bottom: 2px solid #ccc;
  line-height: 1.8;
}
ul.media-list li a {
  display: block;
  color: #000;
}
ul.media-list li .day {
  display: block;
  width: 12%;
  font-family: "EB Garamond", serif !important;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  line-height: 1.35;
  color: #747374;
}
ul.media-list li .txt {
  width: 88%;
  line-height: 1.8;
}
@media only screen and (max-width: 991px) {
  ul.media-list li .day {
    width: 18%;
  }
  ul.media-list li .txt {
    width: 82%;
  }
}
@media only screen and (max-width: 767px) {
  #media-wrap {
    margin-bottom: 70px;
  }
  #media-wrap .sub-line {
    margin-bottom: 25px !important;
  }
  ul.media-list {
    border-width: 1px;
  }
  ul.media-list li {
    padding: 12px 0 10px !important;
    border-width: 1px;
    flex-flow: row wrap;
  }
  ul.media-list li .day {
    font-size: 15px;
  }
}
@media only screen and (max-width: 480px) {
  ul.media-list li .day {
    width: 30%;
  }
  ul.media-list li .txt {
    width: 70%;
  }
}
@media only screen and (max-width: 320px) {
  ul.media-list li .day {
    font-size: 14px;
  }
}

/*-------------------------------
 * 5. FOOTER
 * ----------------------------*/
#footerBg {
  clear: both;
  width: 100%;
  margin: 30px 0 0;
  padding: 0;
  background: #fff url(../image/footer/bg.png) 0 0 repeat-x;
}
@media screen and (max-width: 767px) {
  #footerBg {
    margin: 0;
    padding: 15px 10px;
    width: 100%;
    background: none;
    background: #e4e3dc;
  }
}

footer {
  width: 1000px;
  height: auto;
  margin: 0 auto;
  padding: 0 0 50px;
  position: relative;
  color: #21a539;
}
footer a,
footer a:link,
footer a:visited {
  color: #21a539;
  text-decoration: underline;
}
footer a:hover,
footer a:active {
  color: #21a539;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 0;
    width: auto;
    text-align: center;
  }
  footer a,
  footer a:link,
  footer a:visited {
    color: #373737;
    text-decoration: none;
  }
  footer a:hover,
  footer a:active {
    color: #373737;
  }
}

footer address {
  margin: 0;
  padding: 10px 0;
  font-style: normal;
  font-size: 11px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  footer address {
    display: none;
  }
}

footer .pict {
  margin: 0;
  position: absolute;
  bottom: -50px;
  right: -60px;
}
@media screen and (max-width: 767px) {
  footer .pict {
    display: none;
  }
}

footer .logo {
  width: 131px;
  height: 25px;
  margin: 0;
  background: url(../image/footer/logo.png) 0 0 no-repeat;
  text-indent: -9999px;
  top: 0;
}
footer .logo a {
  width: 131px;
  height: 25px;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  footer .logo {
    display: none;
  }
}

/* Social
---------------------- */
nav#social {
  padding-top: 7px;
  height: 60px;
}
nav#social ul {
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 15px;
  list-style: none;
}
nav#social ul:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
}
nav#social ul li {
  float: left;
  display: block;
  vertical-align: middle;
}
nav#social #hatena {
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  nav#social {
    display: none;
  }
}

/* Footer Menu
---------------------- */
footer #fMenu-wrap {
  width: 100%;
  display: table;
  table-layout: fixed;
  font-size: 13px;
}
footer #fMenu-wrap .col {
  display: table-cell;
  border-left: 1px dotted #21a539;
}
footer #fMenu-wrap .col:last-of-type {
  border-left: none;
}
footer #fMenu-wrap .col ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  footer #fMenu-wrap {
    display: none;
  }
}

/* Info Box
---------------------- */
footer .infoBox {
  width: auto;
  margin: 0;
  position: relative;
  top: 0;
  right: 0;
}
footer .infoBox .btn {
  width: 250px;
  height: 50px;
  margin: 0;
  padding: 0;
  text-indent: 100% !important;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  border: none;
}
footer .infoBox .btn a {
  width: 250px;
  height: 50px;
  display: block;
  overflow: hidden;
  background: url(../image/footer/btnContact02.png) no-repeat 0 0;
}
footer .infoBox .btn:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  footer .infoBox {
    display: none;
  }
}

/* Copyright
---------------------- */
#copy {
  clear: both;
  height: 55px;
  margin: 0;
  background: #21a539 url(../image/footer/copyBg.png) 0 0 repeat-x;
}
#copy p {
  width: 1000px;
  margin: 0 auto;
  padding-top: 17px;
  color: #fff;
  font-size: 11px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #copy {
    margin: 0;
    height: auto;
    background: none;
  }
  #copy p {
    padding: 0;
    width: auto;
    color: #373737;
    font-size: 10px;
  }
}

/*-------------------------------
 * 6. INTERACTIONS
 * ----------------------------*/
.opacity:hover {
  opacity: 0.75;
  transition: 0.7s;
}

/* motion */
@-webkit-keyframes slideTextFade {
  0%,
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideTextFade {
  0%,
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slideButtonFade {
  0%,
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideButtonFade {
  0%,
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
  }
}

@-webkit-keyframes fadeOut-0 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut-0 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.fadeInUp {
  /*-webkit-animation: fadeInUp .8s ease 1s 1 normal;
    animation: fadeInUp .8s ease 1s 1 normal;*/
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*-------------------------------
 * 7. 210928 TOPレイアウト変更
 * ----------------------------*/
/*----- main visual -----*/
#main-visual .txt-credit {
  left: 15px !important;
}

/*----- catch -----*/
#catch-wrap .txt {
  font-size: 16px;
  line-height: 2.2;
}
@media only screen and (max-width: 1199px) {
  #catch-wrap .txt {
    line-height: 2;
  }
}
@media only screen and (max-width: 767px) {
  #catch-wrap .txt {
    font-size: 14px;
    line-height: 1.8;
  }
}

/*----- sub -----*/
.sub-bg {
  font-size: 26px;
  background: #f4faf7;
  padding: 35px 10px 35px 70px;
  line-height: 1;
  margin: 0 0 60px;
  font-weight: 600;
  color: #1eac4b;
  letter-spacing: 0.05em;
  position: relative;
}
.sub-bg span {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 8px;
  background: #1eac4b;
}
.sub.line {
  font-size: 25px;
  border-bottom: 1px solid #1eac4b;
  padding-bottom: 20px;
  margin: 0 0 40px;
}
.sub.small {
  font-size: 22px;
}
.sub.small span {
  display: inline-block;
  background: #f4faf7;
  line-height: 1;
  padding: 8px 10px;
  margin-left: 10px;
  font-size: 13px;
  letter-spacing: 0;
  vertical-align: 20%;
}
.subsub.small {
  font-size: 18px;
}
@media screen and (max-width: 1199px) {
  .sub.small {
    font-size: 20px;
  }
  .sub.small span {
    font-size: 11px;
  }
  .subsub.small {
    font-size: 17px;
  }
}
@media screen and (max-width: 991px) {
  .sub-bg {
    font-size: 22px;
    padding: 25px 10px 25px 60px;
  }
  .sub-bg span {
    width: 30px;
    height: 6px;
  }
  .sub.line {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sub-bg {
    font-size: 16px;
    padding: 15px 10px 15px 30px;
    letter-spacing: 0;
    margin-bottom: 30px;
  }
  .sub-bg span {
    width: 20px;
    height: 5px;
  }
  .sub.line {
    font-size: 15px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .sub.small {
    margin-top: 20px;
    font-size: 15px;
  }
  .sub.small span {
    font-size: 11px;
    padding: 5px;
    vertical-align: 10%;
  }
  .sub-line + p {
    margin-top: 20px;
  }
  .subsub.small {
    margin-top: 20px;
    font-size: 15px;
  }
}

/*----- link menu -----*/
#link-menu ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #1eac4b;
}
#link-menu ul li {
  font-size: 18px;
  text-align: center;
  font-weight: 300;
}
#link-menu ul li span {
  font-weight: 600;
}
#link-menu ul li a {
  color: #000;
  padding: 0 10px;
}
#link-menu ul li a:hover {
  color: #1eac4b;
  text-decoration: none;
}
#link-menu ul li:after {
  content: "|";
}
#link-menu ul li:first-of-type:before a:hover,
#link-menu ul li:after a:hover {
  color: #000;
}
#link-menu ul li.ttl {
  color: #1eac4b;
}
#link-menu ul li.ttl:after {
  color: #000;
  padding-left: 30px;
}
@media only screen and (max-width: 991px) {
  #link-menu ul li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  #link-menu ul li {
    font-size: 14px;
  }
  #link-menu ul li.ttl:after {
  }
}
@media only screen and (max-width: 480px) {
  #link-menu ul li {
    font-size: 15px;
  }
  #link-menu ul li:nth-of-type(4):before {
    content: "|";
  }
}
@media only screen and (max-width: 380px) {
  #link-menu ul li {
    font-size: 14px;
  }
}
@media only screen and (max-width: 360px) {
  #link-menu ul li:nth-of-type(3):before {
    content: "|";
  }
  #link-menu ul li:nth-of-type(4):before {
    content: "";
  }
}
@media only screen and (max-width: 320px) {
  #link-menu ul li:nth-of-type(5):before {
    content: "|";
  }
}

/*----- news -----*/
#news-wrap {
  margin-top: 60px;
}
#news-wrap ul.selecter-list li .day {
  width: 15%;
}
#news-wrap ul.selecter-list li .txt {
  width: 65%;
}
#news-wrap .btn {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 991px) {
  #news-wrap ul.selecter-list li .day {
    width: 18%;
  }
  #news-wrap ul.selecter-list li .txt {
    width: 62%;
  }
}
@media only screen and (max-width: 767px) {
  #news-wrap {
    margin-top: 30px;
  }
  #news-wrap ul.selecter-list li .day {
    width: auto;
  }
  #news-wrap ul.selecter-list li .txt {
    width: 100%;
  }
}

/*----- flex box -----*/
.flex-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  margin: 60px 0;
}
.flex-box:last-of-type {
  margin-top: 40px;
  margin-bottom: 0;
}
.flex-box .box {
  width: 47.5%;
}
@media only screen and (max-width: 991px) {
  .flex-box.wide .box {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .flex-box {
    margin: 30px 0 0 !important;
  }
  .flex-box .box {
    width: 100%;
  }
  .flex-box .order1 {
    order: 1;
  }
  .flex-box .order2 {
    order: 2;
  }
}

/*----- player list -----*/
.player-list {
  column-gap: 23px;
  margin-top: 40px;
}
.player-list li {
  width: 23.4%;
  margin: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.player-list li a {
  color: #000;
}
.player-list li a:hover {
  text-decoration: none;
  color: #777777;
}
.player-list .txt {
  margin: 20px 0 15px;
  text-align: left;
  position: relative;
}
.player-list .txt span {
  display: block;
  font-size: 13px;
}
.player-list .txt .txt-credit {
  position: absolute;
  top: -18px;
  right: -10px;
  font-size: 8px;
}
@media screen and (max-width: 1199px) {
  .player-list {
    column-gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .player-list {
    column-gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .player-list {
    margin-top: 20px;
    column-gap: 0;
  }
  .player-list li {
    margin-bottom: 10px;
    width: 50%;
  }
  .player-list li:nth-of-type(odd) {
    padding-left: 0 !important;
    padding-right: 7px !important;
  }
  .player-list li:nth-of-type(even) {
    padding-left: 7px !important;
    padding-right: 0 !important;
  }
  .player-list .txt {
    margin: 10px 0;
  }
  .player-list .txt span {
    font-size: 11px;
  }
  .player-list .txt .txt-credit {
    position: relative;
    top: -5px;
    left: 0;
    text-align: center;
  }
}

a:hover .imagearea-content > img {
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.imagearea {
  width: 100%;
  height: 200px;
  position: relative;
  display: block;
  overflow: hidden;
}
.imagearea:before {
  content: "";
  display: block;
  padding-top: 66.667%;
}
@media screen and (max-width: 991px) {
  .imagearea {
    height: 140px;
  }
}
@media screen and (max-width: 767px) {
  .imagearea {
    height: 200px;
  }
}
@media screen and (max-width: 575px) {
  .imagearea {
    height: 150px;
  }
}

.imagearea-content {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: flex-start;
}

.imagearea-content > img {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 600ms cubic-bezier(0.39, 0.575, 0.565, 1);
  overflow: hidden !important;
}

.imagearea-content .txt-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 600ms cubic-bezier(0.39, 0.575, 0.565, 1);
  color: #fff;
}
a .imagearea-content.txt-none .txt-overlay {
  opacity: 0;
}
a:hover .imagearea-content.txt-none .txt-overlay {
  opacity: 1;
}
.imagearea-content .txt-overlay {
  color: #fff;
  text-align: center;
}
.imagearea-content .txt-overlay .more {
  margin: 0;
  display: block;
  font-size: 16px;
  font-family: "EB Garamond", serif !important;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.imagearea-content span {
  display: block;
  width: 100%;
}
.imagearea-content span i {
  display: inline-block;
  margin-left: 10px;
  vertical-align: -10%;
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .imagearea-content .txt-overlay .more {
    font-size: 12px;
  }
}

/*----- other -----*/
@media only screen and (max-width: 767px) {
  #other-wrap .row .col-xs-12 {
    margin-bottom: 20px;
  }
}

/* 20220126追加 */
.btn.xl-large {
  width: 100%;
  /* font-size: 17px; */
}
@media screen and (max-width: 415px) {
  .btn.xl-large {
    font-size: 13px;
  }
}
@media screen and (max-width: 375px) {
  .btn.xl-large {
    padding-left: 0;
    font-size: 11px;
  }
}

/* クッキーアラート
======================================================= */

.cookie {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  font-family: Helvetica, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo,
    sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.8;
  background: #22ab37;
}

.cookie p {
  line-height: 1.8;
}

.cookie .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1152px;
  margin: 0 auto;
  padding: 32px 16px;
  box-sizing: content-box;
}

.cookie .inner .txt {
  width: calc(100% - 160px);
  margin: 0;
}

.cookie a {
  color: #fff;
  text-decoration: underline;
}

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

.cookie .cookie_ok {
  width: 106px;
  height: 38px;
  padding: 8px 20px;
  box-sizing: border-box;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #181818;
  line-height: 1;
  border: none;
  background: #fff;
  appearance: none;
}

.overimg {
  transition: opacity 0.2s;
}

.overimg:hover {
  opacity: 0.6;
  transition: opacity 0.2s;
}

@media screen and (max-width: 640px) {
  .cookie {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    font-size: 1.2rem;
    color: #fff;
    background: #22ab37;
  }

  .cookie .inner {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 16px 0;
    text-align: right;
  }

  .cookie .inner .txt {
    width: auto;
    margin: 0 0 8px;
    text-align: left;
  }

  .cookie a {
    color: #fff;
  }

  .cookie .cookie_ok {
    width: 60px;
    height: 28px;
    padding: 8px 20px;
    box-sizing: border-box;
    font-size: 1.3rem;
    font-weight: bold;
    color: #181818;
    line-height: 1.2;
    border: none;
    background: #fff;
    appearance: none;
  }

  .overimg:hover {
    opacity: 1;
  }
}

.btn.btn-slim {
  width: 280px;
  height: 48px;
  font-size: 18px;
}
.btn.btn-slim span {
  top: -2px;
}
@media (max-width: 767px) {
  .btn.btn-slim {
    width: 280px;
    height: 44px;
    padding-bottom: 8px;
    font-size: 16px;
  }
  .btn.btn-slim span {
    top: -2px;
  }
}

/* 20241106追加 */
ul.selecter-menu li {
  width: calc(100% / 5);
}
ul.selecter-list li.figure .icon span {
  background-color: #8B4AB8;
}