@charset "UTF-8";

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, 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, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html{
    scroll-behavior: smooth;
}
body {
  line-height: 1;
}

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

ol, ul {
  list-style: none;
}


a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

    Base

================================*/
html {
  color: #333333;
  font-size: 16px;
}

@media screen and (max-width: 320px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'Helvetica Neue',Arial,'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','ヒラギノ角ゴシック','Hiragino Sans',YuGothic,'Yu Gothic','メイリオ',Meiryo,sans-serif;
}

p {
  line-height: 1.6;
}

a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.inner {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}
.section_inner{
    max-width: 1030px;
    width: 100%;
    margin: auto;
}
.top_inner {
  max-width: 1400px;
  margin: auto;
}
.content{
    display: flex;
}
.leftbox{
    max-width: 250px;
    width: 100%;
    padding: 22px;
    display: block;
}
.sidemenu{
    margin: 40px 0;
}
.rightbox{
    margin: 60px 10px 0 0;
    width: 100%;
}
.bold{
    font-weight: bold;
}
.rightbox h1{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}
.rightbox h1::after{
    content: "";
    position: absolute;
    width: 36px;
    border-bottom: 3px solid #333;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}
/**  leftbox  **/
.side_menu{
    margin: 50px 0 30px;
}
.side_menu .item_ttl{
    text-align: center;
    border: 1.5px solid #333;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 15px;
}
.side_menu .item_ttl p{
    line-height: 42px;
}
.side_menu .item_name a{
    display: inline-block;
    position: relative;
}
.side_menu .item_name a::after{
    content: '';
    position: absolute;
    width: 15px;
    height: 1.5px;
    top: 14px;
    left: 0;
    background-color: #333;
}
.side_menu .item_name a::before {
    background: #F7F7F7;
    content: '';
    width: 100%;
    height: 12px;
    position: absolute;
    left: 0;
    bottom: 5px;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .5s;
    z-index: -1;
}
.side_menu .item_name a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}
.side_menu .item_name a p{
    padding-left: 20px;
    line-height: 32px;
}
.side_guide > p{
    color: #707070;
    font-weight: bold;
    margin-bottom: 10px;
}
.side_guide span img{
    width: 24px;
    margin-right: 5px;
}
.side_guide li{
    margin: 5px 0;
}
.side_guide a p{
    width: 100%;
    background-color: #707070;
    border-radius: 2px;
    line-height: 38px;
    padding-left: 20px;
    color: #fff;
    font-weight: bold;
}
/**  top  **/
/*------トップ画像のスライド ここから------*/
.slider {
    margin: auto;
    background-color: white;
    position: relative;
}
.slider img {
    width: 100%;
    animation-name: slider;
    -webkit-animation-name: slider;
    animation-duration: 30s;
    -webkit-animation-duration: 30s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    opacity: 0;
}
.slider img:nth-of-type(1){
    display: block;
    margin: 0 auto;
}
.slider img:not(:first-child){
    position: absolute;
    top: 0;
}
.slider img:nth-of-type(2){
    animation-delay:5s;
    -webkit-animation-delay:5s;
}
.slider img:nth-of-type(3){
    animation-delay:10s;
    -webkit-animation-delay:10s;
}
.slider img:nth-of-type(4){
    animation-delay:15s;
    -webkit-animation-delay:15s;
}
.slider img:nth-of-type(5){
    animation-delay:20s;
    -webkit-animation-delay:20s;
}
.slider img:nth-of-type(6){
    animation-delay:25s;
    -webkit-animation-delay:25s;
}
@keyframes slider {
    0% {
        opacity: 0;
    }
    12.5% {
        opacity: 1;
    }

    37.5% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
@-webkit-keyframes slider {
    0% {
        opacity: 0;
    }
    12.5% {
        opacity: 1;
    }

    37.5% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
/*------トップ画像のスライド ここまで------*/
.section{
    margin: 50px 0;
}
.section h2{
    font-size: 18px;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.category_search{
    display: table;
    border-collapse: separate;
    border-spacing: 20px 0;
    margin:20px -20px 20px;
}
.category_search > div{
    display: table-cell;
}
.category_search h3{
    font-size: 18px;
    position: relative;
    margin-left: 21px;
    margin-bottom: 15px;
}
.category_search h3::before{
    content: "";
    position: absolute;
    background-color: #333;
    width: 16px;
    height: 16px;
    left: -21px;
    top: 1px;
}
.category_search li{
    margin: 5px 0;
}
.category_search li p{
    width: 195px;
    background-color: #F4F4F4;
    border: 1.5px solid #333;
    border-radius: 3px;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
}
.use_search{
    margin: 20px 0;
}
.use_search li{
    display: inline-block;
    width: 19.5%;
    margin: auto;
    border: 2px solid #333;
    border-radius: 5px;
    padding: 20px 0 30px;
    text-align: center;
}
.use_search li img{
    width: 105px;
    height: auto;
}
.use_search li h3{
    padding-top: 5px;
}
.top_service div:nth-of-type(2){
    display: flex;
    margin-top: 8px;
}
.top_service div:nth-of-type(2) img{
    width: 49.5%;
}
.top_service div:nth-of-type(2) img:nth-of-type(1){
    margin-right: 1%;
}
.feature ul li > div{
    display: flex;
    width: 100%;
}
.feature ul li > div:first-child{
    margin-bottom: 10px;
}
.feature ul li > div > div{
    display: flex;
    width: 100%;
}
.feature ul li > div > div img{
    width: 120px;
    height: 120px;
    margin-right: 5px;
}
.feature ul li > div > div:first-child{
    margin-right: 10px;
}
.feature ul li h3{
    margin-bottom: 5px;
}
.top_news{
    position: relative;
}
.top_news a{
    position: absolute;
    top: 0;
    right: 0;
}
.top_news a p{
    color: #707070;
    position: relative;
    padding-right: 16px;
}
.top_news a p span{
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1.5px solid;
    border-color: #707070 #707070 transparent transparent;
    transform: rotate(45deg);
    top: 8px;
    right: 2px;
}
/**  footer  **/
.footer{
    background-color: #F9F9F9;
    padding: 60px 0 20px 0;
    margin-top: 30px;
}
.footer .inner{
    min-width: 890px;
    width: 90%;
    margin: 0 auto;
}
.footer_table{
    border-bottom: 1.5px dashed #333;
    padding: 0 15px 20px 15px;
    display: table;
    width: 100%;
}
.footer_table div{
    display: table-cell;
    width: 25%;
}
.footer_table div ul:not(:last-child){
    margin-bottom: 20px;
}
.footer_table .bold{
    font-size: 18px;
    margin-bottom: 8px;
}
.footer_table a{
    display: inline-block;
}
.footer_table a::before {
    background: #333;
    content: '';
    width: 100%;
    height: 12px;
    position: absolute;
    left: 0;
    bottom: 5px;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .5s;
    z-index: 999;
}
.footer_table a p{
    margin-bottom: 5px;
}
.footer_table a p span,
.footer table span{
    position: relative;
    display: inline-block;
    padding-left: 12px;
}
.footer_table a p span:before,
.footer table span:before{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #333;
    position: absolute;
    top: -10px;
    left: 0;
    bottom: 0;
    margin: auto;
}
.footer table{
    margin: 20px 0 30px;
    width: 100%;
}
.footer table th,
.footer table td{
    vertical-align: middle;
}
.footer table th{
    text-align: left;
}
.footer table img{
    height: 48px;
    width: auto;
}
.footer table td{
    margin: 0 0 0 auto;
    float: right;
}
.footer table a{
    display: inline-block;
    margin: 0 0 0 40px;
}
.footer table a p{
    line-height: 48px;
}
.copyright{
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}
@media screen and (min-width: 1061px){
    .header{
        display: none;
    }
}
@media screen and (max-width: 1060px){
    .header{
        display: block;
        position: relative;
    }
    .nav_logo{
        position: absolute;
        top: 16px;
        left: 10px;
        width: 120px;
        z-index: 3;
    }
    .menu-btn {
        position: fixed;
        top: 10px;
        right: 10px;
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 90;
        background-color: #333;
        border-radius: 50%;
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #ffffff;
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 8px;
    }
    .menu-btn span:after {
        top: 8px;
    }
    #menu-btn-check:checked ~ .menu-btn span {
        background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    }
    #menu-btn-check:checked ~ .menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    #menu-btn-check:checked ~ .menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    #menu-btn-check {
        display: none;
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 80;
        background-color: #333;
    }
    .menu-content ul {
        padding: 5px 10px 18px ;
    }
    .menu-content ul li {
        list-style: none;
    }
    .menu-content ul .item_ttl p{
        color:#ffffff;
        font-size: 20px;
        font-weight: bold;
        border-bottom: solid 2px #ffffff;
    }
    .menu-content ul .item_name{
        display: inline-block;
        width: 48%;
    }
    .menu-content ul .item_name a {
        display: block;
        text-align: center;
        width: 100%;
        font-size: 15px;
        box-sizing: border-box;
        color:#ffffff;
        text-decoration: none;
        padding: 10px 0;
        position: relative;
        border: solid 1px #ffffff;
        border-radius: 5px;
        text-align: center;
        margin: 5px auto 0;
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;/*leftの値を変更してメニューを画面外へ*/
        z-index: 80;
        background-color: #333;
        transition: all 0.5s;/*アニメーション設定*/
    }
    #menu-btn-check:checked ~ .menu-content {
        left: 0;/*メニューを画面内へ*/
    }
}
.hamburger-menu .menu-content .accordion:nth-of-type(1){
    padding-top: 80px;
}
.accordion{
    margin-inline: 0;
    border-bottom:1px solid #a9a9a9;
    margin-bottom: 7px;
}
  
.accordion_title {
    position: relative;
    border: none;
    display: block;
    list-style: none;
    width: 100%;
    cursor: pointer;
    padding: 10px 10px;
    line-height: 1.6em;
    color: #fff;
}
.accordion_title p{
    font-size: 16px;
}
summary.accordion_title::-webkit-details-marker {
    display:none;
}
.accordion_title:after {
    content: "＋";
    position: absolute;
    top: calc(50% - 0.5em);
    right: 20px;
    line-height: 1;
    padding: 0;
    pointer-events: none;
}
.accordion::details-content {
    opacity: 0;
    block-size: 0;
    transition: .3s;
    transition-property: display, opacity, block-size, padding;
    transition-behavior: allow-discrete;
    line-height: 1.6em;
}
.accordion .accordion_content {
    padding: 0 2em 0 3em;
}
.accordion .accordion_content > *:first-of-type {
    margin-top: 0;
}
.accordion .accordion_content > *:last-of-type {
    margin-bottom: 0;
}
.accordion[open]::details-content {
    opacity: 1;
    block-size: auto;
    block-size: calc-size(auto, size);
}
.accordion[open] .accordion_content {
    padding: 0 2em 1.4em 3em;
}
.accordion[open] .accordion_title:after {
    content: "−";
}
.menu_guide li{
    display: inline-block;
    width: 49%;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 10px 0;
    margin: 0 0 5px;
}

@media screen and (max-width: 1060px){
    .leftbox{
        display: none;
    }
    .section_inner{
        width: 90%;
        margin: 40px auto;
    }
    .item_content{
        width: 90%;
        margin: 40px auto;
    }
    .connection{
        width: 90%;
    }
    .category_search{
        display: block;
        margin: 0;
    }
    .category_search > div{
        display: inline-block;
        width: 49%;
        margin-bottom: 20px;
        vertical-align: top;
    }
    .category_search > div li{
        width: 90%;
    }
    .category_search li p{
        width: auto;
    }
    .use_search li{
        width: 24.6%;
        margin-bottom: 5px;
    }
    .rightbox{
        margin: 0;
    }
    .rightbox h1{
        margin-top: 120px;
    }
    .footer{
        padding: 20px 0;
    }
    .footer_table{
        display: none;
    }
    .top_news .news_content{
        width: 100%;
    }
    .news_content{
        width: 90%;
        margin: 0 auto 60px;
    }
}
@media screen and (max-width: 960px){
    .use_search li{
        width: 32.9%;
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 900px){
    .footer .inner{
        min-width: 0;
    }
}
@media screen and (max-width: 794px){
    .slider img{
        height: 360px;
        object-fit: cover;
    }
    .use_search li{
        width: 49%;
        margin-bottom: 5px;
    }
    .feature ul li > div{
        display: block;
    }
    .feature ul li > div > div{
        margin-bottom: 15px;
    }
    .footer table th{
        display: block;
        text-align: center;
        margin-bottom: 40px;
    }
    .footer table td{
        display: inline-block;
        float: none;
    }
    .footer table a p{
        line-height: 1.8;
    }
}
@media screen and (max-width: 460px){
    .category_search > div{
        display: block;
        width: 100%;
    }
    .category_search > div li{
        width: 100%;
    }
    .top_service{
        display: none;
    }
    .footer table td{
        display: block;
    }
}

/**  item  **/
.item_content{
    margin-bottom: 40px;
}
.item_content h2{
    font-size: 20px;
    position: relative;
    display: inline-block;
    left: 30px;
    margin-bottom: 40px;
}
.item_content h2::before{
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #333;
    left: -30px;
}
.item_content > div{
    display: table;
}
.item_text ,
.item_img{
    display: table-cell;
    width: 49.5%;
    vertical-align: top;
}
.item_text{
    padding-right: 15px;
}
.item_text h3{
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 7px;
}
.item_text table{
    border-collapse: separate;
    border-spacing: 0 5px;
}
.item_text th{
    width: 145px;
    background-color: #E1E1E1;
    border-radius: 3px;
    border-spacing: 0 10px;
    line-height: 36px;
    border-collapse: separate;
}
.item_text td{
    padding-left: 15px;
    border-spacing: 0 10px;
    border-collapse: separate;
}
.item_text ul li{
    display: inline-block;
    width: 49%;
    border: 1.5px solid #333;
    border-radius: 3px;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 5px;
}
.item_img{
    width: 100%;
    margin-left: 1%;
}
.item_img .section{
    width: 100%;
}
#mainImg{
    margin-bottom: 5px;
    width: 100%;
}
#mainImg img{
    object-fit: cover;
    width: 100%;
    height: 380px;
}
#subImg{
    display: flex;
    flex-wrap: wrap;
}
#subImg li{
    width: 25%;
    border: 2px solid #fff;
}
#subImg li.current{
    border: 2px solid #953A3A;
}
#subImg li img{
    height: 120px;
    width: 100%;
    object-fit: cover;
}

.connection{
    margin: 60px auto;
}
.connection h2{
    font-size: 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 4px;
    margin-bottom: 15px;
}
.connection ul{
    font-size: 0;
}
.connection ul li{
    display: inline-block;
    width: 19%;
}
.connection ul li:not(:nth-of-type(5)){
    margin-right: 1.25%;
}
.connection ul li h3{
    font-size: 12px;
    color: #707070;
    margin: 5px 0 5px 0;
}
.connection ul li p{
    font-size: 16px;
    text-decoration: underline;
}
.connection ul li img{
    height: 120px;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 761px){
    .sp_bn{
        display: block;
    }
    .pc_bn{
        display: none;
    }
}
@media screen and (min-width: 760px){
    .sp_bn{
        display: none;
    }
    .pc_bn{
        display: block;
    }
}
@media screen and (max-width: 840px){
    .connection ul li {
        width: 32%;
        margin-bottom: 15px;
    }
    .connection ul li:not(:nth-of-type(5)) {
        margin-right: 0;
    }
    .connection ul li:not(:nth-of-type(3)) {
        margin-right: 2%;
    }
}
/**  guide  **/
.guide_content h2{
    font-size: 20px;
    position: relative;
    left: 30px;
    margin-bottom: 40px;
    display: inline-block;
}
.guide_content h2::before{
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #333;
    left: -30px;
}
.guide_content > div > ul{
    line-height: 0;
    font-size: 0;
}
.guide_content > div > ul li{
    min-width: 180px;
    width: 24.25%;
    display: inline-block;
    text-align: center;
    border: 1.5px solid #333;
    border-radius: 3px;
    padding: 18px 0;
}
.guide_content > div > ul li:not(:nth-of-type(4n)){
    margin-right: 1%;
}
.guide_content > div > ul li p{
    font-size: 16px;
}
.guide_content h3{
    border-bottom: 2px solid #333;
    padding-bottom: 7px;
    margin-bottom: 20px;
}
.guide_item{
    padding-top: 60px;
}
@media screen and (max-width: 1060px){
    .guide_content{
        width: 90%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 840px){
    .guide_content h2{
        margin-bottom: 20px;
    }
    .guide_content > div > ul li{
        width: 49.5%;
        margin-bottom: 5px;
    }
    .guide_content > div > ul li:not(:nth-of-type(4n)){
        margin-right: 0;
    }
    .guide_content > div > ul li:not(:nth-of-type(2n)){
        margin-right: 1%;
    }
}
/**  guide_design  **/
.create_ex ul{
    line-height: 0;
    display: flex;
    align-items: stretch;
}
.create_ex ul li{
    background-color: #F7F7F7;
    width: 24.25%;
    vertical-align: top;
    padding: 25px 5px 35px;
    position: relative;
    z-index: -2;
    text-align: center;
}
.create_ex ul li:not(:nth-of-type(4n)){
    margin-right: 1%;
}
.create_ex ul li .num{
    color: #E3E3E3;
    font-size: 80px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: -1;
}
.create_ex ul li h4{
    margin-top: 10px;
    text-align: center;
    line-height: 1.7;
    font-size: 18px;
    height: 65px;
}
.create_ex ul li img{
    margin-top: 20px;
    width: 90%;
}
.app_item{
    display: table;
    border-collapse: separate;
    border-spacing: 10px 0;
    margin:0 -10px 10px;
    text-align: center;
}
.app_item > div{
    display: table-cell;
    border: 2px solid #707070;
    border-radius: 3px;
    padding: 25px 20px;
    min-width: 170px;
    margin-right: 10px;
}
.app_item > div:not(:nth-of-type(1)) .recommended{
    text-align: left;
}
.app_item > div > img{
    width: 48px;
    height: auto;
    margin: 0 auto;
    display: block;
}
.app_item > div h4{
    margin-top: 16px;
    color: #707070;
    border-bottom: 2px solid #707070;
    padding-bottom: 16px;
}
.recommended{
    margin-top: 16px;
    margin-bottom: 5px;
}
.app_name li{
    border-radius: 2px;
    display: inline-block;
    padding: 0 7px;
    background-color: #B91414;
    color: #fff;
    margin-bottom: 8px;
}
.change li{
    background-color: #707070;
    border-radius: 2px;
    display: inline-block;
    padding: 0 7px;
    color: #fff;
}
.recommended_space{
    position: relative;
    padding-left: 65px;
    color: #B91414;
    font-weight: bold;
    margin-right: 20px;
}
.recommended_space::before{
    content: "";
    position: absolute;
    width: 60px;
    height: 28px;
    left: 0;
    border-radius: 3px;
    background-color: #B91414;
}
.change_space{
    position: relative;
    padding-left: 65px;
    color: #707070;
    font-weight: bold;
}
#app .att_space{
    display: flex;
}
.change_space::before{
    content: "";
    position: absolute;
    width: 60px;
    height: 28px;
    left: 0;
    border-radius: 3px;
    background-color: #707070;
}

#attention h4 , #send h4{
    background-color: #F7F7F7;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 4px 10px;
    line-height: 1.7;
}
#attention > div , #send > div{
    margin-bottom: 45px;
}
.exam_img{
    margin: 15px 0 30px;
}
#attention h5{
    margin-bottom: 8px;
}
.exam_img ul li,
.color ul li,
.font ul li{
    display: inline-block;
    vertical-align: middle;
    margin: 20px 0;
}
.exam_img li:not(:nth-of-type(3)) img{
    height: 150px;
    width: auto;
}
.exam_img .arrow img{
    height: 40px;
    width: auto;
    margin-left: 30px;
}
.color ul li{
    vertical-align: top;
}
.color img{
    height: 180px;
    width: auto;
    margin: 0 10px;
}
.plus img{
    height: 150px;
    width: auto;
}
.color .sub_ttl{
    width: 80px;
    border: 1.5px solid #333;
    padding: 5px 0;
    margin-right: 10px;
    border-radius: 2px;
    font-weight: bold;
    text-align: center;
}
.font ul li img{
    height: 180px;
    width: auto;
}
.font .arrow img{
    height: 40px;
    width: auto;
}
#submission h4{
    background-color: #F7F7F7;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 4px 10px;
    line-height: 1.7;
}
#submission > div{
    margin-bottom: 25px;
}
#submission > div > div{
    margin-bottom: 25px;
}
@media screen and (max-width: 1110px){
    .exam_img li:not(:nth-of-type(3)) img{
        height: 115px;
    }
    .color img{
        height: 115px;
    }
    .font ul li img{
        height: 115px;
    }
}
@media screen and (max-width: 840px){
    .create_ex ul{
        display: block;
        font-size: 0;
        line-height: 0;
    }
    .create_ex ul li{
        display: inline-block;
        width: 24%;
    }
    .change li{
        margin-bottom: 8px;
    }
    .create_ex ul li{
        width: 49.5%;
        margin-bottom: 7px;
    }
    .create_ex ul li:not(:nth-of-type(4n)){
        margin-right: 0;
    }
    .create_ex ul li:not(:nth-of-type(2n)){
        margin-right: 1%;
    }
}
@media screen and (max-width: 760px){
    #app .att_space{
        display: block;
    }
    .recommended_space{
        margin-bottom: 10px;
    }
    .exam_img ul li,
    .color ul li, 
    .font ul li{
        display: block;
        margin: 0;
    }
    .exam_img ul li:nth-of-type(1) img{
        width: auto;
        height: 80px;
    }
    .exam_img .arrow{
        text-align: center;
    }
    .exam_img .arrow img{
        transform:rotate(90deg);
        height: 25px;
        margin-left: 0;
        margin-top: 20px;
    }
    .color ul{
        margin-top: 20px;
    }
    .color ul img{
        width: 100%;
        height: auto;
        margin: 20px 0;
    }
    .font ul{
        margin-top: 20px;
    }
    .font ul li img{
        width: 100%;
        height: auto;
        margin: 0;
    }
    .font .arrow{
        text-align: center;
    }
    .font .arrow img{
        transform:rotate(90deg);
        height: 25px;
        margin-left: 0;
        margin-top: 0;
    }
}
@media screen and (max-width: 610px){
    .app_item{
        display: block;
        width: 100%;
        margin: 0 auto;
    }
    .app_item > div{
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }
}
/**  guide_option  **/

.lami_merit{
    display: flex;
    margin: 20px 0 35px;
}
.lami_merit img{
    max-width: 440px;
    width: 100%;
    height: auto;
    margin-right: 15px;
}
.lami_merit > div > h4{
    margin-bottom: 5px;
}
.lami_merit > div > p{
    margin-bottom: 15px;
}
.option_img{
    margin: 30px 0;
}
.option_img ul{
    font-size: 0;
}
.option_img ul li{
    display: inline-block;
    width: 33%;
    position: relative;
}
.option_img ul li:not(:nth-of-type(3)){
    margin-right: 0.5%;
}
.option_img ul li img{
    background-color: #D5D5D5;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.option_img ul li p{
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    left: 20px;
}
#cut img{
    width: 80%;
    margin: 30px 0;
}
.corner_cut{
    display: flex;
    margin-top: 15px;
}
.corner_cut > p{
    color: #707070;
    border: 2px solid #707070;
    border-radius: 3px;
    width: 150px;
    height: 240px;
    font-weight: bold;
    text-align: center;
    line-height: 240px;
    margin-right: 20px;
}
.corner_cut .bold{
    margin: 15px 0 10px;
}
.corner_cut img{
    height: 160px;
    width: 100%;
    object-fit: contain;
}
/**  guide_order  **/
.order_item{
    border: 2px solid #333;
    border-radius: 3px;
    padding: 25px 55px;
    width: 96%;
    display: table;
    min-height: 160px;
    position: relative;
    margin-bottom: 36px;
}
.order_item:not(:nth-child(5)) ::after{
    position: absolute;
    content: "";
    background-color: #333;
    height: 20px;
    width: 60px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    bottom: -20px;
    right: 50%;
}
.order_item:nth-of-type(2n){
    background-color: #F2F2F2;
}
.order_item:last-child {
}
.order_item > div{
    display: table-cell;
}
.order_item > div:first-child{
    padding-right: 50px;
    border-right: 2px solid #333;
    text-align: center;
    font-weight: bold;
    vertical-align: middle;
}
.order_item > div:first-child p{
    line-height: 1.1;
}
.order_item > div:last-child{
    padding-left: 50px;
}
.order_item h3{
    border-bottom: none;
    margin-bottom: 5px;
}
.order_item .num{
    font-size: 30px;
}
/**  guide_payment  **/

.payment_image ul{
    display: flex;
}
.payment_image ul li{
    height: 48px;
    width: auto;
    margin-right: 8px;
}
.payment_image ul li img{
    height: 100%;
}
@media screen and (max-width: 720px){
    .payment_image ul li{
        height: 25px;
        margin-right: 4px;
    }
}
/**  guide_delivery  **/
.guide_item .item_att{
    background-color: #FFE8E8;
    padding: 1px 5px;
    display: inline-block;
    margin-top: 10px;
}
.schedule_guideline{
    background-color: #F7F7F7;
    padding: 20px 20px 20px 20px;
    margin: 10px 0;
}
.schedule_guideline ul li{
    margin-bottom: 20px;
}
.schedule_guideline ul li:last-child{
    margin-bottom: 0;
}
.schedule_guideline .ttl_frame{
    font-weight: bold;
    border: 1.5px solid #333;
    border-radius: 2px;
    padding: 4px 20px;
    display: inline-block;
    margin-bottom: 5px;
}
/**  guide_faq  **/
.guide_item ul li > div{
    display: flex;
    padding: 4px 10px;
}
.payment_image ul li{
    margin-bottom: 25px;
}
.qes_ttl{
    background-color: #F7F7F7;
    font-weight: bold;
    margin-bottom: 5px;
}
.qaa_icon{
    font-weight: bold;
    margin-right: 10px;
}

/**  company  **/
.table{
    display: table;
    width: 100%;
}
.table .row > div{
    display: table-cell;
}
.table .row > div:nth-of-type(2){
    width: 88%;
}
.table .row{
    border-bottom: 1.5px solid #333;
    padding: 25px 0;
}
.table_ttl{
    position: relative;
    width: 140px;
}
.table_ttl::before{
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background-color: #333;
    top: 5px;
}
.table_ttl p{
    font-weight: bold;
    padding-left: 25px;
}
.table .row .sub_ttl{
    line-height: 1.5;
    border: 1.5px solid #333;
    padding: 0 10px;
    display: inline-block;
    margin-bottom: 3px;
}
.table .row iframe{
    margin-top: 10px;
}
.table .row > div > div{
    margin-bottom: 40px;
}
.table .row > div > div a{
    text-decoration: underline;
}



/**  news  **/
.news_content li{
    border-bottom: 1px solid #E0E0E0;
    padding: 15px 0;
}
.news_content li .data_news{
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 7px;
}
.news_content li h2{
    margin-bottom: 7px;
}
.news_content li span{
    padding: 3px 8px;
    border-radius: 2px;
    margin-left: 5px;
    font-size: 12px;
    position: relative;
    top: -1px;
}
.news_content li .item_category{
    background-color: #EAD3D3;
    border: 2px solid #C30000;
    color: #C30000;
}
.news_content li .campaign_category{
    background-color: #D5EDDF;
    border: 2px solid #00C352;
    color: #00C352;
}
.news_content li .news_category{
    background-color: #D6D3ED;
    border: 2px solid #1700C3;
    color: #1700C3;
}
@media screen and (max-width: 1060px){
    .order_item{
        width: 100%;
        padding: 20px;
    }
    .order_item > div:first-child{
        padding-right: 20px;
    }
    .order_item > div:last-child{
        padding-left: 20px;
    }
    .order_item h3{
        line-height: 1.6;;
    }
}
@media screen and (max-width: 960px){
    .item_content > div{
        display: flex;
        flex-direction: column-reverse;
    }
    .item_text, .item_img{
        display: block;
    }
    .item_img{
        margin: 0 0 40px 0;
    }
    .item_text{
        width: 100%;
    }
}
@media screen and (max-width: 840px){
    .lami_merit{
        display: block;
    }
    .lami_merit img{
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 690px){
    .table_ttl{
        margin-bottom: 15px;
    }
    .table .row > div {
        display: block;
    }
    .table .row > div:nth-of-type(2){
        width: 100%;
    }
}
@media screen and (max-width: 600px){
    #slideshow > div{
        height: 320px;
    }
}
@media screen and (max-width: 470px){
    #slideshow > div{
        height: 300px;
    }
}
@media screen and (max-width: 415px){
    .guide_content > div > ul li{
        width: 100%;
        display: block;
    }
    #slideshow > div{
        height: 270px;
    }
}



















