@charset "utf-8";

    /* 全体設定 */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

	img{
		max-width: 100%;
	}
    body {
      font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #fcfcfc;
    }
    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 20px 20px;
      background-color: #fff;
    }

    /* タイトル */
    h1 {
      font-size: 1.4rem;
      text-align: center;
      line-height: 1.4;
      margin-bottom: 30px;
      font-weight: bold;
    }


	@media screen and (max-width:767px){
		    h1 {
      font-size: 1rem;
      font-feature-settings: 'palt';
			}
	}


    /* リード文・説明文 */
    .lead-text {
      font-size: 14px;
      margin-bottom: 25px;
    }
    .lead-text p {
      margin-bottom: 15px;
    }
    .note {
      font-size: 12px;
      color: #666;
      margin-top: -10px;
      margin-bottom: 15px;
    }
    .notice-link {
      font-size: 13px;
      margin-top: 20px;
      word-break: break-all;
    }
    .notice-link a {
      color: #0044cc;
      text-decoration: underline;
    }

    /* ナビゲーションボタン */
    .nav-buttons {
      display: flex;
      gap: 15px;
      margin: 30px 0 40px 0;
    }
    .nav-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 50px;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      border-radius: 6px;
      font-size: 15px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      transition: opacity 0.2s;
    }
    .nav-btn:hover {
      opacity: 0.85;
    }
    .btn-blue-dark { background-color: #000aab; }
    .btn-blue-light { background-color: #4b8fcf; }

    /* セクション見出し */
    .section-title {
      font-size: 20px;
      text-align: center;
      margin: 40px 0 25px 0;
      font-weight: bold;
    }

    /* ==========================================
       修正箇所：日付ラベル付きフロー図
    ========================================== */
    .flow-container {
      margin-bottom: 30px;
      padding-right: 15px; /* アロー部分のスペース確保 */
    }
    .flow-dates {
      display: flex;
      margin-bottom: 6px;
      font-size: 13px;
      font-weight: bold;
      text-align: center;
    }
    .flow-date-item {
      flex: 1;
    }
    .flow-bar {
      display: flex;
      background-color: #ff5500;
      color: #fff;
      font-size: 13px;
      font-weight: bold;
      text-align: center;
      position: relative;
    }
    .flow-step {
      flex: 1;
      padding: 10px 5px;
      border-right: 1px solid rgba(255,255,255,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .flow-step:last-child {
      border-right: none;
    }
    .flow-bar::after {
      content: "";
      position: absolute;
      right: -15px;
      top: 0;
      border-top: 20px solid transparent;
      border-bottom: 20px solid transparent;
      border-left: 15px solid #ff5500;
    }

    /* タイムライン */
    .timeline {
      position: relative;
      padding-left: 100px;
      margin-top: 20px;
    }
    .timeline::before {
      content: "";
      position: absolute;
      left: 89px;
      top: 0;
      bottom: 0;
      width: 2px;
      background-color: #333;
    }
    .timeline-month {
      position: absolute;
      left: 30px;
      font-weight: bold;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .timeline-month::after {
      content: "▼";
      font-size: 10px;
    }
    .timeline-item {
      position: relative;
      margin-bottom: 30px;
      padding-left: 20px;
    }
    .timeline-item::before {
      content: "";
      position: absolute;
      left: -14px;
      top: 5px;
      width: 8px;
      height: 8px;
      background-color: #333;
      border-radius: 50%;
    }


    .timeline-item-last::after{
content: "";
    position: absolute;
    left: -16px;
      bottom: -5px;
    width: 0;
    height: 0;
    border-top: 8px solid #333; 
    border-right: 6px solid transparent; 
    border-left: 6px solid transparent;
    background-color: transparent; 
    border-radius: 0;
}

@media (max-width: 600px) {
 .timeline-item-last::after{
left: -26px;
 }
}


    .timeline-date {
      font-weight: bold;
      font-size: 16px;
    }
    .timeline-content {
      font-size: 14px;
    }
    .timeline-content .sub-text {
      font-size: 12px;
      color: #666;
      margin-top: 2px;
    }
    .timeline-final {
      margin-top: 40px;
      display: flex;
      align-items: center;
    }
    .final-badge {
      background-color: #000;
      color: #fff;
      font-weight: bold;
      padding: 12px 20px;
      font-size: 16px;
      white-space: nowrap;
      z-index: 1;
    }
    .final-text {
      font-weight: bold;
      font-size: 16px;
      padding-left: 20px;
    }

    /* 移管の内容について */
    .transfer-content-wrapper {
      margin-top: 50px;
    }
    .transfer-cards-bg {
      background-color: #d9e9f9;
      padding: 30px 20px;
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-bottom: 30px;
    }
    .transfer-card {
      flex: 1;
      background-color: #fff;
      border: 1px solid #333;
      position: relative;
      padding: 30px 15px 15px 15px;
      min-height: 120px;
    }
    .card-header-badge {
      position: absolute;
      top: -15px;
      left: 10%;
      right: 10%;
      padding: 6px 0;
      color: #fff;
      font-weight: bold;
      font-size: 14px;
      text-align: center;
      border-radius: 4px;
    }
    .badge-orange { background-color: #ff5500; }
    .badge-blue { background-color: #0a6ca3; }

    .card-list {
      list-style: none;
      font-size: 15px;
      line-height: 1.5;
    }

    /* 移管対象行 */
    .target-wrapper {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 25px;
    }
    .target-badge {
      background-color: #ff3300;
      color: #fff;
      font-weight: bold;
      font-size: 14px;
      padding: 12px 25px;
      border-radius: 30px;
      white-space: nowrap;
    }
    .target-text h3 {
      font-size: 16px;
      font-weight: bold;
    }
    .target-text p {
      font-size: 13px;
      color: #555;
    }

    /* 注意事項詳細 */
    .details-box {
      border: 1px solid #aaa;
      padding: 20px;
      font-size: 13px;
      line-height: 1.6;
    }
    .details-section {
      margin-bottom: 20px;
    }
    .details-section:last-child {
      margin-bottom: 0;
    }
    .details-title {
      font-weight: bold;
      font-size: 14px;
      margin-bottom: 4px;
    }
    .details-list {
      list-style: none;
    }
    .details-list li {
      position: relative;
      padding-left: 1em;
      text-indent: -1em;
      margin-bottom: 3px;
    }

    /* レスポンシブ対応 (スマホ用) */
    @media (max-width: 600px) {
      .nav-buttons { flex-direction: column; gap: 10px; }
      .flow-container { padding-right: 0; }
      .flow-dates { display: none; } /* スマホ表示時は上の日付を非表示にして縦スッキリ */
      .flow-bar { flex-direction: column; }
      .flow-bar::after { display: none; }
      .flow-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.3); }
      .timeline { padding-left: 20px; }
      .timeline::before { left: -1px; }
      .timeline-month { position: static; margin-bottom: 10px; }
      .timeline-item::before { left: -24px; }
      .transfer-cards-bg { flex-direction: column; gap: 30px; }
      .target-wrapper { flex-direction: column; align-items: flex-start; gap: 10px; }
    }




	    /* 全体設定 */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #fcfcfc;
    }



    /* リード文・説明文 */
    .lead-text {
      font-size: 14px;
      margin-bottom: 25px;
    }
    .lead-text p {
      margin-bottom: 15px;
    }
    .note {
      font-size: 12px;
      color: #666;
      margin-top: -10px;
      margin-bottom: 15px;
    }
    .notice-link {
      font-size: 13px;
      margin-top: 20px;
      word-break: break-all;
    }
    .notice-link a {
      color: #0044cc;
      text-decoration: underline;
    }

    /* メインナビゲーションボタン（今回はサービス比較がアクティブ） */
    .nav-buttons {
      display: flex;
      gap: 15px;
      margin: 30px 0 15px 0;
    }

    .btn-blue-light { background-color: #4b8fcf; }
    .btn-blue-active { background-color: #000aab; } /* アクティブ状態 */

    /* サブナビゲーション（取扱通貨ペアなど） */
    .sub-nav {
      display: flex;
      gap: 10px;
      margin-bottom: 40px;
    }
    .sub-nav-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 35px;
      background-color: #fff;
      border: 1px solid #aaa;
      color: #333;
      text-decoration: none;
      font-size: 12px;
    }
    .sub-nav-btn.active {
      border: 1px solid #333;
      font-weight: bold;
    }



    /* コンテンツの見出し */
    .content-title {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 4px;
    }

    /* 「20種類 ▶ 54種類に増加！」のキャッチコピー */
    .increase-badge {
      text-align: center;
      font-size: 28px;
      letter-spacing: 2px;
      margin-bottom: 40px;
    }
    .increase-badge .light-text {
      font-size: 24px;
      font-weight: normal;
    }
    .increase-badge .bold-text {
      font-weight: bold;
      font-size: 32px;
    }
    .increase-badge .arrow {
      margin: 0 10px;
      font-size: 20px;
      color: #333;
    }

    /* ==========================================
       通貨ペア 比較エリア（オレンジ＆青の二重枠）
    ========================================== */
    .comparison-box-orange {
      border: 5px solid #ff4500; /* オレンジの太枠 */
      position: relative;
padding: 54px 20px 20px 20px;
      margin-top: 30px;
      text-align: center;
    }
    
    /* オレンジ枠のヘッダータイトル */
    .orange-header {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ff4500;
      color: #fff;
      font-weight: bold;
      font-size: 1.2rem;
      padding: 6px 40px;
      white-space: nowrap;
    }

    /* 青枠（内側の岡三アクティブFXエリア） */
    .comparison-box-blue {
      background-color: #e3effb; /* 薄い青背景 */
      position: relative;
    padding: 22px 15px 15px 15px;
      margin-bottom: 25px;
    }
    
    /* 青枠のヘッダータイトル */
    .blue-header {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #0c7cb3;
      color: #fff;
      font-weight: bold;
      font-size: 13px;
      padding: 4px 30px;
      white-space: nowrap;
    }

    /* 通貨ペアのテキスト一覧 */
    .currency-list {
      font-size: 13px;
      line-height: 1.8;
      color: #333;
      text-align: center;
      word-spacing: 2px;
      font-feature-settings: 'palt';
    }
    .orange-box-list {
      margin-top: 15px;
      padding: 0 10px;
    }

    /* レスポンシブ対応 (スマホ用) */
    @media (max-width: 600px) {
      .nav-buttons { flex-direction: column; gap: 10px; }
      .sub-nav { flex-direction: column; gap: 5px; }
      .increase-badge { font-size: 20px; }
      .increase-badge .bold-text { font-size: 24px; }
      .orange-header { padding: 6px 20px; width: 90%; text-align: center; }
      .blue-header { padding: 4px 15px; width: 90%; text-align: center; }
    }



    /* ==========================================
   スプレッドエリア用のCSS
========================================== */
.spread-section {
  margin-top: 60px;
}
.sub-catch {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* 2列のグリッドレイアウト */
.spread-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 20px;
  max-width: 650px;
  margin: 0 auto 35px auto;
}

.spread-card {
  text-align: center;
      background: aliceblue;
    padding-top: 10px;
	padding-bottom: 8px;
}

.pair-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.spread-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.before-val {
  font-size: 16px;
  color: #333;
}

.arrow {
  color: #d60000; /* 赤色矢印 */
  font-size: 12px;
}

.after-val {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  line-height: 1.3;
}

/* フッター（ボタン & URL） */
.spread-footer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.spread-btn {
  display: inline-block;
  background-color: #ff630d; /* 薄オレンジ色 */
  color: white;
  text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 48px;
  border-radius: 6px;
  border: 1px solid #e08b68;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: opacity 0.2s;
}

.spread-btn:hover {
  opacity: 0.85;
}

.url-text {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 10px;
  color: #333;
  font-family: sans-serif;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .spread-grid {
    grid-template-columns: 1fr; /* スマホでは1列表示 */
    gap: 20px;
  }
  .spread-footer {
    flex-direction: column;
    gap: 10px;
  }
  .url-text {
    position: static;
    font-size: 9px;
  }
}


	.flow-bar-day{
		color: black;
		margin-top: 18px;
		font-size: 1.1rem;
		display: none;
	}




@media screen and (max-width: 767px){
		  .nav-btn {
			padding-top: 12px;
			padding-bottom: 12px;
		  }

		  .section-title{
			margin: 40px 0 8px 0;
		  }

		  .flow-bar{
			background-color: inherit;
		  }

		      .flow-step{
				    background-color: #ff5500;
			  }

        .spread-btn {
  padding: 10px 24px;
        }

        .risk{
          padding-left: 20px;
          padding-right: 20px;
          box-sizing: border-box;
        }

        .sub-catch{
          font-size: 16px;
        }

	}


		@media screen and (max-width: 600px){
			  	.flow-bar-day{

		display: block;
	}
	}





	
#Wcompany .company {
	width: 900px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	background-color: #FFF;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
}
#Wcompany .company h3 {
	background-color: #222;

	font-size: x-large;
padding-top: 8px;
    padding-bottom: 8px;
	/* border-radius */
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	color: #FFF;
	text-align: center;
}
#Wcompany .company p {
	color:#333;
	text-align: left;
	font-size: medium;
	line-height: 200%;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 20px;
	padding-left: 15px;
}
#Wcompany .company .comlogo {
	position: absolute;
	top: 135px;
	right: 60px;
}





@media screen and (max-width: 767px){

.details-box{
  padding: 10px;
}
  .cp_check{
    font-feature-settings: 'palt';
  }
#Wcompany .company {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	background-color: #FFF;
	padding-top: 30px;
	padding-bottom: 30px;
}
#Wcompany .company p {

	line-height: 150%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#Wcompany .company .comlogo {
	position: static;
}

.company_span{
	display: block;
}


}


.copyright{
	text-align: center;
	padding-bottom: 20px;
}



.other_refer{
	margin-top: 54px;
}

.section_body{
	display: flex;
	margin-top: 24px;
	margin-bottom: 40px;
	justify-content: space-around;
}


.btn-body a{
	display: block;
	text-decoration: none;
	background-color: #0044cc;
	color: white;
	text-align: center;
	padding: 10px 80px;
	border-radius: 24px;
	font-size: 1.3rem;
}

.btn-header{
	text-align: center;
	font-size: 1.2rem;
	font-weight: bold;
}


.other_refer{
	max-width: 800px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}


.orange_btn{
	background-color: #121d34 !important;
}

@media screen and (max-width: 767px){
	.section_body{
		flex-direction: column;
		margin-top: 0px;
	}

	.btn-header{
		margin-top: 40px;
	}

	.other_refer{
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}

	.sub-nav-btn{
		padding-top: 8px;
		padding-bottom: 8px;
	}

  .comparison-box-blue{
    padding: 22px 4px 15px 4px;
  }

  .comparison-box-orange{
    padding: 54px 10px 20px 10px;
  }
}



.spread_time{
	font-size: 0.7rem;
	font-weight: normal;
	display: block;
}


.cp_btn{
  text-align: center;
  background-image: url(img/cp_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 16px;
}


.cp_check{
  text-align: center;
  margin-top: 40px;
}


.risk{
    max-width: 840px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    margin-top: 16px;
}



.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 32px;
  font-weight: bold;
}

.line {
  width: 30px;
  height: 3px;
  background: #000;
}

.left {
  transform: rotate(60deg);
}

.right {
  transform: rotate(-60deg);
}

.support_text{
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width:767px){
  .support_text{
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
}
}