@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&family=Noto+Serif+JP:wght@700&display=swap');


/*
font-family: 'EB Garamond', serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
font-family: 'Prompt', sans-serif;
*/

/*################ リセットcss #################*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
 
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 {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    /*font-size:100%;*/
    vertical-align:baseline;
    background:transparent;
}
 
body {
    line-height:1.5;
    letter-spacing: 1.5px;
	position: relative;
	width:100%;
}
 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
 
ol, ul {
    list-style:none;
}
 
blockquote, q {
    quotes:none;
}
 
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
 
a {
    color: #000000;
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}

 
/* change colours to suit your needs */

del {
    text-decoration: line-through;
}
 
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
 
table {
    border-collapse:collapse;
    border-spacing:0;
}


img {
	display: block;
	width:100%;
	vertical-align:bottom;
	image-rendering: -webkit-optimize-contrast;
}


*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="reset"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="reset"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}


html {
	width: 100%;
    font-size: 62.5%;
    overflow-x: hidden;
    background-color: #e88643;
}

body, form {
	font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-size: 14px;
	-webkit-text-size-adjust: 100%;
	color:#000;
    overflow-x: hidden;
}


a {
	-webkit-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
}



.main {
    position: relative;
    max-width: 1000px;
    width: 90%;
    margin: auto;
    background-color: #fff8e0;
    overflow: hidden;
}

.inner {
    max-width: 820px;
    width: 88%;
    margin: 0 auto;
}

.fl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: center;
}


.logo {
    position: relative;
    display: block;
    max-width: 180px;
    width: 25%;
    z-index: 3;
}

.logo:hover {
	opacity: 0.6;
}



.img-sp {
	display: none;
}



.parts {
	position: absolute;
	z-index: 2;
}


.title {
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    margin: auto;
}

.title img {
	max-width: 230px;
	width: 85%;
    margin: auto;
}

.box {
	position: relative;
    padding: 50px 0px 50px;
    background-color: #ffffff;
    border: solid 5px #000000;
    border-radius: 30px;
}



.floating {
    position: fixed;
    max-width: 220px;
    width: 35%;
	height: 220px;
    z-index: 999;
    right: 50px;
    bottom: 30px;
	-webkit-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
}

.floating a {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.floating a:hover {
	transform: scale(1.1,1.1);
	transform-origin: center;
}


.f-entry {
    right: 240px;
    z-index: 1000;
}

.f-entry a {
	background-image: url("../img/btn_entry.svg");
}

.f-entry a:hover {
	background-image: url("../img/btn_entry_hover.svg");
}


.f-search a {
	background-image: url("../img/btn_search.svg");
}

.f-search a:hover {
	background-image: url("../img/btn_search_hover.svg");
}



footer {
	max-width: 1000px;
    width: 90%;
    margin: auto;
    padding: 30px 0px 50px;
    background-color: #006d5e;
}

footer p {
	font-size: 12px;
	color: #ffffff;
	font-weight: bold;
	letter-spacing: 0.5px;
}

footer p span {
	display: inline-block;
	padding: 0px 15px;
	margin-right: 20px;
	border-left:solid 2px #ffffff;
	border-right:solid 2px #ffffff;
}

footer .tel {
	max-width: 130px;
}

footer .copyright {
	max-width: 260px;
	margin-left: 50px;
}




@media screen and (max-width: 1024px) {	


}



@media screen and (max-width: 768px) {


img {
	width:100%;
}


.main {
    width: 100%;
}

.img-pc {
	display: none;
}

.img-sp {
	display: block;
}



footer {
	width: 100%;
}

footer .fl {
	display: block;
}

footer p {
    letter-spacing: 1.5px;
}

footer p span {
    padding: 0px 10px;
    margin-right: 15px;
}

footer .copyright {
    margin-left: 0px;
}

footer img {
    margin-top: 10px;
}



}



@media screen and (max-width:560px) {

body, form {
    font-size: 13px;
}

.inner {
    width: 92%;
}


.logo {
    width: 40%;
    margin: auto;
}



.title {
	top: -45px;
}

.title img {
    max-width: 150px;
    width: 50%;
}

.box {
    border: solid 3px #000000;
    padding: 65px 15px 30px;
    border-radius: 15px;
}


.floating {
    max-width: 100%;
    width: 48%;
    height: 70px;
    left: auto;
    right: 1.5%;
    bottom: 5px;
	border: solid 3px #000000;
}

.floating a {
	padding: 10px 0px;
    background-size: 120px;
}

.floating a:hover {
	transform: scale(1,1);
}

.f-entry {
    left: 1.5%;
    right: auto;
}

.f-entry a {
	background-image: url("../img/btn_entry_sp.svg");
    background-color: #006d5e;
}

.f-search a {
	background-image: url("../img/btn_search_sp.svg");
    background-color: #dc3630;
}

.f-entry a:hover {
	background-image: url("../img/btn_entry_sp.svg");
}

.f-search a:hover {
	background-image: url("../img/btn_search_sp.svg");
}


footer {
	padding: 30px 0px 100px;
}

}


