@charset "utf-8";
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent
}
body {
  margin: 0
}
main {
  display: block
}
p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}
dt {
  font-weight: 700
}
dd {
  margin-left: 0
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit
}
pre {
  font-family: monospace, monospace;
  font-size: inherit
}
address {
  font-style: inherit
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit
}
abbr[title] {
  text-decoration: underline dotted
}
b, strong {
  font-weight: bolder
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit
}
small {
  font-size: 80%
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}
sub {
  bottom: -.25em
}
sup {
  top: -.5em
}
svg, img, embed, object, iframe {
  vertical-align: bottom
}
button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit
}
button, [type="button"], [type="reset"], [type="submit"] {
  cursor: pointer
}
button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
  cursor: default
}
:-moz-focusring {
  outline: auto
}
select:disabled {
  opacity: inherit
}
option {
  padding: 0
}
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0
}
legend {
  padding: 0
}
progress {
  vertical-align: baseline
}
textarea {
  overflow: auto
}
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto
}
[type="search"] {
  outline-offset: -2px
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}
[type="number"] {
  -moz-appearance: textfield
}
label[for] {
  cursor: pointer
}
details {
  display: block
}
summary {
  display: list-item
}
[contenteditable]:focus {
  outline: auto
}
table {
  border-color: inherit;
  border-collapse: collapse
}
caption {
  text-align: left
}
td, th {
  vertical-align: top;
  padding: 0
}
th {
  text-align: left;
  font-weight: 700
}
html {
  scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 400;
    color: #008e54;
    font-size: 1.15vw;
    background:#008e54;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), 
       only screen and (min-resolution: 192dpi) {
  body {
     font-size: 1.2vw;
  }
}

.pc {
  display: block;
}
.sp {
  display: none;
}
.en {
font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
}
p {
    line-height: 2;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
}
.flex {
    display: flex;
    justify-content: space-between;
}
/* ハンバーガーメニュー */

body{
  overflow-x: hidden;
}

header {
    position: relative;
    z-index: 3;
}


.hamburger {
    width: 94px;
    height: 94px;
    position: fixed;
    top: 24px;
    right: 40px;
        background: #008e54;
    border-radius: 48px;
    z-index: 4;
    cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95, 0.95);
  transition: .4s;
}
.sc01 .hamburger {
  opacity: 1;
   pointer-events: auto;
  transform: scale(1, 1);
  transition: .4s;
}
.menu-active .hamburger {
        background:none;

}
.hamburger span{
  position: absolute;
  width: 56%;
  height: 2px;
  background-color: #fefcef;
  transition: .3s;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.hamburger span:first-of-type{
  top: 44px;
}
.hamburger span:nth-of-type(2){
  top: 52px;
}
.slide-menu {
    background: #008e54;
    position: fixed;
    top: 0;
    width: 40%;
    right: -100%;
    transition: .7s;
    height: 100%;
    z-index: 3;
}

.menu-active .slide-menu {
  transform: translateX(0);
}
.slide-menu ul{
padding: 50px 50px 0;
}
.slide-menu dl{
  color: #b5aa5f;
  text-align:left;
  padding-bottom: 12px;
}
.slide-menu li a{
text-decoration: none;
}
.slide-menu li.en a{
text-decoration: none;
}
.slide-menu li.sub {
    font-size: 15px;
}
.slide-menu li.en {
    font-size: 40px;
    padding-top: 40px;
}
.menu-active .hamburger span:first-of-type{
  top: 50%;
  transform: rotate(45deg);    background-color: #008e54;
}
.menu-active .hamburger span:nth-of-type(2){
  top: 50%;
  transform: rotate(-45deg);    background-color: #008e54;
}

.menu-active .slide-menu {
 right: 0%;
}
.body.menu-active {
  overflow: hidden;
  transition: .7s;
}




.slide-menu-wrap {
width: 97%;
    margin: 1.4% auto 0;
    background: #fefcef;
    height: 100%;
    border-radius: 10px;
}
.slide-menu-logo {
    width: 68%;
    text-align: center;
    margin: 0 auto;
    padding-top: 7vw;
}
.slide-menu-gnav {
    width:50%;
}
.slide-menu-gnav a {
text-decoration: none;
}
.nav-en {
    font-size: 60px;
    display: block;
    line-height: 1;
}


.slide-menu-wrap li {
    text-align: center;
	padding-bottom: 1em;
}
.slide-menu-wrap li .en {
    font-size: 2.4em;
    display: block;
    line-height: 1;
}
.slide-menu-wrap li .jp {
    display: block;
    font-weight: 700;
}

.content {

  position: relative;
}

.hero-fade {
  animation: fadeInlogo 0.5s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.content {
  animation: fadeInlogo 0.5s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
@keyframes fadeInhero {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes fadeInlogo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


footer {

}
.wrap {
    background:url("../images/bg.png");
    width: 100%;
    overflow: hidden;
    position: relative;
}.inner {
  width: 86%;
  margin: 0 auto;
	position: relative;
}
.inner-wide {
  width: 85%;
  margin: 0 auto;
}
.inner-min {
    width: 68%;
    margin: 0 auto;
	position: relative;
}
.l-sec {
  padding-top: 12vw;
}
.hero {
    width: 62%;
    margin: 0 auto;
    padding-top: 4vw;
    position: relative;
    z-index: 2;
}
.gnav li .en{
    font-size: 1.3em;
}
.gnav li .jp {
    font-size: 0.8em;
    font-weight: 600;
    padding-top: 0.18em;
}
.hero-copy {
    position: absolute;
    width: 1.8em;
    right: -10vw;
    top: 10vw;
    z-index: 3;
}
.hero-txt {
    padding: 1em;
    border-top: #008e54 solid 1px;
    margin-top: 1em;
    font-weight: 400;
    font-size: 0.95em;
}
.map iframe {
    width: 100%;
    border-radius: 2vw;
}
.timeschedule-items {
    background: #fff;
    padding: 3vw 2.8vw 0;
    border-radius: 0 1vw 1vw;
    border: #008e54 solid 0.3vw;
height: 100%;
}
.timeschedule {
    width: 50%;
}
.flex {
    display: flex;
    align-items: stretch;
    gap: 2vw;
}
footer {
    padding: 6vw 0 5vw;
    color: #fff;
    text-align: center;
}
.timeschedule-item.flex {
    justify-content: flex-start;
}
.time.en {
    border: #008e54 solid 2px;
    line-height: 1em;
    border-radius: 99px;
    width: 5.3em;
    text-align: center;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 1em;
    top: 1em;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: #fff;
}
.timeschedule-item.flex {
    display: block;
    position: relative;
  font-feature-settings: "palt";
}
.item-speaker {
    font-size: 0.8em;
    color: #333;
    padding-top: 0.5em;
    line-height: 1.3;
      letter-spacing: 0.05em;
}
.item-speaker strong {
    font-weight: 400;
    font-size: 1.2em;
    padding: 0 0.3em;
}
.item-title {
    font-size: 1.5em;
    line-height: 1.3em;
    font-weight: 700;
}
.item-subtitle {
    font-size: 0.9em;
    line-height: 1.3em;
    padding-top: 0.4em;
}
.item-detail {
    padding: 1em;
    border-bottom: #008e54 solid 1px;
      padding-left: 8em;
}
/*
.break .item-title {
    color: #575757;
}
.end .item-title {
    color: #575757;
} */
.end .item-detail {
    border-bottom: none;
  padding-bottom: 0;
}
.sec-r .item-title {
    color: #da2424;
}
.sec-r .item-detail {
    border-bottom: #da2424 solid 1px;
    background: #fff4f4;
}
.sec-r .item-subtitle {
    color: #da2424;
}
.sec-r .time.en {
    border: #da2424 solid 2px;
  color: #da2424;
}

.sec-b .item-title {
    color: #0797ce;
}
.sec-b .item-detail {
    border-bottom: #0e97cb solid 1px;
    background: #f1fbff;
}
.sec-b .item-subtitle {
    color: #0e97cb;
}
.sec-b .time.en {
    border: #0e97cb solid 2px;
  color: #0e97cb;
}



.sec-p .item-title {
    color: #695097;
}
.sec-p .item-detail {
    border-bottom: #695097 solid 1px;
    background: #f7f2ff;
}
.sec-p .item-subtitle {
    color: #695097;
}
.sec-p .time.en {
    border: #695097 solid 2px;
  color: #695097;
}
.sec-o .item-title {
    color: #f46b18;
}
.sec-o .item-detail {
    border-bottom: #f46b18 solid 1px;
    background: #fff7f1;
}
.sec-o .item-subtitle {
    color: #f46b18;
}
.sec-o .time.en {
    border: #f46b18 solid 2px;
  color: #f46b18;
}
.sec-subtitle {
    background: #333;
    font-size: 1.4em;
    font-weight: 700;
    padding: 0.8em 1em;
    color: #fff;
}
.sec-p .sec-subtitle {
    color: #695097;
    background:#e4d9f7;
}
.sec-o .sec-subtitle {
    color: #f46b18;
      background: #f8e6d8;
}
.sec-b .sec-subtitle {
    color: #0e97cb;
      background: #d9eef7;
}
.sec-r .sec-subtitle {
    background: #fcdede;
    color: #e41e1e;
}

.day {
    background: #008e54;
    padding: 1vw 1.6vw 0.9vw;
    text-align: left;
    border-radius: 0 1vw 0 0;
    width: 12vw;
}
.course-items.flex {
    background: #fff;
    gap: 0;
    padding: 3vw 1vw;
    border-radius: 0 1vw 1vw;
    border: #008e54 solid 0.3vw;
}
.course-sub-item {
    width: 50%;
}
.course-item.course-a {
    width: 50%;
    border-right: #008e54 solid 2px;
    padding: 0 2%;
}
.course-item.course-b {
    width: 25%;
    border-right: #008e54 solid 2px;
    padding: 0 2%;
}
.course-item.course-c {
    width: 25%;
    padding: 0 2%;
}
.course-items .flex {
      gap: 0;
}
.course-type {
    font-size: 1.2em;
    text-align: center;
    font-weight: 900;
    background: #008e54;
    border-radius: 99px;
    padding: 0.5em;
    line-height: 1em;
    margin-bottom: 1em;
    color: #fff;
}
.spot-name {
    font-size: 1em;
    font-weight: 600;
    margin-top: 0.6em;
    padding-bottom: 0.8em;
    text-align: center;
    line-height: 1.2;
    font-feature-settings: "palt";
}
.spot-name span.sup {
    font-size: 0.8em;
}


.spot-img img{
    border-radius: 0.5vw;
}
.spot .note {
    font-size: 0.7em;
    padding: 1em 0;
    display: block;
  text-align: right;
  color: #333;
}

.course-b .course-type {
    background: #3fa8ab;
}
.course-b .time-wrap .time.en {
    border: #3fa8ab solid 2px;
  color: #3fa8ab;
}
.course-b .spot-name {
color: #3fa8ab;
}
.course-b .spot:after {
  border-left: 2px dotted #3fa8ab;
}
.course-a .coution {
    padding-left: 0;
    padding-top: 2vw;
}


.spot {
    padding-top: 2em;
    position: relative;
}
.spot:after {
content: "";
  position: absolute;
  left: 50%; 
  top: 0;
  bottom: 0;
  border-left: 2px dotted #999;
	height: 1.8em;
}
.spot.first:after {
display: none;
}


.spot.first {
    padding-top:0;
}
.spot a {
transition: .4s;
}
.spot a:hover {
  opacity: .6;
transition: .4s;
}
.time-wrap .time.en {
    margin: 0 auto;
    line-height: 1em;
    border-radius: 99px;
    width: 5.3em;
    text-align: center;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 0;
    top: auto;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.coution  {
    padding-top: 7vw;
    padding-left: 1em;
}
.coution li {
font-size: 0.85em;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.6;
  padding-bottom: 0.3em;
}
.sec-title {
    font-size: 1.8em;
    text-align: center;
    font-weight: 900;
    padding-bottom: 0.5em;
    border-bottom: #008e54 solid 2px;
    width: 9em;
    margin: 0 auto;
    margin-bottom: 0.5em;
}
p.lead {
    width: 60%;
    margin: 0 auto;
    padding-bottom: 3vw;
    font-weight: 600;
}
.course-price {
    font-size: 0.95em;
    font-weight: 600;
    text-align: center;
    padding-bottom: 3vw;
  color: #333;
}
.course-a .course-item-wrap.wrap01 {
    padding-right: 3%;
}
.course-item-wrap.border {
    border-right: #008e54 solid 1px;
}
.course-a .course-item-wrap.wrap02 {
    padding-left: 3%;
}
.course-a .spot:after {
  border-left: 2px dotted #da2424;
}
.course-subtype {
    text-align: center;
    border-radius: 99px;
    padding: 0.5em;
    margin-bottom: 2em;
    font-weight: 700;
    color: #ffffff;
    background: #ff8585;
}

.course-a .time-wrap .time.en {
color: #da2424;
      border: #da2424 solid 2px;
}
.course-a .spot-name {
color: #da2424;
}
.course-a .course-type {
    background: #da2424;
}
.course-c .time-wrap .time.en {
color: #f46b18;
      border: #f46b18 solid 2px;
}
.course-c .spot-name {
color: #f46b18;
}
.course-c .course-type {
    background: #f46b18;
}
.course-c .spot:after {
  border-left: 2px dotted #f46b18;
}
.reserve {
    padding-top: 4vw;
    text-align: center;
}
.reserve-title {
    font-size: 2em;
    font-weight: 700;
    padding-bottom: 0.5em;
    color: #ea5414;
}
.reserve p {
    font-weight: 600;
    color: #ea5414;
}
.reserve-btn-item {
    width: 50%;transition: .4s;
}
.reserve-btn-item a {
    display: block;
    width: 100%;
    background: #ea5414;
    padding: 1em;
    color: #fff;
    border-radius: 1.5vw;
    position: relative;
    top: 0;
    box-shadow: 0 6px 0 #aa3504; /* 下に影をつけて立体感 */
    transition: top .2s ease, box-shadow .2s ease, background .2s ease;
}

.reserve-btn-item a:hover {
    background: #db4d11;
    top: 5px; /* 押し込む */
    box-shadow: 0 1px 0 #aa3504; /* 影を薄くして凹んだ感じに */
}
.reserve-btn-items.flex {
    gap: 1vw;
    padding-top: 1em;
}
.reserve-btn-item-day img {
    height: 2.3vw;
}
.reserve-btn-item-title {
    font-size: 1.4em;
    padding-top: 0.3em;
    font-weight: 700;
}
.reserve-btn-item-day {
    padding-top: 0.4vw;
}
.access-title {
    font-size: 1.6em;
    font-weight: 600;
	justify-content: center;
}.map {
    padding: 3vw 0;
}
.map iframe {
   width: 100%;
}
.ico-bus {
    width: 5vw;
}
.ico-car {
    width: 3vw;
}
.ico-train {
    width: 2vw;
}
.train.flex {
    justify-content: flex-start;
    align-items: center;
	gap:1vw;
}
.car.flex {
    justify-content: flex-start;
    align-items: center;
	padding-right: 2em;
	gap:1vw;
}

section.l-sec.access {
    padding-top: 8vw;
    padding-bottom: 6vw;
  font-feature-settings: "palt";
}
.sec-g {
    position: relative;
}
.break {
    position: relative;
}
.end {
    position: relative;
}
.ill {
    position: absolute;
    width: 9vw;
    z-index: 2;
}
.ill.ill01 {
    top: -6vw;
    right: 3vw;
}
.ill.ill02 {
    right: 0vw;
    top: 5vw;
}.ill.ill04 {
    right: -5vw;
}
.ill.ill03 {
    top: -1vw;
    right: 2vw;
}
.ill.ill06 {
    right: 0;
    top: 5vw;
}
.ill.ill07 {
    right: 2vw;
    top: 2vw;
}
.ill.ill11 {
    bottom: 4vw;
}.ill.ill10 {
    bottom: 17vw;
    right: 2vw;
}
.course-item {
    position: relative;
}
.ill.ill13 {
    right: -4vw;
    top: 9vw;
}
.ill.ill09 {
    right: -4vw;
    top: 14vw;
}
.ill.ill08 {
    left: -1vw;
    top: 1vw;
}
.access-title {
    font-size:2em;
    font-weight: 700;
    padding-bottom: 1em;
}
.koriyama {
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding: 1.5vw;
    border-top: #008e54 solid 1px;
    font-size: 0.9em;
}
.koriyama li {
    line-height: 1.5;
    padding-bottom: 0.1em;
}
.iwaki {
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding: 1.5vw;
    border-top: #008e54 solid 1px;
    font-size: 0.9em;
}
.iwaki li {
    line-height: 1.5;
    padding-bottom: 0.1em;
}
.location {
    width: 6em;
    background: #008e54;
    border-radius: 99px;
    text-align: center;
    height: 2em;
    line-height: 2em;
    color: #fff;
    font-weight: 600;
    margin-right: 1em;
}
.access-etc.flex {
    justify-content: flex-start;
	align-items: center;
    border-top: #008e54 solid 1px;
    padding: 1.5em;
    font-size: 0.9em;
}
.access-img {
    position: absolute;
    bottom: 0;
    width: 22vw;
    right: 0;
}
.bus {
    position: relative;
    padding-top: 10vw;
}


.ill.ill12 {
    top: -7vw;
    left: 12vw;
}
.footer-name {
    font-size: 1.5em;
    font-weight: 700;
    padding-bottom: 0.5em;
}
.footer-inner p.sup {
    font-size: 0.75em;
}
.tel {
    font-size: 1.2em;
    font-weight: 700;
}
.mail {
    font-size: 1em;
    font-weight: 700;
}

.bnr-items.flex {
    padding-top: 2vw;
    align-items: center;
    gap: 4vw;
}
.footer-inner p.sup {
    font-size: 0.75em;
    line-height: 1.5;
    padding-top: 2em;
}
.sponcer {
    padding-top: 6vw;
    text-align: center;
}
.sponcer-title {
    font-size: 1.1em;
    letter-spacing: 1em;
    font-weight: 600;
    color: #333;
}
.sponcer a {
transition: .4s;
}
.sponcer a:hover {
	opacity: .6;
transition: .4s;
}




@media screen and (max-width:1200px) {
body {
    font-size: 1.2vw;
}
	.hero {
    width: 75%;
}
	.inner-min {
    width: 75%;
}
	
}


@media screen and (max-width:900px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  body {
    font-size: 16px;
}  
	.hero {
    width: 80%;
}
		.inner-min {
    width: 80%;
}
	.schedule .flex {
		display: block;
	}
	.timeschedule {
    width: 100%;
}.reserve {
    padding-top: 60px;
    text-align: center;
}.day {
    background: #008e54;
    padding: 10px 15px;
    text-align: left;
    border-radius: 0 10px 0 0;
    width: 140px;
}.ill {
    position: absolute;
    width: 80px;
    z-index: 2;
}.ill.ill01 {
    top: -50px;
    right: 30px;
}.ill.ill02 {
    right: 0vw;
    top: 50px;
}.timeschedule {
    width: 100%;
    padding: 30px 0;
}
	
	.timeschedule-items {
    background: #fff;
    padding: 30px;
    border-radius: 0 10px 10px;
    border: #008e54 solid 3px;
    height: 100%;
}.coution {
    padding-top: 0;
    padding-left: 1em;
}.ill.ill04 {
    right: -5px;
}p.lead {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 40px;
    font-weight: 600;
}.ill.ill12 {
    top: -50px;
    left: 90px;
}.course-items.flex {
    background: #fff;
    gap: 0;
    padding: 20px;
    border-radius: 0 10px  10px;
    border: #008e54 solid 3px;
    flex-wrap: wrap;
}
	.course-item.course-a {
    width: 100%;
    border-right: none;
    padding: 0;
}
	.course-item.course-a {
    padding-bottom: 40px;
}.course-item.course-c {
    width: 50%;
    padding: 0 2%;
}.course-item.course-b {
    width: 50%;
    border-right: #008e54 solid 1px;
    padding: 0 2%;
}.access-title {
    font-size: 1.4em;
    font-weight: 700;
    padding-bottom: 1em;
}.reserve-btn-item-day img {
    height: 24px;
}.reserve-btn-item-title {
    font-size: 17px;
    padding-top: 0.3em;
    font-weight: 700;
}.inner-min {
    width: 86%;
}
}


@media screen and (max-width:650px) {
	body {
    font-size: 15px;
}
.hero-txt {
    padding: 20px 0 0;
    margin-top: 20px;
    font-weight: 400;
    font-size: 0.95em;
}.reserve p {
    font-weight: 600;
    color: #ea5414;
    line-height: 1.5;
}.timeschedule-items {
    background: #fff;
    padding: 20px;
    border-radius: 0 10px 10px;
    border: #008e54 solid 3px;
    height: 100%;
}.item-title {
    font-size: 19px;
    line-height: 1.3em;
    font-weight: 700;
}.item-speaker {
    font-size: 12px;
}.time.en {
    border: #008e54 solid 1px;
    line-height: 1em;
    border-radius: 99px;
    width: 5em;
    text-align: center;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 1em;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: #fff;
    font-size: 14px;
}.item-detail {
    padding-left: 6em;
}.sec-subtitle {
    font-size: 18px;
}.coution li {
    font-size: 12px;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.6;
    padding-bottom: 0.3em;
}.ill.ill12 {
    top: -50px;
    left: 0;
}p.lead {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 40px;
    font-weight: 400;
}.course-type {
    font-size: 18px;
}.course-price {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 1em;
    color: #333;
}.spot-name {
    font-size: 14px;

}
	.spot:after {
    height: 20px;
}
	.course-a .spot:after {
    border-left: 1px dotted #da2424;
}
	.spot {
    padding-top: 24px;
    position: relative;
}.spot .note {
    font-size: 10px;
    padding: 8px 0;
    display: block;
    text-align: right;
    color: #333;
}.coution li {
    font-size: 11px;
}.ill.ill13 {
    right: -40px;
    top: 100px;
}.inner {
    width: 90%;
    margin: 0 auto;
    position: relative;
}.course-item.course-b {
    width: 50%;
    border-right: #008e54 solid 1px;
    padding: 0;
    padding-right: 3%;
}.course-item.course-c {
    width: 50%;
    padding: 0;
    padding-left: 3%;
}.course-b .spot:after {
    border-left: 1px dotted #3fa8ab;
}.course-c .spot:after {
    border-left: 1px dotted #f46b18;
}.ico-bus {
    width: 80px;
}.koriyama {
    position: relative;
    display: block;
    justify-content: flex-start;
    padding: 15px 0;
    border-top: #008e54 solid 1px;
    font-size: 14px;
    flex-wrap: wrap;
}.location {
    width: 6em;
    background: #008e54;
    border-radius: 99px;
    text-align: center;
    height: 2em;
    line-height: 2em;
    color: #fff;
    font-weight: 600;
    margin-right: 1em;
    margin-bottom: 10px;
}
.iwaki {
    position: relative;
    display: block;
    justify-content: flex-start;
    padding: 15px 0 40px;
    border-top: #008e54 solid 1px;
    font-size: 14px;
}.koriyama li {
    line-height: 1.5;
    padding-bottom: 10px;
}
	.access-etc.flex {
    justify-content: flex-start;
    align-items: center;
    border-top: #008e54 solid 1px;
    padding: 1.5em;
    font-size: 14px;
    display: block;
}
	.ico-car {
    width: 30px;
}
	.ico-train {
    width: 30px;
}
	.ico-train img {
    width: 80%;
}
	.car.flex {
    justify-content: flex-start;
    align-items: center;
    padding-right: 2em;
    gap: 10px;
    padding-bottom: 10px;
}
	.access-img {
    position: absolute;
    bottom: 0;
    width: 200px;
    right: 0;
}.footer-name {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 0.5em;
}.tel {
    font-size: 14px;
    font-weight: 700;
}.mail {
    font-size: 14px;
    font-weight: 700;
}.footer-inner p.sup {
    font-size: 11px;
    line-height: 1.5;
    padding-top: 2em;
    width: 90%;
    margin: 0 auto;
    text-align: left;
}footer {
    padding: 30px 0 30px;
    color: #fff;
    text-align: center;
}
}
@media screen and (max-width:450px) {
	
	.hero {
    width: 85%;
    padding-top: 60px;
}.hero-txt {
    padding: 20px 0 0;
    margin-top: 20px;
    font-weight: 400;
    font-size: 14px;
}.reserve-title {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 0.5em;
    color: #ea5414;
}.reserve-btn-items.flex {

    display: block;
}.reserve-btn-item {
    width: 100%;
    transition: .4s;
    margin-bottom: 10px;
}.reserve-btn-item-title {
    font-size: 16px;
    padding-top: 0.3em;
    font-weight: 700;
}
	.reserve-btn-item a {
    display: block;
    width: 100%;
    background: #ea5414;
    padding: 12px;
    color: #fff;
    border-radius: 10px;
    position: relative;
    top: 0;
    box-shadow: 0 4px 0 #aa3504;
    transition: top .2s ease, box-shadow .2s ease, background .2s ease;
}.item-detail {
    padding-left: 5em;
    padding-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}.timeschedule-items {
    background: #fff;
    padding: 12px 12px 24px;
    border-radius: 0 10px 10px;
    border: #008e54 solid 2px;
    height: 100%;
}.item-title {
    font-size: 16px;
    line-height: 1.4em;
    font-weight: 600;
}.item-speaker {
    font-size: 11px;
}.time.en {
    border: #008e54 solid 1px;
    line-height: 1em;
    border-radius: 99px;
    width: 4.5em;
    text-align: center;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 1em;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: #fff;
    font-size: 13px;
}.item-subtitle {
    font-size: 13px;
    line-height: 1.3em;
    padding-top: 0.4em;
}.ill {
    position: absolute;
    width: 50px;
    z-index: 2;
}.ill.ill12 {
    top: -20px;
    left: 0;
}.sec-title {
    font-size: 18px;
    text-align: center;
    font-weight: 900;
    padding-bottom: 14px;
    border-bottom: #008e54 solid 2px;
    width: 9em;
    margin: 0 auto;
    margin-bottom: 14px;
}p.lead {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 40px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
}.course-items.flex {
    background: #fff;
    gap: 0;
    padding: 10px;
    border-radius: 0 10px  10px;
    border: #008e54 solid 2px;
    flex-wrap: wrap;
}.spot-name {
    font-size: 12px;
	font-weight: 500;
}.inner {
    width: 92%;
    margin: 0 auto;
    position: relative;
}.spot {
    padding-top: 18px;
    position: relative;
}.coution li {
    font-size: 10px;
}.course-type {
    font-size: 15px;
}.spot-img img {
    border-radius: 8px;
}.reserve p {
    font-weight: 500;
    color: #ea5414;
    line-height: 1.5;
    font-size: 14px;
}.ico-bus {
    width: 40px;
}section.l-sec.access {
    padding-top: 30px;
    padding-bottom: 40px;
    font-feature-settings: "palt";
}.access-title {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 1em;
}.flex {
    gap: 12px;
}span.access-day {
    font-weight: 600;
	font-size: 14px;
}.koriyama li {
    line-height: 1.5;
    padding-bottom: 10px;
    font-size: 13px;
}.access-etc.flex {
    justify-content: flex-start;
    align-items: center;
    border-top: #008e54 solid 1px;
    padding: 1.5em 0;
    font-size: 13px;
    display: block;
}.bnr-items.flex {
    padding-top: 30px;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}.bnr-item {
    width: calc(50% - 20px);
    margin-bottom: 20px;
}.sponcer {
    padding-top: 60px;
    text-align: center;
}.sponcer-title {
    font-size: 15px;
    letter-spacing: 1em;
    font-weight: 600;
    color: #333;
}.iwaki li {
    line-height: 1.5;
    padding-bottom: 0.1em;
    font-size: 13px;
}
	.bnr-items.flex {
    padding-top: 30px;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
	.fukushima img {
    width: 50%;
}.inner {
    width: 94%;
    margin: 0 auto;
    position: relative;
}.ill.ill01 {
    top: -50px;
    right: 30px;
    width: 80px;
}.ill.ill03 {
    top: 10px;
    right: 0px;
    width: 70px;
}.ill.ill06 {
    right: 0;
    top: 10px;
    width: 80px;
}.ill.ill07 {
    right: 2vw;
    top: 2vw;
    width: 70px;
}.ill.ill08 {
    left: 0;
    top: 30px;
    width: 70px;
}.ill.ill09 {
    right: 0;
    top: 14vw;
    width: 50px;
    display: none;
}.ill.ill13 {
    right: 0;
    top: 100px;
    width: 40px;
}.ill.ill10 {
    bottom: 17vw;
    right: 2vw;
    width: 80px;
}.ill.ill11 {
    bottom: 0;
    width: 69px;
}.map iframe {
    width: 100%;
    height: 300px;
}
}
