/*
Theme Name: Future
Theme URI: http://future-inc.jp/
Author: 株式会社フューチャー
Author URI: http://future-inc.jp/
Description: 株式会社フューチャーは、ビジネスの明日を切り拓くコンサルティングを提供。私たちはBtoB企業のパートナーとして、革新的な戦略と実行可能なソリューションで、クライアントの持続可能な成長を支援。
Tags: 貿易コンサルティング, フューチャー
Version: 2024.5
Requires at least: 5.2
Tested up to: 6.5
Requires PHP: 7.0
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: Future

BlankSlate WordPress Theme 2011-2024
BlankSlate is distributed under the terms of the GNU GPL
*/

/* reset.css */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
    font-family: 'Noto Sans JP', sans-serif;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-width: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* common */
html {scroll-behavior: smooth;}
:root {
    --future-primary: #0090A8;
}
a {transition: 0.3s ease-in-out;}
p {
    font-size: 1.1rem;
    color: #313131;
    line-height: 2.53;
    letter-spacing: 2px;
}

/* common Btn */
a.primaryBtn {
    background: var(--future-primary);
    color: #fff;
    font-weight: 500;
    padding: 12px 35px 15px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    display: flex;
    justify-content: center;
}
a.primaryBtn:after {
    content: "\E5e1";
    font-family: 'Material Icons';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 48%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: 0.3s ease-in-out;
}
a.primaryBtn:hover {
    opacity: 0.8;
}
a.primaryBtn:hover:after {
    right: 8px;
}
a.secondaryBtn {
    background: #FFF;
    color: var(--future-primary);
    font-weight: 500;
    padding: 16px 35px 19px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.12);
    min-width: 240px;
    display: flex;
    justify-content: center;
    width: fit-content;
}
a.secondaryBtn:after {
    content: "\E5e1";
    font-family: 'Material Icons';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 48%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: 0.3s ease-in-out;
}
a.secondaryBtn:hover {
    opacity: 0.8;
}
a.secondaryBtn:hover:after {
    right: 8px;
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}

/* header */
header#header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
	 transition: 0.3s ease-in-out;
}

header#header:after {
    backdrop-filter: blur(3px);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    opacity: 0;
	 transition: 0.5s ease-in-out;
}
header#header.resize:after {
    opacity: 0.9;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}
.header__inner {
    width: 100%;
    padding: 8px 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	 position: relative;
    z-index: 12;
}
.header__inner--right {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    align-items: center;
}
ul.header__inner--rightLink {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}
ul.header__inner--rightLink li {
    position: relative;
}
ul.header__inner--rightLink li a {
    padding: 12px 25px;
    letter-spacing: 1.5px;
    color: #313131;
}
ul.header__inner--rightLink li a:hover {
    color: var(--future-primary);
}
ul.header__inner--rightLink li:first-child::after {
    content: "";
    width: 1px;
    height: 20px;
    background: #707070;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
}
.header__inner a.header__inner--logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__inner a.header__inner--logo:hover {
    opacity: 0.6;
}

/* mv */
section#mv {
    display: block;
    height: 100%;
    max-height: 800px;
    padding-top: 70px;
    position: relative;
}
section#mv:before {
    content: "";
    width: 500px;
    height: 500px;
    background: url(./asset/img/mv_obje.svg) no-repeat;
    position: absolute;
    left: 0;
    bottom: 50px;
    background-size: contain;
}
section#mv:after {
    content: "";
    width: 400px;
    height: 50px;
    background: url(./asset/img/mv_top.svg) no-repeat;
    top: 70px;
    right: 0;
    position: absolute;
    background-size: cover;
}
.mv__inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    align-items: center;
    position: relative;
    min-height: 700px;
	 animation: fadeIn 0.7s ease 0s 1 normal;
}
.mv__inner--left {
    width: 50%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.mv__inner--left h1 {
    font-weight: 600;
    color: var(--future-primary);
    font-size: 3.8rem;
    letter-spacing: 7px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mv__inner--left h1 span {
    font-size: 1.6rem;
    letter-spacing: 2px;
    font-style: italic;
}
.mv__inner--left p {
    font-size: 1.1rem;
    color: #313131;
    line-height: 2.53;
}
.mv__inner--right img {
    transform: scale(1.2) translateX(30px);
}

/* about */
section#about {
    background: var(--future-primary);
    position: relative;
}
section#about:after {
    content: "";
    width: 440px;
    height: 460px;
    background: url(./asset/img/about_bg.svg) no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    background-size: cover;
	 pointer-events: none;
}
.about__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
}
.about__inner--left {
    width: 43%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.heading {
    position: relative;
    padding-bottom: 30px;
}
.heading:after {
    content: "";
    width: 80px;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 5px;
}
.heading h2 {
    display: flex;
    flex-direction: column;
    color: #fff;
    gap: 12px;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 4px;
    position: relative;
}
.heading h2 span {
    opacity: 0.6;
    font-style: italic;
    font-size: 1.5rem;
    letter-spacing: 1.4px;
    text-transform: capitalize;
}
.about__inner--left p {
    color: #fff;
}

/* service */
.service__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.service__inner .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}
.service__inner .heading h2 {
    color: var(--future-primary);
    position: relative;
}
.service__inner .heading h2:after {
    content: "";
    width: 80px;
    height: 1px;
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--future-primary);
}
ul.service__inner--list {
    display: flex;
    justify-content: center;
    gap: 60px 120px;
    flex-wrap: wrap;
}
ul.service__inner--list li {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.service__inner--listImg {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service__inner--listImg:after {
    content: "";
    background: #E6FBFF;
    position: absolute;
    border-radius: 9999px;
    width: 300px;
    height: 300px;
}
.service__inner--listImg img {
    position: relative;
    z-index: 1;
}
ul.service__inner--list li h3 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--future-primary);
}
ul.service__inner--list li p {
    font-size: 1rem;
    line-height: 2;
}

/* newws */
section#news {
    background: #E6FBFF;
    position: relative;
    padding: 120px 0;
}
.news__inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 5px;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.news__inner .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}
.news__inner .heading h2 {
    color: var(--future-primary);
    position: relative;
}
.news__inner .heading h2:after {
    content: "";
    width: 80px;
    height: 1px;
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--future-primary);
}
ul.news__inner--list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
ul.news__inner--list li a {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    border-top: solid 1px #ddd;
    gap: 10px;
    position: relative;
}
ul.news__inner--list li:last-child a {
    border-bottom: solid 1px #ddd;
}
ul.news__inner--list li a:hover {
    background: rgb(249,249,249);
    background: radial-gradient(circle, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 100%);
}
span.date {
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-style: italic;
    font-weight: 600;
    color: var(--future-primary);
}
ul.news__inner--list li a h3 {
    font-size: 1.1rem;
    letter-spacing: 1.1px;
    color: #080004;
}
ul.news__inner--list li a:after {
    content: "\E5e1";
    font-family: 'Material Icons';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: 0.3s ease-in-out;
    opacity: 0.4;
}
ul.news__inner--list li a:hover:after {
    right: 15px;
    opacity: 0.7;
}
.news__inner a.secondaryBtn {
    margin: 0 auto;
}

/* footer */
footer#footer {
    background: linear-gradient(90deg, #0090A8 0%, #00BBDA 100%);
}
.footer__inner {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 70px;
    flex-direction: column;
}
.footer__inner--top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 70px 50px;
}
.footer__inner--topLeft {
    display: flex;
    flex-direction: column;
    width: 40%;
    gap: 30px;
}
.footer__inner--topLeft a {
    display: flex;
    flex-direction: column;
    position: relative;
}
.footer__inner--topLeft a:after {
    content: "";
    width: 80px;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: -13px;
}
.footer__inner--topLeft a:hover {
    opacity: 0.8;
}
.footer__inner--topLeft a img {
    max-width: 260px;
}
.footer__inner--topLeft a p {
    font-size: 0.9rem;
    color: #fff;
}
p.footer__address {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.8;
}

.footer__inner--topRight {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}

ul.footer__inner--topRightList {
    display: flex;
    justify-content: flex-end;
    gap: 35px;
    margin-right: -15px;
}
ul.footer__inner--topRightList li {
    position: relative;
}
ul.footer__inner--topRightList li a {
    color: #fff;
    letter-spacing: 1.6px;
    position: relative;
    padding: 4px 15px;
}
ul.footer__inner--topRightList li a:hover {
    opacity: 0.6;
}
ul.footer__inner--topRightList li:after {
    content: "";
    width: 1px;
    height: 20px;
    background: #fff;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
}
ul.footer__inner--topRightList li:last-child:after {
    content: none;
}
.footer__inner--bottom {
    width: 100%;
}
.footer__inner--bottom p {
    text-align: center;
    color: rgb(255, 255, 255, 0.8);
    font-size: 0.8rem;
    padding: 8px 0;
    border-top: solid 1px rgb(255, 255, 255, 0.4);
    font-weight: 300;
}

/* cat */
section#catHead {
    margin-top: 70px;
    background: linear-gradient(90deg, #0090A8 0%, #00BBDA 100%);
    position: relative;
}
section#catHead.aboutCat:before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(./asset/img/about_head.svg) no-repeat;
    position: absolute;
    background-size: cover;
    background-position: center;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
}
.catHead__inner {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 0;
    position: relative;
}
.greeting__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
section#greeting .heading:after {
    content: "";
    width: 80px;
    height: 1px;
    background: var(--future-primary);
    position: absolute;
    bottom: 5px;
}
.heading h3 {
    display: flex;
    flex-direction: column;
    color: var(--future-primary);
    gap: 12px;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 4px;
    position: relative;
}
.heading h3 span {
    opacity: 0.6;
    font-style: italic;
    font-size: 1.5rem;
    letter-spacing: 1.4px;
	 text-transform: capitalize;
}
.greeting__inner--text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
p.greeting__inner--textBottom {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 1.4rem;
    font-weight: 600;
}
p.greeting__inner--textBottom span {
    font-size: 0.8rem;
    line-height: 2;
}

/* profile */
.profile__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0 120px;
    gap: 55px;
}

section#profile .heading:after {
    content: "";
    width: 80px;
    height: 1px;
    background: var(--future-primary);
    position: absolute;
    bottom: 5px;
}
.profile__inner--bottom {
    display: flex;
    flex-direction: column;
    gap: 75px;
}
dl.profile__inner--bottomList {
    background: #f9f9f9;
    padding: 60px 80px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.profile__inner--bottomLine {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
	 position: relative;
}
.profile__inner--bottomLine dt {
    width: 140px;
    color: #313131;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
}
.profile__inner--bottomLine dt:after {
    content: "";
    width: 1px;
    height: 26px;
    background: #999999;
    position: absolute;
    top: 0;
    right: 0px;
}
ul.lineList {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.profile__inner--bottomMap iframe {
    width: 100%;
}

/* breadcrumb */
nav#breadcrumb {
    background: var(--future-primary);
}
nav#breadcrumb ul {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}
nav#breadcrumb ul li {
    color: rgb(255, 255, 255, .6);
    position: relative;
    font-size: 0.9rem;
    padding: 10px 0;
}
nav#breadcrumb ul li:after {
    content: "▶︎";
    font-size: 0.7rem;
    position: absolute;
    top: 52%;
    right: -26px;
    transform: translateY(-50%);
    opacity: 0.5;
}
nav#breadcrumb ul li:last-child::after {
    content: none;
}
nav#breadcrumb ul li a {
    color: rgb(255, 255, 255, 0.8);
}
nav#breadcrumb ul li a:hover {
    color: rgb(255, 255, 255, 1);
}

/* contact */
section#catHead.contactCat:before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(./asset/img/contact_head.svg) no-repeat;
    position: absolute;
    background-size: cover;
    background-position: center;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
}
.contact__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
}
.contact__inner--left {
    width: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
ul.contact__inner--leftList {
    background: #f9f9f9;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 5px;
}
ul.contact__inner--leftList li {
    padding-left: 30px;
    position: relative;
}
ul.contact__inner--leftList li:before {
    content: "\E876";
    font-family: 'Material Icons';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1.2rem;
    transition: 0.3s ease-in-out;
    color: var(--future-primary);
}
.contact__inner--right {
    width: calc(100% - 450px - 70px);
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 1px 22px 0px rgba(21, 0, 53, 0.10);
    padding: 35px 45px;
}

/* contact form */
.contact__inner--right input, .contact__inner--right textarea {
    background: #f9f9f9;
    border-radius: 5px;
    width: 100%;
    border: solid 1px #ddd;
    padding-left: 20px;
    padding-right: 20px;
}
.contact__inner--right input.wpcf7-form-control.wpcf7-submit {
    background: var(--future-primary);
    width: 220px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    height: 54px;
    color: #fff;
    font-weight: 600;
}

/* 404 */
section#nopage {
    margin-top: 70px;
}
.nopage__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 0;
    gap: 50px;
}
.nopage__inner--bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.nopage__inner--bottom a.primaryBtn {
    width: 240px;
    margin: 0 auto;
    padding: 16px 35px 19px;
    margin-top: 20px;
}

/* privacy */
section#privacy {
    background: #f9f9f9;
    padding: 90px 0 90px;
}
.privacy__inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 35px 55px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: #fff;
    border-radius: 5px;
}
.privacy__inner ul {
    list-style: disc;
    display: flex;
    flex-direction: column;
    padding-left: 26px;
    gap: 9px;
}

/* news */
.newsList__inner {
    padding: 90px 0 120px;
}

/* news one */

section#newsHead {
    height: 308px;
    margin-top: 70px;
    background: linear-gradient(90deg, #0090A8 0%, #00BBDA 100%);
    position: relative;
}
section#newsHead:before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(./asset/img/contact_head.svg) no-repeat;
    position: absolute;
    background-size: cover;
    background-position: center;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
}
section#newsText {
    margin-top: -140px;
}
.newsText__inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid #DDD;
    background: #FFF;
    padding: 45px 55px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}
.newsText__inner--top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.newsText__inner--top:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: -30px;
}
.newsText__inner--top span {
    font-size: 1.3rem;
}
.newsText__inner--top h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 4px;
    position: relative;
    color: var(--future-primary);
}
.newsText__inner--bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* navigation */
.navigation {
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
}
.nav-link-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-archive-link a {
    border-radius: 5px;
    padding: 12px 25px 15px;
    letter-spacing: 0.8px;
    padding: 16px 35px 19px;
}
.prev-post, .next-post {
    display: block;
}
.prev-post {
    display: flex;
    justify-content: flex-start;
    width: 180px;
}
.next-post {
    display: flex;
    justify-content: flex-end;
    width: 180px;
}
a.prevNews, a.nextNews {
    padding: 12px 25px 15px;
    color: #707070;
    letter-spacing: 0.8px;
    position: relative;
}
a.prevNews:hover, a.nextNews:hover {
    opacity: 0.7;
}
a.prevNews:before {
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 0.9rem;
    opacity: 0.7;
    content: "\E5e0";
    font-family: 'Material Icons';
}
a.nextNews:after {
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 18px;
    font-size: 0.9rem;
    opacity: 0.7;
    content: "\E5e1";
    font-family: 'Material Icons';
}

@media screen and (max-width: 1200px) {
/* （ここに1200px以下スタイルを記述） */
	/* toppage */
	.mv__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.mv__inner--left {
    width: 69%;
    margin-right: -5%;
    z-index: 1;
	}
	.mv__inner--right img {
    transform: scale(1.1);
	}
	.about__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.footer__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* about */
	.catHead__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.greeting__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.profile__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	nav#breadcrumb ul {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* contact */
	.contact__inner {
    padding-left: 4%;
    padding-right: 4%;
    gap: 30px;
	}
}

@media screen and (max-width: 1000px) {
/* （ここに1000px以下スタイルを記述） */
	section#mv {
    max-height: none;
	}
	.mv__inner {
    flex-direction: column-reverse;
    padding-bottom: 60px;
	}
	.mv__inner--left {
    width: 100%;
    margin: 0;
    max-width: none;
	}
	.mv__inner--left h1 {
    align-items: center;
	}
	.mv__inner--right img {
    transform: none;
	}
	.about__inner {
    flex-direction: column-reverse;
	}
	.about__inner--left {
    width: 100%;
	}
	/* heading */
	.heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	}
	a.secondaryBtn {
    margin: 0 auto;
	}
	ul.service__inner--list {
    gap: 40px;
	}
	section#news {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* contact */
	.contact__inner {
    flex-direction: column;
	}
	.contact__inner--left, .contact__inner--right {
    width: 100%;
	}
	.nopage__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
}

@media screen and (max-width: 900px) {
/* （ここに900px以下スタイルを記述） */
	section#newsText {
    padding-left: 4%;
    padding-right: 4%;
	}
	section#privacy {
    padding-left: 4%;
    padding-right: 4%;
	}
}

@media screen and (max-width: 767px) {
/* （ここにモバイル用スタイルを記述） */
	.header__inner--right {
    display: none;
	}
	.header__inner {
    justify-content: center;
	}
	section#mv:after {
    width: 250px;
    top: 60px;
	}
	.mv__inner--right {
    position: relative;
    z-index: 2;
	}
	section#mv:before {
    width: 100%;
	}
	.mv__inner--left h1 {
    font-size: 2.6rem;
    align-items: flex-start;
	}
	.service__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.news__inner {
    padding: 30px 20px;
	}
	.footer__inner--topLeft {
    width: 100%;
    align-items: center;
    text-align: center;
	}
	.footer__inner--topLeft a:after {
    left: 50%;
    transform: translateX(-50%);
	}
	.footer__inner--topRight {
    width: 100%;
	}
	ul.footer__inner--topRightList {
    margin: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
	}
	ul.footer__inner--topRightList li:after {
    content: none;
	}
	/* about */
	dl.profile__inner--bottomList {
    padding: 25px 35px;
	}
	.profile__inner--bottomLine dt:after {
    content: none;
	}
	.profile__inner--bottomLine {
    flex-direction: column;
    gap: 12px;
    border-bottom: solid 1px #ddd;
    padding-bottom: 15px;
	}
	dl.profile__inner--bottomList .profile__inner--bottomLine:last-child {
    border: none;
	}
	.newsList__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.catHead__inner {
    width: 100%;
    justify-content: center;
	}
	ul.news__inner--list li a {
    padding: 25px 30px;
	}
	.newsText__inner {
    padding: 8% 6%;
	}
	/* navi */
	.navigation {
    padding-left: 4%;
    padding-right: 4%;
	}
	.nav-link-container {
    gap: 20px;
    position: relative;
    padding-top: 65px;
	}
	.news-archive-link {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
	 width: max-content;
	}
	nav#breadcrumb {
    padding-left: 4%;
	}
	nav#breadcrumb ul {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    padding: 12px 0px 14px;
    white-space: pre;
    overflow: scroll;
	}
	.privacy__inner {
    padding: 20px 30px;
	}
	.contact__inner--right {
    padding: 20px 25px;
	}
}