/*
Theme Name:ochi
 */
@charset "utf-8";

html, body {
    font-family: "Noto Sans JP";
}

body, text {
    word-break: break-all;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 2px;
    font-weight: 500;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    color: #131a3c;
}
@media (max-width: 800px) {
body, text {
    font-size: 14px;
}
}

a {
    text-decoration: none;
    color: #131a3c;
    transition: 0.2s ease-in-out;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

label, button {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

a:hover {
    color: #131a3c;
}

::-moz-focus-inner {
    border: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    vertical-align: bottom;
    width: 100%;
}

h1, h2, h3, h4, p {
    margin: 0;
    font-size: 100%;
    font-weight: 500;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

input, input [type="text"], textarea {
    font-size: 16px;
}

button {
    display: block;
}

address {
    font-style: normal;
}


/* common
-----------------------------------------------------*/
.contents_wrap {
    padding: 100px 0;
    overflow: hidden;
}
@media (max-width: 800px) {
.contents_wrap {
    padding: 80px 0;
}
}

.contents_wrap2 {
    padding: 0 0 100px;
    overflow: hidden;
}
@media (max-width: 800px) {
.contents_wrap2 {
    padding: 0 0 80px;
}
}

.contents_wrap3 {
    padding: 100px 0 0;
    overflow: hidden;
}
@media (max-width: 800px) {
.contents_wrap3 {
    padding: 80px 0 0;
}
}


.contents_inner {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
}


/* header area
-----------------------------------------------------*/
#header {border: 1px solid #ccc;
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.5s;
}
@media (max-width: 1200px) {
#header {
    padding: 50px 0;
}
}
@media (max-width: 800px) {
#header {
    padding: 30px 0;
}
}

#header.fixed {
    background-color: #0aaee4;
}

.header_wrap {border: 1px solid #000;
    overflow: hidden;
    margin: 0 140px 0 0;
}

.header_logo {
    width: 220px;
    float: left;
    position: fixed;
    z-index: 1500;
    top: 24px;
    left: 50px;
}
@media (max-width: 800px) {
.header_logo {
    width: 170px;
    top: 10px;
    left: 10px;
}
}

.nav_wrap {
    float: right;
}

.nav_wrap ul {
    display: flex;
    justify-content: flex-end;
}

.blue_btn a {
    display: block;
    background-color: #0174bd;
    color: #fff;
    margin: 0 0 0 20px;
}

.blue_btn a:hover {
    background-color: #3ca2e2;
}

.nav_wrap li a {
    display: block;
    padding: 17px 15px;
    color: #fff;
    font-weight: 500;
}

.link {
    position: relative;
    text-decoration: none;
}

.link::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease-out, right 0.3s ease-out;
}

.link:hover::after {
    width: 100%;
    right: 0;
}


/* gloval navi
-----------------------------------------------------*/
.gloval_menu {
    position: fixed;
    z-index: 1200;
    cursor: pointer;
    width: 60px;
    height: 60px;
    right: 50px;
    top: 20px;
    background-color: #0174bd;
}
@media (max-width: 800px) {
.gloval_menu {
    right: 0;
    top: 0;
}
}

.menu_line {
    background-color: #fff;
    display: block;
    height: 1px;
    left: 16px;
    position: absolute;
    transition: transform .5s;
    width: 48%;
}

.menu_line_top {
    top: 19px;
}

.menu_line_center {
    top: 29px;
}

.menu_line_bottom {
    bottom: 19px;
}

.menu_line_top.active {
    top: 29px;
    transform: rotate(45deg);
}

.menu_line_center.active {
    transform:scaleX(0);
}

.menu_line_bottom.active {
    bottom: 29px;
    transform: rotate(135deg);
}

.gloval_nav {
    background-color: #01385e;
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-image: url(https://company-testsite.kokoic.com/image/open_menu_bg.jpg);
    background-size: 60%;
    background-position: right center;
    background-repeat: no-repeat;
}
@media (max-width: 800px) {
.gloval_nav {
    background-size: 80%;
}
}

.gloval_nav_wrap {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.gloval_nav_menu {
    max-width: 1200px;
    width: 90%;
    overflow: hidden;
}

.gloval_nav_menu li {
    float: left;
}

.gloval_nav_menu a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 20px;
    font-weight: 400;
    letter-spacing: 3px;
    font-size: 19px
}
@media (max-width: 800px) {
.gloval_nav_menu a {
    padding: 20px 10px;
    font-size: 16px
}
}

.gloval_nav_menu a:hover {
    color: #77ace2;
}

.navi_inner {
    padding: 0 0 0 50px;
    overflow: hidden;
}
@media (max-width: 800px) {
.navi_inner {
    padding: 0 0 0 20px;
}
}

.gloval_nav .snsicon {
    width: 150px;
    padding: 30px 0 0 20px;
    overflow: hidden;
}

.gloval_nav .snsicon a {
    display: block;
    float: left;
    width: 30px;
    margin: 0 20px 0 0;
}
@media (max-width: 800px) {
.gloval_nav .snsicon {
    padding: 30px 0 0 10px;
}
}

@keyframes fade {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.fade_in1 {
    animation: fade .4s ease-in-out .2s 1 normal forwards;
}
.fade_in2 {
    animation: fade .4s ease-in-out .3s 1 normal forwards;
}
.fade_in3 {
    animation: fade .4s ease-in-out .4s 1 normal forwards;
}
.fade_in4 {
    animation: fade .4s ease-in-out .5s 1 normal forwards;
}
.fade_in5 {
    animation: fade .4s ease-in-out .6s 1 normal forwards;
}
.fade_in6 {
    animation: fade .4s ease-in-out .7s 1 normal forwards;
}
.fade_in7 {
    animation: fade .4s ease-in-out .8s 1 normal forwards;
}
.fade_in8 {
    animation: fade .4s ease-in-out .9s 1 normal forwards;
}
.fade_in9 {
    animation: fade .4s ease-in-out 1s 1 normal forwards;
}
.fade_in10 {
    animation: fade .4s ease-in-out 1.1s 1 normal forwards;
}
.fade_in11 {
    animation: fade .4s ease-in-out 1.2s 1 normal forwards;
}

.gloval_nav_menu li {
    opacity: 0;
}
.gloval_nav_menu li.show {
    transition-duration: .8s;
    opacity: 1;
}

.howuselink a {
    display: block;
    margin: 0 0 0 20px;
    color: #fff;
    padding: 20px 0;
    font-weight: 400;
}
@media (max-width: 800px) {
.howuselink a {
    margin: 0 0 0 10px;
}
}

.howuselink a:hover {
    color: #77ace2;
}



/* front page
-----------------------------------------------------*/
.mv {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
@media (max-width: 800px) {
.mv {
    height: 60vh;
}
}

.mv_wrap {
    position: relative;
    height: 100vh;
}
@media (max-width: 800px) {
.mv_wrap {
    height: 60vh;
}
}

.video {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
@media (max-width: 800px) {
.video {
    height: 60vh;
}
}

.mv_bg {
    display: block;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 28, 109, 0);
    z-index: 2;
}
@media (max-width: 800px) {
.mv_bg {
    height: 60vh;
}
}

.mv_txt_wrap {
    position: absolute;
    bottom: 10%;
    left: 6%;
    z-index: 3;
    margin: auto;
}
@media (max-width: 800px) {
.mv_txt_wrap {
    bottom: 10%;
}
}

.typewriter {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 30px;
    white-space: pre-wrap; /* 複数行対応 */
    overflow: hidden;      /* 高さ超過時は隠す */   /* 行間固定 */
    height: 120px;           /* 高さ固定（例：4行分） */
}
@media (max-width: 800px) {
.typewriter {
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 20px;     /* 高さ超過時は隠す */   /* 行間固定 */
    height: 70px;           /* 高さ固定（例：4行分） */
}
}

.mv_txt_en {
    color: #fff;
    font-size: 22px;
    letter-spacing: 4px;
    font-family: "Kanit", sans-serif;
    font-weight: 300;
}
@media (max-width: 800px) {
.mv_txt_en {
    font-size: 15px;
    letter-spacing: 2px;
}
}

.scroll-down {
    display: inline-block;
    position: absolute;
    right: 40px;
    bottom: 20px;
    z-index: 500;
    padding: 10px 10px 110px;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .2em;
    text-decoration: none;
    writing-mode: vertical-lr;
}
@media (max-width: 800px) {
.scroll-down {
    padding: 10px 10px 80px;
    left: 0;
    right: 0;
    bottom: 30px;
    font-size: 13px;
    text-align: center;
    writing-mode: horizontal-tb;
}
}

.scroll-down::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: #fff;
}
@media (max-width: 800px) {
.scroll-down::after {
    height: 60px;
}
}

.scroll-down::after {
    animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl {
0% {
    transform: scale(1, 0);
    transform-origin: 0 0;}
50% {
    transform: scale(1, 1);
    transform-origin: 0 0;}
50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;}
100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;}
}

.loopSlide_photo1, .loopSlide_photo2 {
    margin: 100px 0;
}
@media (max-width: 800px) {
.loopSlide_photo1, .loopSlide_photo2 {
    margin: 40px 0;
}
}

.roop_photo1 {
    width: 100%;
    height: 140px;
    -webkit-animation: bgroop_left 50s linear infinite;
    animation: bgroop_left 50s linear infinite;
}
@media (max-width: 1200px) {
.roop_photo1 {
    height: 110px;
    -webkit-animation: bgroop_left 70s linear infinite;
    animation: bgroop_left 70s linear infinite;
}
}
@media (max-width: 800px) {
.roop_photo1 {
    height: 80px;
}
}

.roop_photo2 {
    width: 100%;
    height: 320px;
    -webkit-animation: bgroop_right 80s linear infinite;
    animation: bgroop_right 80s linear infinite;
}
@media (max-width: 1200px) {
.roop_photo2 {
    height: 220px;
}
}
@media (max-width: 800px) {
.roop_photo2 {
    height: 150px;
}
}

.roop_photo1 {
    background: url(https://company-testsite.kokoic.com/image/left_slideloop.png) repeat-x;
    background-position: 0 0;
    background-size: cover;
}
.roop_photo2 {
    background: url(https://company-testsite.kokoic.com/image/left_slideloop2.png) repeat-x;
    background-position: 0 0;
    background-size: cover;
}

@keyframes bgroop_left {
from {
background-position: 0 0;
}
to {
background-position: -3200px 0;
}
}

@keyframes bgroop_right {
from {
background-position: -3200px 0;
}
to {
background-position: 0 0;
}
}

.contents_box {
    overflow: hidden;
}

.box_left {
    float: left;
    width: 48%;
}

.box_right {
    float: right;
    width: 48%;
}

@media (max-width: 800px) {
.box_left {
    float: none;
    width: 100%;
    margin: 0 0 50px;
}

.box_right {
    float: none;
    width: 100%;
}
}

.top_title_bg1 {
    background: url(https://company-testsite.kokoic.com/image/top_product_title_bg.png);
    background-position: top 75px right;
    background-size: 600px;
    background-repeat: no-repeat;

}

.top_title_bg2 {
    background: url(https://company-testsite.kokoic.com/image/top_works_title_bg.png);
    background-position: top 75px right;
    background-size: 600px;
    background-repeat: no-repeat;
}

@media (max-width: 1200px) {
.top_title_bg1, .top_title_bg2 {
    background-position: top 72px right;
    background-size: 400px;

}
}
@media (max-width: 800px) {
.top_title_bg1, .top_title_bg2 {
    background-position: top 75px right;
    background-size: 275px;

}
}

.contact_area {
    color: #fff;
    background-color: #0082be;
    padding: 40px;
    position: relative;
    transition: all 0.6s;
}
@media (max-width: 1200px) {
.contact_area {
    padding: 30px;
}
}

.contact_area:hover {
    background-color: #94c4e8;
}

.kurukuru {
    position: absolute;
    z-index: 30;
    width: 100px;
    height: 100px;
    top: 0;
    right: 40px;
    bottom: 0;
    margin: auto;
}
@media (max-width: 1200px) {
.kurukuru {
    width: 60px;
    height: 60px;
}
}
@media (max-width: 800px) {
.kurukuru {
    width: 80px;
    height: 80px;
    right: 20px;
}
}

.kurukuru_text {
    animation: 15s linear infinite rotation1;
    background-image: url(https://company-testsite.kokoic.com/image/kurukuru.png);
    background-size: cover;
    background-position: center center;
    width: 100px;
    height: 100px;
}
@media (max-width: 1200px) {
.kurukuru_text {
    width: 60px;
    height: 60px;
}
}
@media (max-width: 800px) {
.kurukuru_text {
    width: 80px;
    height: 80px;
}
}

@keyframes rotation1 {
  0% {transform:rotate(0);}
  100% {transform:rotate(360deg);}
}

.scroll_arrow img {
    position: absolute;
    height: 20px;
    width: 20px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.form_title {
    font-family: "Kanit", sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 35px;
    letter-spacing: 5px;
    margin: 0 0 5px;
}
@media (max-width: 1200px) {
.form_title {
    font-size: 25px;
    line-height: 25px;
    letter-spacing: 3px;
}
}

.tel_wrap {
    margin: 40px 0 20px;
    font-family: "Kanit", sans-serif;
    font-weight: 600;
    font-size: 33px;
    line-height: 33px;
    letter-spacing: 5px;
    color: #084d83;
}
@media (max-width: 800px) {
.tel_wrap {
    margin: 30px 0 10px;
    font-size: 28px;
    line-height: 28px;
}
}

.tel_wrap a {
    color: #084d83;
}


/* sub page
-----------------------------------------------------*/
.sub_block_title_wrap {
    margin: 0 0 30px;
}

.sub_block_title_ja {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #0067a9;
    margin: 0 0 20px;
    padding: 0 0 15px;
    border-bottom: 1px solid #0067a9;
}
@media (max-width: 800px) {
.sub_block_title_ja {
    font-size: 18px;
    line-height: 24px;
}
}

.list_inner ul {
    overflow: hidden;
}

.list_inner li {
    padding: 20px 0;
    border-bottom: 1px solid #92badb;
}

@media (max-width: 800px) {
.list_inner li {
    padding: 10px 0;
}
}

.list_inner li:first-child {
    padding: 0 0 20px;
}

.gaiyoulist_wrap {
    display: flex;
}

@media (max-width: 800px) {
.gaiyoulist_wrap {
    display: block;
}
}

.gaiyou_left {
    float: left;
    width: 180px;
}

@media (max-width: 800px) {
.gaiyou_left {
    float: none;
    width: 100%;
    font-weight: 700;
}
}

.gaiyou_right {
    flex: 1;
}

.bold_text {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 800px) {
.bold_text {
    text-align: left;
    font-size: 15px;
}
}

.kati {
    margin: 0 auto 20px;
}

.kati img {
    width: 500px;
    display: block;
    margin: 0 auto;
}
@media (max-width: 800px) {
.kati img {
    width: 80%;
    margin: 0 auto 20px;
}
}

.rinen {
    margin: 80px auto 20px;
}
@media (max-width: 800px) {
.rinen {
    margin: 40px auto 20px;
}
}

.rinen img {
    width: 400px;
    display: block;
    margin: 0 auto;
}
@media (max-width: 800px) {
.rinen img {
    width: 80%;
    margin: 40px auto 10px;
}
}

.sdgs_photo img {
    display: block;
    margin: 50px 0 30px;
    border-radius: 8px;
}

@media (max-width: 800px) {
.sdgs_photo img {
    margin: 30px 0;
}
}

.sdgs_box {
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 1px solid #166db1;
}

.sdgs_box:last-child {
    margin: 0;
}

.sub_block_title_ja2 h4 {
    font-weight: 700;
    margin: 0 0 10px;
    font-size: 110%;
}

.sdgs_img {
    margin-top: 20px;
    max-width: 600px;
    width: 100%;
}

.pdf_wrap {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

.pdf_name {
    flex: 1;
    padding: 20px 20px 20px 0;
}

.pdf_wrap a {
    display: block;
    padding: 20px 0;
    width: 200px;
    background-color: #0174bd;
    color: #fff;
    text-align: center;
}

.pdf_wrap a:hover {
    background-color: #3ca2e2;
}

.sub_contents_wrap {
    border: 1px solid #9ac7e4;
    padding: 30px;
    overflow: hidden;
}
@media (max-width: 800px) {
.sub_contents_wrap {
    padding: 20px;
}
}

.flex_center {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 800px) {
.flex_center {
    display: block;
}
}

.sub_contents_mgn {
    margin: 0 0 50px;
}
@media (max-width: 800px) {
.sub_contents_mgn {
    margin: 0 0 30px;
}
}

.sub_sub_title {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 700;
    color: #2c5e7e;
}
@media (max-width: 800px) {
.sub_sub_title {
    font-size: 18px;
    line-height: 24px;
}
}

.white_box {
    margin: 50px 0 0;
}
@media (max-width: 800px) {
.white_box {
    margin: 30px 0 0;
}
}

.grid_box2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 800px) {
.grid_box2 {
    grid-template-columns: repeat(1, 1fr);
}
}

.subbox {
    background-color: #e3eff7;
    padding: 20px;
}

.subbox_title {
    font-weight: 700;
    margin: 0 0 20px;
}

.box_text {
    font-size: 14px;
    margin: 20px 0 0;
}

.indent {
    text-indent: -1em;
    padding-left: 1em;
    margin: 0 0 5px;
}

.underline {
    text-decoration: underline;
}

.product_saiyou_text {
    font-size: 14px;
    padding: 0 20px 20px 20px;
}

.tereko_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.tereko_image {
    width: 55%;
}
.tereko_text {
    width: 45%;
}
.row1 .tereko_text {
    padding-left: 50px;
}
.row2 .tereko_text {
    padding-right: 50px;
}

@media (max-width: 800px) {
.tereko_container {
    flex-direction: column;
}
.tereko_image {
    width: 100%;
    margin: 0 0 20px;
}
.tereko_text {
    width: 100%;
}
.row2 {
    flex-direction: column-reverse;
}
.row1 .tereko_text {
    padding-left: 0;
}
.row2 .tereko_text {
    padding-right: 0;
}
}

.sub_title_wrap {
    margin: 0 0 30px;
    text-align: center;
}
@media (max-width: 800px) {
.sub_title_wrap {
    margin: 0 0 10px;
}
}

.tereko_subtitle_en {
    font-family: "Kanit", sans-serif;
    margin: 0 0 20px;
    font-size: 35px;
    line-height: 35px;
    color: #2c5e7e;
    font-weight: 600;
}

.tereko_mgn {
    margin: 0 0 80px;
}
@media (max-width: 800px) {
.tereko_mgn {
    margin: 0 0 50px;
}
}

.flow_box {
    overflow: hidden;
    position: relative;
}

.flow_box_mgn {
    margin-bottom: 100px;
}

.arrow_area_wrap {
    float: left;
    width: 40px;
    position: absolute;
    height: 100%;
}

.flow_text_wrap {
    padding: 10px 0 0;
    position: relative;
}

.flow_text_inner {
    border: 1px solid #92badb;
    padding: 40px 30px 30px;
}

.flow_number {
    font-size: 25px;
    line-height: 25px;
    background-color: #fff;
    text-align: center;
    position: absolute;
    top: -5px;
    padding: 0 40px;
    font-family: "Kanit", sans-serif;
    color: #2c5e7e;
}

.flow_text_mgn {
    margin-bottom: 30px;
}

.recruit_info {
    margin: 0 0 30px;
}

.recruit_info p {
    font-size: 20px;
    font-weight: 700;
    color: #2c5e7e;
}
@media (max-width: 800px) {
.recruit_info p {
    font-size: 16px;
}
}

/* Modal Window */
.modalarea {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modalbg {
    width: 100%;
    height: 100%;
    background-color: rgba(30,30,30,0.9);
}

.modal_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width: 90%;
    max-width: 1000px;
    height: auto;
    max-height: 70%;
    background-color: #fff;
    border-radius: 10px;
    overflow-y: scroll;
}

.modal_contents {
    width: 100%;
    padding: 60px 30px 40px;
    text-align: left;
}
@media screen and (max-width : 800px) {
.modal_contents{
    padding: 60px 15px 30px;
}
}

.poli_text {
    border-bottom: 1px solid #ccc;
    padding: 30px 0;
}

.open_modal {
    text-align: center;
    max-width: 200px;
    width: 90%;
    text-decoration: underline;
    border: none;
    cursor: pointer;
    letter-spacing: 2px;
    margin: 20px auto 0;
    font-weight: 500;
    font-family: "Noto Sans JP";
    background-color: #fff;
}

.open_modal:hover {
    background-color: #fff;
    color: #000;
}

.closeModal {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
    background-color: #ededed;
    width: 35px;
    height: 35px;
    text-align: center;
    cursor: pointer;
    font-size: 20px;
    text-indent: 2px;
}
@media screen and (max-width : 800px) {
.closeModal {
    font-size: 20px;
}
}

.closeModal2 {
    margin-top: 30px;
    padding: 15px 0 13px;
    background-color: #ededed;
    border: 1px solid #ededed;
    color: #000;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 2px;
}


/* contact area
-----------------------------------------------------*/
.formWrap {
    width: 80%;
    margin: 0 auto;
}

.formbutton {
    cursor: pointer;
    display: block;
    -webkit-appearance: none;
    width: 250px;
    padding: 20px 0;
    background-color: #0174bd;
    border: 1px solid #0174bd;
    letter-spacing: 2px;
    text-indent: 2px;
    text-align: center;
    transition: .2s;
    color: #fff;
    font-size: 110%;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
}

.formbutton:hover {
    background-color: #fff;
    border: 1px solid #0174bd;
    color: #0174bd;
}

.contact_message {
    margin-bottom: 40px;
}

.input_area {
    width: 100%;
    background-color: #fff;
    border: none;
    height: 50px;
    padding: 10px;
    margin: 5px 0 20px;
    -webkit-appearance: none;
    border: 1px solid #ccc;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.input_area2 {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 10px;
    -webkit-appearance: none;
    border: 1px solid #ccc;
    margin: 5px 0 50px;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

input[type="text"]:focus {
    outline: none;
    border: 1px solid #646464;
}

textarea:focus {
    outline: none;
    border: 1px solid #646464;
}

::placeholder {
    letter-spacing: 2px;
    color: #4f483b;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.hissu {
    color: #cf4e0e;
    font-size: 14px;
}

.radio_area {
    margin: 4px 0 30px;
}

.radio_waku {
    background-color: #efefef;
    cursor: pointer;
    display: inline-block;
    padding: 15px 20px 15px 15px;
    margin: 0 5px 10px 0;
    font-size: 90%;
}

.radio_waku:hover {
    background-color: #d9e9f7;
}

.policy {
    margin-top: 50px;
}

.policy1 {
    margin-bottom: 10px;
    text-align: center;
}

.policy2 {
    font-size: 90%;
    text-align: center;
}

.error_messe {
    margin: 5px 0;
    color: #d79555;
    font-weight: 600;
}

.checkbox-3 {
    border: none;
    margin: 5px 0 50px;
}

.checkbox-3 label {
    display: block;
    margin-bottom: 5px;
    padding: .5em .7em;
    border-radius: 3px;
    background-color: #efefef;
    cursor: pointer;
}

.checkbox-3 label:hover {
    background-color: #d9e9f7;
}

.checkbox-3 label:has(:checked) {
    background-color: #2589d0;
    color: #fff;
}

.checkbox-3 label::before {
    width: 14px;
    height: 14px;
    border-radius: 1px;
    background-color: #fff;
    content: '';
}

.checkbox-3 label:has(:checked)::after {
    position: absolute;
    top: 14px;
    left: 15px;
    transform: rotate(45deg);
    width: 4px;
    height: 8px;
    border: solid #2589d0;
    border-width: 0 2px 2px 0;
    content: '';
}

.checkbox-3 input {
    display: none;
}

/* under 800
-----------------------------------------------------*/
@media (max-width: 800px) {
.formWrap {
    width: 100%;
}

.formbutton {
    width: 140px;
    font-size: 13px;
}

::placeholder {
    font-size: 14px;
}

.hissu {
    font-size: 13px;
}

.radio_waku {
    width: 100%;
    margin: 0 0 8px;
}

.policy {
    margin-top: 30px;
}

.policy2 {
    text-align: left;
}
}


/* grid area
-----------------------------------------------------*/
.grid_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 800px) {
.grid_wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
}

.grid_wrap a {
    display: block;
}

.card_wrap {
    display: block;
    height: 100%;
}

.card_info {
    padding: 15px;
    color: #000;
}

.item_contents {
    border: 1px solid #dfdfdf;
    background-color: #ebebeb;
}

.item_contents:hover {
    border: 1px solid #ebebeb;
}

.item_title {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px;
    color: #344e75;
}
@media (max-width: 800px) {
.item_title {
    margin: 0 0 10px;
}
}

.item__more {
    color: #344e75;
}

.item__img img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    padding: 15px;
    background-color: #fff;
    transition: transform .6s ease;
}

.grid_wrap a:hover img {
    transform: scale(1.08);
}
@media (max-width: 1200px) {
.grid_wrap a:hover img {
    transform: scale(1.11);
}
}
@media (max-width: 1200px) {
.grid_wrap a:hover img {
    transform: scale(1.08);
}
}


/* history area
-----------------------------------------------------*/
.recentviewed_post {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
@media (max-width: 800px) {
.recentviewed_post {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
}

.recentviewed_post li {
    border: 1px solid #dfdfdf;
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
}

.recentviewed_left {
    float: none!important;
    display: block;
    width: 100%!important;
}

.recentviewed_right {
    float: none!important;
    display: block!important;
    padding: 10px!important;
    background-color: #ebebeb;
    margin: 0 0 -10px 0;
}

.recentviewed_right a {
    font-size: 80%;
    color: #344e75;;
    line-height: 20px!important;
    display: block;
}

.recentviewed_left img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    padding: 10px;
    margin: 0 0 -20px 0;
    -webkit-transition: all .3s; transition: all .3s;
}
@media (max-width: 800px) {
.recentviewed_left img {
    margin: 0 0 -10px 0;
}
}

.recentviewed_left:hover img, .recentviewed_right:hover a {
    opacity: 0.7;
}


/* PRODUCT archive and single page
-----------------------------------------------------*/
.top_category_wrap {
    margin: 50px 0 0;
}

.category_wrap ul, .shortcut_list ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media (max-width: 800px) {
.category_wrap ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
}

.category_wrap a {
    padding: 30px 0;
    text-align: center;
    display: block;
    background-color: #d3e8f5;
}
@media (max-width: 800px) {
.category_wrap a {
    padding: 20px 0;

}
}

.category_wrap li {
    -webkit-transition: all .3s; transition: all .3s;
}

.category_wrap a:hover {
    letter-spacing: 4px;
    color: #0aaee4;
    background-color: #e7f3fa;
}

.shortcut_list {
    margin: 0 0 50px;
}

@media (max-width: 800px) {
.shortcut_list ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
}

.shortcut_list a {
    padding: 30px 0;
    text-align: center;
    display: block;
    border: 1px solid #0aaee4;
}
@media (max-width: 800px) {
.shortcut_list a {
    padding: 10px 0;
    font-size: 13px;
}
}

.shortcut_list li:hover a {
    letter-spacing: 4px;
}

.sub_title, .l-singleSide____heading {
    margin: 0 0 30px;
    background-color: #0174bd;
    color: #fff;
    font-size: 120%;
    padding: 10px 20px;
    letter-spacing: 3px;
}
@media (max-width: 800px) {
.sub_title, .l-singleSide____heading {
    padding: 10px 15px;
}
}

.embedbox{
    width: 100%;
    margin: 0 auto;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}
 
.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video_wrap {
    overflow: hidden;
}

.video_left {
    float: left;
    width: 48%;
}
@media (max-width: 800px) {
.video_left {
    float: none;
    width: 100%;
}
}

.video_right {
    float: right;
    width: 48%;
}
@media (max-width: 800px) {
.video_right {
    float: none;
    width: 100%;
    margin: 20px 0 0;
}
}

.upload_area {
    margin: 30px 0 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media (max-width: 800px) {
.upload_area {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
}

.upload_area li a {
    display: block;
    background-color: #0aaee4;
    border: 1px solid #0aaee4;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.upload_area li a:hover {
    background-color: #fff;
    border: 1px solid #0aaee4;
    color: #0aaee4;
}

.product_img_mgn {
    margin: 0 0 30px;
}

.product_table {
    width: 100%;
    padding: 0 0 30px;
    min-width: 700px;
    overflow: scroll;
}

.product_table, .product_table td, .product_table th {
    border-collapse: collapse;
    border: 1px solid #ccc;
    text-align: center;
}

.table_mgn {
    margin: 0 0 30px;
}

.scroll-area {
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
}
@media (max-width: 800px) {
.scroll-area {
    padding: 0 0 15px;
}
}

.simplebar-scrollbar.simplebar-visible::before {
    opacity: 1;
}

.simplebar-track {
    background: #efefef;
    border-radius: 5px;
}

.youto_photo_wrap {
    margin: 30px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media (max-width: 800px) {
.youto_photo_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
}

.blue_tit{
    font-size: 19px;
    color: #29A6DD;
    padding: 25px 0 15px;
    font-weight: bold;
}

.shoukaibun{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}

.flex_box{
    display: flex;
}

.left_box1{
    width: 13.6%;
    font-size: 18px;
    font-weight: bold;
    color: white;
    height: 60px;
    line-height: 60px;  
    background-color: #008D45;
    text-align: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.right_box1{
    line-height: 22px;
    height: 60px;
    background-color: #E2F2E9;
    width: 86.4%;
    text-align: left;
    padding:0 10px;
    font-size: 16px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;align-items: center;
}

.sara{
    margin-top: 10px;
    margin-bottom: 80px;
    text-align: center;
}

.sarani{
    height: 42px;
    line-height: 42px;
    width: 100%;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    background-color: #008D45;
    color: white;
    font-size: 18px;
}

.sara > img{
    width: 55px;
    margin: auto;
}

.sarabox{
    display: flex;
    background-color: #E2F2E9;
    border-radius: 10px;
    padding: 30px 25px;
    justify-content: space-between;
    margin-top: -5px;
}

.saraleft{
    width: 260px;
    text-align: left;
      font-size : 18px;
  line-height : 26px;
  color : #1A1A1A;
    font-weight: bold;
}
.saraleft span{
    color: #EC5A24;
}

.sararight{
    width: 322px;
}
.sararight img{
    width: 322px;
    height: auto;
}


/* WORKS archive and single page
-----------------------------------------------------*/
.news_contents_wrap {
    border-bottom: 1px solid #0174bd;
    padding: 0 0 10px;
    margin: 0 0 30px;
}

.news_title a {
    color: #0ea9dc;
}

.news_title a:hover {
    color: #75d0fb;
}

.news_contents p {
    margin: 0 0 10px;
}

.single_title {
    background-color: #0174bd;
    color: #fff;
    margin: 5px 0 30px;
    padding: 10px 20px;
    font-size: 120%;
    font-weight: 700;
}

.single_pegenavi {
    margin: 50px 0 0;
    overflow: hidden;
}

.wp-pagenavi {
    clear: both;
    text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
    background-color: #fff;
    border: solid 1px #0174bd;
    padding: 20px 18px;
    margin: 0 8px;
    white-space: nowrap;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-align: center;
    text-decoration:none;
    display: inline-block;
}

.wp-pagenavi a:hover{
    color:#fff; 
    background-color:#0174bd; 
    border-color:#0174bd;
}

.wp-pagenavi span.current {
    color: #fff;
    background-color: #0174bd;
    border-color: #0174bd;
    font-weight: bold;
}

.wp-pagenavi a, .wp-pagenavi span {
    padding: 9px 15px 10px 16px;
    margin: 10px 4px 0!important;
}

.pagenavi_prev {
    width: 50%;
    float: left;
}

.pagenavi_next {
    width: 50%;
    float: right;
}

.pagenavi_inner {
    overflow: hidden;
    width: 100%;
}


.navi_title_next {
    text-align: right;
}

.pagenavi_prev a:hover, .pagenavi_next a:hover {
    color: #3ccefe;
}


/* search
-----------------------------------------------------*/
.search_area {
    float: right;
}
@media (max-width: 800px) {
.search_area {
    float: none;
}
}

.search-field {
    width: 240px;
    height: 40px;
    padding: 0 0 0 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    outline: none;
    letter-spacing: 2px;
    font-family: "Noto Sans JP";
}
@media (max-width: 800px) {
.search-form {
    display: flex;
}

.search-field {
    flex: 1;
    width: 100%;
    font-size: 14px;
}
}

.search-submit {
    background-color: #0067a9;
    width: 70px;
    height: 40px;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
    letter-spacing: 3px;
    text-indent: 3px;
    font-family: "Noto Sans JP";
}
@media (max-width: 800px) {
.search-submit {
    margin: 0 0 0 5px;
}
}

.search_list {

}

.search_list li {
    padding: 20px 0;
}

.search_list li a {
    display: inline-block;
    border-bottom: 1px solid #ccc;
    padding: 0 0 5px;
}


/* slick slideshow
-----------------------------------------------------*/
.kakudai {
    margin: 0 0 10px;
}

.slid_wrap {
    margin-bottom: 50px;
}

.slider-2 .slick-slide {
    width: 420px;
    height: 280px;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}

.gallery .slick-slide {
    width: 420px;
    height: 300px;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}
/* under 1200 */
@media (max-width: 1200px) {
.slider-2 .slick-slide {
    width: 250px;
    height: 170px;
}
}
/* under 800 */
@media (max-width: 800px) {
.slider-2 .slick-slide {
    margin: 0 10px;
}
}

.slider-2 .slick-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-2 .slick-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
    position: absolute;
    top: 110px;
}

.slider-2 .slick-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #000;
    border-width: 3px 3px 0 0;
    position: absolute;
    top: 24px;
    transform: rotate(45deg);
}

.slider-2 .slick-next {
    right: 0;
    margin-right: 20px;
}

.slider-2 .slick-prev {
    left: 0;
    margin-left: 20px;
}

.slider-2 .slick-next::before {
    left: 20px;
}

.slider-2 .slick-prev::before {
    border-width: 0 0 3px 3px;
    right: 20px;
}

.dots-1 .slick-dots{
    text-align: center;
}

.dots-1 .slick-dots li {
    display: inline-block;
}

.dots-1 .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    margin: 6px 6px 0;
    font-size: 0;
    padding: 0;
    border: 0;
    outline: none;
    cursor: pointer;
    background: #dbecfa;
    border-radius: 50%;
}

.dots-1 .slick-dots .slick-active button {
    background: #328acf;
}

@media (max-width: 1200px) {
.slider-2 .slick-arrow {
    top: 55px;
}
}
@media (max-width: 800px) {
.slider-2 .slick-arrow {
    width: 40px;
    height: 40px;
    top: 63px;
}

.slider-2 .slick-next {
    margin-right: 10px;
}

.slider-2 .slick-prev {
    margin-left: 10px;
}

.slider-2 .slick-arrow::before {
    width: 10px;
    height: 10px;
    top: 14px;
}

.slider-2 .slick-next::before {
    left: 12px;
}

.slider-2 .slick-prev::before {
    right: 12px;
}
}

.slide_img {
    overflow: hidden;
    position: relative;
}

.slide_img .caption {
    text-align: center;
    padding-top: 30%;
    color: #fff;
}

.slide_img .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0,0,0,0.4);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.slide_img:hover .mask {
    opacity: 1;
}


/* Text Animation
-------------------------------------------------------- */
.text-animation {
    overflow: hidden;}

.slide-in {
    overflow: hidden;
    display: inline-block;}

.slide-in_inner {
    display: inline-block;}

.leftAnime {
    opacity: 0;}

.slideAnimeLeftRight {
    animation-name: slideTextX100;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;}

@keyframes slideTextX100 {
from {
    transform: translateX(-100%);
    opacity: 0;}

to {
    transform: translateX(0);
    opacity: 1;}
}

.slideAnimeRightLeft {
    animation-name: slideTextX-100;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;}

@keyframes slideTextX-100 {
from {
    transform: translateX(100%);
    opacity: 0;}

to {
    transform: translateX(0);
    opacity: 1;}
}



/* other
-----------------------------------------------------*/
.center, .center2 {
    text-align: center;
}
@media (max-width: 800px) {
.center2 {
    text-align: left;
}
}

.block_title_wrap {
    margin: 0 0 50px;
}
@media (max-width: 800px) {
.block_title_wrap {
    margin: 0 0 40px;
}
}

.title_en {
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 65px;
    letter-spacing: 3px;
    margin: 0 0 10px;
    color: #0aaee4;
}
@media (max-width: 1200px) {
.title_en {
    font-size: 45px;
    line-height: 40px;
    margin: 0 0 8px;
}
}

.block_title_jp {
    letter-spacing: 3px;
    line-height: 15px;
}
@media (max-width: 800px) {
.block_title_jp {
    letter-spacing: 2px;
}
}

.block_sub_title {
    background-color: #0174bd;
    color: #fff;
    font-size: 140%;
    padding: 20px;
    margin: 0 0 30px;
    font-weight: 700;
    letter-spacing: 3px;
}
@media (max-width: 800px) {
.block_sub_title {
    font-size: 18px;
    padding: 15px 20px;
    margin: 0 0 30px;
}
}

.title_area {
    color: #0174bd;
    font-size: 140%;
    font-weight: 700;
    margin: 0 0 20px;
    padding: 0 0 5px;
    border-bottom: 4px solid #0174bd;
}

.linkbtn a {
    display: block;
    margin: 60px 0 0;
    -webkit-appearance: none;
    width: 250px;
    padding: 20px 0;
    background-color: #0174bd;
    border: 1px solid #0174bd;
    letter-spacing: 2px;
    text-indent: 2px;
    text-align: center;
    transition: .2s;
    color: #fff;
    font-size: 110%;
    font-weight: 500;
}
@media (max-width: 800px) {
.linkbtn a {
    margin: 30px 0 0;
    width: 200px;
    padding: 12px 0;
}
}

.linkbtn a:hover {
    background-color: #fff;
    border: 1px solid #0174bd;
    color: #0174bd;
}

.map {
    filter: grayscale(100%);
    margin: 50px 0;
}
@media (max-width: 800px) {
.map {
    filter: grayscale(100%);
    margin: 30px 0;
}
}

.head_area {
    overflow: hidden;
    margin: 0 0 80px;
}

.breadcrumb {
    float: left;
}
@media (max-width: 800px) {
.breadcrumb {
    float: none;
    margin: 0 0 20px;
}
}

.breadcrumb a {
    text-decoration: underline;
    color: #0aaee4;
}

.topbuck {
    width: 70px;
    position: fixed;
    bottom: 20px;
    right: 20px;
}
@media (max-width: 800px) {
.topbuck {
    width: 50px;
}
}

.topbuck img {
    width: 100%;
}

.block_mgn {
    margin: 0 0 50px;
}

.text_green {
    color: #52a600;
    font-weight: 700;
    font-size: 110%;
}

.text_purple {
    color: #7e2dbd;
    font-weight: 700;
    font-size: 110%;
}

.red_bold {
    color: #da1a1a;
    font-weight: 900;
    font-size: 120%;
}

.green_bold {
    color: #52a600;
    font-weight: 900;
    font-size: 120%;
}

.lb-number {
    display: none!important;
}

.bg_gray {
    background-color: #efefef;
}

.img_mgn {
    margin: 0 0 30px;
}

.copy {
    font-size: 12px;
    margin: 20px 0 0;
}


/* under 800
-----------------------------------------------------*/
@media (max-width: 800px) {
.pc {
    display: none;
}
}

/* under 1200
-----------------------------------------------------*/
@media (max-width: 1200px) {
.tablet {
    display: none;
}
}

/* over 801
-----------------------------------------------------*/
@media (min-width: 801px) {
.sp {
    display: none;
}
}

