@charset "UTF-8";

html,body {
	overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

.fix_btn {
	display: none;
}

body{
	font-family: "LINE Seed JP", sans-serif;
	min-width: 1100px;
	margin: 0 auto;
	color: #4b4b4b;
	background: #F9F9F9;
	transition: background-color 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), 
              transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}	

#opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
	overflow: hidden;
}

.opening-content {
  text-align: center;
  z-index: 2;
}

.opening-text {
  font-size: 1.5rem;
  letter-spacing: 5px;
  color: #4b4b4b;
  opacity: 0;
  margin-bottom: 20px;
  font-family: "Federo", sans-serif;
}

.opening-line {
  width: 0%;
  height: 1px;
  background-color: #4b4b4b;
  margin: 0 auto;
}

/* SVGマスクの設定 */
.opening-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: destination-out; /* 背景を円形に切り抜く設定 */
}

#opening {
  background-color: #fff;
  /* destination-outを機能させるためにコンテナを分離 */
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  height: auto;
  background-color: rgba(255, 255, 255, 0.85); /* ほんのり透ける白 */
  backdrop-filter: blur(10px); /* 背後をぼかすと高級感が出ます */
  /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05); */
  z-index: 1000;
  
  /* 初期状態：上に隠す */
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* スクロール後に付与するクラス */
.site-header.is-show {
  transform: translateY(0);
}

/* レイアウト用 */
.fix-header-inner {
  max-width: 96%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  min-width: 1100px;
}

.fix-header-inner .header_logo {
    font-size: 1.6rem;
}

#fix-header .header_contact a {
    padding: 10px 25px!important;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    min-width: 1200px;
    position: absolute;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    z-index: 99;
}

.header_logo {
    font-family: "Federo", sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
}

.header_logo a {
    display: block;
    font-size: 2rem;
    color: #4b4b4b;
}

ul.header_menu {
    display: flex;
    align-items: center;
}

ul.header_menu li a {
    display: flex;
    color: #4b4b4b;
    align-items: center;
	background-image: linear-gradient(#4b4b4b, #4b4b4b);
	  background-repeat: no-repeat;
	  background-position: bottom right;
	  background-size: 0 1px;
	  transition: background-size 0.3s;
}

ul.header_menu li a:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}

ul.header_menu li {
    margin: 0 15px;
}

.header_contact a {
    padding: 12px 30px;
    background: #293B6C;
    color: #fff!important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: color 0.3s ease;
    isolation: isolate;
	border-radius: 100px;
}

.header_contact a::before {
  content: '';
  position: absolute;
  inset: 0;
   background: #556695;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
	border-radius: 100px;
}

.header_contact a:hover {
  color: #fff;
}

.header_contact a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

ul.header_menu li a img {
    width: 20px;
    margin-right: 10px;
}

ul.product_cta li a img {
    width: 20px;
    margin-right: 10px;
}

ul.header_menu li:last-child {
    margin-right: 0;
}

.product_inner {
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 50px 100px;
    backdrop-filter: blur(20px);
    border-radius: 40px;
    z-index: 999;
    background: rgba(255,255,255,0.3);
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}


ul.product_cta li:first-child a {
    background: #293B6C;
    color: #fff!important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: color 0.3s ease;
    isolation: isolate;
    border-radius: 100px;
}

ul.product_cta li:first-child a::before {
  content: '';
  position: absolute;
  inset: 0;
   background: #556695;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
	border-radius: 100px;
}

ul.product_cta li:first-child a:hover {
  color: #fff;
}

ul.product_cta li:first-child a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}


ul.product_cta li:last-child a {
    color: #4b4b4b;
    box-shadow: 0 7px 14px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

ul.product_cta li:last-child a:hover {
    transform: scale(1.025);
}

ul.product_cta li {
    margin-right: 10px;
}

.product_image {
    width: 35%;
}

.product_contents {
    width: 57%;
}

.product_contents h2 {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 2.5rem;
    line-height: 3.5rem;
    margin: 30px 0 10px;
}

.comparison_inner h2 {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 4rem;
    line-height: 6rem;
    margin: 50px 0;
}

.product_price {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 3rem;
}

.product_contents p {
    margin: 30px 0;
    font-size: 1.5rem;
    line-height: 3rem;
    text-align: justify;
}

.product_annotation {
    font-size: 1.1rem;
    line-height: 2.2rem;
    text-align: justify;
}

ul.product_cta {
    display: flex;
    margin: 30px 0;
}

ul.product_cta li a {
    display: flex;
    padding: 16px 35px;
    align-items: center;
    border-radius: 100px;
}

.sec_title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    width: max-content;
    letter-spacing: 1px;
    margin: 0 auto 30px;
}

.sec_title:after {
    width: 50px;
    height: 1px;
    display: block;
    margin: 20px auto 0;
    content: "";
    background: #4b4b4b;
}

article.privacy-policy {
    max-width: 1100px;
    margin: 0 auto;
    padding: 200px 0 100px;
}

section.privacy-policy__section {
    margin: 80px 0;
}

section.privacy-policy__section h2 {
    font-size: 2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-weight: bold;
}

section.privacy-policy__section p {
    line-height: 2.5rem;
    font-size: 1.4rem;
}

section.privacy-policy__section ul li {
    margin: 20px 0;
    line-height: 2.5rem;
    border-left: 2px solid #ddd;
    padding-left: 10px;
}

section.privacy-policy__section ul {
    background: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    margin: 30px 0;
}

p.pp_intro {
    line-height: 2.5rem;
}

h1.pp_title {
    font-size: 4rem;
    margin-bottom: 60px;
}

section.privacy-policy__section p a {
    color: #293B6C;
    text-decoration: underline;
    font-size: 1.4rem;
}

footer {
    padding: 150px 5% 0;
}

ul.footer_bottom_menu li a img {
    width: 19px;
    display: block;
    margin-left: 6px;
}

.footer_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e5e5;
    padding: 100px 0 0;
}

a.pagetop {
    border-top: 1px solid #4b4b4b;
    display: block;
    width: 60px;
}

a.pagetop:after {
    width: 40px;
    height: 40px;
    content: "";
    display: block;
    border-top: 1px solid #4b4b4b;
    border-right: 1px solid #4b4b4b;
    transform: rotate(-45deg);
    margin: 8px auto 0;
}

.footer_logo {
    font-size: 4rem;
    font-family: "Federo", sans-serif;
    letter-spacing: 6px;
    font-weight: 700;
}

ul.footer_menu_box li a {
    color: #4b4b4b;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

ul.footer_menu_box li {
    margin-bottom: 20px;
}

.footer_menu {
    display: flex;
    padding: 50px 0 100px;
}

ul.footer_menu_box {
    width: 30%;
}

ul.footer_menu_box li:last-child {
    margin-bottom: 0;
}

ul.footer_bottom_menu {
    display: flex;
    align-items: center;
}

ul.footer_bottom_menu li a {
    color: #4b4b4b;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
	background-image: linear-gradient(#4b4b4b, #4b4b4b);
	  background-repeat: no-repeat;
	  background-position: bottom right;
	  background-size: 0 1px;
	  transition: background-size 0.3s;
}

ul.footer_bottom_menu li a:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}

ul.footer_bottom_menu li {
    margin-right: 30px;
}

.footer_bottom {
    padding: 5% 0;
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

small {
    font-size: 1.1rem;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.5px;
    opacity: 0.4;
}

.footer_bottom_last {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-end;
}

.footer_company_logo {
    margin-bottom: 20px;
    width: 120px;
}

section.footer_product {
    position: relative;
}

section.footer_product:after {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(0deg, rgba(249,249,249,1) 20%, rgba(249,249,249,0) 100%);
    bottom: -5%;
    left: 0;
    width: 100%;
    height: 60%;
}

.footerproduct_bg {
    width: 100%!important;
}

.footer_product .product_inner {
}

.arrow {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 1px;
  margin: 0 7px 0 0;
  border-radius: 9999px;
  background-color: #4b4b4b;
  transition: .3s;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #4b4b4b;
  transform-origin: calc(100% - 0.5px) 50%;
}

.arrow::before {
  transform: rotate(43deg);
}

.arrow::after {
  transform: rotate(-43deg);
}

ul.footer_menu_box li a:hover .arrow {
    width: 18px;
}

.pc_disp {
	display: block;
}

.sp_disp {
	display: none;
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {

.pc_disp {
	display: none;
}

.sp_disp {
	display: block;
}
	
body {
    min-width: inherit;
}

header {
    padding: 10px 5%;
    min-width: 100%;
    border-bottom: 1px solid #ddd;
    color: #fff;
}
	
ul.header_menu {
    display: none;
}

.header_logo a {
    font-size: 1.5rem;
    letter-spacing: 4.5px;
}

.fix-header-inner .header_logo {
    margin: 4px auto;
    color: #000;
}

.fix-header-inner {
    min-width: 100%;
}

.product_inner {
    width: 92%;
    border-radius: 15px;
    display: block;
    padding: 6%;
}

section.footer_product:after {
    bottom: -40%;
}

section.product {
    margin-top: -8%;
}

.product_image {
    margin: 0 auto;
    width: 50%;
}

.product_contents {
    width: 100%;
}

.product_contents h2 {
    font-size: 2rem;
    text-align: center;
    line-height: 3.5rem;
    margin: 20px 0 10px;
}

.product_sec_title {
    margin: 0 auto;
}

.product_price {
    text-align: center;
}

.product_contents p {
    font-size: 1.3rem;
    line-height: 2.5rem;
    color: #888;
    margin: 20px 0;
}

ul.product_cta {
    display: block;
    margin: 20px 0;
}

ul.product_cta li a {
    justify-content: center;
}

ul.product_cta li {
    margin-right: 0;
    margin-bottom: 15px;
}

.product_annotation {
    font-size: 1rem;
    line-height: 1.8rem;
    color: #888;
}

.header_logo {
    font-size: 1.5rem;
    letter-spacing: 4.5px;
    margin: 10px auto;
}

.sec_title {
    font-size: 1.25rem;
}

.product_sec_title:after {
    margin: 20px auto;
}
	
article.privacy-policy {
    padding: 130px 5% 10px;
}

h1.pp_title {
    font-size: 2.2rem;
    text-align: center;
}

section.privacy-policy__section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

section.privacy-policy__section {
    margin: 40px 0;
}

section.privacy-policy__section ul {
    margin: 20px 0;
    padding: 1px 5%;
}

section.privacy-policy__section ul li {
    margin: 15px 0;
    font-size: 1.3rem;
    line-height: 2rem;
}

section.privacy-policy__section p {
    font-size: 1.3rem;
    line-height: 2.5rem;
}

section.privacy-policy__section p a {
    font-size: 1.3rem;
}

section.footer_product {
    margin-top: 50px;
    height: 300px;
}

.footer_logo {
    font-size: 2.4rem;
    letter-spacing: 4px;
}

.footer_head {
    text-align: center;
    padding: 150px 0 0;
}

a.pagetop {
    margin: 16px 0 0;
    width: 45px;
}

.footer_menu {
    padding: 30px 0 15px;
    display: block;
}

ul.footer_menu_box {
    width: 100%;
    margin-bottom: 15px;
}

a.pagetop:after {
    width: 30px;
    height: 30px;
}

ul.footer_menu_box li {
    margin-bottom: 25px;
}

ul.footer_menu_box li a {
    font-size: 1.3rem;
}

.footer_bottom {
    padding: 10% 0;
    display: block;
}

footer {
    padding: 450px 6% 0;
}

.footer_bottom_last {
    width: 100%;
    display: block;
    flex-direction: inherit;
}

ul.footer_bottom_menu {
    width: 100%;
    display: block;
}

ul.footer_bottom_menu li {
    margin-right: 0;
    margin-bottom: 25px;
}

.footer_company_logo {
    margin: 50px 0 10px;
    display: block;
    width: 130px;
}

small {
    font-size: 1rem;
}

.fix_btn {
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 0 0 15px 0;
    left: 0;
    z-index: 9998;
    display: block;
}

.fix_btn a {
    display: flex;
    width: 78%;
    margin: 0 auto;
    text-align: center;
    background: #293B6C;
    color: #fff;
    border-radius: 100px;
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
    padding: 13px 0;
}

.fix_btn a img {
    width: 24px;
    margin-right: 10px;
}
}