@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
html, body {
  height: 100%;
}
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
:root {
  --purple: #502CD1; /* こ */
  --blue: #226C9A; /* 「雨水」「し」「プロジェクト」 #2582BB */
  --miBlue: #1A4CC8; /* み */
  --lightblue: #95CAEA; /* 雨滴型 */
  --bluegray: #346A96; /* #4181B6; */
  --lightgray: #F9F8F7;
  --yellow: #FDEC0D;
  --darkBlue: #002063; /* from toshiseibi */
  --metroGreen: #008837; /* #009F40 */

}
*:focus {
  outline: 2px solid var(--blue);
  background-color: rgba(0, 123, 255, 0.2);
  border-radius: 4px;
}
img {
  max-width: 100%;
}
/* sp */
@media screen and (max-width:979px) {
  html {
    font-size: 50%;
  }
}
body, h1, h2, h3, h4, h5, h6, p, address, ul, ol, li, dl, dt, dd, table, th, td, img, form, pre {
  margin: 0;
  padding: 0;
  border: none;
  list-style-type: none;
  font-family: "Noto Sans JP", 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  text-align: left;
  color: #000;
}
h1, h2, h3, h4, h5, h6, p, a, address, ul, ol, li, dl, dt, dd, table, th, td, form, input, textarea, select, pre {
  font-size: 1.6rem;
}
body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: #000;
}
a:hover {
  border-bottom: 1px solid var(--bluegray);
}
.link-list a:hover, .link-list a img:hover {
  opacity: 0.6;
  border-bottom: 0px;
}
@media screen and (max-width:979px) {
  img {
    height: auto;
  }
}
*, *:before, *:after {
  box-sizing: border-box;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 979px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
main, header, footer, section {
  margin: 0 auto;
  width: 100%;
  display: block;
}
.wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  word-wrap: break-word;
}
@media (max-width: 1280px) {
  .wrap {
    max-width: 980px;
  }
}
.sub_wrap{
  max-width: 980px;
}
.content_sec {
  max-width: 1000px;
}
.content_wrap {
  width: calc(100% - 40px);
}
/*  =======================
      グローバルナビゲーション
    =======================*/
.gnav_wrap {
  background: var(--purple);
  color: #fff;
  align-content: center;
}
.gnav_wrap a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1rem 0;
}
.gnav ul {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 0;
}
.gnav ul li {
  cursor: pointer;
  width: 25%;
  border-right: 1px solid var(--lightblue);
  display: flex;
  justify-content: center;
  align-items: center;
}
.gnav ul li:last-child {
  border-right: none;
}
.gnav ul li a {
  display: block;
  text-align: center;
  width: 100%;
}
.gnav_wrap a:hover,
.gnav_wrap .gnav li.current a {
  color: var(--purple);
  background: #fff;
  border-bottom: none;
}
@media screen and (max-width:768px) {
  #gnav-button {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 15px 5px;
    z-index: 10;
    cursor: pointer;
    user-select: none;
  }
  #gnav-button span {
    height: 4px;
    width: 30px;
    border-radius: 2px;
    background-color: var(--purple);
    position: relative;
    display: block;
    transition: all .2s ease-in-out;
  }
  #gnav-button span:before {
    top: -10px;
    visibility: visible;
  }
  #gnav-button span:after {
    top: 10px;
  }
  #gnav-button span:before, #gnav-button span:after {
    height: 4px;
    width: 30px;
    border-radius: 2px;
    background-color: var(--purple);
    position: absolute;
    content: "";
    transition: all .2s ease-in-out;
  }
  #gnav-button:hover span, #gnav-button:hover span:before, #gnav-button:hover span:after {
    background: var(--blue);
  }
  input[type=checkbox] {
    display: none;
  }
  input[type=checkbox]:checked ~ .gnav {
    visibility: visible;
  }
  input[type=checkbox]:checked ~ #gnav-button:hover span, input[type=checkbox]:checked ~ #gnav-button span {
    background: transparent;
  }
  input[type=checkbox]:checked ~ #gnav-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
  }
  input[type=checkbox]:checked ~ #gnav-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .gnav_wrap {
    background: none;
    height: 0;
  }
  .gnav_wrap a {
    border: none;
  }
  .gnav {
    height: 40vh;
    width: 100vw;
    background: var(--purple);
    z-index: 2;
    visibility: hidden;
    position: fixed;
  }
  .gnav ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-left: 0;
    list-style-type: none;
  }
  .gnav ul li {
    padding: 1em;
    border-right: none;
    width: calc(100% - 20px);
  }
  .gnav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
  }
  .gnav ul li a:hover {
    border-bottom: 1px solid #fff;
  }
  .h1_area {
    margin: 10px auto;
    align-items: flex-start;
  }
  .h1_area a {
    display: inline-block;
    width: auto;
  }
  .h1_area img {
    width: 50px;
  }
  .h1_area .logo_area img {
    width: 240px;
  }
  .h1_area a:hover,.logo_area a:hover {
    border-bottom: none!important;
  }
  .logo_area:hover {
    border-bottom: none;
  }
  .btn_sitemap {
    font-size: 1rem;
  }
}
#gnav-input {
  display: none;
}

/*  =======================
      ヘッダー
    =======================*/
.h1_area {
  display: flex;
  flex-flow: nowrap;
  align-items: center;
  gap: 8px;
}
.header_area {
  display: flex;
  flex-flow: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
@media (max-width: 768px) {
  .header_area {
    justify-content: space-around;
    flex-flow: wrap;
    margin-bottom: 20px;
  }
}
.kv_area {
  background: url("../img/kv.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 60vh;
  position: relative;
}
.kv_copy {
  position: absolute;
  top: 4rem;
  left: 54%;
  transform: translateX(-100%);
  font-size: 3.2rem;
  width: 600px;
  color: var(--blue);
}
@media (max-width: 1200px) {
  .kv_copy {
    left: 64%;
  }
}
.kv_copy span {
  padding-left: 4px;
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.header-top ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.header-top li {
  display: flex;
  align-items: center;
}
button.size-button {
  background: #fff;
  border: 1px solid #000;
  cursor: pointer;
}
.size-button {
  margin: 3px;
  padding: 2px 5px;
}
.is_active{
  border: 2px solid #000;
  background-color: #95CAEA;
}
.btn_sitemap {
  color: #fff;
  background: var(--purple);
  border-radius: 30px;
  padding: 5px 10px;
}
.btn_sitemap:hover {
  border-bottom: none;
  color: var(--purple);
  background: var(--lightblue);
}
.tokyo_link {
  border-bottom: 1px solid #000;
  font-size: 1rem;
}
/*  =======================
      TOP　キービジュアル
    =======================*/
.top-kv {
  width: 100%;
  height: auto;
}
/*  =======================
      メインヘッダー
    =======================*/
.header-main {
  text-align: center;
  padding: 20px;
}
.header-main ul {
  display: flex;
  justify-content: center;
  gap: 3em;
}
.header-main a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}
/*  =======================
      パンくず
    =======================*/
.pankuzu ul{
  display: flex;
  flex-flow: wrap;
  gap: 1.6rem;
  margin-top: 1rem;
  margin-left: 1rem;
}
.pankuzu ul li,.pankuzu ul li a{
  font-size: 1.2rem;
  position: relative;
}
.pankuzu ul li a{
  border-bottom: 1px solid #000;
  margin-right: 1.8rem;
}
.pankuzu ul li a::after{
  content: '＞';
  border: none;
  padding-left: 1rem;
  position: absolute;
}
/*  =======================
      メインコンテンツ
    =======================*/
section {
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  flex-flow: column;
  align-items: center;
}
section.introduction {
  background: url("../img/bg_introduction.png");
  background-size: cover;
  width: 100%;
  padding: 6.5rem 2.5rem 10rem 2.5rem;
}
.intro_area {
  background: #fff;
  padding: 2rem;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  border-radius: 40px;
  box-shadow: -30px 30px 0px 0px rgba(24, 87, 137, 0.8);
  gap: 2rem;
  justify-content: space-around;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  section.introduction {
    padding: 4rem 2.5rem 8rem 2.5rem;
  }
  .intro_area {
    border-radius: 32px;
    box-shadow: -16px 16px 0px 0px rgba(24, 87, 137, 0.8);
  }
}
.intro01 {
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
}
.intro01_box h2 {
  font-size: 2.4rem;
  text-align: center;
  padding: 2rem 0;
}
.intro01_box h2 span {
  font-size: 2.8rem;
}
.intro01_box h3 {
  font-size: 1.8rem;
  color: #000;
  padding-bottom: 1rem;
}
.intro01 p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 2rem;
}
.intro01_box {
  max-width: 500px;
  text-align: center;
}
.movie_area {
  max-width: 480px;
}
/*  =======================
      トップ　カルーセル
    =======================*/
.slide {
  height: 480px;
}
.slide li {
  position: relative;
}
.slide li p {
  position: absolute;
  width: 420px;
}
.slide li p.movie_title {
  font-weight: bold;
  top: 26%;
  left: 0;
}
.slide li p.movie_txt {
  top: 28%;
  left: 0;
}
/* レスポンシブ対応 */
.slide-item {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.slide-item iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 300px;
}
.slick-prev:before, .slick-next:before {
  color: var(--purple);
}
@media (max-width: 768px) {
  .slick-next, .slick-prev {
    display: none !important;
  }
  .slick-prev:before, .slick-next:before {
    top: 20px;
  }
  .slide li p.movie_title {
    top: 360px;
    left: 10px;
  }
  .slide li p.movie_txt {
    top: 390px;
    left: 10px;
  }
  .slide li p {
    font-size: 1.4rem;
    width: calc(100% - 20px);
  }
}
.slick-dots {
  bottom: 180px;
}
.slick-dots li {
  height: 100%;
  display: inline-block;
  margin: 0 10px;
}
.slick-dots li button {
  position: relative;
  text-indent: -9999px;
}
.slick-dots li button::before {
  background-image: url("../img/icon_next.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  cursor: pointer;
  height: 2.6rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 24px;
  width: 2.4rem;
}
.slick-dots li.slick-active button::before {
  background-image: url("../img/icon_now.svg");
  width: 2.6rem;
  height: 2.8rem;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0 7px;
}
.btnarea {
  align-self: flex-end;
  width: 480px;
}
.txt_area {
  margin: 2rem auto;
}
/*  =======================
      list
    =======================*/
ol.liststyle{
  margin: 0 1rem;
  list-style: none;
  font-weight: bold;
  counter-reset: li;

}
ol.liststyle li{
  padding-left: 3rem;
  position: relative;
  margin-bottom: 1rem;
}
ol.liststyle li::before{
  position: absolute;
  font-weight: bold;
  counter-increment: li;
  content: counter(li) "";
  left: -1rem;
  top: -1px;
  color: #fff;
  width: 2.4rem;
  height: 2.4rem;
  font-size:1rem;
  text-align: center;
  border-radius: 100%;
  box-sizing: border-box;
  font-weight: bold;
  line-height: 1;
  background: var(--darkBlue);
  padding: 6px 0;
}
ul.liststyle li{
  text-indent: 3rem;
  position: relative;
  margin-bottom: 1rem;
}
ul.liststyle li::before{
  content: "";
  background-size: contain;
  background-image: url("../img/icon_next.svg");
  width: 1rem;
  height: 1.6rem;
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  background-repeat: no-repeat;
}
.liststyle li a img{
  margin-left: 1rem;
}
.listarea{
  margin: 4rem auto;
}
.listarea, .listarea ul{
  display: flex;
  flex-flow: wrap;
  gap: 4rem;
  justify-content: space-around;
}
.thumb{
  max-width: 300px;
  height: 160px;
}
.liststyle li a .thumb img{
  margin-left: 0;
  border: 1px solid var(--lightblue);
}
.matetial ul.liststyle{
  justify-content: space-between;
  align-items: stretch;
}
.matetial ul.liststyle li::before{
  content: none;
}
.matetial ul.liststyle li {
  width:30% ;
  max-width: 300px;
}
.matetial ul.liststyle li a{
  display:flex;
  flex-flow: column;
  gap:1rem;

}
.matetial ul.liststyle li a p{
  position: relative;
}
.matetial ul.liststyle p::before{
  content: "";
  background-size: contain;
  background-image: url("../img/icon_next.svg");
  width: 1rem;
  height: 1.6rem;
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  background-repeat: no-repeat;
}

.movie_list ul li{
  width: 30%;
}
/*  =======================
      table
    =======================*/
.tablearea{
  padding: 4rem ;
  width:100% ;
  max-width: 1000px;
}
table{
  width: 100%;
  border-collapse: collapse;
}
table th {
  width: 20%;
}
table tr {
  background-color: var(--lightgray);
  padding: .35em;
  border-bottom: 2px solid #fff;
}
table th, table td {
  padding: 1em 10px 1em 1em;
  border-right: 2px solid #fff;
}
table thead th {
  background: var(--blue);
  color: #fff;
}
table tbody th {
    background: var(--lightblue);
}

table td a {
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: var(--darkBlue);
}

.cell-w12 {
  width: 12%;
}
.cell-w22 {
  width: 22%;
}
.cell-w26 {
	width: 26%;
}
.cell-w30 {
	width: 30%;
}
.cell-w34 {
  width: 34%;
}
.cell-w38 {
  width: 38%;
}
.cell-w50 {
  width: 50%;
}
@media screen and (max-width: 979px) {
  .tablearea {
    padding: 1rem 0;
  }
  table {
    border: 0;
    width:100%
  }
  table th {
    background-color: var(--blue);
    display: block;
    border-right: none;
    width: 100%;
    padding: 1rem;
  }
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table tr {
    display: block;
      background-color: var(--lightgray);
      padding: 0;
  }
  table td {
    display: block;
    position: relative;
    border-right: none;
    padding: 4px;
  }
  table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
    color: var(--blue);
  }
  table td:nth-child(even) {
    background-color: #fff;
  }
  table td:last-child {
    border-bottom: 0;
  }
  .cell-w12,.cell-w22,.cell-w26,.cell-w30,.cell-w38,.cell-w50 {
    width: 100%;
  }
}
/*  =======================
      detail
    =======================*/
.about_page{
  width: 100%;
  background-image: url("../img/bg_about.png");
  background-size: 100% auto;
  background-repeat: repeat-x;
  background-position:bottom;
  margin-bottom: -6rem;
  padding-bottom: 8rem;
}
.ambassador_page{
  width: 100%;
  background-image: url("../img/bg_ambassador.png");
  background-size:50% auto;
  background-repeat: repeat-x;
  background-position:bottom;
  margin-bottom: -6rem;
  padding-bottom: 8rem;
}
@media (max-width: 768px) {
  .about_page,
  .ambassador_page {
    margin-bottom: -32px;
    padding-bottom: 8rem;
    background-size: 300%;
    background-position: 34% bottom;

  }
  .ambassador_page{
    background-size:190% auto;
    background-position: -270px 110%;
  }
}
.lead_txt_area {
  padding: 2rem 4rem 4rem;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
.lead_txt_area p {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: bold;
  background-color:rgba(255, 255, 255, .8) ;
}
.two_column_wrap {
  display: flex;
  flex-flow: wrap;
  justify-content: space-around;
  width: 100%;
  align-items: center;
  gap: 2rem;
}
.two_column_box {
  width: 45%;
}
.single_column_wrap {
  display: flex;
  flex-flow: wrap;
  justify-content: space-around;
  width: 100%;
  align-items: center;
  gap: 2rem;
}
.single_column_box {
  width: 80%;
}

.stand_area {
  background-color: var(--bluegray);
  padding: 4rem 0;
  width: 100%;
  margin: 5rem auto;
  color: #fff;
}
.stand_area .movie_area {
  width: 420px;
}
.stand_area p {
  color: #fff;
}
@media (max-width: 768px) {
  .lead_txt_area {
    padding: 2rem 2rem 4rem;
  }
 .two_column_box{
  width: 100%;
 }
 .matetial ul.liststyle {
    justify-content: center;
  }
 .listarea, .listarea ul{
  width: 100%;
  justify-content: center;
 }
 .matetial ul.liststyle li {
  width:100% ;
  max-width: 300px;
  }
  .movie_list ul li{
    width: 100%;
  }
  .liststyle{

  }
  .thumb{
    width: 100%;
  }
}
/* topics */
.news_area {
  padding: 4rem 0 8rem;
}
.news_area dl {
  margin: 0 auto;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-self: baseline;
  width: 64%;
  padding: 1rem 0;
  position: relative;
}
.news_area dt span.new {
  position: absolute;
  top: 1.4rem;
  left: -4rem;
  background: var(--yellow);
  font-size: 1rem;
  font-weight: bold;
  padding: 0.1rem 0.5rem;
}
.news_area dt {
  width: 30%;
}
.news_area dd {
  width: 70%;
}
.news_area a {
  color: var(--darkBlue);
}
@media (max-width: 768px) {
  .news_area {
    width: calc(100% - 40px);
  }
}

.link_area {
  background: var(--lightgray);
  width: 100%;
}
.link_area ul {
  margin: 2rem auto;
}

.topics_area .day{
  font-size: 1.4rem;
  margin-top: 1rem;
}
.topics_area,.topics_detail{
  max-width: 1000px;
  padding: 0 2rem;
}
.topics_detail p{
  margin-bottom: 1rem;
}
.topics_detail .img_box{
  display: flex;
  flex-flow: wrap;
  width: 100%;
  justify-content: space-around;
  margin: 3rem 0;
  gap: 2rem;
}

@media (max-width: 768px) {
  .topics_detail .img_box {
    margin: 0 auto;
  }
}

/* community */
.community_wrap {
  border: 2px solid var(--lightblue);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  margin-bottom: 2rem;
}
.info_title {
  padding: 1rem 2rem;
  font-size: 2rem;
  color: var(--darkBlue);
}
.date_name {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  padding: 0 2rem;
  gap: 2rem;
  background-color: var(--lightblue);
  line-height: 2;
}
.date_name .date {
  white-space: nowrap;
}
.date_name p {
  font-size: 1.5rem;
}
.info_wrap {
  width: calc(100% - 20px);
}
.info_wrap pre {
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 2rem;
  white-space: pre-wrap;
  word-wrap: break-word; 
}
.box_list {
  display: flex;
  flex-flow: wrap;
  gap: 2rem 4rem;
}
.history_list dl {
  display: flex;
  flex-flow: wrap;
  gap:2rem ;
  margin-bottom: 1rem;
  align-items: baseline;
}
.history_list dt {
  width: 16rem;
}
.history_list a {
  color: var(--darkBlue);
}
.box_list li {
  padding: 1rem 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: var(--lightgray);
}

@media (max-width: 768px) {
  .history_list dt {
    width: 100%;
  }
  .history_list dl {
    gap: 0;
  }
}
/*　TOP　アンバサダー募集　*/
section.recruiting_area {
  width: 100%;
  background-color: var(--blue);
  color: #fff;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 8rem 0;
  background-image: url(../img/ambassador_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: -2.5vw bottom;
}
@media screen and (max-width:1323px) {
    section.recruiting_area {
    background-size: 130%;
    background-position:-18vw bottom;
  }
}
.recruiting_area h2 {
  font-size: 3.6rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 4rem;
}
.recruiting_area h2:before, .recruiting_area h2:after {
  content: "";
  display: inline-block;
  background-color: #fff;
  width: 20rem;
  height: 2px;
}
.recruiting_area h2:before {
  transform: rotate(45deg);
  transform-origin: center;
}
.recruiting_area h2:after {
  transform: rotate(-45deg);
  transform-origin: center;
}
.recruiting_area p {
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width:768px) {
  .intro01 {
    width: calc(100% - 40px);
  }
  .intro01_box {
    width: 100%;
  }
  .intro01_box h2 span,
  .intro01_box h2 {
    font-size: 2rem;
  }
  .intro01 p {
    font-size: 1.4rem;
  }
  p.txt_lead {
    font-size: 1.4rem;
    margin: 1rem auto 2rem;
  }
  .movie_area, .movie_area iframe {
    width: 100%;
  }
  .news_area dl {
    width: 80%;
    padding: 0.8rem 0;
  }
  .news_area dt, .news_area dd, .news_area a {
    width: 100%;
    font-size: 1.4rem;
  }
  .recruiting_area p {
    font-size: 1.5rem;
  }
}
/* ============
      btn
   ============*/
.btn_area {
  width: 100%;
  display: flex;
  flex-flow: wrap;
  gap: 2rem;
  justify-content: space-around;
  margin: 4rem auto;
}
a.btn {
  border: 2px solid var(--purple);
  color: #000;
  text-align: center;
  padding: 1.8rem 6.5rem 1.8rem 5rem;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #fff;
  position: relative;
  box-shadow: 6px 6px 0px 0px #9EC6E9;
  transition: .1s;
}
a.btn::after {
  position: absolute;
  content: '';
  background: url(../img/icon_arrow01.svg);
  background-repeat: no-repeat;
  padding: 1.2rem;
  top: 40%;
  right: 0.5rem;
}
a.btn.no_arrow::after {
  background: none;
}
a.btn:hover {
  box-shadow: -2px -2px 0px 0px #9EC6E9;
  transform: translate(4px, 4px);
}
a.btn_material,a.btn_ambassador{
  background-color: var(--miBlue);
  color: #fff;
  width:470px;
  height: 120px;
  border: var() 2px solid ;
  display: flex;
  flex-flow: wrap;
  align-content: center;
  justify-content: space-around;
  text-align: left;
}
a.btn_material::after,a.btn_ambassador::after{
  mask-image: url(../img/icon_arrow01.svg);
  mask-repeat: no-repeat;
  background: #fff;
  right: 1.5rem;
  top: 43%;
}
a.btn_material::before{
  position: absolute;
  content: '';
  background: url(../img/icon_download.svg);
  background-repeat: no-repeat;
  padding: 1.2rem;
  top: 43%;
  left: 3.5rem;
}
a.btn_ambassador::before{
  position: absolute;
  content: '';
  background: url(../img/icon_announce.svg);
  background-repeat: no-repeat;
  padding: 1.2rem;
  top: 43%;
  left: 3.5rem;
}
@media (max-width: 768px) {
  a.btn {
    font-size: 1.4rem;
    padding: 1rem 3.2rem 1rem 2rem;
  }
  a.btn::after {
    top: 32%;
  }
}
.show-detail {
  display: inline-block;
  text-decoration: none;
  color: #000;
  border: 1px solid gray;
  border-radius: 35px;
  padding: 10px 20px;
  transition: opacity 0.3s ease;
}
.show-detail:hover {
  opacity: 0.7;
}
/* TOP リンク集 */
.link-list {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin: 2rem auto;
}
.link-list a img {
  width: 280px;
}

.sitemap_nav{
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  gap: 4rem;
}
.sitemap_nav ul{
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
.sitemap_nav ul li a{
  font-size: 1.8rem;
  transition: .1s;
  position: relative;
}

.sitemap_nav ul li.list_parent a{
  font-size: 2.2rem;
}
@media screen and (max-width:979px) {
  .link-list {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
  }
  .link-list a img {
    max-width: 280px;
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .link-list a img {
    max-width: 160px;
  }
}
/* ============
      フッター
   ============*/
footer {
  border-top: var(--blue) 5rem solid;
}
footer h2 {
  font-size: 3rem;
  text-align: left;
}
footer .ttl_en {
  text-align: left;
  line-height: 0;
}
.footer-list {
  display: flex;
  gap: 40px;
}
footer a, footer p {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: #000;
}
.footer_area {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  padding: 5rem 0;
  gap: 4rem;
}
.contact_area {
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  gap: 2rem;
}
.contact_area span.ttl_en {
  display: inline-block;
}
.contact_area div {
  display: flex;
  flex-flow: nowrap;
  align-items: baseline;
  justify-content: flex-start;
}
.contact_area a {
  border-bottom: 1px solid #000;
}
#cr {
  text-align: center;
  background: var(--purple);
  height: 5rem;
  padding: 2rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
#cr p {
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (max-width:979px) {
  .h1_area a.ty_logo{
    display: none;
  }
  .header-top {
  padding-top: 5px;
}
  .header-top ul .txt_size{
    display: none;
  }
  section, .wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .kv_area {
    height: 40vh;
  }
  .kv_copy {
    position: static;
    transform: translateX(0);
    font-size: 2rem;
    width: calc(100% - 40px);
    padding: 2rem 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end
  }
  .kv_copy span {
    padding: 1rem 0 0;
  }
  .intro01 img {
    width: 125px;
    margin-top: 2rem;
  }
  section.recruiting_area {
    background-size:100%;
    background-position: center bottom;
  }
  .recruiting_area h2 {
    font-size: 2rem;
    height: 40px;
  }
  .recruiting_area h2:before {
    transform: rotate(55deg);
    width: 4rem;
  }
  .recruiting_area h2:after {
    transform: rotate(-55deg);
    width: 4rem;
  }
  .footer_area {
    flex-flow: column;
    justify-content: center;
    padding: 2rem 0;
    gap: 2rem;
  }
  .footer_area .logo_area img {
    width: 100px;
  }
  footer h2 {
    font-size: 1.8rem;
    text-align: center;
    width: 60%;
  }
  footer a, footer p {
    font-size: 1.2rem;
  }
  .contact_area div {
    justify-content: center;
  }
}
@media (max-width: 768px) {

  .kv_copy {
    font-size: 1.6rem;
  }
  .kv_area {
    height: 20rem;
  }
}
/*  =======================
      title , text, font
    =======================*/
h2 {
  text-align: center;
  font-size: 4rem;
  color: var(--blue);
  display: block;
  width: 100%;
}
h2.main_ttl {
  color: transparent;
  background: repeating-linear-gradient(90deg, var(--bluegray) 0 1em, var(--blue) 1em 2em, var(--purple) 2em 3em, var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
  line-height: 1;
  margin-top: 20px;
}
h2.main_ttl span:nth-child(1) {
  color: var(--bluegray);
}
h2.main_ttl span:nth-child(2) {
  color: var(--blue);
}
h2.main_ttl span:nth-child(3) {
  color: var(--purple);
}
h2.main_ttl span:nth-child(4) {
  color: var(--blue);
}
.h2-span {
  font-size: 2rem;
}
.h3 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--purple);
}
.h4 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--blue);
  border-bottom: 5px solid var(--lightblue);
  display: inline-block;
}
h5{
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
h6{
  font-size: 1.6rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: var(--darkBlue);
}
span.ttl_en {
  font-size: 2rem;
  display: block;
  font-style: italic;
  color: var(--blue);
  text-align: center;
  font-weight: bold;
}
p.txt_lead {
  margin: 3rem auto 5rem;
  text-align: center;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.4rem;
  }
}

/*サイズ調整*/
.mb0 {
  margin-bottom: 0;
}
.mb2rem {
  margin-bottom: 2rem;
}
.mb4rem {
  margin-bottom: 4rem !important;
}
.mt2rem {
  margin-top: 2rem
}
.mt3rem {
  margin-top: 3rem;
}
.mt4rem {
  margin-top: 4rem;
}
.ml1rem{
  margin-left: 1rem;
}
.pl2rem {
  padding-left: 2rem;
}
.f12 {
  font-size: 1.2rem;
}

/* フォントサイズ変更の影響を受けないようにヘッダーを固定 */
header, .header_area, .h1_area, .size-p, .size-button, .btn_sitemap, .tokyo_link, .size-fix {
  font-size: 12px !important;
  line-height: 1.5 !important;
}
@media (max-width: 400px) {
  .header-top {
    padding: 5px 10px;

  }
  header, .header_area, .h1_area, .size-p, .size-button, .btn_sitemap, .tokyo_link, .size-fix {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }
}

/* 画像右寄せ */
.fright {
  float: right;
  padding-left: 1rem;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* topics 202507 */
.topics_area h2.main_ttl {
  line-height: 1.4;
}
.topics_area a {
  color: var(--darkBlue);
}
.qr_img {
  width: 90px;
  height: 90px;
  margin-top: 0.5rem;
}


