@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body {
	line-height: 1.6;
	color: #333333;
	font-size: 1.6rem;
	font-family: "Noto Sans JP";
}

main {
	margin: 0 auto;
}
.pc_only {
	display: block;

}
.sp_only{
	display: none;
}
a {
	text-decoration: underline;
	color: #1534CC;
}
a:hover{
	text-decoration: none;
}
.content{
	max-width: 1000px;
	margin: 0 auto;
	padding-bottom: 200px;
}
section{
	position: relative;
}

.header{
	background: #1534CC;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header picture{
	margin-right:  56px;
}
.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings:
    "wdth" 100;
}

/*----------見出し----------*/
h2{
	position: relative;
	color: #333;
	text-align: center;
	font-family: "M PLUS 1";
	font-size: 2.8rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	padding-bottom: 10px;
	margin-bottom: 30px;
	text-align: left;
}
.section_title_content{
	 display: flex; /* 横並びにする */
    align-items: flex-start; /* 複数行になっても線が上に固定されるように（中央なら center） */
    gap: 15px; /* 線とテキストの間の余白 */
    margin: 20px auto;
    font-family: sans-serif;
}
/* 見出しのスタイル */
  .main-title {
    padding-left: 25px; /* 線の幅 + 余白分 */
    display: flex;
    flex-direction: column;
    justify-content: center;
	word-break: break-all; /* 英語などがはみ出さないように */
    font-family: sans-serif;
  }

  /* 疑似要素で2色ラインを作成 */
  .main-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 70%;
    transform: translateY(-50%); /* 上下中央揃え */
    width: 12px;  /* 線の太さ */
    height: 60px; /* 線の長さ */
    
    /* 上50%を黄色、下50%を青色に塗り分け */
    background: linear-gradient(
      to bottom,
      #F9B500 0%,
      #F9B500 50%,
      #0038B8 50%,
      #0038B8 100%
    );
  }


  .sub-title {
    font-size: 16px;
    font-weight: bold;
    color: #F9B500;
    line-height: 1;
	position: absolute;
	padding-left: 25px;
	white-space: nowrap;
}
h3 {
    /* レイアウトの基本設定 */
    position: relative;
    display: inline-block; /* 下線の長さを文字幅に合わせる */
    padding-bottom: 15px;  /* 文字と線の間の距離 */
    margin-bottom: 40px;          /* 周囲との余白（任意） */
    font-weight: bold;
    /* テキストの装飾 */
    font-size: 2.8rem;
	font-family: "M PLUS 1";
    color: #333333;
    letter-spacing: 0.05em;
    line-height: 1.2;
    font-family: sans-serif;
  }

  /* 疑似要素で「黄30px＋青30px」の線を中央配置 */
  h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* 常に中央に配置 */
    
    width: 60px;  /* 合計 60px */
    height: 6px;  /* 線の太さ */

    /* 線形グラデーションで2色を表現 */
    background: linear-gradient(
      to right,
      #F9B500 0%,
      #F9B500 50%,
      #0038B8 50%,
      #0038B8 100%
    );
  }
.strong{
	font-weight: bold;
	text-decoration: underline;
}

/*----------ボタン----------*/
.btn{
	width: 500px;
	margin: 0 auto;
}
.btn a{
	display: block;
	width: 500px;
	height: 60px;
	flex-shrink: 0;
	text-decoration: none;
	border-radius: 150px;
	background: #1534CC;
	padding: 15px 18px;
	text-align: center;
	color: #FFF;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	position: relative;
}

.btn a::after{
	content: "";
	display: block;
	position: absolute;
	background: url(/campaign/touch-payment/_assets/img/arrow_back_ios_new.png)left top no-repeat;
	width: 24px;
	height: 24px;
	background-size: 100%;
	top: 50%;
  	transform: translateY(-50%);
	right: 30px;
}

.btn a:hover{
	background-color: #F8B714;
}

/*----------汎用----------*/
.column_2,.column_3{
	display: flex;
	justify-content: center;
}
.column_2 li{
	width: 50%;
}
.column_3 li{
	width: 33%;
	padding: 0 20px;
}
/*----------MV----------*/

.main_img{
	position: relative;
	margin-bottom: 60px;
}
.main_img img{
	width: 100%;
	padding: 20px;
}
/* スクロールダウンの位置 */
.scroll-button {
    position: absolute;
    bottom: 30px; /* 下から30pxの位置 */
    left: 50%;
    transform: translateX(-50%); /* 自身の幅の半分だけ左に戻して真ん中に */
    
    /* 以下、前回のデザイン用コード */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px; /* 少しサイズを調整しました */
    height: 80px;
    background-color: #1a3dc8;
    border-radius: 50%;
    color: white;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    overflow: hidden;
    z-index: 10; /* 他の要素より上に表示 */
  }

  /* テキストと矢印のスタイル（前回と同じ） */
  .scroll-text {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scrollDown 1.8s infinite ease-in-out;
  }

  .dashed-line {
    width: 2px;
    height: 12px;
    border-left: 2px dashed white;
  }

  .arrow-head {
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-top: -2px;
  }

  @keyframes scrollDown {
    0% { opacity: 0; transform: translateY(-15px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(15px); }
  }

/*----------News----------*/
.news{
	margin-bottom: 30px;
}
.news .content{
	padding-bottom: 20px;
}
.news .main-title::before{
top: 40%;
    transform: translateY(-45%);
}
.newsarea{
	border-radius: 20px;
	background: #FFF;
	box-shadow: 0 0 8px 0 rgba(51, 51, 51, 0.25);
	padding: 30px 40px;
	max-width: 1000px;
	margin: 0 auto;
}
.newsarea dl{
	display: flex;
	padding-bottom: 20px;
	padding-top: 20px;
	border-bottom: 1px #D9D9D9 solid;
}
.newsarea dl dt{
	margin-right: 27px;
}
.newsarea dl dt.date{
	font-weight: bold;
}
.newsarea dl:first-child{
	padding-top: 0px;
}
.newsarea dl:last-child{
	border: none;
	padding-bottom: 0;
}
.newsarea a{
	color: #333;
}
.newsarea a:hover{
	color: #1534CC;
}

/*----------Navi----------*/
.navi{
	margin-bottom: 60px;
}
.navi .content{
	padding-bottom: 100px;
}
.navi_area{
	display: flex;
	margin-bottom: 20px;
}
.navi_btn {
	width: 25%;
	display: flex;
	align-items: stretch;
}
.navi_btn a{
	border-radius: 10px;
	background: #1534CC;
	padding: 20px 30px;
	position: relative;
	width: 100%;
	margin-right: 20px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}
.navi_btn a::after{
	content: "";
	display: block;
	position: absolute;
	background-image: url(/campaign/touch-payment/_assets/img/nav_icon.png) ;
	width: 18px;
	height: 18px;
	background-size: 100%;
	background-repeat: no-repeat;
	top: 35%;
	right: 10%;
}
.navi_btn a:hover{
	background: #F8B714;
}
.english_btn {
	width: 25%;
	display: flex;
	align-items: stretch;
	margin: 0 auto;
}
.english_btn a{
	border-radius: 10px;
	background: #001268;
	padding: 20px 30px;
	position: relative;
	width: 100%;
	margin-right: 20px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}
.english_btn a::after{
	content: "";
	display: block;
	position: absolute;
	background-image: url(/campaign/touch-payment/_assets/img/nav_icon.png) ;
	width: 18px;
	height: 18px;
	background-size: 100%;
	background-repeat: no-repeat;
	top: 35%;
	right: 10%;
}

.english_btn a:hover{
	background: #F8B714;
}
/*----------section01----------*/
.section01{
	max-width: 1000px;
    margin: 0 auto;
    margin-top: -100px;
    text-align: center;
}
.section01 .content{
	border-radius: 20px;
	background: #F0F7FF;
	padding: 40px 10px 60px;
	margin-bottom: 60px;
}


.section01 .content01 .column_2{
	margin-bottom: 80px;
}
.section01 .content01 .column_2 li{
	width: 50%;
	margin-right: 10px;
}
.section01 .content01 .column_2 li:last-child{
	margin-right: 0;
}
.section01 .content01 .column_2 li img{
	width: 100%;
}
.section01 .content01 .column_2 .text_area{
	max-width: 400px;
	width: 100%;
	margin-right: 30px;
	text-align: left;
}
.section01 .content02{
	position: relative;
}
.section01 .content02::before{
	content: "";
	display: block;
	position: absolute;
	background-image: url(/campaign/touch-payment/_assets/img/deco01.png) ;
	width: 51px;
	height: 144px;
	background-size: 100%;
	background-repeat: no-repeat;
	bottom: 6%;
    left: -2%;
}
.section01 .content02 .line{
	margin-bottom: 40px;
}
.section01 .content02 .line li{
	margin-bottom: 30px
}

.section01 .content02 p{
	text-align: left;
	padding: 0 40px;
}
.section01 .content03{
	padding-left: 77px;
	padding-right: 77px;
	position: relative;
}

.section01 .content03::after{
	content: "";
	display: block;
	position: absolute;
	background-image: url(/campaign/touch-payment/_assets/img/deco02.png) ;
	width: 101px;
	height: 166px;
	background-size: 100%;
	background-repeat: no-repeat;
	top: 75%;
    right: -5%;
}

.section01 .content03 .img_area{
	background-color: #fff;
	padding: 34px 44px;
}
.section01 .content04{
	padding-left: 20px;
	padding-right: 20px;
}
.section01 .content04 .available,
.section01 .content04 .notavailable{
	text-align: left;
}
.section01 .content04 .available{
	margin-bottom: 60px;
}
.section01 .content04 .available p,
.section01 .content04 .notavailable p{
	text-align: left;
	margin-bottom: 40px;
}

.section01 .content04 .available .available_title{
	font-size: 2.0rem;
	color: #fff;	
	background: #FF2660;
	padding: 0px 30px;
    display: inline-block;
	margin-bottom: 20px;
}

.section01 .content04 .notavailable .notavailable_title{
	font-size: 2.0rem;
	color: #fff;	
	background: #1AADE2;
	padding: 0px 30px;
    display: inline-block;
	margin-bottom: 20px;
}
.section01 .content04 .available .column_2 li,
.section01 .content04 .notavailable .column_2 li{
	width: 48%;
	margin-right: 35px;
}

.section01 .content04 .available .column_2 li:nth-child(2n),
.section01 .content04 .notavailable .column_2 li:nth-child(2n){
	margin-right: 0;
}
.section01 .content04 .notavailable .column_2 li:nth-child(-n+2){
	margin-bottom: 40px;
}

.section01 .content04 .notavailable .column_2{
	flex-wrap: wrap;
}
.section01 .content04 .available .column_2 li p,
.section01 .content04 .notavailable .column_2 li p{
	text-align: center;
	font-weight: bold;
	margin-bottom: 16px;
}


.section01 .content05{
	position: relative;
}

.section01 .content05::after{
	content: "";
	display: block;
	position: absolute;
	background-image: url(/campaign/touch-payment/_assets/img/deco03.png) ;
	width: 145px;
	height: 177px;
	background-size: 100%;
	background-repeat: no-repeat;
	top: 55%;
    right: -10px;
}
.section01 .content05 p{
	text-align: left;
    padding-left: 77px;
    max-width: 800px;
}

/*----------section02----------*/

.section02 .h2{
	margin-bottom: 40px;
}
.section02 p{
	text-align: center;
	margin-bottom: 20px;
}
.section02 .btn{
	margin-bottom: 60px;
}
.section02 .content{
	padding-bottom: 60px;
}
/* ベーススタイル（共通） */
.howto {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.howto_item {
    width: 30%; /* 3カラムの幅調整 */
    position: relative;
}

/* タイトル部分（数字とテキストを横並び） */
.howto_title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #1a448e; /* 青色（画像に合わせる） */
    margin-bottom: 15px;
}

.howto_title .number {
    font-size: 50px;
    color: #f7b52c; /* 黄色（画像に合わせる） */
    margin: 0;
}

/* 説明文 */
.howto_item > p {
    font-size: 15px;
    line-height: 1.6;
	text-align: left;
    margin-bottom: 25px;
    min-height: 3em; /* テキスト量による高さのズレを抑止 */
}

/* 画像エリア */
.img_area {
    text-align: center;
}

.img_area img {
    max-width: 100%;
    height: auto;
}

/* PC時の区切り点線（1つ目と2つ目のアイテムの右側に表示） */
@media screen and (min-width: 769px) {
    .howto_item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: -30px;
        right: 0; /* 位置調整 */
        width: 1px;
        height: 100%;
        border-right: 2px dotted #ccc;
    }
}

/* --- スマートフォン用スタイル (SP) --- */
@media screen and (max-width: 768px) {
    .howto {
        flex-direction: column;
        gap: 50px; /* 項目間の余白 */
    }

    .howto_item {
        width: 100%;
    }

    /* SP時は点線を下に、または非表示にする（デザインに応じて） */
    .howto_item:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 100%;
        height: 1px;
        border-bottom: 2px dotted #ccc;
        border-right: none;
    }
    
    .howto_title .number {
        font-size: 40px;
    }
}

/*----------section03----------*/
.section03 .content{
	padding-bottom: 60px;
}

/*----------section04----------*/

.section04{
	margin-top: 0px;
	background-color: #4C96CC;
	padding: 60px 0;
	position: relative;
}
.section04::after{
	content: "";
	display: block;
	position: absolute;
	background-image: url(/campaign/touch-payment/_assets/img/deco04.png) ;
	width: 116px;
	height: 186px;
	background-size: 100%;
	background-repeat: no-repeat;
	top: -6%;
	right: 5%;
}
.section04 .main-title{
	color: #fff;
}
.section04 .content{
	padding-bottom: 0;
}
/* 全体のコンテナ */
.faq-container {
    max-width: 800px;
    margin: 20px auto;
	padding: 1px 15px; /* 左右に少しパディングを追加し、画面端にくっつくのを防ぐ */
}

/* details要素（アコーディオン全体）のベーススタイル */
details {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #fff;
    font-family: sans-serif;
    transition: border-color 0.3s;
    overflow: hidden; /* アニメーションのために必須 */
}


/* 質問（summary）のスタイル */
summary {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* デフォルトのマーカーを非表示 */
    color: #333;
    /* transition: background-color 0.3s; */
}

/* 開いたときのsummaryと回答エリアの境界線 */
details[open] summary {
    border-radius: 4px 4px 0 0;
}

/* Q.のデコレーション */
summary .FAQ_deco {
    color: #1B5AA7;
    font-size: 2.4rem;
    font-weight: 900;
    margin-right: 10px;
}

/* 開閉アイコン（+ / -）のスタイル */
.icon {
    margin-left: auto;
    font-size: 20px;
    line-height: 1;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
	font-weight: bold;
    align-items: center;
    transition: transform 0.3s;
}

/* 閉じている状態（デフォルト）のアイコン：＋ */
.icon::before {
    content: '+';
}

/* 開いている状態のアイコン：− */
details[open] .icon::before {
    content: '-';
}

/* ========== 回答エリアのスタイルとアニメーション ========== */

/* 回答ラッパー（アニメーションの核） */
.answer-wrapper {
    /* A.と回答テキストを横並びにするFlexコンテナ */
    display: flex; 
    padding: 0 20px; /* 横のパディングはここで調整 */
    overflow: hidden; /* アニメーションのために必須 */
    
    /* 初期値：閉じた状態（高さ0） */
    max-height: 0; 
    
    /* トランジション設定（アニメーションの速さ） */
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

/* 開いた状態 */
details[open] .answer-wrapper {
    /* 非常に大きな値に設定し、コンテンツの高さまで展開させる */
    max-height: 1000px; /* コンテンツの最大高さに合わせて適切な値を設定 */
    padding: 15px 20px; /* 開いたときに上下のパディングを適用 */
}

/* A.のデコレーション */
.answer-wrapper .FAQ_deco {
	 font-size: 2.4rem;
    color: #1B5AA7;
    font-weight: 900;
    margin-right: 10px;
	margin-top: -8px;
    /* A.が回答テキストの先頭に揃うように */
    align-self: flex-start; 
    flex-shrink: 0; /* A.の幅を固定 */
}

/* 回答コンテンツのスタイル（薄いピンクの背景） */
.answer-content {
    background-color: #E8F1FC; /* 薄いピンクの背景 */
    padding: 0px 20px 0px 0px; /* A.が薄いピンクの背景に入らないように調整 */
    line-height: 1.6;
    flex-grow: 1; /* 残りのスペースを埋める */
}

/* 開いたときに背景が全体を覆うように、wrapperに背景を適用 */
details[open] .answer-wrapper {
    background-color: #E8F1FC;
}

/* 開いたときの回答テキストのスタイルを調整（A.と薄いピンクの背景の整合性のため） */
details[open] .answer-wrapper {
    /* パディングをwrapperに移動し、回答テキスト全体がピンクの背景になるように調整 */
    padding: 20px;
	border-radius: 10px;
    background-color: #E8F1FC;
	margin: 0px 40px 20px;
}

details[open] .answer-wrapper .answer-content {
    background-color: transparent; /* 背景色を透明に戻す */
    padding: 0; /* paddingも不要 */
}
/*----------footer----------*/
footer{
	background: #fff;
	padding-top: 60px;
	padding-bottom: 20px;
	text-align: center;
}
footer .logo{
	margin: 0 auto;
	text-align: center
}
footer img{
	width: auto;
}

.footer_note{
	font-size: 1.4rem;
    width: 600px;
    text-align: left;
    margin: 0 auto 10px;
}
.copyright{
	font-size: 1.4rem;
}
@media (max-width: 767px) {
.pc_only {
	display: none;
}
.sp_only{
	display: block;
}

.content{
	max-width: 1200px;
	margin: 0 10px;
	padding-bottom: 30px;
}
section{
	position: relative;
}
section .curve-divider-top {
  padding-top: 50px; /* 曲線の深さ */
  margin-left: 0;
  margin-right: 0;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

/*----------見出し----------*/
h2{
	font-size: 2.8rem;
}

h2::after{
	 width:20px;
}

h3{
	font-size: 2.4rem;
}
h3::after{
 width: 50px; 
  height: 3px
}

h4{
	font-size: 1.8rem;
}

/*----------ボタン----------*/
.btn{
	width: 100%;
}
.btn a{
	width: 100%;
	font-size: 1.6rem;
}


/*----------汎用----------*/
.column_2,.column_3{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.column_2 li{
	width: 100%;
}
.column_3 li{
	width: 100%;
}
/*----------header----------*/
.header{
	padding: 20px 0px 0px;
}
.header picture{
	margin-right:  18px;
}
.header picture img{
	width: 100%;
}
.header a img{
	width: 80%;
	margin-bottom: 10px;
}
/*----------MV----------*/

.main_img{
	margin-bottom: 30px;
}
.main_img img{
	padding: 10px;
}

/*----------News----------*/
h2{
	display: flex;
  flex-direction: column;
  align-items: center;   
  text-align: center;
}
.main-title{
	font-size: 2.8rem;
	text-align: center;
	padding-left: 15px;
}

.section_title_content{
	align-items: center; /* 上下中央 */
    justify-content: center; /* 【追加】左右中央（スマホ時） */
}
section .sub-title{
	margin-top: 40px;
	font-size: 1.4rem;
}

.main-title::before{
	margin-left: -5%;
	top:65%
}
.news{
	margin-bottom: 30px;
}

.news .main-title::before{
	height: 50px;
}
.newsarea{
	padding: 20px;
	max-width: inherit;
	margin: 0 12px;
	border-radius: 10px;
}

.newsarea dl{
	flex-wrap: wrap;
}

/*----------Navi----------*/
.navi{
	margin-bottom: 40px;
}
.navi .content{
	padding-bottom: 0;
	margin:0;
}
.navi_area{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 10px;
}
.navi_btn {
	width: calc(50% - 10px); 
	margin-bottom: 10px;
}
.navi_btn a{
	padding: 10px 15px;
	margin-right: 5px;
	border-radius: 100px;
	text-align: left;
	font-size: 1.4rem;
}
.navi_btn a::after{
	width: 15px;
    height: 15px;
}
.navi_btn:nth-child(2n) a{
	margin-right: 0px;
}
.english_btn{
	width: 100%;
}
.english_btn a{
	border-radius: 100px;
	padding: 10px;
	margin-right: 10px;
    margin-left: 10px;
}


/*----------section01----------*/
.section01{
	margin-top: 0px;
}
.section01 .textarea{
	margin-bottom: 20px;
}
.section01 .content{
	border-radius: 10px;
	margin-bottom: 40px;
	padding-bottom: 40px;
}
.section01 .column_2{
	margin-bottom: 60px;
}
.section01 .column_2 li{
	margin-bottom: 20px;
	margin-right: 0;
}
.section01 .content01 .column_2{
	margin-bottom: 40px;
	padding: 0px 10px;
}
.section01 .content01 .column_2 .text_area{
	margin-right: 0;

}
.section01 .content02 .line li{
	margin-bottom: 0px;
}
.section01 .content02 .line li img{
	width: 100%;
}
.section01 .content02 p{
	padding: 0;
}
.section01 .content02::before{
	content: none;
}

.section01 .content02 .line{
	margin-bottom: 20px;
}
.section01 .content03{
	padding: 40px 8px;
}
.section01 .content03 .img_area{
	padding: 10px;
}
.section01 .content03::after{
	content: none;
}
.section01 .content04{
	padding-left: 7px;
	padding-right: 7px;
	padding-bottom: 40px;
}

.section01 .content04 .available .available_title,
.section01 .content04 .notavailable .notavailable_title{
	width: 100%;
    text-align: center;
}
.section01 .content04 .available .column_2 li, .section01 .content04 .notavailable .column_2 li{
	width: 100%;
	margin-right: 0;
}
.section01 .content04 .column_2{
	margin-bottom: 0px;
}
.section01 .content05 p{
	max-width: inherit;
    padding-left: 0;
}
.section01 .content05::after{
	content: none;
}


/*----------section02----------*/
.section02{
	margin-top: 0px;
}
.section02 p{
	text-align: left;
}
.section02 .guide{
	margin-bottom: 30px;
}
.section02 .guide ul{
	margin-left: 0px;
}
.section02 .guide ul li{
	margin-left: 20px;
}

.section02 .guide ul li img{
	width: 100%;
}

/*----------section03----------*/
.section03{
	margin-top: 0px;
}
.section03 p{
	text-align: center;
	margin-bottom: 20px;
}

.section03 .caution{
	color: #F10000;
	margin-bottom: 40px;
}

.section03 .column_2 li{
	width: auto;
	margin-right: 0px;
}
.section03 .column_2 li:last-child{
	margin-right: 0;
}
.section03 picture{
	margin-left: 0px;
	margin-bottom: 20px;
}
/*----------section04----------*/
.section04{
	margin-top: 0px;
	background-color: #4C96CC;
}
.section04 h2{
	color: #fff;

}
.section04::after{
	content: none;
}
.section04 .content{
	padding-bottom: 20px;
}
/* 全体のコンテナ */
.faq-container {
    max-width: 800px;
    margin: 20px auto;
	padding: 1px 15px; /* 左右に少しパディングを追加し、画面端にくっつくのを防ぐ */
}

/* details要素（アコーディオン全体）のベーススタイル */
details {
    border-radius: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    font-family: sans-serif;
    transition: border-color 0.3s;
    overflow: hidden; /* アニメーションのために必須 */
}


/* 質問（summary）のスタイル */
summary {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    list-style: none; /* デフォルトのマーカーを非表示 */
    color: #333;
    /* transition: background-color 0.3s; */
}

/* 開いたときのsummaryと回答エリアの境界線 */
details[open] summary {
    border-radius: 4px 4px 0 0;
}

/* Q.のデコレーション */
summary .FAQ_deco {
    color: #1B5AA7;
    font-size: 2.4rem;
    font-weight: 900;
    margin-right: 10px;
}

/* 開閉アイコン（+ / -）のスタイル */
.icon {
    margin-left: auto;
    font-size: 20px;
    line-height: 1;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

/* 閉じている状態（デフォルト）のアイコン：＋ */
.icon::before {
    content: '+';
}

/* 開いている状態のアイコン：− */
details[open] .icon::before {
    content: '-';
}

/* ========== 回答エリアのスタイルとアニメーション ========== */

/* 回答ラッパー（アニメーションの核） */
.answer-wrapper {
    /* A.と回答テキストを横並びにするFlexコンテナ */
    display: flex; 
    padding: 0 20px; /* 横のパディングはここで調整 */
    overflow: hidden; /* アニメーションのために必須 */
    
    /* 初期値：閉じた状態（高さ0） */
    max-height: 0; 
    
    /* トランジション設定（アニメーションの速さ） */
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

/* 開いた状態 */
details[open] .answer-wrapper {
    /* 非常に大きな値に設定し、コンテンツの高さまで展開させる */
    max-height: 1000px; /* コンテンツの最大高さに合わせて適切な値を設定 */
    padding: 15px 20px; /* 開いたときに上下のパディングを適用 */
	margin: 10px;
}

/* A.のデコレーション */
.answer-wrapper .FAQ_deco {
	 font-size: 1.6rem;
    color: #1B5AA7;
    font-weight: 900;
    margin-right: 10px;
	margin-top: 0px;
    /* A.が回答テキストの先頭に揃うように */
    align-self: flex-start; 
    flex-shrink: 0; /* A.の幅を固定 */
}

/* 回答コンテンツのスタイル（薄いピンクの背景） */
.answer-content {
    background-color: #E8F1FC; /* 薄いピンクの背景 */
    padding: 0px 20px 0px 0px; /* A.が薄いピンクの背景に入らないように調整 */
    line-height: 1.6;
    flex-grow: 1; /* 残りのスペースを埋める */
}

/* 開いたときに背景が全体を覆うように、wrapperに背景を適用 */
details[open] .answer-wrapper {
    background-color: #E8F1FC;
}

/* 開いたときの回答テキストのスタイルを調整（A.と薄いピンクの背景の整合性のため） */
details[open] .answer-wrapper {
    /* パディングをwrapperに移動し、回答テキスト全体がピンクの背景になるように調整 */
    padding: 30px 20px;
	border-radius: 10px;
    background-color: #E8F1FC;
	margin: 20px 60px;
}

details[open] .answer-wrapper .answer-content {
    background-color: transparent; /* 背景色を透明に戻す */
    padding: 0; /* paddingも不要 */
	width: 90%;
	overflow-wrap: anywhere;
}

    /* 767px以下の画面幅での調整 */
    
    .faq-container {
        padding: 1px 10px; /* パディングをさらに狭く */
    }

    /* summary (質問) のパディングを調整し、要素を詰めすぎないようにする */
    summary {
        padding: 12px 15px;
        font-size: 15px;
    }

    /* Q.のデコレーションのサイズも少し調整 */
    summary .FAQ_deco {
        font-size: 1.1em;
        margin-right: 8px;
    }

    /* アイコンのサイズ調整 */
    .icon {
        width: 18px;
        height: 18px;
        font-size: 18px;
    }

    /* 回答ラッパー（開いた状態）のパディングを調整 */
    details[open] .answer-wrapper {
        padding: 12px 15px;
		margin: 15px 20px;
    }
    
    /* 回答テキストのフォントサイズ調整 */
    .answer-content {
        font-size: 14px;
    }
	/*----------footer----------*/
footer{
	background: #fff;
	padding-top: 60px;
	padding-bottom: 20px;
	text-align: center;
}
footer .logo{
	margin: 0 auto 20px;
	text-align: center
}
footer img{
	width: auto;
}
.copyright{
	font-size: 1.3rem;
}
.footer_note{
width: 100%;
}
}
