@charset "UTF-8";

/* ===============================================
共通部分
=============================================== */
/* * {
	border: 1px solid pink;
} */
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0.06em;
    line-height: 1.8;
	background-color: #FFFFFF;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt";
	color: #272727;
}

*,::before,::after {
	box-sizing: border-box;
}

.container {
	padding: 0 16px;
	max-width: 1200px;
	margin: 0 auto;
}

a{
	color : inherit;
	text-decoration: none;
	cursor:pointer ;
	opacity: 1;
 
}

a:hover{
	opacity: 0.8;
}




img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
	object-fit: cover;
}

main {
	padding-top: 80px;
}  

ol, ul {
	list-style: none;
    margin: 0;
    padding: 0;
}
.logo {
	line-height: 17px;
	letter-spacing: normal;
}

.container .title_terms_content {
	margin-top: 10px;
	margin-bottom: 10px;
}
.container h1.main_page_title {
	font-size: 29px;
	font-weight: bold;
}

.h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

.btn_container {
	display: flex;
	justify-content: center; /* 横方向のセンター */
	align-items: center;     /* 縦方向のセンター（親要素の高さが設定されている場合） */
  }
  
.btn{
	align-items: center;
	background-color: #3A7CA5;
	color: #FFFFFf;
	padding: 10px 16px;
	width: min(44vw, 300px);
	text-align: center;
}  
/* ===============================================
ヘッダーのスタイリング
=============================================== */
.header {
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: #fff;
  }
  .header_container {
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: inherit;
	color: #1F4E79;
	padding: 0 25px;
	margin-right: auto;
	margin-left: auto;
	align-items: center;
  }
  .header_menu_left img.logo {
	width: 50%;
  }
  .header_logo a {
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
  }
  .only_PC {
	display: none;
  }

  @media screen and (min-width:920px) {
    /*　画面サイズが1024pxからはここを読み込む　*/
	/* headerrのスタイリング
  =============================================== */
  
  .header_menu_left img.logo {
	width: 100%;
  }


  }

  
  /* ===============================================
  ハンバーガーボタンのスタイリング
  =============================================== */
  input[type="checkbox"] {
	opacity: 0;
	visibility: hidden;
	position: absolute;
  }
  .hamburger {
	display: block;
	width: 50px;
	height: 80px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
  }
  .hamburger span,
  .hamburger span::before,
  .hamburger span::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 2px;
	background-color: #1F4E79;
	transition: all 0.5s;
  }
  .hamburger span::before {
	top: -10px;
  }
  .hamburger span::after {
	bottom: -10px;
  }
  input[type="checkbox"]:checked + .hamburger span {
	background-color: transparent;
  }
  input[type="checkbox"]:checked + .hamburger span::before {
	top: 0;
	transform: rotate(45deg);
  }
  input[type="checkbox"]:checked + .hamburger span::after {
	bottom: 0;
	transform: rotate(-45deg);
  }
  
  /* ===============================================
  メニューのスタイリング
  =============================================== */
  .nav_content01,
  .nav_content02 {
	padding: 0 30px;
	max-width: 1200px;
	margin: 0 auto;
	
  } 
  .nav_content02 {
	margin-top: 30px;
	
  }

  .nav_content02 a {
	display: block;
	font-size: 14px;
	padding-bottom: 5px;
	letter-spacing: 0.03em;

  }

  .nav {
	position: fixed;
	top: 80px;
	right: -200%;
	color: #1F4E79;
	padding: 50px 20px;
	transition: all 0.5s;
	width: 100%;
    height: 88%;
    background-color: #F5F5F5;
    border-bottom-left-radius: 100px;
	
  }
  .nav_item a {
	display: block;
	font-size: 20px;
	text-transform: uppercase;
    width: 100%;
    margin-top: 10px;
    padding-bottom: 10px;
	padding-top: 20px;
  }

  
  
  input[type="checkbox"]:checked ~ .nav {
	right: 0;
	
  }

  li.nav_item a{
	display: block;
	position: relative;
	text-decoration: none;
	font-weight: bold;
  }
  
  nav li.nav_item a::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color:#1F4E79;
	transition: all .6s ease 0.5s;
}
nav li.nav_item a::before {
	content: '';
    /*絶対配置で矢印の位置を決める*/
  position: absolute;
    top:42%;
    right: 13px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #1F4E79;
    border-right: 2px solid #1F4E79;
    transform: rotate(45deg);
    
}

input[type="checkbox"]:checked ~ .nav li.nav_item ::after{
	width: 100%;
  }



/* ===============================================
フッターのスタイリング
=============================================== */


footer {
    background-color: #003366;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .footer_logo{
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
}

footer .footer_logo a{
	font-size: 18px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    justify-content: center;
    gap: 20px;
}

footer ul li {
    margin: 0;
}

footer ul li a {
    text-decoration: none;
    color: #fff;
}

footer .footer_menu_wrapper li {
	margin-top: 20px;
}
footer .footer_privacy_wrapper {
	margin-top: 20px;
    padding-top:20px;
    border-top: 1px solid rgba(208, 208, 208, 0.5);
    color: rgba(243, 243, 243, 0.8);
    letter-spacing: 0.03em;

}

@media screen and (min-width:920px) {
    /*　画面サイズが1024pxからはここを読み込む　*/
	/* footerのスタイリング
  =============================================== */
footer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    /* display: grid; */
    display: flex;
    justify-content: center;
    /* grid-template-columns: 2fr 1fr; */
    /* justify-content: center; */
    gap: 20px;

}

}

/* ===============================================
TOPのスタイリング
=============================================== */

.bg_top {
	background-image: url(../images/bg-top.png);
    background-repeat: no-repeat; 
}

.bg_bottom {
	background-image: url(../images/bg-bottom.png);
	background-position: center bottom;
    background-repeat: no-repeat; 
}



.top_main_title {
	padding: 71px 40px 19px;
	text-align: center;
}

.top_main_title h1 {
	line-height: 1.4;
    margin-bottom: 12px;
}



.top_main_image {
	width: 70%;
    margin: auto;
    padding-bottom: 61px;
}







/* スライダー */
.slide_wrapper {
	margin-top: 50px;
}
.top_slide_area {
    width: 100%;
    margin: 0 auto;
}

.top_slider_child {
	padding: 0 20px;/* スライド左右の余白調整 */
}

.ranking_title {
	display: inline-block;
	border-bottom: 1px solid #333333;
	padding-bottom: 5px;
}
/* インフォメーション */
.info_wrapper {
	background-color:#F5F5F5;
	padding-left: calc((35 / 375)* 100vw);
	padding-right: calc((35 / 375)* 100vw);
	padding-bottom: 24px;
	margin-top: 65px;
}
.info_wrapper.info_list {
	margin-bottom: 40px;
}

.tag_area {
	position: relative;
}

.info_list:first-child .tag_area::after{
	content: "";
	display: block;
	width: max(5.997vw, 40px);
	height: max(5.997vh, 40px);
	background-image: url(../images/new.png);
	background-size: contain;
	background-position: center; 
  	background-repeat: no-repeat;
	position: absolute;
	top: -16px;
    right: 125px;
}

.info_list_thumbnail {
	width: 50%;
	text-align: center;
	overflow: hidden;
    border-radius: 14px;
	
}

.info_list_text {
	font-size: 12px;
	border-left: #003366 1px solid;
	padding-left: 10px;
	margin: 12px 0 20px;
}

.info_list_text .news_date {
	color: #1F4E79;
	font-size: 12px;
}
.info_list_text h3 {
	font-size: 16px;
	font-weight: 300;
	padding-bottom: 5px;
}

.info_list_text .description {
	line-height: 20px;

}



  /* ===============================================
  プラポリのスタイリング
  =============================================== */
.privacy_policy_content_wrapper{
	background-color: #F5F5F5;
    border-radius: 12px;
    padding: 16px 22px;
	margin-bottom: 35px;
}

h3.privacy_policy_title {
    font-weight: bold;
	margin-top: 32px;
	display: flex;
	font-size: 18px;
}

h3.privacy_policy_title span {
	font-weight:  bold;
}
h3.privacy_policy_title .number01{
	width: min(9.746666vw, 55.55px);
}
h3.privacy_policy_title .text01{
	width: calc(100% - min(9.746666vw, 55.55px));
}
h3.privacy_policy_title .number{
	width: min(15.08888vw, 56.55px);
}
h3.privacy_policy_title .text{
	width: calc(100% - min(15.08888vw, 56.55px));
}

p.privacy_policy_text {
	padding: 10px;
}



/* ===============================================
  利用規約のスタイリング
  =============================================== */
.terms_content_wrapper {
	background-color: #F5F5F5;
    border-radius: 12px;
	padding: 16px 22px;
	margin-bottom: 40px;
}

.title_terms_content {
	padding: 16px 22px
}
  h3.terms_title {
    font-weight: bold;
	margin-top: 32px;
	font-size: 18px;
	border-bottom: 2px solid #3A7CA5;
	padding-bottom: 5px;
}
#terms_list .terms_content_wrapper li {
	margin-top: 10px;
	line-height: 1.5;
    margin-left: 16px;
	list-style-type: "・";
}
#terms_list .terms_content_wrapper li::marker {
	color:#003366;
	font-size: 1.5em;
	text-align: center;
  }


  /* ===============================================
  お問い合わせのスタイリング
  =============================================== */

  .contact_form_wrapper {
	background-color: #F5F5F5;
    border-radius: 12px;
	padding: 16px 22px;
	margin-top: 20px;
	margin-bottom: 80px;
  }

  .contact_form_wrapper .input_field .item input {
	width: 100%;
    height: 45px;
    padding: 10px;
    border-radius: 8px;
    background: #fff !important;
	border: 1px solid #dfdedf;
  }

  .contact_form_wrapper .input_field .item:not(:first-of-type) {
	margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #D0D0D0;
  }

  .contact_form_wrapper .input_field .item textarea {
	width: 100%;
    height: 11rem;
    padding: 10px;
    border-radius: 8px;
    background: #fff !important;
    resize: both;
	border: 1px solid #dfdedf;
  }
  

/* ボタンのスタイリング   */

  .btn_container {
	margin-top: 26px;
	margin-bottom: 26px;
	text-align: center;
  }

  .c-link_btn input[type="submit"] {
    min-width: 269px;
    height: 100%;
	margin: 0 auto;
	border-radius: 4vw;
	font-size: 16px;
	box-shadow: 3px 3px 3px #9f9f9f;
	border: none;
	outline: none;
	padding: 14px;
	background-color: #3A7CA5;
	color: #FFFFFf;
  }

/* ===============================================
  初めての方へのスタイリング
  =============================================== */
 
.sub_title_content {
	margin-top: 10px;
	margin-bottom: 26px;
	
 } 
.sub_title_content h2.sub_title {
	font-size: 18px;
	font-weight: 800;
	padding-bottom: 5px;
  }

.sub_title_content p {
	line-height: 1.75;
    letter-spacing: .05em;
}

.flow_colum_block {
	padding: 10px;
}
h3.flow_colum_title {
	font-weight: bold;
	margin-top: 10px;
    margin-bottom: 10px;
}

/* .flow_colum_content .flow_colum_image {
	text-align: center;
	width: 100%;
	aspect-ratio: 1000/580;
	
}

.flow_colum_content .flow_colum_image img {
	width: 100%;
	height: 100%;
    display: block;
	aspect-ratio: 1000/580;
} */


.flow_area .sub_title_content {
	text-align: center;
}
.flow_colum_box h3.flow_colum_box_title {
	margin-bottom: 10px;
	font-size: 18px;
    font-weight: 900;
	letter-spacing: -0.01em;
}

.flow_container_block .flow_colum_box {
	background-color: #F3F3F3;
    border-radius: 1.5rem;
    padding: 16px 22px;
	margin-bottom: 20px;
}
.flow_container_block .flow_content {
	margin-bottom: 20px;
	display: flex;
    flex-direction: column;
    align-items: center;
	text-align: center;
}
.flow_container_block .flow_content:not(:last-child):after {
    content: "";
    transform: translateX(0%) rotate(135deg);
    display: block;
    border-style: solid;
	color: #F7A072;
    border-width: 2px 2px 0 0;
    width: 20px;
    height: 20px;
}

.flow_colum_image img {
	margin-top: clamp(1.375rem, 1.069rem + 1.306vw, 2.375rem);
	margin-bottom: clamp(1.375rem, 1.069rem + 1.306vw, 2.375rem);
    border-radius: 1.25rem;
    overflow: hidden;
}

/*------- sticky_areaのスタイリング ------------*/

.p_name_area {
	overflow: hidden;
	position: sticky;
    top: 0;
    z-index: -1;
	margin: 0 calc(50% - 50vw);
    width: 100vw;
}

.p_name_area .p_name_wrap .p_name_flex {
	--loop-duration: 15s;
	--loop-width: 400px;
	display: flex;
	animation: scroll-mv-name var(--loop-duration, 126s) linear infinite;
	opacity: 0.1;
}
@keyframes scroll-mv-name {
	0%{ transform :translateX(0%);}
	100%{ transform :translateX(calc(var(--loop-width)* -1));}
  }
  .p_name_area .p_name_wrap .p_name_flex p.name_item {
	font-size: 5.5rem;
	font-family: math;
	flex-shrink: 0;
    white-space: nowrap;
    color: var(--color);
    padding-top: 40px;
	margin: 0;
	margin-right: 50px;
    transition: color 6000ms ease;
	color: #738eff;
	display: inline-block;
  }
/*------- --------------------------- ------------*/

@media screen and (min-width:920px) {
    /*　画面サイズが1024pxからはここを読み込む　*/
	/* 初めての方へのスタイリング
  =============================================== */
  .flow_area .sub_title_content {
	text-align: left;
} 
.sub_title_content h2.sub_title {
	font-size: 40px;
}

  .flow_colum_content .flow_colum_image img {
	width: 308px;
	height: 205px;
  }

  .flow_container {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 3列を等分に配置 */
	gap: 70px; /* カラム間のスペース */
	padding: 20px;
  }

  .flow_colum_box {
	display: grid;
	grid-template-columns: 2fr 1fr; /* flow_textが広くなるように設定 */
	gap: 20px; /* カラム間のスペース */
	align-items: center; /* コンテンツを中央揃え */
	padding: 20px;
  }

  .flow_text {
	text-align: left;
	padding: 0 60px;
  }


}




/* ===============================================
  テンプレート詳細のスタイリング
  =============================================== */
.product_details {
	margin-bottom: 60px;
	margin-top: 32px;
}

.color_list .choice-btn svg {
	outline: none;
}

.checkbox {
    cursor: pointer;
	stroke: white;
  }
.hidden {
    display: none;
  }


.container .product_details .color_list {
	display: flex;
	gap: 7px;
	margin-top: 10px;
	align-items: center;
}

.container .product_details .color_list h3 {
	font-size: 14px;
}

.product_info .product_title_area h2.product_title {
	font-size: 25px;
}

/* ボタンのスタイリング */
.buy-button_area a.buy-button {
	background: #3A7CA5;
    color: #fff;
    width: 100%;
    height: min(16vw, 60px);
    padding: min(5.066666666666666vw, 19px);
    font-size: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 4vw;
}

.detail_text h2 {
	display: inline-block;
	padding: 8px;
	margin-bottom: 10px;
	font-weight: bold;
	border-bottom: #333333 solid 1px;
}

/* 商品紹介エクスパンドテキストのスタイリング  */

#text-container {
	text-align: center; /* テキストとボタンを中央に配置 */
  }
  
  #hidden-text {
	display: none;
  }
  
  #hidden-text.expanded {
	display: block;
  }
  
  .readmore {
	overflow: hidden;
	position: relative;
  }
  
  .readmore::after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 5em;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, #fff 100%);
	pointer-events: none;
  }
  
  .readmore.expanded::after {
	display: none;
	background: none;
  }
  
  button {
	border: none;
	background: none;
	border-bottom: solid 1px #333;
	cursor: pointer;
	margin-top: 10px;
	font-size: 16px;
	padding: 5px 10px;
  }
  


/* item detailsのスタイリング */

.item_detail_area {
	margin-top: 24px;
	margin-bottom: 24px;
}

.description_list .normal_text {
	display: block;
	padding: 8px;
	margin-bottom: 10px;
	font-weight: bold;
	border-bottom: #333333 solid 1px;

}
.detail_activity_list {
	display: flex;
	gap: 10px;
}
.detail_activity_item {
	padding-bottom: 30px;
}
.detail_activity_item_text {
	background: #F7A072;
    height: 10px;
    padding: 18px;
    font-size: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

/* recommended-templatesのスタイリング */
.recommended_templates {
	margin-bottom: 120px;

}
.sub_feature_title {
	margin-bottom: 20px;
	text-align: center;
}

.sub_feature_title span {
	font-weight: bold;
}
/* ___slider_area スタート___ */

.slider_container {
	width: 100vw; /* 画面全体の幅 */
	overflow: hidden;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.slider_area {
	margin-bottom: 10px;
}
	
.slider_child {
  margin: 0 10px;
}
.slide_list_wrapper p.slide_list_text {
	font-size: 13px;
}


@media screen and (min-width:920px) {
    /*　画面サイズが1024pxからはここを読み込む　*/
	/* テンプレート詳細のスタイリング
  =============================================== */
.sub_feature_title span {
    font-size: 22px;
}

  .product_details {
	display: flex;
	gap: 40px;
	margin-top: 39px;
}

.product_details_left,
.product_details_right {
	flex: 1; /* 各カラムが均等に幅を取る */
}


.product_details_left {
    max-width: 40%; /* 左カラムの最大幅を設定（任意） */
}

.product_details_right {
    max-width: 60%; /* 右カラムの最大幅を設定（任意） */
}

.buy-button_area {
	display: inline-block;
}
.slider_area {
    max-width: 1200px; /* PC画面に合わせた最大幅 */
	margin: 0 auto;
  }

  .slider_child {
    flex: 0 0 25px; /* PC画面ではスライドを小さくする */
  }

  .slide_list_img img {
	width: 100%; /* 画像をスライドの幅に合わせる */
  }
  
  .slide_list_text {
	text-align: center;
	font-size: 16px;
  }
  
}





/* ===============================================
  home詳細のスタイリング
  =============================================== */
 /* home共有部分 */
 .heading {
	text-align: center;
	margin-bottom: 20px;
	padding-top: 20px;
}

.heading p {
	margin-top: -8px;
}
  
  /* ここから新着テンプレートです */
.template_wrapper {
	margin-top: 40px;
	margin-bottom: 40px;
}

.list_item_conteiner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}

.list-item{
	flex: 1 1 calc(50% - 20px);
}

.list-image {
    overflow: hidden; /* 画像が親要素をはみ出さないように隠す */
}

.list-image img {
	width: 100%; /* 画像が親要素にフィットするように設定 */
    display: block; /* 画像の下に余白が入らないように設定 */
    transition: transform 0.3s ease-in-out; /* アニメーションの設定 */
}

.list-image:hover img {
    transform: scale(1.1); /* ホバー時に画像をズームイン */
	
}

.c-inner {
font-size: 12px;
}


 /* ここからよくある質問です */
  .qa_wrapper {
	background-color: #F5F5F5;
	padding: 60px 35px;
}

.sectionQuestions {
	padding-top: 24px;
    padding-bottom: 60px;
	/* ここはサイズが変わるごとに変更できるように */
	padding-left: calc((35 / 375)* 100vw);
	padding-right: calc((35 / 375)* 100vw);
}

.questionBlocks {
	border-top: 2px solid #000;
}


.questionBlocks_item {
	border-bottom: 2px solid #000;
}

.faqQuestion {
	padding-top: 24px;
	font-size: 14px;
	position: relative;
	padding-right: 8px;
    padding-left: 8px;
	font-weight: 600;
	
}

.faqQuestion .question {
	padding-bottom: 24px;
    padding-right: 24px;
	position: relative;
    z-index: 1;
    cursor: pointer !important;
}

.faqQuestion .question:hover {
	opacity: 0.5;
}

/* ここはトグルゾーン */
.faqQuestion .questionToggle {
	position: absolute;
	transition-duration: .8s;
    transform-origin: center center;
    cursor: pointer;
	top: 24px;
        right: 0;
        width: 20px;
        height: 20px;
}
.faqQuestion .questionToggle.open {
    transform: rotate(135deg);
}


.faqQuestion .questionToggle span {
    position: absolute;
    display: block;
    height: 2px;
    width: 20px;
    background-color: #000;
}

.faqQuestion .questionToggle span:nth-of-type(1) {
	top: 8px;
	transform: translateY(2px);
}

.faqQuestion .questionToggle span:nth-of-type(2) {
	top: 12px;
	transform: translateY(-2px) rotate(90deg);
}

/* ここはアンサーゾーン */
.js-faq-answer-container {
	/* jsで開くようにするから一旦隠しておく */
	transition-duration: 0.8s;
    overflow: hidden;
	height: 0px;
}

.faqQuestion .answerFlexContainer {
	flex-direction: column;
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.js-faq-answer-content {
    opacity: 0;
    transition-duration: 0.3s;
    transition-delay: 0.5s;
}

.js-faq-answer-content.show {
    opacity: 1;
}
.faqQuestion .answer {
	float: none;
	margin-bottom: 15px;
	flex: 1 1 auto;
}


/* ===============================================
   home PCサイズに合わせたスタイル
  =============================================== */

  @media screen and (min-width:920px) {
    /*　画面サイズが1024pxからはここを読み込む　*/
	/* home詳細のスタイリング
  =============================================== */
  .only_SP {
	display: none !important;
  }
  .only_PC {
	display: block;
  }

  .header_menu_right ul {
	display: flex;      
  }
  
  .header_menu_right li {
	margin-right: 20px;  
	padding-right: 20px;
	border-right: 1px solid #000;  
  }
  
  .header_menu_right li:last-child {
	margin-right: 0; 
	border-right: none;     
  }
  
  .header_menu_right li :hover{
	border-bottom: #003366 solid 1px;
  }

  .slide_wrapper {
    margin-top: 36px;
}
  .top_slide_area {
	height: 825px;
	width: 100%;
  }

  .top_slider_child img {
	width: 337px;
	height: 599px;
  }

  
  .top_slider_child {
    width: 500px !important; /* 強制的に幅を固定 */
    padding: 30px !important; /* パディングを強制的にゼロ */
    box-sizing: border-box;
}

.info_flex {
	display: flex;
	justify-content: center;
}

.list-item {
    flex: 1 1 calc(33.333% - 40px); /* 3つ横並びにするための設定 */
    margin-bottom: 40px; /* 下のアイテムとの間隔 */
}

.sectionQuestions {
	/* padding-top: 24px; */
    padding-bottom: 60px;
	/* ここはサイズが変わるごとに変更できるように */
	padding-left: calc((295 / 1440)* 100vw);
	padding-right: calc((295 / 1440)* 100vw);
}

.faqQuestion .answerFlexContainer {
	align-items: flex-start;
}

.qa_wrapper {
	padding: 60px 35px;
}

  }