@charset "utf-8";
/* CSS Document */

/* uozu-aquarium.jp
-----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&family=Yusei+Magic&display=swap');

/* ==============================================
    universal reset
============================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ==============================================
    html,body and base
============================================== */
html,body {
	height:100%;
}

/* general params
------------------*/
table {
	empty-cells: show;
	font-size: 100%;
	border-collapse: collapse;
}
img {
	border: none;
	height: auto;
	vertical-align: top;
    image-rendering: -webkit-optimize-contrast;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: 500;
	font-size: 100%;
    line-height: 1.1;
}
ul {
	letter-spacing: -.40em;
}
ul li {
	letter-spacing: normal;
}
/* acronyms and abbreviations styles 
-------------------------------------*/
acronym,abbr {
	cursor: help;
}

/* ==============================================
    clear
============================================== */
.cbox {
	zoom: 100%;
}
.cbox:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
}

/* ==============================================
    body
============================================== */
body {
	text-align: center;
	line-height: 1.2;
	color: #000;
	-webkit-text-size-adjust: 100%;
    font-size: 18px;
}
@media screen and (max-width: 700px) {
	body {
		min-width: 300px;
        font-size: 16px;
	}
}
@media screen and (max-width: 500px) {
	body {
        font-size: 14px;
	}
}
@media print {
	body {
		min-width: 950px;
	}
    #pagetop {
        display: none !important;
    }
}
body,
input,
select,
textarea {
    font-family: "Kiwi Maru", sans-serif;
    font-weight: 500;
    font-style: normal;
}
input,
select,
textarea {
    font-size: 100%;
}
form input[type="submit"],
form input[type="reset"],
form input[type="button"] {
	-webkit-appearance: none;
}

/* ==============================================
    link
============================================== */
a {
	transition: all .4s;
	text-decoration: none;
    color: inherit;
    overflow-wrap: anywhere;
}
@media (hover: hover) {
    /*#contents a:hover {
        text-decoration: underline;
    }*/
	a:hover,
    #pagetop img:hover {
		opacity: 0.7;
	}
}

/* ==============================================
    
============================================== */
.inner,
#contents {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
	text-align: left;
}
@media screen and (max-width: 600px) {
    .inner,
    #contents {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }
}

.tab,
.sp {
	display: none;
}
.switch {}
.call {}

/* ==============================================
    container
============================================== */
#container {
	position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url("image/header.jpg") no-repeat top center / contain;
}
footer {
    margin-top: auto;
}

#container::before,
#container::after {
    position: absolute;
    left: 0;
    content: "";
    display: block;
    width: 100%;
}
#container::before {
    top: 400px;
    height: 100%;
    background: linear-gradient(0deg, rgba(140,236,255,1) 0, rgba(178,242,255,1) 100%);
}
#container::after {
    top: 255px;
    height: 200px;
    background: url("image/header_wave.png") no-repeat top center / 100% 200px;
}
@media screen and (max-width: 1500px) {
    #container,
    #container::after {
        background-size: 1500px auto;
    }
}
@media screen and (max-width: 1000px) {
    #container,
    #container::after {
        background-size: 150vw auto;
    }
    #container::before {
        top: 40vw;
    }
    #container::after {
        top: 25.5vw;
        height: 20vw;
    }
}
@media screen and (max-width: 700px) {
    #container {
        background-image: url("image/header_sp.jpg");
    }
    #container::before {
        top: 52vw;
    }
    #container::after {
        top: 33vw;
        height: 20vw;
        background-image: url("image/header_wave_sp.png")
    }
}

/* ==============================================
    menuBtn span
============================================== */
#menuBtn {
	position: absolute;
	top: 0;
	right: 0;
	width: 12vw;
	height: 12vw;
	text-indent: -10000px;
	overflow: hidden;
	cursor: pointer;
	z-index: 10;
}
#menuBtn span,
#menuBtn:before,
#menuBtn:after {
	display: block;
	position: absolute;
	width: 4.5vw;
	height: 2px;
	margin-left: -3vw;
	background: #fff;
	top: 6vw;
	left: 6vw;
	transition: all .4s;
	opacity: 1;
}
#menuBtn span {
	transition: opacity 150ms 50ms;
}
#menuBtn:before,
#menuBtn:after {
	content: "";
}
#menuBtn:before { transform: translate(0, -11px); }
#menuBtn:after { transform: translate(0, 11px); }
#menuBtn.active span { opacity: 0; }
#menuBtn.active:before { transform: rotate(35deg); }
#menuBtn.active:after { transform: rotate(-35deg); }
@media screen and (min-width: 701px), print {
	#menuBtn {
		display: none;
	}
}
@media screen and (max-width: 560px) {
    #menuBtn {
        width: 60px;
        height: 60px;
    }
    #menuBtn span,
    #menuBtn:before,
    #menuBtn:after {
        width: 22px;
        height: 2px;
        margin-left: -11px;
        top: 30px;
        left: 30px;
    }
    #menuBtn:before { transform: translate(0, -8px); }
    #menuBtn:after { transform: translate(0, 8px); }
}

/* ==============================================
    header
============================================== */
header {
    position: relative;
    margin-bottom: 66px;
}
header h1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 88px;
    padding: 0 20px;
}
header h1 img {
    width: auto;
    height: 47px;
}
header nav {
    height: 60px;
    padding-top: 16px; 
    background: #348af5;
    border-bottom: 3px solid #ff9f1a;
    color: #fff;
}
header nav ul {
	list-style: none;
    margin: 0 auto;
}
header nav li a {
    position: relative;
    display: inline-block;
    height: 1.9em;
    padding: 0 0.08em;
}
header nav li:nth-of-type(2) a {
    padding: 0 0.03em;
}
header nav li a:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    display: inline-block;
    height: 11px;
    width: 100%;
    background: url("image/il_circle.svg") repeat-x left center / auto 3px;
    filter: brightness(0) invert(1);
}

.searchform {
    position: relative;
    display: inline-block;
}
.searchform .search_text,
.searchform .search_btn {
    border: none;
    outline: none;
}
.searchform .search_text {
    width: 214px;
    height: 38px;
    padding-left: 40px;
    border-radius: 8px;
    background: #fff;
}
.searchform .search_text::placeholder {
    color: #fff;
}
.searchform .search_btn {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 18px;
    height: 18px;
    background: url(image/search_btn.svg) no-repeat center center / contain;   
}
@media screen and (min-width: 701px), print {
    header nav ul {
        display: flex;
        max-width: 1160px;
        justify-content: space-around;
    }
    .searchform {
        position: absolute;
        top: 27px;
        right: 20px;
    }
}
@media screen and (max-width: 1000px) {
    header {
        margin-bottom: 6.6vw;
        font-size: 16px;
    }
    header nav li a:after {
        width: 107%;
    }
}
@media screen and (max-width: 700px) {
    header {
        height: calc(12vw + 2px);
        margin-bottom: 10vw;
        border-bottom: 2px solid #ff9f1a;
        background: #348af5;
    }
    header h1 {
        height: 12vw;
    }
    header h1 img {
        height: 6.266vw;
    }
    header nav {
        position: fixed;
        top: calc(12vw + 60px);
        left: 0;
        z-index: 100;
        width: 100%;
        height: 100%;
        padding-top: 5px;
        background: #348af5;
        text-align: center;
	    transition: all .7s;
        transform: translateY(100%);
    }
    header nav.active {
        transform: translateY(0);
    }
    header nav::before {
        position: absolute;
        top: -39px;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 40px;
        background: url("image/menu_wave.png") repeat-x right top;
        background-size: 80% 55px;
    }
    header nav li {
        margin-bottom: 1.3em;
        font-size: 18px;
    }
    header nav li a:after {
        height: 6px;
        background-size: 5px;
    }
}
@media screen and (max-width: 560px) {
    header {
        height: 62px;
    }
    header h1 {
        height: 60px;
    }
    header h1 img {
        height: 35px;
    }
    header nav {
        top: 120px;
    }
    header nav::before {
        background-size: 90% 45px;
    }
}


/* ==============================================
    contents
============================================== */
#contents {
    position: relative;
    padding-bottom: 3em;
}

#contents p {
	line-height: 1.6;
}
#contents dt,
#contents dd,
#contents th,
#contents td,
#contents li {
	line-height: 1.4;
}

.wp-block-button {
    margin: 1em auto;
}
.wp-block-button a {
    position: relative;
    display: inline-block;
    min-width: 290px;
    padding: 1.2em 2em;
    color: #0079bf;
    text-align: center;
    background: #fff;
    box-shadow: 5px 5px 0 #ffe1b5;
}
.wp-block-button a,
.wp-block-button a::after {
    border-radius: 100px;
}
.wp-block-button a::before,
.wp-block-button a::after {
    content: "";
}
.wp-block-button a::before {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-top: -0.2em;
    margin-right: 0.8em;
    background: url(image/breadcrumb_arrow.svg) no-repeat left center / contain;
}
.wp-block-button a::after {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: calc(195% - 20px);
    height: calc(180% - 20px);
    border: 7px dotted #77dbff;
}
@media (hover: hover) {
    #contents .wp-block-button a:hover {
        text-decoration: none;
        box-shadow: unset;
		opacity: 1;
    }
}

/* ==============================================
    footer
============================================== */
footer,
#copyright {
	text-align: center;
    color: #fff;
}
footer {
    position: relative;
    margin-top: 150px;
    padding-top: 50px;
    background: #1062d1;
    font-size: 16px;
}

footer::before,
footer address::before,
footer address::after,
footer nav::before {
    position: absolute;
    content: "";
    display: block;
}
footer::before {
    top: -29px;
    left: 0;
    width: 100%;
    height: 30px;
    background: url("image/footer.png") repeat-x center top;
    z-index: 1;
}

footer address {
    margin-bottom: 2.5em;
	font-style: normal;
    letter-spacing: 0.1em;
}
footer address strong {
    display: block;
}
footer address img {
    width: 40vw;
    max-width: 257px;
    margin-bottom: 35px;
}
footer address p:first-of-type {
    margin-bottom: 0.8em;
}
footer address span {
    display: inline-block;
    margin-right: 0.6em;
    padding: 0.3em 0.8em;
    border-radius: 14px;
    font-size: 0.875em;
    background: #fff;
    color: #1062d1;
}

footer nav {
    position: relative;
    margin-bottom: 2em;
    padding: 1em;
    background: #fff;
}
footer nav li {
    display: inline-block;
    vertical-align: middle;
	list-style: none;
}
footer nav li + li {
    position: relative;
    margin-left: 2em;
}
footer nav li + li::before {
    position: absolute;
    top: 0.2em;
    left: -2em;
    content: "";
    display: block;
    height: 11px;
    width: 1.85em;
    background: url("image/il_circle.svg") repeat-x left center / auto 3px;
    transform: rotate(90deg);
}
footer nav a {
    color: #1062d1;
}

#copyright {
    padding-bottom: 3em;
    font-size: 12px;
}

@media screen and (max-width: 1000px) {
    footer {
        margin-top: clamp(6.25rem, 4.375rem + 8vw, 9.375rem);
    }
}
@media screen and (min-width: 901px), print {
    footer address p.tel,
    footer address p.fax {
        display: inline-block;
        vertical-align: middle;    
    }
    footer address p.fax {
        margin-left: 1em;
    }
}
@media screen and (max-width: 900px) {
    footer {
        font-size: 14px;
    }
    footer::before {
        background: url("image/footer.png") repeat-x right top;
        background-size: 90% auto;
    }
    footer address p.tel {
        margin-bottom: 0.8em;
    }
    footer nav li + li::before {
        width: 1.8em;
    }
}
@media screen and (max-width: 800px) {
    footer {
        padding-top: clamp(1.25rem, -0.404rem + 7.06vw, 3.125rem);
    }
    footer nav li {
        display: block;
    }
    footer nav li + li {
        margin-top: 1em;
    }
    footer nav li + li::before {
        content: none;
    }
}
@media screen and (max-width: 500px) {
    footer {
        font-size: 12px;
    }
    footer address img {
        margin-bottom: 20px;
    }
    #copyright {
        font-size: 10px;
    }
}

footer address::before {
    top: 30px;
    left: 125px;
    width: 50px;
    height: 52px;
    background: url("image/il_starfish.svg") no-repeat top center / contain;
}
footer address::after {
    top: 95px;
    left: 50%;
    margin-left: -460px;
    width: 45px;
    height: 48px;
    background: url("image/il_octopus.svg") no-repeat top center / contain;
}
footer nav::before {
    top: -70px;
    right: 175px;
    width: 29px;
    height: 63px;
    background: url("image/il_bubble.png") no-repeat bottom center / contain;
}
@media screen and (max-width: 1400px) {
    footer address::before {
        left: 50%;
        margin-left: -575px;
    }
}
@media screen and (max-width: 1200px) {
    footer address::before,
    footer address::after {
        margin-left: 0;
    }
    footer address::before {
        left: 25px;
    }
    footer address::after {
        left: 141px;
    }
}
@media screen and (max-width: 1000px) {
    footer nav::before {
        content: none;
    }
}
@media screen and (max-width: 700px) {
    footer address::before {
        top: 0;
        width: 6vw;
    }
    footer address::after {
        top: 11.87vw;
        width: 7vw;
        left: auto;
        right: 25px;
        transform: scale(-1, 1);
    }
}

/* ==============================================
    pagetop
============================================== */
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 6px;
    display: none;
	cursor: pointer;
    z-index: 2;
	transition: all .4s;
}
@media screen and (max-width: 700px) {
    #pagetop img {
        width: clamp(3.125rem, 0.889rem + 9.54vw, 5.063rem);
    }
}

/* ==============================================
    スクロールアニメーション
============================================== */
.scrollin {}
.fadein {}
.slidein {}

.scrollin {
	opacity : 0;
	visibility: hidden;
	transition: 0.5s;
}
.scrollin.active {
	opacity: 1;
	visibility: visible;
}
.scrollin.fadein { transform: translateY(100px); }
.scrollin.fadein.active { transform: translateY(0); }
.scrollin.slidein { transform: translateX(300px); }
.scrollin.slidein.active { transform: translateX(0); }
