@charset "UTF-8";

/*:root {
  --link-color: #349bf4;
  --main-color: #dd1b57;
  --text-color: #333;
}*/

:root {
  --link-color: #dd1b57;
  --main-color: #349bf4;
  --text-color: #333;
}

body {
    font-family: "Robot","Noto Sans JP",serif;
    font-size: 16px;
    color: var(--text-color);
}

section {
    margin-bottom: 95px;
}

.header {
    display: flex;
    width: 100%;
    height: 90px;
    justify-content: space-between;
    padding:28px 70px ;
}

.header__nav {
    display: flex;
    align-items: center;
}

.gnav__list {
    display: flex;
    column-gap: 30px;
}

.gnav__list__item {
    font-weight: bold;
}

.gnav__link--active {
    color: var(--main-color)
}

.gnav__link:hover{
    color: var(--main-color);
}

.hamburger {
    display: none;
}

.mv {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    background-image: url(img/pc_mv.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-blend-mode: hard-light;
    height: 600px;
}

.mv__area {
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.mv__area__title {
    font-size: 160px;
}

.mv__area__body {
    font-size: 24px;
}

.submv {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    background-image: url(img/pc_sub-header.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-blend-mode: hard-light;
    height: 190px;
}

.submv__area__title {
    font-size: 40px;
}

.wrapper {
    /*width: 100%;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding:  10vh 20vw;
}

.heading-primary {
    margin-bottom: 50px;
    font-size: 40px;
    font-weight: bold;
    color: var(--main-color);
}

.news {
    display: flex;
    column-gap: 90px;
}

.news__body {
    flex: 1;
}

.news__list__body {
    flex: 1;
}

.news__list__item {
    display: flex;
    column-gap: 20px;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e8e8e8;
}

.news__list__link:hover {
    color: var(--main-color);
}

.service__header {
    position: relative;
}

.service__header::before{
    display: block;
    content: "SERVICE";
    position: absolute;
    top: -40px;
    right: -20px;
    z-index: -1;
    font-size: 168px;
    font-weight: bold;
    line-height: 1;
    color: #f2f2f2;
}

.service__list {
    display: grid;
    column-gap: 30px;
    grid-template-columns: repeat(3,1fr);
}

.service__list__item {
    padding: 50px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 3px 21px rgba(0, 0, 0, 0.16);
    text-align: center;
}

.service__list__img {
    font-size: 3em;
    color: var(--main-color);
    margin-bottom: 5px;
}

.service__list__title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.service__list__body {
    text-align: left;
    font-size: 14px;
    line-height: 1.2;
}

.footer {
    background-color: var(--main-color);
    color:#fff;
    height:159px;
}

.container {
    padding-top: 60px;
    padding-left:165px;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav__list {
    display: flex;
    column-gap: 30px;
    row-gap: 20px;
}

/* messagee */

.inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding:  5vh 10vw;
}

.message__header {
    font-size: 40px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1.6;
    text-align: center;
    padding: 0px 0px 20px 0;
}

.message__subheader {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
}

.message__content {
    line-height: 1.5;
    margin-bottom: 80px;
    display: flow-root;
}

.message__icon {
    float: left;
    margin: 0px 20px 20px 0px;
}

.message__link {
    color: #349BF4;
    text-decoration-line: underline;
}

.message__office {
    width: 100%;
}

/* company */
.company__table {
    width: 100%;
}

.tr__style {
    border-bottom: 1px solid #e8e8e8;
}

.td__style {
    padding: 30px 0px 30px 40px;
}

.td__title {
    font-weight: bold;
    padding-right: 130px;
}

.td__body {
    text-shadow: 1px 5px 4px var(--text-color);
}

.map__img {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
}

.map__content{
    text-align: right;
}

/* media Queries 767 */
@media screen and (max-width:767px) { 
body {
    font-size: 14px;
}

section {
    margin-bottom: 52px;
}

.header {
    position: relative;
    height: 60px;
    padding:10px 0px 0px 20px ;
}

.header__nav {
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 10;
    padding: 0;
    width: 180px;
    height: 100%;
    background-color: var(--main-color);
    box-shadow: -10px 0 35px -20px rgb(0 0 0 / 25%);
    row-gap: 25px;
}

.header__nav {
    display: none;
}

.gnav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 20px 20px 50px;
    row-gap: 25px;
}

.gnav__link {
    color: #fff;
}

.gnav__link:hover {
    color: #fff;
}

.gnav__link--active {
    opacity: 0.6;
}

.hamburger {
    display: block;
}

.hamburger {
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 10;
    background-color: var(--main-color);
    color:#fff;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 46%;
    border-bottom: solid 2px #fff;
    transition: 0.3s;
    transform: translate(50%,-50%);
}

.hamburger span:nth-of-type(1) {
    top:22px;
}

.hamburger span:nth-of-type(2) {
    top:30px;
}

.hamburger span:nth-of-type(3) {
    top:38px;
}

.hamburger.open span:nth-of-type(1) {
    transform: translateY(10px) translateX(15px) rotate(45deg);
}

.hamburger.open span:nth-of-type(2){
    opacity:0;
}

.hamburger.open span:nth-of-type(3){
    transform: translateY(-5px) translateX(15px) rotate(-45deg);
}

.mv {
    background-image: url(img/sp_mv.jpg);
    height: 460px;
}

.mv__area__title {
    font-size: 80px;
}

.mv__area__body {
    font-size: 20px;
}

.wrapper {
    padding:  5vh 5vw;
}

.heading-primary {
    font-size: 40px;
    margin-bottom: 20px;
}

.news {
    display: block;
}

.news__list__item {
    display: block;
}

.service__list {
    display: block;
}

.service__list__item {
    margin-bottom: 20px;
}

.service__header::before{
    top: -20px;
    right: -30px;
    font-size: 70px;
}

.footer {
    height:119px;
}

.container {
    padding-top: 40px;
    padding-left:20px;
}

.footer-copy {
    font-size: 10px;
}

/* message */
.submv {
    background-image: url(img/sp_sub-header.jpg);
}

.message__header {
    font-size: 24px;
}

.message__subheader {
    font-size: 15px;
    margin-bottom: 50px;
}

.message__content {
    margin-bottom: 50px;
    display: flow-root;
}

.message__office {
    width: 335px;
    height: 260px;
    object-fit: cover;
}

.inner {
    padding: 0;
}

/* company */
.td__style {
    padding: 20px 0px 20px 0px;
}

.td__title {
    padding-right: 0px;
    width: 100px;
}

}