@charset "UTF-8";
/*=====================================
【common/リセット】
======================================*/
/*=============================================
【リセットCSS__A Modern CSS Reset】
==============================================*/
*****,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-size: 1em;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*=============================================
【リセットCSS__ここから追記部分】
==============================================*/
ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: unset;
}

button {
  all: unset;
}

input {
  margin: 0;
}

/* Button要素のリセットCSS */
button, input[type=button], input[type=submit], input[type=reset] {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  outline: none; /* フォーカス時のアウトラインを削除（アクセシビリティに注意） */
}

/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【common/ベース】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【共通_base】
======================================*/
body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  background: #FCF5E8;
  transition: opacity 0.4s;
}

* {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

/*=====================================
【components/ブロックパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【ヘッダー】
======================================*/
.header__inner {
  background-color: #E78D15;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  padding: 8px 15px 10px;
}
.header__inner-txt {
  font-feature-settings: "palt";
  font-size: clamp(1.313rem, 0.858rem + 2.27vw, 2.563rem);
  color: #fff;
}
.header__inner span {
  font-size: clamp(1rem, 0.773rem + 1.14vw, 1.625rem);
}

/*=====================================
【サイドバー】
======================================*/
.side {
  background-color: #FCF5E8;
  padding: 20px 15px;
}
@media screen and (min-width: 767px) {
  .side {
    padding: 0;
    width: 225px;
  }
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin: 0 auto;
  /* ナビゲーション */
}
.nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 10px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 767px) {
  .nav__list {
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #1B86DC;
  }
}
.nav__list-item {
  width: 48.25%;
  line-height: 1.286;
  font-size: 14px;
  font-weight: bold;
  align-items: center;
  font-feature-settings: "palt";
}
@media screen and (min-width: 767px) {
  .nav__list-item {
    width: 100%;
    font-size: 16px;
    line-height: 1.688;
  }
}
.nav__list-link {
  display: flex;
  align-items: center;
  height: 100%;
  border: 1px solid #1B86DC;
  background-color: #fff;
  vertical-align: middle;
  color: #1B86DC;
  padding: 12px;
  transition: 0.3s;
}
.nav__list-link .nav__red {
  color: #D94524;
  font-size: 12px;
}
@media screen and (min-width: 767px) {
  .nav__list-link .nav__red {
    font-size: 14px;
  }
}
.nav__list-link .nav__red:hover {
  transition: 0.3s;
  background-color: #fff;
}
.nav__list-link .nav__red:hover .nav__red {
  color: #fff;
}
@media screen and (min-width: 767px) {
  .nav__list-link {
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-top: 1px solid #1B86DC;
    border-radius: 0;
  }
}
.nav__list-link:hover {
  color: #fff !important;
  background-color: #1B86DC;
  transition: 0.3s;
}
.nav__list-link.on_page {
  background-color: #1B86DC;
  color: #fff;
}
.nav__list-link-close {
  display: flex;
  align-items: center;
  height: 100%;
  border: 1px solid #D5D5D5;
  color: #888;
  padding: 12px;
  background-color: #D5D5D5;
}
@media screen and (min-width: 767px) {
  .nav__list-link-close {
    border-top: 1px solid #1B86DC;
    padding: 12px;
    border-bottom: none;
    border-left: none;
    border-right: none;
  }
}
.nav__list-link-not-active {
  color: #1B86DC;
  background-color: #fff;
}

/*=====================================
【サイドバー_ポスター】
======================================*/
.poster {
  text-align: center;
}
.poster:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
  cursor: pointer;
}
.poster__img {
  display: none;
}
@media screen and (min-width: 767px) {
  .poster__img {
    display: block;
    width: 180px;
    border: 1px solid #888;
  }
}

/*=====================================
【サイドバー_バナー】
======================================*/
.bnr {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bnr__item a:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
  cursor: pointer;
}

/*=====================================
【フッター】
======================================*/
.footer {
  background-color: #E78D15;
  padding: 30px 20px;
  position: sticky;
}
@media screen and (min-width: 940px) {
  .footer {
    top: 100vh;
  }
}
.footer__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}

.office {
  display: flex;
  flex-direction: column;
  line-height: 1.563;
  font-size: 14px;
}
.office__name {
  border: 1px solid #fff;
  width: 5rem;
  text-align: center;
}
.office__desc {
  margin-top: 10px;
}
.office__address {
  font-style: normal;
}
.office__link {
  border-bottom: 2px dotted #fff;
}
.office__link:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
  cursor: pointer;
}

/*=====================================
【メインビジュアル】
======================================*/
@media screen and (min-width: 767px) {
  .mv__sp {
    display: none;
  }
}

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

/*=====================================
【コンテンツ 共通】
======================================*/
.main {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
}
@media screen and (min-width: 767px) {
  .main {
    flex-direction: row;
    justify-content: space-around;
    gap: 25px;
    padding: 30px 20px;
  }
}
@media screen and (min-width: 940px) {
  .main {
    padding: 30px 0;
  }
}

@media screen and (min-width: 767px) {
  .container-no-strech {
    width: 650px;
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 767px) {
  .container {
    display: flex;
    flex: 1;
    align-items: stretch;
  }
}

.content {
  width: 100%;
  background-color: #fff;
  padding: 30px 20px;
}
@media screen and (min-width: 767px) {
  .content {
    padding: 30px;
  }
}
.content__block {
  margin-top: 30px;
}
.content__block:first-of-type {
  margin-top: 0;
}

.half-content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 767px) {
  .half-content {
    flex-direction: row;
    gap: 30px;
  }
}
.half-content__block {
  margin-top: 30px;
}
@media screen and (min-width: 767px) {
  .half-content__block {
    width: 48%;
  }
}

/*=====================================
【会長挨拶】
======================================*/
.profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .profile {
    flex-direction: row;
    text-align: left;
    align-items: flex-end;
  }
}
.profile__img {
  width: 160px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .profile__img {
    width: 140px;
    margin: 0;
  }
}
.profile__cont {
  display: flex;
  flex-direction: column;
  font-weight: bold;
}
.profile__ttl {
  color: #1B86DC;
}

.profile-name {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}

/*=====================================
【開催概要】
======================================*/
.half-content {
  display: flex;
}
@media screen and (min-width: 767px) {
  .half-content {
    gap: 30px;
  }
}
.half-content__block {
  margin-top: 30px;
  width: 100%;
}
/*=====================================
【ボタン sp,tab時縦積み pc時横並び】
======================================*/
.btn-block-01-btn {
  display: block;
  background-color: #D94524;
  border-radius: 5px;
  padding: 20px 0;
  margin: 0 auto;
}
.btn-block-01-btn:nth-child(2) {
  margin-top: 20px;
}
.btn-block-01-btn__item {
  display: block;
  font-size: 16px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1;
  position: relative;
}
.btn-block-01-btn__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(0 0, 0 100%, 90% 50%);
}
.btn-block-01-btn:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
  cursor: pointer;
}
@media screen and (min-width: 940px) {
  .btn-block-01 {
    display: flex;
    justify-content: space-between;
  }
  .btn-block-01-btn {
    margin: 0;
  }
  .btn-block-01-btn:nth-child(2) {
    margin-top: 0;
  }
}

/*=====================================
【▶︎つきテキストリンク】
======================================*/
.arrow-link {
  padding-left: 16px;
}
.arrow-link__item {
  font-size: 16px;
  font-weight: bold;
  color: #888;
  margin: 0 auto;
  line-height: 1;
  position: relative;
  border-bottom: dotted 2px #D94524;
}
.arrow-link__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -14px;
  width: 14px;
  height: 14px;
  background-color: #D94524;
  clip-path: polygon(0 0, 0 100%, 70% 50%);
}

/*=====================================
【googleMAP】
======================================*/
.g-map {
  width: 100%;
  position: relative;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  height: 0;
  margin-top: 30px;
}

.g-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*=====================================
【囲み系】
======================================*/
.frame01 {
  border: 5px solid #D94524;
  padding: 1rem;
  background-color: #fff;
  margin: 20px 18px 20px 15px;
}
@media screen and (min-width: 940px) {
  .frame01 {
    margin: 0;
  }
}

/*=====================================
【components/見出しパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【コンテンツ　見出し】
======================================*/
.ttl-01 {
  color: #1B86DC;
  font-size: 21px;
  font-weight: bold;
  border-bottom: 3px solid #1B86DC;
  margin-bottom: 20px;
  line-height: 1.4;
  padding-bottom: 2px;
}

.ttl-02 {
  color: #333;
  background-color: #D7E9F7;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  padding: 8px;
}

.ttl-03 {
  font-size: 16px;
  font-weight: bold;
  color: #1B86DC;
  border-bottom: 1px solid #1B86DC;
}

.ttl-04 {
  font-size: 16px;
  font-weight: bold;
  color: #1B86DC;
}

.ttl-left {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding: 6px 10px;
}
.ttl-left:before {
  position: absolute;
  background-color: #e78d15;
  border-radius: 1em;
  content: "";
  left: 0;
  top: 5%;
  bottom: 10%;
  height: 90%;
  width: 3px;
}

/*=====================================
【components/フォントパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【フォントスタイル】
======================================*/
.txt {
  margin-top: 0.8rem;
}
.txt:first-of-type {
  margin-top: 10px;
}

.txt-align-r {
  text-align: right;
}

.txt-align-c {
  text-align: center;
}

.fw-bold {
  font-weight: bold;
}

.fw-normal {
  font-weight: normal;
}

.txt-inde01 {
  text-indent: -1rem;
  padding-left: 1rem;
}

.f13 {
  font-size: 13px;
}

.f14 {
  font-size: 14px;
}

.f18 {
  font-size: 18px;
}

.txt-delete {
  text-decoration: line-through;
}

/*=====================================
【テキストリンク】
======================================*/
.txt-link {
  color: #888;
  font-weight: bold;
  border-bottom: dotted 2px #D94524;
  line-height: 1;
}
.txt-link:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
  cursor: pointer;
}

.txt-link-inline {
  color: #aaa;
  font-weight: bold;
  border-bottom: dotted 2px #D94524;
  display: inline;
  line-height: 1;
  padding-bottom: 2px;
}
.txt-link-inline:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
  cursor: pointer;
}

/*=====================================
【components/リストパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【コンテンツ リスト】
======================================*/
/*=====================================
【お知らせ リスト】
======================================*/
.list-news {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.list-news__item {
  display: flex;
  flex-direction: column;
  border-bottom: #888 1px solid;
  padding-bottom: 12px;
}

/*=====================================
【リンク リスト】
======================================*/
.link-list__item {
  border-bottom: 1px solid #707070;
  padding: 15px 0 15px 16px;
}
.link-list__link {
  font-size: 16px;
  font-weight: bold;
  color: #888;
  margin: 0 auto;
  line-height: 1;
  position: relative;
  border-bottom: dotted 2px #D94524;
}
.link-list__link:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
  cursor: pointer;
}
.link-list__link:before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 14px;
  height: 14px;
  background-color: #1B86DC;
  clip-path: ellipse(30% 30% at 70% 50%);
}

/*=====================================
【リスト ⚫︎】
======================================*/
.list-circle {
  margin-top: 1rem;
}
.list-circle__item {
  text-indent: -1.25rem;
  padding-left: 1.25rem;
  line-height: 1.8;
}
.list-circle__item::before {
  content: "⚫︎";
  color: #1B86DC;
  font-size: small;
  margin-right: 0.5rem;
}

/*=====================================
【リスト ナンバリング】
======================================*/
.list-num {
  counter-reset: listnum;
}
.list-num__item {
  text-indent: -1rem;
  padding-left: 1rem;
}
.list-num__item::before {
  counter-increment: listnum;
  content: counter(listnum) ".";
}

/*=====================================
【リスト 何もなし】
======================================*/
.list-free {
  counter-reset: listnum;
}
.list-free__item {
  text-indent: -1rem;
  padding-left: 1rem;
}

/*=====================================
【リスト 表組】
======================================*/
.chart-list {
  display: flex;
  gap: 6px;
}
.chart-list__ttl {
  background-color: #d5d5d5;
  width: 5rem;
  text-align: center;
  padding: 0 3px;
}

/*=====================================
【components/ボタンパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【ボタン_コンポーネント_01】
======================================*/
.btn-01 {
  display: block;
  background-color: #D94524;
  border-radius: 5px;
  padding: 20px 0;
}
.btn-01__area {
  display: block;
}
@media screen and (min-width: 940px) {
  .btn-01__area {
    display: flex;
    justify-content: space-between;
  }
}
.btn-01__item {
  display: block;
  font-size: 16px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1;
  position: relative;
}
.btn-01__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(0 0, 0 100%, 90% 50%);
}
.btn-01:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
  cursor: pointer;
}

/*=====================================
【components/ボタンパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【テーブル_コンポーネント_01】【2列】
======================================*/
.table-01 {
  font-size: 14px;
  width: 100%;
  border-collapse: collapse;
}
.table-01-num {
  width: 34px;
  text-align: center;
  border: 1px solid #ddd;
  border: 1px solid #707070;
  border-left: none;
  border-right: none;
  background-color: #D9D9D9;
}
.table-01-txt {
  border: 1px solid #707070;
  border-left: none;
  border-right: none;
  padding: 4px;
}

/*=====================================
【テーブル_コンポーネント_02】【4列】
======================================*/
.table-02 {
  font-size: 14px;
  width: 100%;
  border-collapse: collapse;
}
.table-02-num {
  width: 34px;
  text-align: center;
  width: 34px;
  border: 1px solid #707070;
  border-left: none;
  border-right: none;
  background-color: #D9D9D9;
}
.table-02-txt {
  width: 260px;
  padding: 4px;
  border: 1px solid #707070;
  border-left: none;
  border-right: none;
}

/*=====================================
【テーブル_コンポーネント_03】【2列】
======================================*/
.table-03 {
  width: 100%;
  border: none;
  padding: 10px 0;
  line-height: 1.6;
}
.table-03-title {
  width: 50px;
  padding: 2px 8px 2px 2px;
  vertical-align: top;
}
.table-03-txt {
  padding: 2px 8px;
}

/*=====================================
【components/その他_追加パーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【その他】
======================================*/
.w-200 {
  width: 200px;
}

.w-240 {
  width: 240px;
}

.w-280 {
  width: 280px;
}

.w-320 {
  width: 320px;
}

.mx-auto {
  margin: 0 auto;
}

.col-red {
  color: #D94524;
}

.no-link {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.open-position {
  display: flex;
  align-items: center;
}

/*=====================================
【modify.scss__margin】
======================================*/
.mgT0 {
  margin-top: 0px;
}

.mgT5 {
  margin-top: 5px;
}

.mgT10 {
  margin-top: 10px;
}

.mgT15 {
  margin-top: 15px;
}

.mgT20 {
  margin-top: 20px;
}

.mgT25 {
  margin-top: 25px;
}

.mgT30 {
  margin-top: 30px;
}

.mgT35 {
  margin-top: 35px;
}

.mgT40 {
  margin-top: 40px;
}

.mgT45 {
  margin-top: 45px;
}

.mgT50 {
  margin-top: 50px;
}

.mgR0 {
  margin-right: 0px;
}

.mgR5 {
  margin-right: 5px;
}

.mgR10 {
  margin-right: 10px;
}

.mgR15 {
  margin-right: 15px;
}

.mgR20 {
  margin-right: 20px;
}

.mgR25 {
  margin-right: 25px;
}

.mgR30 {
  margin-right: 30px;
}

.mgR35 {
  margin-right: 35px;
}

.mgR40 {
  margin-right: 40px;
}

.mgR45 {
  margin-right: 45px;
}

.mgR50 {
  margin-right: 50px;
}

.mgB0 {
  margin-bottom: 0px;
}

.mgB5 {
  margin-bottom: 5px;
}

.mgB10 {
  margin-bottom: 10px;
}

.mgB15 {
  margin-bottom: 15px;
}

.mgB20 {
  margin-bottom: 20px;
}

.mgB25 {
  margin-bottom: 25px;
}

.mgB30 {
  margin-bottom: 30px;
}

.mgB35 {
  margin-bottom: 35px;
}

.mgB40 {
  margin-bottom: 40px;
}

.mgB45 {
  margin-bottom: 45px;
}

.mgB50 {
  margin-bottom: 50px;
}

.mgL0 {
  margin-left: 0px;
}

.mgL5 {
  margin-left: 5px;
}

.mgL10 {
  margin-left: 10px;
}

.mgL15 {
  margin-left: 15px;
}

.mgL20 {
  margin-left: 20px;
}

.mgL25 {
  margin-left: 25px;
}

.mgL30 {
  margin-left: 30px;
}

.mgL35 {
  margin-left: 35px;
}

.mgL40 {
  margin-left: 40px;
}

.mgL45 {
  margin-left: 45px;
}

.mgL48 {
  margin-left: 48px;
}

.mgL50 {
  margin-left: 50px;
}

.mgL55 {
  margin-left: 55px;
}

.mgL60 {
  margin-left: 60px;
}

.mgL65 {
  margin-left: 65px;
}

.mgL70 {
  margin-left: 70px;
}

.mgL75 {
  margin-left: 75px;
}

.mgL80 {
  margin-left: 80px;
}

.mgL85 {
  margin-left: 85px;
}

.mgL90 {
  margin-left: 90px;
}

.mgL95 {
  margin-left: 95px;
}

.mgL100 {
  margin-left: 100px;
}

.mgL105 {
  margin-left: 105px;
}

.mgL110 {
  margin-left: 110px;
}

.mgL115 {
  margin-left: 115px;
}

.mgL120 {
  margin-left: 120px;
}

/*=====================================
【modify.scss__padding】
======================================*/
.pdT0 {
  padding-top: 0px;
}

.pdT5 {
  padding-top: 5px;
}

.pdT10 {
  padding-top: 10px;
}

.pdT15 {
  padding-top: 15px;
}

.pdT20 {
  padding-top: 20px;
}

.pdT25 {
  padding-top: 25px;
}

.pdT30 {
  padding-top: 30px;
}

.pdT35 {
  padding-top: 35px;
}

.pdT40 {
  padding-top: 40px;
}

.pdT45 {
  padding-top: 45px;
}

.pdT50 {
  padding-top: 50px;
}

.pdR0 {
  padding-right: 0px;
}

.pdR5 {
  padding-right: 5px;
}

.pdR10 {
  padding-right: 10px;
}

.pdR15 {
  padding-right: 15px;
}

.pdR20 {
  padding-right: 20px;
}

.pdR25 {
  padding-right: 25px;
}

.pdR30 {
  padding-right: 30px;
}

.pdR35 {
  padding-right: 35px;
}

.pdR40 {
  padding-right: 40px;
}

.pdR45 {
  padding-right: 45px;
}

.pdR50 {
  padding-right: 50px;
}

.pdB0 {
  padding-bottom: 0px;
}

.pdB5 {
  padding-bottom: 5px;
}

.pdB10 {
  padding-bottom: 10px;
}

.pdB15 {
  padding-bottom: 15px;
}

.pdB20 {
  padding-bottom: 20px;
}

.pdB25 {
  padding-bottom: 25px;
}

.pdB30 {
  padding-bottom: 30px;
}

.pdB35 {
  padding-bottom: 35px;
}

.pdB40 {
  padding-bottom: 40px;
}

.pdB45 {
  padding-bottom: 45px;
}

.pdB50 {
  padding-bottom: 50px;
}

.pdL0 {
  padding-left: 0px;
}

.pdL5 {
  padding-left: 5px;
}

.pdL10 {
  padding-left: 10px;
}

.pdL15 {
  padding-left: 15px;
}

.pdL20 {
  padding-left: 20px;
}

.pdL25 {
  padding-left: 25px;
}

.pdL30 {
  padding-left: 30px;
}

.pdL35 {
  padding-left: 35px;
}

.pdL40 {
  padding-left: 40px;
}

.pdL45 {
  padding-left: 45px;
}

.pdL50 {
  padding-left: 50px;
}

/*=====================================
【modify.scss__responsive__sp】
======================================*/
.r-tab {
  display: none;
}

.r-pc {
  display: none;
}

/*=====================================
【modify.scss__responsive__tab】
======================================*/
@media screen and (min-width: 767px) {
  .r-sp {
    display: none;
  }
  .r-tab {
    display: block;
  }
}
/*=====================================
【modify.scss__responsive__pc】
======================================*/
@media screen and (min-width: 940px) {
  .r-pc {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */