@charset "UTF-8";
/*
Theme Name: Sweet Pro
Author: たかのともひろ
License: SUNCORE
License URI: https://sun-core.jp/
*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;500;700&display=swap');
/*==========================================================================
# 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;
box-sizing: border-box;
}
html {
font-size: 16px;
color: #333;
font-family: 'M PLUS Rounded 1c', sans-serif;
width:100%;
overflow-x: hidden !important;
scroll-behavior: smooth;
}
body {
font-size: 16px;
line-height: 1.5;
-webkit-text-size-adjust: 100%;
font-weight: 300;
letter-spacing: .01em;
box-sizing: border-box;
line-height: 1;
overflow-x: hidden !important;
background-color: #EEF2F5;
}
/* ハンバーガー開閉時に背景を固定 https://kubogen.com/web-programing-287/ */
body.fixed {
width: 100%;
height: 100%;
position: fixed;
}
div{
overflow: hidden !important;
}
ol, ul {
list-style: none;
}
li, dd {
list-style-type: none;
}
header, footer, nav, section, article, aside, figure, figcaption {
display: block;
}
input,
textarea {
-webkit-appearance: none;
border-radius: 0;
}
img {
border: none;
vertical-align: bottom;
width: 100%;
max-width: 100%;
height: auto;
image-rendering: -webkit-optimize-contrast;
}
a {
cursor: pointer;
text-decoration: none;
color: #444444;
text-decoration: none;
-webkit-transition: all 0.2s ease 0.1s;
transition: all 0.2s ease 0.1s;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
opacity: .8;
}
.sp-only{
display: none!important;
}
@media(max-width:599px){
.pc-only{
display: none!important;
}
.sp-only{
display: block!important;
}
}
/* 文字装飾 */
/* マーカースクロール */
/* .marker-animation.active{
background-position: -100% .9em;
} */
.marker-animation {
display: inline-block;
background-color: #3c96c8;
color: #fff;
padding: 0px 7px;
margin: 2px 0;
letter-spacing: .02em;
}
/* 見出し・文字全般 */
p{
font-size: 16px;
}
@media(max-width:1024px){
p{
font-size: 15px;
}
}
@media(max-width:599px){
p{
font-size: 14px;
}
}
.inner{
padding-left: 100px;
padding-right: 100px;
margin: auto;
overflow: visible!important;
max-width: 1500px;
}
@media(max-width:1024px){
.inner{
padding-left: 30px;
padding-right: 30px;
}
}
@media(max-width:599px){
.inner{
padding-left: 15px;
padding-right: 15px;
}
}

.h2-text{
text-align: center;
margin-bottom: 60px;
}
.h2-text p{
font-size: 44px;
color: #3C96C8;
margin-bottom: 15px;
font-weight: 500;
letter-spacing: .04em;
}
.h2-text h1{
font-size: 16px;
line-height: 1.3;
font-weight: 500;
}
.h2-text h2{
font-size: 16px;
line-height: 1.3;
font-weight: 500;
}
@media(max-width:1024px){
.h2-text{
margin-bottom: 50px;
}
.h2-text p{
font-size: 40px;
}
}
@media(max-width:599px){
.h2-text{
margin-bottom: 30px;
}
.h2-text h1{
font-size: 14px;
}
.h2-text h2{
font-size: 14px;
}
.h2-text p{
font-size: 34px;
}
}
/* スマホ固定フッター */
#page-top{
display: none;
overflow: visible!important;
}
@media(max-width:599px){
/*リンクを下に固定*/
#page-top {
display: block;
position: fixed;
right: 0;
bottom: 15px;
z-index: 2;
opacity: 0;/*はじめは非表示*/
transform: translateY(100px);
width: 100%;
text-align: center;
}
/*　上に上がる動き　*/
#page-top.UpMove{
animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
from {
opacity: 0;
transform: translateY(100px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/*　下に下がる動き　*/
#page-top.DownMove{
animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
from {
opacity: 1;
transform: translateY(0);
}
to {
opacity: 1;
transform: translateY(100px);
}
}
/*リンクの形状*/
#page-top a{
box-shadow: 0 2px 20px rgb(0 0 0 / 20%);
font-size: 15px;
border: 3px solid #fff;
line-height: 52px;
height: 57px;
}
}
/*===========================================================*/
/*　画像の拡大 https://coco-factory.jp/ugokuweb/move02/7-1/　*/
/*===========================================================*/
.zoomIn img{
transform: scale(1);
transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}
.zoomIn a:hover img{
transform: scale(1.1);
}
.mask{
display: block;
line-height: 0;
overflow: hidden;
}
/*===========================================================*/
/* 印象編　5-3 流体シェイプ https://coco-factory.jp/ugokuweb/move02/5-3/*/
/*===========================================================*/
.fluid {
/* object-fit: cover;
width:100%;
height: auto;
animation: fluidrotate 25s ease 0s infinite;
box-shadow: 0 2px 20px rgb(0 0 0 / 8%); */
object-fit: cover;
width: 100%;
height: auto;
border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
}
.fluid2 {
/* object-fit: cover;
width:100%;
height: auto;
animation: fluidrotate 25s ease 0s infinite;
box-shadow: 0 2px 20px rgb(0 0 0 / 8%); */
object-fit: cover;
width: 100%;
height: auto;
border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
}
/* @keyframes fluidrotate {
0%, 100% {
border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
}
14% {
border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
}
28% {
border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
}
42% {
border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
}
56% {
border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
}
70% {
border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
}
84% {
border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
}
}
@keyframes fluidrotate2 {
0%, 100% {
border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
}
14% {
border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
}
28% {
border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
}
42% {
border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
}
56% {
border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
}
70% {
border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
}
84% {
border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
}
} */
/*===========================================================*/
/* 波https://coco-factory.jp/ugokuweb/move02/5-11/ */
/*===========================================================*/
.wave{
position:relative;
overflow:hidden;
height:200px;/*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
margin-bottom: -5px;
}
canvas{
position: absolute;
bottom: 0;
left:0;
width: 100%;
}
/* ボタン */
.btn{
border-radius: 100px;
background-color: #3C96C8;
color: #fff;
height: 55px;
line-height: 55px;
display: inline-block;
position: relative;
font-size: 14px;
width: 300px;
text-align: center;
box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
overflow: visible!important;
letter-spacing: .04em;
}
.btn-header{
width: 255px;
font-size: 14px;
padding-right: 12px;
box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
}
.btn::after {
content: url("img/00_common/arrow.svg");
position: absolute;
top: 50%;
right: 15px;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width: 15px;
height: auto;
-webkit-transition: all 0.5s ease 0.1s;
transition: all 0.5s ease 0.1s;
-webkit-filter: brightness(0) invert(1);
filter: brightness(0) invert(1);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.btn:hover::after {
-webkit-filter: none;
filter: none;
right: 10px;
}
@media(max-width:1024px){
.btn{
height: 50px;
line-height: 50px;
}
}
/* グローバルナビ */
.header{
margin-right: 30px;
margin-left: 30px;
position: fixed;
top: 20px;
width: calc(100% - 60px);
z-index: 10;
}
.header-inner{
display: flex;
justify-content: space-between;
align-items: center;
height: 80px;
line-height: 80px;
padding-left: 50px;
padding-right: 20px;
background: #fff;
border-radius: 100px;
box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
}
.logo{
/* font-size: 30px; */
}
.logo img{
height: 45px;
width: auto;
vertical-align: middle;
}
.header-nav{
display: flex;
align-items: center;
overflow: visible!important;
}
.header-nav-list{
display: flex;
}
.header-nav-list li{
-webkit-transform: skewX(150deg);
-moz-transform: skewX(150deg);
transform: skewX(150deg);
border-right: 1px solid #000;
}
.header-nav-list li:last-child{
border-right: none;
}
.header-nav-list li a{
font-size: 13px;
padding-left: 15px;
padding-right: 15px;
display:block;
transform: skewX(-150deg);
line-height: 1;
font-weight: 500;
}
@media(max-width:1024px){
.header{
margin-right: 0;
margin-left: 0;
position: inherit;
top: 0;
width: 100%;
}
.header-inner{
height: 60px;
line-height: 60px;
padding-left: 15px;
padding-right: 0;
border-radius: 0;
}
.logo img{
height: 45px;
width: auto;
}
.header-nav{
display: none;
}
}
@media(max-width:599px){

}
/* ハンバーガーメニュー */
.globalMenuSp{
display: none;
}
@media(max-width:1024px){
.hamburger {
display : block;
position: absolute;
z-index : 3;
right : 32px;
right : 0;
top   : 32px;
top   : 0;
width : 42px;
height: 42px;
width : 60px;
height: 60px;
cursor: pointer;
text-align: center;
background-color: #3C96C8;
}
.hamburger span {
display : block;
position: absolute;
width   : 30px;
height  : 1px ;
left    : 50%;
background : #fff;
/* -webkit-transition: 0.2s all;
-moz-transition   : 0.2s all;
transition        : 0.2s all; */
}
.hamburger span:nth-child(1) {
top: calc(50% - 10px);
transform: translate(-50% , -50%);
}
.hamburger span:nth-child(2) {
top: 50%;
transform: translate(-50% , -50%);
}
.hamburger span:nth-child(3) {
top: calc(50% + 10px);
transform: translate(-50% , -50%);
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
top : 30px;
left: 18px;
width: 25px;
background : #fff;
-webkit-transform: rotate(-45deg);
-moz-transform   : rotate(-45deg);
transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
opacity: 0;
-webkit-animation: active-btn17-bar02 .3s forwards;
animation: active-hamburger-bar02 .3s forwards;
}
@-webkit-keyframes active-hamburger-bar02 {
100% {
height: 0;
}
}
@keyframes active-hamburger-bar02 {
100% {
height: 0;
}
}
.hamburger.active span:nth-child(3) {
top: 30px;
left: 18px;
width: 25px;
background : #fff;
-webkit-transform: rotate(45deg);
-moz-transform   : rotate(45deg);
transform        : rotate(45deg);
}
.hamburger::after {
position: absolute;
top: 50%;
left: 50%;
display: block;
content: '';
width: 60px;
height: 60px;
margin: -32px 0 0 -32px;
border-radius: 50%;
border: 2px solid rgba(0, 0, 0, 0);
transition: all .75s;
}
nav.globalMenuSp {
position: fixed;
z-index : 10;
top  : 0;
left : 0;
color: #fff;
background-color: #3C96C8;
text-align: center;
width: 100%;
height: 100vh;
display: none;
transition: opacity .6s ease, visibility .6s ease;
}
nav.globalMenuSp ul {
margin: 0 auto;
padding: 0;
padding-top: 20px;
width: 100%;
display: block;
}
nav.globalMenuSp ul li {
list-style-type: none;
padding: 0;
width: 100%;
transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
background :#3C96C8;
}
nav.globalMenuSp ul li a {
display: block;
color: #fff;
text-decoration: none;
height: 35px;
line-height: 35px;
padding: 0;
font-size: 14.5px;
letter-spacing: .03em;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
display: block;
margin-top: 60px;
}
}
/* TOPページ */
/* ファーストビュー */
.fv{
position: relative;
z-index: 2;
}
.fv-img{
/* margin-left: 280px;
overflow: visible!important; */
width: 100%;
}
.fv-img img{
width: 100%;
/* height: 750px;
object-fit: cover;
border-radius: 0 0 0 80px;
box-shadow: 0 2px 20px rgb(0 0 0 / 10%); */
}
.fv-img-pc{

}
.fv-img-sp{
display: none;
}
.fv-title {
position: absolute;
top: 50%;
left: 100px;
font-size: 40px;
color: #fff;
line-height: 1.6;
letter-spacing: .03em;
font-weight: 300;
}
.fv-title span {
background-color:#3C96C8;
padding: 0 8px;
}
@media(max-width:1024px){
.fv-img{
/* margin-left: 100px; */
}
.fv-img img{
/* height: 460px;
object-fit: cover;
border-radius: 0 0 0 50px;
object-position: center; */
}
.fv-img-pc{
display: none;
}
.fv-img-sp{
display: block;
}
.fv-title {
top: 60%;
left: 15px;
font-size: 32px;
line-height: 1.7;
}
.fv-title span {
padding: 1px 6px;
}
}
@media(max-width:599px){
.fv-img{
/* margin-left: 40px; */
}
.fv-img img{
/* height: 400px;
border-radius: 0 0 0 40px; */
}        
.fv-title {
font-size: 25px;
line-height: 1.7;
}
}
/* あいさつ */
.top-greeting{
padding-top: 100px;
padding-bottom: 100px;
}
.top-greeting-inner{
display: flex;
/* flex-direction: row-reverse; */
align-items: center;
}
.top-greeting-inner2{
flex-direction: row-reverse;
}
.top-greeting-l{
width:55%;
overflow: visible!important;
}
.top-greeting-l h2{
font-size: 25px;
margin-bottom: 20px;
line-height: 1.6;
}
.top-greeting-l p{
line-height: 2;
margin-bottom: 30px;
max-width: 600px;
font-size: 16px;
}
.top-greeting-r{
width: 45%;
text-align: center;
overflow: visible!important;
}
.top-greeting-img{
margin-bottom: 30px;
}
.top-greeting-img img{
width: 420px;
}
.top-greeting-name01{
font-size: 14px;
margin-bottom: 10px;
}
.top-greeting-name02{
font-size: 18px;
}
@media(max-width:1024px){
.top-greeting{
padding-top: 80px;
padding-bottom: 100px;
}
.top-greeting-inner2{
justify-content: space-between;
}
.top-greeting-img{
margin-bottom: 30px;
}
.top-greeting-img img{
width: 300px;
}
.top-greeting-name01{
font-size: 13px;
margin-bottom: 8px;
}
.top-greeting-name02{
font-size: 18px;
margin-bottom: 30px;
}
.top-greeting-l{
width:50%;
}
.top-greeting-l h2{
font-size: 20px;
margin-bottom: 25px;
line-height: 1.6;
}
.top-greeting-l p{
line-height: 1.7;
margin-bottom: 25px;
}
.top-greeting-r .btn{
margin: auto;
}
}
@media(max-width:599px){
.top-greeting{
padding-top: 60px;
padding-bottom: 30px;
}
.top-greeting-inner{
display: block;
}
.top-greeting-l{
width:100%;
}
.top-greeting-l h2{
font-size: 17px;
margin-bottom: 25px;
line-height: 1.6;
}
.top-greeting-l p{
line-height: 2;
margin-bottom: 30px;
max-width: 500px;
font-size: 13px;
}
.top-greeting-r{
width: 100%;
}
.top-greeting-img{
margin-bottom: 30px;
}
.top-greeting-name01{
font-size: 14px;
margin-bottom: 10px;
}
.top-greeting-name02{
font-size: 18px;
margin-bottom: 30px;
}
.top-greeting-r .btn{
margin: auto;
}
}
/* 選ばれる理由 */
.top-merit{
padding-bottom: 140px;
text-align: center;
}
.top-merit-inner{

}
.top-merit-content{
display: flex;
justify-content: space-between;
margin-bottom: 60px;
}
.top-merit-item{
text-align: center;
width: 30%;
}
.top-merit-item img{
margin-bottom: 30px;
width: 350px;
}
.top-merit-item h3{
font-size: 17px;
color: #3C96C8;
line-height: 1.6;
font-weight: bold;
}
@media(max-width:1024px){
.top-merit{
padding-bottom: 100px;
}
.top-merit-content{
margin-bottom: 30px;
}
.top-merit-item{
width: 32%;
}
.top-merit-item img{
margin-bottom: 20px;
max-width: 100%;
width: 100%;
}            
.top-merit-item h3{
font-size: 15px;
}
}
@media(max-width:599px){
.top-merit-inner{
padding-top: 60px;
}
.top-merit-content{
display:block;
margin-bottom: 0;
}
.top-merit-item{
width: 100%;
margin-bottom: 50px;
}
.top-merit-item img{
width: 300px;
margin-bottom: 20px;
}
.top-merit-item h3{
font-size: 16px;
}
}
/* 会員データ */
.top-data{

}
.top-data-list{
display: flex;
justify-content: space-around;
align-items: center;
text-align: center;
margin: 0 auto 60px;
max-width: 1000px;
}
.top-data-list-item{

}
.top-data-list-title{
font-size: 18px;
margin-bottom: 20px;
letter-spacing: .02em;
}
.top-data-list-num{
font-size: 60px;
letter-spacing: 0;
font-weight: 500;
}
.top-data-list-border{
width: 35px;
height: 1px;
background:#444444;
margin-top: 30px;
}
.ibj-banner{
margin-top: 10px;
display: block;
text-align: center;
}
.ibj-banner img{
height: 50px;
width: auto;
}
.top-data-text{
text-align: center;
font-size: 10px;
line-height: 1.35;
}
.member-list{
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-top: 60px;
overflow: visible!important;
}
.member-list-l{
overflow: visible!important;
}
.member-list-r{
overflow: visible!important;
}
.member-item{
width: 90%;
max-width: 450px;
box-shadow: 0 5px 20px #EBEBEB;
margin: auto;
margin-bottom: 30px;
padding: 20px 30px;
display: flex;
flex-wrap: wrap;
border-radius: 5px;
background-color: #fff;
}
.member-item-man{
border: 3px solid #55A1DB;
}
.member-item-woman{
border: 3px solid #E09697;
}
.member-img{
width: 100px;
margin-right: 15px;
}
.member-img img{
width: 100px;
height: 100px;
}
.member-text{
font-size: 12px;
font-weight: 500;
margin-top: 8px;
text-align: center;
letter-spacing: .02em;
line-height: 1.3;
}
.member-status{
width: calc(100% - 115px);
display: flex;
flex-wrap: wrap;
}
.member-status-item {
width: 50%;
font-size: 12px;
font-weight: 500;
text-align: center;
padding: 12px 0;
}
.member-status-item span{
font-size: 14px;
display: block;
margin-top: 10px;
letter-spacing: .02em;
}
.member-status-item01{
border-right: 1px solid #d6d6d6;
border-bottom: 1px solid #d6d6d6;
}
.member-status-item02{
border-bottom: 1px solid #d6d6d6;
}
.member-status-item03{
border-right: 1px solid #d6d6d6;
}
.member-status-item04{

}
.member-comment{
width: 100%;
margin-top: 20px;
line-height: 1.5;
}
.member-comment01{
font-size: 12px;
margin-bottom: 5px;
}
.member-comment02{
font-size: 12px;
}
.member-item-memo{
font-size: 11px;
margin-left: 25px;
line-height: 1.8;
text-align: center;
}
@media(max-width:1024px){
.top-data-inner{
padding-left: 15px;
padding-right: 15px;
}
.top-data-list-title{
font-size: 16px;
margin-bottom: 15px;
}
.top-data-list-num{
font-size: 52px;
}
.member-list{
margin-top: 40px;
}
.member-list-l{
width: 50%;
}
.member-list-r{
width: 50%;
}
.member-item{
width: 95%;
margin-bottom: 20px;
padding: 20px 10px;
}
.member-status-item span{
font-size: 13px;
letter-spacing: .01em;
}
}
@media(max-width:599px){
.top-data{

}
.top-data-inner{
max-width: 100%;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 40px;
}
.top-data-title{
text-align: center;
}
.top-data-list{
display: block;
margin: 40px auto 0;
}
.top-data-list-item{

}
.top-data-list-title{
font-size: 17px;
margin-bottom: 15px;
}
.top-data-list-num{
font-size: 50px;
}
.top-data-list-border{
width: 35px;
height: 1px;
background:#444444;
margin: 30px auto 60px;
}
.top-data-text{
text-align: center;
font-size: 10px;
}
.member-list{
display: block;
margin-top: 40px;
}
.member-list-l{
width: 100%;
}
.member-list-r{
width: 100%;
}
.member-item{
width: 100%;
margin-bottom: 20px;
padding: 15px;
}
.member-text{
font-size: 13px;
margin-top: 8px;
}
.member-status-item {
font-size: 12px;
text-align: center;
padding: 12px 0;
}
.member-status-item span{
font-size: 14px;
margin-top: 8px;
}
.member-comment{
margin-top: 20px;
}
.member-comment01{
font-size: 11px;
margin-bottom: 3px;
}
.member-comment02{
font-size: 13px;
}
.member-item-memo{
font-size: 10px;
margin-left: 0;
}
}
/* 料金プラン */
.top-plan{
padding-top: 80px;
padding-bottom: 100px;
}
.top-plan-inner{

}
.top-plan-box{
background-color: #EEF2F5;
max-width: 1200px;
padding-top: 60px;
padding-bottom: 50px;
margin: auto;
text-align: center;
}
.top-plan-content{
display: flex;
align-items: center;
justify-content: center;
margin-top: 60px;
margin-bottom: 40px;
overflow: visible!important;
}
.top-plan-content-l,
.top-plan-content-r{
border-radius: 50%;
background-color: #fff;
box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
height: 300px;
width: 300px;
display: flex;
}
.top-plan-content-l-text,
.top-plan-content-r-text{
text-align: center;
margin: auto;
}
.top-plan-content-l-text01,
.top-plan-content-r-text01{
font-size: 20px;
margin-bottom: 15px;
display: block;
}
.top-plan-content-l-text02,
.top-plan-content-r-text02{
font-size: 44px;
color: #3C96C8;
font-weight: 500;
}
.top-plan-content-l-text02 span,
.top-plan-content-r-text02 span{
font-size: 20px;
color: #333333;
padding-left: 10px;
}
.top-plan-content-img{
margin-left: 60px;
margin-right: 60px;
}
.top-plan-content-img img{
width: 80px;
height: 80px;
}
.top-plan-memo{
text-align: center;
font-size: 11px;
margin-bottom: 30px;
line-height: 1.3;
}
@media(max-width:1024px){
.top-plan-box{
max-width: 100%;
padding-top: 50px;
padding-bottom: 40px;
}
.top-plan-content{
margin-top: 50px;
margin-bottom: 30px;
}
.top-plan-content-l,
.top-plan-content-r{
height: 260px;
width: 260px;
}
.top-plan-content-l-text01,
.top-plan-content-r-text01{
font-size: 18px;
margin-bottom: 15px;
}
.top-plan-content-l-text02,
.top-plan-content-r-text02{
font-size: 38px;
}
.top-plan-content-l-text02 span,
.top-plan-content-r-text02 span{
font-size: 18px;
}
.top-plan-content-img{
margin-left: 40px;
margin-right: 40px;
}
.top-plan-content-img img{
width: 50px;
height: 50px;
}
.top-plan-memo{
text-align: center;
font-size: 11px;
margin-bottom: 30px;
}
}
@media(max-width:599px){
.top-plan{
padding-top: 40px;
padding-bottom: 60px;
}
.top-plan .h2-text{
margin-bottom: 30px;
}
.top-plan-box{
padding-bottom: 50px;
}
.top-plan-content{
display:block;
margin-top: 30px;
margin-bottom: 30px;
}
.top-plan-content-l,
.top-plan-content-r{
height: 200px;
width: 200px;
margin: 15px auto;
}
.top-plan-content-l-text01,
.top-plan-content-r-text01{
font-size: 16px;
margin-bottom: 12px;
}
.top-plan-content-l-text02,
.top-plan-content-r-text02{
font-size: 36px;
}
.top-plan-content-l-text02 span,
.top-plan-content-r-text02 span{
font-size: 16px;
}
.top-plan-content-img{
margin-left: 0;
margin-right: 0;
}
.top-plan-content-img img{
width: 40px;
height: 40px;
}
}
/* ご成婚したカップル */
.top-voice{
padding-bottom: 100px;
position: relative;
}
.top-voice::after{
content: "";
background-color: #EEF2F5;
width: 100%;
height: 300px;
position: absolute;
bottom: 130px;
left: 0;
z-index: -1;
}
.top-voice-inner{
text-align: center;
}
.top-voice-content{
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 60px;
overflow: visible!important;
}
.top-voice-item{
width: 30%;
display: block;
}
.top-voice-item:hover{
opacity: 1;
}
.top-voice-item img{
max-width: 350px;
width: 100%;
height: 350px;
}
@media(max-width:1024px){
.top-voice::after{
height: 200px;
bottom: 130px;
}
.top-voice-item{
width: 31%;
}
.top-voice-item img{
max-width: 250px;
width: 100%;
height: 250px;
}
}
@media(max-width:599px){
.top-voice{
padding-bottom: 60px;
}
.top-voice::after{
height: 500px;
bottom: 80px;
}
.top-voice-content{
display: block;
margin-bottom: 50px;
}
.top-voice-item{
width: 90%;
margin: 15px 5%;
}
.top-voice-item img{
height: 260px;
max-width: 300px;
}
}
/* お知らせ */
.top-news{
padding-bottom: 100px;
}
.top-news .h2-text{
margin-bottom: 40px;
}
.top-news-inner{
display: flex;
justify-content: space-around;
max-width: 1350px;
}
.top-inner-news-content{
max-width: 450px;
}
.top-inner-news-article{
border-bottom: 1px solid #333333;
padding-top: 20px;
padding-bottom: 20px;
display: flex;
flex-wrap: wrap;
}
.top-inner-news-content-title{
margin-bottom: 20px;
width: 100%;
line-height: 1.5;
}
.top-inner-news-content-data{
font-size: 14px;
margin-right: 15px;
}
.top-inner-news-content-category{
font-size: 14px;
color: #3C96C8;
}
@media(max-width:1024px){
.top-news-inner{
max-width: 100%;
justify-content: space-between;
}
.top-inner-news{
width: 46%;
}
.top-inner-news-content{
max-width: 100%;
}
.top-inner-news-content-title{
margin-bottom: 15px;
}
.top-inner-news-content-data{
font-size: 13px;
}
.top-inner-news-content-category{
font-size: 13px;
}
}
@media(max-width:599px){
.top-news{
padding-bottom: 30px;
}
.top-news .h2-text{
margin-bottom: 30px;
}
.top-news-inner{
display: block;
}
.top-inner-news{
width: 100%;
margin-bottom: 60px;
}
.top-inner-news-article{
padding-top: 15px;
padding-bottom: 15px;
}
.top-inner-news-content-title{
margin-bottom: 15px;
}
.top-inner-news-content-data{
font-size: 12px;
margin-right: 10px;
}
.top-inner-news-content-category{
font-size: 12px;
}
}
/* カウンセリング場所 */
.top-access{
padding-bottom: 60px;
}
.top-access-inner{
max-width: 1300px;
}
.top-access-content{
display: flex;
align-items: center;
overflow: visible!important;
}
.top-access-l{
width: 50%;
overflow: visible!important;
}
.top-access-l h3{
font-size: 25px;
margin-bottom: 50px;
line-height: 1.6;
}
.top-access-l p{
font-size: 16px;
line-height: 1.5;
margin-bottom: 5px;
}
.top-access-l a{
font-size: 16px;
display: block;
}
.top-access-l .btn{
margin-top: 20px;
}
.top-access-r{
width: 50%;
}
.google-map{
width: 100%;
height: 400px;
}
@media(max-width:1024px){
.top-access-inner{
max-width: 100%;
}
.top-access-l h3{
font-size: 20px;
margin-bottom: 40px;
line-height: 1.6;
}
.top-access-l p{
font-size: 15px;
}
.google-map{
width: 100%;
height: 300px;
}
}
@media(max-width:599px){
.top-access{
padding-bottom: 30px;
}
.top-access-content{
display: block;
}
.top-access-l{
width: 100%;
}
.top-access-l h3{
font-size: 16px;
margin-bottom: 30px;
line-height: 1.6;
}
.top-access-l p{
font-size: 14px;
line-height: 1.5;
margin-bottom: 0;
}
.top-access-l a{
font-size: 14px;
}
.top-access-l .btn{
display: block;
margin: auto;
margin-top: 20px;
}
.google-map{
width: 100%;
height: 280px;
margin-bottom: 30px;
}
}
/* フッター */
.footer{
color: #fff;
background-color: #3C96C8;
padding-top: 30px;
padding-bottom: 60px;
}
.footer-inner{
display: flex;
align-items: center;
}
.footer-l{
width: 40%;
}
.footer-logo{
font-size: 13px;
margin-bottom: 40px;
color: #fff;
display: block;
letter-spacing: .05em;
font-weight: 500;
}
.footer-logo span{
font-size: 28px;
display: block;
padding-top: 10px;
}
.footer-text01{
font-size: 14px;
margin-bottom: 20px;
line-height: 1.5;
}
.footer-text02{
font-size: 16px;
margin-bottom: 40px;
}
.footer-text03{
font-size: 12px;
}
.footer-r{
width: 60%;
display: flex;
}
.footer-list{
margin-right: 80px;
}
.footer-list li{

}
.footer-list li a{
font-size: 14px;
color: #fff;
line-height: 30px;
letter-spacing: .03em;
}
@media(max-width:1024px){
.footer{
padding-top: 20px;
padding-bottom: 30px;
text-align: center;
}
.footer-inner{
display: block;
}
.footer-l{
width: 100%;
}
.footer-logo{
font-size: 12px;
margin-bottom: 40px;
}
.footer-logo span{
font-size: 26px;
display: block;
padding-top: 10px;
}
.footer-text01{
font-size: 12px;
margin-bottom: 20px;
line-height: 1.5;
}
.footer-text02{
font-size: 15px;
margin-bottom: 30px;
}
.footer-text03{
font-size: 10px;
}
.footer-r{
display: none;
}
}
@media(max-width:599px){
.footer{
padding-top: 15px;
padding-bottom: 80px;
}
.footer-logo{
font-size: 12px;
margin-bottom: 30px;
}
.footer-logo span{
font-size: 24px;
padding-top: 10px;
}
.footer-text01{
font-size: 12px;
margin-bottom: 20px;
line-height: 1.5;
}
.footer-text02{
font-size: 15px;
margin-bottom: 30px;
}
}
/* 下層ページ */
/* はじめての方へ */
/* 下層ファーストビュー */
.fv-page{
position: relative;
height: 500px;
}
.fv-page-img{
position: absolute;
right: 0;
top: 0;
}
.fv-page-img img{
max-width: 900px;
height: 500px;
object-fit: cover;
border-radius: 0 0 0 25px;
}
.fv-page-title{
position: absolute;
top: 50%;
left: 13%;
transform: translateY(-50%);
text-align: center;
}
.fv-page-title01{
font-size: 20px;
color: #3C96C8;
margin-bottom: 15px;
}
.fv-page-title02{
font-size: 32px;
}
@media(max-width:1024px){
.fv-page{
height: 300px;
}
.fv-page-img img{
max-width: 680px;
height: 300px;
border-radius: 0 0 0 20px;
}
.fv-page-title{

}
.fv-page-title01{
font-size: 17px;
margin-bottom: 10px;
}
.fv-page-title02{
font-size: 24px;
text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
-1px 1px 0 #FFF, 1px -1px 0 #FFF,
0px 1px 0 #FFF,  0-1px 0 #FFF,
-1px 0 0 #FFF, 1px 0 0 #FFF;
}
}
@media(max-width:599px){
.fv-page{
height: 200px;
}
.fv-page-img{
width: 100%;
}
.fv-page-img img{
max-width: 100%;
width: 100%;
margin-left: 60px;
height: 200px;
}
.fv-page-title{
left: 20px;
text-align: left;
}
.fv-page-title01{
font-size: 16px;
margin-bottom: 10px;
}
.fv-page-title02{
font-size: 22px;
font-weight: 500;
letter-spacing: .04em;
}
}
/* ぱんくずリスト */
.breadcrumbsWrap {
display: block;
text-align: right;
letter-spacing: .1em;
color: #FFF;
}
.breadcrumbs {
display: inline-block;
position: relative;
background-color: #3C96C8;
border-radius: 0 0 0 35px;
width: 480px;
font-size: 12px;
height: 70px;
line-height: 70px;
padding-right: 30px;
}
.breadcrumbs span{
color: #FFF;
}
.breadcrumbs-wrapper{
max-width: 900px;
width: 100%;
margin: 15px auto;
}
.breadcrumbs-wrapper p{
font-size: 13.5px;
line-height: 1.4;
}
.breadcrumbs-wrapper a{
font-size: 13px;
line-height: 1.4;
color: #1e73be;
text-decoration: underline;
}
@media(max-width:1024px){
.breadcrumbs {
width: 400px;
height: 50px;
line-height: 50px;
padding-right: 10px;
}
.breadcrumbs-wrapper{
max-width: 95%;
margin: 15px auto;
}
.breadcrumbs-wrapper p{
font-size: 12.5px;
}
.breadcrumbs-wrapper a{
font-size: 12.5px;
}
}
@media(max-width:599px){
.breadcrumbs {
width: 70%;
height: 35px;
line-height: 35px;
padding-right: 10px;
font-size: 9px;
border-radius: 0 0 0 15px;
letter-spacing: 0;
}
.breadcrumbs-wrapper{
max-width: 95%;
margin: 10px auto;
}
.breadcrumbs-wrapper p{
font-size: 11.5px;
}
.breadcrumbs-wrapper a{
font-size: 11.5px;
}
}
/* メッセージ */
.about-message{
padding-top: 100px;
padding-bottom: 100px;
}
.about-message-inner{
text-align: center;
}
.about-message-inner h2{
font-size: 26px;
margin-bottom: 50px;
line-height: 1.6;
}
.about-message-inner p{
line-height: 2;
margin: auto;
margin-bottom: 30px;
max-width: 800px;
}
@media(max-width:1024px){
.about-message{
padding-top: 100px;
padding-bottom: 60px;
}
.about-message-inner{
text-align: center;
}
.about-message-inner h2{
font-size: 20px;
margin-bottom: 40px;
line-height: 1.6;
}
.about-message-inner p{
line-height: 2;
margin-bottom: 30px;
}
}
@media(max-width:599px){
.about-message{
padding-top: 100px;
padding-bottom: 60px;
}
.about-message-inner{
text-align: center;
padding-left: 5px;
padding-right: 5px;
}
.about-message-inner h2{
font-size: 17px;
margin-bottom: 20px;
line-height: 1.6;
letter-spacing: .01em;
}
.about-message-inner p{
line-height: 2;
margin-bottom: 30px;
max-width: 500px;
padding-left: 15px;
padding-right: 15px;
}
}
/* 私たちの特長 */
.about-feature{

}
.about-feature-inner{

}
.about-feature-content{

}
.about-feature-item{
display: flex;
align-items: center;
justify-content: space-around;
margin-bottom: 100px;
}
.about-feature-item-l{
width: 45%;
text-align: center;
overflow: visible!important;
}
.about-feature-item-l img{
height: 300px;
width: 450px;
}
.about-feature-item-r{
width: 55%;
}
.about-feature-item-r h3{
font-size: 50px;
color: #3C96C8;
margin-bottom: 30px;
display: flex;
align-items: center;
font-weight: 500;
}
.about-feature-item-r h3 span{
font-size: 21px;
margin-left: 20px;
color: #444;
line-height: 1.45;
font-weight: 500;
}
.about-feature-item-r p{
font-size: 16px;
line-height: 2;
max-width: 600px;
}
@media(max-width:1024px){
.about-feature-item-l{
width: 40%;
}
.about-feature-item-l img{
height: 200px;
width: 100%;
max-width: 250px;
}
.about-feature-item-r{
width: 60%;
}
.about-feature-item-r h3{
font-size: 30px;
margin-bottom: 20px;
}
.about-feature-item-r h3 span{
font-size: 18px;
margin-left: 15px;
}
.about-feature-item-r p{
font-size: 15px;
}
}
@media(max-width:599px){
.about-feature-item{
display: block;
margin-bottom: 60px;
}
.about-feature-item-l{
width: 100%;
margin-bottom: 15px;
}
.about-feature-item-l img{
height: 200px;
width: 100%;
max-width: 250px;
}
.about-feature-item-r{
width: 100%;
}
.about-feature-item-r h3{
font-size: 26px;
margin-bottom: 20px;
}
.about-feature-item-r h3 span{
font-size: 16px;
margin-left: 10px;
}
.about-feature-item-r p{
font-size: 13px;
line-height: 1.8;
}
}
/* 他社にはない、人気なサービス */
.about-service{

}
.about-service-inner{
padding-bottom: 60px;
}
.about-service-list{
display: flex;
justify-content: center;
}
.about-service-list li{
max-width: 360px;
width: 100%;
margin-left: 20px;
margin-right: 20px;
}
.about-service-list li h3{
margin-bottom: 15px;
font-size: 20px;
text-align: center;
font-weight: 500;
}
.about-service-list li p{
font-size: 15px;
line-height: 1.6;
}
.about-service-list-img{
height: 220px;
max-width: 350px;
position: relative;
margin-bottom: 35px;
overflow: visible!important;
}
.about-service-list-img::before{
content: "";
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 10px;
left: 10px;
border-radius: 12px;
background-color: #3C96C8;
}
.about-service-list-img span{
position: relative;
display: block;
width: 100%;
height: 100%;
background-position: 50%;
background-size: cover;
background-repeat: no-repeat;
border-radius: 12px;
overflow: hidden;
}
#about-service-list-img01{
background-image: url(img/02_about/service01.webp);
}
#about-service-list-img02{
background-image: url(img/02_about/service02.webp);
}
#about-service-list-img03{
background-image: url(img/02_about/service03.webp);
}
.about-service-btn{
text-align: center;
margin-top: 60px;
overflow: visible!important;
}
@media(max-width:1024px){
.about-service-inner{
padding-left: 15px;
padding-right: 15px;
padding-bottom: 30px;
}
.about-service-list li{
max-width: 31%;
}
.about-service-list li h3{
margin-bottom: 15px;
font-size: 16px;
}
.about-service-list li p{
font-size: 14px;
}
.about-service-list-img{
height: 150px;
max-width: 320px;
margin-bottom: 30px;
}
.about-service-list-img::before{
border-radius: 8px;
top: 8px;
left: 8px;
}
.about-service-list-img span{
border-radius: 8px;
}
}
@media(max-width:599px){
    .about-service-inner{
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 0px;
        }
.about-service-list{
display: block;
}
.about-service-list li{
max-width: 100%;
width: 100%;
margin-bottom: 45px;
margin-left: 0;
margin-right: 0;
}
.about-service-list li h3{
margin-bottom: 15px;
font-size: 18px;
}
.about-service-list li p{
font-size: 14px;
}
.about-service-list-img{
height: 220px;
max-width: 92%;
margin-left: 3%;
margin-right: 5%;
margin-bottom: 35px;
}
.about-service-btn{
margin-top: 30px;
}
}
/* カウンセラー紹介 */
/* あいさつ */
.counselor-profile-list{
padding-left: 10px;
}
.counselor-profile-list li{
margin-bottom: 10px;
font-size: 16px;
padding-left: 25px;
background: url(img/00_common/list-icon.svg) left 0px top 5px no-repeat;
background-size: 12px auto;
line-height: 1.4;
}
@media(max-width:1024px){
.counselor-profile-list{
padding-left: 15px;
}
.counselor-profile-list li{
margin-bottom: 10px;
font-size: 15px;
padding-left: 30px;
}
}
@media(max-width:599px){
.counselor-profile-list{
padding-left: 10px;
}
.counselor-profile-list li{
margin-bottom: 8px;
font-size: 14px;
padding-left: 20px;
background-size: 10px auto;
}
}
/* ご成婚までの流れ */
.flow-flow{

}
.flow-inner{
padding: 0;
}
.flow-list{

}
.flow-list li{
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 100px;
}
.flow-list-l{
width: 46%;
overflow: visible!important;
}
.flow-list-r{
width: 46%;
overflow: visible!important;
}
.flow-list-img{

}
.flow-list-img img{
height: 400px;
object-fit: cover;
box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
}
.odd .flow-list-img img{
border-radius: 0 30px 30px 0;
}
.even .flow-list-img img{
border-radius: 30px 0 0 30px;
}
.odd .flow-list-text{
padding-right: 100px;
}
.even .flow-list-text{
padding-left: 100px;
}
.flow-list-text h2{
font-size: 50px;
color: #3C96C8;
margin-bottom: 30px;
display: flex;
align-items: center;
font-weight: 500;
}
.flow-list-text h2 span{
font-size: 24px;
padding-left: 30px;
color: #444443;
}
.flow-list-text p{
font-size: 16px;
line-height: 2;
}
.flow-list-text a{
color: #3C96C8;
text-decoration: underline;
}
@media(max-width:1024px){
.flow-list li{
margin-top: 70px;
}
.flow-list-l{
width: 46%;
}
.flow-list-r{
width: 50%;
}
.flow-list-img img{
height: 245px;
}
.odd .flow-list-img img{
border-radius: 0 25px 25px 0;
}
.even .flow-list-img img{
border-radius: 25px 0 0 25px;
}
.odd .flow-list-text{
padding-right: 30px;
}
.even .flow-list-text{
padding-left: 30px;
}
.flow-list-text h2{
font-size: 28px;
margin-bottom: 25px;
}
.flow-list-text h2 span{
font-size: 20px;
padding-left: 20px;
}
.flow-list-text p{
font-size: 15px;
line-height: 1.7;
}
}
@media(max-width:599px){
.flow-inner{
padding: 0 15px;
}
.flow-list li{
margin-top: 60px;
display: block;
}
.flow-list-l{
width: 100%;
}
.flow-list-r{
width: 100%;
}
.flow-list-img img{
height: 220px;
margin-bottom: 15px;
}
.odd .flow-list-img img{
border-radius: 25px;
}
.even .flow-list-img img{
border-radius: 25px;
}
.odd .flow-list-text{
padding-right: 0;
}
.even .flow-list-text{
padding-left: 0;
}
.flow-list-text h2{
font-size: 26px;
margin-bottom: 15px;
}
.flow-list-text h2 span{
font-size: 16px;
padding-left: 10px;
}
.flow-list-text p{
font-size: 14px;
line-height: 1.6;
}
}
/* アクセス */
/* カウンセリング場所 */
.access-place{

}
.access-place-inner{
padding-top: 100px;
padding-bottom: 60px;
}
@media(max-width:1024px){
.access-place-inner{
padding-top: 60px;
padding-bottom: 40px;
}
}
/* 結婚相談所について */
.access-company{

}
.access-company-inner{
max-width: 800px;
margin: auto;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 100px;
padding-top: 120px;
}
.table1 table {
width: 100%;
border-top: solid 1px #444444;
border-collapse: separate;
border-spacing: 0 10px;
line-height: 1.5;
font-size: 15px;
}
.table1 table tr th {
width: 20%;
height: auto;
border-right: solid 1px #444444;
margin: 0;
padding: 10px 0;
font-weight: 400;
text-align: center;
vertical-align: middle;
}
.table1 table tr .data {
width: 80%;
height: auto;
padding: 0;
margin: 0;
border: 0;
text-align: left;
padding: 10px 20px;
vertical-align: middle;
overflow: hidden;
}
.table1 table tr .bar {
height: 1px;
width: 100%;
border-top: solid 1px #444444;
vertical-align: middle;
}
.data iframe{
height: 250px;
width: 100%;
margin-top: 12px;
}
@media(max-width:599px){
.access-company-inner{
max-width: 100%;
padding-bottom: 60px;
padding-left: 10px;
padding-right: 10px;
margin: auto;
padding-top: 60px;
}
.table1 table {
font-size: 12px;
}
.table1 table tr th {
width: 25%;
}
.table1 table tr .data {
width: 75%;
padding: 10px 10px;
}
}
/* よくある質問 */
.faq-faq{

}
.faq-inner{
max-width: 850px;
margin: auto;
padding: 0;
padding-top: 100px;
padding-bottom: 60px;
overflow: visible!important;
}
/*==================================
アコーディオン
===================================*/
.faq-list{

}
.faq-list li{
margin: 15px 0;
}
.question-title {
position: relative;/*+マークの位置基準とするためrelative指定*/
cursor: pointer;
font-weight: normal;
transition: all .5s ease;
box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
border-radius: 50px;
padding-left: 100px;
padding-right: 30px;
padding-top: 30px;
padding-bottom: 30px;
position: relative;
font-size: 18px;
overflow: visible!important;
background-color: #fff;
}
.question-title::before,
.question-title::after{
position: absolute;
content:'';
width: 15px;
height: 2px;
background-color: #3C96C8;
}
.question-title::before{
top:48%;
right: 30px;
transform: rotate(0deg);
}
.question-title::after{
top:48%;
right: 30px;
transform: rotate(90deg);
}
.question-title.close::before{
transform: rotate(45deg);
}
.question-title.close::after{
transform: rotate(-45deg);
}
.question-title span{
position: relative;
}
.question-title span::before{
font-size: 36px;
line-height: 1;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: -55px;
display: block;
content: 'Q.';
color: #3C96C8;
}
.answer-box {
display: none;/*はじめは非表示*/
padding: 30px 50px;
}
.answer-box p{
font-size: 16px;
line-height: 1.6;
}
.answer-box a{
color: #3C96C8;
text-decoration: underline;
}
@media(max-width:1024px){
.faq-inner{
padding-left: 30px;
padding-right: 30px;
}
.question-title {
padding-left: 80px;
padding-right: 30px;
padding-top: 30px;
padding-bottom: 30px;
font-size: 15px;
}
.answer-box p{
font-size: 15px;
}
.question-title span::before{
font-size: 26px;
left: -40px;
}
}
@media(max-width:599px){
.faq-list li{
margin: 13px 0;
}
.faq-inner{
padding-left: 10px;
padding-right: 10px;
padding-top: 60px;
padding-bottom: 20px;
}
.question-title {
padding-left: 50px;
padding-right: 35px;
padding-top: 15px;
padding-bottom: 14px;
font-size: 15px;
line-height: 1.4;
}
.answer-box {
padding: 20px;
}
.answer-box p{
font-size: 14px;
}
.question-title::before{
right: 15px;
}
.question-title::after{
right: 15px;
}
.question-title span{
position: relative;
display: block;
}
.question-title span::before{
font-size: 22px;
left: -30px;
transform: inherit;
}
}
/* 無料カウンセリングのご予約 */
.contact-message{
text-align: center;
}
.contact-message .inner{
padding-top: 100px;
padding-bottom: 0;
}
.contact-message h2{
font-size: 30px;
line-height: 1.6;
margin-bottom: 60px;
}
.contact-message p{
font-size: 16px;
line-height: 1.8;
}
@media(max-width:1024px){
.contact-message .inner{
padding-top: 80px;
padding-bottom: 20px;
}
.contact-message h2{
font-size: 24px;
margin-bottom: 40px;
}
.contact-message p{
font-size: 15px;
line-height: 2;
}
}
@media(max-width:599px){
.contact-message .inner{
padding-top: 60px;
padding-bottom: 10px;
}
.contact-message h2{
font-size: 20px;
margin-bottom: 30px;
}
.contact-message p{
font-size: 14px;
line-height: 2;
}
}
/* 電話 */
.contact-tel{
padding-top: 60px;
padding-bottom: 60px;
padding-left: 15px;
padding-right: 15px;
}
.contact-tel-inner{
max-width: 800px;
padding: 30px 0;
margin: auto;
border: 1px solid #3C96C8;
border-radius: 25px;
}
.contact-tel-box{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
margin-bottom: 15px;
}
.contact-tel-text{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.contact-tel-mark{
font-size: 16px;
padding: 7px 10px;
margin-left: 20px;
margin-right: 20px;
font-weight: 500;
color: #fff;
text-align: center;
line-height: 1.3;
letter-spacing: .15em;
background-color: #3C96C8;
border-radius: 3px;
}
.contact-tel-title{
font-size: 18px;
text-align: center;
}
.contact-tel-tel{
display: block;
font-size: 42px;
font-weight: 500;
text-align: center;
line-height: 1.5;
letter-spacing: .02em;
}
.contact-tel-hours{
text-align: center;
}
.contact-tel-hours01{
display: inline-block;
font-size: 12px;
text-align: center;
line-height: 1.4;
letter-spacing: 0px;
background-color: #e2e2e1;
border-radius: 27px;
padding: 1px 18px;
font-size: 14px;
padding: 3px 18px;
}
.contact-tel-hours02{
display: inline-block;
font-size: 14px;
text-align: center;
line-height: 1.5;
letter-spacing: 0px;
font-size: 18px;
margin-left: 7px;
}
@media(max-width:1024px){
.contact-tel{
padding-top: 40px;
padding-bottom: 40px;
padding-left: 45px;
padding-right: 45px;
}
.contact-tel-inner{
max-width: 100%;
padding: 30px 0;
}
.contact-tel-title{
font-size: 16px;
}
.contact-tel-tel{
font-size: 38px;
}
.contact-tel-hours02{
font-size: 16px;
}
}
@media(max-width:599px){
.contact-tel{
padding-top: 30px;
padding-bottom: 30px;
padding-right: 15px;
padding-left: 15px;
}
.contact-tel-inner{
max-width: 100%;
padding: 20px 15px;
}
.contact-tel-box{
display: block;
margin-bottom: 0;
}
.contact-tel-text{
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
justify-content: center;
}
.contact-tel-mark{
font-size: 14px;
padding: 6px 8px;
margin-left: 0;
margin-right: 15px;
line-height: 1.3;
}
.contact-tel-title{
font-size: 15px;
}
.contact-tel-tel{
font-size: 32px;
line-height: 1.7;
}
.contact-tel-hours01{
line-height: 1.4;
letter-spacing: 0px;
border-radius: 27px;
font-size: 12px;
padding: 2px 18px;
}
.contact-tel-hours02{
font-size: 14px;
margin-left: 5px;
}
}
/* MW WP Form */
.contact-form{

}
.contact-form-inner{
max-width: 800px;
margin: auto;
padding-left: 30px;
padding-right: 30px;
padding-top: 30px;
padding-bottom: 100px;
}
.contact-form-title{
text-align: center;
}
.contact-form__required {
display: inline-block;
color: #FFF;
text-align: left;
line-height: 1.6;
letter-spacing: 0.3px;
background-color: #3C96C8;
margin-left: 14px;
font-size: 14px;
padding: 1px 10px;
margin-left: 17px;
border-radius: 50px;
}
.contact-form__item {
border-bottom: 1px solid #dbdbdb;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
padding: 10px 0;
align-items: center;
}
.contact-form__data {
width: 65%;
max-width: 700px;
height: auto;
}
.contact-form__name,
.contact-form__email,
.contact-form__tel,
.contact-form__postal-code,
.contact-form__prefectures,
.contact-form__address,
.contact-form__message {
width: 100%;
text-align: left;
line-height: 1.8;
letter-spacing: 0.5px;
background-color: #FFF;
border: 1px solid #3C96C8;
border-radius: 3px;
padding: 2px 10px;
height: 45px;
font-size: 16px;
}
.contact-form__name:focus,
.contact-form__email:focus,
.contact-form__tel:focus,
.contact-form__postal-code:focus,
.contact-form__prefectures:focus,
.contact-form__address:focus,
.contact-form__message:focus {
outline: 0;
}
.contact-form__name,
.contact-form__tel {
max-width: 100%;
}
.contact-form__postal-code {
width: 51%;
max-width: 322px;
}
.contact-form__prefectures {
width: 134px;
margin-left: 18px;
}
.contact-form__message {
height: 133px;
}
.contact-form__radio-wrapper {
padding: 12px 0 4px 0;
}
.contact-form__radio-wrapper {
padding: 12px 0 4px 0;
}
input[type=radio] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
display: none;
}
.mw_wp_form_confirm .contact-form__radio-wrapper {
margin-left: -97px;
padding: 0;
}
.mw_wp_form_confirm .contact-form__title {
padding: 7px 0;
line-height: 1.8;
}
.mw_wp_form_confirm .contact-form__data {
padding: 0 0 7px 0;
line-height: 1.8;
}
.mw_wp_form_confirm .contact-form__data {
padding: 7px 0;
}
.contact-form__radio-wrapper label {
display: block;
position: relative;
text-align: left;
font-size: 16px;
line-height: 1.3;
letter-spacing: 0.2px;
padding-left: 41px;
margin-top: -17px;
margin-bottom: 15px!important;
}
.contact-form__radio + span::before {
content: '';
display: inline-block;
position: absolute;
background-color: #FFF;
border: 1px solid #707070;
border-radius: 50%;
margin-right: 7px;
-webkit-transition: all 0.12s, border-color 0.08s;
transition: all 0.12s, border-color 0.08s;
top: 0;
left: 0;
width: 18px;
height: 18px;
}
.contact-form__radio:checked + span::after {
content: '';
display: inline-block;
position: absolute;
border-radius: 50%;
background-color: #3C96C8;
vertical-align: middle;
-webkit-transition: all 0.12s, border-color 0.08s;
transition: all 0.12s, border-color 0.08s;
top: 4px;
left: 4px;
width: 12px;
height: 12px;
}
input + span.error {
margin-top: 10px;
}
.contact-form__button-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
/* -webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse; */
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: 15px;
overflow: visible!important;
}
.contact-form__button-confirm {
background-color:#3C96C8;
color: #fff;
cursor: pointer;
letter-spacing: .03em;
margin: auto;
}
.contact-form__button-back {
padding: 21px 117px;
cursor: pointer;
}
.contact-form__button-submit {
padding: 21px 117px;
cursor: pointer;
/* margin-left: 30px; */
}
.contact-form__thanks-message {
font-size: 16px;
margin-top: 110px;
}
.mwform-radio-field-text{
letter-spacing: .05em;
}
.mw_wp_form{
overflow: visible!important;
}
/* お問い合わせ確認画面 */
.contact-confirm .inner{
max-width: 1000px;
margin: 30px auto;
}
.contact-confirm .btn{
padding: 0!important;
margin: 5px auto;
}
/* お問い合わせ完了画面サンクスページ */
#contact-thanks-page .inner{
padding-top: 100px;
padding-bottom: 60px;
}
#contact-thanks-page p{
font-size: 22px;
line-height: 1.6;
text-align: center;
font-size: 600;
}
@media(max-width:599px){
.contact-form-inner{
max-width: 100%;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 60px;
}
.contact-form__item{
display: block;
}
.contact-form__title{
margin-bottom: 5px;
}
.contact-form__data{
width: 100%;
}
.contact-form__required {
line-height: 1.5;
margin-left: 10px;
font-size: 12px;
}
.mwform-radio-field-text{
font-size: 15px;
}
.contact-form__radio-wrapper label{
margin-bottom: 10px!important;
}
/* お問い合わせ完了画面サンクスページ */
#contact-thanks-page .inner{
padding-top: 60px;
padding-bottom: 30px;
}
#contact-thanks-page p{
font-size: 15px;
}
}
/* 投稿記事ページ */
.single-article{
box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
border-radius: 20px;
max-width: 900px;
margin: auto;
margin-top: 140px;
margin-bottom: 60px;
padding: 80px;
background-color: #fff;
}
.single-article-inner{

}
.single-article-top{
border-bottom: 1px solid #DBDBDB;
padding-bottom: 25px;
margin-bottom: 25px;
}
#page-page .single-article-top{
border-bottom: none;
padding-bottom: 0;
margin-bottom: 0;
}
.article-data{
font-size: 14px;
margin-bottom: 25px;
}
.article-title{
font-size: 24px;
/* margin-bottom: 25px; */
line-height: 1.5;
font-weight: 500;
}
.article-category{
font-size: 14px;
background-color: #3C96C8;
height: 25px;
line-height: 25px;
padding-left: 15px;
padding-right: 15px;
color: #fff;
border-radius: 100px;
}
.article-img{

}
.article-img img{
box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
max-width: 800px;
height: 500px;
object-fit: cover;
border-radius: 20px;
}
.article-content{
padding-top: 60px;
padding-bottom: 60px;
}
#page-page .article-content{
padding-top: 20px;
padding-bottom: 30px;
}
@media(max-width:1024px){
.single-article{
max-width: 100%;
margin-top: 60px;
margin-bottom: 30px;
margin-left: 15px;
margin-right: 15px;
padding: 80px 60px 80px 60px;
}
.single-article-inner{

}
.single-article-top{
padding-bottom: 20px;
margin-bottom: 20px;
}
.article-data{
margin-bottom: 20px;
}
.article-title{
font-size: 22px;
/* margin-bottom: 20px; */
}
.article-img img{
height: 450px;
}
.article-content{
padding-top: 40px;
padding-bottom: 40px;
}
#page-page .article-content{
padding-top: 15px;
padding-bottom: 30px;
}
}
@media(max-width:599px){
.single-article{
margin-top: 30px;
margin-bottom: 30px;
margin-left: 5px;
margin-right: 5px;
padding: 40px 10px 30px 10px;
border-radius: 15px;
}
.single-article-top{
padding-bottom: 15px;
margin-bottom: 15px;
}
.article-data{
margin-bottom: 12px;
font-size: 12px;
}
.article-title{
font-size: 17px;
/* margin-bottom: 15px; */
letter-spacing: .01em;
line-height: 1.4;
}
.article-img img{
height: 240px;
border-radius: 15px;
}
.article-content{
padding-top: 30px;
padding-bottom: 30px;
}
.article-category{
font-size: 12px;
}
}
/* 記事下 */
.article-bottom{

}
.article-bottom .inner{
display: flex;
justify-content: center;
align-items: center;
overflow: visible!important;
}
.article-bottom-l{
position: relative;
}
.article-bottom-l::before{
content: "";
position: absolute;
top: 50%;
transform: translateY(-50%);
left: -40px;
background-image: url(img/09_blog/arrow-l.svg);
background-repeat: no-repeat;
width: 30px;
height: 30px;
}
.article-bottom-r{
position: relative;
}
.article-bottom-r::before{
content: "";
position: absolute;
top: 50%;
transform: translateY(-50%);
right: -40px;
background-image: url(img/09_blog/arrow-r.svg);
background-repeat: no-repeat;
width: 30px;
height: 30px;
}
.article-bottom-c{
margin-left: 100px;
margin-right: 100px;
}
@media(max-width:599px){
.article-bottom-l{
font-size: 12px;
}
.article-bottom-l::before{
left: -25px;
width: 18px;
height: 18px;
background-size: contain;
}
.article-bottom-r{
font-size: 12px;
}
.article-bottom-r::before{
right: -25px;
width: 18px;
height: 18px;
background-size: contain;
}
.article-bottom-c{
margin-left: 15px;
margin-right: 15px;
max-width: 170px;
height: 45px;
line-height: 45px;
font-size: 13px;
}
}
/* お知らせ */
.news-list{
box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
border-radius: 20px;
max-width: 1000px;
margin: auto;
margin-top: 100px;
margin-bottom: 60px;
padding: 60px 20px 40px 20px;
background-color: #fff;
}
.news-list .inner{

}
.news-list-article{
border-top: 1px solid #DBDBDB;
}
.news-list-article a{
display: flex;
align-items: center;
padding-top: 30px;
padding-bottom: 30px;
}
.news-list-data{
width: 100px;
margin-right: 30px;
font-size: 14px;
}
.news-list-category{
background-color: #3C96C8;
color: #fff;
font-size: 12px;
width: 80px;
height: 20px;
line-height: 20px;
text-align: center;
margin-right: 60px;
border-radius: 30px;
}
.news-list-title{
font-size: 14px;
line-height: 1.6;
margin-right: 10px;
width: calc(100% - 280px);
}
@media(max-width:1024px){
.news-list{
border-radius: 20px;
margin: auto;
margin-top: 80px;
margin-bottom: 40px;
margin-left: 15px;
margin-right: 15px;
padding: 60px 20px 40px 20px;
}
.news-list-article a{
padding-top: 25px;
padding-bottom: 25px;
}
.news-list-data{
width: 80px;
margin-right: 25px;
font-size: 13px;
}
.news-list-category{
font-size: 11px;
width: 75px;
height: 18px;
line-height: 18px;
margin-right: 40px;
}
.news-list-title{
font-size: 13px;
margin-right: 5px;
width: calc(100% - 225px);
}
}
@media(max-width:599px){
.news-list{
border-radius: 15px;
margin-top: 60px;
margin-bottom: 30px;
margin-left: 5px;
margin-right: 5px;
padding: 40px 10px 30px 10px;
}
.news-list-article a{
padding-top: 20px;
padding-bottom: 20px;
flex-wrap: wrap;
}
.news-list-data{
width: 80px;
margin-right: 10px;
font-size: 12px;
}
.news-list-category{
font-size: 11px;
width: 70px;
height: 18px;
line-height: 18px;
margin-right: 0;
}
.news-list-title{
font-size: 13px;
margin-right: 0;
width: 100%;
margin-top: 10px;
}
}
/* ブログ */
.blog-list{

}
.blog-list .inner{
display: flex;
flex-wrap: wrap;
padding-top: 100px;
padding-bottom: 30px;
}
.blog-list-article{
width: 23%;
margin-left: 1%;
margin-right: 1%;
margin-bottom: 60px;
display: block;
}
.blog-list-img{
margin-bottom: 15px;
box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
border-radius: 15px;
}
.blog-list-img img{
height: 270px;
object-fit: cover;
}
.blog-list-data{
font-size: 12px;
margin-bottom: 15px;
}
.blog-list-title{
font-size: 16px;
line-height: 1.5;
}
@media(max-width:1024px){
.blog-list .inner{
padding-top: 60px;
padding-bottom: 30px;
justify-content: center;
}
.blog-list-article{
width: 40%;
margin-bottom: 50px;
}
.blog-list-img{
margin-bottom: 15px;
}
.blog-list-img img{
border-radius: 10px;
height: 220px;
}
.blog-list-data{
font-size: 12px;
margin-bottom: 12px;
}
.blog-list-title{
font-size: 16px;
line-height: 1.5;
}
}
@media(max-width:599px){
.blog-list .inner{
padding-top: 40px;
padding-bottom: 20px;
display: block;
}
.blog-list-article{
width: 100%;
margin-bottom: 40px;
}
.blog-list-img{
margin-bottom: 15px;
}
.blog-list-img img{
border-radius: 10px;
height: 220px;
}
.blog-list-data{
font-size: 12px;
margin-bottom: 10px;
}
.blog-list-title{
font-size: 15px;
}
}
/* 404ページ */
.content-404{
text-align: center;
padding-top: 300px;
padding-bottom: 100px;
}
.content-404 h1{
font-size: 32px;
margin-bottom: 30px;
color: #3C96C8;
}
.content-404 p{
font: 48px;
margin-bottom: 60px;
}
@media(max-width:599px){
.content-404{
padding-top: 100px;
padding-bottom: 80px;
}
.content-404 h1{
font-size: 28px;
}
.content-404 p{
font: 44px;
}
}
/* 料金プラン */
/* 3つのプラン */
.plan-rate{

}
.plan-rate .inner{
padding-top: 60px;
padding-bottom: 50px;
}
.plan-rate-content{
display: flex;
justify-content: center;
overflow: visible!important;
}
.plan-rate-item{
text-align: center;
padding-top: 50px;
padding-bottom: 40px;
max-width: 280px;
width: 100%;
box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
border-radius: 10px;
position: relative;
margin-right: 30px;
margin-left: 30px;
overflow: visible!important;
background-color: #fff;
}
.plan-rate-item::before{
position: absolute;
content: "";
top: 0;
left: 50%;
transform: translateX(-50%);
height: 10px;
width: 160px;
background-color: #3C96C8;
}
.plan-rate-item h3{
font-size: 22px;
color: #3C96C8;
margin-bottom: 30px;
font-weight: 500;
}
.plan-rate-item-text01{
font-size: 16px;
padding-bottom: 25px;
border-bottom: 1px solid #BEB9B5;
width: 230px;
margin: auto;
}
.plan-rate-item-text02{
margin-top: 25px;
margin-bottom: 15px;
font-size: 16px;
}
.plan-rate-item-text03{
margin-bottom: 30px;
font-size: 24px;
}
.plan-rate-item-text03 span{
font-size: 32px;
padding-right: 5px;
}
.plan-rate-item-text04{
margin-top: 25px;
margin-bottom: 15px;
font-size: 16px;
}
.plan-rate-item-text05{
font-size: 24px;
}
.plan-rate-item-text05 span{
font-size: 32px;
padding-right: 5px;
}
@media(max-width:1024px){
.plan-rate .inner{
padding-top: 50px;
padding-bottom: 30px;
}
.plan-rate-item{
padding-top: 50px;
padding-bottom: 40px;
margin-right: 10px;
margin-left: 10px;
}
.plan-rate-item::before{
height: 8px;
width: 150px;
}
.plan-rate-item-text01{
font-size: 15px;
width: 200px;
}
.plan-rate-item-text02{
font-size: 15px;
}
.plan-rate-item-text03{
font-size: 22px;
}
.plan-rate-item-text03 span{
font-size: 30px;
}
.plan-rate-item-text04{
font-size: 15px;
}
.plan-rate-item-text05{
font-size: 22px;
}
.plan-rate-item-text05 span{
font-size: 30px;
}
}
@media(max-width:599px){
.plan-rate .inner{
padding-top: 50px;
padding-bottom: 30px;
}
.plan-rate-content{
display: block;
}
.plan-rate-item{
padding-top: 40px;
padding-bottom: 30px;
max-width: 100%;
width: 90%;
margin-right: 5%;
margin-left: 5%;
margin-bottom: 30px;
}
.plan-rate-item::before{
height: 6px;
width: 60%;
}
.plan-rate-item h3{
font-size: 20px;
margin-bottom: 20px;
}
.plan-rate-item-text01{
font-size: 15px;
padding-bottom: 20px;
width: 80%;
}
.plan-rate-item-text02{
margin-top: 20px;
margin-bottom: 10px;
font-size: 15px;
}
.plan-rate-item-text03{
margin-bottom: 20px;
font-size: 18px;
}
.plan-rate-item-text03 span{
font-size: 28px;
padding-right: 3px;
}
.plan-rate-item-text04{
margin-top: 15px;
margin-bottom: 10px;
font-size: 15px;
}
.plan-rate-item-text05{
font-size: 18px;
}
.plan-rate-item-text05 span{
font-size: 28px;
padding-right: 3px;
}
}
/* 料金表2 */
.plan-rate2{
background-color: #EEF2F5;
padding: 100px 80px 60px;
}
.plan-rate2 .inner{
background-color: #fff;
border-radius: 10px;
box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
padding: 80px 100px 60px;
max-width: 1100px;
margin: 0 auto;
}
.plan__table {
width: 100%;
border-collapse: collapse;
text-align: center;
margin-bottom: 10px;
}
.plan__row {
border-bottom: 1px solid #8e8e8e;
height: 75px;
}
.plan__row--header {
height: 75px;
}
.plan__cell {
width: 25%;
vertical-align: middle;
white-space: nowrap;
}
.plan__title{
font-size: 19px;
color: #3C96C8;
font-weight: 500;
}
.plan__data{
font-size: 20px;
}
.plan__data span{
font-size: 16px;
padding: 0 2px;
}
.plan__data_title{
font-size: 17px;
line-height: 1.3;
}
.plan-rate2-memo{
/* text-align: right; */
font-size: 13px;
line-height: 1.5;
}
@media(max-width:1024px){
.plan-rate2{
padding: 80px 30px 40px;
}
.plan-rate2 .inner{
padding: 30px 40px 20px;
}
.plan__row {
border-bottom: 1px solid #8e8e8e;
height: 70px;
}
.plan__row--header {
height: 70px;
}
.plan__title{
font-size: 16px;
}
.plan__data{
font-size: 18px;
}
.plan__data span{
font-size: 15px;
}
.plan__data_title{
font-size: 16px;
}
.plan-rate2-memo{
font-size: 13px;
}
}
@media(max-width:599px){
.plan-rate2{
padding: 30px 5px 20px;
}
.plan-rate2 .inner{
padding: 30px 0 20px;
}
.plan__row {
border-bottom: 1px solid #8e8e8e;
height: 60px;
}
.plan__row--header {
height: 60px;
line-height: 1.5;
}
.plan__title{
font-size: 14.5px;
line-height: 1.3;
}
.plan__data{
font-size: 14px;
}
.plan__data span{
font-size: 12px;
}
.plan__data_title{
font-size: 12px;
letter-spacing: 0;
}
.plan-rate2-memo{
font-size: 10px;
margin: 0 5px;
}
}
/* オプション */
.plan-option{

}
.plan-option .inner{
max-width: 1000px;
padding: 0;
padding-top: 100px;
padding-bottom: 60px;
}
.option__table {
width: 100%;
border-collapse: collapse;
padding: 0 50px;
margin-bottom: 10px;
}
.option__row {
border-bottom: 1px solid #8e8e8e;
height: 75px;
}
.option__row--header {
height: 75px;
}
.option__title{
vertical-align: middle;
}
.option__data01{
font-size: 16px;
vertical-align: middle;
width: 25%;
text-align: center;
line-height: 1.4;
}
.option__data01 span{
font-size: 14px;
}
.option__data02{
font-size: 14px;
vertical-align: middle;
width: 50%;
text-align: left;
line-height: 1.3;
padding-top: 15px;
padding-bottom: 15px;
}
.option__data03{
font-size: 18px;
vertical-align: middle;
width: 25%;
text-align: center;
line-height: 1.4;
}
.option__data03 span{
font-size: 15px;
}    
@media(max-width:1024px){
.plan-option .inner{
padding: 60px 15px 40px;
}
}
@media(max-width:599px){
.plan-option .inner{
padding: 40px 0 40px;
}
.option__row {
height: 70px;
}
.option__row--header {
height: 60px;
}
.option__title{
font-size: 14px;
}
.option__data01{
font-size: 13px;
padding: 0 3px;
}
.option__data01 span{
font-size: 11px;
}
.option__data02{
font-size: 12px;
padding: 0 3px;
}
.option__data03{
font-size: 13px;
padding: 0 3px;
}
.option__data03 span{
font-size: 11px;
}
}
/* 料金その他 */
.plan-others{

}
.plan-others .inner{
display: flex;
padding-top: 100px;
padding-bottom: 30px;
}
.plan-member{
width: 42%;
margin-left: 4%;
margin-right: 4%;
}
.plan-others-list{

}
.plan-others-list li{
margin-bottom: 20px;
font-size: 16px;
padding-left: 30px;
background: url(img/00_common/list-icon.svg) left 0px top 5px no-repeat;
background-size: 15px auto;
line-height: 1.5;
}
.plan-document{
width: 42%;
margin-left: 4%;
margin-right: 4%;
}
@media(max-width:1024px){
.plan-others .inner{
padding-top: 60px;
padding-bottom: 20px;
}
}
@media(max-width:599px){
.plan-others .inner{
display: block;
padding-top: 40px;
padding-bottom: 20px;
}
.plan-member{
width: 100%;
margin-left: 0;
margin-right: 0;
margin-bottom: 60px;
}
.plan-others-list li{
margin-bottom: 13px;
font-size: 14px;
padding-left: 30px;
background: url(img/00_common/list-icon.svg) left 0px top 5px no-repeat;
background-size: 15px auto;
line-height: 1.5;
}
.plan-document{
width: 100%;
margin-left: 0;
margin-right: 0;
}
}
/*==========================================================================
投稿記事の文字装飾
========================================================================== */
.article-content h2{
font-size: 22px;
line-height: 1.5;
background-color: #3C96C8;
border-radius: 5px;
padding: 10px 15px;
margin: 30px 0 10px;
color: #fff;
font-weight: 500;
}
#page-page .article-content h2{
margin: 15px 0;
}
.article-content h3{
font-size: 20px;
line-height: 1.5;
background-color: #f8f8f8;
border-left: 4px solid #3C96C8;
padding: 10px 10px 10px 15px;
margin: 20px 0 30px;
}
.article-content h4{
font-size: 18px;
line-height: 1.5;
background-color: #f8f8f8;
padding: 10px 10px 10px 15px;
margin: 20px 0 30px;
}
.article-content p{
font-size: 16px;
line-height: 1.8;
padding-bottom: 30px;
}
.article-content span{

}
.article-content a{
color: #1e73be;
text-decoration: underline;
}
.article-content img{
box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
max-width: 800px;
height: 500px;
object-fit: cover;
border-radius: 20px!important;
}
.article-content ul {
margin-bottom: 30px;
}
.article-content ul li {
position: relative;
padding-left: 25px;
margin-bottom: 20px;
font-size: 16px;
}
.article-content ul li:before {
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f111";
display: block;
position: absolute;
left: 2px;
top: 1px;
-webkit-transform: scale(.6);
transform: scale(.6);
color: var(--main-ttl-bg);
background: 0 0;
}
.article-content ol {
margin-bottom: 30px;
counter-reset: qumeru-counter;
}
.article-content ol li {
position: relative;
padding-left: 30px;
margin-bottom: 20px;
font-size: 16px;
}
.article-content ol li:before {
font-family: inherit;
content: counter(qumeru-counter);
counter-increment: qumeru-counter 1;
background-color: #323232;
border: 1px solid #323232;
color: #fff;
width: 25px;
height: 25px;
line-height: 25px;
display: block;
text-align: center;
border-radius: 50%;
position: absolute;
-webkit-transform: scale(.7);
transform: scale(.7);
left: 1px;
top: -5px;
}
@media(max-width:599px){
.article-content h2{
font-size: 17px;
padding: 10px 10px;
margin: 30px 0 10px;
line-height: 1.35;
}
.article-content h3{
font-size: 15px;
}
.article-content h4{
font-size: 15px;
}
.article-content p{
font-size: 14px;
line-height: 1.6;
padding-bottom: 15px;
}
.article-content img{
max-width: 100%;
height: 240px;
border-radius: 15px!important;
}
.article-content ul li {
font-size: 14px;
margin-bottom: 15px;
}
.article-content ol li {
font-size: 14px;
margin-bottom: 15px;
}
.article-content ol li:before {
width: 22px;
height: 22px;
line-height: 22px;
}
}
/*==========================================================================
投稿記事の文字装飾おわり
========================================================================== */
/* LINEボタン */
.contact-line-btn{
text-align: center;
margin-top: 15px;
overflow: visible!important;
}
.contact-line-btn a{
font-size: 18px;
background-color: #4cc764;
-webkit-box-shadow: 0px 3px 6px #00000029;
box-shadow: 0px 3px 6px #00000029;
border-radius: 100px;
position: relative;
color: #fff;
height: 70px;
line-height: 70px;
width: 350px;
display: block;
margin: auto;
padding-left: 30px;
letter-spacing: .02em;
font-weight: 500;
}
.contact-line-btn a::before{
content: '';
background-image: url("./img/08_contact/icon-line.webp");
background-size: contain;
background-repeat: no-repeat;
position: absolute;
top: 50%;
left: 10px;
width: 70px;
height: 70px;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: all 0.5s ease 0.1s;
transition: all 0.5s ease 0.1s;
}
.contact-line-copy{
text-align: center;
font-weight: 400;
margin-top: 35px;
}
@media(max-width:767px){
.contact-line-btn{
margin-top: 12px;
}
.contact-line-btn a{
font-size: 16px;
height: 60px;
line-height: 60px;
width: 86%;
margin-right: 7%;
margin-left: 7%;
padding-left: 15px;
}
.contact-line-btn a::before{
left: 10px;
width: 60px;
height: 60px;
}
.contact-line-memo{
font-size: 13px;
line-height: 2;
margin-top: 15px;
}
.contact-line-copy{
margin-top: 30px;
}
}
/* 固定ページの表 */
#page-page table th,
#page-page table td{
border: solid 1px #d3d3d3;
padding: 20px 10px 20px 10px;
font-size: 14px;
vertical-align: middle;
line-height: 1.4;
}
@media(max-width:767px){
#page-page table th,
#page-page table td{
padding: 12px 5px 12px 5px;
font-size: 12px;
}
}

/* フェードアップ */
.fadeup.is-animated {
-webkit-animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
.fadeup {
/* opacity: 0; */
}

@-webkit-keyframes fadeup {
0% {
-webkit-transform: translateY(30px);
transform: translateY(30px);
opacity: 0;
}
80% {
opacity: 1;
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}

@keyframes fadeup {
0% {
-webkit-transform: translateY(30px);
transform: translateY(30px);
opacity: 0;
}
80% {
opacity: 1;
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}


iframe{
border: none;
}

/* 最下部バナー */
.under-banner{
display: flex;
align-items: center;
justify-self: center;
max-width: 900px;
margin: 0 auto 60px;
}
.under-banner-l{
margin-right: 40px;   
}
.under-banner-l img{
max-width: 150px;
width: 100%;
}
.under-banner-r{
max-width: 600px;
width: 100%;
}
.under-banner-r p{
font-size: 15px;
line-height: 1.8;
letter-spacing: .03em;
}
@media(max-width:1024px){
.under-banner{
max-width: 90%;
margin: 0 auto 40px;
}
.under-banner-l{
margin-right: 30px;   
}
.under-banner-l img{

}
.under-banner-r{
max-width: 550px;
}
.under-banner-r p{
font-size: 15px;
line-height: 1.6;
letter-spacing: .01em;
}
}
@media(max-width:767px){
.under-banner{
display: block;
max-width: 100%;
margin: 0 auto;
}
.under-banner-l{
margin-right: 0;
width: 100%;
text-align: center;
margin-bottom: 20px;
}
.under-banner-l img{

}
.under-banner-r{
max-width: 100%;
width: 100%;
}
.under-banner-r p{
font-size: 13px;
line-height: 1.7;
letter-spacing: .01em;
padding-left: 15px;
padding-right: 15px;
}
}
/* YouTube */
.top-youtube{
padding-top: 120px;
}
.youtube{
max-width: 600px;
margin: 30px auto 100px;
width: 100%;
aspect-ratio: 16 / 9;
}
.youtube iframe{
width: 100%;
height: 100%;
}
@media(max-width:767px){
.top-youtube{
padding-top: 60px;
}
.youtube{
max-width: 90%;
margin: 30px auto 30px;
}
}
