@charset "utf-8";
/* CSS Document */

@media print{
   /*印刷用CSSで適用させる定義を記述*/
    .to_top{
        display: none;
    }
}

html {    
    max-width:100%;
	min-width:1480px;
    overflow-x: hidden;
    overflow-y: scroll;
    /*font-size: 62.5%;*/
    font-size: 16px;
}

/*-----------------------------------------------------------*/

body {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 16px;
    -webkit-text-size-adjust: none;
	color: #333;
    overflow: hidden;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
}

#all_wrap {
	/*
	※ない方がいいかも
	overflow: hidden;
    */
}

::-webkit-scrollbar-track {
	background: #333;
}
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
::-webkit-scrollbar-thumb {
	background: #ccc;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

*{
	margin: 0;
	padding: 0;
}

*:focus {
  outline: none;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
	vertical-align: bottom;
}

.pc_hide {
	display: none !important;
}

.sp_hide {
}

a {
	font-size: 16px;
	outline: none;
	color: #333;
	text-decoration:none;
	transition: 0.3s;
	opacity: 1;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    cursor:pointer;
}
a:hover {
	opacity: 0.6;
}

ul{
    list-style-type: none;
}

input, textarea{
    /*bodyと同じフォントcssを入れる*/
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 16px;
    -webkit-text-size-adjust: none;
	color: #000;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
}
input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}

select::-ms-expand {
    display: none;
}

button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

/*-----------------------------------------------------------*/
/*フォント*/

.notoreg{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

.notomed{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.notobold{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.jostreg{
    font-family: "Jost", sans-serif;
    font-weight: 400;
}

/*-----------------------------------------------------------*/
/*リンク（横幅・高さ指定無し）*/


/*-----------------------------------------------------------*/
/*ヘッダー*/

#header_wrap{
    width: 100%;
    position: relative;
    z-index: 10;
    background-color: #ffeaee;
}

#header_wrap .logo{
    position: absolute;
    width: 510px;
    height: 140px;
    background-color: #f75074;
    -webkit-border-bottom-right-radius: 40px;
    -moz-border-radius-bottomright: 40px;
    border-bottom-right-radius: 40px;
	display: flex;
    justify-content: center;
    align-items: center;
}

#header_wrap #g-nav ul{
    width: 1120px;
    margin: 0 auto;
    padding: 60px 0 40px;
	display: flex;
    justify-content: flex-end;
    gap: 0 55px;
}
#header_wrap #g-nav ul li{
    width: fit-content;
}
#header_wrap #g-nav ul li a{
    font-size: 17px;
    color: #f75074;
    letter-spacing: 0.375em;
}

/*-----------------------------------------------------------*/
/*ページ内共通部分*/

main section#firstview{
    width: 100%;
    height: 320px;
    background: url("../image/bg_title@2x.png") 0 0 / cover no-repeat;
    display: flex;
    justify-content: center;
}
main section#firstview > .inner h1 dl{
    width: fit-content;
    padding: 140px 0 0;
    text-align: center;
}
main section#firstview > .inner h1 dl dt{
    font-size: 25px;
    color: #f74f74;
}
main section#firstview > .inner h1 dl dd{
    font-size: 40px;
}

/**/


/*-----------------------------------------------------------*/
/*フッター*/

#footer_wrap{
    width: 100%;
    padding: 55px 0 70px;
    background-color: #fff5d6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#footer_wrap .profile{
    width: 350px;
    margin: 0 auto;
}
#footer_wrap .profile dl{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#footer_wrap .profile dl dt{
    width: 100%;
    padding-bottom: 25px;
    border-bottom: 1px solid #f75074;
    text-align: center;
}
#footer_wrap .profile dl dd{
    width: 100%;    
    padding-top: 25px;
    color: #f75074;
    font-weight: 500;
    text-align: center;
}

#footer_wrap .address{
    width: 180px;
    margin: 25px auto 0;
    font-weight: 500;
}
#footer_wrap .address dl{
    display: flex;
}
#footer_wrap .address dl dt{
    width: 45px;
}
#footer_wrap .address dl dd{
    width: calc( 100% - 45px );
}
#footer_wrap .address dl:first-of-type dd a{
    pointer-events: none;
    text-decoration: none;
}
#footer_wrap .address dl:nth-of-type(2) dd a{
    color: #33acff;
    text-decoration: underline;
}

/*-----------------------------------------------------------*/
/*to top*/

#pagetop {
    position: fixed;
    right: 5%;
    bottom: 5%;
    z-index: 10;
}

/*-----------------------------------------------------------*/
/*アニメーション*/

/*フェードアップ*/
.fadeUpTrigger, .afterloadfadeUp{
    opacity: 0;
}
.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*ipad横向き時*/
@media screen and (max-width: 1500px) and (orientation: landscape) {
    
}/*ここまで*/

/*ipad縦向き時*/
@media screen and (min-width: 820px) and (orientation: portrait) {
 
}/*ここまで*/

/*-----------------------------------------------------------*/
/*色別*/

/*YELLOW*/
html.pageYellow {
}

/*BLACK*/
html.pageBlack {
}

/*BLUE*/
html.pageBlue {
}


/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/

