@charset "utf-8";
/*
Theme Name: My Theme
Author: Your Name
Description: My First WordPress Theme
Version: 1.0
Text Domain: mytheme
*/


/*cssのリセット*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,abbr,address,cite,code,del,dfn,em,img,
ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,
ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,
summary,time,mark,audio,video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}
 
body {
  line-height: 1;
  background: #fff !important;
}

html,body{ width:100%; overflow-x:hidden; }
 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}
 
nav ul {
  list-style: none;
}
 
blockquote,
q {
  quotes: none;
}
 
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
 
a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
 
ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}
 
mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}
 
del {
  text-decoration: line-through;
}
 
abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}
 
table {
  border-spacing: 0;
  border-collapse: collapse;
}
 
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

/*サイト全体の基準となるCSSを記述*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
 
body {
  font-family: "Noto Sans JP", sans-serif;/*フォントの指定*/
  line-height: 1.4;/*行間の指定*/
  margin: 0;
  padding: 0;
  color: #333;/*サイトのデフォルトとなる文字の色を指定*/
}

/*見出しを全て太字で表示 + 文字色を黒に*/
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #000;
}
 
img {
  max-width: 100%;
  height: auto;
}
body {
    margin: 0;
    background-color: #f7f7f7;
    color: #333;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');



.for-pc { display:block; }
.for-sp { display:none; }

@media only screen and (max-width : 430px){
  .for-pc { display:none; }
  .for-sp { display:block; }
}

.pagetop {
    height: 65px;
    width: 65px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}


*,
*:before,
*:after {
    box-sizing: border-box;
}

.header {

}
.header__inner {
    width: 96%;
    margin: auto;
    padding: 20px 0 18px;
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
}
.site-name {
    margin: 0;
    font-size: 20px;
    width: 20%;
    margin-top: 0.5em;
}
.site-name a {
    color: currentColor;
    text-decoration: none;
}
body{
  font-family:"Poppins", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
p {
  font-family:"Poppins", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
ul{
  list-style: none;
}

/* パンくずリスト */
.breadcrumb-area ul{
    list-style: none;
  }
.breadcrumb-area  li{
    display: inline;
  }
.breadcrumb-area  li a{
    color: inherit;
    text-decoration: none;
  }
.breadcrumb-area  li + li:before{
    content: ">";
    margin:.5em;
  }
  .breadcrumb-area {
    width: 90%;
    margin: 1% auto;
}

.container {
    background: #FFF9EE fixed;
    background-image: url(/wp-content/themes/my-theme/img/bg-001.png);
    background-repeat: no-repeat;
    background-position: right top;
}

/*------header-------*/

nav.global-nav ul {
    display: flex;
    justify-content: flex-end;
    font-family: "Poppins", sans-serif;
}
nav.global-nav {
    margin-left: 0%;
    margin-top: 1%;
}
nav.global-nav ul li a {
    color: #2e2e2e;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    margin-left: 28px;
    transition: .5s;
}
nav.global-nav ul li a:hover {
    color: #a18e8e;
    letter-spacing: 0.1em;
}

/*------footer-------*/

.footer-top {
    display: flex;
    justify-content: space-around;
    width: 90%;
    margin: 8% auto 0;
    padding-bottom: 2%;
}
.navi-bottom ul {
    display: flex;
}
.navi-bottom ul li {
    margin-left: 4%;
}
.navi-bottom ul li a{
    color: #333;
}
.yotube {
    width: 14%;
    margin: 2% 4% 2%;
}
.navi-bottom {
    margin-left: 26%;
}



/*------top-------*/

.intro {
    width: 80%;
    margin: 5% auto 2%;
}
.top-contets01 {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}
.item02 {
    margin: 4% 15% 5%;
}
.item03 {
    width: 70%;
    margin: 0 auto;
}
.top-contets01 .right {
    margin-top: 18%;
    position: relative;
}
.item04 {
    width: 100%;
    margin-left: 14%;
}
.item05 {
    position: absolute !important;
    top: 40%;
}

.image_link{
 display:block; 
 position:relative;
 text-decoration:none;
}
.image_link img{
  display:block;
  width:100%;
}
.image_link:before{
  content:"";
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  z-index:2;
  background:#000;/*好みの色に変えてください。*/
  opacity:0;
  transition:0.3s;
}
.image_link:after{
  content:"Holiday Collection";/*好みの文章に変更してください。*/
  display:block;
  color:#fff;
  line-height:48px;
  padding: 1% 3%;
  border:solid 1px #fff;
  border-radius:5px;
  text-align:center;
  position:absolute;
  top:50%;
  left:50%;
  margin-top:-1em;
  margin-left:-90px;
  opacity:0;
  z-index:3;
  transition:0.3s;
  font-weight:bold;
  letter-spacing:0.2em;
}
.image_link:hover:before{
  opacity:0.5;
}
.image_link:hover:after{
  opacity:1;
  margin-top:-0.5em;
}
.image_link.item02:after{
  content:"祈りの灯";/*好みの文章に変更してください。*/
}
.image_link.item03:after{
  content:"コラソンキューブ";/*好みの文章に変更してください。*/
}
.image_link.item04:after{
  content:"乙女の祈り";/*好みの文章に変更してください。*/
}
.image_link.item05:after{
  content:"溢れる心の泉";/*好みの文章に変更してください。*/
}

.js-box {
    display: none;
}

.item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 300px;
    height: 200px;
    color: #fff;
    background-color: #000066;
}

/*------Profile-------*/

h1.ttl {
    font-size: 2em;
    font-weight: 600;
    text-align: center;
}
.top-contets02 {
    display: flex;
    justify-content: center;
    width: 70%;
    margin: 4% auto 8%;
    align-items: flex-start;
}
.top-contets02 .left {
    width: 50%;
    text-align: center;
}
.top-contets02 .right {
    line-height: 1.8em;
    width: 100%;
}
p.txt01 {
    margin-bottom: 5%;
}


/*------contact-------*/
.contact-area {
    width: 44%;
    margin: 0 auto;
}
.contact-area p {
    margin-top: 4%;
}
span.txt-red {
    font-size: 14px;
    color: #c90c0c;
    margin-left: 10px;
}

input.wpcf7-form-control.wpcf7-text {
    border: none;
    background: #ffffff;
    padding: 1%;
    width: 100%;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
}

input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 14px;
    width: 160px;
    padding: 10px;
    border-radius: 0px;
    background-color: #fff9ee;
    border: solid 1px #000;
    border-radius: 30px;
    color: #282828;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #000;
    color: #fff;
    transition: .5s;
}
span.wpcf7-spinner {
  display: none;
}
.submit-btn {
    text-align: center;
}

/*------works-------*/
section.main_post ul {
    width: 100%;
    margin: 5% auto;
    display: flex;
    flex-wrap: wrap;
}
section.main_post ul li {
    width: 33.3%;
    margin-bottom: 5%;
}
.bolg-ttl {
    color: #000;
    font-size: 1em;
    font-weight: 600;
    margin: 1% 0 4%;
    text-align: center;
}
section.main_post ul li p {
    width: 88%;
    margin: 0 auto;
}
ul.post-categories {
    display: flex;
    justify-content: center;
}
ul.post-categories li {
    text-align: center;
    width: 18% !important;
    background: #ad9797;
    margin-left: 4%;
    border-radius: 12px;
    font-size: 14px;
    padding: 3px 0px;
}
ul.post-categories li:first-child {
    margin-left: 0%;
}
ul.post-categories li a{
    color: #fff;
    padding: 1px;
}

.col01 h3 {
    font-size: 18px;
    padding: 6px;
    margin: 2% auto 1%;
    border-left: solid 6px #a89393;
}

.cate {
    margin: 2% 0% 2%;
}
.col01 {
    margin-bottom: 4%;
    margin-top: 6%;
}
p.link01 {
    margin-top: 4%;
}
p.link01 a {
    color: #1a1a1a;
}
p.link01 a:hover {
    color: #ad9797;
}
section.main_post ul li{
    transition-duration: .4s;
}
section.main_post ul li:hover {
     transform: translateY(-5px);
}
.img-wrap {
    width: 42%;
    margin-left: 5%;
}
.col-md-9 {
    width: 80%;
    margin: 7% auto;
}
.col-md-9 h1 {
    font-size: 28px;
}
.btn01 {
    text-align: center;
    margin: 5%;
}
.btn01 a {
    border: solid 1px #000;
    border-radius: 30px;
    padding: 1% 2%;
    color: #000;
    transition: .5s;
}
.btn01 a:hover {
    background: #000;
    color: #fff;
}

.pagination {
  margin: 4rem 0;
  text-align: center;
}
 
.pagination ul {
  font-size: 0;
}
 
.pagination ul li {
  font-size: 1rem;
  display: inline-block;
  margin-right: .75rem;
}
 
.pagination ul li:last-child {
  margin-right: 0;
  border: 0;
}
 
.pagination ul li a,
.pagination ul li .current {
  font-weight: 600;
  line-height: 1;
  display: block;
  padding: .75rem .875rem;
  border: 1px solid #ddd;
}
 
.pagination ul li a {
  text-decoration: none;
  color: #555;
}
 
.pagination ul li .current {
  color: #fff;
  background-color: #67bf92;
}
 
.pagination ul li .prev,
.pagination ul li .next {
  padding: .75rem .5rem;
  border: 0;
}
 
.pagination ul li i {
  font-size: 1rem;
  color: #1d2d43;
}
h1.column-ttl {
    margin-bottom: 1%;
}
div#post-meta {
    margin-bottom: 1%;
}



 

@media screen and (max-width : 1024px){


}


@media screen and (max-width : 768px){
  nav.global-nav {
    display: none ;
  }
.site-name {
    width: 46%;
    margin: 0 auto;
}
.site-name a img {
    width: 100%;
}
.footer-top {
    flex-direction: column-reverse;
}
.navi-bottom {
    margin-left: 0%;
}
    .container {
        background-size: 80%;
    }
.top-contets02 {
    flex-direction: column;
    width: 90%;
}
.top-contets02 .left {
    width: 100%;
}
section.main_post ul {
    flex-direction: column;
}
section.main_post ul li {
    width: 100%;
}
ul.post-categories {
    flex-direction: row !important;
}
.col01 {
        width: 96%;
        margin: 4% auto 6%;
    }
ul.post-categories li {
    width: 26% !important;
}
.col-md-9 {
    width: 98%;
}
.btn01 a {
    padding: 2% 6%;
}
.contact-area {
    width: 90%;
}
}


