@charset "utf-8";
/*
Theme Name: simplex
Theme URI: https://example.com/simplex
Author: SIMPLE Inc.
Author URI: https://simple.jp.net/
Description: “とてもすごい simple” を目指した超ミニマルテーマ
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: sugoi-simple
*/
/* ベース（必要最低限） */
:root {
    /*color*/
    --main-colorA:#d4919e;/*黒ベースに使う薄いほう*/
    --main-colorB:#642841;/*白ベースに使う濃いほう*/
    --color-soft: #f5f5f3;/* 汎用：やわらかい背景 */

    --sub-color:white;
    --en-t:"Lora", "Noto Serif JP", serif;
}
.en-t {
  font-family: "Lora", "Noto Serif JP", serif;
  font-weight: 500; /* デザインに合わせて */
}

* {
	box-sizing: border-box;
}


body {
  font-family: "Noto Serif JP", serif;
  font-weight: 500; /* Medium */
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.025em; /* デザインの「25」を再現 */
  color: var(--sub-color);
    

  /* 画像の指定 */
  background-image: url("img/common/bk_mini.jpg");
  
  /* 中央配置 */
  background-position: center center;
  
  /* 繰り返しなし */
  background-repeat: no-repeat;
  
  /* 【重要】全面表示：画面の比率が変わっても隙間なく埋める */
  background-size: cover;
  
  /* 【重要】固定：スクロールしても背景が動かない */
  background-attachment: fixed;

  /* 高さが足りない場合に備えて最低限の表示領域を確保（任意） */
  min-height: 100vh;
}

a {color: var(--main-colorA);}

/*body {
	margin: 0;
	font: 16px/1.7 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans JP", sans-serif;
}*/
.wrapper {
	width: min(100%, var(--max));
	margin: auto;
	padding:0;
}
.site-title a {
	text-decoration: none;
	color: inherit;
}
main {
	display: block;
}
img {
	max-width: 100%;
	height: auto;
}
/*波線を実現するためのマスク指示*/
    .u-mask{
        
  /* マスクの設定：全体を覆い、中央下に配置（波の部分を下に合わせる場合） */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%; /* 画面幅いっぱいに引き伸ばす設定 */
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
    }


/*header*/
    header.c-header{
        position: fixed;
        top: 0;
        width: 100%;
        background-color: var(--main-color);
        z-index: 100;
        background-image: url("img/common/header-bg.png");
        /*aspect-ratio: 1920 / 237;*/
        height: 220px;
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size: cover;

        
    }




/*faq関連CSS*/

        .faq-section-inner {
            
            max-width: 800px;
            margin: 50px auto;
            
            /*background-color: #f9f7f2;*/
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
            font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
            color: #333;
        }

        .faq-item {
            border-bottom: 1px solid #ccc;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            width: 100%;
            padding: 25px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            background: none;
            border: none;
            text-align: left;
            font-size: 16px;
            /* 念のため */
            outline: none;
        }

        .faq-question::before {
            content: "Q.";
            color: var(--main-colorB);
            font-weight: bold;
            margin-right: 15px;
            font-size: 1.1em;
        }

        .question-text {
            flex-grow: 1;
        }

        /* 矢印の動きをより滑らかに */
        .arrow {
            width: 10px;
            height: 10px;
            border-right: 2px solid #333;
            border-bottom: 2px solid #333;
            transform: rotate(45deg);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 5px;
        }

        .faq-item.active .arrow {
            transform: rotate(-135deg);
            margin-bottom: -5px;
        }

        /* 回答エリア：ここがスムーズさの肝です */
        .faq-answer {
            display: grid;
            grid-template-rows: 0fr; /* 高さを0で保持 */
            transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            background-color: rgba(253, 252, 249, 0.3);
        }

        .faq-item.active .faq-answer {
            grid-template-rows: 1fr; /* 中身に合わせて広がる */
        }

        .faq-answer-inner {
            min-height: 0;
        }

        .faq-answer-content {
            padding: 10px 65px 30px 65px;
            line-height: 1.8;
            font-size: 15px;
            color: #333;
        }
.faq-question:active{
    -webkit-tap-highlight-color: rgba(253, 252, 249, 0.4) !important;
    /*background-color: rgba(253, 252, 249, 0.6);*/
}

/*全ページ　詳しくはこちらのリンク(中央ぞろえ)*/
.to-link{
    color: #fff;
    font-size: 18px;
    text-align: center;
    display: block;
    margin: auto;
    font-weight: normal;
    text-decoration: none;
    padding: 0px;
    border-bottom: 1px solid white;
    width: 8em;
}
.bg-white .to-link,.access-section .to-link{
    color: #000;
    font-size: 18px;
    text-align: center;
    display: block;
    margin: auto;
    font-weight: normal;
    text-decoration: none;
    padding: 0px;
    border-bottom: 1px solid #000;
    width: 8em;
}

/*全ページ　詳しくはこちらのリンク(左ぞろえ)*/
.to-link-left{
    color: var(--sub-color);
    font-size: 16px;
    text-align: center;
    display: inline-block;
    /* margin: auto; */
    font-weight: normal;
    text-decoration: none;
    padding: 0px;
    border-bottom: 1px solid white;
    
    
    }

@media(min-width:767px){
    .sp{
        display: none !important;
    }
}
@media(max-width:768px){
    .pc{
        display: none !important;
    }
}


    /* width: 8em; 

/*.nav {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.nav a {
	text-decoration: none;
	color: #333;
}
.article {
	padding: 16px 0;
	border-bottom: 1px solid #eee;
}
.pagination {
	display: flex;
	gap: 8px;
}*/
    
.skiptranslate{
    display: none;
}
html body{
    top: 0!important;
}
    

/*色変化buttonその1*/

  a.satsuki-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--main-colorA);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

a.satsuki-link:hover {
  color: #fff;
  background-color: var(--main-colorA);

}   
    