@charset "UTF-8";
/*
Theme Name: friendly
Author: 高野智弘
License: SUNCORE
License URI: https://t-takano.jp/
*/
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
border: 0;
font: inherit;
font-size: 100%;
margin: 0;
padding: 0;
vertical-align: baseline;
}
html {
line-height: 1;
}
/* オレンジ枠 */
html::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
border: 5px solid #FF5D8D;
box-sizing: border-box;
pointer-events: none; /* クリック操作を妨げない */
z-index: 9999; /* 最前面に表示 */
}
@media(max-width:599px){
html::before {
border: 3px solid #FF5D8D;
}
}
ol, ul {
list-style: none;
}
li, dd {
list-style-type: none;
}
header, footer, nav, section, article, aside, figure, figcaption {
display: block;
}
img {
border: none;
vertical-align: bottom;
}
a {
cursor: pointer;
text-decoration: none;
}
iframe {
border: none!important;
}
input,
textarea {
/* -webkit-appearance: none; */
border-radius: 0;
max-width: 100%;
padding: 0;
margin: 0;
}
html {
font-size: 16px;
}
body {
color: #5C4A4A;
background-color: #FBFAF6;
font-size: 16px;
line-height: 1;
-webkit-text-size-adjust: 100%;
letter-spacing: .02em;
box-sizing: border-box;
font-family: "Zen Maru Gothic", sans-serif;
font-weight: 400;
font-style: normal;
}
.en{
font-family: "Comfortaa", sans-serif;
}
/* ハンバーガー開閉時に背景を固定 https://kubogen.com/web-programing-287/ */
body.fixed {
width: 100%;
height: 100%;
position: fixed;
}
img {
width: 100%;
max-width: 100%;
height: auto;
image-rendering: -webkit-optimize-contrast;
}
a {
color: #5C4A4A;
text-decoration: none;
}
a:hover {
opacity: 1;
}
.inner{
max-width: 1200px;
margin: 0 auto;
}
@media(max-width:1024px){

}
@media(max-width:599px){

}


/* 改行 */
.sp-only{
display: none!important;
}
.tab-only{
display: none!important;
}
@media(max-width:1024px){
.tab-only{
display: block!important;
}
}
@media(max-width:599px){
.pc-only{
display: none!important;
}
.sp-only{
display: block!important;
}
}
/* ヘッダー */
.header{
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 25px 20px 40px;
background-color: #fff;
position: fixed;
top: 30px;
left: 50%;
transform: translateX(-50%);
width: calc(100% - 60px);
border-radius: 10px;
z-index: 10;
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
}
.header-logo{
display: block;
}
.header-logo img{
height: 50px;
width: auto;
}
.header-nav{
display: flex;
align-items: center;
}
.header-nav li a{
display: block;
font-size: 14.5px;
padding: 10px;
font-weight: 500;
}
.header-nav li a:hover{
color: #FF5D8D;
}
.header-nav .btn{
    margin-left: 20px;
    padding-left: 25px !important;
    width: 280px;
}
@media(max-width:1280px){
.header{
width: calc(100% - 30px);
        padding: 20px;
}
.header-logo img{
height: 45px;
}
.header-nav li a{
font-size: 13.5px;
padding: 5px;
letter-spacing: 0;
}
.header-nav .btn{
margin-left: 15px;
    width: 235px;
    height: 55px;
    line-height: 55px;
    font-size: 14.5px !important;
    padding-left: px !important;
    letter-spacing: 0;
}
}
@media(max-width:1024px){
.header{
padding: 10px 30px 10px 25px;
top: 30px;
border-radius: 10px;
}
.header-logo img{
height: 45px;
}
.header-nav{
display: none;
}
}
@media(max-width:599px){
.header{
padding: 0 15px;
top: 15px;
width: calc(100% - 30px);
border-radius: 5px;
height: 52px;
}
.header-logo img{
height: 40px;
}
}
/* ハンバーガーメニュー */
.hamburger {
display: none;
}
.morph {
display: none;
}
@media(max-width:1024px){
.hamburger {
display: block;
position: fixed;
top: 50%;
transform: translateY(-50%);
right: 0;
z-index: 1000;
width: 60px;
height: 60px;
padding: 0;
border: none;
background: 0 0;
cursor: pointer;
background-color: #FF5D8D;
border-radius: 0 10px 10px 0;
}
.hamburger__icon {
width: 42px;
height: 42px;
}
.hamburger__line {
fill: none;
stroke: #fff;
stroke-width: 3;
transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger__line:nth-child(1) {
stroke-dasharray: 60 207;
}
.hamburger__line:nth-child(2) {
stroke-dasharray: 60 60;
}
.hamburger__line:nth-child(3) {
stroke-dasharray: 60 207;
}
.hamburger.active .hamburger__line:nth-child(1) {
stroke-dasharray: 90 207;
stroke-dashoffset: -134;
}
.hamburger.active .hamburger__line:nth-child(2) {
stroke-dasharray: 1 60;
stroke-dashoffset: -30;
}
.hamburger.active .hamburger__line:nth-child(3) {
stroke-dasharray: 90 207;
stroke-dashoffset: -134;
}
.morph {
display: block;
position: fixed;
top: -30px;
left: -30px;
width: calc(100% + 60px);
/* height: 100vh; */
height: calc(100vh + 30px);
background: #FF5D8D;
clip-path: circle(0% at calc(100% - 44px) 44px);
transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 900;
}
.morph.active {
clip-path: circle(150% at calc(100% - 44px) 44px);
}
.morph__wrapper {
display: flex;
justify-content: center;
width: 100%;
height: 100%;
padding-top: 20%;
}
.morph__list {
margin: 0;
padding: 0;
list-style: none;
text-align: center;
}
.morph__item {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.4s ease, transform 0.4s ease;
position: relative;
text-align: left;
}
.morph__item::before{
content: "";
display: inline-block;
width: 7px;
height: 7px;
border-top: solid 2px #fff;
border-right: solid 2px #fff;
position: absolute;
top: 52%;
left: -20px;
transform: translateY(-50%) rotate(45deg);
}
.morph.active .morph__item {
opacity: 1;
transform: translateY(0);
}
.morph.active .morph__item:nth-child(1) { transition-delay: 0.3s; }
.morph.active .morph__item:nth-child(2) { transition-delay: 0.4s; }
.morph.active .morph__item:nth-child(3) { transition-delay: 0.5s; }
.morph.active .morph__item:nth-child(4) { transition-delay: 0.6s; }
.morph.active .morph__item:nth-child(5) { transition-delay: 0.7s; }
.morph.active .morph__item:nth-child(6) { transition-delay: 0.8s; }
.morph.active .morph__item:nth-child(7) { transition-delay: 0.9s; }
.morph.active .morph__item:nth-child(8) { transition-delay: 1.0s; }
.morph.active .morph__item:nth-child(9) { transition-delay: 1.1s; }
.morph.active .morph__item:nth-child(10) { transition-delay: 1.2s; }
.morph.active .morph__item:nth-child(11) { transition-delay: 1.3s; }
.morph.active .morph__item:nth-child(12) { transition-delay: 1.4s; }
.morph.active .morph__item:nth-child(13) { transition-delay: 1.5s; }
.morph__link {
display: block;
padding: 12px 0;
font-size: 17px;
color: #fff;
letter-spacing: .04em;
text-decoration: none;
overflow: hidden;
}
.morph__text {
display: block;
transition: transform 0.3s ease;
}
}
@media(max-width:599px){
.hamburger {
/* right: 15px;
width: 50px;
height: 50px; */
right: 0;
width: 52px;
height: 52px;
border-radius: 0 5px 5px 0;
}
.hamburger__line {
stroke-width: 2;
}
.morph__item::before{
width: 7px;
height: 7px;
border-top: solid 2px #fff;
border-right: solid 2px #fff;
top: 52%;
left: -20px;
transform: translateY(-50%) rotate(45deg);
}
.morph__link {
padding: 10px 0;
font-size: 15px;
}
}
/* ボタン */
.btn{
background-color: #FF5D8D;
display: flex!important;
align-items: center;
width: 260px;
height: 60px;
line-height: 60px;
color: #fff;
font-size: 16px !important;
padding: 0 !important;
font-weight: 500;
letter-spacing: .02em;
border-radius: 1000px;
position: relative;
padding-left: 40px !important;
border: 1px solid #FF5D8D;
}
.btn-c{
margin: 0 auto;
}
.btn span{
position: absolute;
right: 10px;
border-radius: 100%;
width: 35px;
height: 35px;
background-color: #fff;
display: inline-block;
}
.btn span::after{
background-image: url(img/00_common/arrow-orange.svg);
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50% , -50%);
background-repeat: no-repeat;
background-size: contain;
width: 6px;
height: 11px;
}
.btn:hover{
transition: .3s;
background-color: #fff;
color: #FF5D8D;
}
.btn:hover span{
background-color: #FF5D8D;
}
.btn:hover span::after{
background-image: url(img/00_common/arrow-white.svg);
}
/* 見出し全般 */
.ttl{
text-align: center;
}
.ttl-en{
font-weight: 700;
font-size: 50px;
letter-spacing: .05em;
margin-bottom: 25px;
}
.ttl-h2{
font-weight: 500;
font-size: 24px;
line-height: 1.4;
letter-spacing: .08em;
}
@media(max-width:1024px){
.ttl-en{
font-size: 40px;
margin-bottom: 20px;
}
.ttl-h2{
font-size: 20px;
}
}
@media(max-width:599px){
.ttl-en{
font-size: 36px;
margin-bottom: 15px;
}
.ttl-h2{
font-size: 18px;
}
}
/* 丸 */
.circle{
background-color: #fbfaf6;
}
.circle::before,
.circle::after{
pointer-events: none;
content: "";
background-color: #fff;
display: block;
mask-repeat: no-repeat;
mask-size: 100% auto;
width: 100vw;
height: 15vw;
}
.circle::before{
-webkit-mask-image: url(img/01_top/circle-top.svg);
}
.circle::after{
-webkit-mask-image: url(img/01_top/circle-bottom.svg);
}
.circle2{
/* position: relative; */
background-color: #fff;
margin-right: auto;
margin-left: auto;
container-type: inline-size;
}
.circle2::before,
.circle2::after{
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 100vw;
/* height: 100%; */
pointer-events: none;
content: "";
}
@media(max-width:1024px){

}
@media(max-width:599px){
.circle2{
padding-top: 50px;
}
}
/* メリット（トップページ） */
#merit{
padding-top: 100px;
padding-bottom: 120px;
}
.merit-title{
font-size: 34px;
text-align: center;
letter-spacing: .02em;
font-weight: 500;
}
.merit-title span{
font-size: 42px;
padding: 0 3px;
color: #FF5D8D;
}
.merit-list{
display: flex;
justify-content: center;
margin-top: 70px;
}
.merit-list li{
margin: 0 30px;
}
.merit-img{
width: 272px;
height: 272px;
border-radius: 50%;
}
.merit-img img{
width: 272px;
height: 272px;
}
.merit-text{
font-size: 22px;
line-height: 1.4;
font-weight: 500;
text-align: center;
margin-top: 30px;
}
.merit-text span{
font-size: 29px;
color: #FF5D8D;
}
@media(max-width:1024px){
#merit{
padding-top: 80px;
padding-bottom: 80px;
}
.merit-title{
font-size: 30px;
}
.merit-title span{
font-size: 38px;
padding: 0 2px;
}
.merit-list{
margin-top: 60px;
}
.merit-list li{
margin: 0 15px;
}
.merit-img{
width: 180px;
height: 180px;
}
.merit-img img{
width: 180px;
height: 180px;
}
.merit-text{
font-size: 17px;
margin-top: 20px;
}
.merit-text span{
font-size: 22px;
}
}
@media(max-width:599px){
#merit{
padding-top: 80px;
padding-bottom: 60px;
}
.merit-title{
font-size: 20px;
font-weight: 500;
}
.merit-title span{
font-size: 26px;
padding: 0 1px;
}
.merit-list{
margin-top: 40px;
display: block;
}
.merit-list li{
margin: 0 0 30px 0;
width: 100%;
}
.merit-img{
width: 200px;
height: 200px;
margin: 0 auto;
}
.merit-img img{
width: 200px;
height: 200px;
}
.merit-text{
font-size: 16px;
margin-top: 12px;
}
.merit-text span{
font-size: 18px;
}
}
/* 選ばれる理由＆ご成婚実績 */
#reason{

}
.reason-list{
display: flex;
justify-content: center;
margin-top: 80px;
margin-bottom: 60px;
}
#voice .reason-list{
margin-bottom: 120px;
}
.reason-list li{
width: 350px;
margin: 0 25px;
position: relative;
}
.reason-list li::before {
position: absolute;
top: -28px;
left: 0;
z-index: 0;
font-size: 60px;
color: #FF5D8D;
font-weight: 700;
letter-spacing: .05em;
font-family: "Comfortaa", sans-serif;
}
.reason-list li:nth-child(1)::before{
content: "01";
}
.reason-list li:nth-child(2)::before{
content: "02";
}
.reason-list li:nth-child(3)::before{
content: "03";
}
.reason-img{
width: 350px;
}
.reason-img img{
width: 350px;
height: auto;
object-fit: cover;
border-radius: 20px;
}
#voice .reason-img img{
width: 350px;
height: 350px;
}
.reason-box{
background-color: #fff;
border-radius: 0 20px 0 0;
position: absolute;
bottom: -80px;
left: 0;
z-index: 2;
padding: 30px 30px 25px 0;
width: 90%;
}
.reason-ttl{
margin-bottom: 20px;
font-weight: 500;
letter-spacing: .04em;
font-size: 20px;
line-height: 1.4;
}
#voice .reason-ttl{
font-size: 17px;
}
.reason-desc{
margin-bottom: 25px;
font-size: 14px;
line-height: 1.4;
}
.reason-btn{
font-weight: 500;
display: block;
font-size: 16px;
position: relative;
}
#voice .reason-btn{
font-size: 14px;
}
.reason-btn span{
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
border-radius: 100%;
width: 35px;
height: 35px;
background-color: #FF5D8D;
display: inline-block;
}
.reason-btn:hover span{
transition: .3s;
right: -10px;
}
.reason-btn span::before{
background-image: url(img/00_common/arrow-white.svg);
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50% , -50%);
background-repeat: no-repeat;
background-size: contain;
width: 6px;
height: 11px;
}
@media(max-width:1024px){
#reason{

}
.reason-list{
margin-top: 60px;
margin-bottom: 140px;
justify-content: space-around;
}
.reason-list li{
width: 30%;
margin: 0 auto;
}
.reason-list li::before {
top: -20px;
font-size: 45px;
}
.reason-img{
border-radius: 15px;
width: 100%;
}
.reason-img img{
width: 100%;
}
.reason-box{
border-radius: 0 15px 0 0;
bottom: -120px;
padding: 25px 10px 20px 0;
width: 92%;
}
.reason-ttl{
margin-bottom: 15px;
font-size: 15px;
}
.reason-desc{
margin-bottom: 20px;
font-size: 13px;
}
.reason-btn{
font-size: 13px;
}
.reason-btn span{
width: 35px;
height: 35px;
}
}
@media(max-width:599px){
.reason-list{
display: block;
width: calc(100% - 30px);
margin: 30px auto 0;
}
.reason-list li{
width: 100%;
margin: 0 auto 110px;
}
.reason-list li::before {
top: -20px;
font-size: 45px;
}
.reason-img{
border-radius: 15px;
width: 100%;
}
.reason-img img{
width: 100%;
}
#voice .reason-img img{
width: 100%;
height: 350px;
}
.reason-box{
border-radius: 0 15px 0 0;
bottom: -75px;
padding: 30px 20px 25px 10px;
width: 90%;
}
.reason-ttl{
margin-bottom: 15px;
font-size: 15px;
}
.reason-desc{
margin-bottom: 20px;
font-size: 13px;
}
.reason-btn{
font-size: 13px;
}
.reason-btn span{
width: 35px;
height: 35px;
}
#voice .reason-ttl{
font-size: 15px;
}
}
/* 会員データ */
#data{
background-color: #fff;
padding-top: 120px;
}
.data-content{
display: flex;
justify-content: center;
align-items: center;
margin-top: 60px;
}
.data-item{
text-align: center;
margin: 0 40px;
}
.data-item01{
font-size: 20px;
font-weight: 500;
letter-spacing: .05em;
margin-bottom: 20px;
}
.data-item01 span{
font-size: 15px;
}
.data-item02{
font-size: 60px;
font-weight: 500;
letter-spacing: .05em;
}
.data-item02 span{
font-size: 40px;
}
.data-hosoku{
font-size: 12px;
line-height: 1.4;
margin-top: 50px;
margin-bottom: 20px;
text-align: center;
}
.data-banner{
height: 55px;
text-align: center;
}
.data-banner img{
height: 50px;
width: auto;
}
.data-desc{
font-size: 16px;
line-height: 1.7;
margin-top: 40px;
text-align: center;
letter-spacing: .04em;
}
@media(max-width:1024px){
#data{
padding-top: 100px;
}
.data-content{
margin-top: 50px;
}
.data-item{
margin: 0 25px;
}
.data-item01{
font-size: 18px;
margin-bottom: 20px;
}
.data-item01 span{
font-size: 14px;
}
.data-item02{
font-size: 50px;
}
.data-item02 span{
font-size: 32px;
}
.data-hosoku{
font-size: 12px;
margin-top: 45px;
margin-bottom: 20px;
}
.data-banner{
height: 55px;
}
.data-banner img{
height: 45px;
}
.data-desc{
font-size: 15px;
margin-top: 30px;
}
}
@media(max-width:599px){
#data{
padding-top: 30px;
}
.data-content{
margin-top: 40px;
display: block;
}
.data-item{
margin: 0 auto 35px;
}
.data-item01{
font-size: 18px;
margin-bottom: 12px;
}
.data-item01 span{
font-size: 14px;
}
.data-item02{
font-size: 50px;
letter-spacing: .03em;
}
.data-item02 span{
font-size: 32px;
}
.data-hosoku{
font-size: 11px;
margin-top: 40px;
margin-bottom: 15px;
}
.data-banner{
height: 50px;
}
.data-banner img{
height: 40px;
}
.data-desc{
font-size: 14px;
width: calc(100% - 30px);
margin: 30px auto 0;
}
}
/* ごあいさつ */
#greeting{
padding-top: 120px;
}
.greeting-content{
display: flex;
justify-content: center;
margin-top: 50px;
}
.greeting-img{
max-width: 300px;
width: 100%;
height: 100%;
margin-right: 60px;
}
.greeting-img img{
border-radius: 15px;
}
.greeting-name{
font-size: 16px;
font-weight: 500;
letter-spacing: .04em;
margin-top: 15px;
}
.greeting-desc{
max-width: 500px;
width: 100%;
}
.greeting-desc p{
font-size: 16px;
letter-spacing: .04em;
line-height: 1.7;
margin-bottom: 30px;
}
.greeting-desc .btn{
margin-left: 0;
}
@media(max-width:1024px){
#greeting{
padding-top: 100px;
}
.greeting-content{
margin-top: 40px;
}
.greeting-img{
max-width: 250px;
margin-right: 30px;
}
.greeting-name{
font-size: 15px;
}
.greeting-desc{
max-width: 400px;
}
.greeting-desc p{
font-size: 15px;
margin-bottom: 25px;
}
}
@media(max-width:599px){
#greeting{
padding-top: 60px;
}
.greeting-content{
display: block;
width: calc(100% - 30px);
margin: 30px auto 0;
}
.greeting-img{
max-width: 100%;
width: 100%;
margin: 0 auto;
}
.greeting-name{
font-size: 15px;
margin-bottom: 15px;
}
.greeting-desc{
max-width: 400px;
}
.greeting-desc p{
font-size: 14px;
}
.greeting-desc .btn{
margin: 0 auto;
}
}
/* 料金プラン */
#plan{
padding-top: 120px;
padding-bottom: 120px;
}
.plan-content{
display: flex;
justify-content: center;
margin-top: 60px;
}
.plan-item{
margin: 0 15px;
background-color: #fff;
max-width: 380px;
width: 100%;
padding: 35px 25px;
border-radius: 20px;
}
.plan-item-ttl{
font-size: 20px;
font-weight: 500;
letter-spacing: .05em;
position: relative;
width: 100%;
}
.plan-item-ttl span{
background-color: #FF5D8D;
color: #fff;
font-size: 12px;
height: 28px;
line-height: 28px;
text-align: center;
padding: 0 15px;
display: inline-block;
border-radius: 100px;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 0;
}
.plan-item-table{
margin-top: 20px;
margin-bottom: 10px;
padding-top: 30px;
border-top: 1px solid #dae1e7;
width: 100%;
}
.plan-item-table tr{
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
}
.plan-item-table th{
font-size: 20px;
font-weight: 500;
letter-spacing: .03em;
color: #FF5D8D;
}
.plan-item-table td{
font-size: 20px;
font-weight: 500;
letter-spacing: .03em;
text-align: right;
}
.plan-item-desc{
font-size: 14px;
line-height: 1.5;
}
.plan-memo{
max-width: 1200px;
width: 100%;
margin: 15px auto 20px;
font-size: 12px;
line-height: 1.4;
}
@media(max-width:1024px){
#plan{
padding-top: 100px;
padding-bottom: 100px;
}
.plan-content{
margin-top: 50px;
}
.plan-item{
margin: 0 auto;
max-width: 32%;
padding: 25px 15px;
border-radius: 15px;
}
.plan-item-ttl{
font-size: 16px;
letter-spacing: .01em;
}
.plan-item-ttl span{
font-size: 11px;
height: 22px;
line-height: 22px;
padding: 0 8px;
}
.plan-item-table{
margin-top: 20px;
margin-bottom: 5px;
padding-top: 30px;
}
.plan-item-table tr{
margin-bottom: 20px;
}
.plan-item-table th{
font-size: 16px;
letter-spacing: .02em;
}
.plan-item-table td{
font-size: 16px;
letter-spacing: .02em;
}
.plan-item-desc{
font-size: 13.5px;
}
.plan-memo{
max-width: 100%;
width: calc(100% - 30px);
margin: 10px auto 20px;
font-size: 11px;
}
}
@media(max-width:599px){
#plan{
padding-top: 60px;
padding-bottom: 60px;
}
.plan-content{
display: block;
width: calc(100% - 30px);
margin: 30px auto 0;
}
.plan-item{
margin: 0 auto 20px;
max-width: 100%;
padding: 25px 15px;
border-radius: 15px;
}
.plan-item-ttl{
font-size: 20px;
letter-spacing: .02em;
}
.plan-item-ttl span{
font-size: 12px;
height: 25px;
line-height: 25px;
padding: 0 10px;
}
.plan-item-table{
margin-top: 20px;
margin-bottom: 5px;
padding-top: 20px;
}
.plan-item-table tr{
margin-bottom: 15px;
}
.plan-item-table th{
font-size: 16px;
letter-spacing: .02em;
}
.plan-item-table td{
font-size: 16px;
letter-spacing: .02em;
}
.plan-item-desc{
font-size: 14px;
}
.plan-memo{
margin: 0 auto 25px;
font-size: 11px;
}
}
/* ご成婚実績 */
#voice{
padding-bottom: 120px;
}
.voice-content{
display: flex;
justify-content: center;
margin-top: 60px;
margin-bottom: 60px;
}
.voice-item{
margin: 0 20px;
max-width: 400px;
width: 100%;
}
.voice-item a{
display: block;
}
.voice-item-img{
width: 100%;
overflow:hidden;
border-radius: 15px;
}
.voice-item-img img{
border-radius: 15px;
transition:.5s all;
}
.voice-item-img img:hover{
transform:scale(1.1,1.1);
transition:.5s all;
}
.voice-item-ttl{
font-size: 20px;
font-weight: 500;
letter-spacing: .04em;
line-height: 1.4;
margin-top: 15px;
}
@media(max-width:1024px){
#voice{
padding-bottom: 100px;
}
.voice-content{
margin-top: 50px;
margin-bottom: 50px;
}
.voice-item{
margin: 0 auto;
max-width: 31%;
}
.voice-item-ttl{
font-size: 18px;
margin-top: 15px;
}
}
@media(max-width:599px){
#voice{
padding-bottom: 60px;
}
.voice-content{
display: block;
width: calc(100% - 30px);
margin: 30px auto;
}
.voice-item{
margin: 0 auto 30px;
max-width: 100%;
}
.voice-item-ttl{
font-size: 16px;
margin-top: 12px;
}
}
/* お知らせ・ブログ */
#news{
background-color: #FBFAF6;
}
.news-content{
display: flex;
justify-content: center;
}
.news-l,
.news-r{
margin: 0 60px;
max-width: 450px;
width: 100%;
}
.news-box{
background-color: #fff;
width: 100%;
margin-top: 40px;
margin-bottom: 40px;
border-radius: 10px;
}
.news-list{
padding: 30px;
}
.news-list li{
border-top: 1px solid #DAE1E7;
}
.news-list li:last-child{
border-bottom: 1px solid #DAE1E7;
}
.news-list li a{
display: block;
padding: 10px 0;
}
.news-date{
color: #FF5D8D;
font-size: 12px;
margin-bottom: 5px;
}
.news-ttl{
font-size: 15px;
line-height: 1.4;
}
.news-list li a:hover .news-ttl{
color: #FF5D8D;
transition: .2s;
}
@media(max-width:1024px){
#news{

}
.news-content{

}
.news-l,
.news-r{
margin: 0 20px;
max-width: 450px;
}
.news-box{
margin-top: 30px;
margin-bottom: 30px;
}
.news-list{
padding: 30px;
}
.news-list li{

}
.news-list li:last-child{

}
.news-list li a{
padding: 10px 0;
}
.news-date{
font-size: 12px;
margin-bottom: 5px;
}
.news-ttl{
font-size: 15px;
}
}
@media(max-width:599px){
#news{

}
.news-content{
display: block;
width: calc(100% - 30px);
margin: 0 auto;
}
.news-l,
.news-r{
width: 100%;
margin: 0;
max-width: 100%;
}
.news-r{
margin-top: 60px;
}
.news-box{
margin-top: 30px;
margin-bottom: 30px;
}
.news-list{
padding: 30px 20px;
}
}
/* フッター */
.footer{
position: relative;
background-color: #FBFAF6;
padding: 40px 15px 20px;
border-top: 5px solid #FF5D8D;
}
.footer-content{
display: flex;
max-width: 1400px;
width: 100%;
margin: 0 auto;
align-items: end;
}
.footer-l{
width: 50%;
}
.footer-logo{
display: flex;
margin-bottom: 15px;
}
.footer-logo img{
height: 50px;
width: auto;
}
.footer-text{
font-size: 16px;
line-height: 1.5;
margin-bottom: 0.2em;
}
.footer-tel{
font-weight: 500;
font-size: 26px;
margin: 20px 0;
}
.footer-list{
width: 50%;
display: flex;
align-items: center;
justify-content: right;
}
.footer-list li{
margin-left: 20px;
}
.footer-list li a{
display: inline-block;
font-size: 16px;
font-weight: 500;
}
.footer-list li a:hover{
transition: .3s;
color: #FF5D8D;
}
.footer-copy{
margin-top: 30px;
font-size: 10px;
text-align: center;
}
@media(max-width:1024px){
.footer{
padding: 30px 15px 20px;
}
.footer-content{
max-width: 100%;
width: calc(100% - 60px);
}
.footer-l{
width: 40%;
}
.footer-logo{
margin-bottom: 15px;
}
.footer-logo img{
height: 45px;
}
.footer-text{
font-size: 14px;
}
.footer-tel{
font-size: 26px;
margin: 20px 0;
}
.footer-list{
width: 60%;
}
.footer-list li{
margin-left: 15px;
}
.footer-list li a{
font-size: 15px;
}
.footer-copy{
font-size: 10px;
}
}
@media(max-width:599px){
.footer{
padding: 30px 0 60px;
}
.footer-content{
width: calc(100% - 30px);
display: block;
}
.footer-l{
width: 100%;
text-align: center;
}
.footer-logo{
margin: 0 auto 15px;
display: inline-block;
}
.footer-logo img{
height: 45px;
}
.footer-text{
font-size: 14px;
}
.footer-tel{
font-size: 26px;
margin: 20px 0;
}
.footer-list{
width: 100%;
margin-top: 15px;
justify-content: center;
}
.footer-list li{
margin: 0 5px;
}
.footer-list li a{
font-size: 13.5px;
}
.footer-copy{
font-size: 10px;
}
}
/* スマホ固定フッター（上から出てくる） */
#page-top{
display: none;
overflow: visible!important;
opacity: 0;
}
.btn-footer{
display: inline-flex;
align-items: center;
height: 43px;
line-height: 43px;
color: #fff;
font-size: 15px;
letter-spacing: .03em;
font-weight: 500;
}
.btn-footer img{
display: block;
width: 1.1em;
height: auto;
margin-right: 0.5em;
flex-shrink: 0;
}
@media(max-width:599px){
#page-top {
display: block;
position: fixed;
left: 20px;
bottom: 15px;
z-index: 2;
width: 180px;
text-align: center;
background-color: #FF5D8D;
border-radius: 100px;
}
#page-top.UpMove{
animation: UpAnime 0.8s forwards;
}
@keyframes UpAnime{
from {
opacity: 0;
transform: translateY(100px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
#page-top.DownMove{
animation: DownAnime 0.6s forwards;
}
@keyframes DownAnime{
from {
opacity: 1;
transform: translateY(0);
}
to {
opacity: 1;
transform: translateY(100px);
}
}
}
/* ぱんくずリスト */
#breadcrumbs{
max-width: 1400px;
width: calc(100% - 60px);
margin: 0 auto;
padding-bottom: 20px;
}
#breadcrumbs span{
font-size: 12px;
}
#breadcrumbs span a{
text-decoration: underline;
}
@media(max-width:1024px){
#breadcrumbs{
max-width: 100%;
width: calc(100% - 60px);
}
#breadcrumbs span{
font-size: 11px;
}
}
@media(max-width:599px){
#breadcrumbs{
width: calc(100% - 30px);
}
#breadcrumbs span{
font-size: 10px;
}
}
/* はじめての方へページ */
#vision{

}
.vision-desc01{
color: #FF5D8D;
font-weight: 500;
text-align: center;
letter-spacing: .03em;
line-height: 1.4;
font-size: 30px;
margin-top: 60px;
margin-bottom: 40px;
}
.vision-desc02{
font-size: 16px;
line-height: 1.7;
text-align: center;
}
.vision-content{
margin-top: 100px;
}
.vision-item{
background-color: #FBFAF6;
margin: 0 auto 60px;
border-radius: 20px;
position: relative;
padding: 50px 80px 40px;
width: 100%;
max-width: 1000px;
}
.vision-num{
position: absolute;
top: -28px;
left: 80px;
font-size: 60px;
color: #FF5D8D;
letter-spacing: .08em;
font-weight: 700;
letter-spacing: .05em;
}
.vision-ttl{
font-size: 24px;
font-weight: 500;
line-height: 1.4;
letter-spacing: .03em;
padding-bottom: 20px;
}
.vision-wrapper{
border-top: 1px solid #DAE1E7;
padding-top: 25px;
display: flex;
justify-content: center;
flex-direction: row-reverse;
}
.vision-desc{
width: 400px;
line-height: 1.6;
font-size: 16px;
letter-spacing: .03em;
margin-right: 40px;
}
.vision-img{
width: 400px;
height: auto;
}
#support{
padding-top: 120px;
padding-bottom: 100px;
}
.support-content{
display: flex;
justify-content: center;
margin-top: 60px;
}
.support-item{
background-color: #fff;
border-radius: 10px;
margin: 0 15px;
padding: 40px 25px 30px;
max-width: 380px;
width: 100%;
}
.support-ttl{
font-size: 20px;
font-weight: 500;
padding-bottom: 20px;
}
.support-desc{
font-size: 16px;
line-height: 1.6;
border-top: 1px solid #DAE1E7;
padding-top: 20px;
}

@media(max-width:1024px){
#vision{

}
.vision-desc01{
font-size: 24px;
margin-top: 50px;
margin-bottom: 30px;
}
.vision-desc02{
font-size: 15px;
}
.vision-content{
margin-top: 80px;
}
.vision-item{
margin: 0 auto 60px;
border-radius: 20px;
padding: 45px 40px 35px;
width: 100%;
max-width: 90%;
}
.vision-num{
top: -23px;
left: 40px;
font-size: 55px;
}
.vision-ttl{
font-size: 20px;
padding-bottom: 15px;
}
.vision-wrapper{
padding-top: 20px;
}
.vision-desc{
width: 350px;
font-size: 15px;
margin-right: 30px;
}
.vision-img{
width: 100%;
flex: 1;
}
#support{
padding-top: 100px;
padding-bottom: 80px;
}
.support-content{
max-width: 100%;
width: calc(100% - 30px);
margin: 40px auto 0;
justify-content: space-between;
}
.support-item{
border-radius: 10px;
margin: 0;
padding: 30px 15px 25px;
max-width: 100%;
width: 32%;
}
.support-ttl{
font-size: 17px;
padding-bottom: 15px;
}
.support-desc{
font-size: 14px;
padding-top: 15px;
}
}
@media(max-width:599px){
#vision{

}
.vision-desc01{
font-size: 18px;
width: calc(100% - 30px);
margin: 30px auto 25px;
}
.vision-desc02{
font-size: 14px;
width: calc(100% - 30px);
margin: 0 auto;
}
.vision-content{
margin-top: 60px;
}
.vision-item{
margin: 0 auto 40px;
border-radius: 10px;
padding: 35px 20px 30px;
width: calc(100% - 30px);
max-width: 100%;
}
.vision-num{
top: -18px;
left: 20px;
font-size: 40px;
}
.vision-ttl{
font-size: 18px;
padding-bottom: 15px;
}
.vision-wrapper{
padding-top: 15px;
display: block;
}
.vision-desc{
width: 100%;
font-size: 14px;
margin-right: 0;
margin-top: 15px;
}
.vision-img{
width: 100%;
}
#support{
padding-top: 60px;
padding-bottom: 60px;
}
.support-content{
display: block;
margin: 30px auto 0;
}
.support-item{
border-radius: 10px;
margin: 0 auto 20px;
padding: 30px 15px 25px;
max-width: 100%;
width: 100%;
}
.support-ttl{
font-size: 17px;
padding-bottom: 15px;
}
.support-desc{
font-size: 14px;
padding-top: 15px;
}
}
/* カウンセラー紹介ページ */
#profile{

}
.profile-content{
display: flex;
justify-content: center;
margin-top: 60px;
}
.profile-l{
width: 300px;   
margin-right: 80px;
}
.profile-img{
width: 300px; 
}
.profile-img img{

}
.profile-tag{
font-size: 14px;
color: #FF5D8D;
letter-spacing: .04em;
margin: 20px 0 15px;
line-height: 1.4;
}
.profile-name{
font-size: 28px;
font-weight: 500;
letter-spacing: .04em;
padding-bottom: 20px;
}
.profile-history{
border-top: 1px solid #DAE1E7;
padding-top: 20px;
}
.profile-history-ttl{
color: #FF5D8D;
font-size: 15px;
margin-bottom: 15px;
font-weight: 500;
}
.profile-history-table{

}
.profile-history-table tr{
margin: 0 0 .5em 0;
display: flex;
flex-wrap: wrap;
}
.profile-history-table th{
font-size: 14.5px;
width: 80px;
text-align: left;
line-height: 1.4;
display: block;
}
.profile-history-table td{
font-size: 14.5px;
flex: 1;
line-height: 1.4;
display: block;
}
.profile-r{
width: 600px;
}
.profile-ttl{
color: #FF5D8D;
font-size: 24px;
line-height: 1.4;
margin-bottom: 40px;
font-weight: 500;
}
.profile-desc{
font-size: 16px;
line-height: 1.6;
}
.profile-desc p{
margin-bottom: 1em;
}
@media(max-width:1024px){
#profile{

}
.profile-content{
max-width: calc(100% - 60px);
margin: 50px auto 0;
}
.profile-l{
width: 220px;   
margin-right: 50px;
}
.profile-img{
width: 220px; 
}
.profile-tag{
font-size: 13px;
margin: 20px 0 15px;
}
.profile-name{
font-size: 24px;
padding-bottom: 20px;
}
.profile-history{
padding-top: 20px;
}
.profile-history-ttl{
font-size: 14px;
margin-bottom: 10px;
}
.profile-history-table tr{
margin: 0 0 .5em 0;
display: block;
}
.profile-history-table th{
font-size: 14.5px;
width: 100%;
}
.profile-history-table td{
font-size: 14.5px;
width: 100%;
}
.profile-r{
width: 100%;
flex: 1;
}
.profile-ttl{
font-size: 20px;
margin-bottom: 25px;
}
.profile-desc{
font-size: 15px;
}
}
@media(max-width:599px){
#profile{

}
.profile-content{
max-width: calc(100% - 30px);
display: block;
margin-top: 30px;
}
.profile-l{
width: 100%;   
margin-right: 0;
}
.profile-img{
width: 280px;
margin: 0 auto;
}
.profile-tag{
font-size: 13px;
margin: 20px 0 15px;
}
.profile-name{
font-size: 24px;
padding-bottom: 20px;
}
.profile-history{
padding-top: 20px;
}
.profile-history-ttl{
font-size: 14px;
margin-bottom: 10px;
}
.profile-history-table tr{
margin: 0 0 .3em 0;
display: flex;
}
.profile-history-table th{
font-size: 14.5px;
width: 85px;
}
.profile-history-table td{
font-size: 14.5px;
flex: 1;
}
.profile-r{
width: 100%;
margin-top: 20px;
}
.profile-ttl{
margin-bottom: 25px;
font-size: 20px;
letter-spacing: .02em;
line-height: 1.45;
}
.profile-desc{
font-size: 14px;
}
}
/* 私たちが大切にしていること */
#point{
padding-top: 120px;
}
#point .reason-ttl {
margin-top: 15px;
margin-bottom: 15px;
font-size: 26px;
}
@media(max-width:1024px){
#point{
padding-top: 100px;
}
#point .reason-ttl {
margin-top: 15px;
margin-bottom: 15px;
font-size: 22px;
}
}
@media(max-width:599px){
#point{
padding-top: 60px;
}
#point .reason-ttl {
margin-top: 15px;
margin-bottom: 15px;
font-size: 18px;
}
#point .reason-list li {
margin-bottom: 60px;
}
}


/* 料金プランページ */
#price{

}
.price-content{
display: flex;
justify-content: center;
margin-top: 60px;
}
.price-item{
background-color: #FBFAF6;
max-width: 380px;
width: 100%;
padding: 30px 25px;
margin: 0 15px;
border-radius: 20px;
}
.price-ttl{
font-size: 20px;
letter-spacing: .05em;
font-weight: 700;
position: relative;
}
.price-ttl span{
background-color: #FF5D8D;
color: #fff;
height: 30px;
line-height: 30px;
padding: 0 13px;
font-size: 12px;
text-align: center;
border-radius: 100px;
position: absolute;
top: 50%;
right: 30px;
transform: translateY(-50%);
}
.price-table{
border-top: 1px solid #DAE1E7;
padding-top: 25px;
margin-top: 20px;
width: 100%;
}
.price-table tr{
margin-bottom: 1em;
display: flex;
justify-content: space-between;
}
.price-table th{
color: #FF5D8D;
font-size: 18px;
letter-spacing: .03em;
font-weight: 500;
text-align: left;
}
.price-table td{
font-size: 18px;
letter-spacing: .03em;
font-weight: 500;
}
.price-desc{
font-size: 14px;
line-height: 1.5;
margin-top: 5px;
}
.price-memo{
max-width: 1200px;
margin: 15px auto 0;
width: 100%;
font-size: 12px;
line-height: 1.4;
}
@media(max-width:1024px){
#price{

}
.price-content{
margin-top: 50px;
}
.price-item{
max-width: 100%;
width: 32%;
padding: 25px 15px;
margin: 0 auto;
}
.price-ttl{
font-size: 18px;
letter-spacing: 0;
}
.price-ttl span{
height: 27px;
line-height: 27px;
padding: 0 10px;
font-size: 11px;
right: 0;
}
.price-table{
padding-top: 15px;
margin-top: 15px;
}
.price-table tr{
margin-bottom: 1em;
}
.price-table th{
font-size: 15px;
}
.price-table td{
font-size: 15px;
}
.price-desc{
font-size: 13.5px;
margin-top: 5px;
letter-spacing: 0;
}
.price-memo{
max-width: 100%;
margin: 15px auto 0;
width: calc(100% - 30px);
font-size: 11px;
}
}
@media(max-width:599px){
#price{

}
.price-content{
display: block;
width: calc(100% - 30px);
margin: 30px auto 0;
}
.price-item{
max-width: 100%;
width: 100%;
padding: 25px 20px;
margin: 0 auto 20px;
}
.price-ttl{
font-size: 18px;
letter-spacing: .03em;
}
.price-ttl span{
top: 50%;
}
.price-table{
padding-top: 15px;
margin-top: 15px;
}
.price-table tr{
margin-bottom: 1em;
}
.price-table th{
font-size: 15px;
}
.price-table td{
font-size: 15px;
}
.price-desc{
font-size: 13.5px;
margin-top: 5px;
letter-spacing: 0;
}
.price-memo{
margin: 0 auto;
font-size: 10px;
}
}
#others{
padding-top: 120px; 
padding-bottom: 60px;
}
.others-content{
display: flex;
flex-wrap: wrap;
justify-content: center;
max-width: 1500px;
width: 100%;
margin: 0 auto;
}
.others-item{
max-width: 380px;
width: 100%;
margin: 0 25px 70px;
}
.others-box{
background-color: #fff;
width: 100%;
padding: 25px 25px 15px 25px;
border-radius: 15px;
margin-top: 30px;
}
.others-box-item{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-bottom: 1px solid #DAE1E7;
padding-top: 20px;
}
.others-box-item:last-child{
border: none;
}
.others-box-ttl{
color: #FF5D8D;
font-size: 20px;
font-weight: 500;
letter-spacing: .03em;
}
.others-box-en{
font-size: 20px;
font-weight: 500;
letter-spacing: .03em;
}
.others-box-desc{
font-size: 14px;
letter-spacing: .02em;
line-height: 1.5;
width: 100%;
margin: 15px 0;
}
.others-box-list{
padding: 15px 0 10px;
}
.others-box-list li{
position: relative;
padding-left: 1.3em;
margin-bottom: .6em;
line-height: 1.4;
font-size: 16px;
font-weight: 500;
}
.others-box-list li::before{
content: "⚫︎";
position: absolute;
left: 0;                 
top: .2em;
color: #FF5D8D;
font-size: 0.8em; 
}
.others-box-list li span{
font-size: 14px;
font-weight: 400;
}
@media(max-width:1024px){
#others{
padding-top: 100px;
}
.others-content{
max-width: 100%;
width: calc(100% - 60px);
margin: 0 auto;
}
.others-item{
max-width: 100%;
width: 47%;
margin: 0 auto 60px;
}
.others-box{
padding: 25px 20px 15px;
margin-top: 20px;
}
.others-box-item{
padding-top: 15px;
}
.others-box-ttl{
font-size: 18px;
}
.others-box-en{
font-size: 18px;
}
.others-box-desc{
font-size: 14px;
margin: 10px 0;
}
.others-box-list{
padding: 15px 0 10px;
}
.others-box-list li{
padding-left: 1.3em;
margin-bottom: .6em;
font-size: 15px;
}
.others-box-list li span{
font-size: 13px;
}
}
@media(max-width:599px){
#others{
padding-top: 60px;
padding-bottom: 30px;
}
.others-content{
width: calc(100% - 30px);
display: block;
}
.others-item{
width: 100%;
margin-bottom: 50px;
}
.others-box{
padding: 25px 20px 15px;
margin-top: 20px;
}
.others-box-item{
padding-top: 15px;
}
.others-box-ttl{
font-size: 17px;
}
.others-box-en{
font-size: 17px;
}
.others-box-desc{
font-size: 14px;
margin: 10px 0;
}
.others-box-list{
padding: 15px 0 10px;
}
.others-box-list li{
padding-left: 1.3em;
margin-bottom: .6em;
font-size: 14px;
}
.others-box-list li span{
font-size: 12.5px;
}
}
/* ご成婚までの流れページ */
.flow-content{
max-width: 800px;
width: 100%;
margin: 0 auto;
background-color: #FBFAF6;
padding: 40px 50px 30px;
border-radius: 25px;
}
.flow-item{
border-bottom: 1px solid #DAE1E7;
padding: 30px 0;
display: flex;
}
.flow-item:last-child{
border: none;
}
.flow-l{
width: 120px;
}
.flow-en{
font-size: 12px;
color: #FF5D8D;
display: inline-block;
position: relative;
top: -13px;
}
.flow-num{
font-size: 34px;
font-weight: 700;
letter-spacing: .04em;
color: #FF5D8D;
display: inline-block;
position: relative;
top: -5px;
left: 5px;
}
.flow-r{
flex: 1;
}
.flow-ttl{
font-size: 20px;
font-weight: 500;
letter-spacing: .05em;
color: #FF5D8D;
}
.flow-desc{
line-height: 1.6;
font-size: 16px;
margin-top: 20px;
}
@media(max-width:1024px){
.flow-content{
max-width: 100%;
width: calc(100% - 60px);
padding: 40px 50px 30px;
border-radius: 25px;
}
.flow-item{
padding: 30px 0;
}
.flow-l{
width: 110px;
}
.flow-en{
font-size: 12px;
top: -12px;
}
.flow-num{
font-size: 30px;
top: -5px;
left: 5px;
}
.flow-r{

}
.flow-ttl{
font-size: 20px;
}
.flow-desc{
font-size: 15px;
margin-top: 15px;
}
}
@media(max-width:599px){
.flow-content{
width: calc(100% - 30px);
padding: 20px 20px 10px;
border-radius: 15px;
}
.flow-item{
padding: 25px 0;
display: block;
}
.flow-l{
width: 100%;
margin-bottom: 15px;
}
.flow-en{
font-size: 11px;
top: -11px;
}
.flow-num{
font-size: 36px;
top: -5px;
left: 5px;
}
.flow-r{
width: 100%;
}
.flow-ttl{
font-size: 20px;
}
.flow-desc{
font-size: 14px;
margin-top: 15px;
}
}
/* よくある質問ページ */

@media(max-width:1024px){

}
@media(max-width:599px){

}
/* お問い合わせページ */
#contact{
padding-bottom: 100px;
}
.contact-box{
background-color: #FBFAF6;
border-radius: 25px;
max-width: 700px;
width: 100%;
margin: 0 auto;
padding: 40px 50px;
}
.contact-ttl{
font-size: 22px;
font-weight: 500;
line-height: 1.4;
color: #FF5D8D;
text-align: center;
letter-spacing: .03em;
margin-bottom: 20px;
}
.contact-tel{
background-color: #fff;
border-radius: 100px;
margin: 0 auto 20px;
max-width: 280px;
width: 100%;
padding: 15px 0;
display: block;
}
.contact-tel-top{
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 8px;
}
.contact-icon{
width: 26px;
height: 26px;
margin-right: 10px;
}
.contact-icon img{
width: 26px;
height: 26px;
}
.contact-num{
font-size: 26px;
font-weight: 700;
letter-spacing: .04em;
}
.contact-tel-bottom{

}
.contact-tel-bottom p{
font-size: 12px;
text-align: center;
}
.contact-desc{
background-color: #fff;
padding: 20px 30px;
line-height: 1.5;
font-size: 14px;
}
@media(max-width:1024px){
#contact{
padding-bottom: 80px;
}
.contact-box{
border-radius: 20px;
max-width: 100%;
width: calc(100% - 120px);
padding: 30px 40px;
margin: 0 auto;
}
.contact-ttl{
font-size: 20px;
margin-bottom: 20px;
}
.contact-tel{
margin: 0 auto 20px;
max-width: 280px;
padding: 15px 0;
}
.contact-tel-top{
margin-bottom: 8px;
}
.contact-icon{
width: 26px;
height: 26px;
margin-right: 10px;
}
.contact-icon img{
width: 26px;
height: 26px;
}
.contact-num{
font-size: 26px;
}
.contact-tel-bottom{

}
.contact-tel-bottom p{
font-size: 12px;
}
.contact-desc{
padding: 20px 30px;
font-size: 14px;
}
}
@media(max-width:599px){
#contact{
padding-bottom: 60px;
}
.contact-box{
border-radius: 20px;
width: calc(100% - 30px);
padding: 30px 17px;
}
.contact-ttl{
font-size: 18px;
margin-bottom: 15px;
}
.contact-tel{
margin: 0 auto 20px;
max-width: 100%;
padding: 15px 0;
}
.contact-tel-top{
margin-bottom: 8px;
}
.contact-icon{
width: 26px;
height: 26px;
margin-right: 10px;
}
.contact-icon img{
width: 26px;
height: 26px;
}
.contact-num{
font-size: 26px;
}
.contact-tel-bottom{

}
.contact-tel-bottom p{
font-size: 12px;
}
.contact-desc{
padding: 20px 30px;
font-size: 14px;
}
}
/* お問い合わせフォーム */
#contact-form{
padding-top: 120px;
}
.contact-form__wrapper{
max-width: 600px;
width: 100%;
margin: 50px auto 40px;
}
.contact-form__item{
display: flex;
align-items: center;
justify-content: space-between;
border-top: 1px solid #DAE1E7;
padding: 15px 0;
}
.contact-form__item:last-child{
border-bottom: 1px solid #DAE1E7;
}
.contact-form__title{
font-size: 16px;
font-weight: 500;
letter-spacing: .03em;
}
.contact-form__required{
background-color: #FF5D8D;
color: #fff;
text-align: center;
font-size: 11px;
height: 22px;
line-height: 22px;
width: 50px;
margin-left: 10px;
display: inline-block;
border-radius: 100px;
position: relative;
top: -1px;
}
.contact-form__data{
width: 350px;
border: none;
border-radius: 2px;
}
.contact-form__name,
.contact-form__email,
.contact-form__tel{
border: 1px solid #FF5D8D;
height: 40px;
border-radius: 2px;
padding: 10px;
}
.mwform-radio-field-text{
position: relative;
top: -1px;
}
.contact-form__data textarea{
border: 1px solid #FF5D8D;
height: 100px;
border-radius: 2px;
padding: 10px;
}
.contact-form__radio{
height: auto;
}
.mwform-radio-field{
display: block;
margin: .5em 0;
padding-left: 5px;
}
.mwform-checkbox-field label,
.mwform-radio-field label{
display: flex;
align-items: center;
}
.mwform-checkbox-field input,
.mwform-radio-field input{
margin-right: 10px!important;
transform: scale(1.2);
}
.mw_wp_form .horizontal-item+.horizontal-item{
margin-left: 0!important;
}
.contact-form__thanks-message{
text-align: center;
line-height: 1.7;
font-size: 16px;
font-weight: 500;
}
.contact-form-sub{
margin-top: 200px;
}
.contact-form__button-submit{
margin-bottom: 10px;
}
@media(max-width:1024px){
#contact-form{
padding-top: 100px;
}
.contact-form__wrapper{
max-width: 500px;
width: 100%;
margin: 40px auto 30px;
}
.contact-form__item{
padding: 15px 0;
}
.contact-form__title{
font-size: 15px;
}
.contact-form__required{
font-size: 11px;
height: 22px;
line-height: 22px;
margin-left: 10px;
}
.contact-form__data{
width: 350px;
}
.contact-form__thanks-message{
font-size: 16px;
}
.contact-form-sub{
margin-top: 150px;
}
}
@media(max-width:599px){
#contact-form{
padding-top: 60px;
}
.contact-form__wrapper{
max-width: 100%;
width: calc(100% - 50px);
margin: 30px auto 20px;
}
.contact-form__item{
padding: 15px 0;
display: block;
}
.contact-form__title{
font-size: 16px;
}
.contact-form__required{
font-size: 10px;
height: 20px;
line-height: 20px;
margin-left: 8px;
}
.contact-form__data{
width: 100%;
margin-top: 10px;
}
.contact-form__thanks-message{
font-size: 15px;
}
.contact-form-sub{
margin-top: 100px;
}
}
/* 会社概要・アクセス */
#company{

}
#company2{
margin-bottom: 120px;
}
.company-content{
display: flex;
justify-content: center;
}
.company-l{
margin-right: 80px;
}
.company-box{
background-color: #FBFAF6;
border-radius: 15px;
max-width: 380px;
width: 100%;
padding: 40px 25px 15px;
}
.company-ttl{
font-size: 20px;
font-weight: 500;
border-bottom: 1px solid #DAE1E7;
padding-bottom: 20px;
}
.company-table{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-top: 20px;
}
.company-table01{
color: #FF5D8D;
font-weight: 500;
font-size: 16px;
letter-spacing: .04em;
width: 25%;
margin-bottom: 20px;
line-height: 1.4;
}
.company-table02{
font-weight: 500;
font-size: 16px;
letter-spacing: .04em;
width: 75%;
text-align: right;
margin-bottom: 20px;
line-height: 1.4;
}
.company-r{

}
.company-r iframe{
width: 400px;
height: 350px;
}
@media(max-width:1024px){
#company{

}
#company2{
margin-bottom: 100px;
}
.company-content{
max-width: 100%;
width: calc(100% - 60px);
margin: 0 auto;
}
.company-l{
max-width: 360px;
width: 100%;
margin-right: 40px;
}
.company-box{
max-width: 100%;
padding: 35px 20px 10px;
}
.company-ttl{
font-size: 18px;
padding-bottom: 20px;
}
.company-table{
margin-top: 20px;
}
.company-table01{
font-size: 15px;
width: 25%;
margin-bottom: 15px;
}
.company-table02{
font-size: 15px;
width: 75%;
margin-bottom: 15px;
}
.company-r{
flex: 1;
}
.company-r iframe{
width: 100%;
height: 250px;
}
}
@media(max-width:599px){
#company{

}
#company2{
margin-bottom: 80px;
}
.company-content{
max-width: 100%;
width: calc(100% - 30px);
margin: 0 auto;
display: block;
}
.company-l{
max-width: 100%;
margin: 0 0 30px;
}
.company-box{
padding: 35px 20px 10px;
}
.company-ttl{
font-size: 18px;
padding-bottom: 20px;
}
.company-table{
margin-top: 20px;
}
.company-table01{
font-size: 14px;
width: 25%;
margin-bottom: 15px;
}
.company-table02{
font-size: 14px;
width: 75%;
margin-bottom: 15px;
}
.company-r{
width: 100%;
}
.company-r iframe{
width: 100%;
height: 250px;
}
}
#contact-table{
margin-top: 120px;
}
.contact-table{
max-width: 600px;
width: 100%;
margin: 60px auto 0;
}
.contact-table tr{
display: flex;
border-top: 1px solid #DAE1E7;
}
.contact-table tr:last-child{
border-bottom: 1px solid #DAE1E7;
}
.contact-table th{
width: 230px;
padding: 20px 0;
font-size: 17px;
letter-spacing: .03em;
line-height: 1.4;
text-align: left;
font-weight: 500;
}
.contact-table td{
flex: 1;
padding: 20px 0;
font-size: 17px;
letter-spacing: .03em;
line-height: 1.4;
}
@media(max-width:1024px){
#contact-table{
margin-top: 100px;
}
.contact-table{
max-width: 500px;
width: 100%;
margin: 50px auto 0;
}
.contact-table tr{

}
.contact-table th{
width: 200px;
padding: 20px 0;
font-size: 16px;
}
.contact-table td{
padding: 20px 0;
font-size: 16px;
}
}
@media(max-width:599px){
#contact-table{
margin-top: 60px;
}
.contact-table{
max-width: 100%;
width: calc(100% - 30px);
margin: 30px auto 0;
}
.contact-table tr{
display: block;
padding: 15px 5px;
}
.contact-table th{
width: 100%;
padding: 0;
font-size: 14px;
margin-bottom: 10px;
display: inline-block;
}
.contact-table td{
width: 100%;
padding: 0;
font-size: 14px;
display: inline-block;
}
}
/* お知らせ一覧、ブログ一覧ページ */
.news-page{
padding-bottom: 100px;   
}
.news-page-content{
background-color: #fff;
max-width: 700px;
width: 100%;
margin: 0 auto;
padding: 40px 60px 30px;
border-radius: 20px;
}
@media(max-width:1024px){
.news-page{
padding-bottom: 80px;  
}
.news-page-content{
max-width: 600px;
padding: 30px 50px 20px;
}
}
@media(max-width:599px){
.news-page{
padding-bottom: 60px;  
}
.news-page-content{
max-width: 100%;
width: calc(100% - 30px);
padding: 30px 0px 20px;
}
}
/* ご成婚実績ページ */
#voice-page{
margin-top: 200px;
padding-top: 80px;
padding-bottom: 200px;
}
@media(max-width:1024px){
#voice-page{
margin-top: 150px;
padding-top: 60px;
padding-bottom: 120px;
}
}
@media(max-width:599px){
#voice-page{
margin-top: 100px;
padding-top: 40px;
padding-bottom: 80px;
}
}
/* 投稿ページ共通 */
.page-fv{
padding: 220px 0 100px;
}
.page-ttl{
font-size: 40px;
text-align: center;
font-weight: 700;
letter-spacing: .04em;
color: #FF5D8D;       
}
.page-ttl::before{
background: url(img/00_common/decoration.svg) center no-repeat;
background-size: contain;
content: "";
display: block;
height: 20px;
margin-bottom: 18px;
}
.single-article{
max-width: 800px;
width: 100%;
padding: 50px;
border-radius: 20px;
box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
background-color: #fff;
margin: 0 auto 80px;
}
.single-article-top{
border-bottom: 1px solid #DAE1E7;
}
.single-article-date{
font-size: 14px;
letter-spacing: .04em;
margin-bottom: 15px;
}
.single-article-ttl{
font-size: 24px;
letter-spacing: .03em;
margin-bottom: 15px;
font-weight: 500;
line-height: 1.4;
}
.single-article-img{
margin-top: 15px;
}
.single-content{
padding: 30px 0;
}
.single-content h2{
border-left: solid 4px #FF5D8D;
font-size: 20px;
font-weight: 500;
letter-spacing: .04em;
line-height: 1.4;
padding-left: 15px;
margin: 2em 0 1.5em;
}
.single-content h3{
font-size: 20px;
font-weight: 500;
letter-spacing: .04em;
line-height: 1.4;
margin: 2em 0 1.5em;
}
.single-content h4{
font-size: 16px;
font-weight: 500;
letter-spacing: .04em;
line-height: 1.4;
margin: 2em 0 2.5em;
position: relative;
}
.single-content h4::before{
content: "";
position: absolute;
left: 0;
bottom: -15px;
width: 30px;
height: 2px;
border-radius: 2px;
background-color: #FF5D8D;
}
.single-content p{
font-size: 16px;
letter-spacing: .02em;
line-height: 1.5;
margin-bottom: 1.5em;
}
.single-content a{
text-decoration: underline;
color: #FF5D8D;
}
.single-content strong{
font-weight: 700;
}
.single-content ul,
.single-content ol{
margin-bottom: 1.5em;
}
.single-content ul li,
.single-content ol li{
position: relative;
font-size: 16px;
line-height: 1.4;
margin: .5em 0;
padding-left: 20px;
}
.single-content ol li{
counter-increment: itemCounter; 
}
.single-content ul li::before{
content: "⚫︎";
position: absolute;
left: 0;                 
top: 0;
color: #FF5D8D;
}
.single-content ol li::before{
position: absolute;
left: 0;                 
top: 0;
color: #FF5D8D;
content: counter(itemCounter) ".";
font-weight: 700;
}
.single-content iframe{
max-width: 100%;
}
.sidebar{
max-width: 200px;
width: 100%;
margin-left: 80px;
}
.sidebar-ttl{
border-left: solid 4px #FF5D8D;
font-size: 20px;
font-weight: 500;
letter-spacing: .04em;
line-height: 1.4;
padding-left: 15px;
}
.sidebar-list{
margin-top: 10px;
}
.sidebar-list li{
position: relative;
width: 200px;
border-bottom: 1px solid #DAE1E7;
padding-left: 25px;
}
.sidebar-list li::before{
content: "";
display: inline-block;
width: 7px;
height: 7px;
border-top: solid 2px #FF5D8D;
border-right: solid 2px #FF5D8D;
position: absolute;
top: 52%;
left: 0;
transform: translateY(-50%) rotate(45deg);
}
.sidebar-list li a{
font-size: 16px;
font-weight: 500;
display: block;
letter-spacing: .03em;
padding: 20px 0;
}
@media(max-width:1024px){
.page-fv{
padding: 150px 0 60px;
}
.page-ttl{
font-size: 32px;
}
.page-ttl::before{
height: 20px;
margin-bottom: 15px;
}
.single-article{
max-width: 500px;
padding: 30px 20px;
border-radius: 15px;
margin: 0 auto 60px;
}
.single-article-date{
font-size: 14px;
margin-bottom: 15px;
}
.single-article-ttl{
font-size: 22px;
margin-bottom: 15px;
}
.single-article-img{
margin-top: 15px;
}
.single-content{
padding: 25px 0;
}
.single-content h2{
font-size: 18px;
padding-left: 15px;
}
.single-content h3{
font-size: 18px;
}
.single-content h4{
font-size: 15px;
}
.single-content h4::before{
bottom: -15px;
width: 30px;
}
.single-content p{
font-size: 15px;
}
.single-content ul li,
.single-content ol li{
font-size: 15px;
padding-left: 20px;
}
.sidebar{
max-width: 180px;
margin-left: auto;
}
.sidebar-ttl{
font-size: 18px;
padding-left: 15px;
}
.sidebar-list{
margin-top: 10px;
}
.sidebar-list li{
width: 200px;
padding-left: 25px;
}
.sidebar-list li a{
font-size: 15px;
padding: 20px 0;
}
}
@media(max-width:599px){
.page-fv{
padding: 100px 0 50px;
}
.page-ttl{
font-size: 26px;
}
.page-ttl::before{
height: 15px;
margin-bottom: 12px;
}
.single-article{
max-width: 100%;
padding: 30px 15px;
border-radius: 15px;
}
.single-article-date{
font-size: 14px;
margin-bottom: 15px;
}
.single-article-ttl{
font-size: 18px;
margin-bottom: 15px;
}
.single-article-img{
margin-top: 15px;
}
.single-content{
padding: 25px 0;
}
.single-content h2{
font-size: 17px;
padding-left: 15px;
}
.single-content h3{
font-size: 17px;
}
.single-content h4{
font-size: 14px;
}
.single-content p{
font-size: 14px;
}
.single-content ul li,
.single-content ol li{
font-size: 15px;
padding-left: 20px;
}
.sidebar{
max-width: 100%;
width: 95%;
margin: 40px auto 0;
}
.sidebar-ttl{
font-size: 18px;
padding-left: 15px;
}
.sidebar-list{
margin-top: 10px;
}
.sidebar-list li{
width: 100%;
padding-left: 25px;
}
.sidebar-list li a{
font-size: 15px;
padding: 20px 0;
width: 100%;
}
}
/* プライバシーポリシーページ */
.policy-table{
max-width: 100%;
width: 100%;
margin: 50px auto 0;
}
/* よくある質問 */
#qa{
background-color: #FBFAF6;
padding-top: 120px;
}
.qa-content{
max-width: 800px;
width: 100%;
margin: 50px auto 40px;
}
.qa-item{
background-color: #fff;
padding: 30px;
margin-bottom: 20px;
}
.qa-q{
position: relative;
}
.qa-en{
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: #FF5D8D;
height: 40px;
line-height: 44px;
width: 40px;
text-align: center;
color: #fff;
font-size: 22px;
font-weight: 700;
border-radius: 100%;
margin-right: 15px;
}
.qa-ttl{
font-size: 17px;
font-weight: 500;
line-height: 1.4;
padding-left: 60px;
}
.qa-a{
border-top: 1px solid #DAE1E7;
margin-top: 25px;
padding-top: 15px;
font-size: 16px;
line-height: 1.5;
}
#faq{
margin-bottom: 100px;
}
#faq .qa-content{
margin: 0 auto;
}
#faq .qa-item{
background-color: #FBFAF6;
}
@media(max-width:1024px){
#qa{
padding-top: 100px;
}
.qa-content{
max-width: 100%;
width: calc(100% - 60px);
margin: 40px auto 30px;
}
.qa-item{
padding: 30px;
margin-bottom: 20px;
}
.qa-en{
height: 40px;
line-height: 44px;
width: 40px;
font-size: 22px;
margin-right: 15px;
}
.qa-ttl{
font-size: 17px;
padding-left: 60px;
}
.qa-a{
margin-top: 25px;
padding-top: 15px;
font-size: 15px;
}
#faq{
margin-bottom: 80px;
}
#faq .qa-content{
margin: 0 auto;
}
}
@media(max-width:599px){
#qa{
padding-top: 60px;
}
.qa-content{
width: calc(100% - 30px);
margin: 30px auto 30px;
}
.qa-item{
padding: 20px 15px;
margin-bottom: 20px;
}
.qa-en{
height: 30px;
line-height: 33px;
width: 30px;
font-size: 17px;
margin-right: 10px;
}
.qa-ttl{
font-size: 15px;
padding-left: 40px;
}
.qa-a{
margin-top: 20px;
padding-top: 15px;
font-size: 14px;
}
#faq{
margin-bottom: 60px;
}
#faq .qa-content{
margin: 0 auto;
}
}
/* 文章 */
#sentence{
padding: 60px 0;
}
#sentence-box{
max-width: 800px;
width: 100%;
margin: 0 auto;
background-color: #fff;
border-radius: 20px;
padding: 30px;
}
#sentence-box p{
line-height: 1.5;
font-size: 14px;
letter-spacing: 0;
}
@media(max-width:1024px){
#sentence{
padding: 40px 0;
}
#sentence-box{
max-width: 100%;
width: calc(100% - 60px);
border-radius: 10px;
padding: 20px;
}
#sentence-box p{
font-size: 14px;
}
}
@media(max-width:599px){
#sentence{
padding: 30px 0;
}
#sentence-box{
width: calc(100% - 30px);
padding: 15px;
}
#sentence-box p{
font-size: 13px;
}
}
/* 地図 */
#map iframe{
height: 350px;
width: 100%;
}
@media(max-width:1024px){
#map iframe{
height: 300px;
}
}
@media(max-width:599px){
#map iframe{
height: 280px;
}
}
/* SUNCORE */
.suncore{
opacity: .15;
display: block;
position: absolute;
right: 30px;
bottom: 15px;
cursor: inherit;
}
.suncore img{
width: auto;
height: 15px;
}
.suncore:hover{
opacity: .2;
}
@media(max-width:599px){
.suncore img{
height: 15px;
}
}
/* 下からフェードイン */
.fadeIn {
transform: translate3d(0, 60px, 0);
transition: 1s;
opacity: 0;
}
.fadeIn.animated {
transform: translate3d(0, 0, 0);
opacity: 1;
}
/* 充実したサポート体制 */
.support-summary{
max-width: 1200px;
width: 100%;
margin: 0 auto;
}
.support-summary .support-list{
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
margin-top: 60px;
margin-bottom: 100px;
}
.support-summary .support-list li{
text-align: center;
margin: 0 10px 20px 10px;
background-color: #fff;
border-radius: 10px;
/* box-shadow: 5px 5px #C0C8D0; */
max-width: 210px;
width: 100%;
height: 150px;
}
.support-summary .support-list li img{
height: 70px;
width: 100%;
margin-top: 25px;
}
.support-summary .support-list li span{
font-size: 18px;
font-weight: 700;
display: block;
margin-top: 15px;
letter-spacing: 0;
}
@media(max-width:1024px){
.support-summary{
max-width: 100%;
width: 100%;
margin: 0 auto;
}
.support-summary .support-list{
margin-top: 50px;
margin-bottom: 80px;
}
.support-summary .support-list li{
margin: 0 8px 16px 8px;
border-radius: 10px;
/* box-shadow: 5px 5px #C0C8D0; */
max-width: 180px;
height: 140px;
}
.support-summary .support-list li img{
height: 65px;
margin-top: 23px;
}
.support-summary .support-list li span{
font-size: 18px;
margin-top: 12px;
}
}
@media(max-width:599px){
.support-summary{
width: calc(100% - 30px);
}
.support-summary .support-list{
margin-top: 40px;
margin-bottom: 60px;
justify-content: space-between;
}
.support-summary .support-list li{
margin: 0 0 16px;
border-radius: 10px;
/* box-shadow: 5px 5px #c0c8d0; */
max-width: 100%;
width: 48%;
height: 120px;
}
.support-summary .support-list li img{
height: 55px;
margin-top: 23px;
}
.support-summary .support-list li span{
font-size: 15px;
margin-top: 10px;
}
}





@media(max-width:1024px){

}
@media(max-width:599px){

}






@media(max-width:1024px){

}
@media(max-width:599px){

}








@media(max-width:1024px){

}
@media(max-width:599px){

}




@media(max-width:1024px){

}
@media(max-width:599px){

}





