@charset "utf-8";
/* CSS Document */

:root {
  --white: #fff;
  --black: #2A2D32;
  --orange: #FFD193;
  --blue: #A7DAF2;
  --green: #01995e;
  --yellow-green: #DFEE67;
}

#adapt{
	background: linear-gradient(to top, rgba(0, 69, 101, 0.55) 0%, rgba(0, 69, 101, 0.55) 100%), url("../img/adapt_h_img.jpg")no-repeat center 73%;
	background-size:cover;
}
#adapt.adapt-top{
	background: linear-gradient(to top, rgba(0, 69, 101, 0.55) 0%, rgba(0, 69, 101, 0.55) 100%), url("../img/adapt_h_img.jpg")no-repeat center 70%;
	background-size:100%;
}
@media (max-width : 1080px){
  #adapt.adapt-top{
    background-size:cover;
  }
}
/* in Japan (3-1~3-5) */
#adapt_jp{
	background: linear-gradient(to top, rgba(0, 69, 101, 0.55) 0%, rgba(0, 69, 101, 0.55) 100%), url("../img/adapt_h_jp_img.jpg")no-repeat center 50%;
	background-size:cover;
}

h2.category_title {
  font-size: 3.8rem;
  margin-bottom: 1.0em;
}
h2.category_title::before {
  display: none;
}
.header_img{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header_img .section_box{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
}
h3 {
  font-size: 2.4rem;
  text-transform: uppercase;
}
h3:not(:first-child) {
  margin-top: 40px;
}
.tab_main h3 {
 text-transform: none;
}

h4 {
  font-size: 2.0rem;
}
h4:not(:first-child) {
  margin: 34px 0 14px;
}
h5 {
  color: inherit;
  font-size: inherit;
}
dl dt {
  font-weight: bold;
}
dl dd {
  margin-bottom: 1.2em;
}
figcaption {
  margin-block: 1.4em;
  font-size: 1.4rem;
}
figcaption p {
  margin-bottom: 0.6em;
}
sub {
  font-size: 0.7em;
}
.notes {
	margin-block: 3.0em 0;
	padding: 2.4rem 3.0rem;
	background: #F7F7F7;
}
	.notes p,
	.notes li {
		margin-block: 1.0em;
		font-size: 1.4rem;
	}
  .notes ul {
    margin-block: 0 1.0em;
  }
	.notes sup {
		margin-right: 0.5rem;
}
.excerpt{
	margin: 0 0 30px;
	padding: 20px;
	background-color: rgb(249, 248, 239, 0.8);
}
.border-box {
  border: 1px solid #ccc;
  background: #f9f9f9;
  padding: 2.0em;
}
.border-box p:last-child {
  margin-bottom: 0;
}
blockquote {
  border-radius: 15px;
  margin-inline: 0;
  padding-inline: 50px;
}
blockquote *:last-child {
  margin-bottom: 0;
}

.table-wrapper {
  overflow-x: auto;
  margin-block: 1.0em;
}
table {
  margin-block: 1.0em;
}
  .table-wrapper table {
    max-width: none !important;
    width: 180%;
  }
table caption {
  font-weight: bold;
  margin-block: 1.0em;
  text-align: center;
  caption-side: top;
  font-size: 1.4rem;
}
table caption p {
  margin-bottom: 1.0em;
}
table .cap-bottom {
  font-weight: normal;
  text-align: left;
  caption-side: bottom;
}
table th,
table td {
  padding: 0.5em 1em;
}
table th {
  overflow-wrap: normal;
  word-break: keep-all;
}
table td {
  overflow-wrap : break-word;
  word-break: keep-all;
}
table thead th {
  background-color: #eee;
  color: inherit;
  border: 1px solid #ddd;
  padding: 1em;
}
table tbody th {
  text-align: left;
}
table td ul {
  margin: 0.6em 1.2em;
}
table td ul li:last-child {
  margin-bottom: 0;
}
tbody th {
  white-space :nowrap;
}
tbody td img {
  max-width: 60px;
}

/*タブ*/
.tabBox .tabArea {
  width: 100%;
  height: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.tabBox .tabArea .one_tab {
  width: 50%;
}
.tabBox .tabArea .one_tab a {
  display: block;
  text-decoration: none;
  transition-duration: 0.3s;
  text-align: center;
  color: #000;
}
.tabBox .tabArea .one_tab a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.tabBox .tabArea .one_tab .tab_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  transition-duration: 0.3s;
  font-size: 1.4rem;
}
.tabBox .tabArea #tab-01, .tabBox .tabArea #tab-b-01{
  background-color: var(--orange);
  /* border-radius: 0 10px 0 0; */
}
.tabBox .tabArea #tab-02, .tabBox .tabArea #tab-b-02{
  background-color: var(--blue);
  margin-left: auto;
  /* border-radius: 0 10px 0 0; */
}
.tabBox .tabArea .one_tab a.select .tab_inner {
  height: 60px;
}
.tabBox .tabArea.bottom {
  align-items: flex-start;
    margin-bottom: 20px;
}
.tabBox .tabArea #tab-b-01{
  /* border-radius: 0 0 10px 0; */
}
.tabBox .tabArea #tab-b-02{
  margin-left: auto;
  /* border-radius: 0 0 10px 0; */
}
.contents .tab_main {
  display: none;
  padding: 30px 25px;
  min-height: 280px;
  transition-duration: 0.3s;
  background-color: #fff;
}
.tab_main.is_show {
  display: block;
}
#tab01.is_show {
  border: 8px solid var(--orange);
}
#tab02.is_show {
  border: 8px solid var(--blue);
}
#tab03.is_show {
  border: 8px solid var(--yellow-green);
}

.scroll-box {
  margin: 0 auto;
  max-height: 800px;/* 表示領域の高さを指定 */
  max-width: 800px;
  overflow-y: scroll;  /* 縦スクロールを有効にする */
  padding: 0px;
	border: 1px solid #DADADA;
}
.scroll_down{
  display: block;
  position:relative;
  margin: 0 auto;
  animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a{
  position: absolute;
  left: 50%;
  color: #000;
  font-size: 10px;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.ad-list {
  box-sizing:border-box;
  margin:0 auto 50px;
  max-width:1400px;
  padding:0 15px;
  width:100%;
}

@keyframes move {
  25% { opacity: 1; }
  33% { opacity: 1; transform: translateY(30px); }
  67% { opacity: 1; transform: translateY(40px); }
  100% { opacity: 0; transform: translateY(55px) scale3d(0.5, 0.5, 0.5); }
}


@media (min-width : 768px){
  h3 {
    font-size: 3.0rem;
    text-transform: uppercase;
  }
  h3:not(:first-child) {
    margin-top: 50px;
  }
  .header_img{
  height: 258px;
  }
    .adapt-top.header_img{
      height: 400px;
    }
	.excerpt{
		margin: 0 0 50px;
		padding: 30px 50px 20px;
	}
  figcaption {
    font-size: 1.6rem;
  }
  figcaption p {
    margin-bottom: 1.5em;
  }
  .table-wrapper {
    overflow-x: auto;
  }
  .table-wrapper table {
    max-width: 100% !important;
    width: 100%;
  }

  table caption {
    font-size: 1.6rem;
  }
  table caption p {
    margin-bottom: 1.5em;
  }

	/*タブ*/
	.contents .tab_main {
		padding: 50px 40px;
	}
	.tabBox .tabArea .one_tab .tab_inner {
		font-size: 1.6rem;
	}
}

@media (max-width: 959px) {
  
  .header_img h1 {
    font-size: 3.2rem;
    top: 52%;
  }
  h2.category_title {
    font-size: 2.8rem;
    margin-bottom: 1.0em;
  }
  blockquote {
    margin-inline: 0;
    padding-inline: 30px;
  }
  .scroll-box {
    width: 100%;
    max-height: 500px;
    overflow-y: scroll;
  }
  figure {
    padding: 15px 0 30px; 
  }
  figcaption {
    margin-block: 1.4em 0;
  }
}

#pickup{
  height: 200px;
}

/* ------------------------------------------
   右カラム
 ------------------------------------------ */
.ad-list__column--right-wrap {
  z-index: 90;
}
.ad-list__column--right-wrap nav {
  display: block;
  color: #393939;
  font-size: 14px;
  line-height: 1.6;
}
.ad-list__column--right-wrap nav h3 {
  margin: 0 0 10px;
  padding: 0 0 6px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 2px solid #efefef;
}
.ad-list__column--right-wrap nav h3 + ul {
  margin-top: 0;
}
.ad-list__column--right-wrap nav h3:not(:first-child) {
  margin-top: 50px;
}
.ad-list__column--right-wrap nav ul {
  list-style: none;
  margin: 0 0 18px;
  margin-left: 1.0em;
  padding: 0;
}
.ad-list__column--right-wrap nav ul ul {
  margin: 8px 0 8px 14px;
  padding-left: 10px;
  border-left: 1px solid #ddd;
}
.ad-list__column--right-wrap nav li {
  margin: 0;
  padding: 6px 0;
}
.ad-list__column--right-wrap nav a {
  color: #393939;
  text-decoration: none;
  transition: color .3s ease;
}
.ad-list__column--right-wrap nav a:hover {
  color: #46b564;
}
.ad-list__column--right-wrap nav > ul:last-of-type {
  margin-bottom: 0;
}

.list-items {
  margin: 0;
}
.list-items > li {
  list-style: none;
  border-radius: 15px;
  border: 8px solid #ddd;
  padding: 40px;
  margin-bottom: 30px;
}
.list-items > li figure {
  padding-bottom: 0;
}

.ap_box_footer_nav,
.ap_section_footer_nav{
  line-height: 1;
  text-align: right;
  margin-bottom: 0;
}
.ap_box_footer_nav a,
.ap_section_footer_nav a{
  display: inline-block;
  background-image: url("../img/ap_icon_arrow_02.png");
  background-position: left center;
  background-repeat: no-repeat;
  transition: opacity .2s;
  color: var(--green) !important;
  text-decoration: none !important;
}
.ap_box_footer_nav a:hover,
.ap_section_footer_nav a:hover{
  opacity: .5;
}
@media (max-width: 767px){
  .header_img{
    height: 236px;
  }
  .ad-list {
    padding: 0 0;
  }
  .section_box {
    width: 94%;
  }
  .ap_box_footer_nav a,
  .ap_section_footer_nav a{
    margin-left: 1em;
  }
  .ap_box_footer_nav a{
    background-size: 15px 15px;
    padding-left: 22px;
    min-height: 15px;
    line-height: 15px;
    font-size: 1.2rem;
  }
  .ap_section_footer_nav a{
    background-size: 21px 21px;
    padding-left: 28px;
    min-height: 21px;
    line-height: 1.2;
    font-size: 1.7rem;
  }
}
@media (min-width: 768px){
  .ap_box_footer_nav a,
  .ap_section_footer_nav a{
    margin-left: 35px;
    background-size: 24px 24px;
    padding-left: 35px;
    min-height: 24px;
    line-height: 24px;
    font-size: 2rem;
  }
}



/* ------------------------------------------
index.html
------------------------------------------ */
.adapt-index .section_box {
  padding: 50px 0;
}
.section-inner {
  width: 90%;
  margin: 0 auto;
}
.cca-index-item-container {
  display: grid;
  grid-template-columns: repeat(1, 3fr);
  grid-template-rows: auto;
  gap: 40px;
}
.cca-index-item {
}
.cca-index-item h3 {
  font-size: 2.4rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cca-index-item ul {
  margin-left: 0
}
.cca-index-item li{
  list-style: none;
  min-height: 2.8em;
  padding: 0.6em 0;
  margin: 0;
  font-size: 1.6rem;
  border-bottom: 1px solid #ddd;
}
.cca-index-item li a:hover{
	text-decoration: underline;
}
.cca-index-item > * + * {
  margin-top: 2px;
}
.cca-index-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-left: 2px solid transparent;
  pointer-events: auto;
  color: var(--black);
}
.cca-index-item a::before {
  content: '';
  width: 10px;
  height: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  align-self: start;
  margin-top: 8px;
  background: var(--orange);
}
.cca-index-item a .arrow {
  margin-top: 4px;
  margin-left: auto;
  width: 6px;
  height: 6px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  rotate: -45deg;
}
.ap_common_contents {
  background: #f3f3f3;
  padding-top: 50px;
  padding-bottom: 150px;
}
.ap_common_contents blockquote {
  background: #fff;
  border-radius: 15px;
}


@media (min-width: 768px) {
  .ad-list {
    margin-bottom:100px;
  }
  .cca-index-item-container {
    grid-template-columns: repeat(2, 2fr);
    gap: 60px;
  }
  .cca-index-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 10px;
  }
  .cca-index-item:nth-child(3) {
    grid-column: span 2;
  }
  .cca-index-item h3 {
    margin-bottom: 16px;
  }
}

@media (min-width: 969px) {
  .cca-index-item-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
  }
  .cca-index-item {
    gap: 10px;
  }
  .cca-index-item:nth-child(3) {
    grid-column:initial;
  }
}

.section_box > section {
  width: 90%;
  margin: 0 auto;
}
.section_box .border_box_white {
  padding: 30px;
  border-radius: 15px;
  border: 12px solid #fff;
}
.section_box .box_white {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
}

/* ------------------------------------------
Right-side Menu
------------------------------------------ */
@media (min-width:899px),print{

  .ad-list__row {
    display:flex;
    gap:40px;
    align-items:flex-start;
    position: relative;
  }
  .ad-list__column--left {
    width:calc(100% - 308px);
  }
  .ad-list__column--right{
    width: 308px;
  }
}
@media only screen and (max-width:899px){
  .ad-list__column--left {
    width:100%;
  }
}

/*サイドメニュー*/
.ad-list__column--right {
  overflow-y: auto;
}
.cca-menu{
  font-size: 1.4rem;
  padding: 15px;
}
.cca-menu nav {
  display: block;
}
.cca-menu nav a {
  color: var(--green);
}
.cca-menu nav h3 {
  line-height: 120%;
  font-weight: 600;
  border-width: 0;
  border-bottom: 1px #333 solid;
  color: #000;
  margin: 20px 0 0;
  padding-block: 8px;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.cca-menu h3:first-child {
  margin-top: 0;
}
.cca-menu nav ul {
  margin: 0;
}
.cca-menu nav ul li {
  margin: 0;
  padding: 8px 6px 6px;
  border-bottom: 1px #ccc solid;
}
.cca-menu nav ul li:hover {
  background-color: #f5f5f5;
  transition: background-color 0.15s linear;
}
.cca-menu nav ul li.active,
.cca-menu nav .option label.active {
  font-weight: 600;
  background: rgba(0, 153, 94, 0.05);
}
.cca-menu nav > ul {
  margin-left: 0;
}
.accordion {
  /*width: 90%;*/
  margin: 10px 0 0;
  font-size: 1.4rem;
}
.accordion ul{
  list-style: none;
}

.toggle {
  display: none;
}
.option {
  position: relative;
  /*margin-bottom: 1em;*/
}

@media screen and (min-width: 900px) {
  .ad-list__column--right {
    width: 320px;
  }
  .ad-list__column--right.is-fixed {
    position: fixed;
    top: 100px;
    z-index: 50;
  }
  .ad-list__column--right.is-stuck-above-footer {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    z-index: 50;
  }
  .cca-menu {
    width: 308px;
    overflow-y: auto;
    max-height: calc(100vh - 100px);
  }
  .accordion {
    /*max-width: 60vw;*/
    font-size: 1.4rem;
  }
}

.title,
.side-menu-content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.title {
  border: solid 1px #ccc;
  padding: 1em 2em 1em 1em;
  display: block;
  line-height: 120%;
}
.title::after,
.title::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: #999;
  transition: all 0.3s;
}
.title::after {
  transform: rotate(90deg);
}
.side-menu-content {
  max-height: 0;
  overflow: hidden;
}
.side-menu-content p {
  margin: 0;
  padding: 0.5em 1em 1em;
  font-size: 0.9em;
  line-height: 1.5;
}
.toggle:checked + .title + .side-menu-content {
  max-height: 1400px;
  transition: all 1.5s;
}
.toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

.side-menu-content li {
  padding-left: 2.4rem !important;
}
.side-menu-content ul {
  margin: 20px 0 ;
}
