@charset "UTF-8";
/* Noto Sans JPのインポート */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/* Roboto Condensedのインポート */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap");
/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

img,
picture {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  /* フォント */
  --font-size-sm: 12px;
  --font-size-md: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --line-height-base: 1.75;
  --line-height-heading: 1.5;
  --line-height-sm: 1.5;
  --line-height-lg: 2;
  --font-weight-normal: 200;
  --font-weight-bold: 900;
  /* コンテンツ幅 */
  --content-max-width: 1000px;
  /* カラーコード */
  --color-white: #ffffff;
  --color-black: #333333;
  --color-main-bg: #212A3E;
  --color-sub-bg: #394867;
  --color-yellow: #f0c400;
  --color-gray: #F1F6F9;
  --bgcolor-gradient-primary: linear-gradient(136deg, #f0c400 0%, #e9b40d 100%);
}
@media print, screen and (min-width: 768px) {
  :root {
    --font-size-md: 16px;
    --font-size-lg: 24px;
    --font-size-xl: 36px;
    --font-size-big: 56px;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--color-white);
  font-size: var(--font-size-md);
  line-height: var(--line-height-base);
  background: var(--color-main-bg);
  font-weight: var(--font-weight-normal);
  min-height: 100vh;
  line-height: 1.5;
}

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

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}


/* **************************************

  ヘッダー

************************************** */
.l-Header__container {
  display: flex;
  align-items: center;
  padding-left: 3%;
  height: 60px;
  justify-content: space-between;
}


/* ----- logo ----- */
.l-Header__logo {
  max-width: 175px;
  font-size: 0;
  width: 46.67vw;
}
.l-Header__logo img {
  width: 100%;
}
.l-Header__logoLink {
  display: block;
  width: auto;
  height: auto;
}


/* ----- navi ----- */
.l-HeaderNav {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  z-index: 10;
  opacity: 0;
  transition: all 0.5s;
  visibility: hidden;
  right: -100%;
  overflow-y: auto;
  background: var(--bgcolor-gradient-primary);
  padding-top: 60px;
}
.l-HeaderNav.open {
  transition-delay: 0s;
  opacity: 1;
  visibility: visible;
  right: 0;
}

.l-HeaderNav__list {
  list-style: none;
  border-top: 1px solid #fff;
}

.l-HeaderNav__item {
  border-bottom: 1px solid #fff;
  font-weight: var(--font-weight-bold);
}
.l-HeaderNav__item > a {
  color: var(--color-white);
  text-decoration: none;
  padding: 20px 40px;
  display: block;
}

.l-HeaderNav__insta {
  width: 50px;
  margin: 20px auto 0;
}


/* ----- burger menu ----- */
.l-BurgerButton {
  width: 60px;
  height: 60px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  position: fixed;
  top: 0;
  background-color: var(--color-primary);
}

.l-BurgerButton__lineGroup {
  width: 22px;
  height: 18px;
  position: relative;
}
.l-BurgerButton__lineGroup::before {
  top: 0;
}
.l-BurgerButton__lineGroup::after {
  bottom: 0;
}

.l-BurgerButton__line {
  top: 50%;
  transform: translateY(-50%);
}
.l-BurgerButton__line,
.l-BurgerButton__lineGroup::before,
.l-BurgerButton__lineGroup::after {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  content: "";
  transition: 0.3s ease-in-out;
}
.l-BurgerButton.open .l-BurgerButton__line {
  opacity: 0;
}
.l-BurgerButton.open .l-BurgerButton__lineGroup::before,
.l-BurgerButton.open .l-BurgerButton__lineGroup::after {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.l-BurgerButton.open .l-BurgerButton__lineGroup::before {
  transform: rotate(-45deg);
}
.l-BurgerButton.open .l-BurgerButton__lineGroup::after {
  transform: rotate(45deg);
}


/* ----- navi overlay ----- */
.l-NavOverlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
}
.l-NavOverlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}


/* **************************************

  コンテンツ

************************************** */
.color-yellow {
  color: var(--color-yellow);
}
.fw-bold {
  font-weight: var(--font-weight-bold);
}

.bg_gray {
  background: var(--color-gray);
}
.bg_sub {
  background: var(--color-sub-bg);
}
.l-Section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.l-Container {
  padding: 0 20px;
}
.l-SectionBody {
  margin-top: 30px;
}
.l-PageContent {
  margin-top: 5px;
}

.c-PcOnly {
  display: none;
}
.c-InlineBlock {
  display: inline-block;
}


/* ----- menu title ----- */
.c-SectionTitle {
  text-align: center;
}

.c-SectionTitle__en {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  background: var(--color-white);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: var(--line-height-sm);
  margin-top: 0.3em;
}
.c-SectionTitle__ja {
  color: var(--color-yellow);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-heading);
}


/* ----- fadein ----- */
.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
.fadein.is-viewin {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* .zoomin img {
  transition: transform 1s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.1);
}
.zoomin.is-viewin img {
  transform: scale(1);
} */


/* **************************************

  お問い合わせ

************************************** */
.l-Contact {
  padding: 30px 0;
  background: var(--color-black);
}
.l-Contact__body {
  margin-top: 20px;
}
.l-ContactList {
  list-style: none;
  width: 90%;
  max-width: 350px;
  margin: auto;
}
.l-ContactButton {
  padding: 10px 5%;
  min-height: 60px;
}


/* **************************************

  ボタン

************************************** */
/* ----- tel button ----- */
.l-TelButton {
  font-family: "Roboto Condensed";
  font-weight: bold;
  letter-spacing: 0.05em;
  border: 1px solid #fff;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-decoration: none;
  position: relative;
  text-align: center;
  line-height: var(--line-height-sm);
  font-size: var(--font-size-xl);
}
.l-TelButton img {
  width: var(--font-size-xl);
  height: var(--font-size-xl);
  display: block;
  margin-right: 10px;
}


/* ----- mail button ----- */
.l-ContactList__mail {
  margin-top: 15px;
}
.l-MailButton {
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  background: var(--color-white);
  text-decoration: none;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  position: relative;
  text-align: center;
  line-height: var(--line-height-sm);
}


/* ----- button ----- */
.c-ButtonWrap {
  width: 90%;
  max-width: 320px;
  margin: 30px auto 0;
}
.c-Button {
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--bgcolor-gradient-primary);
  border-radius: 100vh;
  padding: 1.1em 14%;
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  position: relative;
  text-align: center;
  line-height: var(--line-height-sm);
}

.c-Button.kessan {
  background: var(--color-main-bg);
}


/* **************************************

  フッター

************************************** */
.l-Footer__navArea {
  background-color: var(--color-main-bg);
  padding: 20px 0;
}


/* ----- copyright ----- */
.l-Footer__copyrightArea {
  padding: 20px;
}
.l-Footer__copyright {
  font-size: var(--font-size-sm);
  text-align: center;
}





/* ------------------------------ 768px以上 PC ------------------------------ */
@media print, screen and (min-width: 960px) {
  /* **************************************
  
    ヘッダー
  
  ************************************** */
  .l-BurgerButton,
  .l-NavOverlay {
    display: none;
  }

  .l-Header__container {
    height: 100px;
    padding: 0 1.5%;
  }

  .l-Header__logo {
    max-width: 240px;
    width: 20vw;
  }

  /* ----- navi ----- */
  .l-HeaderNav {
    visibility: visible;
    transform: none;
    padding-top: 0;
    position: relative;
    width: auto;
    height: 100%;
    opacity: 1;
    background: none;
    right: auto;
  }

  .l-HeaderNav__list {
    border-top: none;
    display: flex;
    height: 100%;
  }

  .l-HeaderNav__item {
    border-bottom: none;
    padding: 0;
    margin-left: 3.5vw;
  }
  .l-HeaderNav__item > a {
    color: var(--color-white);
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.5s cubic-bezier(0.25, 1, 0.12, 1);
  }
  .l-HeaderNav__item > a:hover {
    color: var(--color-yellow);
  }
  .l-HeaderNav__item > a::after {
    position: absolute;
    bottom: 26px;
    left: 0;
    content: "";
    width: 100%;
    height: 3px;
    background: var(--color-yellow);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
    border-radius: 100vh;
  }
  .l-HeaderNav__item > a:hover::after {
    transform: scale(1, 1);
  }

  .l-HeaderNav__insta {
    width: 50px;
    margin: 25px 0 0 50px;
  }


  /* **************************************
  
    コンテンツ
  
  ************************************** */
  .l-Section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .l-Container {
    max-width: var(--content-max-width);
    margin: auto;
    padding: 0;
    width: 90%;
  }
  .l-SectionBody {
    margin-top: 60px;
  }
  .l-SectionBody.-space {
    margin-top: 40px;
  }
  .l-PageContent {
    margin-top: 15px;
  }

  .c-PcOnly {
    display: block;
  }
  .c-SpOnly {
    display: none;
  }


  /* **************************************
  
    お問い合わせ
  
  ************************************** */
  .l-Contact {
    padding: 60px 0;
  }
  .l-Contact__body {
    margin-top: 25px;
  }
  .l-ContactList {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    max-width: none;
    margin: auto;
  }


  /* **************************************
  
    ボタン
  
  ************************************** */
  /* ----- tel button ----- */
  .l-TelButton {
    border: none;
    font-size: var(--font-size-big);
    padding: 0;
  }
  .l-ContactList__tel {
    white-space: nowrap;
  }


  /* ----- mail button ----- */
  .l-ContactList__mail {
    margin-top: 0;
    width: 100%;
    max-width: 380px;
    margin-left: 4%;
    white-space: nowrap;
  }
  .l-MailButton {
    padding: 1.1em 14%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
  }
  .l-MailButton:hover {
    border: 1px solid #fff;
    color: var(--color-white);
  }
  .l-MailButton::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    padding-top: 100%;
    background: var(--color-yellow);
    transition: transform 0.4s, opacity 0.4s;
    border-radius: 50%;
    transform: scale(0);
    z-index: -1;
  }
  .l-MailButton:hover::before {
    transform: scale(1.1);
    opacity: 1;
  }


  /* ----- button ----- */
  .c-Button {
    font-size: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid #fff;
  }
  .c-Button:hover {
    color: var(--color-yellow);
    border: 1px solid var(--color-yellow);
  }
  .c-Button:hover .c-Button__arrow {
    fill: var(--color-yellow);
  }
  .c-Button::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    padding-top: 100%;
    background: var(--color-white);
    transition: transform 0.4s, opacity 0.4s;
    border-radius: 50%;
    transform: scale(0);
    z-index: -1;
  }
  .c-Button:hover::before {
    transform: scale(1.1);
    opacity: 1;
  }
  .c-PageTitle__txt {
    font-size: 36px;
  }


  /* **************************************
  
    フッター
  
  ************************************** */
  .l-Footer__nav > li:not(:first-child)::before {
    padding: 0 0.6em;
  }
}


/* ------------------------------ 992px以上 ------------------------------
@media print, screen and (min-width: 992px) {
  .l-Contact {
    background: url(../img/bg_contact_pc.jpg) no-repeat center/cover;
  }
} */





/* **************************************

  メインビジュアル

************************************** */
.Mv {
  position: relative;
  height: 100vw;
  background-image: url(../img/mv_sp.jpg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
}
.Mv__container {
  margin: auto;
}
.Mv__text {
  position: absolute;
  top: 5vw;
  left: 5vw;
  width: 60vw;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.Mv__catchCopy {
  width: 100%;
  max-width: 450px;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.Mv__container .c-Button {
  margin-top: 5vw;
  width: 40vw;
  min-width: 180px;
  padding: 1.1em 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Mv__container .c-Button img {
  width: 24px;
  margin-right: 10px;
}

@media print, screen and (min-width: 768px) {
  .Mv {
    height: calc( 100vh - 100px);
    background-image: url(../img/mv_pc.jpg);
  }
}

@media print, screen and (min-width: 960px) {
  .Mv__container {
    max-width: 1400px;
    margin: auto;
    padding-left: 4vw;
  }
  .Mv__text {
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
  .Mv__catchCopy {
    max-width: 700px;
    width: 50vw;
  }

  .Mv__container .c-Button {
    font-size: var(--font-size-lg);
    margin-top: 60px;
    width: 360px;
    padding: 1.1em 10px;
  }
  .Mv__container .c-Button img {
    width: 40px;
  }
}





/* **************************************

  お知らせ

************************************** */
.NewsSection {
  padding: 60px 20px;
  background: var(--color-sub-bg);
}
.NewsSection__content {
  background: var(--color-gray);
  padding-top: 30px;
  padding-bottom: 30px;
}
.NewsSection__content .c-SectionTitle__en {
  color: var(--color-black);
}

.NewsList {
  list-style: none;
}
.NewsList > li {
  padding: 1em 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
  color: var(--color-black);
}
.NewsList > li::after {
  background-color: var(--color-yellow);
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  bottom: -1px;
  width: 140px;
}

.NewsList__date {
  display: block;
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;
}
.NewsList__text {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

@media print, screen and (min-width: 768px) {
  .NewsSection__content {
    display: flex;
    padding: 30px;
  }
  .NewsSection__title {
    width: 22%;
    max-width: 145px;
    margin-right: 6%;
    text-align: left;
  }
  .NewsSection__newsList {
    flex: 1;
  }
  .l-SectionBody.-News {
    margin-top: 0;
  }
  .NewsList > li {
    display: flex;
  }
  .NewsList > li::after {
    width: 110px;
  }
  .NewsList__date {
    width: 110px;
    margin-bottom: 0;
  }
  a.NewsList__text {
    width: calc(100% - 120px);
  }
  a.NewsList__text:hover {
    color: var(--color-yellow);
  }
}





/* **************************************

  Wabunka Projectとは

************************************** */
.AboutSection__logo {
  width: 80px;
  margin: 0 auto 20px;
}
.AboutSection__logo img {
  display: block;
}

.AboutContent__detailText > h3 {
  margin-bottom: 15px;
  text-align: center;
}

.AboutContent__Message {
  background: var(--color-gray);
}
.AboutContent__Message_photo {
  width: 100%;
  background-image: url(../img/message.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.AboutContent__Message_photo:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.AboutContent__Message_txt {
  padding: 20px;
  color: var(--color-black);
}
.AboutContent__Message_txt > h4 {
  margin-bottom: 15px;
  color: var(--color-sub-bg);
  font-size: var(--font-size-lg);
  text-align: center;
}
.AboutContent__Message_name {
  font-weight: var(--font-weight-bold);
  text-align: right;
  margin-top: 15px;
}

@media print, screen and (min-width: 768px) {
  .AboutContent__Message {
    display: flex;
  }
  .AboutContent__Message_photo {
    width: 280px;
  }
  .AboutContent__Message_photo:before {
    display: none;
  }
  .AboutContent__Message_txt {
    width: calc(100% - 280px);
  }
}





/* **************************************

  Wabunka Projectができること

************************************** */
#service.bg_gray,
#service .c-SectionTitle__en {
  color: var(--color-black);
}

.ServiceContent__detailText > h3 {
  margin-bottom: 15px;
}
.ServiceContent__lesson h3 {
  background: var(--color-main-bg);
  display: inline-block;
  margin-bottom: 0;
  padding: 8px 20px;
  color: var(--color-white);
  text-align: center;
}

.ServiceContent__lesson_list li {
  list-style: none;
  border-bottom: 1px solid #ccc;
  padding: 15px;
}
.lesson_num {
  font-weight: var(--font-weight-bold);
}
.lesson_words {
  display: inline-block;
  width: 80px;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}


/* ----- Service List ----- */
.ServiceList {
  list-style: none;
  width: 90%;
  margin: auto;
}
.ServiceList > li {
  margin-top: 30px;
  background: var(--bgcolor-gradient-primary);
  box-shadow: 10px 10px rgba(0, 0, 0, 0.05);
}

.ServiceList__img {
  width: 100%;
}
.ServiceList__text {
  padding: 15px;
  color: var(--color-white);
  font-size: var(--font-size-sm);
}
.ServiceList__heading {
  font-size: var(--font-size-sm);
  text-align: center;
  margin-bottom: 5px;
}

@media print, screen and (min-width: 768px) {
  .ServiceContent__lesson  {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
  .ServiceContent__lesson h3 {
    display: block;
    text-align: center;
  }
  .lesson_words {
    width: 100px;
  }

  /* ----- Service List ----- */
  .ServiceList {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
  }
  .ServiceList > li {
    margin-top: 60px;
    width: 47%;
  }
  .ServiceList > li:nth-of-type(2),
  .ServiceList > li:nth-of-type(4),
  .ServiceList > li:nth-of-type(6),
  .ServiceList > li:nth-of-type(8) {
    transition-delay: 0.5s;
  }
  .ServiceList > li:first-of-type,
  .ServiceList > li:nth-of-type(2) {
    margin-top: 0;
  }
  .ServiceList__text {
    padding: 15px;
    background: var(--bgcolor-gradient-primary);
    color: var(--color-white);
    font-size: var(--font-size-md);
  }
  .ServiceList__heading {
    font-size: var(--font-size-md);
    text-align: center;
    margin-bottom: 5px;
  }
}





/* **************************************

  スポンサー募集

************************************** */
#sponsors .ex {
  margin: 30px auto 0;
}
#sponsors .ex p {
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
}
#sponsors .ex ul {
  padding-left: 30px;
}

.Sponsors__merit {
  background: var(--color-gray);
  padding: 20px;
  margin-top: 30px;
  color: var(--color-black);
  text-align: center;
}
.Sponsors__merit h3 {
  margin-bottom: 15px;
}
.Sponsors__merit ul {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.Sponsors__merit li {
  list-style: none;
  width: calc((100% - 20px) / 3);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bgcolor-gradient-primary);
  color: var(--color-white);
  font-size: 3vw;
  font-weight: var(--font-weight-bold);
  text-align: center;
}
.Sponsors__merit li:before {
  content: '';
  display: block;
  padding-top: 100%;
}


/* ----- use ----- */
.use {
  margin-top: 60px;
}
.use h3 {
  font-size: var(--font-size-lg);
  text-align: center;
  margin-bottom: 15px;
}
.use_contact {
  color: var(--color-black);
  background: var(--color-gray);
  padding: 20px;
  margin-top: 30px;
}
.use_contact_ttl {
  font-weight: bold;
  text-align: center;
  padding: 0 0 20px;
  border-bottom: 1px solid #ccc;
}
.use_contact_txt {
  padding-top: 20px;
}
.use_contact_txt .c-Button {
  margin-top: 20px;
}


/* ----- sponsorsList ----- */
#sponsorsList h3 {
  font-size: var(--font-size-lg);
}
#sponsorsList ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
#sponsorsList li {
  list-style: none;
  width: calc((100% - 30px) / 3);
  margin: 0 5px;
  background: var(--color-white);
  margin-top: 15px;
  padding: 5px;
}
#sponsorsList .l-Container + .l-Container {
  margin-top: 30px;
}

@media print, screen and (min-width: 768px) {
  .Sponsors__meritArea {
    display: flex;
    justify-content: space-between;
  }
  .Sponsors__merit {
    width: calc((100% - 30px) / 2);
  }
  .Sponsors__merit:nth-of-type(2) {
    transition-delay: 0.5s;
  }
  .Sponsors__merit li {
    font-size: 1.5vw;
  }


  /* ----- use ----- */
  .use h3 {
    font-size: var(--font-size-lg);
    text-align: center;
    margin-bottom: 30px;
  }
  .use_contact {
    display: flex;
    padding: 30px;
  }
  .use_contact_ttl {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    padding-right: 30px;
    border-bottom: none;
    border-right: 1px solid #ccc;
  }
  .use_contact_txt {
    width: calc(100% - 300px);
    padding-top: 0;
    padding-left: 30px;
  }
  .use_contact_txt .c-Button {
    max-width: 400px;
    margin-top: 20px;
  }


  /* ----- sponsorsList ----- */
  #sponsorsList li {
    width: calc((100% - 60px) / 3);
    margin: 0 10px;
    margin-top: 30px;
    padding: 10px;
  }
  #sponsorsList .l-Container + .l-Container {
    margin-top: 60px;
  }
}
@media print, screen and (min-width: 1100px) {
  .Sponsors__merit li {
    font-size: var(--font-size-md);
  }
}




/* **************************************

  団体概要

************************************** */
#group.bg_gray,
#group .c-SectionTitle__en {
  color: var(--color-black);
}
.CompanyList {
  margin-top: 60px;
}
.CompanyList__item {
  display: flex;
}
.CompanyList__term,
.CompanyList__description {
  padding-top: 20px;
  padding-bottom: 20px;
}
.CompanyList__term {
  width: 30%;
  max-width: 180px;
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--color-yellow);
  padding-left: 3%;
}
.CompanyList__description {
  flex: 1;
  padding-left: 3%;
  border-bottom: 1px solid #ccc;
}
.CompanyList__item:first-of-type .CompanyList__term {
  border-top: 1px solid var(--color-yellow);
}
.CompanyList__item:first-of-type .CompanyList__description {
  border-top: 1px solid #ccc;
}
.CompanyList__serviceList {
  list-style: none;
}
.CompanyList__serviceList > li {
  display: flex;
}
.CompanyList__serviceList > li::before {
  content: "・";
}


/* ----- Access ----- */
.AccessSection {
  margin-top: 60px;
}
.AccessSection__addressWrap {
  margin-top: 60px;
}
.AccessSection__address {
  font-style: normal;
  font-weight: var(--font-weight-bold);
}
.AccessSection__root {
  list-style: none;
}
.AccessSection__root > li {
  display: flex;
}
.AccessSection__root > li::before {
  content: "・";
}

.AccessSection__map {
  width: 100%;
  position: relative;
  height: 70vw;
  max-height: 320px;
  margin-top: 30px;
}
.AccessSection__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media print, screen and (min-width: 768px) {
  .CompanyList__term,
  .CompanyList__description {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .CompanyList__term {
    padding-left: 10px;
  }

  /* ----- Access ----- */
  .AccessSection {
    margin-top: 80px;
  }
}





/* **************************************

  記事ページ

************************************** */
.newsPage {
  background: var(--color-gray);
}
.newsPage .l-PageContent {
  color: var(--color-black);
  margin-top: 0;
}
.newsPage .c-PageTitle__container {
  padding: 40px 0 30px;
}
.newsPage h1 {
  text-align: center;
  font-size: var(--font-size-xl);
  color: var(--color-yellow);
}
.newsPage__heading {
  line-height: var(--line-height-heading);
  text-align: center;
  font-size: var(--font-size-lg);
  margin-bottom: 30px;
}
.news_days {
  font-size: var(--font-size-sm);
}

.newsPageSection {
  margin-top: 30px;
}
.newsPageSection h3 {
  text-align: center;
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
}
.newsPageSection h4 {
  font-weight: var(--font-weight-bold);
  margin-top: 20px;
  margin-bottom: 10px;
}
.newsPageSection p + p {
  margin-top: 2em;
}
.news_img_Content{
  display: flex;
}
.news__img {
  width: calc((100% - 20px) / 2);
}
.news__img:nth-child(even) {
  margin-left: 20px;
}
.news__img_one {
  width: calc((100% - 0px) / 2);
  margin: 0 auto;
}

.newsPage .l-Contact {
  margin-top: 60px;
}

@media print, screen and (min-width: 768px) {
  .newsPage .c-PageTitle__container {
    padding: 100px 0 60px;
  }
  .newsPage__heading {
    font-size: var(--font-size-xl);
    margin-bottom: 30px;
  }
  .newsPageSection {
    margin-top: 60px;
  }
  .newsPageSection h3{
    margin-bottom: 30px;
  }
  .newsPage .l-Contact {
    margin-top: 100px;
  }
}



/*# sourceMappingURL=style.css.map */
