@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.font-en-regu {
  font-family: old-standard, serif;
  font-weight: 400;
  font-style: normal;
}

.font-en-bold {
  font-family: old-standard, serif;
  font-weight: 700;
  font-style: normal;
}

/*ドラッグで画像を保存させない
img {
-webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  touch-callout:none;
  user-select:none;
}
*/
/* 画面外にいる状態 */
.fadein {
  opacity: 0;
  /*transform: translate(0, 25px);*/
  -webkit-transition: all 1500ms;
  transition: all 1500ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/**************
fade_on,fade_off
***********************************/
.fade_in {
  opacity: 0;
  transform: translate(0, 50px);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.fade_in.scroll_in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/**************
base
***********************************/
.hover-opacity {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: block;
}

.hover-opacity:hover {
  opacity: 0.6;
}

/**********************
基本
***************************/
::-moz-selection {
  background-color: #000;
  color: #fff;
}
::selection {
  background-color: #000;
  color: #fff;
}

/* for Firefox */
::-moz-selection {
  background-color: #000;
  color: #fff;
}

.top-btm-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sp {
  display: none;
}

#wrap {
  /*margin-top: 96px;*/
  margin-top: 76px;
  position: relative;
}

.font-thin {
  font-family: neue-haas-unica, sans-serif;
  font-weight: 200;
  font-style: normal;
}

/*
.font-light {
  font-family: neue-haas-unica, sans-serif;
  font-weight: 300;
  font-style: normal;
}
*/
.font-medium {
  font-family: neue-haas-unica, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.font-bold {
  font-family: neue-haas-unica, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.mb120 {
  margin-bottom: 120px;
}

.mb78 {
  margin-bottom: 78px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.inner {
  /*width: 1080px;*/
  margin: 0 auto;
}

h2 {
  font-size: 48px;
  text-align: center;
}

/**********************
スクロール
***************************/
/* delighters.jsが読み込まれると、 [data-delighter] 属性を持っている要素それぞれに .delighter が付与されます。*/
.foo.delighter {
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transform: translatey(-3px);
          transform: translatey(-3px);
  opacity: 0;
}

/* スクロールしてターゲットが画面上部（初期設定）から75%（初期設定）の位置にきた際 .started が設定されます。*/
.foo.delighter.started {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.animL.delighter {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}

.animL.started {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

#topBtn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#topBtn img {
  width: 32px;
}

#topBtn:hover {
  -webkit-transform: translateY(-0.1875em);
          transform: translateY(-0.1875em);
}

#topBtn02 {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#topBtn02 img {
  width: 32px;
}

#topBtn02:hover {
  -webkit-transform: translateY(-0.1875em);
          transform: translateY(-0.1875em);
}

/**********************
header
***************************/
/********
pc
************/
header {
  /*border-bottom: 1px solid #e4e4e4;*/
  position: fixed;
  top: 0;
  width: 100%;
  padding: 38px 0;
  z-index: 999;
  background-color: #fff;
}

header .flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header h1,
  header .logo {
  width: 156px;
  margin-left: 60px;
  z-index: 9999;
}
@media screen and (max-width: 1000px) {
  header h1,
  header .logo
  {
    margin-left: 10px;
  }
}
header .nav {
  margin-left: auto;
  margin-right: 2%;
  font-size: 15px;
}

header .nav ul li {
  margin-left: 30px;
}

header .nav ul li:nth-child(3) {
  padding-right: 30px;
  border-right: 1px solid #e4e4e4;
}

header .nav ul li a {
  webkit-transition: opacity 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: opacity 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
}

header .nav ul li a:hover {
  opacity: 0.6;
}

.section h2 {
  margin-bottom: 42px;
}

/**********************
★★★★★★★★
***************************/
.w810 {
  width: 810px;
  margin: 0 auto;
}

.w80p {
  width: 80%;
  margin: 0 auto 50px;
}

.w90p {
  width: 90%;
  margin: 0 auto 50px;
}

.section {
  width: 80%;
  margin: 0 auto;
  padding: 94px 0;
  border-bottom: 1px solid #e3e3e3;
}

.hover-action {
  position: relative;
  text-decoration: none;
}

.hover-action span {
  display: inline;
  font-size: 16px;
}

.hover-action::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #b8272e;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.hover-action:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.current .hover-action::after {
  -webkit-transform: inherit;
          transform: inherit;
  background: none;
}

.hover-BtoW {
  font-size: 14px;
  border: 1px solid #969696;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #000;
  color: #fff;
  width: 240px;
  padding: 12px 0;
  display: inline-block;
  position: relative;
  letter-spacing: 1px;
  /*font-style: italic;*/
}

.hover-BtoW:hover {
  color: #f3f3f2;
  background-color: #000000;
}

.hover-BtoW:hover::after {
  color: #fff;
}

.hover-BtoW::after {
  font-family: FontAwesome;
  position: absolute;
  content: "\f105";
  font-size: 16px;
  top: 16px;
  right: 20px;
  font-weight: normal;
  color: #969696;
}

.hover-BtoW:hover {
  background-color: #343434;
}

img.official-site-ttl {
  width: 76px;
  padding-top: 9px;
}

@media screen and (max-width: 768px) {
  img.official-site-ttl {
    width: 85px;
    padding-top: 12px;
  }
}

img.contactus-ttl {
  width: 76px;
  padding-top: 5px;
}

@media screen and (max-width: 768px) {
  img.contactus-ttl {
    width: 85px;
    padding-top: 8px;
  }
}

.link-othersite .hover-BtoW {
  /*
    &:hover::after {
      background-image: url(../images/common/link-after_off.png);
    }
    */
}

.link-othersite .hover-BtoW::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/link-after_on.png);
  background-repeat: no-repeat;
  top: 19px;
  right: 55px;
  font-weight: normal;
  width: 16px;
  height: 16px;
  background-size: 15px;
}

.t-center {
  text-align: center;
  margin: 26px 0 0;
}

/**********************
movie kv
***************************/
/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #ddd;
  /* 以下のコードを追加 */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

#movie {
  width: 100%;
  height: 56.2vw;
  top: 0;
}

.relative {
  position: relative;
  width: 100%;
}

.absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 999;
}

.tgt {
  opacity: 0;
  font-size: 5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
}

.tgt span {
  opacity: 0;
}

.ytp-watermark.yt-uix-sessionlink {
  display: none;
}

#kv {
  position: relative;
}

@media screen and (max-width: 768px) {
  #kv {
    padding-top: 62px;
  }
}

.arw-kv {
  position: relative;
  cursor: none !important;
}

.arw-kv img {
  width: 20px;
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-animation-name: move;
          animation-name: move;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  100% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  100% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
}

@media screen and (max-width: 768px) {
  .arw-kv img {
    left: calc(50% - 10px);
  }
}

.under-arw {
  width: 20px;
  height: 74px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-animation-name: move;
          animation-name: move;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  bottom: -56px;
}

@media screen and (max-width: 768px) {
  .under-arw {
    bottom: -29px;
  }
}

.under-arw .inner-arw img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .under-arw {
    width: 16px;
    height: auto;
  }
}

/**********************
firsttxt
***************************/
.first-txt {
  padding: 120px 0 120px;
  text-align: center;
  font-family: old-standard, serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .first-txt {
    padding: 70px 0 60px;
  }
}

.first-txt .txt01 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .first-txt .txt01 {
    font-size: 20px;
		font-weight: 400;
		line-height: 1.75;
		margin-bottom: 30px;
		letter-spacing: -.02em;
  }
}
.first-txt .txt02 {
  font-size: 18px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .first-txt .txt02 {
    font-size: 18px;
		line-height: 1.5;
  }
}

/*****************
parallax
********************/
.parallax {
  min-height: 400px;
  background-position: center top 76px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.parallax.bg-02 {
  background-position: center top 0;
  background-size:50% auto
}
@media screen and (max-width: 768px) {
  .parallax {
    min-height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .parallax {
    background-size: inherit;
  }
}

.parallax.bg-01 {
  background-image: url(../images/top/p01.jpg);
}

.parallax.bg-01_sp {
  background-image: url(../images/top/p01_sp.jpg);
  background-position: left;
}

.parallax.bg-02 {
  background: url(../images/top/p02.jpg) center center / cover no-repeat;
}

.parallax.bg-02_sp {
  background-image: url(../images/top/p02_sp.jpg);
}

/**********************
ourservice
***************************/
.ourservice .flex,
.insta .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section.ourservice .w810 {
  position: relative;
}

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

figure {
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

figure img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100%;
}

figure img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure img:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

figure.zoom {
  overflow: hidden;
  height: 250px;
}

figure.zoom img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100%;
}

figure.zoom img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure.zoom img:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.under-line {
  position: relative;
  display: inline-block;
  font-size: 2em;
  text-align: center;
}

.under-line:before,
.under-line:after {
  position: absolute;
  top: 1.3em;
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: #f30034;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.under-line:before {
  left: 50%;
}

.under-line:after {
  right: 50%;
}

.under-line:hover:before,
.under-line:hover:after {
  width: 50%;
}

.bnr-area li {
  /*
  width: 33.333%;
  margin-bottom: 40px;
  padding: 0 4%;
  box-sizing: border-box;
  */
  max-width: 250px;
  margin-bottom: 40px;
}

.bnr-area li:nth-of-type(2) {
  padding: 0 30px;
}

.bnr-area li figure {
  margin-bottom: 18px;
}

.hover-underline {
  position: relative;
  text-decoration: none;
  display: inline;
}

.hover-underline:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #ff0000;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.hover-underline.action::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/**********************
insta
***************************/
.section.insta{
  margin-top: 120px;
  border: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif!important;
}

.bginsta {
  background-color: #f5f5f5;
}

.bginsta .section.insta {
  padding: 60px 0 88px;
}

@media screen and (max-width: 768px) {
  .bginsta {
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
  }
  .bginsta::after {
	content: '';
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 40px;
	background-color: #bababa;
  }
  .bginsta .section.insta {
    margin-top: 110px;
    padding: 50px 0 25px;
  }
}

.bginsta h2 {
  font-family: rift, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 125px;
}

.bginsta h2 img {
  width: 80px;
}

@media screen and (max-width: 768px) {
  .bginsta h2 {
    font-size: 18px;
    margin-bottom: 160px;
  }
}

.one_insta-post {
  width: 250px;
  height: 250px;
  position: relative;
}
.exp-insta02{
  position: absolute;
  top:-95px;
  width: 100%;
  height: 95px;
  background: url(../images/top/icon-ks.png) no-repeat left top;
  background-size: 30px!important;
}
.insta-02 .exp-insta02{
  background: url(../images/top/icon-wb.png) no-repeat left top;
}
.insta-03 .exp-insta02{
  background: url(../images/top/icon-zoe.png) no-repeat left top;
}
.exp-insta02 span{
  display: block;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 10px;
}
.exp-insta02 span.insta-name{
  font-family: "Inter", sans-serif;
  font-size: 14px;
  margin-top: 0px;
  margin-left: 39px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .exp-insta02{
    background-size: 65px!important;
  }
  .exp-insta02 span{
    display: block;
    font-size: 13px;
    margin-left: 76px;
    margin-top: 0px;
    letter-spacing: -0.02em;
  }
  .exp-insta02 span.insta-name{
    font-size: 18px;
    margin-left: 76px;
    letter-spacing: 0.05em;
  }
}
.one_insta-post:nth-child(2) {
  margin: 0 30px;
}

@media screen and (max-width: 768px) {
  .one_insta-post:nth-child(2) {
    margin: 0 30px 18vw;
  }
}

@media screen and (max-width: 768px) {
  .one_insta-post:nth-child(3) {
    margin-bottom: 20vw;
  }
}

.one_insta-post:before {
  content: "";
  display: block;
  padding-top: 100%;
}

@media screen and (max-width: 768px) {
  .one_insta-post:before {
    padding-top: 94%;
  }
}

.one_insta-post img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .one_insta-post img {
    width: 90%;
    height: 90%;
  }
}

.one_insta-post .exp-insta {
  padding: 20px;
  background-color: #fff;
  min-height: 80px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .one_insta-post .exp-insta {
    min-height: 90px;
    padding: 0 20px 20px 20px;
    background-color: inherit;
  }
}

.one_insta-post .exp-insta span {
  display: block;
}

.one_insta-post .exp-insta span:nth-child(1) {
  margin-bottom: 4px;
}

.one_insta-post .exp-insta span:nth-child(2) {
  font-size: 12px;
}

.mask-txt {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #fff;
}

.mask-txt span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.one_insta-post:hover .mask-txt {
  /*opacity: 1;*/
}
.instagram-card:hover .mask-txt {
  opacity: 1;
}
#sb_instagram .sb_instagram_header, .sb_instagram_header{
  display: none;
}
.instagram-card .sbi_photo03 img{
  width: 100%;
  height: auto;
  aspect-ratio: 100 / 100;
  object-fit: cover;
  transition: -webkit-transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
  vertical-align: middle;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .instagram-card .sbi_photo03 img{
    aspect-ratio: 100 / 94;
  }
}
/**********************
topic
***************************/
.w-fullsize {
  padding: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}

.one-topic {
  width: 48%;
  padding: 40px 2% 40px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.one-topic:hover {
  opacity: 0.7;
}

.one-topic .img {
  width: 41%;
  margin-right: 4%;
  background-size: 100%;
  padding-top: 27%;
  background-repeat: no-repeat;
}

.one-topic .img img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.one-topic .txt {
  width: calc(100% - 46%);
}

.one-topic .txt .date {
  color: #969696;
  margin-bottom: 14px;
  font-size: 12px;
}

.one-topic .txt .ttl {
  font-size: 14px;
  margin-bottom: 14px;
}

.slash {
  color: #ababab;
}

.slash::after {
  content: "/";
}

.slash:last-child::after {
  content: none;
}

/**********************
creator
***************************/
.one-creator {
  width: 33.333%;
  padding: 40px 2% 40px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.one-creator:hover {
  opacity: 0.7;
}

.one-creator .img {
  width: 100%;
  margin-right: 4%;
  background-size: 100%;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.one-creator .img img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.one-creator .txt {
  width: 100%;
}

.one-creator .txt .position {
  color: #646464;
  font-size: 14px;
  margin-top: 12px;
  /*font-style: italic;*/
}

.one-creator .txt .name_en {
  font-size: 24px;
  margin-bottom: 4px;
}

.one-creator .txt .name_kanji {
  font-size: 14px;
}

.dtl-page-name02 {
  font-size: 24px;
  margin-bottom: 78px;
  text-align: center;
}

.creator-one {
  margin-bottom: 68px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.creator-one .left {
  width: 70%;
}

.creator-one .left .position {
  color: #646464;
  font-size: 16px;
  margin-right: 16px;
  margin-bottom: 32px;
  font-style: italic;
}

.creator-one .left .name_kanji {
  font-weight: bold;
  font-size: 18px;
}

.creator-one .right {
  width: 25%;
  position: relative;
}

.creator-one .right .img {
  width: 100%;
  padding-top: 100%;
  background-position: center center;
  background-size: cover;
}

.creator-one .right .name_en {
  position: absolute;
  bottom: -18px;
  font-size: 24px;
  left: -20px;
  font-weight: bold;
}

/**********************
bland
***************************/
.w-fullsize02 {
  padding: 0 30px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.one-bland {
  width: 100%;
}

.one-bland .img {
  width: 50%;
  background-size: 100%;
  padding-top: 30%;
  background-repeat: no-repeat;
}

.one-bland .txt {
  width: calc(100% - 58%);
  text-align: center;
  font-size: 14px;
  line-height: 2;
  padding: 0 4%;
}

.one-bland .txt .b-logo {
  margin-bottom: 42px;
}

@media screen and (max-width: 768px) {
  .one-bland .txt .b-logo {
    margin-bottom: 24px;
  }
}

.one-bland .txt .b-logo img {
  width: 80%;
}

.one-bland .txt .dtl {
  margin-bottom: 42px;
}

/**********************
sns
***************************/
.section.sns {
  text-align: center;
  border-bottom: none;
}

.section.sns .s-ttl {
  font-size: 16px;
  margin-bottom: 20px;
  font-style: italic;
}

.section.sns .s-ttl img {
  width: 138px;
  height: 12px;
}

.section.sns ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section.sns ul li {
  margin: 0 10px;
  width: 24px;
  webkit-transition: opacity 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: opacity 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.section.sns ul li img {
  width: 100%;
}

.section.sns ul li a:hover img {
  opacity: 0.7;
}

.section.sns .hover-BtoW {
  width: 350px;
  padding: 26px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*font-style: italic;*/
}

.section.sns .hover-BtoW::after {
  content: none;
}

.okoshiare {
  font-size: 14px;
  margin-bottom: 16px;
}

.contact-btn.mb32 {
  margin-bottom: 32px;
}

.t-center.mb120 {
  margin-bottom: 120px;
}

/**********************
下層ページ
***************************/
#wrap.underlayer {
  margin-top: 166px;
}

#wrap.underlayer h2.creativeW img {
  width: 232px;
}

/**********************
works一覧
***************************/
.w1000 {
  width: 1000px;
  margin: 0 auto;
}

/**********************
footer
***************************/
footer {
  background-color: #000;
  color: #808080;
  width: 100%;
  padding: 44px 0;
  text-align: center;
}

footer a {
  color: #fff;
}

footer .f-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
	align-content: center;
}

footer .copy {
  margin: 0;
	font-size: 14px;
}

footer .pp-link {
  position: absolute;
  right: 6.66%;
}

footer .pp-link a {
  font-style: italic;
	font-size: 14px;
}
@media screen and (max-width: 768px) {
	footer .pp-link {
		right: inherit;
	}
	footer .pp-link a {
		font-size: 12px;
	}
}

/**********************
下層
***************************/
.w-fullsize.works-wrap {
  padding: 24px 0;
  width: 80%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #dedede;
}

.current {
  font-weight: bold;
}

.current span.gly {
  font-weight: normal;
}

.menu-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  width: 800px;
  margin: 0 auto;
}

.menu-list li {
  margin-bottom: 16px;
}

.menu-list li.current a {
  color: #000;
}

.menu-list li.current a .hover-action {
  border-bottom: 1px solid #b8272e;
  font-weight: normal;
}

.menu-list li.current a::after {
  -webkit-transform: inherit;
          transform: inherit;
}

.menu-list li a {
  cursor: pointer;
  letter-spacing: 1px;
  /*border-right: 1px solid #ababab;*/
  padding: 0 12px 0 22px;
}

.menu-list li a:hover {
  color: #000;
}

.menu-list li:last-child {
  border-right: none;
}

.menu-list li .gly {
  color: #ababab;
}

.underlayer h2 {
  /*margin-bottom: 72px;*/
  font-style: italic;
  font-weight: normal;
}

.hover-BtoW.font-light.pageback::after {
  font-family: FontAwesome;
  position: absolute;
  content: "\f104";
  font-size: 16px;
  /*top: 11px;*/
	top: 50%;
	margin-top: -.5em;
  left: 20px;
  right: inherit;
  font-weight: normal;
}

.hover-BtoW.font-light.pageback.pageback_long::after {
  font-family: FontAwesome;
  position: absolute;
  content: "\f104";
  font-size: 16px;
  top: 28px;
  left: 20px;
  right: inherit;
  font-weight: normal;
}

.hover-BtoW:hover::after {
  color: #fff;
}

/*****
下層ぱんくず -pan-
**************/
#pan ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#pan ul li {
  color: #000;
}

#pan ul li a {
  color: #000;
}

#pan ul li.arw {
  margin: 0 10px;
  font-size: 10px;
}

#pan ul li span {
  color: #808080;
}

#pan ul li.nowpage {
  color: #808080;
}

/*****
下層ページャー -pgr-
**************/
.pgr {
  padding: 122px 0;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-numbers li {
  margin: 0 9px;
}

.page-numbers li a:hover {
  border-bottom: 1px solid #ff0000;
}

.page-numbers {
  webkit-transition: opacity 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: opacity 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.page-numbers.current {
  border-bottom: 1px solid #ff0000;
  font-weight: normal !important;
}

.page-numbers:hover {
  opacity: 0.7;
}

/*****
下層 -bnr02-
**************/
.bnr-area02 li {
  width: 33.333%;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.bnr-area02 li figure {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.bnr-area02 li figure:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.bnr-area02 li a img {
  width: 100%;
  -webkit-filter: inherit;
          filter: inherit;
}

.bnr-area02 li .txt {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.bnr-area02 .mask-txt {
  opacity: 1;
  background-color: initial;
}

/*****
下層 -works-
**************/
.works-wrap .one-topic {
  width: 50%;
  padding: 40px 2%;
}

.works-wrap .one-topic .img {
  width: 100%;
  /*padding-top: 26.1vw;*/
  padding-top: 23.1vw;
  margin-right: 0;
  background-size: contain;
  background-position: center;
}

.works-wrap .one-topic .img img {
  width: 100%;
}

.works-wrap .one-topic .ttl {
  font-weight: bold;
  margin-bottom: 4px;
}

.en-tag {
  margin: 10px 0 8px 0;
}

/*****
下層 -works 詳細 single-
**************/
.post-dtl-page-btn {
  margin: 100px 0 116px;
}

.dtl-page-name {
  font-size: 24px;
}

.underlayer h2.dtl-page-ttl {
  font-size: 18px;
  text-align: left;
  margin-bottom: 52px;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .underlayer h2.dtl-page-ttl {
    margin-top: 0;
  }
}

.dtl-main-img {
  width: 100%;
  padding-top: 56.6vw;
  background-size: 100%;
  margin-bottom: 18px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .dtl-main-img {
    padding-top: 64.6vw;
  }
}

#dtl-post .txt {
  font-size: 12px;
  margin-bottom: 90px;
  line-height: 2;
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  #dtl-post .txt {
    margin-bottom: 32px;
    padding-top: 0px;
  }
}

#dtl-post .txt.small_cap {
  font-size: 12px;
  margin-bottom: 0;
  line-height: 2;
  padding-top: 10px;
}

.col-2 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#dtl-post .harf-box {
  width: 48%;
  margin-bottom: 44px;
}

#dtl-post .harf-box .img {
  width: 100%;
  background-size: 100%;
  padding-top: 26.7vw;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  #dtl-post .harf-box .img {
    padding-top: 66.7vw;
  }
}

.mov-content {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 62.5%;
  margin: 0;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}

.mov-play-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0.2);
  font-size: 98px;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  -webkit-transition: background 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mov-play-btn::after {
  font-family: FontAwesome;
  content: "\f01d";
  font-style: normal;
  font-weight: normal;
  line-height: 1.05;
  text-indent: 0;
  text-align: center;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1em;
  height: 1em;
  margin: auto;
  opacity: 1;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.35);
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 999;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100%;
}

.mov-txt {
  margin: 16px 0 48px;
  font-size: 12px;
}

.mov-txt02 {
  margin: 8px 0 0px;
  font-size: 12px;
}

.dtl-data {
  margin: 60px 0;
}

.dtl-data .slash {
  color: #000;
}

.dtl-data span {
  color: #808080;
}

.dtl-data .release {
  margin-left: 30px;
}

.dtl-data .tech {
  padding-top: 18px;
  margin-top: 18px;
  margin-bottom: 14px;
  border-top: 1px solid #dedede;
}

/**********************
  management 一覧
***************************/
.bg-gray {
  background-color: #ededed;
}

.b-none {
  border: none !important;
}

@media screen and (max-width: 768px) {
  #wrap.underlayer.management-wrap {
    padding: 0;
  }
}

.mask-wrap02 {
  position: relative;
}

.management-wrap h3 {
  font-size: 20px;
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .management-wrap h3 {
    font-size: 18px;
    margin-bottom: 38px;
  }
}

.management-wrap .intro-txt {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .management-wrap .intro-txt {
    padding: 0 15px;
  }
}

.management-wrap .professional_surfer {
  border: none;
  position: relative;
  /*
    & .women-ttl:nth-child(2) {
      position: relative;
      display: flex;
      align-items: center;
      width: 80%;
      margin: 9vw auto auto;
      @include sp {
        margin-bottom: 70px;
      }
      & h3 {
        padding: 0 15px;
        background-color: #fff;
        &.body-border {
          background-color: #dfdfdf;
        }
      }
    }*/
}

.management-wrap .professional_surfer .wrap-shino {
  padding: 80px 0 0;
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer .wrap-shino {
    padding: 80px 0 40px;
  }
}

.management-wrap .professional_surfer .wrap-shino .left-img {
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.management-wrap .professional_surfer .wrap-shino .left-img:hover {
  opacity: 0.7;
}

.management-wrap .professional_surfer .ppl-one {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer .ppl-one {
    padding-bottom: 40px;
  }
}

.management-wrap .professional_surfer .ppl-one:hover {
  opacity: 0.7;
}

.management-wrap .professional_surfer .wrap-other {
  padding: 100px 0 180px;
}

.management-wrap .professional_surfer .wrap-other.life_surfer {
  padding-top: 70px;
}

.management-wrap .professional_surfer .wrap-other:nth-of-type(2) {
  padding: 24px 0 54px;
}

.management-wrap .professional_surfer .wrap-other.life_surfer:nth-of-type(2) {
  padding: 0 0 142px;
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer .wrap-other.life_surfer:nth-of-type(2) {
    padding-bottom: 54px;
  }
}

.management-wrap .professional_surfer .wrap-other.surfer_women {
  padding: 100px 0 36px;
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer .wrap-other.surfer_women {
    padding: 50px 0;
  }
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer .wrap-other {
    padding: 50px 0;
  }
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer .wrap-other.surfer_women {
    padding: 20vw 0 50px;
  }
}

.management-wrap .professional_surfer .wrap-other.surfer-w .ppl-one:nth-child(n + 3) {
  margin-top: 11vw;
}
.management-wrap .professional_surfer .wrap-other.bodyboarder .ppl-one:nth-child(n + 3) {
  margin-top: 11vw;
}
.management-wrap .professional_surfer .wrap-other.surfer-w .ppl-one:nth-child(-n + 2) {
  margin-top: 0vw;
}
.management-wrap .professional_surfer .wrap-other.bodyboarder .ppl-one:nth-child(-n + 2) {
  margin-top: 0vw;
}
.management-wrap .professional_surfer .wrap-other.bodyboarder {
  padding: 4vw 0 12vw;
  margin-top: 6vw;
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer .wrap-other.bodyboarder {
    margin-top: 12vw;
  }
}

.management-wrap .professional_surfer .wrap-other.bodyboarder .w-fullsize.works-wrap {
  padding-right: 8vw;
  width: 88vw;
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer .wrap-other.bodyboarder .w-fullsize.works-wrap {
    padding-right: 0;
    width: auto;
  }
}

.management-wrap .professional_surfer .wrap-other.bodyboarder .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer .wrap-other.bodyboarder .flex .ppl-one {
    padding-top: 6vw;
  }
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer:nth-child(2) .wrap-other {
    padding: 24px 0 0;
  }
}

.management-wrap .professional_surfer .wrap-other02 {
  padding: 0 0 180px;
}

.management-wrap .professional_surfer .men-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
  margin: 9vw auto 32px;
  /*
      &:before,
      &:after {
        border-top: 1px solid #dbdbdb;
        content: "";
        flex-grow: 1;
        z-index: 1;
      }
      &:before {
        margin-right: 1rem;
      }
      &:after {
        margin-left: 1rem;
      }
      */
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer .men-ttl {
    margin-bottom: 36px;
  }
}

.management-wrap .professional_surfer .men-ttl h3 {
  padding: 0 15px;
  background-color: #fff;
}

.management-wrap .professional_surfer .men-ttl h3.body-border {
  background-color: #ededed;
}

.management-wrap .professional_surfer h3 {
  width: 100%;
  position: absolute;
  font-size: 24px;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  line-height: 1.2;
}

.management-wrap .professional_surfer h3 span {
  display: block;
  font-weight: normal;
  font-style: italic;
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer h3 span {
    font-size: 20px;
  }
}

.management-wrap .professional_surfer h3 span.ttl {
  width: 100%;
  margin: 0 auto;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 0;
  padding-bottom: 16px;
  font-weight: bold;
}

.management-wrap .professional_surfer h3 span.ttl:after, .management-wrap .professional_surfer h3 span.ttl:before {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-top: 1px solid #dbdbdb;
  display: block;
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer h3 span.ttl:after, .management-wrap .professional_surfer h3 span.ttl:before {
    border-top: none;
  }
}

.management-wrap .professional_surfer h3 span.ttl:after {
  margin-left: 14px;
}

.management-wrap .professional_surfer h3 span.ttl:before {
  margin-right: 14px;
}

.management-wrap .professional_surfer .women-ttl h3 {
  width: 100%;
  position: absolute;
  font-size: 24px;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  line-height: 1.2;
}

.management-wrap .professional_surfer .women-ttl h3 span {
  display: block;
  font-weight: normal;
  font-style: italic;
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer .women-ttl h3 span {
    font-size: 20px;
  }
}

.management-wrap .professional_surfer .women-ttl h3 span.ttl {
  width: 100%;
  margin: 0 auto;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 0;
  padding-bottom: 16px;
  font-weight: bold;
}

.management-wrap .professional_surfer .women-ttl h3 span.ttl:after, .management-wrap .professional_surfer .women-ttl h3 span.ttl:before {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-top: none;
  display: block;
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer .women-ttl h3 span.ttl:after, .management-wrap .professional_surfer .women-ttl h3 span.ttl:before {
    border-top: none;
  }
}

.management-wrap .professional_surfer .women-ttl h3 span.ttl:after {
  margin-left: 14px;
}

.management-wrap .professional_surfer .women-ttl h3 span.ttl:before {
  margin-right: 14px;
}

.management-wrap .professional_surfer.life_surfer .women-ttl {
  padding-bottom: 4vw;
  background-color: #ededed;
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer.life_surfer .women-ttl {
    padding-bottom: 10vw;
  }
}

.management-wrap .professional_surfer.life_surfer .women-ttl h3 {
  width: 80%;
}

.management-wrap .professional_surfer.life_surfer .women-ttl h3 .ttl {
  font-weight: bold;
}

.management-wrap .professional_surfer.life_surfer .women-ttl h3 .ttl:after, .management-wrap .professional_surfer.life_surfer .women-ttl h3 .ttl:before {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-top: 1px solid #dbdbdb;
  display: block;
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer.life_surfer .women-ttl h3 .ttl:after, .management-wrap .professional_surfer.life_surfer .women-ttl h3 .ttl:before {
    border-top: none;
  }
}

.management-wrap .professional_surfer.life_surfer .ppl-one {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .management-wrap .professional_surfer.life_surfer .ppl-one {
    margin-bottom: 40px;
  }
}

.management-wrap .one-promo {
  margin-bottom: 36px;
}

.management-wrap .one-promo .img {
  padding-top: 69%;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-bottom: 16px;
}

.management-wrap .one-promo .ttl {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .management-wrap .fixpd {
    padding-bottom: 80px;
  }
}

/**********************
  management 詳細
  ***************************/
.p-dl .p-ttl {
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  .section.p-dl {
    padding: 40px 0 0;
  }
}

.manage-txt {
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .pd-24 {
    padding: 0 24px;
  }
}

.management {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .management {
    display: inherit;
  }
}

.management .border-wrap {
  padding-top: 118px;
  border-top: 1px solid #e4e4e4;
}

.management .left-img {
  width: 46%;
}

@media screen and (max-width: 768px) {
  .management .left-img {
    width: 100%;
    margin-bottom: 40px;
  }
}

.management .left-img .manege_img {
  width: 77%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 100%;
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .management .left-img .manege_img {
    width: 86%;
  }
}

.management .left-img .posi-name {
  position: absolute;
  bottom: -54px;
  left: -20%;
  line-height: 1;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .management .left-img .posi-name {
    left: -16%;
    bottom: -30px;
  }
}

.management .left-img .posi-name .position {
  font-size: 16px;
  font-style: italic;
  color: #646464;
}

@media screen and (max-width: 768px) {
  .management .left-img .posi-name .position {
    font-size: 12px;
  }
}

.management .left-img .posi-name .name_en {
  font-size: 46px;
  font-weight: bold;
  margin: 2px 0 10px;
}

@media screen and (max-width: 768px) {
  .management .left-img .posi-name .name_en {
    font-size: 26px;
  }
}

.management .left-img .posi-name .name_ja {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .management .left-img .posi-name .name_ja {
    font-size: 18px;
  }
}

.management .prof-txt {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .management .prof-txt {
    width: 100%;
    padding-top: 32px;
  }
}

.management .prof-txt .ttl-g {
  vertical-align: middle;
  color: #808080;
  display: table-cell;
  font-size: 12px;
}

.management .prof-txt .ttl-g.letter {
  width: 100px;
  text-align: justify;
  text-justify: inter-ideograph;
  padding-right: 6px;
}

.management .prof-txt .ttl-g.letter.player-tag {
  padding-top: 10px;
}

.management .prof-txt .ttl-g.letter:after {
  content: "";
  display: inline-block;
  width: 100%;
}

.management .prof-txt .cln {
  color: #808080;
  font-size: 12px;
  padding-right: 6px;
  display: table-cell;
  vertical-align: middle;
}

.management .prof-txt div.layout {
  display: table;
}

.management .prof-txt .name {
  font-size: 24px;
}

.management .prof-txt .fw-b {
  font-weight: bold;
  display: table-cell;
  vertical-align: top;
}

.management .prof-txt .txt-scroll-area {
  width: 100%;
  max-height: 132px;
  margin: 10px 0 15px;
  font-size: 12px;
  overflow-y: scroll;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .management .prof-txt .txt-scroll-area {
    height: auto;
    margin-bottom: 16px;
  }
}

.management .prof-txt .db-w100 {
  display: block;
}

.management .prof-txt .emphasis {
  display: inline-block;
  background-color: #000;
  padding: 4px 16px;
  color: #fff;
  font-size: 12px;
  margin-bottom: 4px;
}

.management .prof-txt .sns {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .management .prof-txt .sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.management .prof-txt .sns div:first-child {
  margin-right: 16px;
}

.management .prof-txt .sns div i {
  font-size: 20px;
  margin-right: 6px;
}

.management .prof-txt .sns div a {
  font-size: 14px;
}

.link-pdf a:before {
  content: "";
  background-image: url(../images/common/pdf-after_off.png);
  background-repeat: no-repeat;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: 18px;
  position: absolute;
  top: 26px;
  right: 99px;
}

@media screen and (max-width: 768px) {
  .link-pdf a:before {
    top: 24px;
    right: 63px;
  }
}

/*
.link-pdf a:hover::before {
  top: 25px;
  background-image: url(../images/common/pdf-after_on.png);
}
*/
.sponsor {
  padding: 118px 0;
  border-top: 1px solid #e4e4e4;
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .sponsor {
    padding: 60px 0;
    margin-top: 60px;
  }
}

.sponsor .sponsor-ttl {
  font-size: 24px;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .sponsor .sponsor-ttl {
    font-size: 16px;
  }
}

.sponsor .sponsor-list {
  margin-bottom: 18px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  #dtl-post .sponsor .harf-box {
    margin-bottom: 32px;
  }
}

.contact-btn.mb0 {
  margin-bottom: 0;
}

.toggle_title {
  position: relative;
  cursor: pointer;
  font-size: 24px;
  line-height: 1.4;
  padding-left: 34px;
}

.toggle_contents {
  padding: 118px 0;
  border-top: 1px solid #e4e4e4;
}

@media screen and (max-width: 768px) {
  .toggle_contents {
    padding: 60px 0;
  }
}

.toggle_btn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #c2c2c2;
  display: block;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.toggle_btn:before,
.toggle_btn:after {
  display: block;
  content: "";
  background-color: #c2c2c2;
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.toggle_btn:before {
  width: 2px;
  height: 10px;
}

.toggle_title.selected .toggle_btn:before {
  content: normal;
}

.toggle_contents dd {
  /*display: none;*/
}

.toggle_contents dd .txt-box {
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .toggle_contents dd .txt-box br {
    display: block;
    content: "";
    margin-bottom: 6px;
  }
}

/**********************
  management 一覧
***************************/
@media screen and (max-width: 768px) {
  /**********************
基本
***************************/
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
  .inner {
    width: 100%;
    margin: 0 auto;
  }
  #wrap {
    /*margin-top: 16px;*/
    padding: 62px 15px 0;
  }
  #wrap.topSp-fix {
    padding-top: 0;
    margin-top: 0;
  }
  header {
    padding: 0;
    /*position: relative;*/
    position: fixed;
    top: 0;
  }
  header h1,
  header .logo
  {
    width: 144px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin-left: 0;
    z-index: inherit;
  }
  h2 {
    font-size: 32px;
  }
  #main_img {
    width: 100%;
  }
  .change_btn {
    width: 90%;
    margin: 32px auto;
  }
  .mb78 {
    margin-bottom: 40px;
  }
  #page_top {
    bottom: 24px;
  }
  #page_top img {
    width: 20px;
  }
  /**********************
メニュー部分
***************************/
  .clo-logo {
    position: relative;
    padding-top: 8px;
  }
  .sp-menu {
    padding: 16px 0;
    position: relative;
    height: 30px;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: #fff;
  }
  nav {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    left: 0;
    z-index: 99;
    overflow: scroll;
  }
  nav .clo-logo img {
    width: 144px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding-top: 53px;
  }
  nav .positionFix {
    width: 100%;
    height: 100vw;
    position: absolute;
    top: 84vw;
    left: 50%;
    transform: translate(-50%, -60%);
    -webkit-transform: translate(-50%, -60%);
    -ms-transform: translate(-50%, -60%);
    padding: 0 65px 0 65px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav .open-nav {
    display: block;
    width: 100%;
    height: 100%;
    /*
      position: absolute;

      right: 0px;
      bottom: 0px;
      margin: auto;
      top: 32vh;
      left: 50%;
      transform: translate(-50%, -50%);

      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);      
      padding: 0 50px;
      box-sizing: border-box;
      */
  }
  nav .open-nav h4 a {
    color: #fff;
  }
  header nav ul.sp-nav li {
    margin: 0 auto;
    text-align: left;
  }
  header nav ul.sp-nav li:last-child {
    border: none;
  }
  header nav ul.sp-nav li a {
    display: block;
    color: #b2b2b2;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif!important;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.01em;
    padding: 6px 0;
  }
  header nav ul.sp-nav li a[target="_blank"] {
   background-image: url(../images/common/icon_popup.svg);
   background-repeat: no-repeat;
   background-size: 20px;
   background-position: right center;
  }
  header nav ul.sns-nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 75px 0 60px;
  }
  header nav ul.sns-nav li {
    margin: 0 14px;
  }
  header nav ul.sns-nav img {
    width: 20px;
  }
  header nav .btn {
    text-align: center;
    padding-bottom: 20px;
  }
  /*開閉ボタン*/
  header .inner {
    padding: 0;
  }
  #nav_toggle {
    display: block;
    width: 26px;
    position: relative;
    z-index: 100;
    margin-left: auto;
    padding-right: 20px;
  }
  #nav_toggle div {
    position: relative;
  }
  #nav_toggle span {
    display: block;
    height: 2px;
    background: #000;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #nav_toggle span:nth-child(1) {
    top: 0px;
  }
  #nav_toggle span:nth-child(2) {
    top: 9px;
  }
  #nav_toggle span:nth-child(3) {
    top: 18px;
  }
  .menu-trigger-wrap {
    position: absolute;
    top: 21px;
    right: 25px;
    z-index: 9999;
  }
  .menu-trigger {
    position: relative;
    width: 25px;
    height: 18px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .menu-trigger a {
    color: #000;
  }
  .menu-trigger span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0px;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 9px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active span {
    background-color: #fff;
  }
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-menu-bar02 0.8s forwards;
    animation: active-menu-bar02 0.8s forwards;
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }
  @-webkit-keyframes active-menu-bar02 {
    100% {
      height: 0;
    }
  }
  @keyframes active-menu-bar02 {
    100% {
      height: 0;
    }
  }
  /*開閉ボタンopen時*/
  .open #nav_toggle span {
    background: #fff;
  }
  .open #nav_toggle span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  /**********************
    ★★★★★★★★
    ***************************/
  .w810 {
    width: 100%;
    margin: 0 auto;
  }
  /**********************
    KV
***************************/
  .tgt {
    opacity: 0;
    font-size: 30px;
    padding: 60vw 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #000;
  }
  .tgt span {
    opacity: 0;
  }
  /**********************
    topic
    ***************************/
  .w-fullsize {
    padding: 0;
  }
  .section {
    width: 100%;
    padding: 50px 0;
  }
  .t-center {
    margin: 30px 0 0;
  }
  /**********************
    ourservice
    ***************************/
  .bnr-area li {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 14px;
    max-width: 100%;
  }
  .bnr-area li:last-child {
    margin-bottom: 0;
  }
  .bnr-area li:nth-of-type(2) {
    padding: 0;
  }
  .bnr-area li img {
    width: 100%;
  }
  .bnr-area li .sp .ttl {
    position: relative;
  }
  .bnr-area li .sp .ttl span {
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    width: 100%;
    color: #fff;
    text-align: center;
  }
  figure img {
    -webkit-filter: inherit;
    filter: inherit;
  }
  /**********************
    insta
    ***************************/
  .one_insta-post {
    width: 340px;
    height: 76vw;
    margin: 0 28px 58px;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .one_insta-post {
    margin-bottom: 18vw;
  }
}

@media screen and (max-width: 768px) {
  .one-topic {
    width: 100%;
    padding: 12px 0;
  }
  .one-topic .txt {
    width: calc(100% - 48%);
  }
  .one-topic .img {
    background-repeat: no-repeat;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 27%;
  }
  .one-bland .img {
    width: 100%;
    padding-top: 62%;
    margin-bottom: 16px;
  }
  .one-bland .txt {
    width: 100%;
    font-size: 14px;
    margin-top: 0;
    padding: 0;
  }
  /**********************
    sns
    ***************************/
  .hover-BtoW {
    width: 85%;
    padding: 14px 0;
    font-size: 18px;
  }
  .hover-BtoW::after {
    top: 18px;
    font-size: 20px;
  }
  .link-othersite .hover-BtoW::after {
    top: 26px;
    right: 19vw;
    background-size: 15px;
  }
  .contact-btn {
    margin-bottom: 60px;
  }
  .section.sns .hover-BtoW {
    width: 85%;
    padding: 18px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-style: italic;
  }
  /**********************
    footer
    ***************************/
  footer {
    padding: 20px 0;
  }
  footer .flex {
    display: inherit;
  }
  footer .pp-link {
    margin: 0 auto 16px;
    text-align: center;
    position: inherit;
    right: inherit;
	}
  footer .copy {
    margin: 0 auto;
    text-align: center;
  }
  .contact-btn.mb32 {
    margin-bottom: 0;
  }
  .t-center.mb120 {
    margin-bottom: 60px;
    margin-top: 0;
  }
	@media screen and (max-width: 768px) {
		footer .pp-link {
			margin: 0 auto 15px;
		}
		footer .copy {
			font-size: 12px;
		}
	}
  /**********************
下層
***************************/
  .w-fullsize.works-wrap {
    padding: 0;
    width: 100%;
    border-bottom: none;
  }
  #wrap.underlayer {
    margin-top: 110px;
    padding-top: 0;
  }
  .menu-list {
    width: 100%;
    margin-bottom: 20px;
  }
  .menu-list li a {
    font-size: 15px;
    /*padding: 0 8px 0 18px;*/
    padding: 0;
    /*line-height: 1.2;*/
    line-height: 1.5;
    letter-spacing: 2px;
  }
  .underlayer h2 {
    margin-top: 80px;
    margin-bottom: 8px;
  }
  .mask-txt span {
    width: 100%;
    text-align: center;
    font-size: 18px;
  }
  .hover-BtoW.font-light.pageback::after {
    font-size: 20px;
    top: 24px;
  }
  /*****
下層ぱんくず -pan-
**************/
  #pan ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 6px;
  }
  /*****
下層ページャー -pgr-
**************/
  .pgr {
    padding: 60px 0;
  }
  .page-numbers li {
    margin: 0 9px;
  }
  /*****
下層 -bnr02-
**************/
  .bnr-area02 {
    margin-bottom: 120px;
  }
  .bnr-area02 li {
    width: 100%;
    overflow: hidden;
    margin-bottom: 14px;
  }
  .bnr-area02 li:last-child {
    margin-bottom: 0;
  }
  /*****
下層 -works-
**************/
  .works-wrap .one-topic {
    width: 100%;
    padding: 20px 0%;
  }
  .works-wrap .one-topic .img {
    padding-top: 58vw;
    margin-right: 0;
  }
  .en-tag {
    margin: 6px 0;
  }
  .works-wrap .one-topic .ttl {
    margin-bottom: 4px;
  }
  #dtl-post .harf-box {
    width: 100%;
    margin-bottom: 7vw;
  }
  /**********************
  creator
  ***************************/
  .one-creator {
    width: 85%;
    padding: 20px 0;
    margin: 0 auto;
  }
  .one-creator .img {
    width: 100%;
    margin-right: 0;
    background-size: 100%;
    padding-top: 100%;
    background-size: cover;
  }
  .one-creator .img img {
    width: 100%;
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .one-creator .txt {
    width: 100%;
  }
  .one-creator .txt .position {
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .one-creator .txt .name_en {
    font-size: 22px;
    margin-bottom: 4px;
  }
  .one-creator .txt .name_kanji {
    font-size: 13px;
  }
  .dtl-page-name02 {
    font-size: 24px;
    margin-bottom: 32px;
    padding-top: 24px;
    text-align: center;
  }
  .creator-one {
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    margin-bottom: 0;
  }
  .creator-one .left {
    width: 80%;
    margin: 0 auto;
  }
  .creator-one .left .flex {
    display: inherit;
  }
  .creator-one .left .position {
    font-size: 22px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .creator-one .left .name_kanji {
    font-size: 26px;
    margin-bottom: 18px;
  }
  .creator-one .introduction {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e3e3e3;
  }
  .creator-one .right {
    width: 80%;
    position: relative;
    margin: 0 auto 42px;
  }
  .creator-one .right .name_en {
    bottom: -24px;
    font-size: 30px;
    left: -20px;
  }
}

.works-wrap .one-topic.topic-large {
  width: 100%;
  margin: 0 0 32px 0;
  padding: 0;
}

.works-wrap .one-topic.topic-large .img {
  padding-top: 52.1vw;
}

@media screen and (max-width: 768px) {
  .works-wrap .one-topic.topic-large .img {
    padding-top: 60vw;
  }
}

/**********************
company
***************************/
.company-wrap h3 {
  font-size: 40px;
  text-align: center;
  /*margin: 136px 0 60px;*/
  margin: 40px 0 60px;
}

@media screen and (max-width: 768px) {
  .company-wrap h3 {
    font-size: 24px;
    margin: 40px 0 30px;
  }
}

.company-wrap .intro-txt {
  text-align: center;
  font-size: 16px;
  line-height: 2.5;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .company-wrap .intro-txt {
    font-size: 13px;
    margin-bottom: 90px;
  }
}

.company-wrap .intro-txt .txt01 {
  margin-bottom: 32px;
}

.company-wrap .tbl-area {
  margin-bottom: 40px;
}

.company-wrap .tbl-area h4 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
}

.company-wrap .tbl-area table {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .company-wrap .tbl-area table {
    display: inherit;
    width: 100%;
    border-bottom: 1px solid #e3e3e3;
  }
}

.company-wrap .tbl-area table th,
.company-wrap .tbl-area table td {
  padding: 10px 0;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .company-wrap .tbl-area table th,
  .company-wrap .tbl-area table td {
    width: 100%;
    display: block;
    padding: 16px 0;
  }
}

.company-wrap .tbl-area table th {
  vertical-align: top;
  width: 90px;
  color: #808080;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .company-wrap .tbl-area table th {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .company-wrap .tbl-area table td {
    padding-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .company-wrap .tbl-area table tbody {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .company-wrap .tbl-area table tr {
    border-top: 1px solid #e3e3e3;
    display: block;
  }
}

.company-wrap .map-area h5 {
  font-size: 14px;
  color: #808080;
  font-weight: normal;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .company-wrap .map-area h5 {
    margin-bottom: 6px;
  }
}

.company-wrap .map-area .one-area {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .company-wrap .map-area .one-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: wrap-reverse;
            flex-flow: wrap-reverse;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 32px;
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 768px) {
  .company-wrap .map-area .one-area:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.company-wrap .map-area .one-area .txt {
  width: 48%;
  font-size: 12px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .company-wrap .map-area .one-area .txt {
    width: 100%;
    margin-bottom: 0;
  }
}

.company-wrap .map-area .one-area .txt .place {
  font-size: 30px;
  margin-bottom: 8px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .company-wrap .map-area .one-area .txt .place {
    font-size: 24px;
    margin-bottom: 0;
  }
}

.company-wrap .map-area .one-area .txt .code,
.company-wrap .map-area .one-area .txt .adress,
.company-wrap .map-area .one-area .txt .tel-fax {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .company-wrap .map-area .one-area .txt .code,
  .company-wrap .map-area .one-area .txt .adress,
  .company-wrap .map-area .one-area .txt .tel-fax {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .company-wrap .map-area .one-area .txt .tel-fax {
    margin-bottom: 24px;
  }
}

.company-wrap .map-area .one-area .txt .tel-fax div:first-child {
  margin-right: 14px;
}

@media screen and (max-width: 768px) {
  .company-wrap .map-area .one-area .txt .tel-fax div:first-child {
    margin-right: 0;
  }
}

.company-wrap .map-area .one-area .map {
  width: 50%;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .company-wrap .map-area .one-area .map {
    width: 100%;
  }
}

.company-wrap .map-area .one-area .map .gmap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.company-wrap .map-area .one-area .map .gmap iframe {
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.company-wrap .border-wrap {
  padding: 100px 0;
  margin: 100px 0;
  border-top: 1px solid #e3e3e3;
}

@media screen and (max-width: 768px) {
  .company-wrap .border-wrap {
    /*
      padding: 50px 0;
      margin: 60px 0;
      */
    padding: 18px 0;
    margin: 36px 0;
  }
}

.company-wrap .border-wrap .logo {
  width: 37%;
}

@media screen and (max-width: 768px) {
  .company-wrap .border-wrap .logo {
    width: 68%;
    margin: 0 auto 32px;
  }
}

.company-wrap .border-wrap .logo .img {
  width: 60%;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 30%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}

.company-wrap .border-wrap .txt {
  width: 62%;
  font-size: 12px;
  line-height: 2.2;
}

@media screen and (max-width: 768px) {
  .company-wrap .border-wrap .txt {
    width: 100%;
    margin-bottom: 32px;
  }
}

.company-wrap .border-wrap .txt h5 {
  font-size: 18px;
}

.company-wrap .border-wrap .txt .link-othersite {
  margin-top: 24px;
  display: inline-block;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .company-wrap .border-wrap .link-othersite {
    margin-top: 24px;
    text-align: center;
  }
}

/**********************
contact 
***************************/
.c-status-wrap {
  text-align: center;
  margin-bottom: 80px;
}

.c-status-wrap .status-img {
  margin-bottom: 60px;
}

.c-status-wrap .status-img img {
  width: 256px;
}

.c-status-wrap .status-txt {
  font-size: 14px;
  line-height: 2;
}

.c-status-wrap .status-txt .comp-ttl {
  font-size: 21px;
  margin-bottom: 32px;
}

.c-status-wrap .status-txt span {
  font-size: 12px;
  color: #ff0000;
}

form {
  margin-bottom: 110px;
}

form .pp-agree {
  margin-top: 70px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  form .pp-agree {
    margin-top: 40px;
  }
}

form .pp-agree label input {
  margin-right: 5px;
}

form .pp-agree label span {
  color: #ff0000;
}

form .pp-agree .pp-link {
  margin: 14px 0 24px;
}

form .pp-agree .pp-link a {
  text-decoration: underline;
}

form .pp-agree .pp-link a:hover {
  text-decoration: none;
}

form .pp-agree .btnBlc button {
  font-size: 14px;
  background-color: #000;
  color: #fff;
  padding: 18px 12px;
  border: 1px solid #969696;
  position: relative;
  font-style: normal;
}

form .pp-agree .btnBlc button::after {
  font-family: FontAwesome;
  position: absolute;
  content: "\f105";
  font-size: 16px;
  top: 21px;
  right: 20px;
  font-weight: normal;
  color: #fff;
}

form .pp-agree .btnBlc button.arrow-l {
  margin-right: 36px;
}

form .pp-agree .btnBlc button.arrow-l::after {
  content: "\f104";
  right: inherit;
  left: 20px;
}

form .pp-agree .btnBlc button:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #fff;
  color: #000;
}

form .pp-agree .btnBlc button:hover::after {
  color: #000;
}

.contact-contents .ttl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  margin-bottom: 10px;
  color: #808080;
}

.contact-contents .ttl span {
  color: #ff0000;
  padding-left: 10px;
}

.contact-contents .ttl .alert-wrap {
  padding-left: 10px;
  padding-top: 6px;
}

@media screen and (max-width: 768px) {
  .contact-contents .ttl .ttl-wrap {
    display: inline-block;
  }
}

.contact-contents .cp_ipradio {
  padding: 50px 0;
  margin-bottom: 90px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .contact-contents .cp_ipradio {
    padding: 24px;
    margin-bottom: 40px;
  }
}

.contact-contents .cp_ipradio .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 30px;
}

@media screen and (max-width: 768px) {
  .contact-contents .cp_ipradio .box {
    display: inherit;
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .contact-contents .cp_ipradio .box div {
    width: 100%;
    display: block;
    margin-bottom: 24px;
  }
  .contact-contents .cp_ipradio .box div:last-child {
    margin-bottom: 0;
  }
}

table.contact-form {
  width: 100%;
  border: none;
}

table.contact-form th,
table.contact-form td {
  font-weight: normal;
}

table.contact-form th {
  color: #808080;
  width: 18%;
  font-size: 16px;
  padding-bottom: 20px;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  table.contact-form th {
    width: 100%;
    display: block;
    padding-bottom: 6px;
  }
}

table.contact-form th span {
  color: #ff0000;
  padding-left: 6px;
}

table.contact-form th span.alert {
  display: block;
  font-size: 10px;
  padding-left: 0;
}

table.contact-form td {
  width: 80%;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  table.contact-form td {
    width: 100%;
    display: block;
  }
}

table.contact-form td input {
  width: 100%;
  background-color: #f0f0f0;
  padding: 16px 10px;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

table.contact-form td input::-webkit-input-placeholder {
  color: #cccccc;
}

table.contact-form td input:-ms-input-placeholder {
  color: #cccccc;
}

table.contact-form td input::-ms-input-placeholder {
  color: #cccccc;
}

table.contact-form td input::placeholder {
  color: #cccccc;
}

table.contact-form td textarea {
  width: 100%;
  background-color: #f0f0f0;
  padding: 10px;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  resize: vertical;
  height: 180px;
}

table.contact-form td textarea::-webkit-input-placeholder {
  color: #cccccc;
}

table.contact-form td textarea:-ms-input-placeholder {
  color: #cccccc;
}

table.contact-form td textarea::-ms-input-placeholder {
  color: #cccccc;
}

table.contact-form td textarea::placeholder {
  color: #cccccc;
}

table.contact-form .confirm-txt {
  margin-bottom: 16px;
}

.alert-wrap {
  display: none;
}

.alert-wrap span {
  color: #ff0000;
  padding-left: 6px;
}

.alert-wrap span.alert {
  display: block;
  font-size: 10px;
  padding-left: 0;
}

/**********************
Privacy Policy
***************************/
h2.pp {
  font-size: 24px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  h2.pp {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.pp-one h3 {
  font-size: 18px;
  border-bottom: 1px solid #808080;
  display: inline-block;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .pp-one h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.pp-one .txt {
  font-size: 12px;
  margin-bottom: 32px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .pp-one .txt {
    margin-bottom: 20px;
  }
}

.pp-one .txt.window {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .pp-one .txt.window {
    margin-bottom: 80px;
  }
}

.pp-one .txt.riyoumokuteki {
  margin-bottom: 80px;
}

.pp-one .txt-right {
  font-size: 12px;
  text-align: right;
  line-height: 2;
  margin: 40px 0 10px;
}

@media screen and (max-width: 768px) {
  .pp-one .txt-right {
    margin: 24px 0;
  }
}

.pp-one .new-line {
  text-indent: -12px;
  padding-left: 24px;
}

.p-link {
  border: 1px solid #808080;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 460px;
  margin: 32px auto 90px;
}

@media screen and (max-width: 768px) {
  .p-link {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-link a {
  display: block;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .p-link a {
    padding: 14px;
  }
}

.p-link .txt {
  font-size: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.7;
  padding-left: 16px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .p-link .txt {
    font-size: 13px;
  }
}

.p-link .img img {
  width: 70px;
}

/**********************
add20210305
***************************/
#normal-txtedit img {
  max-width: 100%;
  height: auto;
}

.accordion-container {
  position: relative;
  width: 100%;
  border-top: none;
  outline: 0;
  cursor: pointer;
}

.accordion-container .accordion-title {
  display: block;
  position: relative;
  margin: 0;
  padding: 15px 0 8px;
  font-size: 17px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif!important;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.1em;
}

.accordion-container .accordion-title a {
  color: #fff;
  display: block;
}

.accordion-container .accordion-title.ttl-cw img {
  width: 160px;
}

.accordion-container .accordion-title.ttl-op img {
  width: 174px;
}

.no-acd-ttl {
  color: #fff;
  font-size: 17px;
  padding: 10px 0;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic,  "游ゴシック", "Yu Gothic", sans-serif!important;
  letter-spacing: 0.1em;
}

.no-acd-ttl.ttl-am img {
  width: 204px;
}

.no-acd-ttl.ttl-com {
  padding-bottom: 8px;
}

.no-acd-ttl.ttl-com img {
  width: 94px;
}

.no-acd-ttl.ttl-pp img {
  width: 138px;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title {
  color: white;
}

.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
  color: white;
}

.accordion-title {
  position: relative;
}

.accordion-title:after {
  content: "";
  position: absolute;
  right: 0;
  top: 38%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.accordion-title.open:after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 38%;
}

.accordion-content {
  display: none;
  padding-left: 10px;
  /*padding-top: 10px;*/
}



.accordion-container {
  width: 100%;
}

/***********************
STRATEGIC PLANNING
*************************************/
h2.strategic {
  font-family: rift, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 32px;
  letter-spacing: 8px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  h2.strategic {
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 12px;
  }
}

h2.strategic img {
  width: 266px;
}

.dot-img {
  text-align: center;
  margin-bottom: 34px;
}

.dot-img img {
  width: 1px;
}

#Stra-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 768px) {
  #Stra-wrap {
    display: inherit;
  }
}

#Stra-wrap .parts-one {
  width: 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Stra-wrap .parts-one:nth-child(1) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#Stra-wrap .parts-one:nth-child(2) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  #Stra-wrap .parts-one {
    width: 100%;
  }
}

#Stra-wrap .parts-one .mark img {
  width: 180px;
}

@media screen and (max-width: 768px) {
  #Stra-wrap .parts-one .mark img {
    width: 110px;
  }
}

#Stra-wrap .parts-one ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 2;
}

#Stra-wrap .parts-one ul li .maru {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #b8272d;
  margin-right: 6px;
}

@media screen and (max-width: 768px) {
  #Stra-wrap .parts-one ul li .maru {
    width: 8px;
    height: 8px;
  }
}

#Stra-wrap .parts-one ul li .fuwa {
  animation: fuwa ease-in-out 2s infinite alternate;
  -webkit-animation: fuwa ease-in-out 2s infinite alternate;
  -moz-animation: fuwa ease-in-out 2s infinite alternate;
}

@keyframes fuwa {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  100% {
    background-color: pink;
  }
}

@-webkit-keyframes fuwa {
  0% {
    -webkit-transform: translate(0%, 0%);
  }
  100% {
    background-color: pink;
  }
}

@-moz-keyframesfuwa {
  #Stra-wrap .parts-one ul li 0% {
    -moz-transform: translate(0%, 0%);
  }
  #Stra-wrap .parts-one ul li 100% {
    background-color: pink;
  }
}

#Stra-wrap .parts-one ul li .fuwa02 {
  animation: fuwa ease-in-out 3s infinite alternate;
  -webkit-animation: fuwa ease-in-out 3s infinite alternate;
  -moz-animation: fuwa ease-in-out 3s infinite alternate;
}

#Stra-wrap .parts-one ul li .fuwa03 {
  animation: fuwa ease-in-out 3.5s infinite alternate;
  -webkit-animation: fuwa ease-in-out 3.5s infinite alternate;
  -moz-animation: fuwa ease-in-out 3.5s infinite alternate;
}

#Stra-wrap .parts-one ul li .fuwa04 {
  animation: fuwa ease-in-out 4s infinite alternate;
  -webkit-animation: fuwa ease-in-out 4s infinite alternate;
  -moz-animation: fuwa ease-in-out 4s infinite alternate;
}

#Stra-wrap .parts-one a {
  cursor: pointer;
  font-size: 13px;
  font-family: old-standard, serif;
  font-weight: 400;
  font-style: normal;
}

#Stra-wrap .parts-one a:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #b8272d;
          text-decoration-color: #b8272d;
}

#Stra-wrap .parts-one:nth-child(1) {
  margin-bottom: 40px;
}

#Stra-wrap .parts-one:nth-child(1) .mark {
  /*margin-left: auto;*/
  margin-left: 20px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  #Stra-wrap .parts-one:nth-child(1) .mark {
    margin-right: 0;
  }
}

#Stra-wrap .parts-one:nth-child(2) .mark {
  margin-right: 20px;
}

.cw {
  margin-bottom: 42px;
}

/*********************
creative works videomovie
**************************/
.one-topic.videomovie .img {
  width: 41%;
  margin-right: 4%;
  background-size: cover;
  padding-top: 27%;
  background-repeat: no-repeat;
}

.works-wrap .one-topic.videomovie .img {
  width: 100%;
  padding-top: 23vw;
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .works-wrap .one-topic.videomovie .img {
    padding-top: 57.6vw;
    margin-right: 0;
  }
}

/*********************
header
**************************/
header .flex {
  position: relative;
}

.header__menu {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif!important;
  position: absolute;
  width: 100%;
  text-align: right;
  list-style: none;
}

.header__menu li {
  display: inline-block;
  padding: 0;
}

.header__menu li.oya_menu:nth-child(2) {
  border-right: 1px solid #cacaca;
}

.header__menu li a {
  color: #000;
  /* メニューの文字色 */
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-bottom: 80px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.header__menu li a.dot-link {
  margin-right: max(3.6vw, 30px);
}

.header__menu .mega__menu .dot-link {
  position: relative;
}

.header__menu .mega__menu .dot-link:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 57px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8272d;
  -webkit-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
  -webkit-transition: opacity .25s ease,-webkit-transform .25s ease;
  transition: opacity .25s ease,-webkit-transform .25s ease;
  transition: opacity .25s ease,transform .25s ease;
  transition: opacity .25s ease,transform .25s ease,-webkit-transform .25s ease;
  visibility: hidden;
  opacity: 0;
}

ul.mega__menu-second {
  visibility: hidden;
  opacity: 0;
}

.header__menu li:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

li.mega__menu ul.mega__menu-second {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: rgba(8, 10, 8, 0.84);
  padding: 24px 0 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  text-align: center;
  z-index: 9999;
}

li.mega__menu:hover ul.mega__menu-second {
  top: 60px;
  visibility: visible;
  opacity: 1;
}

li.mega__menu ul.mega__menu-second a {
  color: #fff;
  padding-bottom: 0;
  padding: 0 25px;
  font-weight: 500;
  font-style: normal;
	font-size: 14px;
}
li.mega__menu.Menu_originalprojects ul.mega__menu-second a{
  padding: 0 40px;
}
li.mega__menu ul.mega__menu-second a[target="_blank"] {
   background-image: url(../images/common/icon_popup.svg);
   background-repeat: no-repeat;
   background-position: right center;
   padding-right: 25px;
   margin-right: 40px;
}

li.mega__menu ul.mega__menu-second a:hover {
  opacity: 0.7;
}

li.mega__menu.oya_menu:hover ::after {
  visibility: visible;
  opacity: 1;
}

.header__menu li.oya_menu:nth-child(3) a {
  margin-left: max(3.5vw, 40px);
}

.header__menu li.oya_menu:last-child a.dot-link {
  margin-right: 45px;
}
.header__menu li.mega__menu.Menu_contact a{
  background: #000;
  color: #fff;
  font-size: 12px;
  height: 2em;
  padding: 11px 40px;
  margin-right: 60px;
  border: 1px solid #000;
}
.header__menu li.mega__menu.Menu_contact a:hover{
  background: #fff;
  color: #000;
}
@media screen and (max-width: 1000px) {
  .header__menu li a.dot-link {
    margin-right: 10px;
  }
  .header__menu li.oya_menu:nth-child(3) a {
    margin-left: 10px;
  }
  .header__menu li.mega__menu.Menu_contact a{
    margin-right: 10px;
  }
}
.underlayer h2.athelete_h2 img {
  width: 338px;
}

@media screen and (max-width: 768px) {
  .underlayer h2.athelete_h2 img {
    width: 70%;
  }
}

.menu-list.athe_nav {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .menu-list.athe_nav {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 768px) {
  .menu-list.flex {
    display: inherit;
  }
}

.menu-list.flex li {
  text-align: center;
}

.menu-list.flex li:nth-child(1) {
  display: none;
}

.menu-list.flex li .gly {
  display: inline;
}

@media screen and (max-width: 768px) {
  .menu-list.flex li .gly {
    display: none;
  }
}

.mega__menu.Menu_creativeworks a.dot-link img {
  width: 113px;
}

.mega__menu.Menu_creativeworks .mega__menu-second li:nth-child(1) img {
  width: 94px;
}

.mega__menu.Menu_creativeworks .mega__menu-second li:nth-child(2) img {
  width: 110px;
}

.mega__menu.Menu_creativeworks .mega__menu-second li:nth-child(3) img {
  width: 112px;
}

.mega__menu.Menu_creativeworks .mega__menu-second li:nth-child(4) img {
  width: 84px;
}

.mega__menu.Menu_creativeworks.active a.dot-link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 57px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8272d;
  opacity: 1;
  visibility: inherit;
}

.mega__menu.Menu_originalprojects a.dot-link img {
  width: 122px;
}

.mega__menu.Menu_originalprojects .mega__menu-second li:nth-child(1) img {
  width: 205px;
}

.mega__menu.Menu_originalprojects .mega__menu-second li:nth-child(2) img {
  width: 218px;
}

.mega__menu.Menu_originalprojects .mega__menu-second li:nth-child(3) img {
  width: 176px;
}

.mega__menu.Menu_originalprojects .mega__menu-second li:nth-child(4) img {
  width: 228px;
}

.mega__menu.Menu_originalprojects.active a.dot-link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 57px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8272d;
  opacity: 1;
  visibility: inherit;
}

.mega__menu.Menu_atheletemanagement a.dot-link img {
  width: 153px;
}

.mega__menu.Menu_atheletemanagement.active a.dot-link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 57px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8272d;
  opacity: 1;
  visibility: inherit;
}

.mega__menu.Menu_topics a.dot-link img {
  width: 42.5px;
}

.mega__menu.Menu_topics.active a.dot-link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 57px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8272d;
  opacity: 1;
  visibility: inherit;
}

.mega__menu.Menu_company a.dot-link img {
  width: 66.5px;
  padding-top: 4px;
}

.mega__menu.Menu_company.active a.dot-link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 57px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8272d;
  opacity: 1;
  visibility: inherit;
}

.mega__menu.Menu_contact a.dot-link img {
  width: 55px;
  padding-top: 2px;
}

.mega__menu.Menu_contact.active a.dot-link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 57px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8272d;
  opacity: 1;
  visibility: inherit;
}
.mega__menu.Menu_recruit.active a.dot-link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 57px;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b8272d;
    opacity: 1;
    visibility: inherit;
}
.mega__menu.Menu_topics.active a.dot-link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 57px;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b8272d;
    opacity: 1;
    visibility: inherit;
}

#normal-txtedit {
  /*フォントサイズ*/
  /*ドロップキャップ*/
  /*テーブル*/
  /*テーブル ストライプ*/
  /*テーブル 均一幅*/
  /*引用*/
}

#normal-txtedit .dtl-page-name {
  margin-bottom: 16px;
  font-size: 34px;
  margin-bottom: 32px;
}

#normal-txtedit .ttl {
  font-size: 32px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #normal-txtedit .ttl {
    font-size: 22px;
    margin-bottom: 6px;
  }
}

#normal-txtedit p {
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  #normal-txtedit p {
    font-size: 13px;
    margin-bottom: 14px;
  }
}

#normal-txtedit p a {
  text-decoration: underline;
}

#normal-txtedit p a:hover {
  text-decoration: none;
}

#normal-txtedit h1,
#normal-txtedit .logo
{
  font-size: 32px;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  #normal-txtedit h1,
#normal-txtedit .logo
  {
    font-size: 22px;
  }
}

#normal-txtedit h2 {
  font-size: 24px;
  margin-bottom: 24px;
  color: inherit;
  font-style: inherit;
  text-align: inherit;
}

@media screen and (max-width: 768px) {
  #normal-txtedit h2 {
    font-size: 18px;
    margin-top: 20px;
  }
}

#normal-txtedit h3 {
  font-size: 18px;
  margin-bottom: 24px;
  text-align: inherit;
}

@media screen and (max-width: 768px) {
  #normal-txtedit h3 {
    font-size: 15px;
  }
}

#normal-txtedit .has-small-font-size {
  font-size: 13px;
}

#normal-txtedit .has-regular-font-size,
#normal-txtedit .has-normal-font-size {
  font-size: 16px;
}

#normal-txtedit .has-medium-font-size {
  font-size: 20px;
}

#normal-txtedit .has-large-font-size {
  font-size: 36px;
}

#normal-txtedit .has-larger-font-size,
#normal-txtedit .has-huge-font-size {
  font-size: 42px;
}

#normal-txtedit p.has-background {
  padding: 20px 30px;
}

#normal-txtedit .has-drop-cap:not(:focus)::first-letter {
  float: left;
  font-size: 8.4em;
  line-height: 0.68;
  font-weight: 100;
  margin: 0.05em 0.1em 0 0;
  text-transform: uppercase;
  font-style: normal;
}

#normal-txtedit .has-drop-cap:not(:focus)::after {
  content: "";
  display: table;
  clear: both;
  padding-top: 14px;
}

#normal-txtedit .wp-block-table {
  width: 100%;
}

#normal-txtedit .wp-block-table.is-style-stripes {
  border-spacing: 0;
  border-collapse: inherit;
  background-color: transparent;
  border-bottom: 1px solid #f3f4f5;
}

#normal-txtedit .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f3f4f5;
}

#normal-txtedit .wp-block-table .has-fixed-layout {
  table-layout: fixed;
  width: 100%;
}

#normal-txtedit .wp-block-table .has-fixed-layout td,
#normal-txtedit .wp-block-table .has-fixed-layout th {
  word-break: break-word;
}

#normal-txtedit .wp-block-quote.is-style-large,
#normal-txtedit .wp-block-quote.is-large {
  margin: 0 0 16px;
  padding: 0 1em;
}

#normal-txtedit .wp-block-quote.is-style-large p,
#normal-txtedit .wp-block-quote.is-large p {
  font-size: 24px;
  font-style: italic;
  line-height: 1.6;
}

#normal-txtedit .wp-block-quote.is-style-large cite,
#normal-txtedit .wp-block-quote.is-style-large footer,
#normal-txtedit .wp-block-quote.is-large cite,
#normal-txtedit .wp-block-quote.is-large footer {
  font-size: 18px;
  text-align: right;
}

.section.section-strategic {
  width: 90%;
}

@media screen and (max-width: 768px) {
  .section.section-strategic {
    width: 100%;
  }
}

.section.section-strategic .cw h2 {
  text-align: center;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .section.section-strategic .cw h2 {
    margin-bottom: 16px;
  }
}

.section.section-strategic .cw h2 img {
  width: 240px;
}

.section.section-strategic .op h2 {
  text-align: center;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .section.section-strategic .op h2 {
    margin-bottom: 16px;
  }
}

.section.section-strategic .op h2 img {
  width: 270px;
}

#normal-txtedit .dtl-page-name {
  line-height: 1.3;
}

#normal-txtedit .dtl-page-name.ttl-originalp img {
  width: 300px;
}

@media screen and (max-width: 768px) {
  #normal-txtedit .dtl-page-name.ttl-originalp img {
    width: 250px;
  }
}

#normal-txtedit .dtl-page-name.ttl-athelete img {
  width: 325px;
}

@media screen and (max-width: 768px) {
  #normal-txtedit .dtl-page-name.ttl-athelete img {
    width: 250px;
  }
}

.ttl-creativeworks img {
  width: 334px;
}

@media screen and (max-width: 768px) {
  .ttl-creativeworks img {
    width: 220px;
  }
}

.ttl-company img {
  width: 214px;
}

@media screen and (max-width: 768px) {
  .ttl-company img {
    width: 180px;
  }
}

.ttl-contact img {
  width: 195px;
}

@media screen and (max-width: 768px) {
  .ttl-contact img {
    width: 140px;
  }
}

header nav .btn.spbtn a{
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  border: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  background-image: url(../images/common/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 10px;
  background-size: 7px;
}

.paraPc .parallax {
  min-height: 400px;
}

.paraPc .paraslimy-body {
  position: relative;
  z-index: 1;
  -webkit-perspective: 250px;
          perspective: 250px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  overflow: hidden;
}

.paraPc .paraslimy-bg {
  position: absolute;
  z-index: -1;
  top: 37.5%;
  left: -12.5%;
  right: auto;
  bottom: auto;
  width: 225%;
  height: 225%;
  min-height: 115vh;
  -webkit-transform: translateZ(-250px);
          transform: translateZ(-250px);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}

.paraPc .parallax.parallax_wb .paraslimy-bg {
  background-position: right top;
}

@media screen and (max-width: 768px) {
  .paraSp .parallax {
    min-height: 400px;
  }
  .paraSp .paraslimy-body {
    position: relative;
    z-index: 1;
    -webkit-perspective: 250px;
            perspective: 250px;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    overflow: hidden;
  }
  .paraSp .paraslimy-bg {
    position: absolute;
    z-index: -1;
    top: 37.5%;
    left: -12.5%;
    right: auto;
    bottom: auto;
    width: 225%;
    height: 100%;
    min-height: 60vh;
    -webkit-transform: translateZ(-250px);
            transform: translateZ(-250px);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .paraSp .parallax.parallax_wb .paraslimy-bg {
    background-position: right top;
  }
}

@media screen and (max-width: 768px) {
  .backtoIndex {
    margin-bottom: 40px;
  }
}

.first-txt.bnr{
  padding: 120px 0 80px; 
}

.gek_bnr_box{
  padding-bottom:100px;
  text-align: center;
}

.gek_bnr_box .ttl{
  padding-bottom:30px;
}

.gek_bnr_box .ttl02{
  padding-bottom:10px;
}

.gek_bnr_box .ttl02 img{
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .first-txt.bnr{
    padding: 70px 0 60px;
  }
}

/**********************
▼▼add 23/02 ▼▼ 
***************************/

/**********************
font
***************************/
.font-zenkaku {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-feature-settings: "palt";
	letter-spacing: -.015em;
}
.font-zenkaku_500 {
	font-weight: 500;
}
.font-zenkaku_700 {
	font-weight: 700;
}


/**********************
Navi
***************************/
.mega__menu.Menu_topics a.dot-link img {
  width: 42px;
}

.mega__menu.Menu_recruit a.dot-link img {
  width: 50px;
}
.no-acd-ttl.ttl-menu_topics img {
  width: 60px;
}
.no-acd-ttl.ttl-menu_recruit img {
  width: 70px;
}
/**********************
SDGs bnr
***************************/
.top_sdgs-bnr {
	margin-bottom: 120px;
}
.top_sdgs-bnr img {
	width: 100%;
}
@media screen and (max-width: 768px) {
	.top_sdgs-bnr {
		width: calc(80% + 30px);
		margin: 0 auto 16%;
	}
}

/**********************
TOP op
***************************/
.op .menu-list {
	width: 100%;
}
@media screen and (max-width: 768px) {
	.top-cw {
		margin-bottom: 50px;
	}
	.top-cw .menu-list h2 {
		margin-bottom: 25px;
	}
	.top-op .menu-list h2 {
		margin-bottom: 20px;
	}
	.top-cw .menu-list li,
	.top-op .menu-list li {
		margin-bottom: 20px;
		line-height: 1;
	}
	.top-cw .menu-list li:last-child,
	.top-op .menu-list li:last-child {
		margin-bottom: 0;
	}
	.top-cw .menu-list a,
	.top-op .menu-list a{
		line-height: 1;
	}
	.top-cw .menu-list a span,
	.top-op .menu-list a span {
		font-size: 20px;
	}
	.top-op .menu-list a span {
		letter-spacing: -.01em;
	}
}

/**********************
TOP topics
***************************/
.top-topics {
  width: 100%;
  max-width: 1000px;
  margin: 120px auto 0;
  border-top: 1px solid #e5e5e5;
  padding: 100px 10px 30px;
}
.top-topics h2 {
  width: 60px;
  margin: 0 auto 70px;
  font-size: 0;
}
.top-topics h2 img {
  width: 100%;
}
.top-topics ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
	margin-bottom: 70px;
}
.top-topics ul li {
  width: 30%;
  margin-right: 5%;
}
.top-topics ul li:nth-child(3n) {
  margin-right: 0;
}
.top-topics ul li img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.top-topics ul li dl dt {
  font-size: 14px;
  color: #808080;
  margin-bottom: 10px;
	font-family: old-standard, serif,"游ゴシック体", YuGothic;
}
.top-topics ul li dl dd p {
  font-size: 16px;
  color: #333;
  font-weight: 500;
	font-family: old-standard, serif,"游ゴシック体", YuGothic;
}
@media screen and (max-width: 768px) {
	.top-topics {
		margin: 15% auto 0;
		padding: 15% 0;
	}
	.top-topics h2 {
		width: 20%;
		margin: 0 auto 10%;
	}
	.top-topics ul {
		flex-direction: column;
		margin-bottom: 10%;
	}
	.top-topics ul li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10%;
	}
	.top-topics ul li:nth-child(3n) {
		margin-bottom: 0;
	}
	.top-topics ul li img {
		margin-bottom: 3%;
	}
	.top-topics ul li dl dt {
		font-size: 2.5vw;
		margin-bottom: 2%;
	}
	.top-topics ul li dl dd p {
		font-size: 2.75vw;
	}
}
@media screen and (max-width: 425px) {
	.top-topics ul li dl dt {
		font-size: 3.5vw;
	}
	.top-topics ul li dl dd p {
		font-size: 3.75vw;
	}
}
/*****************
Btn
********************/
.btn-wh {
	width: 240px;
	margin: 0 auto;
}
.btn-wh.contact-wh {
	width: 350px;
}
.btn-type01 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	border: 1px solid #8E8E8E;
	transition: all 0.5s;
	line-height: normal;
}
.btn-wh.contact-wh .btn-type01 {
	height: 74px;
}
.btn-type01:hover {
	background: #000;
}
.btn-type01::after {
  font-family: FontAwesome;
  position: absolute;
  content: "\f105";
  font-size: 20px;
  top: 50%;
	margin-top: -10px;
  right: 10px;
  font-weight: normal;
  color: #8E8E8E;
}
.btn-type01:hover::after {
	color: #fff;
}
.btn-type01.no-arrow::after {
	font-size: 0;
}
.btn-type01 img {
	position: relative;
	display: block;
	width: auto;
	margin: 0 auto;
	opacity: 1;
}
.btn-type01 .btn-hover_on {
	position: absolute;
	opacity: 0;
}
.btn-type01:hover .btn-hover_off {
	position: absolute;
	opacity: 0;
}
.btn-type01:hover .btn-hover_on {
	position: relative;
	opacity: 1;
}
.btn-type01 .btn-topics_txt {
	width: 133px;
}
.btn-type01 .btn-bland_txt {
	width: 93px;
}
.btn-type01 .btn-contact_txt {
	width: 98px;
}
@media screen and (max-width: 768px) {
	.btn-wh {
		width: 60%;
	}
	.btn-wh.contact-wh {
		width: 85%;
	}
	.btn-type01 {
		height: 14vw;
		transition: none;
	}
	.btn-wh.contact-wh .btn-type01 {
		height: 16vw;
	}
	.btn-type01:hover {
		background-color: inherit;
	}
	.btn-type01::after {
		font-size: 5vw;
		margin-top: -2.5vw;
		right: 3vw;
	}
	.btn-type01:hover::after {
		color: inherit;
	}
	.btn-type01:hover .btn-hover_off {
		position: relative;
		opacity: 1;
	}
	.btn-type01:hover .btn-hover_on {
		position: absolute;
		opacity: 0;
	}
	.btn-type01 .btn-topics_txt {
		width: 52%;
	}
	.btn-type01 .btn-bland_txt {
		width: 40%;
	}
	.btn-type01 .btn-contact_txt {
		width: 22%;
	}
}
@media screen and (max-width: 425px) {
	.btn-type01 .btn-topics_txt {
		width: 62%;
	}
	.btn-type01 .btn-bland_txt {
		width: 50%;
	}
	.btn-type01 .btn-contact_txt {
		width: 32%;
	}
}

/**********************
SDGs promotion menu
***************************/
.sdgs-pro_container * {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
  word-wrap: break-word;
  word-break: break-all;
	margin: 0;
	padding: 0;
}
.sdgs-pro_container figure {
  background-color: transparent;
}
.sdgs-pro_container figure img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);	
	transition: none;
  width: 100%;
}
.sdgs-pro_container figure img:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.sdgs-pro_container h2 {
	font-size: 0;
	width: auto;
	margin: 0 auto;
}
.sdgs-pro_container h2 img,
.sdgs-pro_container figure img {
	width: 100%;
	-webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.display-pc {
	display: block !important;
}
.display-sp {
	display: none !important;
}
@media screen and (max-width: 768px) {
	.display-pc {
		display: none !important;
	}
	.display-sp {
		display: block !important;
	}
	#wrap.sdgs-pro-wrap {
		padding: 0;
		padding-top: 62px;
	}
}

/* SDGs MV */
.sdgs-pro_mv {
	height: 37.5vw;
}
.sdgs-pro_mv img {
	display: block;
	width: 100%;
	object-fit: cover;
	height: 37.5vw;
}
@media screen and (max-width: 768px) {
	.sdgs-pro_mv {
		height: 100vw;
	}
	.sdgs-pro_mv img {
		height: 100vw;
	}
}

/* SDGs intro */
.sdgs-pro_intro {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 110px 10px 60px;
}
.sdgs-pro_intro .sdgs-pro_intro--lead {
	line-height: 1;
	width: 818px;
	margin: 0 auto 50px;
}
.sdgs-pro_intro .sdgs-pro_intro--txt {
	font-size: 16px;
	line-height: 2.4;
	text-align: center;
	letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
	.sdgs-pro_intro {
		padding: 10% 6.5%;
	}
	.sdgs-pro_intro .sdgs-pro_intro--lead {
		width: 95%;
		margin: 0 auto 10%;
	}
	.sdgs-pro_intro .sdgs-pro_intro--txt {
		font-size: 13px;
		margin-bottom: 30px;
		text-align: left;
		line-height: 2.2;
	}
	.sdgs-pro_intro .sdgs-pro_intro--txt:last-of-type {
		margin-bottom: 0;
	}
	.sdgs-pro_intro .sdgs-pro_intro--txt br {
		display: none;
	}
}

/* what is the SDGs? */
.sdgs-pro_about {
	background: #E6F0FA;
	padding: 70px 10px;
}
.sdgs-pro_about h2 {
	width: 200px;
	margin: 0 auto 35px;
}
.sdgs-pro_about--container {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
.sdgs-pro_about--container > .sdgs-pro_about--box01 {
	width: 100%;
	margin-bottom: 35px;
}
.sdgs-pro_about--container > .sdgs-pro_about--box01 h3 {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 20px;
}
.sdgs-pro_about--container > .sdgs-pro_about--box01 h3 span {
	font-size: 18px;
	font-weight: 500;
}
.sdgs-pro_about--container > .sdgs-pro_about--box01 p {
	font-size: 14px;
	line-height: 1.8;
}
.sdgs-pro_about--container > .sdgs-pro_about--box01 p span {
	font-weight: bold;
}
.sdgs-pro_about--container > .sdgs-pro_about--box02 {
	width: 100%;
}
.sdgs-pro_about--container > .sdgs-pro_about--box02 img {
	width: 100%;
}
@media screen and (max-width: 768px) {
	.sdgs-pro_about {
	padding: 70px 6.5%;
	}
	.sdgs-pro_about h2 {
		width: 70%;
		margin: 0 auto 35px;
	}
	.sdgs-pro_about--box03 {
		margin-bottom: 35px;
	}
	.sdgs-pro_about--container > .sdgs-pro_about--box01 h3 {
		font-size: 6vw;
		margin-bottom: 20px;
		text-align: center;
	}
	.sdgs-pro_about--container > .sdgs-pro_about--box01 h3 span {
		display: block;
		font-size: 14px;
		margin-top: .25em;
	}
	.sdgs-pro_about--container > .sdgs-pro_about--box01 p {
		font-size: 13px;
		line-height: 2.2;
	}
	.sdgs-pro_about--container > .sdgs-pro_about--box02 {
		width: 86%;
		margin: 0 auto 0;
	}
}


/* Activity image */
.sdgs-pro_active {
	width: 100%;
	max-width: 1000px;
	padding: 120px 10px 100px;
	margin: 0 auto;
}
.sdgs-pro_active h2 {
	width: 150px;
	margin: 0 auto 70px;
}
.sdgs-pro_active--step {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.sdgs-pro_active--step > div {
	position: relative;
	width: 31.25%;
}
.sdgs-pro_active--step > div::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: -10px;
	background: rgba(0,152,216,.7);
	width: 50px;
	height: 230px;
	z-index: 0;
}
.sdgs-pro_active--step > div > figure {
	position: relative;
	overflow: inherit;
}
.sdgs-pro_active--step > div > figure::after {
	content: "";
	position: absolute;
	left: -20px;
	top: -40px;
	display: block;
	width: 64px;
	height: 64px;
	background: url("../images/original_projects/sdgs-promotion-menu/icon_step01.png") no-repeat left top /contain;
}
.sdgs-pro_active--step > .active--step02 > figure::after {
	background: url("../images/original_projects/sdgs-promotion-menu/icon_step02.png") no-repeat left top /contain;
}
.sdgs-pro_active--step > .active--step03 > figure::after {
	background: url("../images/original_projects/sdgs-promotion-menu/icon_step03.png") no-repeat left top /contain;
}
.sdgs-pro_active--step > div dl {
	position: relative;
	z-index: 1;
	padding-left: 10px;
}
.sdgs-pro_active--step > div dl dt i {
	display: block;
	margin: 15px 0 10px;
}
.sdgs-pro_active--step > div dl dt .active-time01 {
	width: 55px;
}
.sdgs-pro_active--step > div dl dt .active-time02 {
	width: 60px;
}
.sdgs-pro_active--step > div dl dt i img {
	display: block;
	width: 100%;
}
.sdgs-pro_active--step > div dl dt span {
	font-size: 16px;
	display: block;
	line-height: 1.4;
	margin-bottom: 15px;
}
.sdgs-pro_active--step > div dl dd div {
	display: flex;
	justify-content: space-between;
}
.sdgs-pro_active--step > div dl dd div figure {
	width: 50px;
}
.sdgs-pro_active--step > div dl dd div p {
	width: calc(100% - 60px);
	font-size: 14px;
	line-height: 1.6;
}
.sdgs-pro_active--ex {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 860px;
	margin-left: auto;
	margin-top: 60px;
}
.sdgs-pro_active--ex ul {
	width: 63%;
	margin-bottom: -8px;
}
.sdgs-pro_active--ex ul li {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 8px;
	position: relative;
	margin-left: 30px;
	text-indent: -30px;
}
.sdgs-pro_active--ex ul li::before {
	content: "";
	display: inline-block;
	background: url("../images/original_projects/sdgs-promotion-menu/icon_check.svg") no-repeat left top /contain;
	width: 20px;
	height: 20px;
	position: relative;
	top: 2px;
	margin-right: 10px;
}
.sdgs-pro_active--ex > figure {
	width: 33.3%;
	max-width: 280px;
}
@media screen and (max-width: 768px) {
	.sdgs-pro_active {
		width: 100%;
		padding: 70px 6.5%;
	}
	.sdgs-pro_active h2 {
		width: 46%;
		margin: 0 auto 15%;
	}
	.sdgs-pro_active--step {
		flex-direction: column;
	}
	.sdgs-pro_active--step > div {
		width: 94%;
		margin-left: auto;
		margin-bottom: 20%;
		padding-bottom: 10%;
	}
	.sdgs-pro_active--step > div:last-child {
		margin-bottom: 0;
	}
	.sdgs-pro_active--step > div::after {
		left: -4vw;
		width: 13.5vw;
		height: 62vw;
	}
	.sdgs-pro_active--step > div > figure::after {
		left: -6vw;
		top: -12vw;
		width: 19vw;
		height: 19vw;
	}
	.sdgs-pro_active--step > div dl {
		padding-left: 1vw;
	}
	.sdgs-pro_active--step > div dl dt i {
		margin: 20px 0 10px;
	}
	.sdgs-pro_active--step > div dl dt .active-time01 {
		width: 42px;
	}
	.sdgs-pro_active--step > div dl dt .active-time02 {
		width: 44px;
	}
	.sdgs-pro_active--step > div dl dt span {
		font-size: 16px;
		font-weight: bold;
		margin-bottom: 20px;
		line-height: 1.5;
	}
	.sdgs-pro_active--step > div dl dd div figure {
		width: 50px;
	}
	.sdgs-pro_active--step > div dl dd div p {
		width: calc(100% - 60px);
		font-size: 14px;
		position: relative;
		line-height: 1.5;
		top: -5px;
	}
	.sdgs-pro_active--ex {
		flex-direction: column;
		max-width: 100%;
		margin-left: inherit;
		margin-top: 35px;
	}
	.sdgs-pro_active--ex ul {
		order: 2;
		width: 100%;
		margin-bottom: -15px;
	}
	.sdgs-pro_active--ex ul li {
		font-size: 20px;
		margin-bottom: 15px;
		line-height: 1.5;
	}
	.sdgs-pro_active--ex > figure {
		order: 1;
		width: 86%;
		max-width: 100%;
		margin: 0 auto 35px;
	}
}


/* MOVIE */
.sdgs-pro_movie {
	width: 100%;
	max-width: 800px;
	margin: 0 auto 100px;
}
.sdgs-pro_movie h2 {
	width: 60px;
	margin: 0 auto 70px;
}
.sdgs-pro_movie img {
	width: 100%;
}
.youtube-video {
	position: relative;
	width: 100%;
	height: 450px;
	overflow: hidden;
}
.youtube-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 768px) {
	.sdgs-pro_movie {
		max-width: 100%;
		margin: 30px auto 70px;
	}
	.sdgs-pro_movie h2 {
		width: 15%;
		margin: 0 auto 50px;
	}
	.youtube-video {
		height: 56.25vw;
	}
}

/* REPORT */
.sdgs-pro_report {
	width: 100%;
	max-width: 1000px;
	padding: 0 10px;
	margin: 0 auto;
}
.sdgs-pro_report h2 {
	width: 150px;
	margin: 0 auto 70px;
}
.sdgs-pro_report--container {
	position: relative;
	background: #E6F0FA;
	padding: 50px 30px 30px;
}
.sdgs-pro_report--container::after {
	content: "";
	display: block;
	position: absolute;
	left: -20px;
	top: -20px;
}
#sdgs-pro_report01::after {
	background: url("../images/original_projects/sdgs-promotion-menu/sdgs_report-ribon.png") no-repeat left top /contain;
	width: 225px;
	height: 61px;
}
.sdgs-pro_report--container .report-lead {
	font-size: 18px;
	text-align: center;
	margin-bottom: 30px;
}
.sdgs-pro_report--container .report-box {
	padding-bottom: 25px;
	/*border-bottom: 2px dotted #80C4ED;*/
	background: url("../images/original_projects/sdgs-promotion-menu/bg-dot.svg") no-repeat left bottom;
	margin-bottom: 25px;
}
.sdgs-pro_report--container .report-box:last-of-type {
	padding-bottom: 0;
	border-bottom: none;
	background: none;
	margin-bottom: 0;
}
.sdgs-pro_report--container .report-box h3 {
	width: 79%;
	margin-bottom: 10px;
}
#report-box01-2 h3 {
	width: 75%;
}
.sdgs-pro_report--container .report-photo {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: flex-end;
}
.sdgs-pro_report--container .report-photo > figure {
	width: 51%;
}
.sdgs-pro_report--container .report-photo > div {
	width: 47%;
}
.sdgs-pro_report--container .report-photo > div p {
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 15px;
}
#sdgs-pro_report02 {
	margin-top: 60px;
}
#sdgs-pro_report02::after {
	background: url("../images/original_projects/sdgs-promotion-menu/sdgs_report-ribon02.png") no-repeat left top /contain;
	width: 225px;
	height: 61px;
}
.sdgs-pro_report--container .report-box02 {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.sdgs-pro_report--container .report-box02 > div {
	width: 36%;
}
.sdgs-pro_report--container .report-box02 > div h3 {
	width: 89%;
	margin-bottom: 15px;
}
.sdgs-pro_report--container .report-box02 > div p {
	font-size: 14px;
	line-height: 1.6;
}
.sdgs-pro_report--container .report-box02 > figure {
	width: 60%;
}
.sdgs-pro_report--link {
	text-align: right;
	margin-top: 20px;
}
.sdgs-pro_report--link a {
	text-decoration: underline;
	font-size: 16px;
}
.sdgs-pro_report--link a:hover {
	text-decoration: none;
}
.sdgs-pro_report--contact {
	margin-top: 50px;
}
.sdgs-pro_report--contact p {
	text-align: center;
	font-size: 16px;
	margin-bottom: 30px;
}
.btn-type02 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 75px;
	position: relative;
	border: 1px solid #949494;
	text-align: center;
	font-size: 18px;
	transition: .5s;
}
.btn-type02:hover {
	color: #fff;
	background: #000;
}
.report_contact-wh {
	width: 350px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.sdgs-pro_report {
		padding: 0;
	}
	.sdgs-pro_report h2 {
		width: 44%;
		margin: 0 auto 20%;
	}
	.sdgs-pro_report--container {
		padding: 40px 0;
	}
	.sdgs-pro_report--container::after {
		left: 4vw;
		top: -4vw;
	}
	#sdgs-pro_report01::after {
		width: 45.1vw;
		height: 12.2vw;
	}
	.sdgs-pro_report--container .report-lead {
		font-size: 18px;
		line-height: 1.6;
		margin-bottom: 40px;
	}
	.sdgs-pro_report--container .report-box {
		background: none;
		padding: 0 6.5% 35px;
		border-bottom: 2px solid #fff;
		margin-bottom: 35px;
	}
	.sdgs-pro_report--container .report-box:last-of-type {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	.sdgs-pro_report--container .report-box h3 {
		width: 83%;
		margin-bottom: 15px;
	}
	#report-box01-2 h3 {
		width: 82%;
	}
	#report-box01-3 h3 {
		width: 96%;
	}
	.sdgs-pro_report--container .report-photo {
		flex-direction: column;
	}
	.sdgs-pro_report--container .report-photo > figure {
		width: 100%;
		margin-bottom: 15px;
	}
	.sdgs-pro_report--container .report-photo > div {
		width: 100%;
	}
	.sdgs-pro_report--container .report-photo > div p {
		font-size: 13px;
		line-height: 1.7;
		margin-bottom: 20px;
	}
	#sdgs-pro_report02 {
		margin-top: 12%;
		padding-top: 50px;
	}
	#sdgs-pro_report02::after {
		width: 45.1vw;
		height: 12.2vw;
	}
	.sdgs-pro_report--container .report-box02 {
		flex-direction: column;
		padding: 0 6.5%;
	}
	.sdgs-pro_report--container .report-box02 > div {
		width: 100%;
	}
	.sdgs-pro_report--container .report-box02 > div h3 {
		width: 91%;
		margin-bottom: 5%;
	}
	.sdgs-pro_report--container .report-box02 > div p {
		font-size: 13px;
		line-height: 1.7;
		margin-bottom: 20px;
	}
	.sdgs-pro_report--container .report-box02 > figure {
		width: 100%;
	}
	.sdgs-pro_report--link {
		margin-top: 20px;
		padding: 0 6.5%;
	}
	.sdgs-pro_report--link a {
		font-size: 13px;
	}
	.sdgs-pro_report--contact {
		margin-top: 70px;
		padding: 0 6.5%;
	}
	.sdgs-pro_report--contact p {
		font-size: 15px;
		margin-bottom: 20px;
	}
	.btn-type02 {
		height: 15vw;
		font-size: 15px;
		transition: none;
	}
	.btn-type02:hover {
		color: inherit;
		background: inherit;
	}
	.report_contact-wh {
		width: 100%;
	}
}

/* SDGs other */
.sdgs-pro_other {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	border-top: 1px solid #E5E5E5;
	/*border-bottom: 1px solid #E5E5E5;*/
	padding: 50px 10px;
	margin-top: 80px;
}
.sdgs-pro_other > div {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
.sdgs-pro_other > div figure {
	width: 45%;
	max-width: 270px;
}
.sdgs-pro_other > div p {
	font-size: 14px;
	line-height: 2;
}
@media screen and (max-width: 768px) {
	.sdgs-pro_other {
		width: 86%;
		padding: 50px 5%;
		margin: 70px auto 0;
	}
	.sdgs-pro_other > div {
		flex-direction: column;
		max-width: 100%;
		width: 100%;
	}
	.sdgs-pro_other > div figure {
		width: 83%;
		max-width: 100%;
		margin: 0 auto 15px;
	}
	.sdgs-pro_other > div p {
		font-size: 13px;
		line-height: 1.6;
		text-align: center;
	}
}

.sdgs-pro_container #pan {
  padding: 24px 0;
  width: 80%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #dedede;
}
#pan * {
	font-family: old-standard, serif,"游ゴシック体", YuGothic;
}

@media screen and (max-width: 768px) {
	.sdgs-pro_container #pan {
		width: 86%;
		padding: 24px 0 0;
	}
	.sdgs-pro_container #pan ul {
		border-bottom: none;
	}
	#pan.topics-pan ul {
		padding-bottom: 20px;
	}
}

/* TOPICS一覧 */
.topics-ttl {
	width: 125px;
	margin: 0 auto 30px;
	font-size: 0;
}
.topics-ttl img {
	width: 100%;
}
.top-topics.topics-list {
  margin: 0 auto;
  border-top: none;
  padding: 30px 10px 0;
}
.top-topics.topics-list * {
	font-family: old-standard, serif,"游ゴシック体", YuGothic;
}
.top-topics.topics-list ul {
	margin-bottom: 0;
}
.top-topics.topics-list ul li {
	margin-bottom: 5%;
}
.top-topics.topics-list ul li dl {
	display: flex;
	flex-direction: column;
}
.top-topics.topics-list ul li dt {
	order: 2;
	margin-bottom: 0;
}
.top-topics.topics-list ul li dd {
	order: 1;
	margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
	.topics-ttl {
		width: 15%;
		margin: 0 auto 6% !important;
	}
	.top-topics.topics-list {
		padding: 5% 0;
	}
}
@media screen and (max-width: 425px) {
	.topics-ttl {
		width: 25%;
	} 
}

/* TOPICS詳細 */
.topics-detail {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 60px;
}
.topics-detail * {
	font-family: old-standard, serif,"游ゴシック体", YuGothic;
}
.topics-detail .topics-ttl {
	margin: 0 0 30px 0 !important;
}
.topics-entry .topics-entry_ttl {
	font-size: 32px;
	font-style: normal;
	text-align: left;
	line-height: 1.3;
}
.topics-entry_date {
	display: block;
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #ababab;
	margin-top: 10px;
	margin-bottom: 60px;
}
.topics-entry .entry-box img {
	width: auto;
	max-width: 100%;
	height: auto;
}
.topics-entry .entry-box p {
  font-style: normal;
	font-size: 16px;
	line-height: 2;
	margin-bottom: 30px;
}
.topics-entry .entry-box h2,
.topics-entry .entry-box h3,
.topics-entry .entry-box h4,
.topics-entry .entry-box h5,
.topics-entry .entry-box h6 {
  font-weight: bold;
  font-style: normal;
	margin-bottom: 20px;
}
.topics-entry .entry-box h2 {
	font-size: 24px;
}
.topics-entry .entry-box h3 {
	font-size: 22px;
}
.topics-entry .entry-box h4 {
	font-size: 20px;
}
.topics-entry .entry-box h5 {
	font-size: 18px;
}
.topics-entry .entry-box h6 {
	font-size: 16px;
}
.topics-pgr {
	padding: 60px 0;
}
@media screen and (max-width: 768px) {
	.topics-detail {
		margin: 0 auto 10%;
	}
	.topics-entry .topics-entry_ttl {
		font-size: 20px;
	}
	.topics-entry_date {
		margin-bottom: 8%;
	}
	.topics-entry .entry-box p {
		margin-bottom: 4%;
	}
	.topics-entry .entry-box h2,
	.topics-entry .entry-box h3,
	.topics-entry .entry-box h4,
	.topics-entry .entry-box h5,
	.topics-entry .entry-box h6 {
		margin-bottom: 3%;
	}
	.topics-entry .entry-box h2 {
		font-size: 20px;
	}
	.topics-entry .entry-box h3 {
		font-size: 18px;
	}
	.topics-entry .entry-box h4 {
		font-size: 16px;
	}
	.topics-entry .entry-box h5 {
		font-size: 14px;
	}
	.topics-entry .entry-box h6 {
		font-size: 12px;
	}
	.underlayer .topics-entry h2 {
		margin-top: 0;
	}
}
@media screen and (max-width: 480px) {
	.topics-entry .entry-box img {
		width: 100%;
	}
}
.tag-list_wrap {
	width: 80%;
	margin: 0 auto;
}
.tag-list_wrap * {
	font-family: old-standard, serif,"游ゴシック体", YuGothic;
}
.tag-list {
	width: 100%;
	display: flex;
	justify-content: center;
	position: relative;
	left: -1em;
}
.tag-list li {
	position: relative;
	padding: 0 1em;
}
.tag-list li::after {
	content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: #999;
  width: 1px;
  height: 100%;
  -webkit-transform:skew(-30deg);
  transform:skew(-30deg);
}
.tag-list li:last-child::after {
	display: none;
}
.tag-list li a,.tag-name {
	font-size: 14px;
	letter-spacing: 1px;
}
.tag-name {
	display: block;
	text-align: center;
}
.tag-list_wrap.tag-detail {
	margin-bottom: 20px;
	width: 100%;
	border-top: 1px solid #E5E5E5;
	padding-top: 20px;
}
.tag-list_wrap.tag-detail .tag-list {
	justify-content: flex-start;
}
.tag-detail_inner {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.tag-detail_inner > span {
	display: block;
	width: 3em;
	font-size: 14px;
}
.tag-detail_inner > div a {
	font-size: 14px;
	padding: 0 .5em;
}
.topics-back .post-dtl-page-btn {
	margin: 30px 0;
}

/* 2024-11-08 */
.one_insta-post {
  height: auto;
}
.sbi {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#sb_instagram {
  pointer-events: none;
}
#sb_instagram #sbi_images  {
  padding: 0 !important;
}
#sb_instagram .sbi_type_carousel .fa-clone,
#sb_instagram .sbi_type_video .sbi_playbtn {
  visibility: hidden !important;
}
.sbi_photo {
  transition: none !important;
}
.sbi_photo:hover {
  opacity: 1 !important;
}
.mask-txt {
    height: auto;
    aspect-ratio: 1/1;
  }
.insta .flex {
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .one_insta-post:nth-child(2) {
    margin: 0;
  }
}
@media screen and (max-width: 1030px) and (min-width: 640px) {
  .insta .flex {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1030px) {
  .one_insta-post{
    margin: 0 28px 175px;
  }
  .one_insta-post:nth-child(3),
  .one_insta-post:nth-child(2) {
    margin: 0 28px 95px;
  }
  .one_insta-post .exp-insta {
    padding: 10px 20px 28px 20px;
    background-color: inherit;
    min-height: auto;
  }
  
}
@media (max-width: 640px) {
  .insta .flex {
    gap: 0;
  }
  #sb_instagram #sbi_images .sbi_item {
    margin: 0;
    aspect-ratio: 100 / 94;
    overflow: hidden;
  }
  .mask-txt {
    height: auto;
    aspect-ratio: 100 / 94;
  }
}
.w85p{
width: 85%;
}
header .sp-menu-btm{
  margin-top: 40px;
}
@media (min-height: 800px) {
  nav .positionFix {
    height: 82vh;
    top: 62vh;
  }
  header .sp-menu-btm{
  width: calc(100vw - 130px);
   position: fixed;
   bottom: 20px;
  }
  header nav ul.sns-nav {
    margin: 0 0 60px;
  }
}
/**********************
 topページ　最初のテキスト
***************************/
.section.first-txt01{
  text-align: center;
  margin-top: 30px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  border-bottom: none;
}
.first-txt01 .txt01{
  font-weight:bold;
  font-size: 33px; 
  line-height: 180%;
  letter-spacing: 0.1em;
}
.first-txt01 .txt02{
  margin-top: 60px;
  font-weight:500;
  font-size: 18px;
  line-height: 220%;
  letter-spacing: 0.1em;
}
.first-txt01 .txt03{
  margin-top: 30px;
  font-weight:bold;
  font-size: 20px; 
  line-height: 200%;
  letter-spacing: 0.1em;
}
.first-txt01 .txt04{
  margin-top: 30px;
  font-weight:500;
  font-size: 18px;
  line-height: 220%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .section.first-txt01{
    text-align: left;
  }
  .first-txt01 .txt01{
    padding-left: 15px;
    padding-right: 15px;
    font-size: 25px; 
    margin-top: 0px;
    letter-spacing: 0.02em;
  }
  .section.first-txt01 .txt01 p{
    margin-bottom: 16px;  
  }
  .first-txt01 .txt02{
    margin-top: 44px;
    font-size: 16px; 
    padding-left: 0px;
    padding-right: 0px;
    letter-spacing: 0.02em;
  }
  .first-txt01 .txt03{
    font-size: 16px; 
    padding-left: 0px;
    padding-right: 0px;
    letter-spacing: 0.02em;
  }
  .first-txt01 .txt04{
    font-size: 16px; 
    padding-left: 0px;
    padding-right: 0px;
    letter-spacing: 0.02em;
  }
}
/**********************
 topページ　creative-division
***************************/
.section.section-creative-division{
  border-bottom: none;
  width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  padding-bottom: 50px;
  padding-top: 100px;
}
.section-creative-division h2{
  width: 400px;
  margin: 0 auto;
  padding: 0 0 40px;
  border-bottom: 1px solid #bababa;
}
.section-creative-division h2 span{
  display: block;
  font-size: 16px;
  color: #a1a1a1;
  font-weight:700;
  letter-spacing: 0.1em;
}
.section-creative-division h2  span.ttl-eng{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight:700;
  font-style: normal;
  font-size: 46px;
  color: #000;
  letter-spacing: 0.025em;
}
.section-creative-division .left-gray{
  position: relative;
  margin-top: 65px;
}
.section-creative-division .left-gray::after {
  content: '';
  position: absolute;
  top: 30px;
  right: 0;
  width: 80%;
  height: 450px;
  background: #f5f5f5;
  z-index: -1;
}
.section-creative-division .cont-in{
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  padding-left: 10px;
  padding-right: 10px;
}
.section-creative-division .col-01{
  max-width: 485px;
  margin-right: 55px;
}
.section-creative-division .col-01 h3{
  font-weight:500;
  font-size: 46px;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.section-creative-division .col-01 .ttl2-eng{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #a1a1a1;
  letter-spacing: 0.1em;
}
.section-creative-division .col-01 p{
  font-weight:500;
  font-size: 16px;
  line-height: 1.625;
  margin-top: 30px;
  letter-spacing: 0.1em;
}
.section-creative-division .col-01 .btn a{
  display: block;
  font-weight:bold;
  font-size: 20px;
  margin-top: 30px;
  padding: 14px 0;
  color: #fff;
  background-color: #000;
  margin-right: 30%;
  text-align: center;
  letter-spacing: 0.3em;
}
.section-creative-division .col-01 .btn a:hover{
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}
.section-creative-division .col-02{
  max-width: 440px;
}
.section-creative-division .col-02 .btn-sns{
  margin-top: 30px;
}
.section-creative-division .col-02 .btn-sns:hover{
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .section.section-creative-division{
    padding-top: 50px;
  }
  .section-creative-division h2{
    width: calc(100vw - 60px);
    margin: 0 15px;
    line-height: 1.1;
    padding: 0 0 27px;
  }
  .section-creative-division h2 span{
    font-size: 14px;
  }
  .section-creative-division h2  span.ttl-eng{
    font-size: 35px;
  }
  .section-creative-division .left-gray{
    margin-top: 35px;
  }
  .section-creative-division .left-gray::after {
    top:20px;
    right: -25px;
    width: 95%;
    height: 690px;
  }
  .section-creative-division .cont-in{
    flex-wrap: wrap;
    width: calc(100vw - 60px);
    padding-left: 15px;
    padding-right: 15px;
  }
  .section-creative-division .col-01{
    max-width: 100%;
    margin-right: 0px;
  }
  .section-creative-division .col-01 h3{
    font-size: 32px;
  }
  .section-creative-division .col-01 .ttl2-eng{
    font-size: 9px;
    letter-spacing: 0.04em;
  }
  .section-creative-division .col-01 p{
    font-size: 13px;
    margin-top: 26px;
  }
  .section-creative-division .col-02{
    max-width: 100%;
    margin-right: 0px;
    margin-top: 25px;
  }
  .section-creative-division .col-02 .btn-sns{
    margin-top: 22px;
  }
  .section-creative-division .col-02 .btn a{
    display: block;
    font-weight:bold;
    font-size: 15px;
    margin-top: 43px;
    padding: 14px 0;
    color: #fff;
    background-color: #000;
    text-align: center;
    letter-spacing: 0.3em;
    width: 208px;
    margin-right: auto;
    margin-left: auto;
  }
  .section-creative-division .col-02 .btn a:hover{
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
  }
}
@media screen and (max-width: 400px) {
  .section-creative-division .left-gray::after {
    height: 675px;
  }
}
/**********************
 topページ　sports-division
***************************/
.section.section-sports-division{
  padding: 70px 0;
  border-bottom: none;
  width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.section-sports-division h2{
  width: 360px;
  margin: 0 auto 70px;
  padding: 0 0 40px;
  border-bottom: 1px solid #bababa;
}
.section-sports-division h2 span{
  display: block;
  font-size: 16px;
  color: #a1a1a1;
  font-weight:700;
  letter-spacing: 0.1em;
}
.section-sports-division h2  span.ttl-eng{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight:700;
  font-style: normal;
  font-size: 46px;
  color: #000;
  letter-spacing: 0.025em;
}
.section-sports-division .right-gray{
  position: relative;
  margin-top: 65px;
}
.section-sports-division .right-gray::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 80%;
    height: 340px;
    background: #f5f5f5;
    z-index: -1;
}
.section-sports-division .cont-in{
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  padding-left: 10px;
  padding-right: 10px;
  flex-direction: row-reverse;
}
.section-sports-division .col-01{
  max-width: 485px;
  margin-left: 55px;
  padding-right: 10px;
}
.section-sports-division .col-01 h3{
  font-weight:500;
  font-size: 46px;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.section-sports-division .col-01 .ttl2-eng{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #a1a1a1;
  letter-spacing: 0.1em;
}
.section-sports-division .col-01 p{
  font-weight:500;
  font-size: 16px;
  line-height: 1.625;
  margin-top: 30px;
  letter-spacing: 0.1em;
}
.section-sports-division .col-01 .btn a{
  display: block;
  font-weight:bold;
  font-size: 20px;
  margin-top: 30px;
  padding: 14px 0;
  color: #fff;
  background-color: #000;
  margin-right: 30%;
  text-align: center;
  letter-spacing: 0.3em;
  border: 1px solid #000;
}
.section-sports-division .col-01 .btn a:hover{
  color: #000;
  background-color: #fff;
}
.section-sports-division .col-02{
  max-width: 440px;
}
@media screen and (max-width: 768px) {
  .section.section-sports-division{
    padding-top: 110px;
  }
  .section-sports-division h2{
    width: calc(100vw - 60px);
    margin: 0 15px;
    line-height: 1.1;
    padding: 0 0 27px;
  }
  .section-sports-division h2 span{
    font-size: 14px;
  }
  .section-sports-division h2  span.ttl-eng{
    font-size: 35px;
  }
  .section-sports-division .right-gray{
    margin-top: 35px;
  }
  .section-sports-division .right-gray::after {
    top:20px;
    left: -25px;
    width: 95%;
    height: 540px;
  }
  .section-sports-division .cont-in{
    flex-wrap: wrap;
    flex-direction: row;
    width: calc(100vw - 60px);
    padding-left: 15px;
    padding-right: 15px;
  }
  .section-sports-division .col-01{
    max-width: 100%;
    margin-left: 0px;
    padding-right: 0;
  }
  .section-sports-division .col-01 h3{
    font-size: 32px;
  }
  .section-sports-division .col-01 .ttl2-eng{
    font-size: 9px;
  }
  .section-sports-division .col-01 p{
    font-size: 13px;
    margin-top: 26px;
  }
  .section-sports-division .col-02{
    max-width: 100%;
    margin-right: 0;
    margin-top: 25px;
  }
  .section-sports-division .col-02 .btn a{
    display: block;
    font-weight:bold;
    font-size: 15px;
    margin-top: 43px;
    padding: 14px 0;
    color: #fff;
    background-color: #000;
    text-align: center;
    letter-spacing: 0.3em;
    width: 208px;
    margin-right: auto;
    margin-left: auto;
  }
  .section-sports-division .col-02 .btn a:hover{
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
  }
}
@media screen and (max-width: 400px) {
  .section-sports-division .right-gray::after {
    height: 520px;
  }
}
/**********************
 フッターお問い合わせボタン
***************************/
.sns-contact-btn a{
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  display: block;
  font-weight:bold;
  font-size: 20px;
  padding: 20px 0;
  color: #fff;
  background-color: #000;
  text-align: center;
  letter-spacing: 0.1em;
  width:350px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #000;
}
.sns-contact-btn a:hover{
  color: #000;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .sns-contact-btn a{
    font-size: 13px;
    margin-top: 65px;
    padding: 15px 0;
    width: 240px;
    margin-bottom: 50px;
  }
}