@charset "utf-8";
/* CSS Document */
* {
  padding: 0;
  margin: 0;
}
*, *:before, *:after { box-sizing: inherit; }
html {
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  /*font-family: "Open Sans", 'Kosugi Maru', "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;*/
  font-family: 'Josefin Sans',YakuHanJPs,"Yu Gothic",YuGothic,"ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro",Helvetica,Arial,"メイリオ",Meiryo,Osaka,sans-serif;
  text-transform: none;
  text-decoration: none;
}
div, label, input, textarea, select, button, a, p, span, ul li, ol li {
  /*font-family: "Open Sans", 'Kosugi Maru', "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;*/
  font-family: 'Josefin Sans',YakuHanJPs,"Yu Gothic",YuGothic,"ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro",Helvetica,Arial,"メイリオ",Meiryo,Osaka,sans-serif;
  text-transform: none;
}
a {
  color: #1c7f8a!important;
  text-decoration: underline;
}
input[type="submit"],
input[type="search"] {
  -webkit-appearance: none;
  border-radius: 0;
  border-radius: none;
}
input:focus,
button:focus,
select:focus,
textarea:focus { border-color: #031264; }
ul, ol { margin-bottom: 0; }
header,
footer {
  width: 100%;
  margin: 0;
  padding: 0;
}
hr {
  margin-bottom: 5em;
}
img {
  max-width: 100%;
  height: auto;
}
iframe { max-width: 100%; }

.inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}
.align_c { text-align: center; }
.align_l { text-align: left; }
.align_r { text-align: right; }
.float_l { float: left; }
.float_r { float: right; }
.float_n { float: none; }
.clear { clear: both; }

.table { display: table; }
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex .flex.col_2 {
  padding-right: 15px;
  padding-left: 15px;
}
.flex-col {
  flex-direction: column;
}
.top-0 {
  top: 0px;
}
.min-h-screen {
  min-height: 100vh;
}
.items_c { align-items: center; }
.items_b { align-items: baseline; }
.items_s { align-items: start; }
.jc_c { justify-content: center; }
.jc_sb { justify-content: space-between; }
.jc_sa { justify-content: space-around; }
.position_r { position: relative; }
.position_a { position: absolute; }
.position_s { position: static; }
.col_4 { width: 25%; }
.col_3 { width: 33.33333333%; }
.col_2 { width: 50%; }
.col_1 { width: 100%; }
.mt0 { margin-top: 0!important; }
.mt-3 { margin-top: 3rem; }
.mb50 { margin-bottom: 50px!important; }
.mb10 { margin-bottom: 10px!important; }
.mb0 { margin-bottom: 0!important; }
.w100p { width: 100%; }
.w90p { width: 90%; }

.bg_gray { background-color: #f4f4f4; }
.bg_white { background-color: white; }
.bg_otonal { background-color: #2fafb2; }

.sp { display: none; }

.txt {
  font-size: 18px;
  line-height: 1.5;
}
.link__txt {
  font-size: 12px;
  line-height: 1.5;
}
.asta {
  display: block;
  font-size: 10px;
}
.asta02 {
  display: block;
  font-size: 20px;
  text-decoration: underline;
}

.db__pc { display: none!important; }
.db__sp { display: block!important; }
@media only screen and (min-width: 980px){
  .db__pc { display: block !important; }
  .db__sp { display: none !important; }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumb li:not(:last-of-type)::after {
  content: ">";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #1c7f8a; /* 記号の色 */
}
.breadcrumb a,
.breadcrumb p,
.breadcrumb li {
  line-height: 1.5;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
#contact .breadcrumb__wrap,
#download .breadcrumb__wrap {
  border-top: 1px solid #f1f1f1;
  padding-top: 5px;
}

.wrap__block {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /*overflow: hidden;*/
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.logo__wrap {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  background-color: white;
  padding: 0 30px 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /*overflow: hidden;*/
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.logo__wrap li {
  width: 45%;
}
main { margin-top: 62px; }

/* ------------------------------------------
 Header
 --------------------------------------------- */
header {
  width: 100%;
  position: fixed;
  z-index: 999;
  background-color: white;
  top: 0;
}
.head__top .inner { padding: 12px; }
.head__top p {
  font-size: 12px;
  margin: 8px;
  font-weight: bold;
}
.head__top .logo {
  width: auto;
  margin: 0px;
}
.head__top .logo img {
  width: 100px;
  float: left;
}
.head__top .wrap__block {
  -webkit-align-items: center;
  align-items: center;
}
.head__top button {    
  margin-left: auto;
  padding: 6px 9px 4px;
  border-radius: 3px;
  border: #1c7f8a 1px solid;
  color: #1c7f8a;
  font-size: 14px;
  background-color: white;
}
@media only screen and (min-width: 980px){
  .head__top .logo img {
    width: 140px;
    float:left;
  }
  .head__top .logo img { max-width: 180px; }
  .head__top .logo .sp { display: none; }
  .head__top .logo { width: auto; }
  .head__top .logo p:nth-of-type(1) {
    margin: 0 0 10px 0;
  }
  .head__top .logo p:nth-of-type(2) {
    font-size: 1.6rem;
  }
  .head__top .logo p:nth-of-type(1){
    display: block;
    font-size: 14px;
    margin: 0;
    line-height: 12px;
    text-align: left;
  }
  .head__top .logo p:nth-of-type(2){
    display: block;
    font-size: 14px;
    margin: 0;
    text-align: left;
  }
}

@media only screen and (max-width: 980px){
  .head__top .logo .sp { display: block; }
  .head__top .logo .pc { display: none; }
}

@media only screen and (max-width: 768px){
  header {
    position: fixed;
    background: #fff;
    border-bottom: 1px solid #eee;
    top: 0;
    z-index: 10;
  }
}

/* ------------------------------------------
 Nav
 --------------------------------------------- */
#nav{
  display: none;
}
.nav {
  margin-left: 0px;
  background-color: #fff;
  border-top: 1px solid #d0d0ce;;
}
.nav li {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  border-bottom: 1px solid #d0d0ce ;
  padding: 4px;
  line-height: 20px;
  margin: 5px;
}
.nav li img {
  position: absolute;
  left: 30%;
}
.nav li p:nth-of-type(1) {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.2rem;
  margin: 0;
}
.nav li p {
  margin: 0;
}
.nav li p:nth-of-type(2) {
  font-size: 0.8rem;
    color: #888;
    line-height: 8px;
}
.nav li:hover {
  background-color: #fff;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.nav li a { text-decoration: none; }
@media only screen and (min-width: 980px){
  #nav {
    display: block;
  }
  #nav_sp {
    display: none;
  }
  .nav {
    border-top: none;
  }
  .nav li {
    position: relative;
    width: 90px;
    border-bottom: none;
    padding: 10px 0 6px;
    margin: 0;
  }
  .nav li a img {
    position: absolute;
    left: 10px;
    top: 10px;
  }
  .nav li:last-child {
    border-right: 1px solid #d0d0ce;
  }
}

.right__wrap { display: inline-flex; }
.right__wrap a {
  text-decoration: none;
  display: inline-block;
  margin-left: 30px;
  font-size: 20px;
}

/*--------------------------------------------------------------
SP NAV
--------------------------------------------------------------*/
#nav__sp span:nth-child(1) {
  top: 0;
}
#nav__sp span:nth-child(2) {
  top: 14px;
}
#nav__sp span:nth-child(3) {
  top: 28px;
}
#nav__sp:hover span:nth-child(1) {
  top: 4px;
}
#nav__sp:hover span:nth-child(3) {
  top: 23px;
}

.open #nav__sp span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.open #nav_sp span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav__sp span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav__sp {
  z-index: 999;
  padding: 0;
}

#nav__sp {
  background: #fff;
  position: fixed;
  width: 60%;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  display: flex;
  font-size: 28px;
  padding-left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.open #nav__sp {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

#nav__sp a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 0;
  transition: color .6s ease;
  font-size: 20px;
  text-decoration: none;
}
#nav__sp ul {
  list-style: none;
}
#nav__sp ul li {
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
  position: relative;
  line-height: 2;
}
#nav__sp ul li:after {
  content: "";
  display: block;
  width: 500px;
  height: 2px;
  background: #fff;
  left: -600px;
  position: absolute;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
#nav__sp ul li:hover:after {
  -webkit-transform: translateX(300px);
  transform: translateX(300px);
}
#nav__sp ul li:nth-child(2) {
  transition-delay: .15s;
}
#nav__sp ul li:nth-child(3) {
  transition-delay: .3s;
}
#nav__sp ul li:nth-child(4) {
  transition-delay: .45s;
}
#nav__sp ul li:nth-child(5) {
  transition-delay: .6s;
}
#nav__sp ul li:nth-child(6) {
  transition-delay: .75s;
}
#nav__sp ul li:nth-child(7) {
  transition-delay: .9s;
}

.open #nav__sp li {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.title__wrap__1 .main__title {
  font-size: 40px;
  font-weight: bold;
  margin: 0 auto;
  padding: 40px 0;
  /*background-image: linear-gradient(to right, #00BCD4, #aed86b);*/
}
.title__wrap__2 { margin: 0 auto 30px; }
.title__wrap__2 .main__title {
  color: #073763;
  font-size: 50px!important;
  font-weight: bold!important;
  margin: 0!important;
  padding: 0!important;
}
@media only screen and (max-width: 580px){
  .title__wrap__1 .main__title,
  .title__wrap__2 .main__title {
    font-size: 30px;
    padding: 20px 0;
  }
}

/*トップメイン main__top*/
#top__main {
  background-image: url(../images/mainvisual.jpg);
  background-position: center;
  background-size: cover;
  height: 480px;
}
#top__main img { width: 100%; }
.top__inner {
  max-width: 980px;
  width: 100%;
  background-color: rgba(255,255,255,0.75);
  /*background-color: rgba(12, 32, 37, 0.35);*/
  padding: 30px 0;
  margin: auto;
}
.top__inner .top__txt p {
  color: #073763;
  font-weight: bold;
}
.top__inner .top__txt .main__title {
  color: #073763;
  margin: 15px 0 20px;
  font-size: 40px;
  font-weight: bold;
  line-height: 50px;
}
.top__inner .top__txt .txt {
  font-size: 22px;
  margin: 0 auto 20px;
}
.top__inner .circle__wrap .circle__txt {
  color: white;
  font-size: 14px;
  width: 140px;
  height: 140px;
  background-color: #0097a7;
  padding: 15px;
  margin: 0;
  border: 5px solid #76b8ca;
  border-radius: 50%;
}

.batsu {
  display: block;
  width: 45px;
  height: 45px;
  position: relative;
  margin: 0 15px;
}
.batsu::before, .batsu::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  background-color: #134f5c;
  transform: rotate(45deg);
  transform-origin:0% 50%;
  position: absolute;
  top: calc(14% - 5px);
  left: 14%;
}
.batsu::after {
  transform: rotate(-45deg);
  transform-origin:100% 50%;
  left: auto;
  right: 14%;
}

@media only screen and (max-width: 1100px){
  .top__inner { max-width: 780px; }
}
@media only screen and (max-width: 600px){
  .top__inner .top__txt .main__title {
    font-size: 20px;
    line-height: 1.5;
  }
  .top__inner .top__txt .txt { font-size: 14px; }
  .top__inner .circle__wrap .circle__txt {
    font-size: 10px;
    width: 100px;
    height: 100px;
  }

  .batsu {
    width: 35px;
    height: 35px;
  }
  .batsu::before, .batsu::after { height: 6px; }
}

/* ロゴリスト */
.logo__list  {
  display: inline-block;
  width: 100%;
  margin: 30px auto 0;
}
.logo__list .inner {
  max-width: 1200px;
  margin: 0px auto 40px;
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  background-color: white;
}
.logo__list h2 {
  display: inline-block;
  background-color: white;
  text-align: center;
}
.logo__list ul,
.logo__list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.logo__list li img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
}
.logo__list02 li img {
  height: 120px;
  width: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 1100px){
  .logo__list .inner { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}
@media only screen and (max-width: 980px){
  .logo__list .inner { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}
@media only screen and (max-width: 580px){
  .logo__list .inner { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
  .logo__list02 li img {
    height: 60px;
  }
}
@media only screen and (max-width: 410px){
}
@media only screen and (max-width: 380px){
  .logo__list .inner { grid-template-columns: repeat(auto-fill, minmax(65px, 1fr)); }
}


/*事業内容 business*/
.business__wrap { padding: 4em 1.5em; }
.business__wrap__2 { padding: 3em 1.5em; }
.business__wrap .w__wrap .h2__main__title {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 0;
  padding-right: 10px;
  display: inline-block;
  color: #2fafb2;
  position: relative;
  background-color: white;
}
.business__wrap #service { position: relative; }
.business__wrap #service:before {
  content: '';
  position: absolute;
  top: 45%;
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #2fafb2;
  right: 0;
}
.business__wrap .w__wrap .main__title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 0;
  color: #073763;
}
.business__wrap .w__wrap .w__box .col_2 {
  padding-right: 15px;
}
.business__wrap .w__wrap .w__box .col_1 {
  padding-bottom: 30px;
}
.business__wrap .w__wrap .w__box .col_1 img {
  max-width: 200px;
  height: auto;
  vertical-align: bottom;
  margin: 40px 0 20px;
}
.business__wrap .w__wrap .w__box .col_1 img.img02 {
  max-width: 100%;
  margin: 10px auto 0;
}

/*.business__wrap .w__wrap .w__box:last-child { width: 55%; }*/
.business__wrap .w100p .txt,
.business__wrap .w__wrap .w__box .txt {
  font-size: 28px;
  margin: 0 0 10px 0;
  color: black;
}
.business__wrap .w__wrap .sub__title {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
  color: #073763;
}
.business__wrap .w__wrap .right .main__title,
.business__wrap .w__wrap .right .sub__title,
.business__wrap .w__wrap .right .txt { color: white; }
.business__wrap .w__wrap .w__box .col_2 .sub__title {
  margin-top: 0;
}
.business__wrap .w__wrap .sub__title span {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.5;
  display: block;
}
.business__wrap .w__wrap { margin-bottom: 0; }
.business__wrap .w__wrap .w__box .spotify,
.business__wrap .w__wrap .w__box .radiko {
  max-width: 300px;
}
/*.img__podcast {
  display: block;
  margin: 0 auto;
  max-width: 800px;
}*/
@media only screen and (max-width: 900px){
  .business__wrap { padding: 3em 1em; }
  .business__wrap .w__wrap .w__box { padding: 3%; }
}
@media only screen and (max-width: 767px){
  .business__wrap { padding: 2.5em 1em; }
  .business__wrap__2 { padding: 1.5em 1em; }
  .business__wrap .w__wrap .right .main__title,
  .business__wrap .w__wrap .right .sub__title { color: #073763; }
  .business__wrap .w__wrap .right .txt { color: black; }
  .business__wrap .w__wrap .w__box .w__logo {
    margin-top: 30px;
    text-align: center;
  }
  .business__wrap .w__wrap .w__box .col_1 img {
    padding: 15px 30px;
    margin: 0;
  }
}
@media only screen and (max-width: 580px){
  .business__wrap .w__wrap .w__box .col_1 img { max-width: 90%; }
  .business__wrap .w__wrap .w__box .col_1 img.img02 { margin: 0; padding: 0; }
  .business__wrap .w__wrap .main__title { font-size: 24px; }
  .business__wrap .w__wrap .w__box .txt { font-size: 18px; }
}


/*Company*/
.company__wrap {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  padding: 30px 15px;
}
.company__wrap .main__title {
  color: #2fafb2;
  margin: 10px auto;
  font-size: 30px;
  font-family: 'Josefin Sans',YakuHanJPs,"Yu Gothic",YuGothic,"ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro",Helvetica,Arial,"メイリオ",Meiryo,Osaka,sans-serif;
}
table{
  width: 100%;
}
table th {
  width: 20%;
  font-weight: bold;
}
table td { width: 80%; }
table th,
table td {
  text-align: left;
  padding: 10px;
}
@media only screen and (max-width: 580px){
  .company__wrap { padding: 0; }
  .company__wrap .main__title {
    font-size: 24px;
    margin: 0;
    padding: 15px 10px;
  }
  .company__wrap tr:first-child { border-top: 1px solid #eee; }
  .company__wrap tr { border-bottom: 1px solid #eee; }
  .company__wrap tr:last-child { border-bottom: none; }
  table th, table td {
    width: 100%;
    display: block;
    text-align: center;
  }

}

.content h2,
.page.download .content h2 {
  font-size: 32px;
  margin-bottom: 1.5rem;
}

/*Page*/
.page__inner {
  max-width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 1030px){
  .page__inner { padding: 0 15px; }
}

.page { padding: 4em 0; }
.page p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 2;
}
.thanks h1,
.page h1,
.page.download h2 {
  font-size: 50px;
  font-weight: bold;
  margin: 0 auto 50px;
  display: block;
  /*color: #2fafb2;*/
  color: black;
}
.page h1 span,
.page.download h2 span {
  display: block;
  font-size: 20px;
  position: relative;
  padding-top: 15px;
  margin-top: 20px;
}
.page h1 span:before,
.page.download h2 span:before {
  position: absolute;
  top: -10px;
  left: calc(50% - 50px);
  width: 100px;
  height: 3px;
  content: '';
  border-radius: 3px;
  background: black;
}
.page img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: 30px auto;
  border: 1px solid #eee;
}
.page .first__img {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.page .box {
  padding: 30px 30px;
  background-color: #f1f1f1;
}
.page .box h3 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  padding: 0 65px;
  margin-bottom: 15px;
  text-align: center;
}
.page .box h3:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #333;
}
.page .box h3 span {
  position: relative;
  padding: 0 1em;
  background-color: #f1f1f1;
}
.page .box ul {
  margin: 0 0 0 15px;
  padding: 0;
}
.page .box li {
  font-size: 16px;
  line-height: 2;
}
.page__btn {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  color: white!important;
  background: #2fafb2;
  border-bottom: 3px solid #009688;
  margin: 1em;
  padding: 12px 30px 8px;
  line-height: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}
.page__btn i { padding-left: 7px; }
.page__btn:hover {
  border-bottom-color: transparent;
  transform: translateY(3px);
  text-decoration: none;
}
.page__sub__cv {
  margin: 30px auto;
}
.page__sub__cv h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.page__sub__cv h3 i { padding-right: 7px; }
.page__sub__cv a {
  font-size: 20px;
  text-decoration: underline;
}
.page__sub__cv a i { padding-right: 7px; }

@media only screen and (max-width: 580px){
 .page p { font-size: 16px; }
 .page .box { padding: 10px 20px 20px; }
 .page .box h3 {
    font-size: 20px;
    padding: 0 25px;
  }
  .page .box li {
    font-size: 14px;
    line-height: 1.6;
    padding-bottom: 5px;
  }
  .page__btn {
    font-size: 18px;
    padding: 8px 15px 4px;
  }
}
@media only screen and (max-width: 400px){
 .page .box h3 {
    font-size: 18px;
    padding: 0 10px;
  }
  .page__btn { font-size: 14px; }
  .page__sub__cv h3 { font-size: 16px; }
  .page__sub__cv a {
    display: inline-block;
    font-size: 14px;
    text-align: left;
  }
}


.info h2 {
  margin-bottom: 2rem;
}


/* 資料ダウンロード */
.page.download h1 {
  text-align: center;
  font-size: 2rem;
}
.page.download p { font-size: 16px; }
.page.download .form__wrap { margin-top: 4rem; }

/* Hubspot フォーム */
.hbspt-form .grecaptcha-badge,
.hbspt-form .hs-form-field {
  margin: 0 auto;
}
.hbspt-form form {
}
#download .hbspt-form form label {
  width: 25%;
  font-size: 14px;
  text-align: right;
  margin-bottom: 0;
}
.hbspt-form form legend { font-size: 0.875rem; }
.hbspt-form form input[type=text],
.hbspt-form form input[type=email],
.hbspt-form form input[type=password],
.hbspt-form form input[type=tel],
.hbspt-form form input[type=number],
.hbspt-form form input[type=file],
.hbspt-form form select,
.hbspt-form form textarea {
  display: inline-block;
  font-size: 14px;
  padding: 0.7rem;
  width: 100%!important;
  box-sizing: border-box!important;
  border: 1px solid #ccc!important;
  background-color: #f5f5f5!important;
}
.hbspt-form form fieldset,
fieldset.form-columns-2 .hs-form-field {
  max-width: 100%!important;
  margin-bottom: 20px!important;
}
.hbspt-form form .privacy_scroll,
fieldset.form-columns-2 .hs-form-field:last-child { margin-bottom: 0!important; }
.hbspt-form .hs-form-field {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.hbspt-form form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hbspt-form form .inputs-list > li {
  display: block;
  font-weight: normal;
  margin: 0;
  padding-right: 15px;
}
.hbspt-form form .hs-sonota02,
.hbspt-form form .hs-sonota,
.hbspt-form form .hs-interested,
.hbspt-form form .hs-zisshiziki,
.hbspt-form form .hs_budget { margin-top: 20px; }
.hbspt-form form .hs-kinds li,
.hbspt-form form .hs-zisshiziki li,
.hbspt-form form .hs_budget li { display: inline-block!important; }
.hbspt-form form .inputs-list > li label input,
.hbspt-form form .inputs-list > li label { width: auto!important; }
.hbspt-form form .inputs-list input,
.hbspt-form form .inputs-list span {
  vertical-align: middle;
}
.hbspt-form form input[type=checkbox],
.hbspt-form form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}
.hbspt-form .hs-dateinput { position: relative; }
.hbspt-form .hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.hbspt-form .fn-date-picker .pika-table thead th { color: #FFF; }
.hbspt-form .fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}
.hbspt-form .fn-date-picker td .pika-button:hover,
.hbspt-form .fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}
.hbspt-form form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}
.hbspt-form form .hs-richtext,
.hbspt-form form .hs-richtext p {
  margin-right: auto;
  margin-left: auto;
}
.hbspt-form form .hs-richtext img { max-width: 100% !important; }
.hbspt-form .legal-consent-container .hs-form-booleancheckbox-display > span,
.hbspt-form .legal-consent-container .hs-form-booleancheckbox-display > span p { margin-left: 1rem !important; }
.hbspt-form .hs-form-required { font-size: 0!important; }
.hbspt-form .hs-form-required::before {
  content: "Required";
  background-color: #f15151;
  color: #fff;
  font-size: .7rem;
  padding: 5px 6px 3px;
  margin-left: 8px;
  border-radius: 2px;
}
.hbspt-form form .hs_sonota label span::after {
  content: "Any";
  background-color: #191970;
  color: #fff;
  font-size: .7rem;
  padding: 5px 6px 3px;
  margin-left: 8px;
  border-radius: 2px;
  display: none;
}
.hbspt-form .hs-input.invalid.error { border-color: #EF6B51; }
.hbspt-form .hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}
.hbspt-form form input[type=submit],
.hbspt-form form .hs-button {
  width: 90%;
  max-width: 500px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  display: block;
  text-align: center;
  margin: 0 auto;
  white-space: normal;
  -webkit-appearance: inherit;
  padding: 8px 16px;
  border: 1px solid #484848;
  background-color: #484848;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.hbspt-form form input[type=submit]:hover,
.hbspt-form form .hs-button:hover {
  background-color: transparent;
  color: #484848;
}
fieldset.form-columns-2 .hs-form-field,
fieldset.form-columns-1 .hs-input{
  width: 100%!important;
  float: unset!important;
}
fieldset.form-columns-2 .hs-form-field {}
fieldset.form-columns-1 .input,
fieldset.form-columns-2 .input {
  margin-right: 0!important;
  width: 70%!important;
  margin-left: 5%!important;
}
fieldset.form-columns-1 .hs-agree .input {
  display: block;
  margin: 0 auto 20px!important;
  width: auto!important;
}
.hs-agree li { padding: 0!important; }
.hs-richtext .form__txt01 {
  position: relative;
  text-align: center;
  margin: 10px!important;
  background-color: #18a6a9;
  color: white;
}
.hs-richtext .form__txt01:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #18a6a9;
}
.hs-richtext .form__txt01 span {
  margin: 0 auto;
  text-align: left;
  display: table;
  padding: 3px 10px;
}
.hbspt-form .hs_recaptcha {
  display: block;
  margin-bottom: 30px;
}


.hs-error-msgs {
  display: block!important;
  text-align: center!important;
  margin-right: auto!important;
  margin-left: auto!important;
  width: 100%;
}
.hs-error-msgs li { padding: 0!important; }

#contact .hbspt-form {
  max-width: 500px;
  margin: 0 auto;
}
#contact .hbspt-form form textarea,
#contact .hbspt-form form input { margin-top: 0.5rem; }
#contact .hbspt-form .hs-form-field {
  display: block;
}
#contact .hbspt-form form input[type=text] { width: 100%!important; }
#contact fieldset.form-columns-1 .input, #contact fieldset.form-columns-2 .input {
  width: 100%!important;
  margin: 0!important;
}
#contact fieldset.form-columns-2 .hs-form-field {
  display: inline-block;
  width: 48%!important;
  float: left!important;
  margin-bottom: 0!important;
}
#contact fieldset.form-columns-2 .hs-form-field:last-child {
  float: right!important;
}
#contact .hs_agree { text-align: center; }
#contact .hs_agree label {
  display: table;
  text-align: left;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 767px){
  .hbspt-form {
    width: 90%;
    margin: 0 auto;
  }
  fieldset.form-columns-1 .input, fieldset.form-columns-2 .input,
  #download .hbspt-form form label {
    width: 100%!important;
    margin-left: 0!important;
    text-align: left;
  }
  .hbspt-form form .inputs-list > li {
    display: block;
    margin-right: 0;
  }
  .hbspt-form form .hs-zisshiziki li,
  .hbspt-form form .hs-yosan2 li { display: block!important; }
}

/*bg__wrap*/
.bg__wrap {
  height: 350px;
  max-width: 100%;
  margin: 0 auto;
}
.bg__wrap .img__wrap {
  width: 100%;
  height: 100%;
  background-color: black;
}
.bg__wrap img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
  opacity: .7;
}
.bg__wrap .txt__wrap .txt {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin: 0 auto;
}
.bg__wrap .txt__wrap .btn {
  color: white;
  font-size: 40px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
}

@media only screen and (max-width: 580px){
  .bg__wrap { height: auto; }
  .bg__wrap img { height: auto; }
  .bg__wrap .img__wrap img.pc { display: none; }
  .bg__wrap .img__wrap img.sp {
    display: block;
    height: auto;
  }
  .bg__wrap .txt__wrap .txt { font-size: 24px; }
  .bg__wrap .txt__wrap .btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}


.left__block {
  padding-right: 15px;
  margin-bottom: 5em;
}
.right__block {
  padding-left: 15px;
  margin-bottom: 5em;
}
.left__block .s__title,
.right__block .s__title {
  font-size: 24px;
  margin-bottom: 1em;
}
.left__block .txt,
.right__block .txt {
  font-size: 18px;
  line-height: 1.5;
}
.left__block .txt span,
.right__block .txt span {
  font-weight: bold;
}


.w__wrap {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
.w__wrap .main__title {
  font-size: 30px;
  margin-bottom: 1.5em;
}
.w__wrap .main__txt {
  text-align: center;
  font-size: 20px;
  margin-bottom: 1em; 
}
.w__wrap .main__txt span { 
  color: #00a7e9;
}
.w__wrap .w__box {
  width: 48%;
  padding: 1%;
}
.w__wrap .w__box h3 {
  font-size: 20px;
  margin-top: 1em;
}
.w__wrap .w__box .txt {
  font-size: 16px;
  margin-top: 1em;
}

/*.cv a {
  max-width: 600px;
  width: 100%;
  font-size: 30px;
  line-height: 2;
  text-decoration: none;
  border: 1px solid;
  margin: 3em auto;
  transition: .3s;
}
.mail {
  padding-top: 10px;
  margin-right: 10px;
  font-size: 18px;
  position: relative;
  width: 0;
  height: 0;
  border-right: 0.8em solid transparent;
  border-left: 0.8em solid transparent;
  border-top: 0.6em solid #031264;
  border-radius: 0.1em;
  transition: .3s;
}
.mail::before {
  position: absolute;
  content: "";
  top: -0.5em;
  left: -0.8em;
  width: 0;
  height: 0;
  border-top: 0.6em solid transparent;
  border-bottom: 0.5em solid #031264;
  border-left: 0.8em solid #031264;
  border-right: 0.8em solid #031264;
  border-radius: 0 0 0.1em 0.1em;
  transition: .3s;
}
.cv a:hover {
  background: #031264;
  color: white;
}
.cv a:hover .mail {
  border-right: 0.8em solid transparent;
  border-left: 0.8em solid transparent;
  border-top: 0.6em solid white;
}
.cv a:hover .mail:before {
  border-top: 0.6em solid transparent;
  border-bottom: 0.5em solid white;
  border-left: 0.8em solid white;
  border-right: 0.8em solid white;
}*/

.cv {
  background-color: white;
  max-width: 100%;
  margin: 0 auto;
  padding: 5em 1.5em;
  position: relative;
}
.cv p {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.cv a {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: white!important;
  background: #2fafb2;
  border-bottom: 3px solid #009688;
  margin: 1em;
  line-height: 60px;
  max-width: 500px;
  width: 40%;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}
.cv a.document {
  color: #254a9a;
  background-color: #fff;
  border-bottom: 3px solid #ccc;
}
.cv a:hover {
  border-bottom-color: transparent;
  transform: translateY(3px);
}

/*------------------------------------
FOOTER
-------------------------------------*/
.foot__menu__wrap {
  position: -webkit-sticky;
  position: sticky;
  margin: 0 auto;
  bottom: 0;
  z-index: 8;
  background-color: white;
  border-top: 1px solid #ccc;
}
.foot__menu {
  list-style: none;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.foot__menu li {
  width: 31.33333333333333333%;
  padding: 15px 0;
}
.foot__menu li a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  border-right: solid 1px #888;
  -webkit-transform: skewX(150deg);
  -moz-transform: skewX(150deg);
  transform: skewX(150deg);
}
.foot__menu li:last-child a { border-right: none; }
.foot__menu li a span {
  display:block;
  transform: skewX(-150deg);
  font-size: 14px;
  color: #333;
  text-decoration: underline;
}
#apple .foot__menu li:first-child a span { color: #7d50df; }
#google .foot__menu li:nth-child(2) a span { color: #4285F4; }
#spotify .foot__menu li:last-child a span { color: #1ED760; }
.foot__menu li a span i {
  font-size: 16px;
  padding-right: 10px;
}
@media screen and (max-width:580px) {
  .foot__menu__wrap { position: static; }
  .foot__menu li {
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
  .foot__menu li:last-child { border: none; }
  .foot__menu li a { border-right: none; }
  .foot__menu li a,
  .foot__menu li a span {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
}


footer {
  padding: 50px 0;
  background-color: #f1f1f1;
}
footer .left__box {
  padding: 10px;
}
footer .left__box .link__txt {
  display: inline-block;
  font-size: 14px;
  margin-top: 15px;
  text-decoration: none;
}
footer img { line-height: 1.5; }
footer .custom__logo__wrap { display: block; }
footer .custom-logo-link { display: inline-block; }
footer .custom-logo-link img {
  max-width: 140px;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
footer a {
  color: #333;
  font-size: 18px; }
footer small { 
  font-size: 12px;
  display: inline-block;
  line-height: 1.6;
  padding: 30px 0 0;
}
footer .link__box {
  float: right;
  margin: 0;
  padding: 10px;
}
footer .link__box dt {
  font-size: 15px;
  color: #333;
  font-weight: bold;
  margin-bottom: 1rem;
}
footer .link__box dd { margin-bottom: 1rem; }
footer .link__box dd:last-child { margin-bottom: 0; }
footer .link__box dd ul { list-style: none; }
footer .link__box dd ul,
footer .link__box dd ul li,
footer .link__box dd { width: 100%; }
footer .link__box dd ul li { margin-bottom: 0; }
footer .link__box dd ul li.spotify { margin-top: 1rem; }
footer .link__box dd ul li.spotify img { margin-bottom: .75rem; }
footer .link__box dd ul li.spotify p {
  font-size: 11px;
  margin-bottom: 0;
}
footer .link__box dd ul li a {
  font-size: 14px;
  color: #333;
  position: relative;
  display: inline-block;
  /*padding-left: 15px;*/
  line-height: 2;
  text-decoration: none;
  transition: all .2s;
}
/*footer .link__box dd ul li a:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: inline-block;
  width: 8px;
  height: 1px;
  background-color: black;
}*/
footer .link__box dd ul li a:hover {
  text-decoration: underline;
  color: #2fafb2;
}

@media only screen and (max-width: 1424px){
  footer { padding: 50px 12px; }
}
@media only screen and (max-width: 580px){
  footer .inner { padding: 0; }
  .foot__link {
    margin-top: 20px;
    text-align: left;
  }
  footer .link__box {
    float: none;
    padding: 0;
  }
  footer .left__box { padding: 0 0 30px; }
}

@media only screen and (max-width: 400px){
  footer .link__box dd ul li a { font-size: 11px; }
}

.thanks h1 {
}
.thanks__message {
  padding: 30px;
  margin-top: 30px;
}
.thanks__message h2 {
  font-size: 24px;
  margin-bottom: 30px;
}
.thanks__message h2,
.thanks__message p {
  text-align: left;
  display: table;
  margin-right: auto;
  margin-left: auto;
}

.back__btn {
  background-color: #0097a7;
  padding: 10px 20px;
  color: white!important;
  border-radius: 30px;
}

@media only screen and (max-width: 980px){
  main { margin-top: 52px; }
  .tertiary ul li p {
    width: 180px;
    height: 180px;
  }
}
@media only screen and (max-width: 880px){
  .cv a { font-size: 16px; }
  .cv p { font-size: 18px; }
  .link__txt { font-size: 10px; }
}
@media only screen and (max-width: 767px){
  .sp { display: block; }
  .pc { display: none; }
  .thanks h1, .page h1, .page.download h2 { font-size: 30px; }
  .top__inner h1 span { font-size: 28px; }
  .thanks__message h2 { font-size: 18px; }
  .left__block, .right__block {
    width: 100%;
    padding: 0;
  }
  .cv a {
    width: 100%;
    margin: 0 auto 1em;
  }
  .profile img {
    width: 200px;
    height: 200px;
  }
  .tertiary,
  .area__wrap { padding: 5em 1.5em; }
  .area__wrap .w__wrap { margin: 5em auto 0; }
  .area__wrap img.area__img {
    padding: 0;
    width: 100%;
  }
  .option .flex li { width: 50%; }
  .tertiary ul li p {
    width: 150px;
    height:150px;
    padding: 20px;
  }
  .tertiary ul li span { font-size: 18px; }
  .w__wrap .w__box { width: 100%; }
}
@media only screen and (max-width: 580px){
  .txt {
    font-size: 14px;
    line-height: 1.8;
  }
  .top__inner {
    width: auto;
    padding: 20px 15px;
  }
  .top__inner h1 { font-size: 24px; }
  .top__inner h1 span {
    max-width: 100%;
    font-size: 20px;
  }
  .top__inner h1 span:before, .top__inner h1 span:after {
    width: 15px;
  }
  .top__inner .txt { font-size: 12px; }
  .about2 .main__title,
  .secondary .main__title,
  .w__wrap .main__title,
  .tertiary .main__title { font-size: 24px; }
  .about2 .sub__title,
  .area__wrap .main__title { font-size: 18px; }
  .area__wrap .main__title span { font-size: 22px; }
  .left__block .s__title, .right__block .s__title { font-size: 20px; }
  .w__wrap .w__box h3 { font-size: 18px; }
  .option .flex li img { width: 80px; }
  .option .flex li span,
  footer a,
  .txt,
  .w__wrap .main__txt,
  .w__wrap .w__box .txt,
  .about .about__txt,
  .left__block .txt, .right__block .txt,
  .tertiary .left__block .txt, .tertiary .right__block .txt {
    font-size: 14px;
    line-height: 1.8;
  }
  .business__wrap .w100p .txt,
  .business__wrap .w__wrap .w__box .txt { font-size: 18px; }
  .w__wrap .main__txt { text-align: left; }
  .tertiary .txt { font-size: 16px; }
  .tertiary ul li p {
    width: 80px;
    height: 80px;
    padding: 5px;
  }
  .tertiary ul li span { font-size: 12px; }
  .about2 { margin: 5em auto; }
  .about .logo__wrap p span,
  .about .logo__wrap p { font-size: 20px; }
  .about .logo__wrap img { height: 30px; }
  .about .logo__wrap img.logo__1 { height: 25px; }
  .col_2,
  .business__wrap .w__wrap .w__box,
  .profile .w__wrap .w__box,
  .w__wrap .w__box {
    width: 100%;
    padding: 0;
  }
  footer small { font-size: 10px; }
}

@media only screen and (max-width: 400px){
  .top__inner { padding: 10px; }
  .top__inner h1 { font-size: 18px; }
  .top__inner h1 span { font-size: 18px; }
  .top__inner .txt { font-size: 10px; }
  .about .logo__wrap img { height: 20px; }
  .about .logo__wrap img.logo__1 {
    height: 18px;
    margin-right: 5px;
  }
  .about .logo__wrap p span { font-size: 14px; }
  .about .logo__wrap p { font-size: 16px; }
}
@media only screen and (max-width: 360px){
  .top__inner h1 span { font-size: 15px; }
}