@charset "UTF-8";
/* CSS Document */
/*===================================================================
//  基本設定
//=================================================================*/

:root {
    --txt-color: #000;
    --accent-color: #DAB70D;
    --accent-color-dark: #BF9213;
    --accent-colort-light: #E7CF5C;
    --base-color: #003262;
    --base-color-light: #0067A6;
    --border-color: #DDDDDD;
    --bg-color: #F5F5F5;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  background-color: var(--base-color);
}

body.fixed {
  overflow: hidden;
}

#content {
  overflow: hidden;
}

#pagetop,
#pagebottom {
  word-break: break-all; /*min-width: 1080px;*/
  z-index: 10;
  position: relative;
}

.tb {
  display: none !important;
}

.sp {
  display: none !important;
}

a:focus {
  outline: none;
}

.bg {
  background-color: var(--bg-color);
  position: relative;
}

.vertical_text {
  writing-mode: vertical-rl;
  text-align: start;
}

.red {
  color: #6cb999;
}
.small {
  font-size: 0.5rem;
  display: inline-block;
}

.link_color {
  color: var(--accent-color-dark);
  text-decoration: underline !important;
}

.contents-wrapper { 
  max-width:1400px !important;
  padding-left: 5%;
  padding-right: 5%;
  margin: 0 auto;
}

.margin-b {
  margin-bottom: 2em;
}

.btn_wrap .btn {
  display: inline-block;
  border-radius: 50px;
  padding: 0.4rem 0.8rem;
  margin: 0.4rem 1%;
  font-size: min(3vw,18px);
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #DAB70D;
  background: linear-gradient(90deg, rgba(218, 183, 13, 1) 1%, rgba(191, 146, 19, 1) 100%); 
  box-shadow: 2px 7px 30px rgba(28, 162, 95, 0.3);
  margin-top: 3rem;
  /* position: absolute;
  left: 0;
  right: 0; */
  margin: auto;
}
.btn_wrap .btn.demo_btn {
  background-color: #fff;
  color: #354655;
  border: 2px solid #91ACBF;
}

table.base-table tbody {
  display: block;
}
table.base-table tr {
  display: table;
  width: 100%;
  border-top: 1px solid #abbfce;
}
table.base-table tr:last-child {
  border-bottom: 1px solid #abbfce;
}
table.base-table th {
  width: 200px;
  position: relative;
  display: table-cell;
  vertical-align: top;
  padding: 1.2rem 3.5rem 1.3rem 1rem;
  text-align: left;
  font-size: 15px;
  color: #231815;
  font-weight: 600;
}
table.base-table td {
  display: table-cell;
  vertical-align: middle;
  padding: 1.2rem 1rem 1.3rem;
}
table.base-table td ul.list,
table.base-table td ol.list {
  margin-left: 1.8em;
}
table.base-table td p {
  padding-bottom: 0.5em;
}

dl.base-dl {
  display: table;
  width: 100%;
  border-top: 1px solid #B1DAC9;
}
dl.base-dl:last-child {
  border-bottom: 1px solid #B1DAC9;
}
dl.base-dl:after {
  content: "";
  display: block;
  clear: both;
}
dl.base-dl dl {
  display: table;
  width: 100%;
  border-top: 1px solid #DDDDDD;
}
dl.base-dl dl:last-child {
  border-bottom: 1px solid #DDDDDD;
}
dl.base-dl dt {
  width: 200px;
  position: relative;
  display: table-cell;
  vertical-align: top;
  padding: 1.2rem 3.5rem 1.3rem 1rem;
  text-align: left;
  font-size: 15px;
  color: #222;
  font-weight: 600;
}
dl.base-dl dd {
  display: table-cell;
  vertical-align: middle;
  padding: 1.2rem 1rem 1.3rem;
}
dl.base-dl dd label {
  display: block;
}

.section_txt {
  display: inline-block;
  font-size: 4rem;
  color: #1d1d1d;
  font-weight: bold;
  position: relative;
  padding: 1.5rem;
  text-align: center;
}

.section_ttl.gothic {
  font-size: 24px;
}

.section_ttl .small {
  display: block;
  font-size: 13px;
}

.desc_text {
  font-size: 14px;
  max-width: 750px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
  padding-bottom: 3em;
  font-weight: bold;
}

.small {
  font-size: 12px;
}

.marker {
  background: linear-gradient(transparent 55%, hsla(205, 26%, 66%, 0.5) 55%);
  display: inline;
  padding: 0 0.15em;
}

i {
  display: inline-block;
  vertical-align: middle;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
}

.txt {
  display: inline-block;
  vertical-align: middle;
}

/*===================================================================
//  ローダー
//=================================================================*/

/* ローディング画面全体 */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff; /* 背景色（背景画像がない場合） */
  transition: opacity 1s ease-in-out;
}

/* 背景画像 */
.loader-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('../img/index/main_bg.jpg'); */
  background-color: #2E6D93;
  background: linear-gradient(45deg, rgba(46, 109, 147, 1) 0%, rgba(34, 87, 130, 1) 50%, rgba(94, 58, 97, 1) 100%);
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: bg-fade-in 1.5s forwards;
}

/* ロゴ */
.loader-logo {
  width: 160px;
  height: 147px;
  max-width: 80%;
  max-height: 80%;
  opacity: 0;
  transform: scale(1.1);
  animation: logo-fade-in 1.5s forwards 0.5s;
}

/* アニメーション定義 */
@keyframes bg-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes logo-fade-in {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1); }
}

/* 読み込み完了後の非表示クラス */
.loader-wrapper.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-in-out, visibility .5s linear;
}





/*===================================================================
//  ヘッダー
//=================================================================*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
#header .outer {
  -webkit-backdrop-filter: blur(16px) brightness(1.1) saturate(60%);
  backdrop-filter: blur(16px) brightness(1.1) saturate(60%);
  background-color: rgb(14 87 129 / 70%);
  z-index: 100;
  max-width: 100%;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
#header .outer .contents {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
#header .outer .contents .logo {
  width: 30%;
  min-width: 155px;
  padding: 0em 0.2em 0em 0.4em;
  box-sizing: border-box;
  font-size: 2em;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.02em;
}
#header .outer .contents .logo a {
  display: block;
}
#header .outer .contents .logo h1 {
  font-size: 10px;
}
#header .outer .contents .logo a .logo_img {
  width: 100%;
  max-width: 220px;
  display: inline-block;
  vertical-align: middle;
}
#header .outer .contents .logo a .logo_alpha {
  font-size: 20px;
  color: #354655;
  display: inline-block;
  vertical-align: bottom;
  padding: 0 0 0.2rem;
  font-weight: 900;
}
#header .outer .contents .h1_txt {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}
#header .outer .contents .h1_txt h1 {
  font-size: 13px;
  color: #231815;
  padding: 0 1.5rem;
  font-weight: normal;
}
#header .outer .contents .btn_wrap {
  padding-right: 2%;
}
#header .outer .contents .btn_wrap .btn {
  display: inline-block;
}
#header .outer .contents_menu {
  width: 70%;
  flex-basis: calc(100% - 200px);
  flex-grow: 1;
}
#header .outer .contents_menu_inner {
  max-width: 700px;
  display: flex;
  justify-content: end;
  position: relative;
  align-items: center;
  padding-right: 64px;
  gap: 0.2rem;
  margin: 0 0 0 auto;
}
#header .outer .contents_menu .link {
  text-align: center;
}
#header .outer .contents_menu .link a {
  width: 100%;
  height: 100%;
}
#header .outer .contents_menu .link .alpha {
  font-size: 14px;
  font-weight: 600;
}
#header .outer .contents_menu .link .icon {
  margin: 0rem auto 0rem;
  display: block;
  width: 38px;
}
#header .outer .contents_menu .link:hover {
  opacity: 1 !important;
}
#header .outer .contents_menu .link:hover img {
  opacity: 1 !important;
  scale: 1.2;
}
#header .outer .contents_menu .link.link_of {
  flex-grow: 1;
}
#header .outer .contents_menu .link.link_of a {
  color: #E9E9E9;
  line-height: 1;
  padding: 1rem 2%;
  font-size: 14px;
}
#header .outer .contents_menu .link.link_of a.menu_about {
  /* min-width: 160px; */
}
#header .outer .contents_menu .link.link_of.contact_btn a {
  color: #fadc4a;
}
#header .outer .contents_menu .link.link_ec {
  width: 100px;
  max-width: 85px;
  background-color: #354655;
}
#header .outer .contents_menu .link.link_ec a,
#header .outer .contents_menu .link.link_ec a .icon::after {
  color: #fff !important;
  line-height: 1;
}

.sp-icon {
  display: table-cell;
  vertical-align: middle;
  position: absolute;
  right: 30px;
}

#g-nav {
  padding: 6vh 5% 12em;
  min-height: 520px;
}
#g-nav .nav_caption {
  font-size: 14px;
  display: block;
  margin: 0 2% 1rem;
}
#g-nav .nav_sns {
  width: 96%;
  text-align: left;
  margin: 0 2% 3rem;
  border-bottom: 1px solid;
}
#g-nav .nav_sns .nav_caption {
  font-size: 14px;
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
#g-nav .nav_sns a {
  display: inline-block;
  padding: 0.5rem 0.5rem;
  font-size: min(7vw, 24px);
}
#g-nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4vh;
}
#g-nav .nav_list .header_logo {
  background: transparent;
  float: none;
  width: 200px;
  padding-bottom: 0;
}
#g-nav .nav_list .nav_item {
  flex-basis: 100%;
  margin: 0 2% 1rem;
  flex-grow: 1;
}
#g-nav .nav_list .nav_item .nav_item_inner {
  border-radius: 50px;
  margin: auto;
  text-align: left;
}
#g-nav .nav_list .nav_item .nav_item_inner :hover {
  opacity: 1 !important;
}
#g-nav .nav_list .nav_item .nav_item_inner .alpha {
  font-size: min(3vw, 30px);
}
#g-nav .nav_list .nav_item .nav_item_inner .icon {
  position: absolute;
  left: 3%;
  top: calc(50% - 25px);
  margin-right: 0.6rem;
}
#g-nav .nav_list .nav_item.ec .nav_item_inner {
  color: var(--accent-color-dark);
}
#g-nav .mv_copy {
  text-align: right;
  position: absolute;
  bottom: 3rem;
  right: 5%;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
}
#g-nav .mv_copy .anv_logo {
  max-width: 300px;
  display: block;
  padding-top: 5vh;
  margin: 0 0 2vh auto;
}
#g-nav .nav_btm {
  text-align: right;
  position: absolute;
  bottom: 6rem;
  right: 5%;
}
#g-nav .nav_btm .nav_link {
  padding-left: 1rem;
  font-size: 14px;
  font-weight: normal;
}

/*===================================================================
//  TOP - スクロールアクション
//=================================================================*/
.fv {
  z-index: 1;
}

/*===================================================================
//  TOP - メイン
//=================================================================*/
.home_fv {
  position: relative;
}

#container {
  position: relative;
  z-index: 1;
  background: #231815;
  padding: 600px 0;
  text-align: center;
}

.section_txt_big {
  font-size: 50px;
  display: block;
  color: #F39800;
}

.section_txt_sub {
  font-size: 18px;
  color: #562E00;
  padding: 0.5rem 0;
  font-weight: normal;
}

.main_top_slider_wrap {
  position: absolute;
  top: -6rem;
  left: -6vw;
  z-index: -0;
}
.main_top_slider_wrap .splide_main {
  transform: skewY(-30deg);
}
.main_top_slider_wrap .splide__track {
    overflow: visible;
}
.main_top_slider_wrap .splide__slide {
  transform: skewY(30deg);
}


.main_btm_slider_wrap {
  position: absolute;
  bottom: -12rem;
  right: -6vw;
  z-index: -0;
}
.main_btm_slider_wrap .splide_main_2 {
  transform: skewY(-30deg);
}
.main_btm_slider_wrap .splide__track {
    overflow: visible;
}
.main_btm_slider_wrap .splide__slide {
  transform: skewY(30deg);
}
.splide__slide:hover {
  animation-play-state: running;
}



/*===================================================================
//  TOP - セクション
//=================================================================*/
/** 共通 **/
main {
  width: 100%;
  margin: 0 auto 0;
}
main.txt {
  display: block;
  overflow: hidden;
}
main .main_wrap {
  background: url('../img/index/main_bg.jpg') no-repeat center center / cover;
  width: 100%;
  position: relative;
  margin: 0 auto 0;
  padding: 0 5% 3rem;
  overflow: hidden;
  display: flex;
  gap: 2%;
  height: 100svh;
  min-height: 800px;
  align-items: center;
  text-align: center;
}
.celebrate_icon {
    width: 160px;
    margin: 0 auto 2rem;
}
main .main_wrap .catch_copy strong {
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 0.5rem 0;
  font-size: min(6vw, 30px);
  display: inline-block;
  margin-bottom: 1rem;
}
main .main_wrap .catch_copy .big {
  display: block;
  font-size: min(20vw, 80px);
  margin-bottom: 4vh;
  text-align: center;
  font-weight: 500;
  position: relative;
  color: var(--accent-colort-light);
  font-feature-settings: "palt";
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
}
main .main_wrap .contents {
  margin: 0 auto 0;
  margin-top: 10vh;
  padding-bottom: 5vh;
  z-index: 1;
  position: inherit;
}
main .main_wrap .contents .sub_catch_copy {    
  font-size: min(3vw, 18px);
  padding-bottom: 1.5vh;
  font-weight: 400;
  text-align: center;
  color: #fff;
}

.mv_more {
  display: table;
  height: 213px;
  width: 213px;
  position: absolute;
  bottom: -4.5rem;
  z-index: 5;
  right: 0;
  left: 0;
  margin: auto;
    text-align: center;
}
.mv_more a {
  position: relative;
  z-index: 0;
  color: #fff;
  vertical-align: middle;
  display: table-cell;
}
.mv_more a:hover {
  opacity: 1!important;
}
.mv_more a:before {
  content: '';
  background-image: url('../img/index/more_circle.png');
  background-size: cover; 
  background-position: center;
  animation: rotateBackground 15s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 213px;
  height: 213px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) rotate(0deg);
  margin: auto;
  z-index: -1;
}
.mv_more a .txt {
  position: relative;
  padding-bottom: 17px;
}
.mv_more a .txt:after {
  content: '';
  background: url(../img/common/icon_down.svg) no-repeat center / contain;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}
@keyframes rotateBackground {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateZ(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateZ(0);
  }
}


.section_ttl_wrap {
  text-align: center;
}

.section_ttl {
  font-size: min(10vw, 40px);
  font-weight: 400;
  display: block;
  color: #000;
  padding-bottom: 2rem;
}

.sub_ttl {
  font-size: 26px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: #354655;
  padding-bottom: 2rem;
}

.reverse {
  flex-direction: row-reverse;
}

.more_btn {
  display: block;
  max-width: 200px;
  margin: 0 0 0 auto;
  padding: 1.1rem 1% 1.4rem;
  font-size: 14px;
  letter-spacing: 0.1rem;
  z-index: 1;
  transition: 0.3s ease-out;
  text-align: right;
  color: #5788C8;
}
.more_btn:hover {
  opacity: 1 !important;
}
.more_btn img {
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 17px;
}
.more_btn i {
  position: absolute;
  top: calc(50% - 8px);
  font-size: 15px;
  right: 45px;
  transition: 0.3s ease-out;
}
.more_btn:hover img {
  right: 28px;
}

.breadcrumb {
  padding: 0.5rem 5% !important;
  font-size: 13px;
  color: #999;
}

/** ABOUT **/ 
#about {
  background: url(../img/index/about_bg.jpg) no-repeat bottom center / cover;
}
#about .about_wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
#about .about_wrap:before {
  content: '';
  background-image: url(../img/index/bbblurry_orange.svg);
  background-size: cover;
  width: 600px;
  height: 600px;
  position: absolute;
  left: -7%;
  top: -25%;
  z-index: 0;
  opacity: 0.5;
}
#about .about_wrap:after {
  content: '';
  background-image: url(../img/index/bbblurry_blue.svg);
  background-size: cover;
  width: 600px;
  height: 600px;
  position: absolute;
  right: -4%;
  bottom: -4%;
  z-index: 0;
}
#about .section_ttl_wrap {
  z-index: 1;
}
#about .section_ttl {
  color: #fff;
  letter-spacing: 0.15rem;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
}
#about .section_ttl_wrap .orange  {
  color: #D5AB45;
}
#about .section_ttl_wrap .blue {
  color: #639ED6;
}
#about .about_wrap_top {
  padding-top: 4rem;
  color: #fff;
  letter-spacing: 0.05rem;
  z-index: 1;
}
#about .about_wrap_top .txt {
  height: 400px;
  text-align: justify;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
}

#application_1 {
  margin-top: -10vh;
}
.application_bnr {
  max-width: 1040px;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto 3rem;
}
.aplication_top {
  display: flex;
  align-items: center;
  background: #D2C068;
  /* background: linear-gradient(45deg, rgba(210, 192, 104, 1) 0%, rgba(181, 154, 24, 1) 100%); */
  padding: 2px;
}
.aplication_top h2 {
  font-size: 24px;
  color: #fff;
  padding: 0.5rem;
  flex-grow: 1;
  flex-basis: 200px;
  text-align: center;
}
.aplication_top .txt {
  background-color: #fff;
  color: var(--accent-color-dark);
  padding: 0.5rem 2% 0.5rem 23px;
  flex-grow: 1;
  flex-basis: calc(100% - 200px);
  display: flex;
  align-items: center;
  gap: 2%;
  position: relative;
    font-size: 14px;
}
.aplication_top .txt:after {
  content: '';
  background: #ffffff;
  height: 100%;
  width: 20px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 0;
  left: -2px;
  background: #D2C068;
  /* background: linear-gradient(45deg, rgba(210, 192, 104, 1) 0%, rgba(181, 154, 24, 1) 100%); */
}
.aplication_top .txt .contact_txt {
  margin-left: 90px;
  position: relative;
}
.aplication_top span {
  background-color: var(--bg-color);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  line-height: 1.2;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.1);
  position: absolute;
  left: -90px;
}
.aplication_link {
  display: table;
  vertical-align: middle;
  width: 100%;
}
.aplication_link_item {
  display: table-cell;
  width: 33%;
  text-align: center;
  padding: 0.5rem;
  position: relative;
}
.aplication_link_item.end h3,
.aplication_link_item.end .subttl {
  opacity: 0.6;  
}
.aplication_link_item.expect:before {
  content: '';
  background-image: url(../img/index/link_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  left: auto;
}
.aplication_link_item.taiwan {
  background-color: #13415D;
  border: 1px solid #67787E;
  vertical-align: middle;
}
.aplication_link_item.tokyo {
  background-color: var(--base-color-light);
  border: 1px solid #2E8FCA;
  vertical-align: middle;
}
.aplication_link_item.osaka {
  background-color: #007AA6;
  border: 1px solid #2E8FCA;
  vertical-align: middle;
}
.aplication_link_item h3 {
  font-size: 24px;
  color: #fff;
}
.aplication_link_item .subttl {
  font-size: 17px;
  color: #fff;
  padding-bottom: 0.3rem;
}
.aplication_link_item .deadline {
  color: #fff;
}
.aplication_link_item .deadline span {
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 0.2rem 0.5rem;
  display: inline-block;
  line-height: 1.3;
  margin-right: 0.5rem;
}












.about_mid {
  margin-bottom: 5rem;
  position: relative;
}
#about_2 {
  padding-left: 5%;
  margin-right: 5%;
}
#about_2:before {
  content: '';
  background-image: url(../img/index/bbblurry_orange.svg);
  background-size: cover;
  width: 600px;
  height: 600px;
  position: absolute;
  right: -40%;
  top: -19%;
  z-index: -1;
  opacity: 0.5;
}
#about_2:after {
  content: 'The Theme of The Centennial';
  font-family: open-sans, sans-serif;
  font-weight: 700;
  color: var(--bg-color);
  font-size: min(6vw, 45px);
  position: absolute;
  right: 0;
  left: auto;
  top: -31px;
}
#about_3 {
  padding-right: 5%;
  margin-left: 5%;
}
#about_3:before {
  content: '';
  background-image: url(../img/index/bbblurry_blue.svg);
  background-size: cover;
  width: 600px;
  height: 600px;
  position: absolute;
  left: -26%;
  bottom: -4%;
  z-index: -1;
}
#about_3:after {
  content: 'Oneness with the Tao';
  font-family: open-sans, sans-serif;
  font-weight: 700;
  color: var(--bg-color);
  font-size: min(6vw, 45px);
  position: absolute;
  right: auto;
  left: 0;
  top: -31px;
}
#about_2 .about_mid_wrap {
  padding-left: 5%;
}
#about_3 .about_mid_wrap {
  padding-right: 5%;
}
#about_2 .about_mid_wrap .section_ttl {
  text-align: left;
}
#about_3 .about_mid_wrap .section_ttl {
  text-align: right;
}
.about_mid_wrap_inner {
  display: flex;
  gap: 5%;
}
#about_2 .about_mid_wrap_inner {
  padding-right: 0;
}
#about_3 .about_mid_wrap_inner {
  padding-left: 0;
}
.about_mid_wrap_inner .txt {
  flex-basis: 50%;
  flex-grow: 1;
}
.about_mid_wrap_inner figure {
  flex-basis: 50%;
  flex-grow: 1;
  max-width: 514px;
}
.about_mid_wrap_inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.about_btm {
  position: relative;
}
#about_4 {
  padding-left: 5%;
  margin-right: 5%;
}
#about_4:after {
  content: '';
  position: absolute;
  right: 0;
  left: auto;
  top: -31px;
}
.about_btm_wrap_inner {
  margin: 5rem 15% 0 5%;
  position: relative;
  z-index: 0;
}
.about_btm_wrap_inner .inner_box {
  z-index: 1;
  position: inherit;
}
.about_btm_wrap_inner.tokyo {
  margin: 5rem 5% 5rem 15%;
  overflow: hidden;
}
.about_btm_wrap_inner.osaka .inner_box {
  background-image: url(../img/index/osaka_main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.about_btm_wrap_inner.osaka:after {
  content: '';
  background-image: url(../img/index/blob_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15vw;
  height: 15vw;
  max-width: 255px;
  max-height: 255px;
  position: absolute;
  right: -9vw;
  left: auto;
  top: -56px;
  z-index: -1;
  animation: float-1 5s ease-in-out infinite;
}
.about_btm_wrap_inner.tokyo .inner_box {
  background-image: url(../img/index/tokyo_main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}
.about_btm_wrap_inner.taiwan .inner_box {
  background-image: url(../img/index/taiwan_main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.about_btm_wrap_inner.taiwan:after {
  content: '';
  background-image: url(../img/index/blob_orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15vw;
  height: 15vw;
  max-width: 255px;
  max-height: 255px;
  position: absolute;
  left: -7vw;
  right: auto;
  top: -113px;
  z-index: -1;
  animation: float-2 6s ease-in-out infinite;
}

/* アニメーション1：上下左右に動く */
@keyframes float-1 {
  0% { transform: translate(0px, 0px); }
  25% { transform: translate(-3px, -5px); }
  50% { transform: translate(0px, -10px); }
  75% { transform: translate(3px, -5px); }
  100% { transform: translate(0px, 0px); }
}

/* アニメーション2：上下と回転 */
@keyframes float-2 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* アニメーションを適用する要素 */
.floating-element-1 {
  animation: float-1 5s ease-in-out infinite;
}

.floating-element-2 {
  animation: float-2 6s ease-in-out infinite;
}

.about_btm_wrap_inner .inner_txt {
  width: max(20vw, 192px);
  padding: 4rem 0 4rem 2vw;
}
.about_btm_wrap_inner.tokyo .inner_txt {
  width: max(20vw, 192px);
  padding: 4rem 2vw 4rem 0;
  margin: auto 0 auto auto;
}
.about_btm_wrap_inner .inner_txt .venuename {
  font-size: 43px;
  color: #fff;
  padding-bottom: 1rem;
  position: relative;
  z-index: 0;
}
.about_btm_wrap_inner.tokyo .inner_txt .venuename {
  text-align: right;
}
.about_btm_wrap_inner .inner_txt .venuename:before {
  content: 'Osaka';
  font-family: open-sans, sans-serif;
  font-weight: 700;
  color: var(--bg-color);
  font-size: 43px;
  position: absolute;
  right: auto;
  left: -6%;
  top: -33px;
  opacity: 0.15;
  z-index: -2;
}
.about_btm_wrap_inner .inner_txt .venuename:after {
  content: '';
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 57px;
  height: 57px;
  position: absolute;
  right: -1vw;
  left: auto;
  bottom: 25px;
  opacity: 0.7;
  z-index: -1;
}
.about_btm_wrap_inner.tokyo .inner_txt .venuename:before {
  content: 'Tokyo';
  right: -6%;
  left: auto;
  top: -33px;
}
.about_btm_wrap_inner.tokyo .inner_txt .venuename:after {
  right: auto;
  left: -1vw;
}
.about_btm_wrap_inner.taiwan .inner_txt .venuename:before {
  content: 'Taiwan';
}
.about_btm_wrap_inner .inner_txt .txt {
  color: #fff;
  padding-bottom: 1rem;
  font-size: 15px;
  font-weight: 500;
}
.about_btm_wrap_inner .inner_txt .more {
  color: var(--accent-color-dark);
  font-size: 14px;
    display: block;
}
.about_btm_wrap_inner.tokyo .inner_txt .more {
  text-align: right;
}
.about_btm_wrap_inner .inner_txt .more:after {
  content: '';
  background-image: url(../img/index/icon_arrow_down.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 0.5rem;
  margin-top: -5px;
  width: 15px;
  height: 15px;
  display: inline-block;
}
.target_wrap {
  padding-top: 3rem;
}
.target_wrap h3 {
    font-size: 30px;
    color: var(--base-color);
    padding-bottom: 1rem;
    position: relative;
    margin-left: 1.2rem;
    text-align: left;
}
.target_wrap h3::before {
    content: '';
    background-color: var(--accent-color-dark);
    width: 8px;
    height: 40px;
    position: absolute;
    top: 0;
    left: -1.2rem;
    right: auto;
}
.target_wrap ol > li{
  padding-bottom: 0.8rem;
}
.target_wrap ol > li > ul {
  list-style-type: disc;
  margin-left: 2.5rem;
}
.target_wrap ol > li h4 {
  font-size: 1.5rem;
}

#about_last {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 4rem;
  position: relative;
}
#about_last:before {
  content: '';
  background-image: url(../img/index/bbblurry_orange.svg);
  background-size: cover;
  width: 600px;
  height: 600px;
  position: absolute;
  right: -18%;
  bottom: -7%;
  z-index: -1;
  opacity: 0.5;
}
#about_last:after {
    content: '';
    background-image: url(../img/index/bbblurry_blue.svg);
    background-size: cover;
    width: 600px;
    height: 600px;
    position: absolute;
    left: -16%;
    top: 6%;
    z-index: -1;
}
.about_last .section_ttl {
  color: #fff;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
}
.about_last_wrap_top {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  gap: 1rem 2%;
  color: #fff;
}
.about_last_wrap_top .txt {
  flex-basis: 30%;
  flex-grow: 1;
  padding-right: 3rem;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
}
.about_last_wrap_top figure {
  flex-basis: 66%;
  flex-grow: 1;
  max-width: 710px;
}
.arrow_down {
  position: relative;
  padding-right: 20px;
  z-index: 0;
  background-color: var(--accent-color-dark);
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}
.arrow_down::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: auto;
  transform: translateY(-50%) rotate(45deg);
  width: 25px;
  height: 25px;
  border-right: 3px solid var(--accent-color-dark);
  border-bottom: 3px solid var(--accent-color-dark);
  z-index: 1;
}
.arrow_down::before {
  content: '';
  position: absolute;
  top:calc(50% - 3px);
  right: 0;
  left: 0;
  margin: auto;
  transform: translateY(-50%) rotate(45deg);
  width: 25px;
  height: 25px;
  z-index: 2;
  background-color: var(--base-color);
}







/** OVERVEW **/

.overview .section_ttl_wrap .section_ttl {
    color: #fff;
}
.overview .section_ttl_wrap .txt {
    color: #fff;
    padding-bottom: 3rem;
  }

.tabs {
  display: flex;
  gap: 1%;
}
.tab-button {
  padding: 1.5rem 0.2rem;
  cursor: pointer;
  background-color: #415C76;
  border: 1px solid #67787E;
  border-bottom: 1px solid var(--bg-color);
  display: inline-block;
  border-radius: 10px 10px 0 0;
  color: #fff;
  flex-grow: 1;
  flex-basis: 30%;
  text-align: center;
  font-size: min(4vw, 24px);
  animation: .3s;
  bottom: -1px;
  position: relative;
}
.tab-button[data-tab-id="tab2"] {
  background-color: #3066a7;
  border: 1px solid #2E8FCA;
  border-bottom: 1px solid var(--bg-color);
}
.tab-button[data-tab-id="tab3"] {
  background-color: #357aa7;
  border: 1px solid #2E8FCA;
  border-bottom: 1px solid var(--bg-color);
}
.tab-button:not(.active):hover {
  opacity: 0.7;
}
.tab-button.active {
  background-color: var(--bg-color);
  color: #000;
}
.tab-content {
  display: none;
  padding: 2.5rem 0 2.5rem;
  border: 1px solid #ccc;
  border-top: none;
}
.tab-content .txtwrap {
  display: table;
  width: 100%;
  min-height: 300px;
}
.txtwrap .bold_txt {
  text-align: center;
  color: var(--accent-color);
  font-style: italic;
  display: table-cell;
  vertical-align: middle;
}
.tab-content.active {
  display: block;
}


.overview_cont {
    padding: 2.5rem 2.5% 5rem;
    margin-bottom: 2.5rem;
}
.overview_cont:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.overview_cont h3 {
  font-size: 30px;
  color: var(--base-color);
  padding-bottom: 1rem;
  position: relative;
  margin-left: 1.2rem;
    text-align: left;
}
.overview_cont .txt {
  font-size: 14px;
  color: #000;
  margin-left: 1rem;
  font-weight: 400;
}
.overview_cont h3::before {
  content: '';
  background-color: var(--accent-color-dark);
  width: 8px;
  height: 40px;
  position: absolute;
  top: 0;
  left: -1.2rem;
  right: auto;
}
.overview_cont_inner {
  display: flex;
  gap: 2%;
}
.overview_cont_inner figure {
  flex-basis: 45%;
}
.overview_cont_inner img {

}
.overview_cont_inner dl {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-basis: 55%;
} 
.overview_cont_inner dt {
  font-family: dnp-shuei-4go-std, sans-serif;
  font-weight: 500;
  flex-basis: 100px;
  text-align: center;
  color: var(--base-color);
  border-top: 1px solid #ddd;
  vertical-align: middle;
  padding: 0.8rem 0.2rem;
}
.overview_cont_inner dd {
  font-weight: 500;
  flex-basis: calc(98% - 100px);
  border-top: 1px solid #ddd;
  vertical-align: middle;
  padding: 0.8rem 0.2rem;
}
.overview_cont_inner dt:last-of-type,
.overview_cont_inner dd:last-of-type {
  border-bottom: 1px solid #ddd;
}

.overview_cont.timetable .overview_cont_inner {
  display: block;
}
.overview_cont_inner table {
    border-collapse: collapse;
    overflow: hidden;
    background-color: #fff;
    width: 100%;
}
.overview_cont_inner thead {
  background-color: #EEECE4;
  color: var(--accent-color-dark);
}
.overview_cont_inner thead th {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    padding: 1rem 1rem;
    text-align: center;
}
.overview_cont_inner thead td {
    border-bottom: 1px solid var(--border-color);
}
.overview_cont_inner tbody th {
    width: 120px;
    padding: 0.5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    font-weight: 400;
}
.overview_cont_inner tbody th .ver {
  writing-mode: vertical-lr;
}
.overview_cont_inner table td {
    width: calc(100% - 120px);
    padding: 0.5rem 1rem 0.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}
.overview_cont_inner table .role {
    color: #fff;
    background-color: #E1D59A;
    padding: 0.2rem 0.5rem;
    font-size: 14px;
    vertical-align: middle;
    display: inline-block;
    margin: 0.2rem 1rem 0.2rem 0;
}
.overview_cont_inner table .name {  
    font-weight: 600;
}
.overview_cont_inner table .post {
  font-size: 14px;
    font-weight: 500;
}





.overview_cont_inner iframe { 
  max-height: 240px;
}

.speaker .overview_cont_inner {
    gap: 5%;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
  }
.overview_cont_inner .speaker_name {
    margin: auto;
    width: 100%;
}
.overview_cont_inner .speaker_name figure {
    width: 150px;
    margin-bottom: 0.3rem;
    margin: auto;
}
.overview_cont_inner .speaker_name img {
  
}
.overview_cont_inner .speaker_name h4 {
    font-size: 21px;
    text-align: right;
}
.overview_cont_inner .speaker_name p {
    font-size: 14px;
    text-align: right;
}
.overview_cont_inner .speaker_detail .theme {
  font-size: 12px;
}
.overview_cont_inner .speaker_detail .theme_ttl {
    font-size: 22px;  
    padding-bottom: 0.5rem;
}
.overview_cont_inner .speaker_detail .time {
    padding-bottom: 0.5rem;
}
.overview_cont_inner .speaker_detail .profile {
    text-decoration-line: underline;
    text-decoration-color: #d8d8d8;
    text-underline-offset: 9px;
    line-height: 2;
}

/* ページネーション */
.splide__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  bottom: 2.2rem;
  right: 9rem;
  left: auto;
}

.splide__pagination__page {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 20px;
  height: 4px;
  border-radius: unset;
  background-color: var(--border-color);
  transition: width 0.3s ease, background-color 0.3s ease;
  margin: 0;
}

.splide__pagination__page.is-active {
  width: 40px;
  background-color: var(--accent-colort-light);
    transform: unset;
}
.splide__pagination__page.is-active:not(:first-child) {
  margin-left: 0px; 
}

.splide__pagination__page.is-active:not(:last-child) {
  margin-right: -10px;
}

/* 矢印 */
.splide__arrows {
  position: absolute;
  bottom: 2.5rem;
  right: 6rem;
  z-index: 1;
  display: flex;
  gap: 10px;
}

.splide__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: unset;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}
.splide__arrow--prev {
  right: 1em;
  left: auto;
}
.splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrow--prev::after {
  content: '';
  background-image: url(../img/common/icon_left.svg);
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 0.4rem;
}
.splide__arrow--next::after {
  content: '';
  background-image: url(../img/common/icon_right.svg);
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 0.4rem;
}

.splide__arrow svg {
  display: none;
}



/** PARTICIPATE **/
#participate {
  overflow: hidden;
}
#participate .section_ttl {
  color: var(--base-color);
    padding-top: 4rem;
  }
.participate_wrap {
    padding: 1rem 5% 5rem 5%;
}
.participate_wrap li {
    position: relative;
    padding: 0 0 2.5rem 3.5rem;
}
.participate_wrap li:not(:last-child):before {
  content: '';
  width: 1px;
  height: 100%;
  background-color: var(--base-color-light);
  position: absolute;
  left: 1rem;
  top: 0;
}
.participate_wrap h3 {
  font-size: 30px;
  padding-bottom: 1rem;
  color: var(--base-color);
    position: relative;
}
.participate_wrap .num {
  color: var(--accent-color);
  position: absolute;
  left: -3.5rem;
  font-style: italic;
    background-color: var(--bg-color);
}
.participate_wrap .txt {

}

.participate .bg {
  position: relative;
}
.participate .bg:before {
  content: '';
  background-image: url(../img/index/bbblurry_orange.svg);
  background-size: cover;
  width: 600px;
  height: 600px;
  position: absolute;
    left: -25%;
    bottom: -8%;
  z-index: -1;
}
.participate .bg:after {
  content: '';
  background-image: url(../img/index/bbblurry_blue.svg);
  background-size: cover;
  width: 600px;
  height: 600px;
  position: absolute;
  right: -37%;
  top: 2%;
  z-index: -1;
}







/* FAQ */
#faq {}
#faq .section_ttl_wrap .section_ttl {
    color: #fff;
}
#faq .faq_wrap {
    padding: 3rem 5% 3rem 5%;
    margin-bottom: 1rem;
  }
#faq .faq_wrap h3 {
    font-size: 30px;
    color: var(--base-color);
    padding-bottom: 1rem;
    position: relative;
    margin-left: 1.2rem;
    text-align: left;
}
#faq .faq_wrap h3::before {
    content: '';
    background-color: var(--accent-color-dark);
    width: 8px;
    height: 40px;
    position: absolute;
    top: 0;
    left: -1.2rem;
    right: auto;
}
#faq .details .summary {
  position: relative;
  display: block;
  padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  cursor: pointer;
  background-color: var(--bg-color);
  transition: 0.3s;
    border-bottom: 1px solid var(--border-color);
}
#faq .details .summary h4 {
  position: relative;
  font-weight: 500;
  color: var(--base-color);
  margin-left: 1.8rem;
    font-size: 18px;
}
#faq .details .summary h4::before {
  content: 'Q.';
  position: absolute;
  top: 0;
  left: -1.8rem;
  font-size: 24px;
  font-weight: 500;
  color: var(--accent-color);
  font-style: italic;
}

#faq .details .summary::-webkit-details-marker {
  display: none;
}

#faq .details .summary::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  transition:0.3s;
  right: .8rem;
  width: 20px;
  height: 20px;
  background:url('../img/common/icon_add.svg') no-repeat center / contain;
}


#faq .details.is-opened>.summary::after {
  transform:translateY(-50%) rotate(180deg);
  background:url('../img/common/icon_remove.svg') no-repeat center / contain;
}

#faq .details .content {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.5rem 2.5rem 1.5rem;
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: padding .25s, height .25s, opacity .25s;
}
#faq .details .content p {
  margin-left: 1.8rem;
  position: relative;
}
#faq .details .content p::before {
  content: 'A.';
  position: absolute;
  top: 0;
  left: -1.8rem;
  font-size: 24px;
  font-weight: 500;
  font-family: dnp-shuei-4go-std, sans-serif;
  font-style: italic;
}

#faq .details:not(.is-opened)>.content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
#faq .details .content + .details {
  margin-top:10px;
}



#sponsor .section_ttl_wrap .section_ttl,
#sponsor .section_ttl_wrap h3 {
  color: #fff;
}
#sponsor figure {
  max-width: 400px;
  margin: auto;
}





/*===================================================================
//  フッター
//=================================================================*/
footer {
  width: 100%;
  background-color: var(--base-color);
  position: relative;
  text-align: center;
}
footer .copy {
  font-size: 14px;
  padding: 0.8rem 0;
  font-size: 0.8em;
  color: #C9C9C9;
  text-align: center;
}

/** CONTACT **/
.contact {
  text-align: center;
  padding-top: 5.5rem;
}
.contact .contact_wrap {
  width: 100%;
  margin: 0 auto 0;
  padding: 0 0 0;
  max-height: unset;
  min-height: unset;
}
.contact .contact_wrap .contents {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0vh 0 0;
  text-align: left;
  z-index: 1;
  position: relative;
}
.contact .contact_wrap .contents .mv_img {
  position: absolute;
  right: 0;
  left: 50%;
  margin: auto;
  top: 0;
  transform: translateX(-50%);
  width: 105vw;
  height: 105vw;
  max-width: unset;
  z-index: -1;
}
.contact .contact_wrap .contents .catch_copy {
  font-size: min(5vw, 35px);
  text-align: center;
  padding: 39vh 2.5% 0 2.5%;
}
.contact .contact_wrap .contents .small {
  font-size: min(3.8vw, 19px);
}
.contact .contact_wrap .contents .purple_grad {
  font-size: min(4vw, 20px);
}
.contact .contact_wrap .contents .purple_grad.sqare_txt {
  padding: 0.3rem 0rem 0.4rem;
}
.contact .contact_wrap .contents .sub_catch_copy {
  font-size: 14px;
  padding: 1rem 5% 1.5rem 5%;
  font-weight: 500;
}
.contact .contact_wrap .contents .btn_wrap {
  margin-bottom: 1rem;
  text-align: center;
}
.contact .contact_wrap .contents .btn_wrap .btn {
  width: 80%;
  padding: 1.2rem;
}
.contact .contact_wrap .contents .btn_wrap .btn .txt {
  font-size: min(5vw, 19px);
  font-weight: 700;
}
.contact .contact_wrap .contents .mv_companyname {
  display: block;
  color: #888;
  font-size: 13px;
}

/** FORM **/
.form {
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 15%);
  position: relative;
  margin-top: -5rem;
  padding-top: 5rem;
}
.form .section_ttl_wrap {
  padding-bottom: 4rem;
}
.form .tel_wrap,
.form .form_wrap {
  z-index: 1;
  position: relative;
  margin: 0 auto;
}
.form .tel_wrap:after,
.form .form_wrap:after {
  content: "";
  background-color: #EEF2F6;
  border-radius: 20px;
  width: calc(100% - 64px);
  height: calc(100% - 12.5rem);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 11rem;
  margin: auto;
  z-index: -1;
}
.form .tel_wrap .section_ttl_wrap a.mincho,
.form .form_wrap .section_ttl_wrap a.mincho {
  font-size: 60px;
  color: #354655;
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 1rem;
}
.form .tel_wrap .section_ttl_wrap a img,
.form .form_wrap .section_ttl_wrap a img {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  margin: 0.5rem;
}
.form .tel_wrap .section_ttl_wrap .txt,
.form .form_wrap .section_ttl_wrap .txt {
  display: block;
  font-weight: 200;
}
.form .tel_wrap {
  margin-bottom: 5.5rem;
}
.form .tel_wrap .tel_wrap_inner {
  padding-top: 10em;
  margin-top: -10em;
}
.form .form_wrap .form_wrap_inner {
  padding-top: 10em;
  margin-top: -10em;
}
.form .form_wrap form {
  max-width: 800px;
  margin: 0 auto;
}
.form .form_wrap form table th.required::after {
  content: "必須";
  color: #fff;
  font-size: 12px;
  line-height: 1;
  position: absolute;
  top: 25px;
  right: 5px;
  border-radius: 15px;
  padding: 6px 10px;
  background: #6cb999;
}
.form .form_wrap form table th.optional::after {
  content: "任意";
  color: #fff;
  font-size: 12px;
  line-height: 1;
  position: absolute;
  top: 25px;
  right: 5px;
  border-radius: 15px;
  padding: 6px 10px;
  background: #ddd;
}
.form .form_wrap form table td input[type=text] {
  width: 100%;
  padding: 0.9rem;
  border-radius: 5px;
  margin-right: 0.5rem;
}
.form .form_wrap form table td textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 5px;
}
.form .form_wrap form table td label a {
  color: #5788C8;
  text-decoration: underline;
}
.form .form_wrap form table td input[type=checkbox] {
  display: none;
}
.form .form_wrap form table td input[type=checkbox] + label {
  position: relative;
  font-size: 14px;
}
.form .form_wrap form table td input[type=checkbox] + label::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 4px;
}
.form .form_wrap form table td input[type=checkbox]:checked + label::after {
  content: "";
  border-right: 3px solid #B1DAC9;
  border-bottom: 3px solid #B1DAC9;
  display: block;
  height: 14px;
  left: 7px;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 9px;
}
.form .form_wrap form table td .note {
  font-size: 14px;
  padding: 0.5rem 0 0;
  color: #EEF2F6;
}
.form .form_wrap form .btn_wrap {
  text-align: center;
  padding: 2rem 0 0;
}
.form .form_wrap form .btn_wrap .submit_btn {
  font-size: 20px;
  padding: 1.2rem 1rem 1.3rem;
  background-color: #B1DAC9;
  position: relative;
  transition: all 0.3s;
  color: #231815;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 25%, rgb(177, 218, 201) 55%, rgb(121, 207, 171) 78%, rgb(77, 199, 177) 100%);
  background-size: 200% 100%;
}
.form .form_wrap form .btn_wrap .submit_btn:before {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  border: 3px solid #231815;
  transition: 0.3s;
  content: "";
}
.form .form_wrap form .btn_wrap .submit_btn:hover {
  opacity: 1 !important;
  background-position: 100% 0;
}
.form .form_wrap form .btn_wrap .submit_btn:hover:before {
  top: 0px;
  left: 0px;
}
.form .form_wrap form .btn_wrap .submit_btn .txt {
  font-size: 23px;
  font-weight: 700;
}

/*===================================================================
//  メディアクエリ
//=================================================================*/
@media screen and (max-width: 955px) {
  .pc-non {
    display: none !important;
  }
  
  .about_last {
    gap: 2%;
    flex-wrap: wrap;
  }
  .about_last_wrap_top .section_ttl_wrap {
    flex-basis: 100%;
    padding-bottom: 5rem;
  }
  .about_last .section_ttl_wrap {
    width: 100%;
  }
  .about_last .section_ttl {
    padding-bottom: 0;
    writing-mode: horizontal-tb;
    text-align: left;
    display: block;
  }
  .about_last_wrap_top .txt {
    flex-basis: 100%;
    writing-mode: horizontal-tb;
    padding-right: 0; 
  }
  .about_last_wrap_top {
    padding: 0;
  }
  .about_last_wrap_top figure {
    flex-basis: 100%;
  }
  .about_last_wrap_top figure.img_fst {
      margin-right: 10%;
  }
  .about_last_wrap_top figure.img_sec {
      margin-left: 10%;
  }
}
/*===================================================================
//  タブレットサイズ
//=================================================================*/
/* タブレットサイズ *//*# sourceMappingURL=common.css.map */