@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Kosugi+Maru|Codystar');

body {
    background: -moz-linear-gradient(top, #fbdac8, #d1bada);
    background: -webkit-linear-gradient(top, #fbdac8, #d1bada);
    background: linear-gradient(to bottom, #fbdac8, #d1bada);
    color: #55295b;
    font-size: 12px;
    font-family: 'Kosugi Maru', 'STHeitiSC-Light', 'Microsoft YaHei', gulim, メイリオ, sans-serif;
    line-height: 180%;
    letter-spacing: 2px;
    margin-bottom: 10px;
    user-select: none;  /* コピペ防止 */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body::before, body::after, html::before, html::after {
    z-index: 100;
    background: #fff;
    content:"";
    display:block;
    position:fixed;
}

body::before, body::after {
    width:10px;
    top:0;
    bottom:0;
}

body::before {
    left:  0;
}

body::after {
    right: 0;
}

html::before, html::after {
    left: 0;
    width: 100%;
    height: 10px;
}

html::before {
    top: 0;
}

html::after {
    bottom: 0;
}

a {
    color: #55295b;
    background: rgba(0,0,0,.1);
    text-decoration: none;
    padding: 1px 3px;
}

a:hover, active {
    background: none;
    position: relative;
    top: 0;
}

h1 {
    font-family: 'Codystar';
    margin:  0 auto;
    color:#fff;
    position:relative;
    text-align:center;
    font-size: 24px;
    bottom:50px;
}

h2 {
    text-align: center;
    text-transform: uppercase;
    margin-top: -30px;
    margin-bottom:30px;
}

h2 img {
    margin-bottom: 10px;
    width: 40px;
    transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
}

h3 {
    text-transform: uppercase;
    background: rgba(255,255,255,.4);
    display: inline-block;
    margin: 20px 0 10px;
    padding: 5px 10px;
}

h4 {
    text-transform: uppercase;
    background: rgba(85,41,91,.6);
    color:#fff;
    display: inline-block;
    margin: 5px 10px 5px 0;
    padding: 1px 5px;
}

b {
    color: #e95464;
    text-decoration: underline wavy;
}

input[type], textarea {
    height: 80px;
    width: 95%;
    font-size: 12px;
    font-family: 'Kosugi Maru', 'STHeitiSC-Light', 'Microsoft YaHei', gulim, メイリオ, sans-serif;
    line-height: 180%;
    letter-spacing: 2px;
    color: #55295b;
    background: rgba(255,255,255,.3);
    border: dotted 3px #d1bada;
        -webkit-appearance: none;
    border-radius: 3px;
    box-shadow: none;
    margin: 3px 0;
    padding: 3px;
}

input[type=text ]{
    height: auto;
    width: 80px;
}

input[type=submit]{
    height: 50px;
    width: 50px;
    border-radius:50%;
    border: solid 1px #d1bada;
    cursor: pointer;
    text-shadow: none;
    background: #d1bada;
    font-weight: 200;
}

.wrp {
    max-width: 550px;
    margin: 0 auto;
}

.top {
    width: 120px;
    height:120px;
    margin: 80px auto 20px;
    text-align: center;
    background: #fff;
    border-radius:50%;
}

.top img {
    width: 120px;
    position:relative;
    bottom: 20px;
}

.menu {
    background:#fff;
    margin: 0;
    padding: 10px 0 26px;
    text-align: center;
    left:0;
    right:0;
    text-transform: uppercase;
}

.menu a{
    display: inline-block;
    width: 50px;
    text-align: center;
    position: relative;
    background: none;
}

.menu a:after{
    content: "";
    background: #ccc;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin-top:24px;
    left:calc(50% - 5px);
    position: absolute;
}

.menu a:hover:after {
    background: #e95464;
}

.main {
    background: rgba(255,255,255,.6);
    padding: 15px;
    margin: 80px 30px 0;
}

.box {
    margin: 10px;
    padding: 10px;
    background: #fff;
    color: rgba(85,41,91,.8);
}

/*
.long {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
*/

.long {
    display: flex;
    flex-direction: column;     /* 縦並び */
}

.sec img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: solid 3px #fff;
    margin: 10px;
}

.sec p {
    display: table-cell;
    vertical-align: middle;
}

.title {
    width:300px;
}

.mail{
    text-align:center;
    margin-top:20px;
}

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

#back {
    position: fixed;
    top: 0; left: 0;
    width: 100%; 
    height: 100vh;
    content: "";
    background: -moz-linear-gradient(top, #fbdac8 0%,#d1bada 100%);
    background: -webkit-linear-gradient(top, #fbdac8 0%,#d1bada 100%);
    background: linear-gradient(to bottom, #fbdac8 0%, #d1bada 100%);
    z-index: -1;
}

#pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-image: linear-gradient(
        -45deg,
        rgba(255,255,255,.6) 25%, rgba(255,255,255,.2) 25%,
        rgba(255,255,255,.2) 50%, rgba(255,255,255,.6) 50%,
        rgba(255,255,255,.6) 75%, rgba(255,255,255,.2) 75%,
        rgba(255,255,255,.2)
    );
    background-size: 8px 8px;
    width:50px;
    text-align: center;
    text-transform: uppercase;
    padding:5px;
}

#pagetop a{
    background: rgba(255,255,255,.8);
    display: block;
    padding:0;
}

.book {
    background: rgba(255,255,255,.6);
    padding: 15px;
    font-size: 15px;
    font-weight: normal;
    margin: 80px 30px 0;
    max-width: 100%;
    width: 90%;
}

.book p {
    font-size: 15px;
    margin-bottom: 25px;
}

summary {
  list-style: none; /* 三角を非表示 */
  cursor: pointer;
  position: relative;
  padding: 10px 35px 10px 20px;
}

summary::-webkit-details-marker {
  display: none;
}

.newiine_btn {
    height: auto !important;
    width: 50px !important;
    cursor: pointer !important;
    background: #fbdac8 !important; /* ピンク */
    border: solid 1px #fbdac8 !important;
    color: #d1bada !important; /* 紫 */
    font-weight: 200 !important;
    font-family: 'Dosis', 'Noto Sans JP', 'メイリオ', sans-serif !important;
    padding: 5px 10px !important;
    margin: 3px 0 !important;
    text-align: center !important;
    display: inline-block !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
}

.newiine_btn:hover {
    background: #fbdac8 !important; /* ピンク */
    color: #d1bada !important; /* 紫 */
    transition: all 0.3s ease !important;
}

.newiine_btn,
.newiine_btn * {
    background: #fbdac8 !important;
    border-color: #fbdac8 !important;
    color: #d1bada !important;
}

#koibumi_wrap.speech-bubble {
    position: relative;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    max-width: 300px;
    margin: 10px 0;
    color: #333;
    font-family: 'Noto Sans JP', Arial, sans-serif;
    font-size: 14px;
}

#koibumi_wrap.speech-bubble:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}

#koibumi_form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#koibumi_form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #fff !important;
    border-radius: 5px;
    background: #fff;
    font-size: 12px;
}

#koibumi_form button#koibumi_btn {
    background: #d1bada;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    cursor: pointer;
    align-self: flex-end;
    font-size: 12px;
}

#koibumi_form button#koibumi_btn:hover {
    background: #fbdac8;
    color: #fbdac8;
}

#koibumi_thanks .box {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

#koibumi_thanks img {
    max-width: 100px;
    margin-bottom: 10px;
}

/* スマホ対応 */
@media screen and (max-width: 480px) {
    #koibumi_wrap.speech-bubble {
        max-width: 100%;
        width: calc(100% - 20px);
        margin: 10px auto;
        box-sizing: border-box;
 }

    #koibumi_form textarea {
        width: 100%;
    }
#koibumi_form button#koibumi_btn {
        align-self: flex-end;
        width: auto;
    }    }
}

/* ===== コイブミ:完全強制修正(PC対応) ===== */
#koibumi_wrap.speech-bubble {
    max-width: 300px !important;
    width: 100% !important;
    margin: 10px auto !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    position: relative !important;
}

#koibumi_form {
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

#koibumi_form textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 8px !important;
    margin: 0 !important;
    border: 1px solid #fff !important;
    border-radius: 5px !important;
    background: #fff !important;
    font-size: 12px !important;
    font-family: 'Kosugi Maru', sans-serif !important;
    line-height: 180% !important;
    letter-spacing: 2px !important;
    color: #55295b !important;
    resize: vertical !important;
    /* グローバルスタイルを完全無効化 */
    height: auto !important;
    display: block !important;
}

/* スクロールバーのカスタマイズ */
html {
  scrollbar-width: thin;
  scrollbar-color: #d1bada #fff;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
  border: none;
}

::-webkit-scrollbar-thumb {
  background: #d1bada;
  border-radius: 5px;
}