@charset "UTF-8";

/*================================================
* CSS RESET
================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,h7,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,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px
dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px
solid #b2b2b2;margin:0;padding:0}input,select{vertical-align:middle}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■Frequently Used■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* font-family: 'Montserrat', sans-serif;
/*
/*
/*
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■Basic CSS set■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
img {
    vertical-align: top;
}

video {
    vertical-align: top;
}

body {
    line-height: 1.4em;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}

a {
    text-decoration: none;
    color: #000000;
}

rt {
}

ruby {

}

p {

}

hr {

}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■Header CSS set■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

.menu_PC {
    display: flex;
    padding: 10px;
    background-color: #f0f0f0;
}
@media screen and (max-width:700px) {
.menu_PC {
    display: none;
}
}

.menu_PC_colum {
    width: 200px;
    height: 50px;
}

p.menu_PC_colum_font1 {
    text-align: center;
    color: #3C4148;
    font-weight: bold;
    padding-top: 4px;
}


p.menu_PC_colum_font1_green {
    text-align: center;
    color: #3C4148;
    font-weight: bold;
    padding-top: 4px;    
}
p.menu_PC_colum_font1_green:hover {
    color: #00d085
}
p.menu_PC_colum_font1_green_target {
    text-align: center;
    color: #00d085;
    font-weight: bold;
    padding-top: 4px;    
}

p.menu_PC_colum_font1_blue {
    text-align: center;
    color: #3C4148;
    font-weight: bold;
    padding-top: 4px;  
}
p.menu_PC_colum_font1_blue:hover{
    color: #2eafff;
}
p.menu_PC_colum_font1_blue_target {
    text-align: center;
    color: #2eafff;
    font-weight: bold;
    padding-top: 4px;  
}

p.menu_PC_colum_font2 {
    text-align: center;
    line-height: 50px;
    color: #3C4148;
    font-weight: bold;
}
p.menu_PC_colum_font2:hover {
    color: #9090a0;
}
p.menu_PC_colum_font2_target {
    text-align: center;
    line-height: 50px;
    color: #9090a0;
    font-weight: bold;
}

p.menu_PC_colum_font2_orange {
    text-align: center;
    line-height: 50px;
    color: #3C4148;
    font-weight: bold;    
}
p.menu_PC_colum_font2_orange:hover {
    color: #ff9b00;
}
p.menu_PC_colum_font2_orange_target {
    text-align: center;
    line-height: 50px;
    color: #ff9b00;
    font-weight: bold;    
}


.menu_PC_devider{
    width: 1px;
    background-color: #808080;
}










/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■Body CSS set■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/


/* Navbar & Navmenu color */
:root {
  --background-navbar: #f0f0f0;
}


.menu_SP {
  background: var(--background-navbar);
  /*position: fixed;*/
  width: 100%;
  display: none;
}
@media screen and (max-width:700px) {
.menu_SP {
    display: flex;
}
}

/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
    margin-top: 100px;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #303030;
  opacity: 0;
  transition: 0.5s;
  font-weight: bold;
}

.menu li {
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin-left: auto;
  margin-right: 10px;
}

.navicon {
  background: #606060;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #606060;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  /*
  justify-content: center;
  align-items: center;
  */
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #303030;
    line-height: 50px;
    font-weight: bold;
}

.navtext_icon {
    width: 20px;
    margin: 16px 8px 10px 10px;
}



.h60 {
    height: 60px;
}






.menu_SP_B {
  background: var(--background-navbar);
  /*position: fixed;*/
  width: 100%;
  display: none;
    height: 50px;
}
@media screen and (max-width:700px) {
.menu_SP_B {
    display: flex;
}
}

.menu_SP_B_box {
    display: flex; 
}

.menu_SP_B_flex {
    display: flex;
}

p.menu_SP_B_box_font {
    text-align: center;
    color: #3C4148;
    font-weight: bold;
    line-height: 50px;
}

.menu_SP_B_box_icon {
    width: 20px;
    margin: 12px 8px 10px 10px;
}


.menu_SP_B_box_devider {
    width: 1px;
    height: 40px;
    margin-top: 5px;
    margin-left: 20px;
    margin-right: 20px;
    background-color: #A0A0A0;
}










