privacy policy

About Us

Our website address is http://followingtheshogun.com.

What Personal Data We Collect and Why

This site collects certain personal data to prevent spam, improve user experience, and analyze traffic.

Comments

When visitors leave comments on the site, we collect the data shown in the comments form, as well as the visitor’s IP address and browser user agent string to help detect spam.

An anonymized string (also called a hash) created from your email address may be provided to the Gravatar service to check if you are using it. The Gravatar service privacy policy is available at https://automattic.com/privacy/. After your comment is approved, your profile picture is visible to the public in the context of your comment.

Media

If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract location data from images on the website.

Contact Forms

Information submitted via contact forms (such as name, email address, and message) is used solely to respond to inquiries and is not shared with third parties. We may use Google reCAPTCHA to prevent spam when the form is submitted.

Cookies

If you leave a comment on our site, you may opt-in to saving your name, email address, and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.

If you have an account and log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.

When you log in, we will also set up several cookies to save your login information and screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select “Remember Me”, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.

If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after one day.

Embedded Content from Other Websites

Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor had visited the other website.

These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction if you have an account and are logged in to that website.

Analytics

We use Google AdSense, a service provided by Google, to display advertisements tailored to users’ interests. Google AdSense may use cookies to identify your device but does not identify individuals personally.

For more details about Google AdSense and how to disable cookies, please refer to the following official pages:

Google AdSense Help: Ad Settings

Google Policies & Terms: Advertising

Who We Share Your Data With

We may share your data with third-party services, including Google, for advertising and analytics purposes.

How Long We Retain Your Data

If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.

For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.

What Rights You Have Over Your Data

If you have an account on this site or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep.

Your Contact Information

If you have any privacy concerns, you may contact us at: followingtheshogun@gmail.com

// ナビリンクの自ページのボタンを手前にする処理 document.addEventListener('DOMContentLoaded', function () { const nav = document.querySelector('.shogun-mobile-nav'); if (nav) { const currentLink = nav.querySelector('.current'); if (currentLink) { const currentLeft = currentLink.offsetLeft; const currentWidth = currentLink.offsetWidth; const navWidth = nav.offsetWidth; const scrollTo = currentLeft - (navWidth / 2) + (currentWidth / 2); nav.scrollTo({ left: scrollTo, behavior: 'smooth' }); } } });