@charset "utf-8";
/* CSS Document */

/* 一般
-----------------------------------------*/
html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
	font-size: 1.8rem; 
	line-height: 1.6;
    font-family: 'Hiragino Kaku Gothic Pro',"游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","メイリオ",sans-serif;	
	color: #000;
	-webkit-text-size-adjust: 100%;
	position: relative;
}
a{
    word-break: break-all;
}
a,
a *,
button{
	color: #000;
	text-decoration: none;
	-webkit-transition: all .3s;
			transition: all .3s;
}
@media screen and (min-width:900px) {
a:hover *{
	/*opacity: .7;*/
}
a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
}
.sp_only{
	display: none;
}
}
@media screen and (max-width:899px) {
body{
	font-size: 1.6rem;
}
.pc_only{
	display: none;
}
}


/* ヘッダー
-----------------------------------------*/

#language{
    border-bottom: solid 6px #5a9d3f;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
#language-select {
    line-height: 30px;
    border: solid 2px #5a9d3f;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    padding: 0 30px 0 10px;
    font-size: 1.4rem;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235a9d3f'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}
#language-select.active {
    background-color: #5a9d3f;
    color: #fff;
    font-weight: bold;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23fff'/%3E%3C/svg%3E");
}
#language-select option {
    background: #fff;
    color: #000;
    font-weight: normal;
}
@media screen and (min-width:1410px) {
#header{
    background: url(../images/logo_sky.png) no-repeat center 35px;
}
}
@media screen and (max-width:1409px) {
#header{
    background: url(../images/logo_sky.png) no-repeat center 46px;
}
}


/* フッター
-----------------------------------------*/
#footer{
    text-align: center;
}
#footer dl{
    padding: 40px 20px 0 20px;
}
#footer dt{
    margin-bottom: 20px;
}
#footer dd:last-child{
    font-size: 1.5rem;
    margin-top: 10px;
}
#footer dd a{
    text-decoration: underline;
}
#footer dt a:hover,
#footer dd a:hover{
    opacity: .7;
}
#f_link{
    margin-top: 40px;
    padding-bottom: 40px;
    font-size: 1.6rem;
}
#f_link a:hover{
    color: #5a9d3f;
}
#f_copyright{
    background: #5f3700;
    padding: 20px;
    color: #fff;
    font-size: 1.4rem;
}
@media screen and (min-width:900px) {
#footer dt{
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer dt span:nth-child(2){
    margin-left: 40px;
}
}
@media screen and (max-width:899px) {
#footer dl{
    padding: 30px 20px 0 20px;
}
#footer dt span{
    display: block;
}
#footer dt span:nth-child(2){
    margin-top: 20px;
}
#footer dd{
    font-size: 1.3rem;
    margin-top: 15px;
}
#f_link{
    margin-top: 30px;
    padding-bottom: 30px;
    font-size: 1.5rem;
}
#f_copyright{
    padding: 15px 20px;
    color: #fff;
}
}


/* 固定ボタン
-----------------------------------------*/
#pagetop_btn{
    width: 60px;
    height: 60px;
    position: fixed;
    right: 40px;
    bottom: 35px;
    z-index: 999999;
    opacity: 0;
    transition: all 0.65s;
}
#pagetop_btn.isFixed {
    opacity: 1;
    transition: all 0.65s;
}
#pagetop_btn a{
    display: block;
    width: 60px;
    height: 60px;
    background: #fff;
    border: solid 2px #5a9d3f;
    border-radius: 50%;
    position: relative;
}
#pagetop_btn a::after{
    font-family: "Font Awesome 5 Free";
    content: '\f077';
    font-weight: 900;
    font-size: 2rem;
    color: #5a9d3f;
    position: absolute;
    top: 12px;
    left: 20px;
}
#pagetop_btn a:hover{
    background: #5a9d3f;
}
#pagetop_btn a:hover::after{
    color: #fff;
}
@media screen and (min-width:900px) {

}
@media screen and (max-width:899px) {
#pagetop_btn{
    right: 20px;
    bottom: 35px;
}
}



.jq-toast-wrap.top-right {
    top: 50px;
    right: 20px;
}
.jq-toast-wrap {
    width: 400px;
}
.jq-toast-single {
    padding: 20px;
    font-size: 16px;
    line-height: 20px;
}
.close-jq-toast-single {
    top: 5px;
    right: 10px;
    font-size: 20px;
}
@media screen and (max-width:899px) {
.jq-toast-wrap.top-right {
    top: 60px;
}
.jq-toast-wrap {
    width: calc(100% - 40px);
    max-width: 400px;
}
}

/* モーダル
-----------------------------------------*/
.modal {
    display: none;
    z-index: 1000000;
    position: relative;
}

.modal.is-open {
    display: block;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-container {
    background-color: #fff;
    max-width: 1120px;
    max-height: calc(100vh - 40px);
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
    overflow-y: scroll;
}

.modal-close-button {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.modal-close-button svg {
    -webkit-filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, .5));
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, .5));
}

@media screen and (max-width:1199px) {
    .modal-container {
        max-width: calc(100vw - 40px);
    }
}

/* myサイト翻訳のスクリプトで追加される要素を非表示 */
#msta_footerArea {
    display: none !important;
}