@charset 'UTF-8';

/*
COLORS
================================================ */
:root {
    --light-blue: #4db1ec;
    --blue: #1665cc;
    --purple: #b473bf;
    --pink: #ffb2c1;
    --orange: #ff9f67;
    --yellow: #ffd673;
    --light-green: #a2e29b;
    --green: #00a2af;
    --grey: #333;
    --white: #fff;
}

/*
GENERAL STYLING
================================================ */
html {
    font-size: 100%;
    /* スムーズスクロール */
    scroll-behavior: smooth;
    overflow-x: hidden;
}
@media(max-width :600px){
  body{
    font-size: 80%;
  }
}
body {
	color: var(--grey);
	font-family: sans-serif;
  width: 100%;
  overflow-x: hidden;
}

/*
COMMON
================================================ */
p {
    line-height: 1.7;
}
img {
    max-width: 100%;
}
h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}
h1,
h2 {
    text-align: center;
}
header,
h1,
h2,
.hero-date {
    font-family: impact, sans-serif;
}

/* Layout */
.wrapper {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/*
HEADER
================================================ */
header {
    background: var(--grey);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1;
}
header .wrapper {
    display: flex;
    justify-content: space-between;
}
header a {
    color: var(--white);
    font-size: 1.5rem;
}
.btn-menu {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 1px solid rgba(255,255,255,.5);
    color: var(--white);
    padding: .5rem 1rem;
}
.main-nav {
    background: var(--grey);
    width: 0;
    position: absolute;
    z-index: 2;
    top: 50px;
    right: 0;
    overflow: hidden;
    transition: .5s;
}
.main-nav li {
    text-align: center;
    margin: 2rem 0;
}
.main-nav a {
    display: block;
}
.main-nav.open-menu {
    width: 100%;
}

/*
TOPカテゴリー
================================================ */

/* レスポンシブテンプレートでの画像の横並びとスマホで解除 */
.two-pic {
  margin: auto;
  text-align: center;
  width: 100%;
  
}
.left-pic {
  display: inline-block;
  padding: 10px;
}
.right-pic {
  display: inline-block;
  padding: 10px;
}

/*
HERO
================================================ */
#hero {
    /* ↓ 省略形だとブラウザーによってうまく表示されない
    background: var(--light-blue) url('../images/hero.jpg') no-repeat center / cover; */
    background-color: var(--light-blue);
    background-image: url('../images/yoga-top.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: screen;
    animation: bg-color 24s infinite;
    height: 100vh;
    display: flex;
    align-items: center;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

#hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.hero-date {
    text-align: center;
    border-top: 3px solid var(--grey);
    border-bottom: 3px solid var(--grey);
    padding: .5rem 0;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/*
ABOUT
================================================ */
#about {
    padding: 4rem 1rem;
}
#about h2 {
  background: linear-gradient(var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-emphasis-color: transparent;
}
#about p {
    margin-bottom: 2rem;
}

/*
 VOC
================================================ */
/*スクロールバースタイル */
::-webkit-scrollbar {
  width: 5px;
  height: 6px;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #333;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.525);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
/* カード型横スクロール */
.card-wrap2 {
  overflow-x: auto;
  margin: 0 auto;
  padding: 30px 0;
  width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #333 #cccccc;
  scrollbar-width: thin;
}
.card-wrap-in2 {
  scroll-snap-type: x mandatory;
  max-width: 1000px;
  min-width: 700px;
  padding: 10px;
  margin: 0 auto;
  list-style: none;
  display: flex;
}
@media screen and (min-width: 1280px) {
  .card-wrap-in2 {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.card-item2 {
  scroll-snap-align: start;
  margin: 0 10px;
  min-width: 210px;
  max-width: calc((100% / 5) - 20px);
  white-space: normal;
  background-color: #f4f4f4;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-item2 .pic {
  overflow: hidden;
  width: 100%;
  height: 200px;
}
.card-item2.pic img {
  aspect-ratio: 1.618 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-item2 a {
  text-decoration: none;
  display: flax;
  flex-direction: column;
}
.card-item2 p {
  padding: 10px;
  line-height: 1.6;
  font-size: 14px;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  .card-item2 {
    margin-top: 20px;
  }
}
/* もっと見るリンク */
.more-link {
  font-size: 14px;
  display: block;
  text-align: right;
  padding: 10px;
  text-decoration: underline !important;
  margin-top: auto;
}

/*
NEWS
================================================ */
#news {
    background-image: linear-gradient(var(--light-green), var(--green));  
    padding: 7rem 0;
    -webkit-clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
}
#news h2 {
    color: var(--white);
}
.news-table {
    color: var(--white);
    width: 100%;
}
.news-table tr {
    border-bottom: 1px solid rgba(255,255,255,.5);
}
.news-table td {
    display: block;
    line-height: 1.5;
}
.news-date {
    font-size: .875rem;
    padding-top: 1rem;
}
.news-content {
    padding-bottom: 1rem;
}
.scroller {
    width: 100%;
    height: 300px;
    overflow-y: scroll;
    scrollbar-color: rebeccapurple green;
    scrollbar-width: thin;
  }


/*
 blog
================================================ */
/*スクロールバースタイル */
::-webkit-scrollbar {
  width: 5px;
  height: 6px;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #333;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.525);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
/* カード型横スクロール */
.card-wrap {
  overflow-x: auto;
  margin: 0 auto;
  padding: 30px 0;
  width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #333 #cccccc;
  scrollbar-width: thin;
}
.card-wrap-in {
  scroll-snap-type: x mandatory;
  max-width: 1000px;
  min-width: 700px;
  padding: 10px;
  margin: 0 auto;
  list-style: none;
  display: flex;
}
@media screen and (min-width: 1280px) {
  .card-wrap-in {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.card-item {
  scroll-snap-align: start;
  margin: 0 10px;
  min-width: 290px;
  max-width: calc((100% / 5) - 20px);
  white-space: normal;
  background-color: #f4f4f4;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-item .pic {
  overflow: hidden;
  width: 100%;
  height: 160px;
}
.card-item .pic img {
  aspect-ratio: 1.618 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-item a {
  text-decoration: none;
  display: flax;
  flex-direction: column;
}
.card-item p {
  padding: 10px;
  line-height: 1.6;
  font-size: 14px;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  .card-item {
    margin-top: 20px;
  }
}
/* もっと見るリンク */
.more-link {
  font-size: 14px;
  display: block;
  text-align: right;
  padding: 10px;
  text-decoration: underline !important;
  margin-top: auto;
}

/*
NEWS
================================================ */
#news {
    background-image: linear-gradient(var(--light-green), var(--green));  
    padding: 7rem 0;
    -webkit-clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
}
#news h2 {
    color: var(--white);
}
.news-table {
    color: var(--white);
    width: 100%;
}
.news-table tr {
    border-bottom: 1px solid rgba(255,255,255,.5);
}
.news-table td {
    display: block;
    line-height: 1.5;
}
.news-date {
    font-size: .875rem;
    padding-top: 1rem;
}
.news-content {
    padding-bottom: 1rem;
}
.scroller {
    width: 100%;
    height: 300px;
    overflow-y: scroll;
    scrollbar-color: rebeccapurple green;
    scrollbar-width: thin;
  }

/*
Plan
================================================ */

  /* table03 */

#table03 th, #table05 td {
    text-align: center;
    width: 20%;
    min-width: 130px;
    padding: 10px;
    height: 60px;
  }
  
  #table03 th {
    background-color: #8d8d8d;
  }
  
  #table03 .head {
    background-color: #e8e8e8;
  }

  #table03 td {
    background-color: #e8e8e8;
    text-align: center;
  }
  
  /* tab */
  @media only screen and (max-width: 768px) {
    #table03 {
      display: block;
      overflow-x: scroll;
      white-space: nowrap;
    }
    #table03 .fixed {
      position: sticky;
      left: 0;
    }
    #table05 .fixed:before {
      content: "";
      position: absolute;
      top: 0;
      left: -1px;
      right: -1px;
      height: 100%;
      border-left: 1px solid #707070;
      border-right: 1px solid #707070;
    }
  }
.menu h2 {
    background: linear-gradient(var(--light-blue), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-emphasis-color: transparent;
}

.menu-list{
  margin-top: 30px;
}

.menu-list2{
  text-align: right;
}

@media (max-width: 600px) {
    .menu-list{ 
        font-size: 85%;
        width: 100%;
    }
}

/* Homeタブ */
.sizeimage {
    max-width: 1000px; /* 最大幅 */
    min-width: 200px; /* 最小幅 */
    margin-bottom: 30px;
    margin-top: 30px;
 }
 .sizeimage img { width: 100%; }

 /*
Blog
================================================ */

.cp_card04 {
  max-width: 1000px;
	overflow: hidden;
	border-radius: 3px;
	margin-top: 2rem;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	background-color: #fff;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	        box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
					transition: all 0.25s ease-in;
				  border-bottom: 5px solid transparent;
}
.cp_card04 .photo {
	height: 300px;
	overflow: hidden;
}
.cp_card04:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border: none;
  border-bottom: 5px solid #00BCD4;
}
.cp_card04 .details {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 1em 1em 0 1em;
	font-size: 0.8em;
}
.cp_card04 .date {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	text-align: right;
}
.cp_card04 .category {
	-webkit-box-flex: 2;
	    -ms-flex: 2;
	        flex: 2;
}
.cp_card04 .category p {
	font-size: 0.8em;
	padding: 3px 8px;
	cursor: pointer;
	width: 8em;
	margin: 0;
	border-radius: 10px;
	background: #00BCD4;
	text-align: center;
	color: #ffffff;
}
.cp_card04 .description {
	padding: 0 1em;
}
.cp_card04 .description h1 {
	font-size: 1.4em;
	margin: 0;
	margin-bottom: 0.5em;
}
.cp_card04 .description .text p {
	margin: 0;
}
.cp_card04 .description a {
	float: right;
	margin-bottom: 10px;
	text-decoration: none;
	color: #00BCD4;
}
.cp_card04 .description a:after {
	font-family: FontAwesome;
	margin-left: -10px;
	content: '\f061';
	-webkit-transition: all 0.3s ease;
	        transition: all 0.3s ease;
	vertical-align: middle;
	opacity: 0;
}
.cp_card04 .description a:hover:after {
	margin-left: 5px;
	opacity: 1;
}

.blog-style {
    text-align: center;
    background-image: linear-gradient(var(--yellow), var(--orange));  
    padding: 7rem 0;
    -webkit-clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
}

/*
Greetings
================================================ */
#greetings {
  padding: 4rem 1rem;
}
#greeetings h2 {
background: linear-gradient(var(--light-blue), var(--blue));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-emphasis-color: transparent;
}
/*
SPEAKERS
================================================ */
#speakers {
    padding: 4rem 1rem;
}
.speakers-list {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.speakers-text {
    margin-left: 1rem;
}
#speakers h2 {
  background: linear-gradient(var(--light-blue), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-emphasis-color: transparent;
}
#speakers h3 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
}
#speakers img {
    border-radius: 50%;
    width: 20%;
}

@media(max-width:600px){
  #speakers h3 {
    font-size: 1.05rem;
  }
}

/* 経歴 */
.timeline {
  list-style: none;
  margin-bottom: 90px;
}
.timeline > li {
  margin-bottom: 40px;
}
.timeline-title {
  font-size: 1.1rem;
}

/* for Desktop */
@media ( min-width : 640px ){
  .timeline > li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }
  .timeline-date {
    width: 110px;
    float: left;
    margin-top: 20px;
  }
  .timeline-content {
    width: 75%;
    float: left;
    border-left: 3px #e5e5d1 solid;
    padding-left: 30px;
  }
  .timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #6fc173;
    position: absolute;
    left: 106px;
    top: 24px;
    border-radius: 100%;
  }
}

/* ボタン */
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
  border-bottom: 5px solid #b84c00;
  font-size: 0.55rem;
}
a.btn--orange:hover {
  margin-top: 3px;
  color: #fff;
  background: #f56500;
  border-bottom: 2px solid #b84c00;
}
a.btn--shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

/* greetings*/
.brown-bg {
  background: none;
  max-width: 1200px;
  margin:auto;
}
.content {
  padding: 4rem 1rem;
}
.home-text {
  margin-bottom: 2rem;
}
.home-text p {
  margin-bottom: 1rem;
}
.home-chart {
  margin-left: 2vw;
}
.flex-reverse .home-chart {
  margin: 0 2vw 0 0;
}
.home-chart img {
  width: 100%;
}
.home-chart p {
  text-align: center;
}

@media (min-width: 600px) {
    /* Before & After */
    .breadcrumb-002 {
      display: flex;
      gap: 0 15px;
      list-style: none;
      padding: 0;
      font-size: 2em;
      margin: auto,center;
  }
  
  /* Contents */
  .content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 4rem 1rem;
  }
  .flex-reverse {
      flex-direction: row-reverse;
  }
  .home-text {
      width: 55vw;
      margin-bottom: 0;
  }
  /* Home画像の大きさ */
  .home-chart {
      width: 45vw;
  }

  /* ボタン */
  a.btn--orange {
    color: #fff;
    font-size: 1.15rem;
  }
}

/*
よくある質問
================================================ */
.question01 {
    text-align: left;
    padding-top: 8vh;
    height: 340vh;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 20px;
  }
  
  .question01 h2 {
    text-align: center;
    background: linear-gradient(var(--light-blue), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-emphasis-color: transparent;
  }
  
  .question dt {
    margin-bottom: 1em;
    color: #333333;
    font-weight: 600;
    background-color: #cacaca;
    font-size: 120%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .question dt::before,
  .question dd::before {
    margin: auto;
  }
  
  .question dt::before {
    content: "Q.";
    color: #006eff;
    padding-left: 20px;
  }
  
  .question dd {
    margin: 0 0 2.5em;
    padding: 1em 1.5em;
    background-color: #ffffff;
    color: #333333;
  }
  
  .question dd::before {
    content: "A.";
    color: #ff4225;
  }

  @media (max-width: 600px){
    .question01 {
        height: 340vh;
        width: 100%;
      }
  }

/*
TICKET
================================================ */
#ticket {
    background-image: linear-gradient(var(--pink), var(--purple));
    padding: 6rem 1rem 2rem;
    -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
}
#ticket h2 {
    color: var(--white);
}
.ticket-form {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 5rem;
}
.ticket-form label {
    color: var(--white);
    display: block;
    margin-bottom: .5rem;
}
.ticket-field {
    background: rgba(255,255,255,.6);
    padding: 1rem;
    width: 100%;
    margin-bottom: 1.5rem;
}
.ticket-btn {
    background: var(--grey);
    color: var(--white);
    display: block;
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
}

.form01 h2 {
    margin-top: 40px;
}

.page-form {
    background-position: right 106px, 0 0;
    background-size: 100vw auto, contain;
    background-repeat: no-repeat;
    color: #ffffff;
}
.text-small {
    font-size: .875rem;
}

/* Form */
input[type='text'],
input[type='email'],
input[type='url'],
select,
textarea {
    border: 1px solid #bbb;
    background: #fefefe1f;
    padding: .5rem;
    width: 100%;
}
input[type='text']::placeholder,
input[type='email']::placeholder,
input[type='url']::placeholder,
textarea::placeholder {
    color: #eeeeee;
}
textarea {
    height: 10rem;
}

label {
    display: block;
    margin-bottom: 1rem;
}

.select-box {
    position: relative;
}
.select-box::after {
    display: inline-block;
    position: absolute;
    top: .625rem;
    right: 1rem;
/* Font Awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f078';
    color: #bbb;
}

/* デフォルトのチェックボックスを非表示 */
input[type='checkbox'] {
    opacity:0;
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
}
/* チェックボックス用の四角形を作る */
input[type='checkbox'] + span::before {
    display: inline-block;
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #bbb;
    background: #fff;
    margin: -.125rem .5rem 0 0;
    vertical-align: middle;

/* Font Awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding: 0 2px;
    line-height: 1.5;
}
/* チェックが入るとチェックアイコンを表示 */
input[type='checkbox']:checked + span::before {
    content: '\f00c';
    color: #000000;
}

.tel-font td{
    color: #ffffff;
    font-size: 1em;
    background-color: #ffffffbd;
}

/* Button */
.btn {
    font-family: 'Sawarabi Mincho', sans-serif;
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    text-align: center;
    width: 60%;
    border-radius: 10px 10px 10px 10px;/*左側の角丸く*/
    margin-top: 30px;
    margin-bottom: 30px;
    margin: auto;
}
.btn-primary {
    color: #fff;
    background: #373937;
}
.btn-primary:hover {
    background: #22309b;
}
.btn-secondary {
    color: #555;
    background: #d0bea2;
}
.btn-secondary:hover {
    background: #d9cebe;
}

/* Table */
table {
    margin: 3.5rem 0;
    width: 100%;
}
.send01 th,
td {
    display: block;
}
.send01 th {
    font-weight: normal;
    background: #fcd26880;
    vertical-align: middle;
    padding: 1rem;
}
.send01 td {
    color: #000000;
    padding: .75rem 1rem 1.75rem;
}
.tel-font td {
    font-size: 1em;
    color: #ffffff;
}

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

@media(min-width: 600px){
    /* Form */
    label {
        display: inline-block;
        margin: 0 1.5rem 0 0;
    }
    .select-box {
        width: 40%;
    }

    .popular-1 {
      font-size: 2em;
      z-index: 1;
      margin-top: 50px;
      margin-bottom: 40px;
      padding-left: 28%;
      padding-right: 28%;
  }
  .popular-2 {
    font-size: 2.5em;
    z-index: -1;
    margin-top: 100px;
    margin-bottom: 40px;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}
/* Table */
.send01 tr:nth-child(odd) {
    background: #fcd26880;
}
.send01 tr:nth-child(even) th {
    background: #ffffff39;
}

.send01 th,
td {
    padding: 1.25rem;
    display: table-cell;
}
.send01 th {
    width: 24%;
    vertical-align: middle;
    background: #fcd26880;
}
.send01 td {
    width: 76%;
}
}

/* お問い合わせボタン
================================================*/

.cta_btn09 {
    font-weight: bold; /* 文字の太さ */
    text-align: center;
    letter-spacing: 0.1em;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    margin-top: 40px;
  }
  
  .cta_btn09-contact , .cta_btn09-tel {
    color: #fff; /* 文字色 */
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 1em 1em 1em 60px;
    border-radius: 100vh;
    width: 100%; /* ボタン幅 */
    max-width: 350px; /* 最低ボタン幅 */
    transition: 0.3s;
    font-size: 80%;
  }
  
  .cta_btn09-contact {
    background: #f73a21; /* お問い合わせボタン色 */
  }
  
  .cta_btn09-tel {
    background: #23a905; /* 電話ボタン色 */
  }
  
  .cta_btn09-contact::before,
  .cta_btn09-tel::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .cta_btn09-contact::before {
    width: 50px;
    height: 41px;
    background-image: url(https://find-a.jp/seotimes/wp-content/uploads/mail.png); /* メールアイコン */
  }
  
  .cta_btn09-tel::before {
    width: 40px;
    height: 40px;
    background-image: url(https://find-a.jp/seotimes/wp-content/uploads/cta-phone.png); /* 電話アイコン */
  }
  
  .cta_btn09 .copy_txt {
    line-height: 1;
    display: inline-block;
    padding: 0.2em 1.5em;
    letter-spacing: 0;
    background: #fff; /* 下文字背景色 */
    font-size: 60%; /* 下文字サイズ */
    border-radius: 5px;
  }
  
  .cta_btn09-contact .copy_txt {
    color: #c42121; /* 下文字色 */
  }
  
  .cta_btn09-tel .copy_txt {
    color: #028d00; /* 下文字色 */
  }
  
  .cta_btn09 img {
      width: 1em;
      margin-right: 0.5em;
  }
  
  /* マウスオーバーした際のデザイン */
  .cta_btn09-contact:hover,
  .cta_btn09-tel:hover {
    transform: scale(1.05);
  }

  @media(min-width:600px){
    /* お問い合わせボタン */
.cta_btn09-contact , .cta_btn09-tel {
    color: #fff; /* 文字色 */
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 1em 1em 1em 60px;
    border-radius: 100vh;
    width: 100%; /* ボタン幅 */
    max-width: 350px; /* 最低ボタン幅 */
    transition: 0.3s;
    font-size: 100%;
  }
  .cta_btn09 .copy_txt {
    line-height: 1;
    display: inline-block;
    padding: 0.2em 1.5em;
    letter-spacing: 0;
    background: #fff; /* 下文字背景色 */
    font-size: 90%; /* 下文字サイズ */
    border-radius: 5px;
  }
  }

/*
FOOTER
================================================ */
#footer06 {
    background: #000000;
    max-width: 100%;
  }
   
  #footer06 .cont-wrap {
    padding: 40px 0;
  }
   
  #footer06 .info .address {
    margin: 20px 0;
    padding-left: 20px;
    border-left: 1px solid #fff;
    color: #ccc;
  }
   
  #footer06 .cont .nav a {
    color: #ccc;
  }
   
  #footer06 .cont-wrap .map {
    width: 700px;
    height: 300px;
  }
   
  #footer06 .cont-wrap .map iframe {
    width: 100%;
    height: 100%;
  }

  .footer06 .logo{
    width: 500px;
  }

  /* SNSアイコン*/
  .footer-002__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.5em;
    list-style-type: none;
    margin: 0 0 .5em;
    padding: .5em;
}

.footer-002__sns-icon {
    width: 31px;
    height: 31px;
}

.footer-002__copyright {
    margin: 0;
    color: #ffffffb3;
    font-weight: 200;
    font-size: .8em;
}
   
  @media only screen and (min-width: 641px) {
    #footer06 .cont-wrap {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
    .footer06 li a {
        padding-left: 10px;
        color: #ccc;
    }
    .address{
        text-align: left;
        font-size: 120%;
        color: #ccc;
    }
    .nav{
        text-align: left;
        font-size: 120%;
        margin: 20px 0;
        padding-left: 20px;
        border-left: 1px solid #fff;
        color: #ccc;
    }
    .nav li{
        margin-bottom: 5px;
    }
  }
  
  @media only screen and (max-width: 640px) {
    #footer06 .cont-wrap {
      padding: 30px 0;
    }
    #footer06 .cont .logo img {
      width: 250px;
    }
    #footer06 .nav {
      width: calc(100% + 40px);
      margin-left: -20px;
    }
    #footer06 .nav li {
      border-top: 1px solid #555;
      width: 95%;
    }
    #footer06 .nav li:last-child {
      border-bottom: 1px solid #555555;
      width: 95%;
    }
    #footer06 .nav li a {
      display: block;
      padding: 12px 20px;
      background-size: 6px auto;
    }
    #footer06 .cont-wrap .map {
      margin-top: 20px;
      width: 100%;
      height: 200px;
    }
  }
   

/*
FOOTER
================================================ */
.footer {
    border-top: 1px solid rgba(255,255,255,0.5);
    padding-top: 2rem;
    text-align: center;
    font-size: .875rem;
    color: var(--white);
}
.footer a {
    text-decoration: underline;
    color: #ccc;
}

/*
DESKTOP SIZE
================================================ */
@media (min-width: 600px) {
/* Common */
    h2 {
        font-size: 5rem;
    }
    a:hover,
    .ticket-btn:hover {
        transition: .3s;
    }
    a:hover {
        color: var(--blue);
    }
    .ticket-btn:hover {
        background: var(--blue);
    }

/* Header */
    .btn-menu {
        display: none;
    }
    .main-nav {
        width: 100%;
        position: static;
        display: flex;
    }
    .main-nav li {
        margin: 0 0 0 1.5rem;
    }
    .btn{
      font-size: 1.25rem;
    }
/* Hero */
    #hero h1 {
        font-size: 5.5rem;
    }
    .hero-date {
        font-size: 2.75rem;
    }
/* News */
    .news-table td {
        display: table-cell;
    }
    .news-date {
        padding: 1.125rem 0 1rem 1rem;
    }
    .news-content {
        padding: 1rem 1rem 1rem 0;
    }
/* Speakers */
    #speakers h2 {
        margin-bottom: 4rem;
    }
    .speakers-list {
        margin-bottom: 3rem;
    }
    .speakers-text {
        margin-left: 2rem;
    }
}
