html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  letter-spacing: 0.05em;
  color: #2A2A2A;
}

b {
  font-weight: 700;
}

img {
  vertical-align: top;
  font-size: 0;
}

a {
  color: #00B2A9;
  text-decoration: underline;
}

a:hover {}

a[target="_blank"].blank {}

a[target="_blank"].blank::after {
  content: "";
  background-image: url(../image/ic_blank.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 15px;
  height: 15px;
  padding: 0 0px 0px 0;
  margin: 0 0 3px 4px;
  vertical-align: middle;
  border: none;
  transform: none;
}

.container {
  max-width: 1128px;
  padding: 0 20px;
  margin: 0 auto;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* ----------------------------------------------------------------- Google-Font -- */
@font-face {
  font-family: "Noto Sans JP";
  src: url(../fonts/NotoSansJP-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url(../fonts/NotoSansJP-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}

/*---------------------------------------------------- first_section --*/
.first_section {
  padding-top: 3.75rem;
  margin-top: 100px;
}

@media (max-width:960px) {
  .first_section {
    padding-top: 2.5rem;
    margin-top: 85px;
  }
}

@media (max-width:480px) {
  .first_section {
    margin-top: 66px;
  }
}

/*---------------------------------------------------- section_title --*/
.section_title {
  margin-bottom: 3.5rem;
}

@media (max-width:768px) {
  .section_title {
    margin-bottom: 2.5rem;
  }
}

.section_title .section_title_en {
  /* display: inline-block; */
  display: none;
  text-transform: uppercase;
  font-family: 'Pathway Gothic One', sans-serif;
  -webkit-text-stroke-width: 1.5px;
  line-height: 0.65;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section_title.section_title_design01 .section_title_en {
  font-size: 6.25rem;
  color: #FFFFFF;
  position: relative;
  z-index: 0;
}

.section_title.section_title_design01 .section_title_en::before {
  content: "";
  display: block;
  width: calc(100% + 40px);
  height: 70px;
  background-color: #00B2A9;
  position: absolute;
  top: 0;
  left: -20px;
  z-index: -1;
}

.section_title.section_title_design02 .section_title_en {
  font-size: 3.75rem;
  color: #00B2A9;
}

.section_title .section_title_ja {
  /* color: #00B2A9; */
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

@media (max-width:768px) {
  .section_title .section_title_ja {
    font-size: 1.5rem;
  }
}

/*---------------------------------------------------- btn --*/
.btn {
  color: #2A2A2A;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.7px;
  padding: 1.25rem 0.5rem;
  max-width: 280px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
  background-color: #FFFFFF;
  cursor: pointer;
}

.btn::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transition: all 0.2s ease-in-out;
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%) rotate(45deg);
}

.btn.btn_style_01 {
  border: solid 1px #00B2A9;
}

.btn.btn_style_01:hover {
  color: #FFFFFF;
  background-color: #00B2A9;
}

.btn.btn_style_01::after {
  border-color: #2A2A2A #2A2A2A transparent transparent;
}

.btn.btn_style_back {
  color: #92A2A8;
  border: solid 1px #92A2A8;
}

.btn.btn_style_back:hover {
  color: #FFFFFF;
  background-color: #92A2A8;
}

.btn.btn_style_back::after {
  border-color: #92A2A8 #92A2A8 transparent transparent;
  right: auto;
  left: 30px;
  transform: translate(0, -50%) rotate(-135deg);
}

.btn.btn_style_back:hover::after {
  right: auto;
  left: 25px;
}

.btn.btn_style_disabled {
  pointer-events: none;
  color: #92A2A8;
  background-color: #E9F2F3;
  border: solid 1px #E9F2F3;
}

.btn.btn_style_disabled::after {
  display: none;
}

.btn.btn_style_buy {
  max-width: 350px;
  background: linear-gradient(90deg, #00B2A9 0%, #008EBB 100%);
  color: #FFFFFF;
}

.btn.btn_style_buy::before {
  content: '';
  display: inline-block;
  background-image: url(../image/ic_cart.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 16px;
  margin-right: 0.5rem;
  line-height: 1;
  vertical-align: bottom;
}

.btn.btn_style_buy::after {
  display: none;
}

.btn.btn_style_buy:hover {
  opacity: 0.8;
}

.btn.btn_style_store {
  display: none;
}

@media (max-width:960px) {
  .btn.btn_style_store {
    max-width: 350px;
    display: block;
    background: linear-gradient(90deg, #00B2A9 0%, #008EBB 100%);
    width: 100%;
    color: #FFFFFF;
    letter-spacing: 1px;
  }

  .btn.btn_style_store::before {
    content: '';
    display: inline-block;
    background-image: url(../image/ic_cart.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 16px;
    margin-right: 0.5rem;
    line-height: 1;
    vertical-align: bottom;
  }

  .btn.btn_style_store::after {
    right: 20px;
  }

  .btn.btn_style_store:hover {
    opacity: 0.8;
  }

  .btn.btn_style_store:hover::after {
    right: 20px;
  }
}

.btn:hover::after {
  border-color: #FFFFFF #FFFFFF transparent transparent;
  right: 25px;
}

/*---------------------------------------------------- ページナビ --*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.25rem 0 0;
}

@media (max-width:768px) {
  .wp-pagenavi {
    margin: 40px 0 0;
  }
}

.wp-pagenavi span.current {
  color: #00B2A9;
}

.wp-pagenavi span.current::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: #00B2A9;
}

.wp-pagenavi a,
.wp-pagenavi span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  font-weight: 700;
  color: #92A2A8;
  margin: 0 1.5rem 0 0 !important;
  border: none !important;
  background-color: #FFF;
}

@media (max-width:480px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    margin: 0 16px 0 0 !important;
  }
}

.wp-pagenavi a {
  text-decoration: none;
  transition: all .5s ease-out;
}

.wp-pagenavi a:hover {
  color: #00B2A9;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  color: transparent;
  width: 40px;
  height: 40px;
  background: #FFF;
}

.wp-pagenavi .nextpostslink {
  margin: 0 !important;
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  color: transparent;
}

.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .nextpostslink:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: #00B2A9;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.4s;
}

.wp-pagenavi .previouspostslink:before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.wp-pagenavi .nextpostslink:before {
  transform: translate(-80%, -50%) rotate(45deg);
}

.wp-pagenavi a.previouspostslink {
  order: 1;
}

.wp-pagenavi a.first {
  order: 2;
}

.wp-pagenavi a.previouspostslink~span.extend {
  order: 3;
  padding: 0;
}

.wp-pagenavi a.page,
.wp-pagenavi a.previouspostslink~a.page {
  order: 4;
}

.wp-pagenavi span.current {
  order: 5;
}

.wp-pagenavi span.current~a.page {
  order: 6;
}

.wp-pagenavi span.current~span.extend {
  order: 7;
  padding: 0;
  border-radius: 3px;
  letter-spacing: 1px;
  border: none !important;
}

.wp-pagenavi a.last {
  order: 8;
}

.wp-pagenavi a.nextpostslink {
  order: 9;
  margin-right: 0;
}

/*---------------------------------------------------- パンくずリスト --*/
#breadcrumb {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

#breadcrumb li {
  padding-right: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
}

#breadcrumb li:after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background: #92A2A8;
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translate(0, -50%) rotate(20deg);
}

#breadcrumb li:last-child:after {
  display: none;
}

#breadcrumb li span {
  font-size: 0.625rem;
  display: block;
  line-height: 1.4rem;
}

#breadcrumb li.home span {
  display: none;
}

#breadcrumb li a {
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
}

#breadcrumb li.home a::before {
  content: "";
  display: block;
  background-image: url(../image/ic_home.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1rem;
}

#breadcrumb li a:hover {
  opacity: .5;
}

#breadcrumb li a.no_link {
  pointer-events: none;
}

/*---------------------------------------------------- 検索窓 --*/
#searchform {
  position: relative;
  display: block;
  width: 100%;
  padding: 2.5rem 1rem;
  background: #E9F2F3;
  box-shadow: 0px 5px 10px -5px #0000001A inset;
  overflow: hidden;
  box-sizing: border-box;
}

#searchform input[type="text"] {
  width: calc(100% - 50px);
  height: 74px;
  padding: 1.5rem 0 1.5rem 1rem;
  border: none;
  border-radius: 4px 0 0 4px;
  box-sizing: border-box;
}

#searchform input[type="text"]:focus {
  outline: 0;
}

#searchform input[type="text"]::-moz-placeholder {
  color: #92A2A8;
}

#searchform input[type="text"]:-ms-input-placeholder {
  color: #92A2A8;
}

#searchform input[type="text"]::placeholder {
  color: #92A2A8;
}

#searchform input[type="text"]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
}

#searchform input[type="submit"] {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 50px;
  height: 74px;
  background-image: url(../../search/image/ic_search.svg);
  background-position: center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-color: #FFF;
  border: none;
  border-radius: 0 4px 4px 0;
  transform: translate(0, -50%);
  outline: none;
  cursor: pointer;
}

/*---------------------------------------------------- 記事内ブロック --*/
/* YouTube埋め込み */
.wp-block-embed {
  max-width: 800px;
  margin: 0 0 2.5rem !important;
}

@media (max-width:768px) {
  .wp-block-embed {
    width: auto;
    max-width: 100%;
  }
}

.wp-block-embed .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  text-align: center;
}

.wp-block-embed iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.wp-block-embed figcaption {
  text-align: center;
}

/* 動画直接アップロード 埋め込み */
.wp-block-video {
  max-width: 800px;
  margin: 0 0 2.5rem !important;
}

@media (max-width:768px) {
  .wp-block-video {
    width: auto;
    max-width: 100%;
  }
}

/* 引用 */
/* table */
