@charset "UTF-8";

/* 'pc': 120em, // 1920px
'pcs' : 80em, // 1280px
'tab': 60em, // 960px
'sp' : 40em, // 640px
'xs': 30em // 480px */

/* カスタムプロパティ
------------------------------------------------- */
:root {
  --main-width: 1100px;
  --color-primary: #7A8BA5;
  --color-primary-dark: #546784;
  --color-primary-pale: #AEB6C4;
  --color-bkg01: #FDF9F2;
  --color-bkg02: #F8F4ED;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-txt: #333333;
  --border-primary: #CAD0DB;
  --font-weight-medium: 500;
  --font-weight-semi: 600;
  --font-weight-bold: 700;
  --font-half: "noto-sans", sans-serif;/* 600/normal */
  --font-gothic: "noto-sans-cjk-jp", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --transition-basic: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --transition-fast: all 0.15s ease;
  --header-hight-sp: 60px;
  --header-hight-pc: 100px;
  /* --bg-gradation: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
  --font12px: calc(12rem / 16);
  --font14px: calc(14rem / 16);
  --font16px: calc(16rem / 16);
  --font17px: calc(17rem / 16);
  --font18px: calc(18rem / 16);
  --font20px: calc(20rem / 16);
  --font22px: calc(22rem / 16);
  --font24px: calc(24rem / 16);
  --font26px: calc(26rem / 16);
  --font28px: calc(28rem / 16);
  --font30px: calc(30rem / 16);
  --font60px: calc(60rem / 16);
}


/* ----------------------------------------------------------------------

// 見出し、ボタン、表など繰り返し使うパーツ（モジュール）のスタイルを定義

------------------------------------------------------------------------- */

/* text
------------------------------------------------- */


/* text link
------------------------------------------------- */
svg {
  fill: currentColor;
}
a {
	color: var(--color-secondary);
  text-decoration: none;
	transition: var(--transition-basic);
}
/* hover for PC */
@media screen and (min-width: 961px) {
}
.external a::after {
  content: "\f08e";
  font-family: var(--font-awesome);
  font-weight: var(--font-awesome-solid);
  margin-left: 5px;
}
.datadl a::after {
  content: "\f56d";
  font-family: var(--font-awesome);
  font-weight: var(--font-awesome-solid);
  margin-left: 5px;
}

a[href*="tel:"] {
  cursor: default;
  pointer-events: none;
	color: var(--color-secondary);
}
@media screen and (max-width: 960px) {
  a[href*="tel:"] {
    cursor: pointer;
    pointer-events: auto;
    color: var(--color-secondary);
    text-decoration: underline;
  }
}
.basic_link01 a {
  display: inline-block;
  border: var(--color-white) 2px solid;
  color: var(--color-white);
  padding: 5px 30px;
  border-radius: 20px;
}
/* hover for PC */
@media screen and (min-width: 961px) {
  .basic_link01 a:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
  }
}




/* title
------------------------------------------------- */
.basic_ttl01 {
  position: relative;
  margin-bottom: 30px;
  font-size: calc(36rem / 16);
  padding-top: 45px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 1px;
}
.basic_ttl01::before {
  position: absolute;
  left: 0;
  top: 0;
  content: attr(data-sub);
  color: var(--color-white);
  background-color: var(--color-primary);
  font-size: var(--font16px);
  font-family: var(--font-half);
  font-weight: var(--font-weight-semi);
  padding: 2px 10px;
  border-radius: 5px;
}
.basic_ttl02 {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-size: var(--font30px);
  font-weight: var(--font-weight-medium);
  letter-spacing: 1px;
}
@media screen and (max-width: 960px) {
  .basic_ttl01 {
    margin-bottom: 25px;
    font-size: var(--font30px);
    padding-top: 35px;
  }
  .basic_ttl01::before {
    font-size: var(--font14px);
  }
  .basic_ttl02 {
    font-size: var(--font24px);
  }
  
}


/* table
------------------------------------------------- */
table {
	width: 100%;
}
table tr th, table tr td {
  border-bottom: var(--border-primary) 1px solid;
	vertical-align: top;
	text-align: left;
  font-size: var(--font20px);
  line-height: 1.8;
}
table tr th {
  width: 220px;
  font-weight: var(--font-weight-bold);
	padding: 23px 0 23px 2%;
}
table tr td {
  font-weight: var(--font-weight-medium);
	padding: 23px 2% 23px 0;
}
@media screen and (max-width: 960px) {
  table tr th, table tr td {
    display: block;
    font-size: var(--font18px);
  }
  table tr th {
    width: auto;
    padding: 20px 0 5px;
    border: none;
  }
  table tr td {
    padding: 0 0 20px;
  }
}


/* body
------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-hight-pc);
}
@media screen and (max-width: 960px) {
  html {
    scroll-padding-top: var(--header-hight-sp);
  }
}
body {
	position: relative;
	overflow-x: hidden;
	background: var(--color-white);
	color: var(--color-txt);
	font-family: var(--font-gothic);
	font-size: var(--font16px);
	font-weight: 500;/* noto-sans-cjk-jp ミディアム用 */
	font-style: normal;
	line-height: 1.6;
	overflow-wrap: break-word;
	word-wrap: break-word;
}


/* one column layout
------------------------------------------------- */
.inner {
  max-width: calc(var(--main-width) + 15px + 15px);
  padding: 0 15px;
	margin: 0 auto;
}
.sub_inner {
  max-width: calc(var(--sub-width) + 15px + 15px);
  padding: 0 15px;
	margin: 0 auto;
}
body:not(.home) main {
  padding-top: var(--header-hight-pc);
} 
@media screen and (max-width: 960px) {
  .inner,.sub_inner {
    margin: 0;
    padding: 0 15px;
  }
  body:not(.home) main {
    padding-top: var(--header-hight-sp);
  } 
}


/* header
------------------------------------------------- */
.site_header {
  position: absolute;
  width: 100%;
  z-index: 2;
	transition: var(--transition-basic);
  padding: 0 2%;
  height: var(--header-hight-pc);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site_header .head_logo {
  width: 200px;
  position: relative;
  z-index: 1;
}
body.home .site_header .head_logo img.logo_colored {
  display: none;
}
body:not(.home) .site_header .head_logo img.lobo_white {
  display: none;
}
.site_header.fixed_head {
  position: fixed;
  background-color: var(--color-white);
  z-index: 2;
}
.site_header.fixed_head .head_logo img.lobo_white,
.site_header.nav_open .head_logo img.lobo_white {
  display: none;
}
body.home .site_header.fixed_head .head_logo img.logo_colored,
body.home .site_header.nav_open .head_logo img.logo_colored,
.site_header.fixed_head .head_logo img.logo_colored,
.site_header.nav_open .head_logo img.logo_colored {
  display: inline-block;
}
body:not(.home) .site_header {
  background-color: var(--color-bkg01);
  border-bottom: var(--border-primary) 1px solid;
}


@media screen and (max-width: 960px) {
  .site_header {
    height: var(--header-hight-sp);
    display: block;
    padding: 12px 4% 0;
  }
  .site_header .head_logo {
    width: 180px;
  }
  
}



/* ハンバーガー
------------------------------------------------- */
/* hamburger button */
.nav_toggle {
	display: none;
	z-index: 100;
}
@media screen and (max-width: 960px) {
  .nav_toggle {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 26px;
    height: 29px;
    cursor: pointer;
  }
  .nav_toggle span {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-basic);
  }
  body:not(.home) .nav_toggle span,
  .site_header.fixed_head .nav_toggle span,
  .site_header.nav_open .nav_toggle span {
    background: var(--color-txt);
  }
  .nav_toggle span:nth-of-type(1) {
    margin-top: -8px;
  }
  .nav_toggle span:nth-of-type(3) {
    margin-top: 8px;
  }
  
  /* hamburger open */
  .site_header.nav_open .nav_toggle {
    position: fixed;
  }
  .site_header.nav_open .nav_toggle span:nth-of-type(1) {
    top: 14px;
    transform: rotate(135deg);
    margin-top: 0;
  }
  .site_header.nav_open .nav_toggle span:nth-of-type(2) {
    left: 50%;
    width: 0;
  }
  .site_header.nav_open .nav_toggle span:nth-of-type(3) {
    top: 14px;
    transform: rotate(-135deg);
    margin-top: 0;
  }
}


/* グローバルナビ
------------------------------------------------- */
/* global_nav for PC */
@media screen and (min-width: 961px) {
  .global_nav ul {
    display: flex;
    align-items: center;
  }
  .global_nav ul li:not(:first-child) {
    margin-left: min(1.8vw, 50px);
  }
  .global_nav ul li:not(.basic_link01) a {
    position: relative;
    display: block;
    color: var(--color-white);
    white-space: nowrap;
    font-size: min(1.45vw,var(--font16px));
  }
  .global_nav ul  li:not(.basic_link01) a::before {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: var(--transition-basic);
  }
  .global_nav ul li:not(.basic_link01) a:hover::before {
    transform: scale(1, 1);
  }
  body:not(.home) .global_nav ul li:not(.basic_link01) a,
  .site_header.fixed_head .global_nav ul li:not(.basic_link01) a {
    color: var(--color-txt);
  }
  body:not(.home) .global_nav ul  li:not(.basic_link01) a::before,
  .site_header.fixed_head .global_nav ul li:not(.basic_link01) a::before {
    background: var(--color-txt);
  }
  .global_nav ul .basic_link01 a {
    position: relative;
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    z-index: 1;
    overflow: hidden;
  }
  .global_nav ul .basic_link01 a::after {
    background: var(--color-white);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: var(--transition-basic);
    z-index: -1;
  }
  .global_nav ul .basic_link01 a:hover {
    color: var(--color-primary);
  }
  .global_nav ul .basic_link01 a:hover::after {
    transform: scale(1, 1);
  }
}

/* global_nav for SP */
@media screen and (max-width: 960px) {
  .site_header.nav_open .global_nav {
    top: 0;
    transform: translateY(0);
  }
  .global_nav {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    transition: var(--transition-basic);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .global_nav ul {
    width: 75%;
    text-align: center;
  }
  .global_nav ul li:not(:nth-last-child(2)):not(:last-child) {
    border-bottom: var(--border-primary) 1px solid;
  }
  .global_nav ul a {
    display: block;
    padding: 15px 0;
  }
  .global_nav ul li.basic_link01 a {
    border-color: var(--color-primary);
    color: var(--color-primary);
    padding: 10px 0px;
    border-radius: 25px;
    margin-top: 10px;
  }

  /* background overlay */
  .nav_bg {
    position: relative;
  }
  .nav_bg::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
}


/* footer
------------------------------------------------- */
footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 40px 0;
}
footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .head_logo {
  width: 200px;
  margin-bottom: 30px;
  order: 1;
}
footer .foot_nav {
  margin-bottom: 30px;
  order: 2;
}
footer .foot_nav ul {
  display: flex;
}
footer .foot_nav ul li:not(:first-child) {
  margin-left: min(1.8vw, 50px);
}
footer .foot_nav ul li:not(.basic_link01) a {
  position: relative;
  display: block;
  padding: 5px 0;
  color: var(--color-white);
  font-size: min(1.45vw,var(--font16px));
}
.copyright {
  flex-basis: calc(100% - 160px);
	font-size: var(--font12px);
  order: 3;
}
.link_law {
  flex-basis: 160px;
  font-size: var(--font12px);
  text-align: center;
  order: 4;
}
.link_law a {
  position: relative;
  display: inline-block;
}
.link_law a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-white);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: var(--transition-basic);
}

/* hover for PC */
@media screen and (min-width: 961px) {
  footer .foot_nav ul li:not(.basic_link01) a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: var(--transition-basic);
  }
  footer .foot_nav ul li:not(.basic_link01) a:hover::before {
    transform: scale(1, 1);
  }
  .link_law a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--color-white);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: var(--transition-basic);
  }
  .link_law a:hover::before {
    transform: scale(1, 1);
  }
  
}

@media screen and (max-width: 960px) {
  footer .inner {
    display: block;
  }
  footer .head_logo {
    margin: 0 auto 20px;
  }
  footer .foot_nav {
    margin-bottom: 10px;
  }
  footer .foot_nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .foot_nav ul li,
  footer .foot_nav ul li:not(:first-child) {
    margin:0 4% 15px;
  }
  footer .foot_nav ul li:not(.basic_link01) a {
    font-size: var(--font16px);
  }  
  .copyright {
    text-align: center;
  }
  .link_law {
    margin-bottom: 10px;
  }
  
}
@media screen and (max-width: 640px) {
  .bnr_sponcor {
    margin-bottom: 60px;
  }
  .bnr_sponcor ul li,.bnr_sponcor ul li:not(:nth-child(4n)) {
    flex-basis: 48.5%;
    margin: 0 0 10px;
  }
  .bnr_sponcor ul li:nth-child(odd) {
    margin-right: 3%;
  }
}

/* page_top
------------------------------------------------- */
#page_top {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 5;
}
#page_top a {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0;
  border-radius: 28px;
}
#page_top a::after {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  width: 15px;
  height: 15px;
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
}
/* hover for PC */
@media screen and (min-width: 961px) {
  #page_top a:hover {
    opacity: .8;
  }
}


/* breadcrumb 
------------------------------------------------- */
.breadcrumb {
  margin-bottom: 20px;
}
.breadcrumb li {
  display: inline-block;
  font-size: var(--font12px);
}
.breadcrumb li:not(:first-child)::before {
  content: "\f054";
  font-family: var(--font-awesome);
  font-weight: var(--font-awesome-solid);
  margin: 0 8px;
} 



/* メインビジュアル
------------------------------------------------- */
.mainvisual {
  height: 100dvh;
  background: url(../img/mainvisual.jpg) no-repeat center top/cover;
}
.mainvisual .inner {
  position: relative;
  height: 100%;
}
.mainvisual .txt {
  position: absolute;
  bottom: 9vh;
  left: 15px;
  color: var(--color-white);
  margin: 0 .5vw;
}
.mainvisual .txt .lead {
  font-size: min(4.7vw ,calc(72rem / 16));
  font-weight: var(--font-weight-bold);
  line-height: 1.45;
  margin-bottom: 20px;
}
.mainvisual .txt h1 {
  font-size: min(1.8vw ,calc(32rem / 16));
  line-height: 1.45;
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 960px) {
  .mainvisual .txt .lead {
    font-size: 9vw;
  }
  .mainvisual .txt h1 {
    font-size: 5vw;
  }
}


/* page_content
------------------------------------------------- */
#about_us {
  background-color: var(--color-bkg01);
  padding-top: 60px;
  text-align: center;
}
#about_us h2 {
  color: var(--color-primary);
  font-size: calc(36rem / 16);
  margin-bottom: 30px;
  font-weight: var(--font-weight-medium);
}
#about_us p {
  font-size: var(--font20px);
  line-height: 2;
  padding-bottom: 10px;
}
#about_activity {
  background-color: var(--color-bkg01);
  padding: 50px 0 70px;
}
#indivisual {
  background-color: var(--color-bkg02);
  padding: 50px 0 70px;
}
.merit_box.clm1 {
  margin-bottom: 70px;
}
.merit_box.clm1 dl dd {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.merit_box.clm1 dl dd .ul_box {
  display: flex;
}
.merit_box.clm1 dl dd .ul_box ul:last-child {
  margin-left: 20px;
}
.merit_box.clm2 {
  position: relative;
  padding-top: 90px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.merit_box.clm2::before {
  position: absolute;
  top: 50px;
  left: calc((100% - 52%) / 2);
  content: "";
  width: 52%;
  height: 40px;
  border-top: var(--color-primary) 2px solid;
  border-left: var(--color-primary) 2px solid;
  border-right: var(--color-primary) 2px solid;
}
.merit_box.clm2 dl {
  flex-basis: 48%;
}
.merit_box dl {
  border-radius: 10px;
  background-color: var(--color-white);
}
.merit_box dl dt {
  border-radius: 10px 10px 0 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font30px);
  text-align: center;
  padding: 5px 0;
}
.merit_box dl dd {
  color: var(--color-txt);
  padding: 35px 40px 40px;
}
.merit_box dl dd div.ttl {
  font-size: var(--font24px);
  color: var(--color-primary);
  margin-bottom: 20px;
}
.merit_box dl dd ul li {
  font-size: var(--font18px);
  list-style-type: disc;
  margin-left: var(--font18px);
}
.figure_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.figure_box figure {
  flex-basis: 48%;
}
.merit_dtl {
  background-color: var(--color-white);
  padding: 40px 40px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
}
.merit_dtl:not(:last-child) {
  margin-bottom: 30px;
}
.merit_dtl dt {
  flex-basis: 360px;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 2px;
  font-size: var(--font18px);
  border-radius: 3px;
  margin-bottom: 30px;
}
.merit_dtl dd {
  flex-basis: calc(100% - 360px - 30px);
  margin-bottom: 30px;
}
#corporate {
  background-color: var(--color-bkg01);
  padding: 50px 0 70px;
}
#participating {
  background-color: var(--color-bkg02);
  padding: 50px 0 70px;
}
.participating_list {
  display: flex;
  flex-wrap: wrap;
}
.participating_list li {
  flex-basis: 344px;
  margin-right: 22px;
  line-height: 3.5;
}
#overview {
  background-color: var(--color-bkg01);
  padding: 50px 0 70px;
}
.officer_dtl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.officer_dtl .pic {
  flex-basis: 300px;
}
.officer_dtl .txt {
  flex-basis: calc(100% - 300px - 3.6%);
}
.officer_dtl .txt .post01 {
  font-size: var(--font20px);
  margin-bottom: 11px;
}
.officer_dtl .txt .name {
  font-size: var(--font24px);
  margin-bottom: 55px;
}
.officer_dtl .txt .post02 {
  font-size: var(--font18px);
  margin-bottom: 20px;
}
.officer_dtl .txt .dtl {
  font-size: var(--font16px);
}
.officer_box {
  display: flex;
  flex-wrap: wrap;
}
.officer_box .officer_dtl {
  flex-basis: 48%;
  margin-right: 2%;
}
.officer_box .officer_dtl {
  margin-bottom: 50px;
}
.officer_box .officer_dtl .pic {
  flex-basis: 200px;
}
.officer_box .officer_dtl .txt {
  flex-basis: calc(100% - 200px - 5%);
}
.officer_box .officer_dtl .txt .post01 {
  font-size: var(--font18px);
  margin-bottom: 7px;
}
.officer_box .officer_dtl .txt .name {
  font-size: var(--font20px);
  margin-bottom: 25px;
}
.officer_box .officer_dtl .txt .post02 {
  font-size: var(--font16px);
  margin-bottom: 0;
  line-height: 1.87;
}
table.company_outline ol {
  margin-top: 20px;
}
table.company_outline ol li {
  list-style-type: decimal;
  margin-left: var(--font20px);
}

#about_dues {
  background-color: var(--color-bkg02);
  padding: 50px 0 70px;
}
table.annual_dues {
  border-top: var(--border-primary) 1px solid;
  border-left: var(--border-primary) 1px solid;
  border-radius: 10px;
  border-collapse: separate;
}
table.annual_dues th,table.annual_dues td {
  border-right: var(--border-primary) 1px solid;
  border-bottom: var(--border-primary) 1px solid;
  text-align: center;
  padding: 23px 2%;
  vertical-align: middle;
}
table.annual_dues th {
  background-color: var(--color-primary-pale);
  color: var(--color-white);
}
table.annual_dues td {
  background-color: var(--color-white);
}
table.annual_dues td.notes {
  font-size: var(--font16px);
  text-align: left;
}
table.annual_dues th:first-child {
  border-radius: 10px 0 0 0;
}
table.annual_dues th:last-child {
  border-radius: 0 10px 0 0;
}
table.annual_dues tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}
table.annual_dues tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}
#about_wc_page {
  padding: 50px 0;
}
.bnr_whiteclub {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #223B64 url(../img/bkg_link_whiteclub.png) no-repeat top 39px right 30%;
  padding: 40px 5.4%;
  color: var(--color-white);
  border-radius: 5px;
}
.bnr_whiteclub .txt dt {
  font-size: calc(48rem / 16);
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
}
.bnr_whiteclub .txt dt span {
  font-size: var(--font18px);
  margin-left: 10px;
}
.bnr_whiteclub .txt dd {
  font-size: var(--font20px);
  line-height: 1.7;
}
.bnr_whiteclub .to_page {
  flex-basis: 320px;
}
.bnr_whiteclub .to_page a {
  position: relative;
  display: block;
  text-align: center;
  border: white 2px solid;
  max-width: 320px;
  padding: 10px 0;
  border-radius: 5px;
}
.bnr_whiteclub .to_page a::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  right: 15px;
  background: url(../img/ico_arrow.svg) no-repeat;
}
#law {
  background-color: var(--color-bkg01);
  padding: 50px 0 70px;
}
#law table tr th {
  white-space: nowrap;
  width: 400px;
}


/* hover for PC */
@media screen and (min-width: 961px) {
  .bnr_whiteclub .to_page a:hover {
    background-color: var(--color-primary-dark);
  }
}

@media screen and (max-width: 960px) {
  #about_us {
    padding-top: 40px;
  }
  #about_us h2 {
    font-size: var(--font24px);
    margin-bottom: 15px;
  }
  #about_us p {
    font-size: var(--font18px);
    line-height: 1.8;
    text-align: left;
  }
  #about_activity,
  #indivisual,
  #corporate,
  #participating,
  #overview,
  #about_dues {
    padding: 30px 0 40px;
  }
  .merit_box.clm2 {
    display: block;
    padding-top: 30px;
    margin-bottom: 20px;
  }
  .merit_box.clm2 dl:first-child {
    margin-bottom: 20px;
  }
  .merit_box.clm2::before {
    content: none;
  }
  .merit_box dl dt {
    font-size: var(--font26px);
  }
  .merit_box dl dd {
    padding: 25px 5% 30px;
  }
  .merit_box dl dd div.ttl {
    font-size: var(--font20px);
    margin-bottom: 12px;
  }
  .merit_box dl dd ul li {
    font-size: var(--font16px);
    margin-left: var(--font16px);
  }
  .merit_box.clm1 dl dd {
    display: block;
  }
  .merit_box.clm1 dl dd .ul_box {
    display: block;
  }
  .merit_box.clm1 dl dd .ul_box ul:last-child {
    margin-left: 0;
  }
  .merit_dtl {
    display: block;
    padding: 30px 5%;
  }
  .merit_dtl dt {
    margin-bottom: 9px;
    font-size: var(--font16px);
  }
  .merit_dtl dd:last-child {
    margin-bottom: 0;
  }
  .participating_list li {
    line-height: 2.5;
  }
  .officer_box {
    display: block;
  }
  table.company_outline ol li {
    margin-left: var(--font18px);
  }
  table.annual_dues {
    border: none;
  }
  table.annual_dues tr {
    background-color: var(--color-white);
    margin-bottom: 10px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
  }
  table.annual_dues tr.head_tr {
    display: none;
  }
  table.annual_dues th, table.annual_dues td {
    border: none;
    padding: 13px 3%;
  }
  table.annual_dues th:first-child,
  table.annual_dues th:last-child,
  table.annual_dues tr:last-child td:first-child,
  table.annual_dues tr:last-child td:last-child {
    border-radius: 0;
  }
  table.annual_dues td.notes {
    font-size: var(--font14px);
    text-align: center;
  }
  table.annual_dues td::before {
    content: attr(data-label);
    display: block;
    background-color: var(--border-primary);
    color: white;
    padding: 2px 0;
    margin-bottom: 5px;
  }
  table.annual_dues td.notes::before {
    content: none;
  }

  .bnr_whiteclub {
    display: block;
    background-position: bottom 58px right 50%;
    padding: 25px 5.4%  30px;
    line-height: 1.35;
  }
  .bnr_whiteclub .txt {
    margin-bottom: 34px;
  }
  .bnr_whiteclub .txt dt {
    font-size: calc(44rem / 16);
    margin-bottom: 14px;
  }
  .bnr_whiteclub .txt dt span {
    display: block;
    margin-left: 0;
  }
  .bnr_whiteclub .txt dd {
    font-size: var(--font18px);
  }
  .bnr_whiteclub .to_page {
    flex-basis: 320px;
  }
  .bnr_whiteclub .to_page a {
    display: block;
    text-align: center;
    border: white 2px solid;
    max-width: 320px;
    padding: 10px 0;
    border-radius: 5px;
  }
  #law {
    padding: 30px 0 40px;
  }
  #law table tr th {
    width: auto;
  }
  
}

@media screen and (max-width: 640px) {
  .officer_dtl,
  .officer_box .officer_dtl {
    align-items: initial;
  }
  .officer_dtl .pic,
  .officer_box .officer_dtl .pic {
    flex-basis: 150px;
  }
  .officer_dtl .txt,
  .officer_box .officer_dtl .txt {
    flex-basis: calc(100% - 150px - 3.6%);
  }
  .officer_dtl .txt .post01,
  .officer_box .officer_dtl .txt .post01 {
    font-size: var(--font18px);
    margin-bottom: 3px;
  }
  .officer_dtl .txt .name,
  .officer_box .officer_dtl .txt .name {
    font-size: var(--font22px);
    margin-bottom: 15px;
  }
  .officer_dtl .txt .post02,
  .officer_box .officer_dtl .txt .post02 {
    font-size: var(--font16px);
    margin-bottom: 10px;
  }
  .officer_box .officer_dtl .txt .post02 {
    margin-bottom: 0;
  }

}

@media screen and (max-width: 480px) {
  .officer_dtl, .officer_box .officer_dtl {
    display: block;
  }
  .officer_dtl .pic, .officer_box .officer_dtl .pic {
    margin-bottom: 20px;
  }
}




/* 下層ページ
------------------------------------------------- */
.maintitle {
  color: var(--color-primary-dark);
}
.maintitle h1 {
  font-size: var(--font60px);
  display: flex;
  align-items: center;
  height: 190px;
}

.bread {
  background-color: var(--color-primary-pale);
}
.bread ul {
  display: flex;
}
.bread ul li {
  font-size: var(--font12px);
  color: var(--color-white);
  padding: 5px 0px;
}
.bread ul li a {
  color: var(--color-white);
}
.bread ul li a::after {
  content: ">";
  margin: 0 6px;
}

.basic_dl {
  display: flex;
  align-items: flex-start;
}
.basic_dl dt {
  flex-basis: 74px;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 2px;
  font-size: var(--font18px);
  border-radius: 3px;
  margin-right: 10px;
}
.basic_dl dd {
  flex-basis: calc(100% - 74px - 10px);
}

.basic_ul li {
  list-style: disc;
  margin-left: 25px;
}

.whitebox {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 30px 2.7%;
  margin-bottom: 30px;
}
.whitebox dt {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 2px 10px;
  font-size: var(--font18px);
  border-radius: 3px;
  margin-bottom: 15px;
}

#about_whiteclub,
#activity_whiteclub,
#qualifications_whiteclub,
#recruiting_whiteclub  {
  background-color: var(--color-bkg01);
  padding: 50px 0 70px;
}
#objective_whiteclub,
#schedule_whiteclub,
#venue_whiteclub {
  background-color: var(--color-bkg02);
  padding: 50px 0 70px;
}

.clm2 .inner {
  display: flex;
  justify-content: space-between
}
.clm2 .inner .txt {
  flex-basis:48.18% ;
}
.clm2 .inner figure {
  flex-basis:48.18% ;
}
body.whiteclub p {
  line-height: 2.25;
}
body.whiteclub p.mb {
  margin-bottom: var(--font16px);
}

.objective_list {
  display: flex;
  margin-bottom: 20px;
}
.objective_list li {
  flex-basis: 22.7%;
  color: var(--color-white);
  background-color: var(--color-primary);
  font-size: min(2.4vw, var(--font30px));
  text-align: center;
  border-radius: 10px;
  padding: 6px 0;
}
.objective_list li:not(:first-child) {
  margin-left: 3%;
}

#objective_whiteclub .merit_dtl dt {
  flex-basis: 130px;
}
#objective_whiteclub .merit_dtl dd {
  flex-basis: calc(100% - 130px - 30px);
  margin-bottom: 30px;
}

#activity_whiteclub p.mb {
  margin-bottom: 50px;
}
#activity_whiteclub .basic_dl {
  margin-bottom: 30px;
}
#activity_whiteclub .basic_dl dd {
  flex-basis: calc(50% - 74px - 10px);
}

#schedule_whiteclub .whitebox .basic_ul {
  display: flex;
  flex-wrap: wrap;
}
#schedule_whiteclub .whitebox .basic_ul li:not(.note) {
  flex-basis: 47%;
  font-size: var(--font18px);
  font-weight: var(--font-weight-bold);
  line-height: 2;
}
#schedule_whiteclub .whitebox .basic_ul li.note {
  list-style: none;
  margin-left: 5px;
  margin-top: 4px;
}

#venue_whiteclub div + .basic_ttl02 {
  margin-top: 40px;
}
.iframe_content {
	position: relative;
	width: 100%;
	padding: 27% 0 0 0;
  margin-bottom: 10px;
}
.iframe_content iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#recruiting_whiteclub .whitebox .basic_ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
#recruiting_whiteclub .whitebox .basic_ul li {
  flex-basis: 47%;
  line-height: 2;
}
#recruiting_whiteclub .whitebox .note {
  color: red;
  font-size: var(--font14px);
  margin-bottom: 40px;
}
.btn_apply a {
  display: block;
  margin: 0 auto 10px;
  border: var(--color-primary-dark) 2px solid;
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  font-size: var(--font30px);
  max-width: 640px;
  padding: 14px 0;
  text-align: center;
  border-radius: 10px;
}

/* hover for PC */
@media screen and (min-width: 961px) {
  .btn_apply a:hover {
    color: var(--color-primary-dark);
    background-color: var(--color-white);
    }
  
}


@media screen and (max-width: 960px) {
  .basic_ul li {
    margin-left: 20px;
  }
  .basic_dl dt {
    font-size: var(--font16px);
  }
  .whitebox {
    border-radius: 5px;
    padding: 30px 20px;
  }
  .whitebox dt {
    font-size: var(--font16px);
    margin-bottom: 10px;
  }
  .maintitle h1 {
    font-size: calc(36rem / 16);
    height: 120px;
  }
  #about_whiteclub,
  #activity_whiteclub {
    padding: 30px 0 40px;
  }
  #objective_whiteclub,
  #schedule_whiteclub {
    padding: 30px 0 40px;
  }
  .clm2 .inner {
    display: block;
  }
  .clm2 .inner .txt {
    margin-bottom: 20px;
  }
  body.whiteclub p {
    line-height: 1.9;
  }

  .objective_list {
    flex-wrap: wrap;
  }
  .objective_list li {
    flex-basis: 49%;
    font-size: var(--font20px);
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .objective_list li:not(:first-child) {
    margin-left: 0%;
  }
  .objective_list li:nth-child(even) {
    margin-left: 2%;
  }
  
  #activity_whiteclub p.mb {
    margin-bottom: 30px;
  }
  #activity_whiteclub .basic_dl {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  #activity_whiteclub .basic_dl dt {
    margin-bottom: 20px;
  }
  #activity_whiteclub .basic_dl dd {
    flex-basis: calc(100% - 74px - 10px);
    margin-bottom: 20px;
  }

  #schedule_whiteclub .whitebox .basic_ul {
    display: block;
  }
  #schedule_whiteclub .whitebox .basic_ul li:not(.note) {
    font-size: var(--font16px);
  }
  

  #venue_whiteclub div + .basic_ttl02 {
    margin-top: 30px;
  }
  .iframe_content {
    padding: 50% 0 0 0;
  }

  #recruiting_whiteclub .whitebox .basic_ul {
    display: block;
  }
  .btn_apply a {
    font-size: var(--font24px);
    padding: 10px 0;
    border-radius: 5px;
  }
}