﻿/* all page */
/*fonts*/

/* color ---------------------------------------------------------------------------------------------*/
.linkStyle{color: #eb6ea0;text-decoration: underline;transition: opacity .3s;}
.linkStyle:hover{opacity: 0.7}
.txt_color1, .hvr_txt_color1:hover{color: #eb6ea0;} /* メインカラー */
.txt_color2, .hvr_txt_color2:hover{color: #fff4f1;} /* サブカラー */
.txt_color3, .hvr_txt_color3:hover{color: #f5b2b2;} /* アクセントカラー1 */
.txt_color4, .hvr_txt_color4:hover{color: #c9baa9} /* アクセントカラー2 */

/* background-color */
.bg_color1, .hvr_bg_color1:hover{background-color: #ff8bb9;} /* メインカラー */
.bg_color2, .hvr_bg_color2:hover{background-color: #fff4f1;} /* サブカラー */
.bg_color3, .hvr_bg_color3:hover{background-color: #f5b2b2;} /* アクセントカラー1 */
.bg_color4, .hvr_bg_color4:hover{background-color: #c9baa9} /* アクセントカラー2 */

/* border-color ※!important */
.border_color1, .hvr_border_color1:hover{border-color: #eb6ea0;}
.border_color2, .hvr_border_color2:hover{border-color: #fff4f1;}
.border_color3, .hvr_border_color3:hover{border-color: #f5b2b2;}
.border_color4, .hvr_border_color4:hover{border-color: #c9baa9}


/* top ----------------*/

/* header */
#header #logo{
    max-width: 250px;
}

/* main img */
.main_img_txt{
    top: 60%;
}
.main_bg{
    width: 17%;
    z-index: 1;
    mix-blend-mode: hard-light;
    top: 45%;
}
.main_ob{
    z-index: 2;
    max-width: 320px;
    top: 40%;
    left: 60%;
    transform: translate(-50%,-50%) rotate(-10deg);
    opacity: 0.85;
}
.ani_fadein{
	animation: slideIn 3.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
	opacity: 0;
	animation-delay: 2.5s;
}
@keyframes slideIn {
  0% {
    transform: translateY(50px) translate(-50%,-50%) rotate(-10deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0) translate(-50%,-50%) rotate(-10deg);
  }
  40%,100% {
    opacity: 0.85;
  }
}

/* main */

/* intro */
.intro_img a::before{
    display: none;
}
.intro_img a span {
    background-image: linear-gradient(-150deg, #eb6ea0 0%, #f5b2b2 50%, #cab8d9 100%);
    border-radius: 100%;
    top: -17%;
    left: -23%;
}
.con_no::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background-color: currentColor;
    top: 0;
    bottom: 0;
    right: -40%;
    margin: auto;
}
.intro_img div {
    top: -6%;
    left: 0;
}
.intro_box .con_box_item{
    border-bottom: 1px solid #ff8bb9;
    padding-bottom: 10px;
    margin-bottom: 40px;
}
.intro_box .con_box_item::before, .intro_box .con_box_item::after {
    content: "";
    border: solid transparent;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}
.intro_box .con_box_item::before {
    border-width: 24px;
    border-top-color: #ff8bb9;
}
.intro_box .con_box_item::after {
    border-width: 22.5px;
    border-top-color: #fff;
}
/*アコーディオン*/
.grad-wrap {
  position: relative;
}
.grad-wrap + .grad-wrap {
  margin-top: 40px;
}
.grad-trigger {
  z-index: 4;
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    width: 150px;
    margin: auto;
    padding: 0;
	border: 1px solid #000;
    border-radius: 2px;
    background: #fff;
    color: #000;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: .5s ease;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
	font-family: "Libre Baskerville";
}
.grad-trigger::after {
  content: "MORE"; /*クリック前のボタンのラベル*/
	  font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
	  letter-spacing: 3px;
    text-indent: 3px;
    font-size: calc(1rem - 2px);
}
.grad-trigger .fa {
  margin-right: .5em;
}
.grad-item {
  position: relative;
  overflow: hidden;
}
.grad-item.is-hide {
  height: 150px; /*隠した後の高さ*/
	z-index: 3;
}
.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 150px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 20%, rgba(255,255,255,0.9) 80%, #fff 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 20%, rgba(255,255,255,0.9) 80%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 20%, rgba(255,255,255,0.9) 80%, #fff 100%);
	z-index: 3;
}
.grad-trigger.is-show {
  bottom: -3em;
}
.grad-trigger.is-show::after {
  content: "CLOSE" /*クリック後にボタンのラベルを変える*/
}
.grad-trigger.is-show + .grad-item::before {
  display: none;
}

/* contents */
#s_content2 h2, .top_cms_title h2 {
    background-image: url(./Dup/img/title_top.png);
    padding-top: 60px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 50px;
}

/* topcms */


/* footer */
#logo2 a img{
    max-width: 150px;
}
#sf .sf_contact {
    margin-top: 0;
    width: 100%!important;
    position: relative;
}
#sf .sf_contact .sf_contact_box {
    padding: 100px 50px;
    max-width: 50%;
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(7px);
}


/* under page */
#page_title .page_title_inner {
    padding: 180px 20px;
}

/* cms1 */
.topcms_news_type2 .cate_box {
	width: 46.33333%!important;
	margin-right: 1.5%;
	margin-left: 1.5%;
	cursor: pointer;
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
	box-shadow: 0 6px 12px rgb(0 0 0 / 0);
	/*padding: 20px;*/
	/*border-radius: 20px;*/
	/*background-color: #f5f5f5;*/
}
.topcms_news_type2 .cate_box:hover {
	transform: translateY(-5px);
}
.topcms_news_type2 .cate_box .box_item {
	cursor: pointer;
}
.topcms_news_type2 .txt_height {
	height: 5em
}
.topcms_news_type2 .box_img1 {
	border-radius: 10px;
}

/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){
.topcms_news_type2 .cate_box {width: 100%!important;}
.topcms_news_type2 .txt_height {height: 3em}
}

/* cms2 */

/* cms3 */

/* cms4 */
html.modalset{
	overflow: hidden;
}
.v_type4 .box_item{
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border: solid 2px #f5b2b2;
    border-radius: 20px;
	cursor: pointer;
}
.v_type4 .box_item:hover{
    box-shadow: none;
    border: solid 2px #eb6ea0;
}
.v_type4 .box_title2, .v_type4 .box_txt1{
    border-top: 1px solid #edede6;
}
.v_type4 .modal .box_title2{
	border-top: none;
}
.v_type4 .modal{
	display: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	line-height: 1.7;
}
.v_type4 .modal-wrap {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	text-align: center;
	padding: 20px;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
}
.v_type4 .modal-wrap::-webkit-scrollbar {
	display: none;
}
.v_type4 .modal-wrap:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 1px;
	height: 100%;
}
.v_type4 .modal-bg{
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.3);
	width: 100%;
	height: 100%;
}
.v_type4 .modal-box {
    width: 90%;
    max-width: 900px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 10px;
    padding-bottom: 23px;
    background-color: #fff;
}
.v_type4 .modal-box .inner{
	max-height: 650px;
    overflow: auto;
	-ms-overflow-style: none;
}
.v_type4 .modal-box .inner::-webkit-scrollbar {
  width: 2px;
  height: 10px;
}
.v_type4 .modal-box .inner::-webkit-scrollbar-track {
  border-radius: 5px;
  box-shadow: 0 0 4px #aaa inset;
}
.v_type4 .modal-box .inner::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #333;
}
.v_type4 .modal-box .modal-close{
	cursor: pointer;
	position: absolute;
    top: 19px;
    right: 25px;
}
.v_type4 .modal_img{
    max-width: 600px;
}
.v_type4 .modal_title1{
	padding-top: 60px;
}
.v_type4 .modal_title1:before{
	content: "";
	display: block;
	background-color: #666; 
	width: 1px;
	height: 50px;
	position: absolute;
	top: 0;
	left: 2px;
}
.v_type4 .modal_title1 span{
	transform: rotate(90deg);
	display: block;
	line-height: 1;
}
/* ---------- スマートフォン ---------- */
@media screen and (max-width: 667px){
.v_type4 .modal-box .modal-close {
    top: 6px;
    right: 19px;
}
.v_type4 .modal-box .inner{
    max-height: 500px;
}
}

/* cms5 */

/* page7 */

/* page8 */

/* page9 */

/* page10 */


/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){
    .main_bg{
        width: 26%;
    }
    .main_ob {
        max-width: 150px;
    }
    .intro_box .con_box_item {
        padding-bottom: 20px;
        margin-bottom: 100px;
    }
    .cms_box .cms_box_bg {
        height: 130px;
    }
    .top_cms_title h2 {
        padding-top: 30px;
        background-size: 30px;
    }
    #sf .sf_contact .sf_contact_box {
        padding: 110px 20px;
        max-width: 80%;
    }
    .cms_box .cms_box_bg, #sf .sf_contact::before {
        background-size: auto;
    }
    #page_title .page_title_inner {
        padding: 110px 20px;
    }
    
}
/* ---------- スマートフォン ---------- */
@media screen and (max-width: 667px){
    #header #logo {
        max-width: 200px;
    }
    .sp_link {
        width: 35px;
        height: 35px;
        position: relative;
        border-radius: 50%;
    }
    .sp_link1 {
        margin: 0 5px 0px 20px;
    }
    .sp_link a {
        color: #ff8bb9;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .main_bg {
        width: 26%;
    }
    .main_ob {
        max-width: 100px;
    }
    .intro_box .con_box_item {
        padding: 0;
        padding-bottom: 20px;
        margin-bottom: 70px;
    }
    .intro_img a span {
        left: -19%;
    }
    .sf_access #logo2 {
        text-align: center;
    }
    #sf .sf_contact .sf_contact_box {
        padding: 70px 20px;
        max-width: 85%;
        backdrop-filter: blur(5px);
    }
    #page_title .page_title_inner {
        padding: 80px 20px;
    }
    
}

/*20220719公開後修正*/
.btn.more_width a {
    max-width: 300px;
}
.btn a, .btn > span {
    padding: 14px 0 10px;
    border: none;
    border-bottom: solid 1px;
    max-width: 200px;
}
.btn a i, .btn > span i {
    position: absolute;
    top: calc(50% - 0.55em);
    right: 2rem;
    transition: all 0.3s;
}
/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){
.con3_img{top: 0;left: 0;transform: none;}
}
/* ---------- スマートフォン ---------- */
@media screen and (max-width: 667px){}

