@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Yuji+Syuku&display=swap');

/* ===================================================================

リセット

=================================================================== */

html {
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
}

*,
::before,
::after {
    background-repeat: no-repeat;
    box-sizing: inherit;
}

::before,
::after {
    text-decoration: inherit;
    vertical-align: inherit;
}

*:focus {
    /*chromeデフォルト設定解除*/
    outline: none;
}

* {
    padding: 0;
    margin: 0;
}


/* 一般的な要素 */

audio:not([controls]) {
    display: none;
    height: 0;
}

hr {
    overflow: visible;
}

address,
em {
    font-style: normal;
}

ul,
ol,
li {
    list-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

summary {
    display: list-item;
}

small {
    font-size: 80%;
}

[hidden],
template {
    display: none;
}

abbr[title] {
    border-bottom: 1px dotted;
    text-decoration: none;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
	color: #000;
}

a:active,
a:hover {
    outline-width: 0;
	color: #333;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
}

b,
strong {
    font-weight: bolder;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}


/* フォーム */

input {
    border-radius: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type="number"] {
    width: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

[type="text"] {
    width: 100%;
}
textarea {
    overflow: auto;
    resize: vertical;
	width: 100%;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
}

optgroup {
    font-weight: bold;
}

button {
    overflow: visible;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: 0;
    padding: 0;
}

button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button,
select {
    text-transform: none;
}

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none;
	border: 1px solid #ccc;
	border-radius: .3rem;
	padding: .5rem;
    color: inherit;
	margin: .5rem 0;
}
button{
	margin: 0;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;

    text-transform: none;
}

select::-ms-expand {
    display: none;
}

select::-ms-value {
    color: currentColor;
}

legend {
    border: 0;
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}


/* メディア */

img {
    border-style: none;
    vertical-align: top;
}

img,
iframe {
    /*スマホはみ出し用*/
    max-width: 100%;
}
img{
	height: auto;
}

progress {
    vertical-align: baseline;
}

svg:not(:root) {
    overflow: hidden;
}

audio,
canvas,
progress,
video {
    display: inline-block;
}


/* アクセシビリティ */

@media screen {
    [hidden ~ ="screen"] {
        display: inherit;
    }

    [hidden ~ ="screen"]:not(:active):not(:focus):not(:target) {
        position: absolute !important;
        clip: rect(0 0 0 0) !important;
    }
}

[aria-busy="true"] {
    cursor: progress;
}

[aria-controls] {
    cursor: pointer;
}

[aria-disabled] {
    cursor: default;
}


/* selection */

::-moz-selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none;
}

::selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none;
}


/* ===================================================================

各ページ共通関連

=================================================================== */

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
	text-align: center;
}

.mincho {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
}

p {
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;

    text-justify: inter-ideograph;
    /* 日本語用 */
}

th,
td {
    font-size: 16px;
}

@media screen and (min-width: 960px) {

    p,
    th,
    td {
        font-size: 18px;
    }
}

a {
    text-decoration: none;
}

/*画像ホバーOpacity*/
a img {
    /*transition: 1.0s ;*/
}

/*
a:hover img {
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}*/

/*画像ホバーFlashing*/
/*a:hover img {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
}

@-webkit-keyframes flash {
    0% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flash {
    0% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}
*/

/* コンテントエリア大枠 */
.container-full{
	width: 100%;
	margin: 0rem auto 0rem auto;;
}
.head_container-full{
	width: 100%;
	margin: 0rem auto 0rem auto;;
}
.container{
	width: 95%;
	max-width: 1366px;
	margin: 0 auto;
	padding: 3rem 0;
}
.content{
	padding: 3rem 0;
	text-align: left;
}
.bgcolor{
	background-color: rgba(240,244,247,1.00);
}
.block{
	margin: 2rem 0 0 0;
}
.margin_top3{
	margin-top: 3rem;
}
.margin_bottom3{
	margin-bottom: 3rem;
}
.padding_top3{
	padding-top: 3rem;
}
.padding_bottom3{
	padding-bottom: 3rem;
}

/*float*/

@media (min-width: 768px) {
    .left {
        float: left;
    }

    .right {
        float: right;
    }

    .all:after {
        content: "";
        clear: both;
        height: 0;
        display: block;
        visibility: hidden;
    }
}

/* Flexbox */
.block_flex{
	display: block;
}
.block_flex2{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
.block_flex{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	/*align-items: center;*/
	align-items:flex-start;
}
}


/*両端揃え*/

.just {
    text-align: justify;
    text-justify: inter-ideograph;
}

.sp_non{
	display: none;
}
.sp_only{
	display: inherit;
}
@media screen and (min-width: 768px) {
	.sp_non{
	display: inherit;
}
	.sp_only{
	display: none;
}
}


/* 電話番号リンクPC無効 */

a[href^="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        pointer-events: auto;
    }
}


/* スマホメニュー */

.nav-content {
    background: #fff;
}

.nav-content ul {
    border-top: 1px solid #eee;
}

.nav-content ul li {}

.nav-content ul li a {
    text-align: left;
    display: block;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: relative;
    font-size: 14px;
    text-decoration: none;
    color: #000;
}

.nav-content ul li a:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 6px;
    height: 6px;
    margin: -4px 0 0 0;
    border-top: solid 2px #666;
    border-right: solid 2px #666;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* PCメニュー */

.nav-menus {
    display: none;
}

@media (min-width:768px) {
    .drawer-toggle, .nav-content {
        display: none;
    }

    .nav-menus {
        display: block;
        float: right;
    }

    .nav-menus ul {
        padding: 0 10px;
    }

    .nav-menus ul:after {
        content: "";
        clear: both;
        height: 0;
        display: block;
        visibility: hidden;
    }

    .nav-menus > ul > li {
        float: left;
        text-align: center;
        height: 50px;
        background: #fff;
    }

    .nav-menus ul li a {
        position: relative;
        display: block;
        height: 74px;
        box-sizing: border-box;
        text-decoration: none;
        color: #000;
    }

    .nav-menus ul li a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 5px;
        background: #043896;
        bottom: 0;
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform 0.4s;
    }

    .nav-menus ul li a:hover::after {
        transform: scale(1, 1);
    }

    .nav-menus ul li.nav-menu01 {
        display: block;
    }

    .nav-menus ul li.nav-menu01 a {
        width: 75px;
        padding-top: 15px;
    }

    .nav-menus ul li.nav-menu02 a {
        width: 85px;
        padding-top: 15px;
    }

    .nav-menus ul li.nav-menu03 a {
        width: 85px;
        padding-top: 15px;
    }

    .nav-menus ul li.nav-menu04 a {
        width: 85px;
        padding-top: 15px;
    }
}

@media (min-width:960px) {
    .nav-menus ul li.nav-menu01 {
        display: block;
    }
	.nav-menus ul li.nav-menu01 a {
        width: 75px;
        padding-top: 25px;
    }

    .nav-menus ul li.nav-menu02 a {
        width: 85px;
        padding-top: 25px;
    }

    .nav-menus ul li.nav-menu03 a {
        width: 85px;
        padding-top: 25px;
    }

    .nav-menus ul li.nav-menu04 a {
        width: 85px;
        padding-top: 25px;
    }
}

/*ヘッダー*/

header {
    border-bottom: 2px solid #000066;
}

.header-wrapper {
    max-width: 1366px;
    margin: 0 auto;
}

header .logo {
    float: left;
    height: 54px;
    box-sizing: border-box;
    padding-left: 5px;
    padding-top: 5px;
}

@media all and (-ms-high-contrast: none) {
    header h1 {
        /*IE用*/
        padding-top: 5px;
    }
}

header .logo a {
    display: block;
}

header .logo a img {
    width: 157px;
}

header:after {
    content: "";
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
}

@media (min-width: 960px) {
    header .logo {
        height: 74px;
        padding-top: 12px;
    }

    header .logo a img {
        width: 187px;
    }
}

.head-phone {
    display: none;

}

.head-phone img {
    border: 1px solid #000;
    border-radius: 6px;
}

.head-phone-mini {
    padding: 15px;
}

.head-phone-mini a {
    border: 1px solid #000;
    border-radius: 6px;
    display: block;
}

@media (min-width: 768px) {
    .head-phone {
        display: inline-block;
        float: right;
        width: auto;
        padding: .35rem .5rem .3rem .5rem;
        margin-right: .5rem;
		text-align: center;
		font-size: 100%;
		line-height: 1.3;
		border: 1px solid #ccc;
		border-radius: .3rem;
    }
	.head-phone span{
		font-size: 70%;
	}

    .head-phone-mini {
        display: none;
    }
}

@media (min-width:960px) {
    .head-phone {
        display: block;
        float: right;
        width: 200px;
        margin: .5rem 0;
    }
}


/*フッター*/

footer {
    background-color: #000066;
	padding-bottom: 3rem;
}

.footer_logo {
    text-align: center;
    padding: 30px 15px;
}

.footer_logo img {
    width: 200px;
}

.footer_copy {
    text-align: center;
    padding: 1rem;
    font-size: .75rem;color: #fff;
}

@media (min-width: 768px) {
	footer {
	padding-bottom: 0;
}

    .footer_logo {
        padding: 60px 15px 30px;
    }
}

.footer_nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    gap: 0;
}

.footer_nav li {
    width: 100%;
    border-bottom: 1px solid #ccc;
    margin: 0;
}

.footer_nav li:last-child {
    border-bottom: none;
}

.footer_nav li a {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 12px 0;
    background-color: #f8f8f8;
    transition: background-color 0.2s, color 0.2s;
}

.footer_nav li a:hover {
    background-color: #fff;
    color: #043896;
}

@media screen and (min-width: 768px) {
    .footer_nav ul {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        width: auto;
    }

    .footer_nav li {
        width: auto;
        border: none;
    }

    .footer_nav li a {
        width: auto;
        padding: 8px 12px;
        background-color: transparent;
        font-size: 14px;
        color: #0652cc;
    }

    .footer_nav li a:hover {
        background-color: transparent;
        color: #043896;
        text-decoration: underline;
    }
}

/* トップへ戻る */
#pagetops {
    position: fixed;
    z-index: 1999;
    right: 6px;
    bottom: 6px;
}

#pagetops a {
    cursor: default;
}
#pagetop{
	display: inline-block;
	width: 50px;
	height: 50px;
	background-color: rgba(53,164,255,1.00);
}

#pagetop img{
	width: 100%;
	height: auto;
}

@media (min-width: 960px) {
    #pagetops {
        right: 26px;
        bottom: 26px;
    }
}

/* 共通*/
.contact_box{
	width: 90%;
	max-width: 600px;
	margin: 0 auto;
	background-color: #fff;
	border: 3px solid #ccc;
	border-radius: .5rem;
	padding: 1rem 0 2rem 0;
}
@media screen and (min-width: 768px) {
	.contact_box{
	margin: 2rem auto;
}
}
.phone{
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 2rem;
	color: #000066;
}
.phicon{
	font-size: 1.6rem;
}
.mailicon{
	margin-top: .5rem;
	font-size: 4rem;
	color: #000066;
}

/* top */
.topimg{
	position: relative;
	width: 100%;
}
.topimg img{
	display: inherit;
	width: 100%;
	height: auto;
}
.intro{
	position: relative;
	color: #000;
	margin: 1rem;
}
.intro h2{
	text-align: left;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 2rem;
}
.intro p{
	font-size: 1rem;
}
.products2{
	width: 100%;
	}
.item2{
	width: 100%;
	margin-bottom: 1rem;
	}
#topinfo h3{
	margin-top: 1rem;
	font-size: 2rem;
	font-weight: normal;
}
#topinfo p{
	text-align: left;
	margin: 0 1rem;
}
@media screen and (min-width: 768px) {
	.products2{
		width: 75%;
		margin: 1rem auto;
	}
	.item2{
	width: 45%;
	margin-bottom: 1rem;
	}
	.topimg img{
	display: none;
}
	.topimg{
	position: relative;
	width: 100%;
	height: 100%;
	height: 450px;
	background-image: url("../images/product06.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
	.intro{
	position: absolute;
	left: 2rem;
	bottom: 2rem;
	color: #fff;
		margin: 0;
}
	#topinfo p{
	margin: 0;
}
}
@media screen and (min-width: 960px) {
	.topimg{
	height: 600px;
}
}
@media screen and (min-width: 1280px) {
	.topimg{
	height: 700px;
}
.intro p{
	font-size: 1.3rem;
}
}
/* business */
.emphasis{
	font-weight: bold;
	color: #000066;
}
.bizbk{
	background-image: url("../images/img01.png");
	background-position: top right;
	background-repeat: no-repeat;
	background-size: auto 40%;
}
@media screen and (min-width: 960px) {
.bizbk{
	background-size: auto 70%;
}
}
@media screen and (min-width: 1280px) {
.bizbk{
	background-size: contain;
}
}
.biz{
	width: 100%;
	}
.products{
	width: 100%;
	}
.item{
	width: 32%;
	margin-bottom: .5rem;
	}
.title_block{
	text-align: center;
	padding: 1rem;
	margin-bottom: 2rem;
}
h2.titlehead{
	font-size: 200%;
	font-weight: 200;
	display: inline-block;
    position: relative;
    color: #333;
}
h2.titlehead:before{
	content: '';
    display: inline-block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #000066;
}
#business h3.titlehead{
	text-align: left;
	font-size: 150%;
	font-weight: 200;
	padding: .5em .7em;
    border-left: 5px solid #000066;
    color: #333333;
	margin-bottom: 1rem;
}
.biz ul{
	margin: 0 0 1rem 0;
}
.biz ul li{
	text-align: left;
	margin: 0 0 0 1.3rem;
	list-style: disc;
	line-height: 1.5;
}
.item p{
	font-size: 70%;
	line-height: 1.3;
	margin-top: .3rem;
}
#business p,
#partner p{
	text-align: left;
}
#business p.read{
	width: 90%;
	margin: 1rem auto 0 auto;
}
#business .img_box{
	width: 90%;
	max-width: 500px;
}
.btn{
	margin: 1rem 0 2rem 0;
}
.btn a{
	border-radius: 1rem;
	background-color: #000066;
	color: #fff;
	padding: .5rem 1rem;
}
.custom-video {
	margin: 1rem auto 0 auto;
  max-width: 100%; /* 最大幅を100%に制限 */
  height: auto; /* 高さを自動調整 */
}
@media screen and (min-width: 768px) {
	.biz{
		width: 40%;
	}
	.products{
		width: 60%;
	}
	.item p{
	font-size: 80%;
	line-height: 1.5;
}
	#business p,
	#partner p{
	text-align: center;
}
	.custom-video {
  max-width: 67%; /* 最大幅を100%に制限 */
  height: auto; /* 高さを自動調整 */
}
}
@media screen and (min-width: 960px) {
	.biz{
		width: 30%;
	}
	.products{
		width: 70%;
	}
	.item p{
	font-size: 90%;
}
}
@media screen and (min-width: 1366px) {
	.biz{
		width: 25%;
	}
	.products{
		width: 75%;
	}
}

/* aboutus */
.aboutbk{
	position: relative;
  z-index: 1;
	background-image: url("../images/img05.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.aboutbk::after{
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height:100%;
  top: 0;
  left: 0;
  background-color: white;
  opacity: 0.6;
}
#philosophy .container{
	position: relative;
  z-index: 3;
	color:rgba(0,0,0,1.00);
}
#philosophy p,
#access p{
	text-align: left;
}
#philosophy ul,
#outline ul{
	width: 100%;
	margin: 1rem auto 0 auto;
}
#philosophy ul li,
#outline ul li{
	text-align: left;
	margin: 0 0 0 1.3rem;
	list-style: disc;
	line-height: 1.5;
}
table{
	width: 100%;
	max-width: 600px;
	margin: 1rem auto;
	border: none;
	border-top:1px solid #ccc;
	border-collapse: collapse;
}
th, td{
	padding: .8rem .8rem;
	font-weight: normal;
	text-align: left;
	border-bottom:1px solid #ccc;
}
th{
	width: 6rem;
	white-space: nowrap;
}
/*tbody > tr:nth-of-type(even) {
  background-color:rgba(227,227,240,1.00);
}*/
#history .img_box{
	width: 50%;
	max-width: 500px;
	margin: 1rem auto;
}

@media screen and (min-width: 768px) {
#philosophy ul{
	width: 31rem;
}
#philosophy p,
#access p{
	text-align: center;
}
}

/* contacts */
.required{
	color:rgba(255,0,4,1.00);
}
.formbtn{
	text-align: center;
}
.error_box{
	width: 90%;
	max-width: 600px;
	margin: 1rem auto;
}
h4.error{
	color: #FF0000;
}
@media screen and (max-width: 767px) {
.formtable th, .formtable td{
	padding: .8rem .2rem;
}
th{
	width: 5rem;
	white-space: nowrap;
}
}

.submenublock {
	display: inherit;
    padding: 0 0 0;
}

@media (min-width: 768px) {
    .submenublock {
       display: none;
    }
}

/*下固定スマホ用サブメニュー*/

#submenu {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: #000066;
    z-index: 2;
	border-top:1px solid #fff;
}

#submenup {
    position: fixed;
    left: 0;
    bottom: 50px;
    width: 100%;
    height: 30px;
    background: #000;
    z-index: 2;
    color: #fff;
    padding-top: 3px;
}

#submenu .submenus:after {
    content: "";
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
}

#submenu .submenus {
    float: left;
    width: 33%;
}

#submenu .submenus a {
    display: block;
    background: #000066;
    color: #fff;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border-left: 1px solid #000;
    font-size: 28px;
}

#submenu .submenus:first-child a {
    border-left: none;
}
