@charset "UTF-8";
/*
Theme Name: Seed Commerce
Description: Seed Commerce
Version: 1.0
Author: Seed Commerce
*/
* {-webkit-appearance: none; }
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap'); */
@font-face {
  font-family: "Zen Kaku Gothic New";
  src:
    url("./font/ZenKakuGothicNew-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Oswald";
  src:
    url("./font/Oswald-VariableFont_wght.ttf") format("truetype");
}
@media screen and (min-width:768px) {
  html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
  img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table,
  caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, address, hgroup, menu, nav, output, ruby, section, sum mary, time, mark, audio, video,
  p.date_cat, p.link a, p.link, p.position {
    font-size: 18px;
    font-family: "Zen Kaku Gothic New","Hiragino Sans","Hiragino Kaku Gothic ProN",sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #222;
    line-height: 1.3;
    word-break: break-word;
    letter-spacing: 0;
  }
  .sp { display: none; }
}
@media screen and (max-width:767px) {
  html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
  img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table,
  caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, address, hgroup, menu, nav, output, ruby, section, sum mary, time, mark, audio, video,
  p.date_cat, p.link a, p.link, p.position {
    font-size: 16px;
    font-family: "Zen Kaku Gothic New","Hiragino Sans","Hiragino Kaku Gothic ProN",sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #444;
    line-height: 1.3;
    word-break: break-word;
    letter-spacing: 0;
  }
  .pc { display: none; }
}
aside h1,
aside ul li a,
main h2,
ul.menu_button li a,
#g-nav-list h1,
#g-nav-list ul li a {
  /*font-family: "Oswald";*/
}
img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
a { transition: 0.5s; }
a:hover {
  opacity: 0.6;
  transition: 0.5s;
}
.whole {
  /*max-width: 1400px;
  margin: 0 auto;*/
}
body {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
 /* animation: bgchange 10s ease infinite; */
}
@keyframes bgchange{
  0%   {background:#ededea;}
  50%  {background:#ddd;}
  100% {background:#ededea;}
}

/* MENU */
@media screen and (min-width:768px) {
  header .headmenu { top: 25px; right: 25px; }
  #g-nav div#g-nav-list { width: 100%; position: absolute; top: 120px; left: 0; padding-bottom: 0; }
  #g-nav.panelactive {
    background-color: #f6ebeb;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width: 420px;
  }
  header .headmenu.active span { top: 90px; }
  #g-nav {
    position:fixed;
    z-index: 999;
    top:0;
    right: 0;
    width:420px;
    opacity: 0;
    height: 100%;
    background:#fff;
    transition: all 0.3s;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    pointer-events: none;
  }
  #g-nav-list li a {
    font-size: 17px;
  }
  #g-nav-list p,
  #g-nav-list p a { font-weight: bold; font-size: 15px; }
  header {
    /* z-index: 1000;
    width: 100%;
    position: fixed;
    top: 0;
    height: 90px;
    background-color: #f6ebeb; */
    display: none;
  }
  header .head_title {
    text-align: center;
    z-index: 80;
    position: relative;
    padding-top: 25px;
  }
  header .head_title img { width: 450px; }
  #g-nav.panelactive
	{ 
	  opacity: 1;
	  top: 90px;
	  right: 0;
	  pointer-events: auto;
	  overflow: auto;
	}
  header .headmenu {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 90;
    width: 50px;
    height:50px;
  }
  .headmenu span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    background: #fff;
    width: 45%;
  }
  .headmenu span:nth-of-type(1) {
    top:15px; 
  }
  .headmenu span:nth-of-type(2) {
    top:23px;
  }
  .headmenu span:nth-of-type(3) {
    top:31px;
  }
  .headmenu.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .headmenu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .headmenu.active span:nth-of-type(3){
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(45deg);
      width: 30%;
  }
  .header_logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 70%;
    margin: 0 auto;
  }
  /*
  .header_logo > div.logo_icon {
    width: 10%;
  }
  .header_logo > div.header_catch {
    width: 85%;
  } */
  div.sp_fv { display: none; }
}

@media screen and (max-width:767px) {
  header .head_title {
    text-align: center;
    z-index: 80;
    position: relative;
  }
  header .headmenu { top: 10px; right: 10px; }
  #g-nav div#g-nav-list { width: 100%; margin: 0 auto; padding: 0; }
  #g-nav.panelactive { background-color: #ffffff; background-size: cover; }
  #g-nav {
    position:fixed;
    z-index: 999;
    top:0;
    right: 0;
    width:100%;
    opacity: 0;
    height: 100%;
    background:#fff;
    transition: all 0.3s;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    pointer-events: none;
  }
  #g-nav div#g-nav-list { width: 100%; position: absolute; top: 80px; left: 0; padding-bottom: 100px; }
  #g-nav-list li a,
  #g-nav-list p,
  #g-nav-list p a {
    font-size: 16px;
  }
  header {
    z-index: 1000;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: #fff;
  }
  header .head_title img { width: 150px; }
  #g-nav.panelactive { 
	  opacity: 1;
	  top: 0;
	  right: 0;
	  pointer-events: auto;
	  overflow: hidden;
	  width: 100%;
	}
  header .headinsta {
    position: absolute;
    display: flex;
    width: 30px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    top: 10px;
    right: 60px;
  }
  header .headmenu {
    position: absolute;
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
  }
  .headmenu span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 13px;
    height: 3px;
    background: #fff;
    width: 50%;
  }
  #g-nav-list li {
    text-align: center;
  }
  .headmenu span:nth-of-type(1) {
    top:15px; 
  }
  .headmenu span:nth-of-type(2) {
    top:23px;
  }
  .headmenu span:nth-of-type(3) {
    top:31px;
  }
  .headmenu.active span:nth-of-type(1) {
    top: 18px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }
  .headmenu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .headmenu.active span:nth-of-type(3){
      top: 30px;
      left: 13px;
      transform: translateY(-6px) rotate(45deg);
      width: 50%;
  }
  #g-nav-list ul li a img {
    /*width: 60px;*/
    margin-right: 60px;
  }
  #g-nav-list ul li a span[data-ruby]::before {
    width: 300px;
  }
  #g-nav-list .header_catch h1 {
    font-size: 1.7rem;
  }
  #g-nav-list .logo_icon {
    margin: 10px auto 20px;
    width: 50px;
  }
  body.active {
    height: 100%;
    overflow: hidden;
  }
  #g-nav-list li a {
    display: flex;
    align-items: center;
  }
  #g-nav-list li a span {
    margin-top: 15px;
  }
  div.sp_fv {
    padding: 20px 0;
    background-color: #ededea;
  }
  div.sp_fv .logo_icon {
    width: auto;
    margin: 0 auto;
    max-width: 200px;
  }
  div.sp_fv .header_catch h1 {
    font-family: "Oswald";
    font-size: 2rem;
    margin: 40px auto 0;
  }
  div.sp_fv .header_catch h1 span[data-ruby]::before {
    font-size: 1rem;
  }
}
.headmenu {
  position: relative;
  background: #216036;
  cursor: pointer;
  border-radius: 50%;
}
header .headmenu.active {
  z-index: 1000;
}
#g-nav-list li {
  margin: 40px auto;
}
#g-nav-list li a {
  color: #444;
  text-align: left;
  width: 100%;
  margin: 20px auto;
  padding: 0 8px;
}
#g-nav-list p {
	margin-bottom:5px;
}
#g-nav-list p,
#g-nav-list p a { font-weight: bold; }

/* font */
h1 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
  line-height: 3rem;
  margin: 0 auto 10px;
}
h1 span[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 1.2rem;
  letter-spacing: 4px;
}
h2 {
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  line-height: 3rem;
  margin: 40px auto;
  letter-spacing:0.05em;
}
h2.subtitle  {
  font-size: 2rem;
  line-height: 1.2em;
  margin: 100px auto 0;
}
h2.subtitle span {
  display: block;
  width: 100%;
}
h2.subtitle span[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
span.data_ruby {
  font-size: 0.8rem;
  letter-spacing: 2px;
  line-height: 1.3;
  margin-bottom: 15px;
}
h3 {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  line-height: 2rem;
  margin: 30px auto;
}
[data-ruby] {
  position: relative;
  font-weight: bold;
}
[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 0.7rem;
  letter-spacing: 4px;
}
.menubox [data-ruby]::before {
  width: 300px;
}

/* TOP */
@media screen and (min-width:1201px) {
  .whole {
    display: grid;
		grid-template-columns: 6fr 4fr 1fr;
  }
}
@media screen and (min-width:1024px) {
  .whole aside {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    text-align: center;
  }
  .whole main {
    background-color: #fff;
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
  }
  section.fv {
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width:1023px) {
  .whole aside {
    display: none;
  }
  .whole main {
    width: 100%;
    overflow: hidden;
  }
}
@media screen (min-width:768px) and (max-width:1023px) {
  section.fv {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width:1024px) and (max-width:1200px) {
  .whole {
    display: grid;
		grid-template-columns: 5fr 5fr 0.5fr;
  }
}
@media screen and (min-width:768px) {
  .whole aside .content {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    /*padding-top: 50px;*/
    height: calc(100vh - 50px);
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
	background:bottom center / contain no-repeat url(./images/bg-buna-img.png);
  }
  .whole aside .content::-webkit-scrollbar {
    display: none;
  }
  .whole aside ul {
    margin: 0 auto 0;
    display: inline-block;
    width: 60%;
  }
  .whole aside ul li {
    margin: 0;
    text-align: left;
    vertical-align: middle;
  }
  .whole aside ul li:last-child a {
    border-bottom: 3px solid #fff;
  }
  .whole aside ul li a {
    padding: 15px 0px 15px;
    /*display: block;
    width: 100%;
    position: relative;
    border-top: 3px solid #fff;*/
    display: flex;
	justify-content:space-between;
    align-items: center;
  }
  
	.whole aside ul li a p {
		margin-bottom:5px;
	}
  .whole aside ul li a:after {
    content: "";
    /*background-image: url("./images/mainnav_link.png");*/
    background-size: cover;
    width: 10px;
    height: 14px;
    position: absolute;
    top: 50%;
    right:  10px;
    transform: translate(-10px, -50%);
  }
  .whole aside ul li a,
  .whole aside ul li ruby {
    font-size: 1.3rem;
    font-family: 'Oswald';
    transition: .3s;
  }
  .whole aside ul li a:hover {
    transform: translateY(-4px);
  }
  .whole aside ul li a img {
    /*width: 70px;*/
    margin-right: 20px;
  }
  .whole aside ul li a span {
    margin-top: 15px;
  }
  .whole main .content {
    padding: 0 20px;
    position: relative;
  }
  section.menu_area {
    padding: 40px 0 40px;
    background-color: #ededea;
  }
  section.contact {
    padding: 100px 0 40px;
    background-color: #ededea;
  }
  section.menu_area h2,
  section.contact h2 {
    margin: 0 auto 40px;
  }
  .contact_bn {
    margin-bottom: 15px;
  }
  .contact_bn img {
    max-width: 250px;
    animation: 2s ease infinite alternate rotation;
  }
  /*
  .contact_bn img:hover {
    max-width: 250px;
    transform: rotateZ( 5deg );
  }
  */ 
	.main_logo {
		text-align:left!important;
		margin-bottom:30px;
		/*margin-bottom:60px;*/
	}
  .main_logo img {
	  max-width: 240px;
    /*max-width: 300px;
    padding-left:115px;*/
  }
}
@media screen and (max-width:767px) {
  .whole main .content {
    padding: 0 20px;
    position: relative;
  }
  section.menu_area {
    padding: 40px 0 20px;
    background-color: #ededea;
  }
  section.contact {
    padding: 50px 0 20px;
    background-color: #ededea;
  }
  section.menu_area h2,
  section.contact h2 {
    margin: 0 auto 40px;
  }
  .contact_bn {
    margin: 30px auto;
    text-align: center;
  }
  .contact_bn img {
    max-width: 200px;
    animation: 2s ease infinite alternate rotation;
  }
  .main_logo {
	text-align:center;
    /*margin:0 0 10px 36px;
    text-align: left;*/
  }
  .main_logo img {
    max-width: 215px;
  }
  section.fv {
    width: 100%;
    height: 300px;
  }
}
section.fv img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@keyframes rotation{
  0%{ transform: rotateZ( -5deg );}
  100%{ transform: rotateZ( 5deg ); }
}

/* course */
@media screen and (min-width:768px) {
  div.office_logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 50px auto 0;
  }
}
@media screen and (max-width:767px) {
  div.office_logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0;
  }
}
div.course {
  margin: 100px auto 0;
}
p.tranquwell_logo {
  text-align: center;
  max-width: 180px;
  margin: 30px auto;
}
p.image_left,
div.image_left {
  width: 80%;
  margin: 50px auto 50px -20px;
}
p.image_left.kv {
  width: 90%;
}
p.image_center {
  width: 90%;
  margin: 50px auto;
  text-align: center;
}
p.image_right,
div.image_right {
  width: 80%;
  margin: 50px -20px 50px auto;
}
p.text_right {
  margin: 0 -20px 1em auto;
  width: 80%;
}
div.members p.staff {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.2em;
  letter-spacing: 2px;
  margin-bottom: 1em;
}
div.members p.staff span {
  font-size: .8rem;
  font-weight: normal;
}
div.members p.staff span.role_jp,
div.members p.staff span.role_jp a,
div.members p.staff span.profile_text,
div.members p.staff span.profile_text a {
  font-size: .7rem;
}
div.members p.staff span.profile_text {
  display: block;
  margin-top: 1em;
}
div.course p,
div.members p {
  letter-spacing: 2px;
  line-height: 1.5em;
  font-size: .9rem;
  line-height: 2em;
  margin-bottom: 1em;
}
div.course p:last-child,
div.members p:last-child {
  margin-bottom: 0;
}
div.course p.onlytext {
  margin-top: 50px;
}
div.office h3 {
  margin: 10px auto 0;
  line-height: 1.3em;
  font-size: 1.3rem;
}
div.office h3 span {
  font-size: .7rem;
  padding-top: 10px;
  display: block;
}
div.office h4 {
  margin: 40px auto 20px;
  text-align: center;
  font-size: 1.3rem;
}
div.office h4 span {
  border-bottom: 1px solid #000;
  display: inline-block;
  padding: 0 20px 10px;
}
div.office p {
  margin: 20px auto 0;
  font-size: .7rem;
  line-height: 1.4rem;
  text-align: center;
}
div.office_logo > div {
  width: 40%;
  max-width: 150px;
  margin: 2%;
}

/* Create more seeds */
.company_info {
  border-left: 2px solid #c3b089;
  padding-left: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  max-width: 250px;
  margin: 40px auto 0;
}
.company_info ul li {
  margin: 0 0 10px;
  font-weight: bold;
  vertical-align: middle;
}
.company_info ul li:last-child {
  margin: 0;
}
.company_info ul li img.icon {
  width: 20px;
  margin-right: 20px;
  vertical-align: middle;
}
.company_info ul li a {
  text-decoration: underline;
  position: relative;
  padding-right: 20px;
  font-weight: bold;
}
.company_info ul li a:hover {
  text-decoration: none;
}
.company_info ul li a:after {
  content: "";
  background-image: url("./images/flow_right.png");
  background-size: cover;
  width: 9px;
  height: 12px;
  position: absolute;
  top: 50%;
  right:  0;
  transform: translate(0, -50%);
}
img.company_logo {
  max-width: 150px;
  margin: 10px auto 30px;
  display: block;
}

/* contact */
.form_box table {
  width: 100%;
}
.form_box table tr th,
.form_box table tr td {
  width: 100%;
  display: block;
  text-align: left;
}
.form_box table tr th {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: .8rem;
  padding: 3px 0;
}
.form_box table tr th .require {
  background-color: #216036;
  color: #fff;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: .7rem;
  margin-left: 10px;
  padding: 3px 10px;
}
.form_box table tr td {
  margin-bottom: 30px;
}
.form_box table tr:last-child td {
  margin-bottom: 0;
}
.form_box table tr td input[type="text"],
.form_box table tr td input[type="email"],
.form_box table tr td textarea {
  padding: 15px 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: calc(100% - 20px);
}
.form_box input[type="submit"] {
  background-color: #216036;
  border: 1px solid #216036;
  display: block;
  padding: 10px 100px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  margin: 40px auto 0 !important;
  font-size: 1rem;
  cursor: pointer;
}
.form_box input[type="submit"]:hover {
  background-color: #fff;
  border: 1px solid #216036;
  color: #216036;
}

/* 404 */
.center {
  text-align: center;
}
p.button_link {
  display: block;
  margin: 20px auto;
  text-align: center;
}
p.button_link a {
  background-color: #216036;
  border: 1px solid #216036;
  display: inline-block;
  padding: 10px 100px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  margin: 40px auto 0 !important;
  font-size: 1rem;
  cursor: pointer;
}
p.button_link a:hover {
  background-color: #fff;
  border: 1px solid #216036;
  color: #216036;
}

/* アニメーション */

.fade_left {
  position: relative;
  left: -40px;
  opacity: 0;
  transition: all 1s;
}
.fade_left.active {
  left: 0;
  opacity: 1;
}
.fade_right {
  position: relative;
  right: -40px;
  opacity: 0;
  transition: all 1s;
}
.fade_right.active {
  right: 0;
  opacity: 1;
}
.fade_bottom {
  position: relative;
  bottom: -40px;
  opacity: 0;
  transition: all 1s;
}
.fade_bottom.active {
  bottom: 0;
  opacity: 1;
}
.fv figure {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.fv figure::before {
  content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: #216036;
}
.fv.active figure::before {
  animation: barAnime forwards 1.5s 1 ease 0.5s normal;
}
.fv figure img {
  opacity: 0;
}
.fv.active figure {
  /*animation: bright 4s linear infinite;*/
}
.fv.active figure img {
  animation: photoAnime forwards 10s ease normal;
}
p.image_right.imgrotation,
p.image_left.imgrotation,
div.image_left.imgrotation,
div.image_right.imgrotation img {
  animation: 2s ease-in infinite alternate imgrotation;
}
@keyframes imgrotation {
  0%{ transform: rotateZ( 0deg );}
  100%{ transform: rotateZ( 3deg ); }
}
@keyframes bright {
	0% {
    filter: brightness(100%);
  }
  50% {
    filter: brightness(140%);
  }
	100% {
    filter: brightness(100%);
	}
}
@keyframes barAnime{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	68% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@keyframes photoAnime{
	0% {
    transform: scale(1);
  }
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
	100% {
    opacity: 1;
    transform: scale(1.05);
  }
}
div.deco {
  position: relative;
  margin-right: -20px;
}
div.deco img {
  width: 242px;
  height: auto;
}
.offsetElement {
  /* ▼path()関数にペースト */
  offset-path: path("m351,78s-94-.72-191-.72c-82,0-121-41.28-121-94.28");
  offset-rotate: auto 90deg;
  animation: move 1s linear infinite;
  width: 41px;
  height: 41px;
  background-image: url("./images/deco.gif");
  position: absolute;
  top: 0;
}
@keyframes move {
to {
  offset-distance: 100%;
}
}

/* SVG anime */
@media screen and (min-width:768px) {
  .svg_anime_1 svg {
    width: 130px;
    height: auto;
    position: absolute;
    bottom: -22%;
    right: -31%;
  }
  .svg_anime_2 svg {
    width: 170px;
    height: auto;
    position: absolute;
    bottom: -11%;
    right: -13%;
  }
  .svg_anime_3 svg {
    width: 170px;
    height: auto;
    position: absolute;
    bottom: -3%;
    right: -13%;
  }
}
@media screen and (max-width:767px) {
  .svg_anime_1 svg {
    width: 130px;
    height: auto;
    position: absolute;
    bottom: -30%;
    right: -35%;
  }
  .svg_anime_2 svg {
    width: 170px;
    height: auto;
    position: absolute;
    bottom: -10%;
    right: -17%;
  }
  .svg_anime_3 svg {
    width: 170px;
    height: auto;
    position: absolute;
    bottom: -5%;
    right: -15%;
  }
}
.svg_anime_1 img,
.svg_anime_2 img,
.svg_anime_3 img {
  z-index: 2;
  position: relative;
}
div.active .animebar1-1 {
  -webkit-animation: animate-svg-stroke-1 3s ease-out 0s both;
  animation: animate-svg-stroke-1 3s ease-out 0s both;
}
div.active .animebar1-2 {
  -webkit-animation: animate-svg-stroke-2 3s ease-out 0.12s both;
  animation: animate-svg-stroke-2 3s ease-out 0.12s both;
}
div.active .animebar2-1 {
  -webkit-animation: animate-svg-stroke-3 3s ease-out 0s both;
  animation: animate-svg-stroke-3 3s ease-out 0s both;
}
div.active .animebar2-2 {
  -webkit-animation: animate-svg-stroke-4 3s ease-out 0.12s both;
  animation: animate-svg-stroke-4 3s ease-out 0.12s both;
}
@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 716px;
    stroke-dasharray: 716px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 716px;
  }
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 716px;
    stroke-dasharray: 716px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 716px;
  }
}
@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 434.2528076171875px;
    stroke-dasharray: 434.2528076171875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 434.2528076171875px;
  }
}
@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 434.2528076171875px;
    stroke-dasharray: 434.2528076171875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 434.2528076171875px;
  }
}
@-webkit-keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 714px;
    stroke-dasharray: 714px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 714px;
  }
}
@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 714px;
    stroke-dasharray: 714px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 714px;
  }
}
@-webkit-keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 365.98321533203125px;
    stroke-dasharray: 365.98321533203125px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 365.98321533203125px;
  }
}
@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 365.98321533203125px;
    stroke-dasharray: 365.98321533203125px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 365.98321533203125px;
  }
}



/* balloon */
.balloon {
  position: relative;
  width: 80%;
  padding: 20px 10px;
  background: #f7f3ef;
  border-radius: 15px;
  outline: none;
  line-height: 2em;
  box-shadow: 4px 5px 3px rgba(0, 0, 0, 0.3);
}
.balloon:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 30px solid #f7f3ef;
  filter: drop-shadow(4px 5px 3px rgba(0, 0, 0, 0.3));
}
/*
.balloon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 20%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  transform: skewX(-25deg);
  animation: shine 1.7s infinite;
  animation-delay: 2s;
}
@keyframes shine {
  100% {
    left: 105%;
  }
}*/

/* button */
.menu_button {
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.menu_button li {
  width: 40%;
  margin: 1%;
  display: inline-table;
}
.menu_button li a {
  display: table-cell;
  width: 100%;
  padding: 10px 0;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  height: 60px;
  vertical-align: middle;
}
.menu_button li.color_1 a {
  background-color: #216036;
  border: 1px solid #216036;
}
.menu_button li.color_1 a:hover {
  background-color: #fff;
  border: 1px solid #216036;
  color: #216036;
}
.menu_button li.color_2 a {
  background-color: #C0B5A3;
  border: 1px solid #C0B5A3;
}
.menu_button li.color_2 a:hover {
  background-color: #fff;
  border: 1px solid #C0B5A3;
  color: #C0B5A3;
}
.menu_button li.color_3 a {
  background-color: #958D89;
  border: 1px solid #958D89;
}
.menu_button li.color_3 a:hover {
  background-color: #fff;
  border: 1px solid #958D89;
  color: #958D89;
}
.menu_button li.color_4 a {
  background-color: #6d6157;
  border: 1px solid #6d6157;
}
.menu_button li.color_4 a:hover {
  background-color: #fff;
  border: 1px solid #6d6157;
  color: #6d6157;
}


/* Footer */
@media screen and (min-width:768px) {
  /*footer {
    padding: 50px 0 10px;
  }*/
  footer .logo img {
    max-width: 450px;
  }
  footer ul {
    margin: 50px auto 100px;
  }
  footer p.copyright {
    padding: 20px 0;
  }
}
@media screen and (max-width:767px) {
  /*footer {
    padding: 25px 0 0;
  }*/
  footer .logo img {
    width: 60%;
  }
  footer ul {
    margin: 25px auto 25px;
  }
  footer ul li a {
    font-size: 12px;
  }
  footer p.copyright {
    font-size: 10px;
    padding: 10px 0;
  }
}
footer {
  width: 100%;
  text-align: center;
}
footer ul li {
  display: inline-block;
  margin: 0 10px;
}
footer ul li a:before {
  content: "・";
}
footer p.copyright {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
}

/* Google recapthca */
div.grecaptcha-badge {
  z-index: 2;
}

/* 20241001追加 */
small {
	font-size:12px;
}
.header_catch {
	margin-bottom:20px;
}
.header_catch p {
	font-size:16px;
	font-weight:600;
	letter-spacing:0.1em;
	margin-top:10px;
}
.text-primary {
	color:#216036;
}
.text-shizuku {
	color:#41a6a9;
}
.text-white {
	color:#ffffff;
}
.text-red {
	color:#B70011;
}
.text-center {
	text-align:center!important;
}
.text-left {
	text-align:left!important;
}
.text-right {
	text-align:right!important;
}
.bg-black {
	background-color:#231815;
}
.bg-gray {
	background-color:#ededea;
}
.bg-light {
	background-color:#E5EEEF;
}
.bg-light-blue {
	background-color:#d1eced;
	padding:40px 0!important;
}
.bg-light-blue .service_contents h3 {
	margin:10px auto;
}
.bg-light-blue .service_contents p {
	margin:10px auto;
	line-height:1.6em;
}
.bg-light-blue .service_contents div {
	padding:20px 0;
	border-bottom:1px dashed #444;
}
.bg-light-blue .service_contents div:last-child {
	border-bottom:none;
}
.bg-tranquwell.menu, .bg-shizuku.menu, .bg-biz.menu {
	display:block;
	width:400px;
	padding:10px;
	margin:0 auto 10px;
	border-radius:0 20px 0 0;
}
.bg-tranquwell p, .bg-shizuku p, .bg-biz p {
	font-size:12px;
	margin-bottom:2px;
}
.bg-tranquwell {
	background-color:#8E6E2B;
}
.bg-tranquwell-green1 {
	background-color:#32565b;
}
.bg-tranquwell-green2 {
	background-color:#2b6950;
}
.bg-tranquwell-gray {
	background-color:#5a5a5a;
}
.bg-shizuku {
	background-color:#009CA0;
}
.bg-biz {
	background-color:#006835;
}
.font-size-12 {
	font-size:12px!important;
}
.font-size-14 {
	font-size:14px!important;
}
.font-size-15 {
	font-size:15px!important;
}
.font-size-16 {
	font-size:16px!important;
}
.font-size-18 {
	font-size:18px!important;
}
.font-size-20 {
	font-size:20px!important;
}
.font-size-24 {
	font-size:24px!important;
}
.font-size-48 {
	font-size:48px!important;
}
.font-oswald {
	font-family:"Oswald";
}
.font-weight-normal {
	font-weight:normal!important;
}
.font-weight-bold {
	font-weight:bold!important;
}
.menu .service_logo {
	height:16px!important;
}
.service_logo {
	width:auto;
	height:20px!important;
}
.service_header_logo {
	width:auto;
	height:24px!important;
}
.pt-0 {
	padding-top:0!important;
}
.pt-10 {
	padding-top:10px!important;
}
.pt-20 {
	padding-top:20px!important;
}
.pt-30 {
	padding-top:30px!important;
}
.pt-40 {
	padding-top:40px!important;
}
.pt-60 {
	padding-top:60px!important;
}
.pt-80 {
	padding-top:80px!important;
}
.pb-0 {
	padding-bottom:0!important;
}
.pb-6 {
	padding-bottom:6px!important;
}
.pb-10 {
	padding-bottom:10px!important;
}
.pb-20 {
	padding-bottom:20px!important;
}
.pb-30 {
	padding-bottom:30px!important;
}
.pb-40 {
	padding-bottom:40px!important;
}
.pb-60 {
	padding-bottom:60px!important;
}
.pb-80 {
	padding-bottom:80px!important;
}
.mt--10 {
	margin-top:-10px!important;
}
.mt-0 {
	margin-top:0!important;
}
.mt-10 {
	margin-top:10px!important;
}
.mt-20 {
	margin-top:20px!important;
}
.mt-40 {
	margin-top:40px!important;
}
.mt-60 {
	margin-top:60px!important;
}
.mt-80 {
	margin-top:80px!important;
}
.mt-100 {
	margin-top:100px!important;
}
.mb-0 {
	margin-bottom:0!important;
}
.mb-10 {
	margin-bottom:10px!important;
}
.mb-20 {
	margin-bottom:20px!important;
}
.mb-40 {
	margin-bottom:40px!important;
}
.mb-60 {
	margin-bottom:60px!important;
}
.mb-70 {
	margin-bottom:70px!important;
}
.mb-80 {
	margin-bottom:80px!important;
}
.mb-100 {
	margin-bottom:100px!important;
}
.ml-10 {
	margin-left:10px!important;
}
.ml-20 {
	margin-left:20px!important;
}
.lh-20 {
	line-height:20px!important;
}
.lh-24 {
	line-height:24px!important;
}
.ls-05 {
	letter-spacing:0.5px!important;
}
.ls-4 {
	letter-spacing:4px!important;
}
.br-20 {
	border-radius:20px;
}
.br-r-20 {
	border-radius:0 20px 20px 0;
}
.br-l-20 {
	border-radius:20px 0px 0px 20px;
}
.br-rt {
	border-radius:0 20px 0 0 ;
}
.br-rb {
	border-radius:0 0 20px 0 ;
}
.br-lt {
	border-radius:20px 0 0 0;
}
.br-lb {
	border-radius:0 0 0 20px;
}
.height-24 {
	height:24px!important;
}
.height-30 {
	height:30px!important;
}
.height-50 {
	height:50px!important;
}
.height-60 {
	height:60px!important;
}
.height-70 {
	height:70px!important;
}
.height-80 {
	height:80px!important;
}
.height-90 {
	height:90px!important;
}
.height-100 {
	height:100px!important;
}
.height-120 {
	height:120px!important;
}
.wid-25 {
	width:25%;
	margin:0 auto;
}
.wid-30 {
	width:30%;
	margin:0 auto;
}
.wid-40 {
	width:40%;
	margin:0 auto;
}
.wid-60 {
	width:60%;
	margin:0 auto;
}
.wid-80 {
	width:80%;
	margin:0 auto;
}
.flex-box {
	display:flex;
	align-items:center;
	justify-content:center;
}
.flex-box a {
	display:inline-block;
	margin:30px 60px;
}
.flex-box p {
	font-size:20px;
	font-weight:600;
	margin-top:6px;
	
}
.menu-icon {
	width:60px;
	height:auto;
}
.service_contents {
	width:80%;
	margin:0 auto;
}
.service_contents h2 {
	font-size:24px;
	line-height:36px;
	margin:20px auto;
	font-family:"Zen Kaku Gothic New","Hiragino Sans","Hiragino Kaku Gothic ProN",sans-serif;
}
.service_contents h3 {
	margin:30px 0 10px;
	text-align:left;
	padding:6px 12px 6px 0px;
	letter-spacing:0.05em;
	line-height:32px;
}
.service_contents p {
	font-size:0.9em;
	line-height:2em;
	letter-spacing:2px;
	
}
div.service_title {
	margin:100px auto 60px;
}
.service_title {
	display:flex;
	justify-content:center;
	align-items:center;
}
.body {
	border-bottom:1px solid #E8D302;
}
.mind {
	border-bottom:1px solid #0099B9;
}
.spirit {
	border-bottom:1px solid #BD0C16;
}
.service_img_left {
	width:90%!important;
	margin:50px auto 20px -20px!important;
}

.service_img_right {
	width:90%!important;
	margin:50px -20px 20px auto!important;
}
.search-area {
	padding:40px 20px;
}
.bg-search {
	background-color:rgba(255,255,255,0.9);
	margin:0 auto;
	padding:30px;
	border-radius:10px;
}
.bg-search p {
	padding:10px 0;
	font-weight:600;
	font-size:16px;
	letter-spacing:0.1em;
}
.bg-search hr {
	border:none;
	background-color:#444;
	height:0.5px;
}
.input_bb {
	border-bottom:1px solid #444;
}
.input_ui {
	border:1px solid #444;
	background-color:#fff;
	margin-bottom:10px;
	padding:10px!important;
}
.search-btn {
	background-color:#41a6a9;
	padding:10px 0;
	border-radius:30px;
	letter-spacing:0.1em;
}
.arrow-b {
  position: relative;
  padding-left: 20px;
}
.arrow-b:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto;
}
.card-ui-wid {
	width:120%;
}
.card-area {
	padding:30px 0;
	margin-left:-20%;
}
.card-flex {
	display:flex;
}
.card {
	margin:0 10px;
}
.card img {
	border-radius:10px 10px 0 0;
}
.card .card-txt-area {
	padding:10px;
	background-color:#fff;
	border-radius:0 0 10px 10px;
}
.card-txt-area h3 {
	text-align:left;
	line-height:0.5em;
	font-size:14px;
	margin:10px 0;
}
.card-txt-area p {
	font-size:10px;
}
.contact-area {
	width:60%;
	margin:40px auto;
}
.no-one {
	font-size:24px;
}
.result-circle {
	width:250px;
	height:115px;
	border-radius:100px;
	margin:0 5px;
}
.result-circle p {
	font-size:14px;
	line-height:24px;
	position:absolute;
	top:25%;
	margin-left:30px;
}
.result-circle .font-num {
	font-size:24px;
}
.text-area {
	font-size:15px;
	line-height:28px;
	letter-spacing:1px;
}
.flex-content {
	display:flex;
}
.flex-content p {
	font-size:16px;
}
.flex-wid-1-2 {
	width:45%;
}
.flex-wid-1-3 {
	width:30%;
}
.alien-center {
	align-content:center;
}
.alien-item-center {
	align-items:center;
}
.justify-center {
	justify-content:center;
}
.justify-between {
	justify-content:space-between;
}
.justify-evenly {
	justify-content:space-evenly;
}
.ttl-icon {
	position:absolute;
	top:10px;
	left:60px;
}
.sns-icon {
	width:50px;
	height:auto;
}
.tranquwell-btn {
	font-size:18px;
	font-weight:600;
	letter-spacing:0.1em;
	color:#fff;
	text-align:center;
	padding:10px;
	background-color:#8E6E2B;
	display:block;
	width:80%;
	margin:0 auto;
	border-radius:5px;
}
.shizuku-btn {
	font-size:18px;
	font-weight:600;
	letter-spacing:0.1em;
	color:#fff;
	text-align:center;
	padding:10px;
	background-color:#009CA0;
	display:block;
	width:80%;
	margin:0 auto;
	border-radius:5px;
}
.shizuku-marker {
	background: linear-gradient(transparent 50%, #d4eded 50%);
	width:fit-content;
	margin:0 auto;
}
.right-top-icon {
	position:absolute;
	width:50px;
	top:100px;
	right:60px;
}
.right-icon {
	position:absolute;
	width:50px;
	top:40px;
	right:60px;
}
.text-posi-r {
	position:absolute;
	right:100px;
	top:25%;
	font-size:1.5rem;
}
.text-posi-l {
	position:absolute;
	left:100px;
	top:25%;
	font-size:1.5rem;
}
.biz-item {
	margin-top:30px;
}
.biz-item li {
	font-size:18px;
	font-weight:600;
	text-align:center;
	padding:10px;
	margin-bottom:10px;
}
.bg-activity-ttl {
	background-color:#c3d475;
}
.bg-awake-ttl {
	background-color:#979ea2;
}
.bg-training-ttl {
	background-color:#6f9fc1;
}

.bg-beige {
	background-color:#f6eee3;	
}
.bg-activity li {
	background-color:#eaf1c8;
}
.bg-awake li {
	background-color:#d0dae1;
}
.bg-training li {
	background-color:#cfe8f9;
}
.service_logo.height-24 {
	height:24px!important;
}
.service_logo.biz-menu-height {
	height:50px!important;
}
.map-pin {
	width:11px;
	height:auto;
	display:inline;
	padding-bottom:6px;
	margin-right:4px;
}
.six-wellness {
	padding:0 20px 0 70px;
}
.six-wellness h3:nth-child(odd) {
	background-color:#8b6c2a;
}
.six-wellness h3 {
	text-align:left;
	padding:5px 20px;
	color:#fff;
	position:relative;
	background-color:#b19351;
	margin:0 0 10px;
}
.six-wellness h3:before {
	color:#fff;
	position:absolute;
	top:0;
	text-align:center;
	background-color:#b19351;
	width:40px;
	height:40px;
	border-radius:40px;
	line-height:40px;
	font-size:16px;
	left:-50px;
}
.six-wellness h3.one:before {
	content: " 1 ";
	background-color:#8b6c2a;
}
.six-wellness h3.two:before {
	content: " 2 ";
	background-color:#b19351;
}
.six-wellness h3.three:before {
	content: " 3 ";
	background-color:#8b6c2a;
}
.six-wellness h3.four:before {
	content: " 4 ";
	background-color:#b19351;
}
.six-wellness h3.five:before {
	content: " 5 ";
	background-color:#8b6c2a;
}
.six-wellness h3.six:before {
	content: " 6 ";
	background-color:#b19351;
}
.six-wellness p:nth-child(odd) {
	color:#b19351;
}
.six-wellness p {
	padding:0 20px;
	margin-bottom:10px;
	color:#8b6c2a;
}

.six-wellness img {
	margin-bottom:50px;
}
.press_btn {
	color:#fff;
	padding:16px 32px;
	background-color:#a4c8a2;
	border-radius:30px;
}
.rl-text {
	writing-mode:vertical-rl;
}
.retreat-4 {
	margin:40px 20px;
	
}
.retreat-4 div {
	border-bottom:1px solid #e1e1e1;
}
.retreat-4 div h3,.retreat-4 div p {
	padding-left:30px;
	padding-right:30px;
}
.retreat-4 div h3 {
	font-size:32px;
	line-height:54px;
	text-align:left;
}
.retreat-4 div p {
	font-weight:500;
	line-height:32px;
}
@media screen and (max-width:768px) {
	h2 {
		font-size:26px;
	}
	.service_logo {
		width:auto!important;
		height:16px!important;
	}
	.flex-box a {
		display:inline-block;
		align-items:center;
		margin:20px 30px;
	}
	.bg-light-blue .service_contents h2 {
		font-size:28px;
	}
	.search-area {
		padding:30px 0px;
	}
	.card {
		margin:0 6px;
	}
	.card-txt-area h3 {
		line-height:1em;
		font-size:12px;
		margin:6px 0;
	}
	.result-circle {
		width:250px;
		height:86px;
		border-radius:100px;
		margin:0 2px;
	}
	.result-circle p {
		font-size:12px;
		line-height:20px;
		position:absolute;
		top:25%;
		margin-left:20px;
	}
	
	.result-circle .font-num {
		font-size:16px;
	}
	.bg-tranquwell.menu, .bg-shizuku.menu, .bg-biz.menu {
		width:250px;
		margin-bottom:12px;
		padding:20px;
	}
	.bg-tranquwell p, .bg-shizuku p, .bg-biz p {
		font-size:12px!important;
		font-weight:400;
	}
	.header_catch {
		margin-bottom:20px;
	}
	.nav-img-sp {
		position:fixed;
		bottom:0;
		z-index:-1;
	}
	.flex-content p {
		font-size:14px;
	}
	.ttl-icon {
		left:20px;
	}
	.right-top-icon {
		right:20px;
	}
	.right-icon {
		right:20px;
	}
	.text-posi-r {
		position:absolute;
		right:60px;
		top:25px;
    font-size:1.1rem;
	}
	.text-posi-l {
		position:absolute;
		left:60px;
		top:25px;
    font-size:1.1rem;
	}
	.biz-item li {
		font-size:16px;
	}
	.wid-40 {
		width:50%;
	}
	.wid-60 {
		width:70%;
	}
	.wid-80 {
		width:90%;
	}
	.text-area {
		line-height:26px;
	}
	.service_logo.biz-menu-height {
		height:48px!important;
	}
	.six-wellness {
		padding:0 0px 0 40px;
	}
	.six-wellness h3 {
		padding:5px 14px;
	}
	.retreat-4 {
		margin:40px 10px;

	}
	.retreat-4 div {
		border-bottom:1px solid #e1e1e1;
	}
	.retreat-4 div h3,.retreat-4 div p {
		padding-left:10px;
		padding-right:10px;
	}
	.retreat-4 div h3 {
		font-size:24px;
		line-height:42px;
		text-align:left;
	}
	.retreat-4 div p {
		font-weight:500;
		line-height:32px;
	}
}